summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-at91/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-at91/Kconfig')
-rw-r--r--arch/arm/mach-at91/Kconfig62
1 files changed, 62 insertions, 0 deletions
diff --git a/arch/arm/mach-at91/Kconfig b/arch/arm/mach-at91/Kconfig
new file mode 100644
index 0000000000..b0e6407b0a
--- /dev/null
+++ b/arch/arm/mach-at91/Kconfig
@@ -0,0 +1,62 @@
+if ARCH_AT91
+
+comment "Atmel AT91 System-on-Chip"
+
+choice
+ prompt "Atmel AT91 Processor"
+
+config ARCH_AT91SAM9260
+ bool "AT91SAM9260"
+ select ARM926EJS
+
+config ARCH_AT91SAM9263
+ bool "AT91SAM9263"
+ select ARM926EJS
+ select MACH_HAS_LOWLEVEL_INIT
+
+endchoice
+
+# ----------------------------------------------------------
+
+if ARCH_AT91SAM9260
+
+choice
+
+ prompt "AT91SAM9260 Board Type"
+
+config MACH_AT91SAM9260_EK
+ bool "Atmel AT91SAM9260-EK"
+ help
+ Say y here if you are using Atmel's AT91SAM9260-EK Evaluation board
+
+endchoice
+
+endif
+
+# ----------------------------------------------------------
+
+if ARCH_AT91SAM9263
+
+choice
+ prompt "AT91SAM9263 Board Type"
+
+config MACH_AT91SAM9263_EK
+ bool "Atmel AT91SAM9263-EK"
+ help
+ Say y here if you are using Atmel's AT91SAM9263-EK Evaluation board
+
+config MACH_MMCCPU
+ bool "Bucyrus MMC-CPU"
+ help
+ Say y here if you are using the Bucyrus MMC-CPU
+
+config MACH_PM9263
+ bool "Ronetix PM9263"
+ help
+ Say y here if you are using the Ronetix PM9263 Board
+
+endchoice
+
+endif
+
+endif