hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
// SPDX-License-Identifier: GPL-2.0-only
 
#include <dt-bindings/input/input.h>
 
/ {
   cpus {
       cpu@0 {
           cpu0-supply = <&vcc>;
       };
   };
 
   memory@80000000 {
       device_type = "memory";
       reg = <0x80000000 0>;
   };
 
   wl12xx_vmmc: wl12xx_vmmc {
       compatible = "regulator-fixed";
       regulator-name = "vwl1271";
       regulator-min-microvolt = <1800000>;
       regulator-max-microvolt = <1800000>;
       gpio = <&gpio1 3 0>;   /* gpio_3 */
       startup-delay-us = <70000>;
       enable-active-high;
       vin-supply = <&vaux3>;
   };
 
   /* HS USB Host PHY on PORT 1 */
   hsusb2_phy: hsusb2_phy {
       compatible = "usb-nop-xceiv";
       reset-gpios = <&gpio1 4 GPIO_ACTIVE_LOW>; /* gpio_4 */
       #phy-cells = <0>;
   };
 
   /* fixed 26MHz oscillator */
   hfclk_26m: oscillator {
       #clock-cells = <0>;
       compatible = "fixed-clock";
       clock-frequency = <26000000>;
   };
};
 
&gpmc {
   ranges = <0 0 0x30000000 0x1000000>;    /* CS0: 16MB for NAND */
 
   nand@0,0 {
       compatible = "ti,omap2-nand";
       reg = <0 0 4>; /* CS0, offset 0, IO size 4 */
       interrupt-parent = <&gpmc>;
       interrupts = <0 IRQ_TYPE_NONE>, /* fifoevent */
                <1 IRQ_TYPE_NONE>;    /* termcount */
       linux,mtd-name = "micron,mt29f4g16abbda3w";
       nand-bus-width = <16>;
       ti,nand-ecc-opt = "bch8";
       rb-gpios = <&gpmc 0 GPIO_ACTIVE_HIGH>; /* gpmc_wait0 */
       gpmc,sync-clk-ps = <0>;
       gpmc,cs-on-ns = <0>;
       gpmc,cs-rd-off-ns = <44>;
       gpmc,cs-wr-off-ns = <44>;
       gpmc,adv-on-ns = <6>;
       gpmc,adv-rd-off-ns = <34>;
       gpmc,adv-wr-off-ns = <44>;
       gpmc,we-off-ns = <40>;
       gpmc,oe-off-ns = <54>;
       gpmc,access-ns = <64>;
       gpmc,rd-cycle-ns = <82>;
       gpmc,wr-cycle-ns = <82>;
       gpmc,wr-access-ns = <40>;
       gpmc,wr-data-mux-bus-ns = <0>;
       gpmc,device-width = <2>;
       #address-cells = <1>;
       #size-cells = <1>;
   };
};
 
&i2c1 {
   pinctrl-names = "default";
   pinctrl-0 = <&i2c1_pins>;
   clock-frequency = <2600000>;
 
   twl: twl@48 {
       reg = <0x48>;
       interrupts = <7>; /* SYS_NIRQ cascaded to intc */
       interrupt-parent = <&intc>;
       clocks = <&hfclk_26m>;
       clock-names = "fck";
       twl_audio: audio {
           compatible = "ti,twl4030-audio";
           codec {
               ti,hs_extmute_gpio = <&gpio2 25 GPIO_ACTIVE_HIGH>;
           };
       };
   };
};
 
&i2c2 {
   pinctrl-names = "default";
   pinctrl-0 = <&i2c2_pins>;
   clock-frequency = <400000>;
};
 
&i2c3 {
   pinctrl-names = "default";
   pinctrl-0 = <&i2c3_pins>;
   clock-frequency = <400000>;
 
   touchscreen: tsc2004@48 {
       compatible = "ti,tsc2004";
       reg = <0x48>;
       vio-supply = <&vaux1>;
       pinctrl-names = "default";
       pinctrl-0 = <&tsc2004_pins>;
       interrupts-extended = <&gpio5 25 IRQ_TYPE_EDGE_RISING>; /* gpio 153 */
 
       touchscreen-fuzz-x = <4>;
       touchscreen-fuzz-y = <7>;
       touchscreen-fuzz-pressure = <2>;
       touchscreen-size-x = <4096>;
       touchscreen-size-y = <4096>;
       touchscreen-max-pressure = <2048>;
 
       ti,x-plate-ohms = <280>;
       ti,esd-recovery-timeout-ms = <8000>;
   };
};
 
&mmc3 {
   interrupts-extended = <&intc 94 &omap3_pmx_core 0x136>;
   pinctrl-0 = <&mmc3_pins &wl127x_gpio>;
   pinctrl-names = "default";
   vmmc-supply = <&wl12xx_vmmc>;
   non-removable;
   bus-width = <4>;
   cap-power-off-card;
   #address-cells = <1>;
   #size-cells = <0>;
   wlcore: wlcore@2 {
       compatible = "ti,wl1273";
       reg = <2>;
       interrupt-parent = <&gpio1>;
       interrupts = <2 IRQ_TYPE_EDGE_RISING>; /* gpio 2 */
       ref-clock-frequency = <26000000>;
   };
};
 
&usbhshost {
   port2-mode = "ehci-phy";
};
 
&usbhsehci {
   phys = <0 &hsusb2_phy>;
};
 
 
&omap3_pmx_core {
   pinctrl-names = "default";
   pinctrl-0 = <&hsusb2_pins>;
 
   mmc3_pins: pinmux_mm3_pins {
       pinctrl-single,pins = <
           OMAP3_CORE1_IOPAD(0x2164, PIN_INPUT_PULLUP | MUX_MODE3)    /* sdmmc2_dat4.sdmmc3_dat0 */
           OMAP3_CORE1_IOPAD(0x2166, PIN_INPUT_PULLUP | MUX_MODE3)    /* sdmmc2_dat5.sdmmc3_dat1 */
           OMAP3_CORE1_IOPAD(0x2168, PIN_INPUT_PULLUP | MUX_MODE3)    /* sdmmc2_dat6.sdmmc3_dat2 */
           OMAP3_CORE1_IOPAD(0x216a, PIN_INPUT_PULLUP | MUX_MODE3)    /* sdmmc2_dat6.sdmmc3_dat3 */
           OMAP3_CORE1_IOPAD(0x21d0, PIN_INPUT_PULLUP | MUX_MODE3) /* mcspi1_cs1.sdmmc3_cmd */
           OMAP3_CORE1_IOPAD(0x21d2, PIN_INPUT_PULLUP | MUX_MODE3)    /* mcspi1_cs2.sdmmc_clk */
       >;
   };
   mcbsp2_pins: pinmux_mcbsp2_pins {
       pinctrl-single,pins = <
           OMAP3_CORE1_IOPAD(0x213c, PIN_INPUT | MUX_MODE0)        /* mcbsp2_fsx */
           OMAP3_CORE1_IOPAD(0x213e, PIN_INPUT | MUX_MODE0)        /* mcbsp2_clkx */
           OMAP3_CORE1_IOPAD(0x2140, PIN_INPUT | MUX_MODE0)        /* mcbsp2_dr */
           OMAP3_CORE1_IOPAD(0x2142, PIN_OUTPUT | MUX_MODE0)       /* mcbsp2_dx */
       >;
   };
   uart2_pins: pinmux_uart2_pins {
       pinctrl-single,pins = <
           OMAP3_CORE1_IOPAD(0x2174, PIN_INPUT | MUX_MODE0)    /* uart2_cts.uart2_cts */
           OMAP3_CORE1_IOPAD(0x2176, PIN_OUTPUT | MUX_MODE0)    /* uart2_rts .uart2_rts*/
           OMAP3_CORE1_IOPAD(0x2178, PIN_OUTPUT | MUX_MODE0)    /* uart2_tx.uart2_tx */
           OMAP3_CORE1_IOPAD(0x217a, PIN_INPUT | MUX_MODE0)    /* uart2_rx.uart2_rx */
           OMAP3_CORE1_IOPAD(0x2198, PIN_OUTPUT | MUX_MODE4)    /* GPIO_162,BT_EN */
       >;
   };
   mcspi1_pins: pinmux_mcspi1_pins {
       pinctrl-single,pins = <
           OMAP3_CORE1_IOPAD(0x21c8, PIN_INPUT | MUX_MODE0)        /* mcspi1_clk.mcspi1_clk */
           OMAP3_CORE1_IOPAD(0x21ca, PIN_OUTPUT | MUX_MODE0)       /* mcspi1_simo.mcspi1_simo */
           OMAP3_CORE1_IOPAD(0x21cc, PIN_INPUT_PULLUP | MUX_MODE0) /* mcspi1_somi.mcspi1_somi */
           OMAP3_CORE1_IOPAD(0x21ce, PIN_OUTPUT | MUX_MODE0)       /* mcspi1_cs0.mcspi1_cs0 */
       >;
   };
 
   hsusb2_pins: pinmux_hsusb2_pins {
       pinctrl-single,pins = <
           OMAP3_CORE1_IOPAD(0x21d4, PIN_INPUT_PULLDOWN | MUX_MODE3)       /* mcspi1_cs3.hsusb2_data2 */
           OMAP3_CORE1_IOPAD(0x21d6, PIN_INPUT_PULLDOWN | MUX_MODE3)       /* mcspi2_clk.hsusb2_data7 */
           OMAP3_CORE1_IOPAD(0x21d8, PIN_INPUT_PULLDOWN | MUX_MODE3)       /* mcspi2_simo.hsusb2_data4 */
           OMAP3_CORE1_IOPAD(0x21da, PIN_INPUT_PULLDOWN | MUX_MODE3)       /* mcspi2_somi.hsusb2_data5 */
           OMAP3_CORE1_IOPAD(0x21dc, PIN_INPUT_PULLDOWN | MUX_MODE3)       /* mcspi2_cs0.hsusb2_data6 */
           OMAP3_CORE1_IOPAD(0x21de, PIN_INPUT_PULLDOWN | MUX_MODE3)       /* mcspi2_cs1.hsusb2_data3 */
       >;
   };
 
   hsusb_otg_pins: pinmux_hsusb_otg_pins {
       pinctrl-single,pins = <
           OMAP3_CORE1_IOPAD(0x21a2, PIN_INPUT | MUX_MODE0)    /* hsusb0_clk.hsusb0_clk */
           OMAP3_CORE1_IOPAD(0x21a4, PIN_OUTPUT | MUX_MODE0)    /* hsusb0_stp.hsusb0_stp */
           OMAP3_CORE1_IOPAD(0x21a6, PIN_INPUT | MUX_MODE0)    /* hsusb0_dir.hsusb0_dir */
           OMAP3_CORE1_IOPAD(0x21a8, PIN_INPUT | MUX_MODE0)    /* hsusb0_nxt.hsusb0_nxt */
           OMAP3_CORE1_IOPAD(0x21aa, PIN_INPUT | MUX_MODE0)    /* hsusb0_data0.hsusb0_data0 */
           OMAP3_CORE1_IOPAD(0x21ac, PIN_INPUT | MUX_MODE0)    /* hsusb0_data1.hsusb0_data1 */
           OMAP3_CORE1_IOPAD(0x21ae, PIN_INPUT | MUX_MODE0)    /* hsusb0_data2.hsusb0_data2 */
           OMAP3_CORE1_IOPAD(0x21b0, PIN_INPUT | MUX_MODE0)    /* hsusb0_data3.hsusb0_data3 */
           OMAP3_CORE1_IOPAD(0x21b2, PIN_INPUT | MUX_MODE0)    /* hsusb0_data4.hsusb0_data4 */
           OMAP3_CORE1_IOPAD(0x21b4, PIN_INPUT | MUX_MODE0)    /* hsusb0_data5.hsusb0_data5 */
           OMAP3_CORE1_IOPAD(0x21b6, PIN_INPUT | MUX_MODE0)    /* hsusb0_data6.hsusb0_data6 */
           OMAP3_CORE1_IOPAD(0x21b8, PIN_INPUT | MUX_MODE0)    /* hsusb0_data7.hsusb0_data7 */
       >;
   };
 
   i2c1_pins: pinmux_i2c1_pins {
       pinctrl-single,pins = <
           OMAP3_CORE1_IOPAD(0x21ba, PIN_INPUT | MUX_MODE0)        /* i2c1_scl.i2c1_scl */
           OMAP3_CORE1_IOPAD(0x21bc, PIN_INPUT | MUX_MODE0)        /* i2c1_sda.i2c1_sda */
           OMAP3_CORE1_IOPAD(0x20ba, PIN_OUTPUT | MUX_MODE4)        /* gpmc_ncs6.gpio_57 */
       >;
   };
 
   i2c2_pins: pinmux_i2c2_pins {
       pinctrl-single,pins = <
           OMAP3_CORE1_IOPAD(0x21be, PIN_INPUT | MUX_MODE0)    /* i2c2_scl */
           OMAP3_CORE1_IOPAD(0x21c0, PIN_INPUT | MUX_MODE0)    /* i2c2_sda */
       >;
   };
 
   i2c3_pins: pinmux_i2c3_pins {
       pinctrl-single,pins = <
           OMAP3_CORE1_IOPAD(0x21c2, PIN_INPUT | MUX_MODE0)    /* i2c3_scl */
           OMAP3_CORE1_IOPAD(0x21c4, PIN_INPUT | MUX_MODE0)    /* i2c3_sda */
       >;
   };
 
   tsc2004_pins: pinmux_tsc2004_pins {
       pinctrl-single,pins = <
           OMAP3_CORE1_IOPAD(0x2186, PIN_INPUT | MUX_MODE4)    /* mcbsp4_dr.gpio_153 */
       >;
   };
};
 
&omap3_pmx_wkup {
   pinctrl-names = "default";
   pinctrl-0 = <&hsusb2_reset_pin>;
   hsusb2_reset_pin: pinmux_hsusb1_reset_pin {
       pinctrl-single,pins = <
           OMAP3_WKUP_IOPAD(0x2a0e, PIN_OUTPUT | MUX_MODE4)    /* sys_boot2.gpio_4 */
       >;
   };
   wl127x_gpio: pinmux_wl127x_gpio_pin {
       pinctrl-single,pins = <
           OMAP3_WKUP_IOPAD(0x2a0a, PIN_INPUT | MUX_MODE4)        /* sys_boot0.gpio_2 */
           OMAP3_WKUP_IOPAD(0x2a0c, PIN_OUTPUT | MUX_MODE4)    /* sys_boot1.gpio_3 */
       >;
   };
};
 
&uart2 {
   interrupts-extended = <&intc 73 &omap3_pmx_core OMAP3_UART2_RX>;
   pinctrl-names = "default";
   pinctrl-0 = <&uart2_pins>;
};
 
&mcspi1 {
   pinctrl-names = "default";
   pinctrl-0 = <&mcspi1_pins>;
};
 
#include "twl4030.dtsi"
#include "twl4030_omap3.dtsi"
 
&vaux3 {
   regulator-min-microvolt = <2800000>;
   regulator-max-microvolt = <2800000>;
};
 
&twl {
   twl_power: power {
       compatible = "ti,twl4030-power-idle-osc-off", "ti,twl4030-power-idle";
       ti,use_poweroff;
   };
};
 
&twl_gpio {
   ti,use-leds;
};