boards: nordic: nrf54h20pdk: add ieee802154 radio to chosen

This commit adds the ieee802154 node to chosen for nRF54H20 PDK and
enables it.

Signed-off-by: Jędrzej Ciupis <jedrzej.ciupis@nordicsemi.no>
This commit is contained in:
Jędrzej Ciupis 2024-03-14 12:55:34 +01:00 committed by Carles Cufí
commit 7a8c16c937
2 changed files with 10 additions and 0 deletions

View file

@ -24,6 +24,7 @@
zephyr,flash = &mram1x;
zephyr,sram = &cpuapp_data;
zephyr,shell-uart = &uart136;
zephyr,ieee802154 = &cpuapp_ieee802154;
zephyr,bt-hci-ipc = &ipc0;
};
@ -224,3 +225,7 @@ ipc0: &cpuapp_cpurad_ipc {
t-exit-dpd = <30000>;
};
};
&cpuapp_ieee802154 {
status = "okay";
};

View file

@ -25,6 +25,7 @@
zephyr,flash = &mram1x;
zephyr,sram = &cpurad_ram0;
zephyr,shell-uart = &uart135;
zephyr,ieee802154 = &cpurad_ieee802154;
zephyr,bt-hci-ipc = &ipc0;
};
};
@ -98,3 +99,7 @@ ipc0: &cpuapp_cpurad_ipc {
pinctrl-1 = <&uart136_sleep>;
pinctrl-names = "default", "sleep";
};
&cpurad_ieee802154 {
status = "okay";
};