serial.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1999 by Ralf Baechle
  7.  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
  8.  */
  9. #include <linux/config.h>
  10. #include <asm/bootinfo.h>
  11. #include <asm/jazz.h>
  12. /*
  13.  * This assumes you have a 1.8432 MHz clock for your UART.
  14.  *
  15.  * It'd be nice if someone built a serial card with a 24.576 MHz
  16.  * clock, since the 16550A is capable of handling a top speed of 1.5
  17.  * megabits/second; but this requires the faster clock.
  18.  */
  19. #define BASE_BAUD ( 1843200 / 16 )
  20. #ifndef CONFIG_OLIVETTI_M700
  21.    /* Some Jazz machines seem to have an 8MHz crystal clock but I don't know
  22.       exactly which ones ... XXX */
  23. #define JAZZ_BASE_BAUD ( 8000000 / 16 ) /* ( 3072000 / 16) */
  24. #else
  25. /* but the M700 isn't such a strange beast */
  26. #define JAZZ_BASE_BAUD BASE_BAUD
  27. #endif
  28. /* Standard COM flags (except for COM4, because of the 8514 problem) */
  29. #ifdef CONFIG_SERIAL_DETECT_IRQ
  30. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ)
  31. #define STD_COM4_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_AUTO_IRQ)
  32. #else
  33. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
  34. #define STD_COM4_FLAGS ASYNC_BOOT_AUTOCONF
  35. #endif
  36. #ifdef CONFIG_SERIAL_MANY_PORTS
  37. #define FOURPORT_FLAGS ASYNC_FOURPORT
  38. #define ACCENT_FLAGS 0
  39. #define BOCA_FLAGS 0
  40. #define HUB6_FLAGS 0
  41. #define RS_TABLE_SIZE 64
  42. #else
  43. #define RS_TABLE_SIZE
  44. #endif
  45. /*
  46.  * The following define the access methods for the HUB6 card. All
  47.  * access is through two ports for all 24 possible chips. The card is
  48.  * selected through the high 2 bits, the port on that card with the
  49.  * "middle" 3 bits, and the register on that port with the bottom
  50.  * 3 bits.
  51.  *
  52.  * While the access port and interrupt is configurable, the default
  53.  * port locations are 0x302 for the port control register, and 0x303
  54.  * for the data read/write register. Normally, the interrupt is at irq3
  55.  * but can be anything from 3 to 7 inclusive. Note that using 3 will
  56.  * require disabling com2.
  57.  */
  58. #define C_P(card,port) (((card)<<6|(port)<<3) + 1)
  59. #ifdef CONFIG_MIPS_JAZZ
  60. #define _JAZZ_SERIAL_INIT(int, base)
  61. { baud_base: JAZZ_BASE_BAUD, irq: int, flags: STD_COM_FLAGS,
  62.   iomem_base: (u8 *) base, iomem_reg_shift: 0,
  63.   io_type: SERIAL_IO_MEM }
  64. #define JAZZ_SERIAL_PORT_DEFNS
  65. _JAZZ_SERIAL_INIT(JAZZ_SERIAL1_IRQ, JAZZ_SERIAL1_BASE),
  66. _JAZZ_SERIAL_INIT(JAZZ_SERIAL2_IRQ, JAZZ_SERIAL2_BASE),
  67. #else
  68. #define JAZZ_SERIAL_PORT_DEFNS
  69. #endif
  70. #ifdef CONFIG_MIPS_ATLAS
  71. #include <asm/mips-boards/atlas.h>
  72. #include <asm/mips-boards/atlasint.h>
  73. #define ATLAS_SERIAL_PORT_DEFNS
  74. /* UART CLK   PORT IRQ     FLAGS        */
  75. { 0, ATLAS_BASE_BAUD, ATLAS_UART_REGS_BASE, ATLASINT_UART, STD_COM_FLAGS },     /* ttyS0 */
  76. #else
  77. #define ATLAS_SERIAL_PORT_DEFNS
  78. #endif
  79. /*
  80.  * Both Galileo boards have the same UART mappings.
  81.  */
  82. #if defined (CONFIG_MIPS_EV96100) || defined (CONFIG_MIPS_EV64120)
  83. #include <asm/galileo-boards/ev96100.h>
  84. #include <asm/galileo-boards/ev96100int.h>
  85. #define EV96100_SERIAL_PORT_DEFNS                                  
  86.     { baud_base: EV96100_BASE_BAUD, port: EV96100_UART0_REGS_BASE, 
  87.       irq: EV96100INT_UART_0, flags: STD_COM_FLAGS, type: 0x3,   
  88.       iomem_base: EV96100_UART0_REGS_BASE },                       
  89.     { baud_base: EV96100_BASE_BAUD, port: EV96100_UART1_REGS_BASE, 
  90.       irq: EV96100INT_UART_0, flags: STD_COM_FLAGS, type: 0x3,   
  91.       iomem_base: EV96100_UART1_REGS_BASE },
  92. #else
  93. #define EV96100_SERIAL_PORT_DEFNS
  94. #endif
  95. #ifdef CONFIG_MIPS_ITE8172
  96. #include <asm/it8172/it8172.h>
  97. #include <asm/it8172/it8172_int.h>
  98. #include <asm/it8712.h>
  99. #define ITE_SERIAL_PORT_DEFNS                                  
  100.     { baud_base: BASE_BAUD, port: (IT8172_PCI_IO_BASE + IT_UART_BASE), 
  101.       irq: IT8172_UART_IRQ, flags: STD_COM_FLAGS, type: 0x3 }, 
  102.     { baud_base: (24000000/(16*13)), port: (IT8172_PCI_IO_BASE + IT8712_UART1_PORT), 
  103.       irq: IT8172_SERIRQ_4, flags: STD_COM_FLAGS, type: 0x3 }, 
  104.     /* Smart Card Reader 0 */ 
  105.     { baud_base: BASE_BAUD, port: (IT8172_PCI_IO_BASE + IT_SCR0_BASE), 
  106.       irq: IT8172_SCR0_IRQ, flags: STD_COM_FLAGS, type: 0x3 }, 
  107.     /* Smart Card Reader 1 */ 
  108.     { baud_base: BASE_BAUD, port: (IT8172_PCI_IO_BASE + IT_SCR1_BASE), 
  109.       irq: IT8172_SCR1_IRQ, flags: STD_COM_FLAGS, type: 0x3 },
  110. #else
  111. #define ITE_SERIAL_PORT_DEFNS
  112. #endif
  113. #ifdef CONFIG_MIPS_IVR
  114. #include <asm/it8172/it8172.h>
  115. #include <asm/it8172/it8172_int.h>
  116. #define IVR_SERIAL_PORT_DEFNS                                  
  117.     { baud_base: BASE_BAUD, port: (IT8172_PCI_IO_BASE + IT_UART_BASE), 
  118.       irq: IT8172_UART_IRQ, flags: STD_COM_FLAGS, type: 0x3 },         
  119.     /* Smart Card Reader 1 */ 
  120.     { baud_base: BASE_BAUD, port: (IT8172_PCI_IO_BASE + IT_SCR1_BASE), 
  121.       irq: IT8172_SCR1_IRQ, flags: STD_COM_FLAGS, type: 0x3 },
  122. #else
  123. #define IVR_SERIAL_PORT_DEFNS
  124. #endif
  125. #ifdef CONFIG_AU1000_UART
  126. #include <asm/au1000.h>
  127. #define AU1000_SERIAL_PORT_DEFNS                              
  128.     { baud_base: 0, port: UART0_ADDR, irq: AU1000_UART0_INT,  
  129.       flags: STD_COM_FLAGS, type: 1 },                        
  130.     { baud_base: 0, port: UART1_ADDR, irq: AU1000_UART1_INT,  
  131.       flags: STD_COM_FLAGS, type: 1 },     
  132.     { baud_base: 0, port: UART2_ADDR, irq: AU1000_UART2_INT,  
  133.       flags: STD_COM_FLAGS, type: 1 },    
  134.     { baud_base: 0, port: UART3_ADDR, irq: AU1000_UART3_INT,  
  135.       flags: STD_COM_FLAGS, type: 1 },
  136. #else
  137. #define AU1000_SERIAL_PORT_DEFNS
  138. #endif
  139. #ifdef CONFIG_HAVE_STD_PC_SERIAL_PORT
  140. #define STD_SERIAL_PORT_DEFNS
  141. /* UART CLK   PORT IRQ     FLAGS        */
  142. { 0, BASE_BAUD, 0x3F8, 4, STD_COM_FLAGS }, /* ttyS0 */
  143. { 0, BASE_BAUD, 0x2F8, 3, STD_COM_FLAGS }, /* ttyS1 */
  144. { 0, BASE_BAUD, 0x3E8, 4, STD_COM_FLAGS }, /* ttyS2 */
  145. { 0, BASE_BAUD, 0x2E8, 3, STD_COM4_FLAGS }, /* ttyS3 */
  146. #ifdef CONFIG_SERIAL_MANY_PORTS
  147. #define EXTRA_SERIAL_PORT_DEFNS
  148. { 0, BASE_BAUD, 0x1A0, 9, FOURPORT_FLAGS },  /* ttyS4 */
  149. { 0, BASE_BAUD, 0x1A8, 9, FOURPORT_FLAGS }, /* ttyS5 */
  150. { 0, BASE_BAUD, 0x1B0, 9, FOURPORT_FLAGS }, /* ttyS6 */
  151. { 0, BASE_BAUD, 0x1B8, 9, FOURPORT_FLAGS }, /* ttyS7 */
  152. { 0, BASE_BAUD, 0x2A0, 5, FOURPORT_FLAGS }, /* ttyS8 */
  153. { 0, BASE_BAUD, 0x2A8, 5, FOURPORT_FLAGS }, /* ttyS9 */
  154. { 0, BASE_BAUD, 0x2B0, 5, FOURPORT_FLAGS }, /* ttyS10 */
  155. { 0, BASE_BAUD, 0x2B8, 5, FOURPORT_FLAGS }, /* ttyS11 */
  156. { 0, BASE_BAUD, 0x330, 4, ACCENT_FLAGS }, /* ttyS12 */
  157. { 0, BASE_BAUD, 0x338, 4, ACCENT_FLAGS }, /* ttyS13 */
  158. { 0, BASE_BAUD, 0x000, 0, 0 }, /* ttyS14 (spare) */ 
  159. { 0, BASE_BAUD, 0x000, 0, 0 }, /* ttyS15 (spare) */ 
  160. { 0, BASE_BAUD, 0x100, 12, BOCA_FLAGS }, /* ttyS16 */
  161. { 0, BASE_BAUD, 0x108, 12, BOCA_FLAGS }, /* ttyS17 */
  162. { 0, BASE_BAUD, 0x110, 12, BOCA_FLAGS }, /* ttyS18 */
  163. { 0, BASE_BAUD, 0x118, 12, BOCA_FLAGS }, /* ttyS19 */
  164. { 0, BASE_BAUD, 0x120, 12, BOCA_FLAGS }, /* ttyS20 */
  165. { 0, BASE_BAUD, 0x128, 12, BOCA_FLAGS }, /* ttyS21 */
  166. { 0, BASE_BAUD, 0x130, 12, BOCA_FLAGS }, /* ttyS22 */
  167. { 0, BASE_BAUD, 0x138, 12, BOCA_FLAGS }, /* ttyS23 */
  168. { 0, BASE_BAUD, 0x140, 12, BOCA_FLAGS }, /* ttyS24 */
  169. { 0, BASE_BAUD, 0x148, 12, BOCA_FLAGS }, /* ttyS25 */
  170. { 0, BASE_BAUD, 0x150, 12, BOCA_FLAGS }, /* ttyS26 */
  171. { 0, BASE_BAUD, 0x158, 12, BOCA_FLAGS }, /* ttyS27 */
  172. { 0, BASE_BAUD, 0x160, 12, BOCA_FLAGS }, /* ttyS28 */
  173. { 0, BASE_BAUD, 0x168, 12, BOCA_FLAGS }, /* ttyS29 */
  174. { 0, BASE_BAUD, 0x170, 12, BOCA_FLAGS }, /* ttyS30 */
  175. { 0, BASE_BAUD, 0x178, 12, BOCA_FLAGS }, /* ttyS31 */
  176. #else /* CONFIG_SERIAL_MANY_PORTS */
  177. #define EXTRA_SERIAL_PORT_DEFNS
  178. #endif /* CONFIG_SERIAL_MANY_PORTS */
  179. #else /* CONFIG_HAVE_STD_PC_SERIAL_PORTS */
  180. #define STD_SERIAL_PORT_DEFNS
  181. #define EXTRA_SERIAL_PORT_DEFNS
  182. #endif /* CONFIG_HAVE_STD_PC_SERIAL_PORTS */
  183. /* You can have up to four HUB6's in the system, but I've only
  184.  * included two cards here for a total of twelve ports.
  185.  */
  186. #if (defined(CONFIG_HUB6) && defined(CONFIG_SERIAL_MANY_PORTS))
  187. #define HUB6_SERIAL_PORT_DFNS
  188. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,0) },  /* ttyS32 */
  189. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,1) },  /* ttyS33 */
  190. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,2) },  /* ttyS34 */
  191. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,3) },  /* ttyS35 */
  192. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,4) },  /* ttyS36 */
  193. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,5) },  /* ttyS37 */
  194. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,0) },  /* ttyS38 */
  195. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,1) },  /* ttyS39 */
  196. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,2) },  /* ttyS40 */
  197. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,3) },  /* ttyS41 */
  198. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,4) },  /* ttyS42 */
  199. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,5) },  /* ttyS43 */
  200. #else
  201. #define HUB6_SERIAL_PORT_DFNS
  202. #endif
  203. #ifdef CONFIG_MCA
  204. #define MCA_SERIAL_PORT_DFNS
  205. { 0, BASE_BAUD, 0x3220, 3, STD_COM_FLAGS },
  206. { 0, BASE_BAUD, 0x3228, 3, STD_COM_FLAGS },
  207. { 0, BASE_BAUD, 0x4220, 3, STD_COM_FLAGS },
  208. { 0, BASE_BAUD, 0x4228, 3, STD_COM_FLAGS },
  209. { 0, BASE_BAUD, 0x5220, 3, STD_COM_FLAGS },
  210. { 0, BASE_BAUD, 0x5228, 3, STD_COM_FLAGS },
  211. #else
  212. #define MCA_SERIAL_PORT_DFNS
  213. #endif
  214. #ifdef CONFIG_MOMENCO_OCELOT
  215. /* Ordinary NS16552 duart with a 20MHz crystal.  */
  216. #define OCELOT_BASE_BAUD ( 20000000 / 16 )
  217. #define OCELOT_SERIAL1_IRQ 4
  218. #define OCELOT_SERIAL1_BASE 0xe0001020
  219. #define _OCELOT_SERIAL_INIT(int, base)
  220. { baud_base: OCELOT_BASE_BAUD, irq: int, flags: STD_COM_FLAGS,
  221.   iomem_base: (u8 *) base, iomem_reg_shift: 2,
  222.   io_type: SERIAL_IO_MEM }
  223. #define MOMENCO_OCELOT_SERIAL_PORT_DEFNS
  224. _OCELOT_SERIAL_INIT(OCELOT_SERIAL1_IRQ, OCELOT_SERIAL1_BASE)
  225. #else
  226. #define MOMENCO_OCELOT_SERIAL_PORT_DEFNS
  227. #endif
  228. #ifdef CONFIG_DDB5477
  229. #define DDB5477_SERIAL_PORT_DEFNS                                       
  230.         { baud_base: BASE_BAUD, irq: 12, flags: STD_COM_FLAGS,          
  231.           iomem_base: (u8*)0xbfa04200, iomem_reg_shift: 3,              
  232.           io_type: SERIAL_IO_MEM},
  233.         { baud_base: BASE_BAUD, irq: 28, flags: STD_COM_FLAGS,          
  234.           iomem_base: (u8*)0xbfa04240, iomem_reg_shift: 3,              
  235.           io_type: SERIAL_IO_MEM},
  236. #else
  237. #define DDB5477_SERIAL_PORT_DEFNS
  238. #endif
  239. #define SERIAL_PORT_DFNS
  240. IVR_SERIAL_PORT_DEFNS           
  241. ITE_SERIAL_PORT_DEFNS           
  242. ATLAS_SERIAL_PORT_DEFNS
  243. EV96100_SERIAL_PORT_DEFNS
  244. JAZZ_SERIAL_PORT_DEFNS
  245. STD_SERIAL_PORT_DEFNS
  246. EXTRA_SERIAL_PORT_DEFNS
  247. HUB6_SERIAL_PORT_DFNS
  248. MOMENCO_OCELOT_SERIAL_PORT_DEFNS
  249. AU1000_SERIAL_PORT_DEFNS
  250. DDB5477_SERIAL_PORT_DEFNS