boards: rd_rw612_bga: Update board information

- Add pinctrl for flexcomm0 in usart mode
needed for BLE tester application
- Reserve the firmware storage partition
- Mark HCI as a wakeup source

Signed-off-by: Yassine El Aissaoui <yassine.elaissaoui@nxp.com>
This commit is contained in:
Yassine El Aissaoui 2024-04-23 16:03:20 +02:00 committed by Johan Hedberg
commit f062d8bf32
2 changed files with 22 additions and 0 deletions

View file

@ -14,6 +14,13 @@
};
};
pinmux_flexcomm0_usart: pinmux_flexcomm0_usart {
group0 {
pinmux = <IO_MUX_FC0_USART_DATA>;
slew-rate = "normal";
};
};
pinmux_flexcomm0_spi: pinmux_flexcomm0_spi {
group0 {
pinmux = <IO_MUX_FC0_SPI_SS0_IO0>,

View file

@ -147,6 +147,16 @@ arduino_i2c: &flexcomm2 {
label = "image-0";
reg = <0x00020000 0x3e0000>;
};
/* This partition is reserved for connectivity firmwares storage
* and shouldn't be moved.
*/
fw_storage: partition@400000 {
label = "fw_storage";
reg = <0x400000 0x280000>;
read-only;
};
slot1_partition: partition@680000 {
label = "image-1";
reg = <0x680000 0x3e0000>;
@ -264,3 +274,8 @@ zephyr_udc0: &usb_otg {
&systick {
status = "disabled";
};
&hci {
status = "okay";
wakeup-source;
};