summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-pxa
diff options
context:
space:
mode:
authorRobert Jarzmik <robert.jarzmik@free.fr>2012-02-28 14:41:11 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2012-02-29 08:28:20 +0100
commitff79f7a41c3f01af09479b33fe3825597c2f6a7f (patch)
treefc8f9a6075d1bd6fcded13854bd0b2fe04b8e16f /arch/arm/mach-pxa
parentf67fc4fb7a6a6fba10f80c5803f1d6df0276a6b2 (diff)
downloadbarebox-ff79f7a41c3f01af09479b33fe3825597c2f6a7f.tar.gz
barebox-ff79f7a41c3f01af09479b33fe3825597c2f6a7f.tar.xz
arm/mach-pxa: add mioa701 board
Add Mitac MioA701 board initial support. The support provides basic boot and : - a console over USB (serial gadget). - the SD card support - the MTD docg3 support - the LCD support Add a check in the default environment for a barebox.env file on the first partition (FAT). If the file exists, source it instead of the normal boot procedure. Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-pxa')
-rw-r--r--arch/arm/mach-pxa/Kconfig18
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/Kconfig b/arch/arm/mach-pxa/Kconfig
index 9ef11bb6fc..750f466527 100644
--- a/arch/arm/mach-pxa/Kconfig
+++ b/arch/arm/mach-pxa/Kconfig
@@ -2,9 +2,11 @@ if ARCH_PXA
config ARCH_TEXT_BASE
hex
+ default 0xa0000000 if MACH_MIOA701
config BOARDINFO
string
+ default "Scoter Mitac Mio A701" if MACH_MIOA701
# ----------------------------------------------------------
@@ -29,8 +31,24 @@ choice
prompt "PXA27x Board Type"
bool
+config MACH_MIOA701
+ bool "Mitac Mio A701"
+ select BCH_CONST_PARAMS
+ select PWM
+ help
+ Say Y here if you are using a Mitac Mio A701 smartphone
+ board
endchoice
+if MACH_MIOA701
+config BCH_CONST_M
+ int
+ default 14 if MACH_MIOA701
+config BCH_CONST_T
+ int
+ default 4 if MACH_MIOA701
+endif
+
endif
# ----------------------------------------------------------