summaryrefslogtreecommitdiffstats
path: root/arch/arm/dts/versatile-pb.dts
blob: d81b7d27152ccfd86cadf0dc5e4a2034bdb8e3e2 (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
#include <arm/arm/versatile-ab.dts>

/ {
	model = "ARM Versatile PB";
	compatible = "arm,versatile-pb";

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

&{/memory} {
	reg = <0x0 0x04000000>;
};

&{/flash@34000000} {
	partitions {
		compatible = "fixed-partitions";

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

                partition@0 {
			label = "barebox";
			reg = <0x0 0x400000>;
		};

                env_nor: partition@400000 {
			label = "bareboxenv";
			reg = <0x400000 0x400000>;
		};
	};
};