sh: Renesas Solutions SH7763RDP board support

Previous thread: maple: tidy maple_driver code by removing redundant connect/disconnect by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:06 am. (1 message)

Next thread: sh/boards/dreamcast/rtc.c: make 2 functions static by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:06 am. (1 message)
From: Linux Kernel Mailing List
Date: Monday, July 28, 2008 - 10:06 am

Gitweb:     http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4cec1a...
Commit:     4cec1a37ba7d9dce6ed5d8259b95272100a98b1f
Parent:     c63847a3621d2bac054f5709783860ecabd0ee7e
Author:     Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
AuthorDate: Fri Jun 6 17:04:56 2008 +0900
Committer:  Paul Mundt <lethal@linux-sh.org>
CommitDate: Mon Jul 28 18:10:30 2008 +0900

    sh: Renesas Solutions SH7763RDP board support
    
    This patch adds basic support for the SH7763RDP board.
    This supports a basic stuff provided in SH7763, like SCIF,
    NOR Flash and USB host.
    
    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
    Signed-off-by: Paul Mundt <lethal@linux-sh.org>
---
 arch/sh/Kconfig                           |    7 +
 arch/sh/Makefile                          |    1 +
 arch/sh/boards/renesas/sh7763rdp/Makefile |    1 +
 arch/sh/boards/renesas/sh7763rdp/irq.c    |   45 ++
 arch/sh/boards/renesas/sh7763rdp/setup.c  |  128 ++++
 arch/sh/configs/sh7763rdp_defconfig       | 1052 +++++++++++++++++++++++++++++
 arch/sh/tools/mach-types                  |    1 +
 include/asm-sh/sh7763rdp.h                |   54 ++
 8 files changed, 1289 insertions(+), 0 deletions(-)

diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig
index ca5efe6..9bbb705 100644
--- a/arch/sh/Kconfig
+++ b/arch/sh/Kconfig
@@ -509,6 +509,13 @@ config SH_AP325RXA
 	  Renesas "AP-325RXA" support.
 	  Compatible with ALGO SYSTEM CO.,LTD. "AP-320A"
 
+config SH_SH7763RDP
+	bool "SH7763RDP"
+	depends on CPU_SUBTYPE_SH7763
+	help
+	  Select SH7763RDP if configuring for a Renesas SH7763
+	  evaluation board.
+
 config SH_EDOSK7705
 	bool "EDOSK7705"
 	depends on CPU_SUBTYPE_SH7705
diff --git a/arch/sh/Makefile b/arch/sh/Makefile
index 73182d5..1452c4d 100644
--- a/arch/sh/Makefile
+++ b/arch/sh/Makefile
@@ -123,6 +123,7 @@ machdir-$(CONFIG_SH_SDK7780)			+= renesas/sdk7780
 machdir-$(CONFIG_SH_X3PROTO)			+= ...
Previous thread: maple: tidy maple_driver code by removing redundant connect/disconnect by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:06 am. (1 message)

Next thread: sh/boards/dreamcast/rtc.c: make 2 functions static by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:06 am. (1 message)