sh: update Solution Engine 7343

Previous thread: sh: update sh7343 code by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:07 am. (1 message)

Next thread: sh2(A) exception handler update by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:07 am. (1 message)
From: Linux Kernel Mailing List
Date: Monday, July 28, 2008 - 10:07 am

Gitweb:     http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cafd63...
Commit:     cafd63b0076b78bc8f114abbeb724c7e5f5bfe5d
Parent:     a4e1d08491b06b17eb77c92caacd40b330ca8146
Author:     Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
AuthorDate: Mon Jul 7 21:11:54 2008 +0900
Committer:  Paul Mundt <lethal@linux-sh.org>
CommitDate: Mon Jul 28 18:10:34 2008 +0900

    sh: update Solution Engine 7343
    
    updated the following codes for Solution Endine 7343:
     - fix compile error in arch/sh/boards/se/7343/irq.c
     - add nor flash physmaps
     - update defconfig
    
    Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
    Signed-off-by: Paul Mundt <lethal@linux-sh.org>
---
 arch/sh/boards/se/7343/irq.c     |  282 ++++-----------
 arch/sh/boards/se/7343/setup.c   |   74 ++++-
 arch/sh/configs/se7343_defconfig |  735 ++++++++++++++++++--------------------
 include/asm-sh/se7343.h          |   97 +++++-
 4 files changed, 586 insertions(+), 602 deletions(-)

diff --git a/arch/sh/boards/se/7343/irq.c b/arch/sh/boards/se/7343/irq.c
dissimilarity index 95%
index 763f6de..1112e86 100644
--- a/arch/sh/boards/se/7343/irq.c
+++ b/arch/sh/boards/se/7343/irq.c
@@ -1,202 +1,80 @@
-/*
- * arch/sh/boards/se/7343/irq.c
- *
- */
-#include <linux/init.h>
-#include <linux/interrupt.h>
-#include <linux/irq.h>
-#include <asm/irq.h>
-#include <asm/io.h>
-#include <asm/mach/se7343.h>
-
-static void
-disable_intreq_irq(unsigned int irq)
-{
-	int bit = irq - OFFCHIP_IRQ_BASE;
-	u16 val;
-
-	val = ctrl_inw(PA_CPLD_IMSK);
-	val |= 1 << bit;
-	ctrl_outw(val, PA_CPLD_IMSK);
-}
-
-static void
-enable_intreq_irq(unsigned int irq)
-{
-	int bit = irq - OFFCHIP_IRQ_BASE;
-	u16 val;
-
-	val = ctrl_inw(PA_CPLD_IMSK);
-	val &= ~(1 << bit);
-	ctrl_outw(val, PA_CPLD_IMSK);
-}
-
-static void
-mask_and_ack_intreq_irq(unsigned int irq)
-{
-	disable_intreq_irq(irq);
-}
-
-static unsigned ...
Previous thread: sh: update sh7343 code by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:07 am. (1 message)

Next thread: sh2(A) exception handler update by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:07 am. (1 message)