1/* 2 * Skeleton device tree; the bare minimum needed to boot; just include and 3 * add a compatible value. The bootloader will typically populate the memory 4 * node. 5 */ 6 7/ { 8 #address-cells = <1>; 9 #size-cells = <1>; 10 chosen { }; 11 aliases { }; 12 13 cpu_card { 14 compatible = "simple-bus"; 15 #address-cells = <1>; 16 #size-cells = <1>; 17 u-boot,dm-pre-reloc; 18 19 timer@0 { 20 compatible = "snps,arc-timer"; 21 clocks = <&core_clk>; 22 reg = <0 1>; 23 }; 24 }; 25 26 memory@80000000 { 27 device_type = "memory"; 28 reg = <0x80000000 0x10000000>; /* 256M */ 29 }; 30}; 31