From: Paul M. <le...@us...> - 2002-06-14 14:09:28
|
Update of /cvsroot/linux-mips/linux/arch/mips/vr41xx/vr4181/common In directory usw-pr-cvs1:/tmp/cvs-serv1408 Modified Files: icu.c icu.h Log Message: Vr4111 -> Vr4181 ICU changes. Index: icu.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/vr41xx/vr4181/common/icu.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- icu.c 14 Jun 2002 14:06:46 -0000 1.1 +++ icu.c 14 Jun 2002 14:09:25 -0000 1.2 @@ -1,9 +1,9 @@ /* * FILE NAME - * arch/mips/vr41xx/vr4111/common/icu.c + * arch/mips/vr41xx/vr4181/common/icu.c * * BRIEF MODULE DESCRIPTION - * Interrupt Control Unit routines for the NEC VR4111. + * Interrupt Control Unit routines for the NEC VR4181. * * Author: Yoichi Yuasa * yy...@mv... or so...@mv... @@ -33,6 +33,7 @@ /* * Changes: * Paul Mundt <le...@ch...> + * - Modified this code for VR4181 support. * - kgdb support. * * MontaVista Software Inc. <yy...@mv...> or <so...@mv...> Index: icu.h =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/vr41xx/vr4181/common/icu.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- icu.h 14 Jun 2002 14:06:46 -0000 1.1 +++ icu.h 14 Jun 2002 14:09:25 -0000 1.2 @@ -1,9 +1,9 @@ /* * FILE NAME - * arch/mips/vr41xx/vr4111/common/icu.h + * arch/mips/vr41xx/vr4181/common/icu.h * * BRIEF MODULE DESCRIPTION - * Include file for Interrupt Control Unit of the NEC VR4111. + * Include file for Interrupt Control Unit of the NEC VR4181. * * Author: Yoichi Yuasa * yy...@mv... or so...@mv... @@ -32,6 +32,9 @@ */ /* * Changes: + * Paul Mundt <le...@ch...> + * - Modified this code for VR4181 support. + * * MontaVista Software Inc. <yy...@mv...> or <so...@mv...> * - New creation, NEC VR4122 and VR4131 are supported. * @@ -48,18 +51,18 @@ #include <linux/config.h> #include <asm/addrspace.h> -#define SYSINT1REG KSEG1ADDR(0x0b000080) -#define GIUINTLREG KSEG1ADDR(0x0b000088) -#define MSYSINT1REG KSEG1ADDR(0x0b00008c) -#define MGIUINTLREG KSEG1ADDR(0x0b000094) +#define SYSINT1REG KSEG1ADDR(0x0a000080) +#define GIUINTLREG KSEG1ADDR(0x0a000088) +#define MSYSINT1REG KSEG1ADDR(0x0a00008c) +#define MGIUINTLREG KSEG1ADDR(0x0a000094) -#define NMIREG KSEG1ADDR(0x0b000098) -#define SOFTINTREG KSEG1ADDR(0x0b00009a) +#define NMIREG KSEG1ADDR(0x0a000098) +#define SOFTINTREG KSEG1ADDR(0x0a00009a) -#define SYSINT2REG KSEG1ADDR(0x0b000200) -#define GIUINTHREG KSEG1ADDR(0x0b000202) -#define MSYSINT2REG KSEG1ADDR(0x0b000206) -#define MGIUINTHREG KSEG1ADDR(0x0b000208) +#define SYSINT2REG KSEG1ADDR(0x0a000200) +#define GIUINTHREG KSEG1ADDR(0x0a000202) +#define MSYSINT2REG KSEG1ADDR(0x0a000206) +#define MGIUINTHREG KSEG1ADDR(0x0a000208) #define GIUINTSTATL KSEG1ADDR(0x0b000108) #define GIUINTSTATH KSEG1ADDR(0x0b00010a) |