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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * include/asm-ppc/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.  * This program is free software; you can redistribute it and/or
  13.  * modify it under the terms of the GNU General Public License
  14.  * as published by the Free Software Foundation; either version
  15.  * 2 of the License, or (at your option) any later version.
  16.  */
  17. #define BASE_BAUD ( 1843200 / 16 )
  18. #ifdef CONFIG_SERIAL_MANY_PORTS
  19. #define RS_TABLE_SIZE  64
  20. #else
  21. #define RS_TABLE_SIZE  4
  22. #endif
  23. /* Standard COM flags (except for COM4, because of the 8514 problem) */
  24. #ifdef CONFIG_SERIAL_DETECT_IRQ
  25. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ)
  26. #define STD_COM4_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_AUTO_IRQ)
  27. #else
  28. #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
  29. #define STD_COM4_FLAGS ASYNC_BOOT_AUTOCONF
  30. #endif
  31. #ifdef CONFIG_SERIAL_MANY_PORTS
  32. #define FOURPORT_FLAGS ASYNC_FOURPORT
  33. #define ACCENT_FLAGS 0
  34. #define BOCA_FLAGS 0
  35. #define HUB6_FLAGS 0
  36. #endif
  37. /*
  38.  * The following define the access methods for the HUB6 card. All
  39.  * access is through two ports for all 24 possible chips. The card is
  40.  * selected through the high 2 bits, the port on that card with the
  41.  * "middle" 3 bits, and the register on that port with the bottom
  42.  * 3 bits.
  43.  *
  44.  * While the access port and interrupt is configurable, the default
  45.  * port locations are 0x302 for the port control register, and 0x303
  46.  * for the data read/write register. Normally, the interrupt is at irq3
  47.  * but can be anything from 3 to 7 inclusive. Note that using 3 will
  48.  * require disabling com2.
  49.  */
  50. #define C_P(card,port) (((card)<<6|(port)<<3) + 1)
  51. #define STD_SERIAL_PORT_DEFNS
  52. /* UART CLK   PORT IRQ     FLAGS        */
  53. { 0, BASE_BAUD, 0x3F8, 4, STD_COM_FLAGS }, /* ttyS0 */
  54. { 0, BASE_BAUD, 0x2F8, 3, STD_COM_FLAGS }, /* ttyS1 */
  55. { 0, BASE_BAUD, 0x3E8, 4, STD_COM_FLAGS }, /* ttyS2 */
  56. { 0, BASE_BAUD, 0x2E8, 3, STD_COM4_FLAGS }, /* ttyS3 */
  57. #ifdef CONFIG_SERIAL_MANY_PORTS
  58. #define EXTRA_SERIAL_PORT_DEFNS
  59. { 0, BASE_BAUD, 0x1A0, 9, FOURPORT_FLAGS },  /* ttyS4 */
  60. { 0, BASE_BAUD, 0x1A8, 9, FOURPORT_FLAGS }, /* ttyS5 */
  61. { 0, BASE_BAUD, 0x1B0, 9, FOURPORT_FLAGS }, /* ttyS6 */
  62. { 0, BASE_BAUD, 0x1B8, 9, FOURPORT_FLAGS }, /* ttyS7 */
  63. { 0, BASE_BAUD, 0x2A0, 5, FOURPORT_FLAGS }, /* ttyS8 */
  64. { 0, BASE_BAUD, 0x2A8, 5, FOURPORT_FLAGS }, /* ttyS9 */
  65. { 0, BASE_BAUD, 0x2B0, 5, FOURPORT_FLAGS }, /* ttyS10 */
  66. { 0, BASE_BAUD, 0x2B8, 5, FOURPORT_FLAGS }, /* ttyS11 */
  67. { 0, BASE_BAUD, 0x330, 4, ACCENT_FLAGS }, /* ttyS12 */
  68. { 0, BASE_BAUD, 0x338, 4, ACCENT_FLAGS }, /* ttyS13 */
  69. { 0, BASE_BAUD, 0x000, 0, 0 }, /* ttyS14 (spare) */
  70. { 0, BASE_BAUD, 0x000, 0, 0 }, /* ttyS15 (spare) */
  71. { 0, BASE_BAUD, 0x100, 12, BOCA_FLAGS }, /* ttyS16 */
  72. { 0, BASE_BAUD, 0x108, 12, BOCA_FLAGS }, /* ttyS17 */
  73. { 0, BASE_BAUD, 0x110, 12, BOCA_FLAGS }, /* ttyS18 */
  74. { 0, BASE_BAUD, 0x118, 12, BOCA_FLAGS }, /* ttyS19 */
  75. { 0, BASE_BAUD, 0x120, 12, BOCA_FLAGS }, /* ttyS20 */
  76. { 0, BASE_BAUD, 0x128, 12, BOCA_FLAGS }, /* ttyS21 */
  77. { 0, BASE_BAUD, 0x130, 12, BOCA_FLAGS }, /* ttyS22 */
  78. { 0, BASE_BAUD, 0x138, 12, BOCA_FLAGS }, /* ttyS23 */
  79. { 0, BASE_BAUD, 0x140, 12, BOCA_FLAGS }, /* ttyS24 */
  80. { 0, BASE_BAUD, 0x148, 12, BOCA_FLAGS }, /* ttyS25 */
  81. { 0, BASE_BAUD, 0x150, 12, BOCA_FLAGS }, /* ttyS26 */
  82. { 0, BASE_BAUD, 0x158, 12, BOCA_FLAGS }, /* ttyS27 */
  83. { 0, BASE_BAUD, 0x160, 12, BOCA_FLAGS }, /* ttyS28 */
  84. { 0, BASE_BAUD, 0x168, 12, BOCA_FLAGS }, /* ttyS29 */
  85. { 0, BASE_BAUD, 0x170, 12, BOCA_FLAGS }, /* ttyS30 */
  86. { 0, BASE_BAUD, 0x178, 12, BOCA_FLAGS }, /* ttyS31 */
  87. #else
  88. #define EXTRA_SERIAL_PORT_DEFNS
  89. #endif
  90. /* You can have up to four HUB6's in the system, but I've only
  91.  * included two cards here for a total of twelve ports.
  92.  */
  93. #if (defined(CONFIG_HUB6) && defined(CONFIG_SERIAL_MANY_PORTS))
  94. #define HUB6_SERIAL_PORT_DFNS
  95. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,0) },  /* ttyS32 */
  96. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,1) },  /* ttyS33 */
  97. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,2) },  /* ttyS34 */
  98. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,3) },  /* ttyS35 */
  99. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,4) },  /* ttyS36 */
  100. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(0,5) },  /* ttyS37 */
  101. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,0) },  /* ttyS38 */
  102. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,1) },  /* ttyS39 */
  103. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,2) },  /* ttyS40 */
  104. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,3) },  /* ttyS41 */
  105. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,4) },  /* ttyS42 */
  106. { 0, BASE_BAUD, 0x302, 3, HUB6_FLAGS, C_P(1,5) },  /* ttyS43 */
  107. #else
  108. #define HUB6_SERIAL_PORT_DFNS
  109. #endif
  110. #define MCA_SERIAL_PORT_DFNS
  111. #define SERIAL_PORT_DFNS
  112. STD_SERIAL_PORT_DEFNS
  113. EXTRA_SERIAL_PORT_DEFNS
  114. HUB6_SERIAL_PORT_DFNS
  115. MCA_SERIAL_PORT_DFNS