pc_serial.h 5.1 KB

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