zephyr/boards/riscv/rv32m1_vega/Kconfig.defconfig
Kumar Gala f7496df804 boards: remove unnecessary I2C / SPI bus Kconfig enablement
We now 'select I2C' and/or SPI bus in Kconfig in the sensor driver
Kconfig's so there is no need to have boards do the following:

config I2C
       default y if SENSOR

config SPI
       default y if SENSOR

Signed-off-by: Kumar Gala <galak@kernel.org>
2022-08-09 07:28:11 -05:00

33 lines
644 B
Plaintext

# SPDX-License-Identifier: Apache-2.0
if BOARD_RV32M1_VEGA
config BOARD
default "rv32m1_vega_ri5cy" if SOC_OPENISA_RV32M1_RI5CY
default "rv32m1_vega_zero_riscy" if SOC_OPENISA_RV32M1_ZERO_RISCY
if BT
config BT_CTLR
default y
#TODO: Resolve the complete non-BLE support for crypto CAU3 firmware/driver
#config HAS_RV32M1_CAU3
# bool
# default y if BT_CTLR_CRYPTO && !BT_CTLR_LE_ENC_SUPPORT
config HAS_RV32M1_CAU3_BLE
bool
default y if BT_CTLR_CRYPTO && \
(BT_CTLR_LE_ENC_SUPPORT || BT_CTLR_PRIVACY_SUPPORT)
config RV32M1_INTMUX_CHANNEL_2
default n
config RV32M1_INTMUX_CHANNEL_3
default n
endif # BT
endif # BOARD_RV32M1_VEGA