aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/tst-rsrc/org/eclipse/jgit/test/resources/sample.dtsi
blob: 6aa4ecdd4cb442e52be17a1e93d556acd68af7f8 (plain)
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
/dts-v1/;

/ {
	model = "Example Board";
	compatible = "example,board";
	cpus {
		cpu@0 {
			device_type = "cpu";
			compatible = "arm,cortex-a9";
			reg = <0>;
		};
	};

	memory {
		device_type = "memory";
		reg = <0x80000000 0x20000000>;
	};

	uart0: uart@101f1000 {
		compatible = "ns16550a";
		reg = <0x101f1000 0x1000>;
		interrupts = <5>;
		clock-frequency = <24000000>;
	};
};