zephyr/samples/subsys/ipc/openamp_rsc_table/boards/stm32mp157c_dk2.overlay
Arnaud Pouliquen f6800aa1c4 samples: add openamp sample relying on resource table
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>
2020-04-01 09:21:15 -05:00

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)>;
};