summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/arm926ejs
diff options
context:
space:
mode:
authorVladimir Zapolskiy <vz@mleia.com>2018-09-17 21:43:03 +0300
committerTom Rini <trini@konsulko.com>2018-10-19 12:56:58 -0400
commitee54dfea45b3ca1af5783c992f2efffe3e87e2f7 (patch)
tree41ed9d3fc3a4de5d660a34f8b0449f19565e2650 /arch/arm/cpu/arm926ejs
parent83c18d4101cc224ffee836376504ac855908ad6f (diff)
downloadu-boot-ee54dfea45b3ca1af5783c992f2efffe3e87e2f7.tar.gz
u-boot-ee54dfea45b3ca1af5783c992f2efffe3e87e2f7.tar.xz
u-boot-ee54dfea45b3ca1af5783c992f2efffe3e87e2f7.zip
arm: lpc32xx: add CONFIG_ARCH_LPC32XX build option
The explicit arch specific build symbol allows to group supported boards, generalize common config options and it will serve as a dependency for platform only drivers. Two related board defconfigs are resynced after the change. Signed-off-by: Vladimir Zapolskiy <vz@mleia.com>
Diffstat (limited to 'arch/arm/cpu/arm926ejs')
-rw-r--r--arch/arm/cpu/arm926ejs/lpc32xx/Kconfig20
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/cpu/arm926ejs/lpc32xx/Kconfig b/arch/arm/cpu/arm926ejs/lpc32xx/Kconfig
new file mode 100644
index 0000000000..986ad738ac
--- /dev/null
+++ b/arch/arm/cpu/arm926ejs/lpc32xx/Kconfig
@@ -0,0 +1,20 @@
+if ARCH_LPC32XX
+
+config SYS_SOC
+ default "lpc32xx"
+
+choice
+ prompt "NXP LPC32xx board select"
+
+config TARGET_DEVKIT3250
+ bool "Timll DevKit3250"
+
+config TARGET_WORK_92105
+ bool "Work Microwave Work_92105"
+
+endchoice
+
+source "board/timll/devkit3250/Kconfig"
+source "board/work-microwave/work_92105/Kconfig"
+
+endif