zephyr/drivers/crypto/Kconfig.nrf_ecb
Johan Hedberg 8b02141ca7 Bluetooth: Controller: Replace BT_CTLR with HAS_BT_CTLR
Deprecate BT_CTLR, and add a new HAS_BT_CTLR as a virtual option which
specific users (like BT_LL_SW_SPLIT) select. This also means that we can
remove all places that were forcefully enabling the BT_CTLR option, and
instead we now depend on devicetree to get some local LL HCI driver
enabled which in turn also enables the HAS_BT_CTLR option.

Signed-off-by: Johan Hedberg <johan.hedberg@silabs.com>
2024-12-03 10:16:44 +01:00

15 lines
510 B
Text

# NRF AES ECB configuration options
# Copyright (c) 2020 Nordic Semiconductor ASA
# SPDX-License-Identifier: Apache-2.0
config CRYPTO_NRF_ECB
bool "nRF AES electronic codebook mode encryption"
default y
depends on DT_HAS_NORDIC_NRF_ECB_ENABLED
# Bluetooth controller uses the ECB peripheral directly
# (see subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/ecb.c),
# hence this driver cannot be enabled together with it.
depends on !HAS_BT_CTLR
help
Enable nRF HAL-based AES ECB encryption driver