summaryrefslogtreecommitdiffstats
path: root/arch/sandbox/dts/sandbox.dts
blob: afca02d41014c7d2e18f26910ae0a88b9011c91a (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/dts-v1/;

/ {
	model = "Sandbox";
	compatible = "barebox,sandbox";

	#address-cells = <2>;
	#size-cells = <2>;

	aliases {
	};

	chosen {
		environment {
			compatible = "barebox,environment";
			device-path = &part_env;
		};
	};

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

	stickypage: stickypage {
		compatible = "barebox,hostfile";
		reg = <0 0 0 4096>;

		partitions {
			compatible = "fixed-partitions";
			#address-cells = <1>;
			#size-cells = <1>;

			part_env: env@400 {
				reg = <0x400 0x800>;
				label = "env";
			};
		};
	};
};