Skip to content

Commit

Permalink
[nrf noup] dts: Add Bluetooth Controller to nRF54H20
Browse files Browse the repository at this point in the history
The nRF54H20 supports a Bluetooth controller.
The HCI driver interface has changed upstream in
zephyrproject-rtos/zephyr#72323
so now we need to add it to device tree.

Signed-off-by: Rubin Gerritsen <[email protected]>
(cherry picked from commit 25e8625)
  • Loading branch information
rugeGerritsen authored and rlubos committed Oct 23, 2024
1 parent f20de5a commit e4e2046
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions dts/arm/nordic/nrf54h20_cpurad.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ wdt011: &cpurad_wdt011 {};
/delete-node/ &cpuflpr;

/ {
chosen {
zephyr,bt-hci = &bt_hci_controller;
};

soc {
compatible = "simple-bus";
interrupt-parent = <&cpurad_nvic>;
Expand Down Expand Up @@ -99,3 +103,7 @@ wdt011: &cpurad_wdt011 {};
&dppic020 {
status = "okay";
};

&bt_hci_controller {
status = "okay";
};
8 changes: 8 additions & 0 deletions dts/common/nordic/nrf54h20.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,14 @@
compatible = "nordic,nrf-ieee802154";
status = "disabled";
};

/* Note: In the nRF Connect SDK the SoftDevice Controller
* is added and set as the default Bluetooth Controller.
*/
bt_hci_controller: bt_hci_controller {
compatible = "zephyr,bt-hci-ll-sw-split";
status = "disabled";
};
};

ccm030: ccm@3a000 {
Expand Down

0 comments on commit e4e2046

Please sign in to comment.