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
// SPDX-License-Identifier: GPL-2.0
/*
 * at91-wb50n.dts - Device Tree file for wb50n evaluation board
 *
 *  Copyright (C) 2018 Laird
 *
 */
 
/dts-v1/;
#include "at91-wb50n.dtsi"
 
/ {
   model = "Laird Workgroup Bridge 50N - Atmel SAMA5D";
   compatible = "laird,wb50n", "atmel,sama5d31", "atmel,sama5d3", "atmel,sama5";
 
   gpio_keys {
       compatible = "gpio-keys";
       #address-cells = <1>;
       #size-cells = <0>;
 
       btn0@10 {
           reg = <10>;
           label = "BTNESC";
           linux,code = <1>; /* ESC button */
           gpios = <&pioA 10 GPIO_ACTIVE_LOW>;
           wakeup-source;
       };
 
       irqbtn@31 {
           reg = <31>;
           label = "IRQBTN";
           linux,code = <99>; /* SysReq button */
           gpios = <&pioE 31 GPIO_ACTIVE_LOW>;
           wakeup-source;
       };
   };
 
   leds {
       compatible = "gpio-leds";
 
       led0 {
           label = "wb50n:blue:led0";
           gpios = <&pioA 12 GPIO_ACTIVE_LOW>;
           default-state = "off";
       };
 
       led1 {
           label = "wb50n:green:led1";
           gpios = <&pioA 24 GPIO_ACTIVE_LOW>;
           default-state = "off";
       };
 
       led2 {
           label = "wb50n:red:led2";
           gpios = <&pioA 26 GPIO_ACTIVE_LOW>;
           default-state = "off";
       };
   };
};
 
&watchdog {
   status = "okay";
};
 
&mmc0 {
   status = "okay";
};
 
&macb1 {
   status = "okay";
};
 
&dbgu {
   status = "okay";
};
 
/* On BB40 this port is labeled UART1 */
&usart0 {
   status = "okay";
};
 
/* On BB40 this port is labeled UART0 */
&usart1 {
   status = "okay";
};
 
&i2c0 {
   status = "okay";
};
 
&spi1 {
   status = "okay";
 
   spidev@0 {
       compatible = "spidev";
       reg = <0>;
       spi-max-frequency = <8000000>;
   };
};
 
&usb0 {
   status = "okay";
};
 
&usb1 {
   status = "okay";
};
 
&usb2 {
   status = "okay";
};