Skip to content

Commit 840f13f

Browse files
alxlasturcarlescufi
authored andcommitted
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 <[email protected]>
1 parent b643070 commit 840f13f

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
CONFIG_LOG_PRINTK=n
2+
CONFIG_IPM_IMX_MAX_DATA_SIZE_16=n
3+
CONFIG_IPM_IMX_MAX_DATA_SIZE_4=y
4+
CONFIG_OPENAMP_WITH_DCACHE=y
5+
CONFIG_IPM_IMX_FW_READY_REPLY=y
6+
CONFIG_LOG=y
7+
CONFIG_LOG_BACKEND_UART=y
8+
CONFIG_LOG_DEFAULT_LEVEL=0
9+
CONFIG_LOG_MODE_MINIMAL=y
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/*
2+
* Copyright 2024 NXP
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 = &shram;
13+
zephyr,ipc = &mailbox0;
14+
};
15+
16+
shram: memory@55000000 {
17+
compatible = "mmio-sram";
18+
reg = <0x55000000 0x500000>;
19+
};
20+
};
21+
22+
&mailbox0 {
23+
status = "okay";
24+
};

0 commit comments

Comments
 (0)