From: James S. <jsi...@us...> - 2001-11-10 03:52:53
|
Update of /cvsroot/linux-mips/linux/include/asm-mips In directory usw-pr-cvs1:/tmp/cvs-serv20843/include/asm-mips Modified Files: bootinfo.h serial.h Log Message: Imported support for JMR-TX3927 by Alice Hennessy. Thank you. Index: bootinfo.h =================================================================== RCS file: /cvsroot/linux-mips/linux/include/asm-mips/bootinfo.h,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- bootinfo.h 2001/10/31 17:28:54 1.11 +++ bootinfo.h 2001/11/10 03:52:49 1.12 @@ -187,8 +187,9 @@ #define MACH_PALLAS 0 #define MACH_TOPAS 1 #define MACH_JMR 2 +#define MACH_TOSHIBA_JMR3927 3 /* JMR-TX3927 CPU/IO board */ -#define GROUP_TOSHIBA_NAMES { "Pallas", "TopasCE", "JMR" } +#define GROUP_TOSHIBA_NAMES { "Pallas", "TopasCE", "JMR", "JMR TX3927" } /* * Valid machtype for group Alchemy Index: serial.h =================================================================== RCS file: /cvsroot/linux-mips/linux/include/asm-mips/serial.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- serial.h 2001/10/26 22:36:04 1.3 +++ serial.h 2001/11/10 03:52:49 1.4 @@ -160,6 +160,17 @@ #define AU1000_SERIAL_PORT_DEFNS #endif +#ifdef CONFIG_TOSHIBA_JMR3927 +#include <asm/jmr3927/jmr3927.h> +#define TXX927_SERIAL_PORT_DEFNS \ + { baud_base: JMR3927_BASE_BAUD, port: UART0_ADDR, irq: UART0_INT, \ + flags: UART0_FLAGS, type: 1 }, \ + { baud_base: JMR3927_BASE_BAUD, port: UART1_ADDR, irq: UART1_INT, \ + flags: UART1_FLAGS, type: 1 }, +#else +#define TXX927_SERIAL_PORT_DEFNS +#endif + #ifdef CONFIG_HAVE_STD_PC_SERIAL_PORT #define STD_SERIAL_PORT_DEFNS \ /* UART CLK PORT IRQ FLAGS */ \ @@ -281,4 +292,5 @@ HUB6_SERIAL_PORT_DFNS \ MOMENCO_OCELOT_SERIAL_PORT_DEFNS\ AU1000_SERIAL_PORT_DEFNS \ + TXX927_SERIAL_PORT_DEFNS \ DDB5477_SERIAL_PORT_DEFNS |