sample: open_amp_rsc_table: Add support for imx8mp_evk M7 core
This enables openamp_rsc_table sample for imx8mp_evk on M7 core Signed-off-by: Alexandru Lastur <alexandru.lastur@nxp.com>
This commit is contained in:
parent
b643070557
commit
840f13f13a
2 changed files with 33 additions and 0 deletions
|
|
@ -0,0 +1,9 @@
|
|||
CONFIG_LOG_PRINTK=n
|
||||
CONFIG_IPM_IMX_MAX_DATA_SIZE_16=n
|
||||
CONFIG_IPM_IMX_MAX_DATA_SIZE_4=y
|
||||
CONFIG_OPENAMP_WITH_DCACHE=y
|
||||
CONFIG_IPM_IMX_FW_READY_REPLY=y
|
||||
CONFIG_LOG=y
|
||||
CONFIG_LOG_BACKEND_UART=y
|
||||
CONFIG_LOG_DEFAULT_LEVEL=0
|
||||
CONFIG_LOG_MODE_MINIMAL=y
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
/*
|
||||
* Copyright 2024 NXP
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/ {
|
||||
chosen {
|
||||
/*
|
||||
* shared memory reserved for the inter-processor communication
|
||||
*/
|
||||
zephyr,ipc_shm = &shram;
|
||||
zephyr,ipc = &mailbox0;
|
||||
};
|
||||
|
||||
shram: memory@55000000 {
|
||||
compatible = "mmio-sram";
|
||||
reg = <0x55000000 0x500000>;
|
||||
};
|
||||
};
|
||||
|
||||
&mailbox0 {
|
||||
status = "okay";
|
||||
};
|
||||
Loading…
Reference in a new issue