boards: mimxrt1160_evk: enable messaging unit

Enable messaging unit support for RT1160 EVK

Signed-off-by: Daniel DeGrasse <daniel.degrasse@nxp.com>
This commit is contained in:
Daniel DeGrasse 2022-11-15 15:42:26 -06:00 committed by Carles Cufí
commit b09f2b8990
2 changed files with 10 additions and 0 deletions

View file

@ -26,6 +26,7 @@
zephyr,flash-controller = &is25wp128; zephyr,flash-controller = &is25wp128;
zephyr,flash = &is25wp128; zephyr,flash = &is25wp128;
nxp,m4-partition = &slot1_partition; nxp,m4-partition = &slot1_partition;
zephyr,ipc = &mailbox_b;
}; };
@ -56,3 +57,7 @@
&edma_lpsr0 { &edma_lpsr0 {
status = "okay"; status = "okay";
}; };
&mailbox_b {
status = "okay";
};

View file

@ -24,6 +24,7 @@
zephyr,flash = &is25wp128; zephyr,flash = &is25wp128;
zephyr,code-partition = &slot0_partition; zephyr,code-partition = &slot0_partition;
zephyr,cpu1-region = &ocram; zephyr,cpu1-region = &ocram;
zephyr,ipc = &mailbox_a;
}; };
sdram0: memory@80000000 { sdram0: memory@80000000 {
@ -90,3 +91,7 @@
zephyr_udc0: &usb1 { zephyr_udc0: &usb1 {
status = "okay"; status = "okay";
}; };
&mailbox_a {
status = "okay";
};