Loading...
1// SPDX-License-Identifier: (GPL-2.0+ OR X11)
2/*
3 * at91-sama5d2_ptc_ek.dts - Device Tree file for SAMA5D2 PTC EK board
4 *
5 * Copyright (C) 2017 Microchip/Atmel,
6 * 2017 Wenyou Yang <wenyou.yang@microchip.com>
7 * 2017 Ludovic Desroches <ludovic.desroches@microchip.com>
8 */
9/dts-v1/;
10#include "sama5d2.dtsi"
11#include "sama5d2-pinfunc.h"
12#include <dt-bindings/mfd/atmel-flexcom.h>
13#include <dt-bindings/gpio/gpio.h>
14#include <dt-bindings/input/input.h>
15#include <dt-bindings/pinctrl/at91.h>
16
17/ {
18 model = "Atmel SAMA5D2 PTC EK";
19 compatible = "atmel,sama5d2-ptc_ek", "atmel,sama5d2", "atmel,sama5";
20
21 aliases {
22 serial0 = &uart0; /* DBGU */
23 i2c0 = &i2c0; /* mikroBUS 1 */
24 i2c1 = &i2c1; /* XPRO EXT1 */
25 i2c2 = &i2c2;
26 };
27
28 chosen {
29 stdout-path = "serial0:115200n8";
30 };
31
32 clocks {
33 slow_xtal {
34 clock-frequency = <32768>;
35 };
36
37 main_xtal {
38 clock-frequency = <24000000>;
39 };
40 };
41
42 ahb {
43 usb0: gadget@300000 {
44 atmel,vbus-gpio = <&pioA PIN_PB11 GPIO_ACTIVE_HIGH>;
45 pinctrl-names = "default";
46 pinctrl-0 = <&pinctrl_usba_vbus>;
47 status = "okay";
48 };
49
50 usb1: ohci@400000 {
51 num-ports = <3>;
52 atmel,vbus-gpio = <0
53 &pioA PIN_PB12 GPIO_ACTIVE_HIGH
54 0
55 >;
56 pinctrl-names = "default";
57 pinctrl-0 = <&pinctrl_usb_default>;
58 status = "okay";
59 };
60
61 usb2: ehci@500000 {
62 status = "okay";
63 };
64
65 ebi: ebi@10000000 {
66 pinctrl-names = "default";
67 pinctrl-0 = <&pinctrl_nand_default>;
68 status = "okay"; /* conflicts with sdmmc1 and qspi0 */
69
70 nand_controller: nand-controller {
71 status = "okay";
72
73 nand@3 {
74 reg = <0x3 0x0 0x2>;
75 atmel,rb = <0>;
76 nand-bus-width = <8>;
77 nand-ecc-mode = "hw";
78 nand-on-flash-bbt;
79 label = "atmel_nand";
80
81 partitions {
82 compatible = "fixed-partitions";
83 #address-cells = <1>;
84 #size-cells = <1>;
85
86 at91bootstrap@0 {
87 label = "bootstrap";
88 reg = <0x0 0x40000>;
89 };
90
91 bootloader@40000 {
92 label = "bootloader";
93 reg = <0x40000 0xc0000>;
94 };
95
96 bootloaderenvred@100000 {
97 label = "bootloader env redundant";
98 reg = <0x100000 0x40000>;
99 };
100
101 bootloaderenv@140000 {
102 label = "bootloader env";
103 reg = <0x140000 0x40000>;
104 };
105
106 dtb@180000 {
107 label = "device tree";
108 reg = <0x180000 0x80000>;
109 };
110
111 kernel@200000 {
112 label = "kernel";
113 reg = <0x200000 0x600000>;
114 };
115
116 rootfs@800000 {
117 label = "rootfs";
118 reg = <0x800000 0x1f800000>;
119 };
120 };
121 };
122 };
123 };
124
125 sdmmc0: sdio-host@a0000000 {
126 bus-width = <8>;
127 pinctrl-names = "default";
128 pinctrl-0 = <&pinctrl_sdmmc0_default>;
129 status = "okay";
130 };
131
132 apb {
133 spi0: spi@f8000000 {
134 pinctrl-names = "default";
135 pinctrl-0 = <&pinctrl_spi0_default>;
136 status = "okay";
137 };
138
139 macb0: ethernet@f8008000 {
140 pinctrl-names = "default";
141 pinctrl-0 = <&pinctrl_macb0_default &pinctrl_macb0_phy_irq>;
142 #address-cells = <1>;
143 #size-cells = <0>;
144 phy-mode = "rmii";
145 status = "okay";
146
147 ethernet-phy@1 {
148 reg = <0x1>;
149 interrupt-parent = <&pioA>;
150 interrupts = <56 IRQ_TYPE_LEVEL_LOW>;
151 };
152 };
153
154 tcb0: timer@f800c000 {
155 timer0: timer@0 {
156 compatible = "atmel,tcb-timer";
157 reg = <0>;
158 };
159
160 timer1: timer@1 {
161 compatible = "atmel,tcb-timer";
162 reg = <1>;
163 };
164 };
165
166 uart0: serial@f801c000 {
167 pinctrl-names = "default";
168 pinctrl-0 = <&pinctrl_uart0_default>;
169 atmel,use-dma-rx;
170 atmel,use-dma-tx;
171 status = "okay";
172 };
173
174 uart2: serial@f8024000 {
175 pinctrl-names = "default";
176 pinctrl-0 = <&pinctrl_uart2_default>;
177 atmel,use-dma-rx;
178 atmel,use-dma-tx;
179 status = "okay";
180 };
181
182 i2c0: i2c@f8028000 {
183 dmas = <0>, <0>;
184 pinctrl-names = "default", "gpio";
185 pinctrl-0 = <&pinctrl_i2c0_default>;
186 pinctrl-1 = <&pinctrl_i2c0_gpio>;
187 sda-gpios = <&pioA PIN_PD21 GPIO_ACTIVE_HIGH>;
188 scl-gpios = <&pioA PIN_PD22 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
189 status = "okay";
190 };
191
192 flx0: flexcom@f8034000 {
193 atmel,flexcom-mode = <ATMEL_FLEXCOM_MODE_TWI>;
194 status = "okay";
195
196 i2c2: i2c@600 {
197 dmas = <0>, <0>;
198 pinctrl-names = "default", "gpio";
199 pinctrl-0 = <&pinctrl_flx0_default>;
200 pinctrl-1 = <&pinctrl_flx0_gpio>;
201 sda-gpios = <&pioA PIN_PB28 GPIO_ACTIVE_HIGH>;
202 scl-gpios = <&pioA PIN_PB29 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
203 status = "okay";
204 };
205 };
206
207 shdwc@f8048010 {
208 debounce-delay-us = <976>;
209
210 input@0 {
211 reg = <0>;
212 };
213 };
214
215 watchdog@f8048040 {
216 status = "okay";
217 };
218
219 spi1: spi@fc000000 {
220 pinctrl-names = "default";
221 pinctrl-0 = <&pinctrl_spi1_default>;
222 status = "okay";
223 };
224
225 i2c1: i2c@fc028000 {
226 dmas = <0>, <0>;
227 pinctrl-names = "default", "gpio";
228 pinctrl-0 = <&pinctrl_i2c1_default>;
229 pinctrl-1 = <&pinctrl_i2c1_gpio>;
230 sda-gpios = <&pioA PIN_PC6 GPIO_ACTIVE_HIGH>;
231 scl-gpios = <&pioA PIN_PC7 (GPIO_ACTIVE_HIGH | GPIO_OPEN_DRAIN)>;
232 status = "okay";
233
234 at24@50 {
235 compatible = "atmel,24c02";
236 reg = <0x50>;
237 pagesize = <8>;
238 };
239 };
240
241 pinctrl@fc038000 {
242 pinctrl_flx0_default: flx0_default {
243 pinmux = <PIN_PB28__FLEXCOM0_IO0>,
244 <PIN_PB29__FLEXCOM0_IO1>;
245 bias-disable;
246 };
247
248 pinctrl_flx0_gpio: flx0_gpio {
249 pinmux = <PIN_PB28__GPIO>,
250 <PIN_PB29__GPIO>;
251 bias-disable;
252 };
253
254 pinctrl_i2c0_default: i2c0_default {
255 pinmux = <PIN_PD21__TWD0>,
256 <PIN_PD22__TWCK0>;
257 bias-disable;
258 };
259
260 pinctrl_i2c0_gpio: i2c0_gpio {
261 pinmux = <PIN_PD21__GPIO>,
262 <PIN_PD22__GPIO>;
263 bias-disable;
264 };
265
266 pinctrl_i2c1_default: i2c1_default {
267 pinmux = <PIN_PC6__TWD1>,
268 <PIN_PC7__TWCK1>;
269 bias-disable;
270 };
271
272 pinctrl_i2c1_gpio: i2c1_gpio {
273 pinmux = <PIN_PC6__GPIO>,
274 <PIN_PC7__GPIO>;
275 bias-disable;
276 };
277
278 pinctrl_key_gpio_default: key_gpio_default {
279 pinmux = <PIN_PA10__GPIO>;
280 bias-pull-up;
281 };
282
283 pinctrl_led_gpio_default: led_gpio_default {
284 pinmux = <PIN_PB6__GPIO>,
285 <PIN_PB8__GPIO>,
286 <PIN_PB10__GPIO>;
287 bias-pull-up;
288 };
289
290 pinctrl_macb0_default: macb0_default {
291 pinmux = <PIN_PB14__GTXCK>,
292 <PIN_PB15__GTXEN>,
293 <PIN_PB16__GRXDV>,
294 <PIN_PB17__GRXER>,
295 <PIN_PB18__GRX0>,
296 <PIN_PB19__GRX1>,
297 <PIN_PB20__GTX0>,
298 <PIN_PB21__GTX1>,
299 <PIN_PB22__GMDC>,
300 <PIN_PB23__GMDIO>;
301 bias-disable;
302 };
303
304 pinctrl_macb0_phy_irq: macb0_phy_irq {
305 pinmux = <PIN_PB24__GPIO>;
306 bias-disable;
307 };
308
309 pinctrl_nand_default: nand_default {
310 re_we_data {
311 pinmux = <PIN_PA22__D0>,
312 <PIN_PA23__D1>,
313 <PIN_PA24__D2>,
314 <PIN_PA25__D3>,
315 <PIN_PA26__D4>,
316 <PIN_PA27__D5>,
317 <PIN_PA28__D6>,
318 <PIN_PA29__D7>,
319 <PIN_PA30__NWE_NANDWE>,
320 <PIN_PB2__NRD_NANDOE>;
321 bias-pull-up;
322 atmel,drive-strength = <ATMEL_PIO_DRVSTR_ME>;
323 };
324
325 ale_cle_rdy_cs {
326 pinmux = <PIN_PB0__A21_NANDALE>,
327 <PIN_PB1__A22_NANDCLE>,
328 <PIN_PC8__NANDRDY>,
329 <PIN_PA31__NCS3>;
330 bias-pull-up;
331 };
332 };
333
334 pinctrl_sdmmc0_default: sdmmc0_default {
335 cmd_data {
336 pinmux = <PIN_PA1__SDMMC0_CMD>,
337 <PIN_PA2__SDMMC0_DAT0>,
338 <PIN_PA3__SDMMC0_DAT1>,
339 <PIN_PA4__SDMMC0_DAT2>,
340 <PIN_PA5__SDMMC0_DAT3>,
341 <PIN_PA6__SDMMC0_DAT4>,
342 <PIN_PA7__SDMMC0_DAT5>,
343 <PIN_PA8__SDMMC0_DAT6>,
344 <PIN_PA9__SDMMC0_DAT7>;
345 bias-pull-up;
346 };
347
348 ck_cd_vddsel {
349 pinmux = <PIN_PA0__SDMMC0_CK>,
350 <PIN_PA11__SDMMC0_VDDSEL>,
351 <PIN_PA13__SDMMC0_CD>;
352 bias-disable;
353 };
354 };
355
356 pinctrl_spi0_default: spi0_default {
357 pinmux = <PIN_PA14__SPI0_SPCK>,
358 <PIN_PA15__SPI0_MOSI>,
359 <PIN_PA16__SPI0_MISO>,
360 <PIN_PA17__SPI0_NPCS0>;
361 bias-disable;
362 };
363
364 pinctrl_spi1_default: spi1_default {
365 pinmux = <PIN_PC1__SPI1_SPCK>,
366 <PIN_PC2__SPI1_MOSI>,
367 <PIN_PC3__SPI1_MISO>,
368 <PIN_PC4__SPI1_NPCS0>;
369 bias-disable;
370 };
371
372 pinctrl_uart0_default: uart0_default {
373 pinmux = <PIN_PB26__URXD0>,
374 <PIN_PB27__UTXD0>;
375 bias-disable;
376 };
377
378 pinctrl_uart2_default: uart2_default {
379 pinmux = <PIN_PD23__URXD2>,
380 <PIN_PD24__UTXD2>;
381 bias-disable;
382 };
383
384 pinctrl_usb_default: usb_default {
385 pinmux = <PIN_PB12__GPIO>;
386 bias-disable;
387 };
388
389 pinctrl_usba_vbus: usba_vbus {
390 pinmux = <PIN_PB11__GPIO>;
391 bias-disable;
392 };
393
394 };
395
396 };
397 };
398
399 gpio-keys {
400 compatible = "gpio-keys";
401
402 pinctrl-names = "default";
403 pinctrl-0 = <&pinctrl_key_gpio_default>;
404
405 button-1 {
406 label = "PB_USER";
407 gpios = <&pioA PIN_PA10 GPIO_ACTIVE_LOW>;
408 linux,code = <KEY_PROG1>;
409 wakeup-source;
410 };
411 };
412
413 leds {
414 compatible = "gpio-leds";
415 pinctrl-names = "default";
416 pinctrl-0 = <&pinctrl_led_gpio_default>;
417 status = "okay";
418
419 red {
420 label = "red";
421 gpios = <&pioA PIN_PB10 GPIO_ACTIVE_HIGH>;
422 };
423
424 green {
425 label = "green";
426 gpios = <&pioA PIN_PB8 GPIO_ACTIVE_HIGH>;
427 };
428
429 blue {
430 label = "blue";
431 gpios = <&pioA PIN_PB6 GPIO_ACTIVE_HIGH>;
432 linux,default-trigger = "heartbeat";
433 };
434 };
435};
1// SPDX-License-Identifier: (GPL-2.0+ OR X11)
2/*
3 * at91-sama5d2_ptc_ek.dts - Device Tree file for SAMA5D2 PTC EK board
4 *
5 * Copyright (C) 2017 Microchip/Atmel,
6 * 2017 Wenyou Yang <wenyou.yang@microchip.com>
7 * 2017 Ludovic Desroches <ludovic.desroches@microchip.com>
8 */
9/dts-v1/;
10#include "sama5d2.dtsi"
11#include "sama5d2-pinfunc.h"
12#include <dt-bindings/mfd/atmel-flexcom.h>
13#include <dt-bindings/gpio/gpio.h>
14#include <dt-bindings/pinctrl/at91.h>
15
16/ {
17 model = "Atmel SAMA5D2 PTC EK";
18 compatible = "atmel,sama5d2-ptc_ek", "atmel,sama5d2", "atmel,sama5";
19
20 aliases {
21 serial0 = &uart0;
22 i2c0 = &i2c0;
23 i2c1 = &i2c1;
24 i2c2 = &i2c2;
25 };
26
27 chosen {
28 stdout-path = "serial0:115200n8";
29 };
30
31 clocks {
32 slow_xtal {
33 clock-frequency = <32768>;
34 };
35
36 main_xtal {
37 clock-frequency = <24000000>;
38 };
39 };
40
41 ahb {
42 usb0: gadget@300000 {
43 atmel,vbus-gpio = <&pioA PIN_PA27 GPIO_ACTIVE_HIGH>;
44 pinctrl-names = "default";
45 pinctrl-0 = <&pinctrl_usba_vbus>;
46 status = "okay";
47 };
48
49 usb1: ohci@400000 {
50 num-ports = <3>;
51 atmel,vbus-gpio = <0
52 &pioA PIN_PB12 GPIO_ACTIVE_HIGH
53 0
54 >;
55 pinctrl-names = "default";
56 pinctrl-0 = <&pinctrl_usb_default>;
57 status = "okay";
58 };
59
60 usb2: ehci@500000 {
61 status = "okay";
62 };
63
64 ebi: ebi@10000000 {
65 pinctrl-names = "default";
66 pinctrl-0 = <&pinctrl_nand_default>;
67 status = "okay"; /* conflicts with sdmmc1 and qspi0 */
68
69 nand_controller: nand-controller {
70 status = "okay";
71
72 nand@3 {
73 reg = <0x3 0x0 0x2>;
74 atmel,rb = <0>;
75 nand-bus-width = <8>;
76 nand-ecc-mode = "hw";
77 nand-on-flash-bbt;
78 label = "atmel_nand";
79
80 partitions {
81 compatible = "fixed-partitions";
82 #address-cells = <1>;
83 #size-cells = <1>;
84
85 at91bootstrap@0 {
86 label = "bootstrap";
87 reg = <0x0 0x40000>;
88 };
89
90 bootloader@40000 {
91 label = "bootloader";
92 reg = <0x40000 0xc0000>;
93 };
94
95 bootloaderenvred@0x100000 {
96 label = "bootloader env redundant";
97 reg = <0x100000 0x40000>;
98 };
99
100 bootloaderenv@0x140000 {
101 label = "bootloader env";
102 reg = <0x140000 0x40000>;
103 };
104
105 dtb@180000 {
106 label = "device tree";
107 reg = <0x180000 0x80000>;
108 };
109
110 kernel@200000 {
111 label = "kernel";
112 reg = <0x200000 0x600000>;
113 };
114
115 rootfs@800000 {
116 label = "rootfs";
117 reg = <0x800000 0x1f800000>;
118 };
119 };
120 };
121 };
122 };
123
124 sdmmc0: sdio-host@a0000000 {
125 bus-width = <8>;
126 pinctrl-names = "default";
127 pinctrl-0 = <&pinctrl_sdmmc0_default>;
128 non-removable;
129 mmc-ddr-1_8v;
130 status = "okay";
131 };
132
133 apb {
134 spi0: spi@f8000000 {
135 pinctrl-names = "default";
136 pinctrl-0 = <&pinctrl_spi0_default>;
137 status = "okay";
138 };
139
140 macb0: ethernet@f8008000 {
141 pinctrl-names = "default";
142 pinctrl-0 = <&pinctrl_macb0_default &pinctrl_macb0_phy_irq>;
143 phy-mode = "rmii";
144 status = "okay";
145
146 ethernet-phy@1 {
147 reg = <0x1>;
148 interrupt-parent = <&pioA>;
149 interrupts = <56 IRQ_TYPE_LEVEL_LOW>;
150 };
151 };
152
153 tcb0: timer@f800c000 {
154 timer0: timer@0 {
155 compatible = "atmel,tcb-timer";
156 reg = <0>;
157 };
158
159 timer1: timer@1 {
160 compatible = "atmel,tcb-timer";
161 reg = <1>;
162 };
163 };
164
165 uart0: serial@f801c000 {
166 pinctrl-names = "default";
167 pinctrl-0 = <&pinctrl_uart0_default>;
168 atmel,use-dma-rx;
169 atmel,use-dma-tx;
170 status = "okay";
171 };
172
173 uart2: serial@f8024000 {
174 pinctrl-names = "default";
175 pinctrl-0 = <&pinctrl_uart2_default>;
176 atmel,use-dma-rx;
177 atmel,use-dma-tx;
178 status = "okay";
179 };
180
181 i2c0: i2c@f8028000 {
182 dmas = <0>, <0>;
183 pinctrl-names = "default";
184 pinctrl-0 = <&pinctrl_i2c0_default>;
185 status = "okay";
186 };
187
188 flx0: flexcom@f8034000 {
189 atmel,flexcom-mode = <ATMEL_FLEXCOM_MODE_TWI>;
190 status = "okay";
191
192 i2c2: i2c@600 {
193 compatible = "atmel,sama5d2-i2c";
194 reg = <0x600 0x200>;
195 interrupts = <19 IRQ_TYPE_LEVEL_HIGH 7>;
196 dmas = <0>, <0>;
197 dma-names = "tx", "rx";
198 #address-cells = <1>;
199 #size-cells = <0>;
200 clocks = <&pmc PMC_TYPE_PERIPHERAL 19>;
201 pinctrl-names = "default";
202 pinctrl-0 = <&pinctrl_flx0_default>;
203 atmel,fifo-size = <16>;
204 status = "okay";
205 };
206 };
207
208 shdwc@f8048010 {
209 atmel,shdwc-debouncer = <976>;
210
211 input@0 {
212 reg = <0>;
213 atmel,wakeup-type = "low";
214 };
215 };
216
217 watchdog@f8048040 {
218 status = "okay";
219 };
220
221 spi1: spi@fc000000 {
222 pinctrl-names = "default";
223 pinctrl-0 = <&pinctrl_spi1_default>;
224 status = "okay";
225 };
226
227 i2c1: i2c@fc028000 {
228 dmas = <0>, <0>;
229 pinctrl-names = "default";
230 pinctrl-0 = <&pinctrl_i2c1_default>;
231 status = "okay";
232
233 at24@50 {
234 compatible = "atmel,24c02";
235 reg = <0x50>;
236 pagesize = <8>;
237 };
238 };
239
240 pinctrl@fc038000 {
241 pinctrl_flx0_default: flx0_default {
242 pinmux = <PIN_PB28__FLEXCOM0_IO0>,
243 <PIN_PB29__FLEXCOM0_IO1>;
244 bias-disable;
245 };
246
247 pinctrl_i2c0_default: i2c0_default {
248 pinmux = <PIN_PD21__TWD0>,
249 <PIN_PD22__TWCK0>;
250 bias-disable;
251 };
252
253 pinctrl_i2c1_default: i2c1_default {
254 pinmux = <PIN_PC6__TWD1>,
255 <PIN_PC7__TWCK1>;
256 bias-disable;
257 };
258
259 pinctrl_key_gpio_default: key_gpio_default {
260 pinmux = <PIN_PA10__GPIO>;
261 bias-pull-up;
262 };
263
264 pinctrl_led_gpio_default: led_gpio_default {
265 pinmux = <PIN_PB6__GPIO>,
266 <PIN_PB8__GPIO>,
267 <PIN_PB10__GPIO>;
268 bias-pull-up;
269 };
270
271 pinctrl_macb0_default: macb0_default {
272 pinmux = <PIN_PB14__GTXCK>,
273 <PIN_PB15__GTXEN>,
274 <PIN_PB16__GRXDV>,
275 <PIN_PB17__GRXER>,
276 <PIN_PB18__GRX0>,
277 <PIN_PB19__GRX1>,
278 <PIN_PB20__GTX0>,
279 <PIN_PB21__GTX1>,
280 <PIN_PB22__GMDC>,
281 <PIN_PB23__GMDIO>;
282 bias-disable;
283 };
284
285 pinctrl_macb0_phy_irq: macb0_phy_irq {
286 pinmux = <PIN_PB24__GPIO>;
287 bias-disable;
288 };
289
290 pinctrl_nand_default: nand_default {
291 re_we_data {
292 pinmux = <PIN_PA22__D0>,
293 <PIN_PA23__D1>,
294 <PIN_PA24__D2>,
295 <PIN_PA25__D3>,
296 <PIN_PA26__D4>,
297 <PIN_PA27__D5>,
298 <PIN_PA28__D6>,
299 <PIN_PA29__D7>,
300 <PIN_PA30__NWE_NANDWE>,
301 <PIN_PB2__NRD_NANDOE>;
302 bias-pull-up;
303 atmel,drive-strength = <ATMEL_PIO_DRVSTR_ME>;
304 };
305
306 ale_cle_rdy_cs {
307 pinmux = <PIN_PB0__A21_NANDALE>,
308 <PIN_PB1__A22_NANDCLE>,
309 <PIN_PC8__NANDRDY>,
310 <PIN_PA31__NCS3>;
311 bias-pull-up;
312 };
313 };
314
315 pinctrl_sdmmc0_default: sdmmc0_default {
316 cmd_data {
317 pinmux = <PIN_PA1__SDMMC0_CMD>,
318 <PIN_PA2__SDMMC0_DAT0>,
319 <PIN_PA3__SDMMC0_DAT1>,
320 <PIN_PA4__SDMMC0_DAT2>,
321 <PIN_PA5__SDMMC0_DAT3>,
322 <PIN_PA6__SDMMC0_DAT4>,
323 <PIN_PA7__SDMMC0_DAT5>,
324 <PIN_PA8__SDMMC0_DAT6>,
325 <PIN_PA9__SDMMC0_DAT7>;
326 bias-pull-up;
327 };
328
329 ck_cd_vddsel {
330 pinmux = <PIN_PA0__SDMMC0_CK>,
331 <PIN_PA11__SDMMC0_VDDSEL>,
332 <PIN_PA13__SDMMC0_CD>;
333 bias-disable;
334 };
335 };
336
337 pinctrl_spi0_default: spi0_default {
338 pinmux = <PIN_PA14__SPI0_SPCK>,
339 <PIN_PA15__SPI0_MOSI>,
340 <PIN_PA16__SPI0_MISO>,
341 <PIN_PA17__SPI0_NPCS0>;
342 bias-disable;
343 };
344
345 pinctrl_spi1_default: spi1_default {
346 pinmux = <PIN_PC1__SPI1_SPCK>,
347 <PIN_PC2__SPI1_MOSI>,
348 <PIN_PC3__SPI1_MISO>,
349 <PIN_PC4__SPI1_NPCS0>;
350 bias-disable;
351 };
352
353 pinctrl_uart0_default: uart0_default {
354 pinmux = <PIN_PB26__URXD0>,
355 <PIN_PB27__UTXD0>;
356 bias-disable;
357 };
358
359 pinctrl_uart2_default: uart2_default {
360 pinmux = <PIN_PD23__URXD2>,
361 <PIN_PD24__UTXD2>;
362 bias-disable;
363 };
364
365 pinctrl_usb_default: usb_default {
366 pinmux = <PIN_PB12__GPIO>;
367 bias-disable;
368 };
369
370 pinctrl_usba_vbus: usba_vbus {
371 pinmux = <PIN_PB11__GPIO>;
372 bias-disable;
373 };
374
375 };
376
377 };
378 };
379
380 gpio_keys {
381 compatible = "gpio-keys";
382
383 pinctrl-names = "default";
384 pinctrl-0 = <&pinctrl_key_gpio_default>;
385
386 bp1 {
387 label = "PB_USER";
388 gpios = <&pioA PIN_PA10 GPIO_ACTIVE_LOW>;
389 linux,code = <0x104>;
390 };
391 };
392
393 leds {
394 compatible = "gpio-leds";
395 pinctrl-names = "default";
396 pinctrl-0 = <&pinctrl_led_gpio_default>;
397 status = "okay";
398
399 red {
400 label = "red";
401 gpios = <&pioA PIN_PB10 GPIO_ACTIVE_HIGH>;
402 };
403
404 green {
405 label = "green";
406 gpios = <&pioA PIN_PB8 GPIO_ACTIVE_HIGH>;
407 };
408
409 blue {
410 label = "blue";
411 gpios = <&pioA PIN_PB6 GPIO_ACTIVE_HIGH>;
412 linux,default-trigger = "heartbeat";
413 };
414 };
415};