aboutsummaryrefslogtreecommitdiffstats
path: root/dtc/tests/fdtdump.dts
diff options
context:
space:
mode:
Diffstat (limited to 'dtc/tests/fdtdump.dts')
-rw-r--r--dtc/tests/fdtdump.dts38
1 files changed, 38 insertions, 0 deletions
diff --git a/dtc/tests/fdtdump.dts b/dtc/tests/fdtdump.dts
new file mode 100644
index 000000000..b83b7dffa
--- /dev/null
+++ b/dtc/tests/fdtdump.dts
@@ -0,0 +1,38 @@
+/dts-v1/;
+
+/memreserve/ 0 0xe;
+/ {
+ model = "MyBoardName";
+ compatible = "MyBoardName", "MyBoardFamilyName";
+ #address-cells = <0x00000002>;
+ #size-cells = <0x00000002>;
+ cpus {
+ linux,phandle = <0x00000001>;
+ #address-cells = <0x00000001>;
+ #size-cells = <0x00000000>;
+ PowerPC,970@0 {
+ device_type = "cpu";
+ reg = <0x00000000>;
+ linux,boot-cpu;
+ };
+ PowerPC,970@1 {
+ device_type = "cpu";
+ reg = <0x00000001>;
+ };
+ };
+ randomnode {
+ string = "foo", "stuff";
+ bytes = [61 62 63 64 65];
+ nbytes = [80 ff];
+ child {
+ };
+ };
+ memory@0 {
+ device_type = "memory";
+ reg = <0x00000000 0x00000123 0x00000456 0x87654321>;
+ };
+ chosen {
+ bootargs = "root=/dev/sda2";
+ linux,platform = <0x00000600>;
+ };
+};