This patch provides a simple device tree source for the Versatile Express board. It just defines memory layout and assigns a compatible string to the board.
Compiled blob tested on Versatile Express, passed to the kernel through u-boot. 'chosen' node defined within u-boot to avoid cluttering the default dts configuration. Signed-off-by: Lorenzo Pieralisi <[email protected]> --- arch/arm/boot/dts/vexpress.dts | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) create mode 100644 arch/arm/boot/dts/vexpress.dts diff --git a/arch/arm/boot/dts/vexpress.dts b/arch/arm/boot/dts/vexpress.dts new file mode 100644 index 0000000..bea2a18 --- /dev/null +++ b/arch/arm/boot/dts/vexpress.dts @@ -0,0 +1,18 @@ +/dts-v1/; + +/ { + model = "ARM Versatile Express"; + compatible = "arm,vexpress"; + + #address-cells = <1>; + #size-cells = <1>; + + aliases { }; + + chosen { }; + + memory { + device_type = "memory"; + reg = <0x60000000 0x40000000>; + }; +}; -- 1.7.4.4 _______________________________________________ devicetree-discuss mailing list [email protected] https://lists.ozlabs.org/listinfo/devicetree-discuss
