Skip to content

Commit 9797db0

Browse files
committed
[nrf fromlist] soc: nordic: nrf53: SOC_NRF53_CPUNET_ENABLE should not depend on !BT
This causes issues as we still want the net core to be set up on initialisation if CONFIG_BT is enabled in many cases. The previous changes in zephyrproject-rtos/zephyr#74304 assumed that because this is also handled in `bt_hci_transport_setup` that it shouldn't be done on initialisation too. Also, I think that `bt_hci_transport_setup` should not be even controlling the network core state like it is currently and should be looked at being changed in a future PR. Upstream PR: zephyrproject-rtos/zephyr#79875 Signed-off-by: Sean Madigan <[email protected]>
1 parent d3d3f66 commit 9797db0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

soc/nordic/nrf53/Kconfig

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,7 @@ config SOC_NRF53_CPUNET_MGMT
197197

198198
config SOC_NRF53_CPUNET_ENABLE
199199
bool "NRF53 Network MCU is enabled at boot time"
200-
depends on !BT
201-
default y if NRF_802154_SER_HOST
200+
default y if (BT || NRF_802154_SER_HOST)
202201
select SOC_NRF53_CPUNET_MGMT
203202
help
204203
This option enables releasing the Network 'force off' signal, which
@@ -215,7 +214,6 @@ config BOARD_ENABLE_CPUNET
215214
bool "[DEPRECATED] NRF53 Network MCU is enabled at boot time"
216215
select SOC_NRF53_CPUNET_ENABLE
217216
select DEPRECATED
218-
depends on !BT
219217
help
220218
Use SOC_NRF53_CPUNET_ENABLE instead.
221219

0 commit comments

Comments
 (0)