1/* Copyright 2021 Google LLC 2 * SPDX-License-Identifier: Apache-2.0 3 */ 4 5/ { 6 soc { 7 sram0: memory@40000000 { 8 compatible = "mmio-sram"; 9 reg = < 0x0 0x40000000 0x0 0x7000000 >; 10 }; 11 12 res: memory@47000000 { 13 compatible = "zephyr,memory-region", "mmio-sram"; 14 reg = <0 0x47000000 0 0x8>; 15 zephyr,memory-region = "RES"; 16 }; 17 }; 18 19 syscon: syscon@47000000 { 20 compatible = "syscon"; 21 status = "okay"; 22 reg = <0 0x47000000 0 0x8>; 23 reg-io-width = <1>; 24 }; 25}; 26