Files
u-boot/arch/arm/mach-airoha/Kconfig
Tom Rini 0da1866a8f core: Rework REGMAP symbols implementation
As exposed by "make randconfig", we have an issue with the dependencies
for REGMAP (and xPL variants). As this is a library function, it should
always be selected and not depended on by other functionality. This is
largely done correctly today, so just correct the few outliers.

Acked-by: Anshul Dalal <anshuld@ti.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
2026-03-30 16:59:35 -06:00

48 lines
1.2 KiB
Plaintext

if ARCH_AIROHA
config SYS_VENDOR
default "airoha"
choice
prompt "Airoha board select"
config TARGET_EN7523
bool "Airoha EN7523 SoC"
select CPU_V7A
select ARMV7_SET_CORTEX_SMPEN
select REGMAP
help
The Airoha EN7523 family (en7523/en7529/en7562) is an ARM-based
SoCs with a dual-core CPU. It comes with Wi-Fi 5/6 support and
connectivity to Ethernet PHY, DDR, PCIe, USB, UART and VoIP.
With advanced hardware design, EN7523 provides high processing
performance and low power consumption.
config TARGET_AN7581
bool "Airoha AN7581 SoC"
select ARM64
help
The Airoha EN7581 is a ARM-based SoC with a quad-core Cortex-A7
including NEON and GPU, Mali-450 graphics, several DDR3 options,
crypto engine, built-in Wi-Fi / Bluetooth combo chip, JPEG decoder,
video interfaces supporting HDMI and MIPI, and video codec support.
Peripherals include Gigabit Ethernet, switch, USB3.0 and OTG, PCIe,
I2S, PCM, S/PDIF, UART, SPI, I2C, IR TX/RX, and PWM.
endchoice
config SYS_SOC
default "en7523" if TARGET_EN7523
default "an7581" if TARGET_AN7581
config SYS_BOARD
default "en7523" if TARGET_EN7523
default "an7581" if TARGET_AN7581
config SYS_CONFIG_NAME
default "en7523" if TARGET_EN7523
default "an7581" if TARGET_AN7581
endif