File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
samples/subsys/ipc/openamp_rsc_table/boards Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
+ };
You can’t perform that action at this time.
0 commit comments