Skip to content

Commit

Permalink
[nrf fromlist] soc: nordic: nrf53: SOC_NRF53_CPUNET_ENABLE should not…
Browse files Browse the repository at this point in the history
… 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]>
  • Loading branch information
sean-madigan committed Oct 15, 2024
1 parent d3d3f66 commit 9797db0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions soc/nordic/nrf53/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,7 @@ config SOC_NRF53_CPUNET_MGMT

config SOC_NRF53_CPUNET_ENABLE
bool "NRF53 Network MCU is enabled at boot time"
depends on !BT
default y if NRF_802154_SER_HOST
default y if (BT || NRF_802154_SER_HOST)
select SOC_NRF53_CPUNET_MGMT
help
This option enables releasing the Network 'force off' signal, which
Expand All @@ -215,7 +214,6 @@ config BOARD_ENABLE_CPUNET
bool "[DEPRECATED] NRF53 Network MCU is enabled at boot time"
select SOC_NRF53_CPUNET_ENABLE
select DEPRECATED
depends on !BT
help
Use SOC_NRF53_CPUNET_ENABLE instead.

Expand Down

0 comments on commit 9797db0

Please sign in to comment.