mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-10 04:41:56 +00:00
This sample is designed to respond to the Linux rpmsg sample client. It should be platform independent and based on the the integration of a resource table in the elf file. Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen@st.com>
25 lines
394 B
Plaintext
25 lines
394 B
Plaintext
/*
|
|
* Copyright (c) 2020, STMICROLECTRONICS
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
chosen {
|
|
/*
|
|
* shared memory reserved for the inter-processor communication
|
|
*/
|
|
zephyr,ipc_shm = &mcusram3;
|
|
zephyr,ipc = &mailbox;
|
|
};
|
|
|
|
mcusram3: memory1@10040000 {
|
|
compatible = "mmio-sram";
|
|
reg = <0x10040000 DT_SIZE_K(64)>;
|
|
};
|
|
};
|
|
|
|
&mcusram {
|
|
reg = <0x10000000 DT_SIZE_K(256)>;
|
|
};
|