From 0fc13a90933c064218ae3a7db5243f39f00e928f Mon Sep 17 00:00:00 2001 From: Daniel Schwierzeck Date: Sat, 19 Dec 2015 20:20:48 +0100 Subject: MIPS: add initial infrastructure for device-tree files Prepare sub-folder for device-tree files. Make support for device-tree on MIPS available in Kbuild/Kconfig. Signed-off-by: Daniel Schwierzeck Signed-off-by: Purna Chandra Mandal --- arch/mips/dts/skeleton.dtsi | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 arch/mips/dts/skeleton.dtsi (limited to 'arch/mips/dts/skeleton.dtsi') diff --git a/arch/mips/dts/skeleton.dtsi b/arch/mips/dts/skeleton.dtsi new file mode 100644 index 0000000000..24ee6c3e73 --- /dev/null +++ b/arch/mips/dts/skeleton.dtsi @@ -0,0 +1,23 @@ +/* + * Skeleton device tree; the bare minimum needed to boot; just include and + * add a compatible value. The bootloader will typically populate the memory + * node. + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +/ { + #address-cells = <1>; + #size-cells = <1>; + + chosen { + }; + + aliases { + }; + + memory { + device_type = "memory"; + reg = <0 0>; + }; +}; -- cgit v1.2.1