xref: /openbmc/u-boot/arch/sandbox/dts/test.dts (revision c68c03f5)
1/dts-v1/;
2
3/ {
4	model = "sandbox";
5	compatible = "sandbox";
6	#address-cells = <1>;
7	#size-cells = <1>;
8
9	aliases {
10		console = &uart0;
11		eth0 = "/eth@10002000";
12		eth3 = &eth_3;
13		eth5 = &eth_5;
14		i2c0 = "/i2c@0";
15		mmc0 = "/mmc0";
16		mmc1 = "/mmc1";
17		pci0 = &pci;
18		remoteproc1 = &rproc_1;
19		remoteproc2 = &rproc_2;
20		rtc0 = &rtc_0;
21		rtc1 = &rtc_1;
22		spi0 = "/spi@0";
23		testfdt6 = "/e-test";
24		testbus3 = "/some-bus";
25		testfdt0 = "/some-bus/c-test@0";
26		testfdt1 = "/some-bus/c-test@1";
27		testfdt3 = "/b-test";
28		testfdt5 = "/some-bus/c-test@5";
29		testfdt8 = "/a-test";
30		usb0 = &usb_0;
31		usb1 = &usb_1;
32		usb2 = &usb_2;
33	};
34
35	a-test {
36		reg = <0 1>;
37		compatible = "denx,u-boot-fdt-test";
38		ping-expect = <0>;
39		ping-add = <0>;
40		u-boot,dm-pre-reloc;
41		test-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 5 0 3 2 1>,
42			<0>, <&gpio_a 12>;
43		test2-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 6 1 3 2 1>,
44			<&gpio_b 7 2 3 2 1>, <&gpio_b 8 4 3 2 1>,
45			<&gpio_b 9 0xc 3 2 1>;
46	};
47
48	junk {
49		reg = <1 1>;
50		compatible = "not,compatible";
51	};
52
53	no-compatible {
54		reg = <2 1>;
55	};
56
57	b-test {
58		reg = <3 1>;
59		compatible = "denx,u-boot-fdt-test";
60		ping-expect = <3>;
61		ping-add = <3>;
62	};
63
64	phy_provider0: gen_phy@0 {
65		compatible = "sandbox,phy";
66		#phy-cells = <1>;
67	};
68
69	phy_provider1: gen_phy@1 {
70		compatible = "sandbox,phy";
71		#phy-cells = <0>;
72		broken;
73	};
74
75	gen_phy_user: gen_phy_user {
76		compatible = "simple-bus";
77		phys = <&phy_provider0 0>, <&phy_provider0 1>, <&phy_provider1>;
78		phy-names = "phy1", "phy2", "phy3";
79	};
80
81	some-bus {
82		#address-cells = <1>;
83		#size-cells = <0>;
84		compatible = "denx,u-boot-test-bus";
85		reg = <3 1>;
86		ping-expect = <4>;
87		ping-add = <4>;
88		c-test@5 {
89			compatible = "denx,u-boot-fdt-test";
90			reg = <5>;
91			ping-expect = <5>;
92			ping-add = <5>;
93		};
94		c-test@0 {
95			compatible = "denx,u-boot-fdt-test";
96			reg = <0>;
97			ping-expect = <6>;
98			ping-add = <6>;
99		};
100		c-test@1 {
101			compatible = "denx,u-boot-fdt-test";
102			reg = <1>;
103			ping-expect = <7>;
104			ping-add = <7>;
105		};
106	};
107
108	d-test {
109		reg = <3 1>;
110		ping-expect = <6>;
111		ping-add = <6>;
112		compatible = "google,another-fdt-test";
113	};
114
115	e-test {
116		reg = <3 1>;
117		ping-expect = <6>;
118		ping-add = <6>;
119		compatible = "google,another-fdt-test";
120	};
121
122	f-test {
123		compatible = "denx,u-boot-fdt-test";
124	};
125
126	g-test {
127		compatible = "denx,u-boot-fdt-test";
128	};
129
130	clocks {
131		clk_fixed: clk-fixed {
132			compatible = "fixed-clock";
133			#clock-cells = <0>;
134			clock-frequency = <1234>;
135		};
136	};
137
138	clk_sandbox: clk-sbox {
139		compatible = "sandbox,clk";
140		#clock-cells = <1>;
141	};
142
143	clk-test {
144		compatible = "sandbox,clk-test";
145		clocks = <&clk_fixed>,
146			 <&clk_sandbox 1>,
147			 <&clk_sandbox 0>;
148		clock-names = "fixed", "i2c", "spi";
149	};
150
151	eth@10002000 {
152		compatible = "sandbox,eth";
153		reg = <0x10002000 0x1000>;
154		fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x00>;
155	};
156
157	eth_5: eth@10003000 {
158		compatible = "sandbox,eth";
159		reg = <0x10003000 0x1000>;
160		fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x11>;
161	};
162
163	eth_3: sbe5 {
164		compatible = "sandbox,eth";
165		reg = <0x10005000 0x1000>;
166		fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x33>;
167	};
168
169	eth@10004000 {
170		compatible = "sandbox,eth";
171		reg = <0x10004000 0x1000>;
172		fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x22>;
173	};
174
175	gpio_a: base-gpios {
176		compatible = "sandbox,gpio";
177		gpio-controller;
178		#gpio-cells = <1>;
179		gpio-bank-name = "a";
180		num-gpios = <20>;
181	};
182
183	gpio_b: extra-gpios {
184		compatible = "sandbox,gpio";
185		gpio-controller;
186		#gpio-cells = <5>;
187		gpio-bank-name = "b";
188		num-gpios = <10>;
189	};
190
191	i2c@0 {
192		#address-cells = <1>;
193		#size-cells = <0>;
194		reg = <0 1>;
195		compatible = "sandbox,i2c";
196		clock-frequency = <100000>;
197		eeprom@2c {
198			reg = <0x2c>;
199			compatible = "i2c-eeprom";
200			emul {
201				compatible = "sandbox,i2c-eeprom";
202				sandbox,filename = "i2c.bin";
203				sandbox,size = <256>;
204			};
205		};
206
207		rtc_0: rtc@43 {
208			reg = <0x43>;
209			compatible = "sandbox-rtc";
210			emul {
211				compatible = "sandbox,i2c-rtc";
212			};
213		};
214
215		rtc_1: rtc@61 {
216			reg = <0x61>;
217			compatible = "sandbox-rtc";
218			emul {
219				compatible = "sandbox,i2c-rtc";
220			};
221		};
222
223		sandbox_pmic: sandbox_pmic {
224			reg = <0x40>;
225		};
226	};
227
228	adc@0 {
229		compatible = "sandbox,adc";
230		vdd-supply = <&buck2>;
231		vss-microvolts = <0>;
232	};
233
234	lcd {
235		u-boot,dm-pre-reloc;
236		compatible = "sandbox,lcd-sdl";
237		xres = <1366>;
238		yres = <768>;
239	};
240
241	leds {
242		compatible = "gpio-leds";
243
244		iracibble {
245			gpios = <&gpio_a 1 0>;
246			label = "sandbox:red";
247		};
248
249		martinet {
250			gpios = <&gpio_a 2 0>;
251			label = "sandbox:green";
252		};
253	};
254
255	mbox: mbox {
256		compatible = "sandbox,mbox";
257		#mbox-cells = <1>;
258	};
259
260	mbox-test {
261		compatible = "sandbox,mbox-test";
262		mboxes = <&mbox 100>, <&mbox 1>;
263		mbox-names = "other", "test";
264	};
265
266	mmc2 {
267		compatible = "sandbox,mmc";
268	};
269
270	mmc1 {
271		compatible = "sandbox,mmc";
272	};
273
274	mmc0 {
275		compatible = "sandbox,mmc";
276	};
277
278	pci: pci-controller {
279		compatible = "sandbox,pci";
280		device_type = "pci";
281		#address-cells = <3>;
282		#size-cells = <2>;
283		ranges = <0x02000000 0 0x10000000 0x10000000 0 0x2000
284				0x01000000 0 0x20000000 0x20000000 0 0x2000>;
285		pci@1f,0 {
286			compatible = "pci-generic";
287			reg = <0xf800 0 0 0 0>;
288			emul@1f,0 {
289				compatible = "sandbox,swap-case";
290			};
291		};
292	};
293
294	probing {
295		compatible = "simple-bus";
296		test1 {
297			compatible = "denx,u-boot-probe-test";
298		};
299
300		test2 {
301			compatible = "denx,u-boot-probe-test";
302		};
303
304		test3 {
305			compatible = "denx,u-boot-probe-test";
306		};
307
308		test4 {
309			compatible = "denx,u-boot-probe-test";
310		};
311	};
312
313	pwrdom: power-domain {
314		compatible = "sandbox,power-domain";
315		#power-domain-cells = <1>;
316	};
317
318	power-domain-test {
319		compatible = "sandbox,power-domain-test";
320		power-domains = <&pwrdom 2>;
321	};
322
323	pwm {
324		compatible = "sandbox,pwm";
325	};
326
327	pwm2 {
328		compatible = "sandbox,pwm";
329	};
330
331	ram {
332		compatible = "sandbox,ram";
333	};
334
335	reset@0 {
336		compatible = "sandbox,warm-reset";
337	};
338
339	reset@1 {
340		compatible = "sandbox,reset";
341	};
342
343	resetc: reset-ctl {
344		compatible = "sandbox,reset-ctl";
345		#reset-cells = <1>;
346	};
347
348	reset-ctl-test {
349		compatible = "sandbox,reset-ctl-test";
350		resets = <&resetc 100>, <&resetc 2>;
351		reset-names = "other", "test";
352	};
353
354	rproc_1: rproc@1 {
355		compatible = "sandbox,test-processor";
356		remoteproc-name = "remoteproc-test-dev1";
357	};
358
359	rproc_2: rproc@2 {
360		compatible = "sandbox,test-processor";
361		internal-memory-mapped;
362		remoteproc-name = "remoteproc-test-dev2";
363	};
364
365	spi@0 {
366		#address-cells = <1>;
367		#size-cells = <0>;
368		reg = <0 1>;
369		compatible = "sandbox,spi";
370		cs-gpios = <0>, <&gpio_a 0>;
371		spi.bin@0 {
372			reg = <0>;
373			compatible = "spansion,m25p16", "spi-flash";
374			spi-max-frequency = <40000000>;
375			sandbox,filename = "spi.bin";
376		};
377	};
378
379	syscon@0 {
380		compatible = "sandbox,syscon0";
381		reg = <0x10 4>;
382	};
383
384	syscon@1 {
385		compatible = "sandbox,syscon1";
386		reg = <0x20 5
387			0x28 6
388			0x30 7
389			0x38 8>;
390	};
391
392	timer {
393		compatible = "sandbox,timer";
394		clock-frequency = <1000000>;
395	};
396
397	uart0: serial {
398		compatible = "sandbox,serial";
399		u-boot,dm-pre-reloc;
400	};
401
402	usb_0: usb@0 {
403		compatible = "sandbox,usb";
404		status = "disabled";
405		hub {
406			compatible = "sandbox,usb-hub";
407			#address-cells = <1>;
408			#size-cells = <0>;
409			flash-stick {
410				reg = <0>;
411				compatible = "sandbox,usb-flash";
412			};
413		};
414	};
415
416	usb_1: usb@1 {
417		compatible = "sandbox,usb";
418		hub {
419			compatible = "usb-hub";
420			usb,device-class = <9>;
421			hub-emul {
422				compatible = "sandbox,usb-hub";
423				#address-cells = <1>;
424				#size-cells = <0>;
425				flash-stick@0 {
426					reg = <0>;
427					compatible = "sandbox,usb-flash";
428					sandbox,filepath = "testflash.bin";
429				};
430
431				flash-stick@1 {
432					reg = <1>;
433					compatible = "sandbox,usb-flash";
434					sandbox,filepath = "testflash1.bin";
435				};
436
437				flash-stick@2 {
438					reg = <2>;
439					compatible = "sandbox,usb-flash";
440					sandbox,filepath = "testflash2.bin";
441				};
442
443				keyb@3 {
444					reg = <3>;
445					compatible = "sandbox,usb-keyb";
446				};
447
448			};
449		};
450	};
451
452	usb_2: usb@2 {
453		compatible = "sandbox,usb";
454		status = "disabled";
455	};
456
457	spmi: spmi@0 {
458		compatible = "sandbox,spmi";
459		#address-cells = <0x1>;
460		#size-cells = <0x1>;
461		pm8916@0 {
462			compatible = "qcom,spmi-pmic";
463			reg = <0x0 0x1>;
464			#address-cells = <0x1>;
465			#size-cells = <0x1>;
466
467			spmi_gpios: gpios@c000 {
468				compatible = "qcom,pm8916-gpio";
469				reg = <0xc000 0x400>;
470				gpio-controller;
471				gpio-count = <4>;
472				#gpio-cells = <2>;
473				gpio-bank-name="spmi";
474			};
475		};
476	};
477
478	wdt0: wdt@0 {
479		compatible = "sandbox,wdt";
480	};
481};
482
483#include "sandbox_pmic.dtsi"
484