blob: cf5043d6b82189dee21add9875940275392fb9d5 [file] [log] [blame]
Jim Liu84335542022-04-19 13:32:19 +08001if ARCH_NPCM
2
3config SYS_ARCH
4 default "arm"
5
6config SYS_TEXT_BASE
7 default 0x8000
8
9choice
10 prompt "Nuvoton SoC select"
11 default ARCH_NPCM7xx
12
13config ARCH_NPCM7xx
14 bool "Support Nuvoton NPCM7xx SoC"
15 select CPU_V7A
16 select OF_CONTROL
17 select DM
18 help
19 General support for NPCM7xx BMC (Poleg).
20 Nuvoton NPCM7xx BMC is based on the Cortex A9.
21
22endchoice
23
24source "arch/arm/mach-npcm/npcm7xx/Kconfig"
25
26endif