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,ipc_shm = &sramx1;
13		zephyr,ipc = &mailbox0;
14	};
15
16	sramx1:memory@4000000{
17		compatible = "mmio-sram";
18		reg = <0x4000000 0x8000>;
19	};
20};
21