~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/arm/boot/dts/ti/omap/am335x-osd335x-common.dtsi

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 /*
  3  * Copyright (C) 2012 Texas Instruments Incorporated - https://www.ti.com/
  4  *
  5  * Author: Robert Nelson <robertcnelson@gmail.com>
  6  */
  7 
  8 / {
  9         cpus {
 10                 cpu@0 {
 11                         cpu0-supply = <&dcdc2_reg>;
 12                 };
 13         };
 14 
 15         memory@80000000 {
 16                 device_type = "memory";
 17                 reg = <0x80000000 0x20000000>; /* 512 MB */
 18         };
 19 };
 20 
 21 &cpu0_opp_table {
 22         /*
 23         * Octavo Systems:
 24         * The EFUSE_SMA register is not programmed for any of the AM335x wafers
 25         * we get and we are not programming them during our production test.
 26         * Therefore, from a DEVICE_ID revision point of view, the silicon looks
 27         * like it is Revision 2.1.  However, from an EFUSE_SMA point of view for
 28         * the HW OPP table, the silicon looks like it is Revision 1.0 (ie the
 29         * EFUSE_SMA register reads as all zeros).
 30         */
 31         opp-1000000000 {
 32                 /* OPP Nitro */
 33                 opp-supported-hw = <0x06 0x0100>;
 34         };
 35 };
 36 
 37 &am33xx_pinmux {
 38         i2c0_pins: pinmux-i2c0-pins {
 39                 pinctrl-single,pins = <
 40                         AM33XX_PADCONF(AM335X_PIN_I2C0_SDA, PIN_INPUT_PULLUP, MUX_MODE0)
 41                         AM33XX_PADCONF(AM335X_PIN_I2C0_SCL, PIN_INPUT_PULLUP, MUX_MODE0)
 42                 >;
 43         };
 44 };
 45 
 46 &i2c0 {
 47         pinctrl-names = "default";
 48         pinctrl-0 = <&i2c0_pins>;
 49 
 50         status = "okay";
 51         clock-frequency = <400000>;
 52 
 53         tps: tps@24 {
 54                 reg = <0x24>;
 55         };
 56 };
 57 
 58 /include/ "../../tps65217.dtsi"
 59 
 60 &tps {
 61         interrupts = <7>; /* NMI */
 62         interrupt-parent = <&intc>;
 63 
 64         ti,pmic-shutdown-controller;
 65 
 66         pwrbutton {
 67                 interrupts = <2>;
 68                 status = "okay";
 69         };
 70 
 71         regulators {
 72                 dcdc1_reg: regulator@0 {
 73                         regulator-name = "vdds_dpr";
 74                         regulator-always-on;
 75                 };
 76 
 77                 dcdc2_reg: regulator@1 {
 78                         /* VDD_MPU voltage limits 0.95V - 1.26V with +/-4% tolerance */
 79                         regulator-name = "vdd_mpu";
 80                         regulator-min-microvolt = <925000>;
 81                         regulator-max-microvolt = <1351500>;
 82                         regulator-boot-on;
 83                         regulator-always-on;
 84                 };
 85 
 86                 dcdc3_reg: regulator@2 {
 87                         /* VDD_CORE voltage limits 0.95V - 1.1V with +/-4% tolerance */
 88                         regulator-name = "vdd_core";
 89                         regulator-min-microvolt = <925000>;
 90                         regulator-max-microvolt = <1150000>;
 91                         regulator-boot-on;
 92                         regulator-always-on;
 93                 };
 94 
 95                 ldo1_reg: regulator@3 {
 96                         regulator-name = "vio,vrtc,vdds";
 97                         regulator-always-on;
 98                 };
 99 
100                 ldo2_reg: regulator@4 {
101                         regulator-name = "vdd_3v3aux";
102                         regulator-always-on;
103                 };
104 
105                 ldo3_reg: regulator@5 {
106                         regulator-name = "vdd_1v8";
107                         regulator-min-microvolt = <1800000>;
108                         regulator-max-microvolt = <1800000>;
109                         regulator-always-on;
110                 };
111 
112                 ldo4_reg: regulator@6 {
113                         regulator-name = "vdd_3v3a";
114                         regulator-always-on;
115                 };
116         };
117 };
118 
119 &aes {
120         status = "okay";
121 };
122 
123 &sham {
124         status = "okay";
125 };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php