1/* 2 * Copyright (c) 2019 Intel Corporation. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7#include "skeleton.dtsi" 8 9/ { 10 cpus { 11 #address-cells = <1>; 12 #size-cells = <0>; 13 14 cpu0: cpu@0 { 15 device_type = "cpu"; 16 compatible = "sample_controller"; 17 reg = <0>; 18 }; 19 }; 20 21 sram0: memory@60000000 { 22 device_type = "memory"; 23 compatible = "mmio-sram"; 24 reg = <0x60000000 0x4000000>; 25 }; 26 27 srom0: memory@fe000000 { 28 device_type = "memory"; 29 compatible = "mmio-sram"; 30 reg = <0x50000000 0x1000000>; 31 }; 32 33 soc { 34 #address-cells = <1>; 35 #size-cells = <1>; 36 compatible = "simple-bus"; 37 ranges; 38 39 }; 40}; 41