]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/sandbox/dts/test.dts
dm: test: Add tests for the clk uclass
[people/ms/u-boot.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 pci: pci-controller {
184 compatible = "sandbox,pci";
185 device_type = "pci";
186 #address-cells = <3>;
187 #size-cells = <2>;
188 ranges = <0x02000000 0 0x10000000 0x10000000 0 0x2000
189 0x01000000 0 0x20000000 0x20000000 0 0x2000>;
190 pci@1f,0 {
191 compatible = "pci-generic";
192 reg = <0xf800 0 0 0 0>;
193 emul@1f,0 {
194 compatible = "sandbox,swap-case";
195 };
196 };
197 };
198
199 spi@0 {
200 #address-cells = <1>;
201 #size-cells = <0>;
202 reg = <0>;
203 compatible = "sandbox,spi";
204 cs-gpios = <0>, <&gpio_a 0>;
205 spi.bin@0 {
206 reg = <0>;
207 compatible = "spansion,m25p16", "spi-flash";
208 spi-max-frequency = <40000000>;
209 sandbox,filename = "spi.bin";
210 };
211 };
212
213 uart0: serial {
214 compatible = "sandbox,serial";
215 u-boot,dm-pre-reloc;
216 };
217
218 usb_0: usb@0 {
219 compatible = "sandbox,usb";
220 status = "disabled";
221 hub {
222 compatible = "sandbox,usb-hub";
223 #address-cells = <1>;
224 #size-cells = <0>;
225 flash-stick {
226 reg = <0>;
227 compatible = "sandbox,usb-flash";
228 };
229 };
230 };
231
232 usb_1: usb@1 {
233 compatible = "sandbox,usb";
234 hub {
235 compatible = "usb-hub";
236 usb,device-class = <9>;
237 hub-emul {
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 sandbox,filepath = "testflash.bin";
245 };
246
247 };
248 };
249 };
250
251 usb_2: usb@2 {
252 compatible = "sandbox,usb";
253 status = "disabled";
254 };
255
256 };
257
258 #include "sandbox_pmic.dtsi"