Gitweb: http://git.kernel.org/linus/5ac072e110ff358a9ebc318a1b54f0182b799f72
Commit: 5ac072e110ff358a9ebc318a1b54f0182b799f72
Parent: 37042fbd8b3256d2a44b17646fa9de8777d5a34a
Author: Kuninori Morimoto <morimoto.kuninori@renesas.com>
AuthorDate: Tue Mar 3 16:22:00 2009 +0900
Committer: Paul Mundt <lethal@linux-sh.org>
CommitDate: Tue Mar 3 16:22:00 2009 +0900
sh: Urquell board support.
This adds preliminary support for the SH7786-based Urquell board.
Signed-off-by: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
---
arch/sh/boards/Kconfig | 5 +
arch/sh/boards/Makefile | 1 +
arch/sh/boards/board-urquell.c | 128 +++++++
arch/sh/configs/urquell_defconfig | 534 ++++++++++++++++++++++++++++
arch/sh/include/mach-common/mach/urquell.h | 68 ++++
arch/sh/tools/mach-types | 1 +
6 files changed, 737 insertions(+), 0 deletions(-)
diff --git a/arch/sh/boards/Kconfig b/arch/sh/boards/Kconfig
index c9da370..694abec 100644
--- a/arch/sh/boards/Kconfig
+++ b/arch/sh/boards/Kconfig
@@ -162,6 +162,11 @@ config SH_SH7785LCR_29BIT_PHYSMAPS
DIP switch(S2-5). If you set the DIP switch for S2-5 = ON,
you can access all on-board device in 29bit address mode.
+config SH_URQUELL
+ bool "Urquell"
+ depends on CPU_SUBTYPE_SH7786
+ select ARCH_REQUIRE_GPIOLIB
+
config SH_MIGOR
bool "Migo-R"
depends on CPU_SUBTYPE_SH7722
diff --git a/arch/sh/boards/Makefile b/arch/sh/boards/Makefile
index 269ae2b..6f101a8 100644
--- a/arch/sh/boards/Makefile
+++ b/arch/sh/boards/Makefile
@@ -4,5 +4,6 @@
obj-$(CONFIG_SH_AP325RXA) += board-ap325rxa.o
obj-$(CONFIG_SH_MAGIC_PANEL_R2) += board-magicpanelr2.o
obj-$(CONFIG_SH_SH7785LCR) += board-sh7785lcr.o
+obj-$(CONFIG_SH_URQUELL) += board-urquell.o
obj-$(CONFIG_SH_SHMIN) += board-shmin.o
obj-$(CONFIG_SH_EDOSK7760) += board-edosk7760.o
diff --git ...