1/* 2 * Copyright (c) 2019 Linaro Limited 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 chosen { 9 /* 10 * shared memory reserved for the inter-processor communication 11 */ 12 zephyr,sram = &sram; 13 }; 14 15 sram: memory@0 { 16 compatible = "mmio-sram"; 17 reg = <0x00000000 0x10000000 >; 18 }; 19}; 20