blob: b79fd18246d2b6f3e8ecbf578c64660fc3701973 [file] [log] [blame]
/*
* Copyright (c) 2019 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
/ {
chosen {
/*
* shared memory reserved for the inter-processor communication
*/
zephyr,sram = &sram;
};
sram: memory@0 {
compatible = "mmio-sram";
reg = <0x00000000 0x10000000 >;
};
mbox-consumer {
compatible = "vnd,mbox-consumer";
mboxes = <&mbox 1>, <&mbox 0>;
mbox-names = "tx", "rx";
};
};