boards: lpcxpresso55s69: mailboxes and memory

Partitions memory and flash for multi-core purposes.
Also enabes mailboxes for cpu0 and cpu1.

Signed-off-by: Andrei Gansari <andrei.gansari@nxp.com>
This commit is contained in:
Andrei Gansari 2020-12-16 18:56:05 +02:00 committed by Anas Nashif
commit a2089fe882
2 changed files with 12 additions and 1 deletions

View file

@ -27,6 +27,8 @@
zephyr,sram = &sram0; zephyr,sram = &sram0;
zephyr,flash = &flash0; zephyr,flash = &flash0;
zephyr,code-partition = &slot0_partition; zephyr,code-partition = &slot0_partition;
zephyr,code-cpu1-partition = &slot1_partition;
zephyr,sram-cpu1-partition = &sram3;
zephyr,console = &flexcomm0; zephyr,console = &flexcomm0;
zephyr,shell-uart = &flexcomm0; zephyr,shell-uart = &flexcomm0;
zephyr,entropy = &rng; zephyr,entropy = &rng;
@ -99,3 +101,7 @@
dma-channels = <20>; dma-channels = <20>;
status = "okay"; status = "okay";
}; };
&mailbox0 {
status = "okay";
};

View file

@ -18,8 +18,9 @@
}; };
chosen { chosen {
zephyr,sram = &sram1; zephyr,sram = &sram3;
zephyr,flash = &flash0; zephyr,flash = &flash0;
zephyr,code-partition = &slot1_partition;
zephyr,entropy = &rng; zephyr,entropy = &rng;
}; };
}; };
@ -35,3 +36,7 @@
&blue_led { &blue_led {
status = "okay"; status = "okay";
}; };
&mailbox0 {
status = "okay";
};