serial.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

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