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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.serial.h 1.15 10/23/01 08:09:35 trini
  3.  */
  4. /*
  5.  * include/asm-ppc/serial.h
  6.  */
  7. #ifdef __KERNEL__
  8. #ifndef __ASM_SERIAL_H__
  9. #define __ASM_SERIAL_H__
  10. #include <linux/config.h>
  11. #ifdef CONFIG_GEMINI
  12. #include <asm/gemini_serial.h>
  13. #elif defined(CONFIG_4xx)
  14. #include <asm/ppc4xx_serial.h>
  15. #else
  16. /*
  17.  * This assumes you have a 1.8432 MHz clock for your UART.
  18.  *
  19.  * It'd be nice if someone built a serial card with a 24.576 MHz
  20.  * clock, since the 16550A is capable of handling a top speed of 1.5
  21.  * megabits/second; but this requires the faster clock.
  22.  */
  23. #define BASE_BAUD ( 1843200 / 16 )
  24. #ifdef CONFIG_SERIAL_MANY_PORTS
  25. #define RS_TABLE_SIZE  64
  26. #else
  27. #define RS_TABLE_SIZE  4
  28. #endif
  29. /* Standard COM flags (except for COM4, because of the 8514 problem) */
  30. #ifdef CONFIG_SERIAL_DETECT_IRQ
  31. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ)
  32. #define STD_COM4_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_AUTO_IRQ)
  33. #else
  34. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
  35. #define STD_COM4_FLAGS ASYNC_BOOT_AUTOCONF
  36. #endif
  37. #ifdef CONFIG_SERIAL_MANY_PORTS
  38. #define FOURPORT_FLAGS ASYNC_FOURPORT
  39. #define ACCENT_FLAGS 0
  40. #define BOCA_FLAGS 0
  41. #define HUB6_FLAGS 0
  42. #endif
  43. /*
  44.  * The following define the access methods for the HUB6 card. All
  45.  * access is through two ports for all 24 possible chips. The card is
  46.  * selected through the high 2 bits, the port on that card with the
  47.  * "middle" 3 bits, and the register on that port with the bottom
  48.  * 3 bits.
  49.  *
  50.  * While the access port and interrupt is configurable, the default
  51.  * port locations are 0x302 for the port control register, and 0x303
  52.  * for the data read/write register. Normally, the interrupt is at irq3
  53.  * but can be anything from 3 to 7 inclusive. Note that using 3 will
  54.  * require disabling com2.
  55.  */
  56. #define C_P(card,port) (((card)<<6|(port)<<3) + 1)
  57. #define STD_SERIAL_PORT_DEFNS
  58. /* UART CLK   PORT IRQ     FLAGS        */
  59. { 0, BASE_BAUD, 0x3F8, 4, STD_COM_FLAGS }, /* ttyS0 */
  60. { 0, BASE_BAUD, 0x2F8, 3, STD_COM_FLAGS }, /* ttyS1 */
  61. { 0, BASE_BAUD, 0x3E8, 4, STD_COM_FLAGS }, /* ttyS2 */
  62. { 0, BASE_BAUD, 0x2E8, 3, STD_COM4_FLAGS }, /* ttyS3 */
  63. #ifdef CONFIG_SERIAL_MANY_PORTS
  64. #define EXTRA_SERIAL_PORT_DEFNS
  65. { 0, BASE_BAUD, 0x1A0, 9, FOURPORT_FLAGS },  /* ttyS4 */
  66. { 0, BASE_BAUD, 0x1A8, 9, FOURPORT_FLAGS }, /* ttyS5 */
  67. { 0, BASE_BAUD, 0x1B0, 9, FOURPORT_FLAGS }, /* ttyS6 */
  68. { 0, BASE_BAUD, 0x1B8, 9, FOURPORT_FLAGS }, /* ttyS7 */
  69. { 0, BASE_BAUD, 0x2A0, 5, FOURPORT_FLAGS }, /* ttyS8 */
  70. { 0, BASE_BAUD, 0x2A8, 5, FOURPORT_FLAGS }, /* ttyS9 */
  71. { 0, BASE_BAUD, 0x2B0, 5, FOURPORT_FLAGS }, /* ttyS10 */
  72. { 0, BASE_BAUD, 0x2B8, 5, FOURPORT_FLAGS }, /* ttyS11 */
  73. { 0, BASE_BAUD, 0x330, 4, ACCENT_FLAGS }, /* ttyS12 */
  74. { 0, BASE_BAUD, 0x338, 4, ACCENT_FLAGS }, /* ttyS13 */
  75. { 0, BASE_BAUD, 0x000, 0, 0 }, /* ttyS14 (spare) */
  76. { 0, BASE_BAUD, 0x000, 0, 0 }, /* ttyS15 (spare) */
  77. { 0, BASE_BAUD, 0x100, 12, BOCA_FLAGS }, /* ttyS16 */
  78. { 0, BASE_BAUD, 0x108, 12, BOCA_FLAGS }, /* ttyS17 */
  79. { 0, BASE_BAUD, 0x110, 12, BOCA_FLAGS }, /* ttyS18 */
  80. { 0, BASE_BAUD, 0x118, 12, BOCA_FLAGS }, /* ttyS19 */
  81. { 0, BASE_BAUD, 0x120, 12, BOCA_FLAGS }, /* ttyS20 */
  82. { 0, BASE_BAUD, 0x128, 12, BOCA_FLAGS }, /* ttyS21 */
  83. { 0, BASE_BAUD, 0x130, 12, BOCA_FLAGS }, /* ttyS22 */
  84. { 0, BASE_BAUD, 0x138, 12, BOCA_FLAGS }, /* ttyS23 */
  85. { 0, BASE_BAUD, 0x140, 12, BOCA_FLAGS }, /* ttyS24 */
  86. { 0, BASE_BAUD, 0x148, 12, BOCA_FLAGS }, /* ttyS25 */
  87. { 0, BASE_BAUD, 0x150, 12, BOCA_FLAGS }, /* ttyS26 */
  88. { 0, BASE_BAUD, 0x158, 12, BOCA_FLAGS }, /* ttyS27 */
  89. { 0, BASE_BAUD, 0x160, 12, BOCA_FLAGS }, /* ttyS28 */
  90. { 0, BASE_BAUD, 0x168, 12, BOCA_FLAGS }, /* ttyS29 */
  91. { 0, BASE_BAUD, 0x170, 12, BOCA_FLAGS }, /* ttyS30 */
  92. { 0, BASE_BAUD, 0x178, 12, BOCA_FLAGS }, /* ttyS31 */
  93. #else
  94. #define EXTRA_SERIAL_PORT_DEFNS
  95. #endif
  96. /* You can have up to four HUB6's in the system, but I've only
  97.  * included two cards here for a total of twelve ports.
  98.  */
  99. #if (defined(CONFIG_HUB6) && defined(CONFIG_SERIAL_MANY_PORTS))
  100. #define HUB6_SERIAL_PORT_DFNS
  101. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,0) },  /* ttyS32 */
  102. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,1) },  /* ttyS33 */
  103. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,2) },  /* ttyS34 */
  104. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,3) },  /* ttyS35 */
  105. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,4) },  /* ttyS36 */
  106. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,5) },  /* ttyS37 */
  107. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,0) },  /* ttyS38 */
  108. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,1) },  /* ttyS39 */
  109. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,2) },  /* ttyS40 */
  110. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,3) },  /* ttyS41 */
  111. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,4) },  /* ttyS42 */
  112. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,5) },  /* ttyS43 */
  113. #else
  114. #define HUB6_SERIAL_PORT_DFNS
  115. #endif
  116. #define MCA_SERIAL_PORT_DFNS
  117. #define SERIAL_PORT_DFNS
  118. STD_SERIAL_PORT_DEFNS
  119. EXTRA_SERIAL_PORT_DEFNS
  120. HUB6_SERIAL_PORT_DFNS
  121. MCA_SERIAL_PORT_DFNS
  122. #endif /* !CONFIG_GEMINI and others */
  123. #endif /* __ASM_SERIAL_H__ */
  124. #endif /* __KERNEL__ */