Skip to content

Commit 004833d

Browse files
committed
boards: nordic: nrf54ls05dk: enable bt_hci_sdc
This will allow to build ble samples for ls05. Signed-off-by: Piotr Kosycarz <[email protected]>
1 parent 7c4265c commit 004833d

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

boards/nordic/nrf54ls05dk/nrf54ls05b_cpuapp_common.dtsi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
zephyr,bt-c2h-uart = &uart20;
1717
zephyr,flash-controller = &rram_controller;
1818
zephyr,flash = &cpuapp_rram;
19+
zephyr,bt-hci = &bt_hci_sdc;
1920
zephyr,ieee802154 = &ieee802154;
2021
};
2122
};

boards/nordic/nrf54ls05dk/nrf54ls05dk_nrf54ls05b_cpuapp.dts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,14 @@
1515
chosen {
1616
zephyr,code-partition = &slot0_partition;
1717
zephyr,sram = &cpuapp_sram;
18+
zephyr,bt-hci = &bt_hci_sdc;
1819
};
1920
};
21+
22+
&bt_hci_sdc {
23+
status = "okay";
24+
};
25+
26+
&bt_hci_controller {
27+
status = "disabled";
28+
};

dts/arm/nordic/nrf54ls05b_enga_cpuapp.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ nvic: &cpuapp_nvic {};
4343
};
4444

4545
&grtc {
46-
interrupts = <226 NRF_DEFAULT_IRQ_PRIORITY>;
46+
interrupts = <226 NRF_DEFAULT_IRQ_PRIORITY>,<229 NRF_DEFAULT_IRQ_PRIORITY>;
4747
};
4848

4949
&gpiote20 {

dts/common/nordic/nrf54ls05b.dtsi

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,16 @@
185185
compatible = "nordic,nrf-ieee802154";
186186
status = "disabled";
187187
};
188+
189+
bt_hci_sdc: bt_hci_sdc {
190+
compatible = "nordic,bt-hci-sdc";
191+
status = "disabled";
192+
};
193+
194+
bt_hci_controller: bt_hci_controller {
195+
compatible = "zephyr,bt-hci-ll-sw-split";
196+
status = "disabled";
197+
};
188198
};
189199

190200
dppic20: dppic@C2000 {

0 commit comments

Comments
 (0)