]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - arch/sandbox/dts/test.dts
2077e851a6336d4be4cb35743de2c2efe9722b83
[karo-tx-uboot.git] / arch / sandbox / dts / test.dts
1 /dts-v1/;
2
3 / {
4         model = "sandbox";
5         compatible = "sandbox";
6         #address-cells = <1>;
7         #size-cells = <0>;
8
9         aliases {
10                 console = &uart0;
11                 eth0 = "/eth@10002000";
12                 eth5 = &eth_5;
13                 i2c0 = "/i2c@0";
14                 pci0 = &pci;
15                 rtc0 = &rtc_0;
16                 rtc1 = &rtc_1;
17                 spi0 = "/spi@0";
18                 testfdt6 = "/e-test";
19                 testbus3 = "/some-bus";
20                 testfdt0 = "/some-bus/c-test@0";
21                 testfdt1 = "/some-bus/c-test@1";
22                 testfdt3 = "/b-test";
23                 testfdt5 = "/some-bus/c-test@5";
24                 testfdt8 = "/a-test";
25                 usb0 = &usb_0;
26                 usb1 = &usb_1;
27                 usb2 = &usb_2;
28         };
29
30         a-test {
31                 reg = <0>;
32                 compatible = "denx,u-boot-fdt-test";
33                 ping-expect = <0>;
34                 ping-add = <0>;
35                 u-boot,dm-pre-reloc;
36                 test-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 5 0 3 2 1>,
37                         <0>, <&gpio_a 12>;
38                 test2-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 6 1 3 2 1>,
39                         <&gpio_b 7 2 3 2 1>, <&gpio_b 8 4 3 2 1>,
40                         <&gpio_b 9 0xc 3 2 1>;
41         };
42
43         junk {
44                 reg = <1>;
45                 compatible = "not,compatible";
46         };
47
48         no-compatible {
49                 reg = <2>;
50         };
51
52         b-test {
53                 reg = <3>;
54                 compatible = "denx,u-boot-fdt-test";
55                 ping-expect = <3>;
56                 ping-add = <3>;
57         };
58
59         some-bus {
60                 #address-cells = <1>;
61                 #size-cells = <0>;
62                 compatible = "denx,u-boot-test-bus";
63                 reg = <3>;
64                 ping-expect = <4>;
65                 ping-add = <4>;
66                 c-test@5 {
67                         compatible = "denx,u-boot-fdt-test";
68                         reg = <5>;
69                         ping-expect = <5>;
70                         ping-add = <5>;
71                 };
72                 c-test@0 {
73                         compatible = "denx,u-boot-fdt-test";
74                         reg = <0>;
75                         ping-expect = <6>;
76                         ping-add = <6>;
77                 };
78                 c-test@1 {
79                         compatible = "denx,u-boot-fdt-test";
80                         reg = <1>;
81                         ping-expect = <7>;
82                         ping-add = <7>;
83                 };
84         };
85
86         d-test {
87                 reg = <3>;
88                 ping-expect = <6>;
89                 ping-add = <6>;
90                 compatible = "google,another-fdt-test";
91         };
92
93         e-test {
94                 reg = <3>;
95                 ping-expect = <6>;
96                 ping-add = <6>;
97                 compatible = "google,another-fdt-test";
98         };
99
100         f-test {
101                 compatible = "denx,u-boot-fdt-test";
102         };
103
104         g-test {
105                 compatible = "denx,u-boot-fdt-test";
106         };
107
108         clk@0 {
109                 compatible = "sandbox,clk";
110         };
111
112         eth@10002000 {
113                 compatible = "sandbox,eth";
114                 reg = <0x10002000 0x1000>;
115                 fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x00>;
116         };
117
118         eth_5: eth@10003000 {
119                 compatible = "sandbox,eth";
120                 reg = <0x10003000 0x1000>;
121                 fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x11>;
122         };
123
124         eth@10004000 {
125                 compatible = "sandbox,eth";
126                 reg = <0x10004000 0x1000>;
127                 fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x22>;
128         };
129
130         gpio_a: base-gpios {
131                 compatible = "sandbox,gpio";
132                 gpio-controller;
133                 #gpio-cells = <1>;
134                 gpio-bank-name = "a";
135                 num-gpios = <20>;
136         };
137
138         gpio_b: extra-gpios {
139                 compatible = "sandbox,gpio";
140                 gpio-controller;
141                 #gpio-cells = <5>;
142                 gpio-bank-name = "b";
143                 num-gpios = <10>;
144         };
145
146         i2c@0 {
147                 #address-cells = <1>;
148                 #size-cells = <0>;
149                 reg = <0>;
150                 compatible = "sandbox,i2c";
151                 clock-frequency = <100000>;
152                 eeprom@2c {
153                         reg = <0x2c>;
154                         compatible = "i2c-eeprom";
155                         emul {
156                                 compatible = "sandbox,i2c-eeprom";
157                                 sandbox,filename = "i2c.bin";
158                                 sandbox,size = <256>;
159                         };
160                 };
161
162                 rtc_0: rtc@43 {
163                         reg = <0x43>;
164                         compatible = "sandbox-rtc";
165                         emul {
166                                 compatible = "sandbox,i2c-rtc";
167                         };
168                 };
169
170                 rtc_1: rtc@61 {
171                         reg = <0x61>;
172                         compatible = "sandbox-rtc";
173                         emul {
174                                 compatible = "sandbox,i2c-rtc";
175                         };
176                 };
177
178                 sandbox_pmic: sandbox_pmic {
179                         reg = <0x40>;
180                 };
181         };
182
183         mmc {
184                 compatible = "sandbox,mmc";
185         };
186
187         pci: pci-controller {
188                 compatible = "sandbox,pci";
189                 device_type = "pci";
190                 #address-cells = <3>;
191                 #size-cells = <2>;
192                 ranges = <0x02000000 0 0x10000000 0x10000000 0 0x2000
193                                 0x01000000 0 0x20000000 0x20000000 0 0x2000>;
194                 pci@1f,0 {
195                         compatible = "pci-generic";
196                         reg = <0xf800 0 0 0 0>;
197                         emul@1f,0 {
198                                 compatible = "sandbox,swap-case";
199                         };
200                 };
201         };
202
203         ram {
204                 compatible = "sandbox,ram";
205         };
206
207         reset@0 {
208                 compatible = "sandbox,warm-reset";
209         };
210
211         reset@1 {
212                 compatible = "sandbox,reset";
213         };
214
215         spi@0 {
216                 #address-cells = <1>;
217                 #size-cells = <0>;
218                 reg = <0>;
219                 compatible = "sandbox,spi";
220                 cs-gpios = <0>, <&gpio_a 0>;
221                 spi.bin@0 {
222                         reg = <0>;
223                         compatible = "spansion,m25p16", "spi-flash";
224                         spi-max-frequency = <40000000>;
225                         sandbox,filename = "spi.bin";
226                 };
227         };
228
229         uart0: serial {
230                 compatible = "sandbox,serial";
231                 u-boot,dm-pre-reloc;
232         };
233
234         usb_0: usb@0 {
235                 compatible = "sandbox,usb";
236                 status = "disabled";
237                 hub {
238                         compatible = "sandbox,usb-hub";
239                         #address-cells = <1>;
240                         #size-cells = <0>;
241                         flash-stick {
242                                 reg = <0>;
243                                 compatible = "sandbox,usb-flash";
244                         };
245                 };
246         };
247
248         usb_1: usb@1 {
249                 compatible = "sandbox,usb";
250                 hub {
251                         compatible = "usb-hub";
252                         usb,device-class = <9>;
253                         hub-emul {
254                                 compatible = "sandbox,usb-hub";
255                                 #address-cells = <1>;
256                                 #size-cells = <0>;
257                                 flash-stick {
258                                         reg = <0>;
259                                         compatible = "sandbox,usb-flash";
260                                         sandbox,filepath = "testflash.bin";
261                                 };
262
263                         };
264                 };
265         };
266
267         usb_2: usb@2 {
268                 compatible = "sandbox,usb";
269                 status = "disabled";
270         };
271
272 };
273
274 #include "sandbox_pmic.dtsi"