Skip to content

Commit 5cf5619

Browse files
committed
treewide: Remove references to SOC_NRF54H20_ENGB_CPURAD
The SoC has been removed. Signed-off-by: Carles Cufi <[email protected]>
1 parent 6ccff5e commit 5cf5619

File tree

15 files changed

+23
-29
lines changed

15 files changed

+23
-29
lines changed

applications/machine_learning/Kconfig.sysbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ config PM_EXTERNAL_FLASH_MCUBOOT_SECONDARY
2626

2727
config ML_APP_INCLUDE_REMOTE_IMAGE
2828
bool "Include remote image build"
29-
depends on SOC_NRF54H20_CPUAPP || SOC_NRF54H20_ENGB_CPUAPP
29+
depends on SOC_NRF54H20_CPUAPP
3030

3131
config ML_APP_REMOTE_BOARD
3232
string "The name of the board to be used by remote image"

applications/nrf_desktop/src/modules/Kconfig.dvfs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
menuconfig DESKTOP_DVFS
88
bool "DVFS module [EXPERIMENTAL]"
9-
depends on SOC_NRF54H20_CPUAPP || SOC_NRF54H20_ENGB_CPUAPP
9+
depends on SOC_NRF54H20_CPUAPP
1010
select EXPERIMENTAL
1111
select NRFS_DVFS_SERVICE_ENABLED
1212
select CLOCK_CONTROL

samples/benchmarks/coremark/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ menu "CoreMark sample"
88

99
config APP_MODE_FLASH_AND_RUN
1010
bool "Run CoreMark benchmark on start up" if \
11-
!(SOC_NRF54H20_CPUPPR || SOC_NRF54H20_ENGB_CPUPPR)
12-
default y if SOC_NRF54H20_CPUPPR || SOC_NRF54H20_ENGB_CPUPPR
11+
!(SOC_NRF54H20_CPUPPR)
12+
default y if SOC_NRF54H20_CPUPPR
1313
help
1414
If enabled, CoreMark will start execution immediately after the CPU starts up.
1515
It also disables LEDs and buttons.

samples/peripheral/802154_phy_test/Kconfig.sysbuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#
66

77
choice APPCORE
8-
default APPCORE_REMOTE_SHELL if SOC_NRF5340_CPUNET || SOC_NRF54H20_CPURAD || SOC_NRF54H20_ENGB_CPURAD
8+
default APPCORE_REMOTE_SHELL if SOC_NRF5340_CPUNET || SOC_NRF54H20_CPURAD
99

1010
endchoice
1111

samples/peripheral/802154_phy_test/modules/app_rpc/zephyr/Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
config APP_RPC
88
bool "Enables application module features requiring interaction between cores"
99
depends on SOC_NRF5340_CPUNET || SOC_NRF5340_CPUAPP || SOC_NRF54H20_CPUAPP \
10-
|| SOC_NRF54H20_ENGB_CPUAPP || SOC_NRF54H20_CPURAD || SOC_NRF54H20_ENGB_CPURAD
10+
|| SOC_NRF54H20_CPURAD
1111
select NRF_RPC
1212
select NRF_RPC_CBOR

samples/peripheral/802154_phy_test/modules/app_rpc/zephyr/src/app_rpc.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@
1313
#include <nrf_rpc_cbor.h>
1414
#endif
1515

16-
#define IS_RPC_CLIENT (CONFIG_SOC_NRF5340_CPUNET || CONFIG_SOC_NRF54H20_CPURAD \
17-
|| CONFIG_SOC_NRF54H20_ENGB_CPURAD)
18-
#define IS_RPC_SERVER (CONFIG_SOC_NRF5340_CPUAPP || CONFIG_SOC_NRF54H20_CPUAPP \
19-
|| CONFIG_SOC_NRF54H20_ENGB_CPURAD)
16+
#define IS_RPC_CLIENT (CONFIG_SOC_NRF5340_CPUNET || CONFIG_SOC_NRF54H20_CPURAD)
17+
#define IS_RPC_SERVER (CONFIG_SOC_NRF5340_CPUAPP || CONFIG_SOC_NRF54H20_CPUAPP)
2018

2119
NRF_RPC_IPC_TRANSPORT(app_rpc_tr, DEVICE_DT_GET(DT_NODELABEL(ipc0)), "app_rpc_tr_ept");
2220
NRF_RPC_GROUP_DEFINE(app_rpc_grp, "app_rpc_grp", &app_rpc_tr, NULL, NULL, NULL);

subsys/bluetooth/controller/Kconfig

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ config BT_LL_SOFTDEVICE
4545
select BT_CTLR_SUBRATING_SUPPORT
4646
select BT_LL_SOFTDEVICE_HEADERS_INCLUDE
4747
depends on (SOC_SERIES_BSIM_NRFXX || SOC_SERIES_NRF52X || SOC_COMPATIBLE_NRF5340_CPUNET ||\
48-
SOC_NRF54H20_CPURAD || SOC_NRF54H20_ENGB_CPURAD || SOC_SERIES_NRF54LX)
48+
SOC_NRF54H20_CPURAD || SOC_SERIES_NRF54LX)
4949
depends on DT_HAS_NORDIC_BT_HCI_SDC_ENABLED
5050
help
5151
Use SoftDevice Link Layer implementation.
@@ -318,7 +318,6 @@ choice BT_LL_SOFTDEVICE_VARIANT
318318
BT_ISO || \
319319
SOC_COMPATIBLE_NRF5340_CPUNET || \
320320
SOC_NRF54H20_CPURAD || \
321-
SOC_NRF54H20_ENGB_CPURAD || \
322321
SOC_SERIES_NRF54LX)
323322
default BT_LL_SOFTDEVICE_CENTRAL if BT_OBSERVER
324323
default BT_LL_SOFTDEVICE_PERIPHERAL if BT_BROADCASTER

subsys/esb/Kconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ config ESB_NEVER_DISABLE_TX
150150

151151
config ESB_FAST_SWITCHING
152152
select EXPERIMENTAL
153-
depends on !ESB_NEVER_DISABLE_TX && (SOC_NRF54H20_CPURAD || SOC_NRF54H20_ENGB_CPURAD)
153+
depends on !ESB_NEVER_DISABLE_TX && (SOC_NRF54H20_CPURAD)
154154
bool "Fast radio TX/RX and RX/TX switching [EXPERIMENTAL]"
155155
help
156156
This option enables fast switching between transmit (TX) and receive (RX) modes
@@ -164,7 +164,7 @@ config ESB_FAST_SWITCHING
164164

165165
config ESB_FAST_CHANNEL_SWITCHING
166166
select EXPERIMENTAL
167-
depends on SOC_NRF54H20_CPURAD || SOC_NRF54H20_ENGB_CPURAD
167+
depends on SOC_NRF54H20_CPURAD
168168
bool "Fast radio channel switching [EXPERIMENTAL]"
169169
help
170170
This option enables fast radio channel switching.

subsys/nrf_security/Kconfig

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ if NRF_SECURITY
5959
config MBEDTLS_PSA_CRYPTO_BUILTIN_KEYS
6060
bool
6161
default y if SOC_SERIES_NRF54LX && PSA_CRYPTO_DRIVER_CRACEN
62-
default y if SOC_SERIES_NRF54HX && (SOC_NRF54H20_CPUSEC || SOC_NRF54H20_ENGB_CPUSEC)
62+
default y if SOC_SERIES_NRF54HX && SOC_NRF54H20_CPUSEC
6363
help
6464
Promptless option used to control if the PSA Crypto core should have support for builtin keys or not.
6565

@@ -258,7 +258,4 @@ endchoice
258258
config SOC_NRF54H20_CPUSEC
259259
bool
260260

261-
config SOC_NRF54H20_ENGB_CPUSEC
262-
bool
263-
264261
endmenu

subsys/nrf_security/src/drivers/cracen/psa_driver.Kconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1848,7 +1848,7 @@ config PSA_NEED_CRACEN_PLATFORM_KEYS
18481848
default y
18491849
depends on PSA_WANT_ALG_GCM
18501850
depends on PSA_WANT_AES_KEY_SIZE_256
1851-
depends on (SOC_NRF54H20_CPUSEC || SOC_NRF54H20_ENGB_CPUSEC)
1851+
depends on SOC_NRF54H20_CPUSEC
18521852

18531853

18541854
endmenu

0 commit comments

Comments
 (0)