summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2008-12-19 12:01:05 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2008-12-19 12:01:05 +0100
commit32f9f72e9f9a86d0ef4a50bfc07578303b59b3c0 (patch)
treefc8085419a9962ebf31ee2d5569b066faa240efb /arch
parent5ccd3fd093f02394161fdfc18ecea11da189bc79 (diff)
downloadbarebox-32f9f72e9f9a86d0ef4a50bfc07578303b59b3c0.tar.gz
barebox-32f9f72e9f9a86d0ef4a50bfc07578303b59b3c0.tar.xz
PCM037: Add support for different memory amounts
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/Kconfig1
-rw-r--r--arch/arm/mach-imx/Kconfig25
2 files changed, 26 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 120e7c09a7..1a8ddb05d0 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -181,6 +181,7 @@ config IMX_CLKO
Say y here if you want to have the clko command which lets you select the
frequency to output on this pin.
+source arch/arm/mach-imx/Kconfig
source arch/arm/mach-netx/Kconfig
source arch/arm/mach-omap/Kconfig
diff --git a/arch/arm/mach-imx/Kconfig b/arch/arm/mach-imx/Kconfig
new file mode 100644
index 0000000000..8e7b544330
--- /dev/null
+++ b/arch/arm/mach-imx/Kconfig
@@ -0,0 +1,25 @@
+
+menu "Board specific settings "
+
+if MACH_PCM037
+choice
+ prompt "SDRAM Bank0"
+config PCM037_SDRAM_BANK0_128MB
+ bool "128MB"
+config PCM037_SDRAM_BANK0_256MB
+ bool "256MB"
+endchoice
+
+choice
+ prompt "SDRAM Bank1"
+config PCM037_SDRAM_BANK1_NONE
+ bool "none"
+config PCM037_SDRAM_BANK1_128MB
+ bool "128MB"
+config PCM037_SDRAM_BANK1_256MB
+ bool "256MB"
+endchoice
+endif
+
+endmenu
+