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	soc {
28		#address-cells = <1>;
29		#size-cells = <1>;
30		compatible = "simple-bus";
31		ranges;
32
33	};
34};
35