serial.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /*
  2. * linux/include/asm-arm/hardware/serial_amba.h
  3. *
  4. * Internal header file for AMBA serial ports
  5. *
  6. * Copyright (C) ARM Limited
  7. * Copyright (C) 2000 Deep Blue Solutions Ltd.
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. */
  23. #ifndef ASM_ARM_HARDWARE_SERIAL_AMBA_H
  24. #define ASM_ARM_HARDWARE_SERIAL_AMBA_H
  25. /* -------------------------------------------------------------------------------
  26. * From AMBA UART (PL010) Block Specification
  27. * -------------------------------------------------------------------------------
  28. * UART Register Offsets.
  29. */
  30. #define UART01x_DR 0x00 /* Data read or written from the interface. */
  31. #define UART01x_RSR 0x04 /* Receive status register (Read). */
  32. #define UART01x_ECR 0x04 /* Error clear register (Write). */
  33. #define UART010_LCRH 0x08 /* Line control register, high byte. */
  34. #define ST_UART011_DMAWM 0x08 /* DMA watermark configure register. */
  35. #define UART010_LCRM 0x0C /* Line control register, middle byte. */
  36. #define ST_UART011_TIMEOUT 0x0C /* Timeout period register. */
  37. #define UART010_LCRL 0x10 /* Line control register, low byte. */
  38. #define UART010_CR 0x14 /* Control register. */
  39. #define UART01x_FR 0x18 /* Flag register (Read only). */
  40. #define UART010_IIR 0x1C /* Interrupt indentification register (Read). */
  41. #define UART010_ICR 0x1C /* Interrupt clear register (Write). */
  42. #define ST_UART011_LCRH_RX 0x1C /* Rx line control register. */
  43. #define UART01x_ILPR 0x20 /* IrDA low power counter register. */
  44. #define UART011_IBRD 0x24 /* Integer baud rate divisor register. */
  45. #define UART011_FBRD 0x28 /* Fractional baud rate divisor register. */
  46. #define UART011_LCRH 0x2c /* Line control register. */
  47. #define ST_UART011_LCRH_TX 0x2c /* Tx Line control register. */
  48. #define UART011_CR 0x30 /* Control register. */
  49. #define UART011_IFLS 0x34 /* Interrupt fifo level select. */
  50. #define UART011_IMSC 0x38 /* Interrupt mask. */
  51. #define UART011_RIS 0x3c /* Raw interrupt status. */
  52. #define UART011_MIS 0x40 /* Masked interrupt status. */
  53. #define UART011_ICR 0x44 /* Interrupt clear register. */
  54. #define UART011_DMACR 0x48 /* DMA control register. */
  55. #define ST_UART011_XFCR 0x50 /* XON/XOFF control register. */
  56. #define ST_UART011_XON1 0x54 /* XON1 register. */
  57. #define ST_UART011_XON2 0x58 /* XON2 register. */
  58. #define ST_UART011_XOFF1 0x5C /* XON1 register. */
  59. #define ST_UART011_XOFF2 0x60 /* XON2 register. */
  60. #define ST_UART011_ITCR 0x80 /* Integration test control register. */
  61. #define ST_UART011_ITIP 0x84 /* Integration test input register. */
  62. #define ST_UART011_ABCR 0x100 /* Autobaud control register. */
  63. #define ST_UART011_ABIMSC 0x15C /* Autobaud interrupt mask/clear register. */
  64. #define UART011_DR_OE (1 << 11)
  65. #define UART011_DR_BE (1 << 10)
  66. #define UART011_DR_PE (1 << 9)
  67. #define UART011_DR_FE (1 << 8)
  68. #define UART01x_RSR_OE 0x08
  69. #define UART01x_RSR_BE 0x04
  70. #define UART01x_RSR_PE 0x02
  71. #define UART01x_RSR_FE 0x01
  72. #define UART011_FR_RI 0x100
  73. #define UART011_FR_TXFE 0x080
  74. #define UART011_FR_RXFF 0x040
  75. #define UART01x_FR_TXFF 0x020
  76. #define UART01x_FR_RXFE 0x010
  77. #define UART01x_FR_BUSY 0x008
  78. #define UART01x_FR_DCD 0x004
  79. #define UART01x_FR_DSR 0x002
  80. #define UART01x_FR_CTS 0x001
  81. #define UART01x_FR_TMSK (UART01x_FR_TXFF + UART01x_FR_BUSY)
  82. #define UART011_CR_CTSEN 0x8000 /* CTS hardware flow control */
  83. #define UART011_CR_RTSEN 0x4000 /* RTS hardware flow control */
  84. #define UART011_CR_OUT2 0x2000 /* OUT2 */
  85. #define UART011_CR_OUT1 0x1000 /* OUT1 */
  86. #define UART011_CR_RTS 0x0800 /* RTS */
  87. #define UART011_CR_DTR 0x0400 /* DTR */
  88. #define UART011_CR_RXE 0x0200 /* receive enable */
  89. #define UART011_CR_TXE 0x0100 /* transmit enable */
  90. #define UART011_CR_LBE 0x0080 /* loopback enable */
  91. #define UART010_CR_RTIE 0x0040
  92. #define UART010_CR_TIE 0x0020
  93. #define UART010_CR_RIE 0x0010
  94. #define UART010_CR_MSIE 0x0008
  95. #define ST_UART011_CR_OVSFACT 0x0008 /* Oversampling factor */
  96. #define UART01x_CR_IIRLP 0x0004 /* SIR low power mode */
  97. #define UART01x_CR_SIREN 0x0002 /* SIR enable */
  98. #define UART01x_CR_UARTEN 0x0001 /* UART enable */
  99. #define UART011_LCRH_SPS 0x80
  100. #define UART01x_LCRH_WLEN_8 0x60
  101. #define UART01x_LCRH_WLEN_7 0x40
  102. #define UART01x_LCRH_WLEN_6 0x20
  103. #define UART01x_LCRH_WLEN_5 0x00
  104. #define UART01x_LCRH_FEN 0x10
  105. #define UART01x_LCRH_STP2 0x08
  106. #define UART01x_LCRH_EPS 0x04
  107. #define UART01x_LCRH_PEN 0x02
  108. #define UART01x_LCRH_BRK 0x01
  109. #define ST_UART011_DMAWM_RX_1 (0 << 3)
  110. #define ST_UART011_DMAWM_RX_2 (1 << 3)
  111. #define ST_UART011_DMAWM_RX_4 (2 << 3)
  112. #define ST_UART011_DMAWM_RX_8 (3 << 3)
  113. #define ST_UART011_DMAWM_RX_16 (4 << 3)
  114. #define ST_UART011_DMAWM_RX_32 (5 << 3)
  115. #define ST_UART011_DMAWM_RX_48 (6 << 3)
  116. #define ST_UART011_DMAWM_TX_1 0
  117. #define ST_UART011_DMAWM_TX_2 1
  118. #define ST_UART011_DMAWM_TX_4 2
  119. #define ST_UART011_DMAWM_TX_8 3
  120. #define ST_UART011_DMAWM_TX_16 4
  121. #define ST_UART011_DMAWM_TX_32 5
  122. #define ST_UART011_DMAWM_TX_48 6
  123. #define UART010_IIR_RTIS 0x08
  124. #define UART010_IIR_TIS 0x04
  125. #define UART010_IIR_RIS 0x02
  126. #define UART010_IIR_MIS 0x01
  127. #define UART011_IFLS_RX1_8 (0 << 3)
  128. #define UART011_IFLS_RX2_8 (1 << 3)
  129. #define UART011_IFLS_RX4_8 (2 << 3)
  130. #define UART011_IFLS_RX6_8 (3 << 3)
  131. #define UART011_IFLS_RX7_8 (4 << 3)
  132. #define UART011_IFLS_TX1_8 (0 << 0)
  133. #define UART011_IFLS_TX2_8 (1 << 0)
  134. #define UART011_IFLS_TX4_8 (2 << 0)
  135. #define UART011_IFLS_TX6_8 (3 << 0)
  136. #define UART011_IFLS_TX7_8 (4 << 0)
  137. /* special values for ST vendor with deeper fifo */
  138. #define UART011_IFLS_RX_HALF (5 << 3)
  139. #define UART011_IFLS_TX_HALF (5 << 0)
  140. #define UART011_OEIM (1 << 10) /* overrun error interrupt mask */
  141. #define UART011_BEIM (1 << 9) /* break error interrupt mask */
  142. #define UART011_PEIM (1 << 8) /* parity error interrupt mask */
  143. #define UART011_FEIM (1 << 7) /* framing error interrupt mask */
  144. #define UART011_RTIM (1 << 6) /* receive timeout interrupt mask */
  145. #define UART011_TXIM (1 << 5) /* transmit interrupt mask */
  146. #define UART011_RXIM (1 << 4) /* receive interrupt mask */
  147. #define UART011_DSRMIM (1 << 3) /* DSR interrupt mask */
  148. #define UART011_DCDMIM (1 << 2) /* DCD interrupt mask */
  149. #define UART011_CTSMIM (1 << 1) /* CTS interrupt mask */
  150. #define UART011_RIMIM (1 << 0) /* RI interrupt mask */
  151. #define UART011_OEIS (1 << 10) /* overrun error interrupt status */
  152. #define UART011_BEIS (1 << 9) /* break error interrupt status */
  153. #define UART011_PEIS (1 << 8) /* parity error interrupt status */
  154. #define UART011_FEIS (1 << 7) /* framing error interrupt status */
  155. #define UART011_RTIS (1 << 6) /* receive timeout interrupt status */
  156. #define UART011_TXIS (1 << 5) /* transmit interrupt status */
  157. #define UART011_RXIS (1 << 4) /* receive interrupt status */
  158. #define UART011_DSRMIS (1 << 3) /* DSR interrupt status */
  159. #define UART011_DCDMIS (1 << 2) /* DCD interrupt status */
  160. #define UART011_CTSMIS (1 << 1) /* CTS interrupt status */
  161. #define UART011_RIMIS (1 << 0) /* RI interrupt status */
  162. #define UART011_OEIC (1 << 10) /* overrun error interrupt clear */
  163. #define UART011_BEIC (1 << 9) /* break error interrupt clear */
  164. #define UART011_PEIC (1 << 8) /* parity error interrupt clear */
  165. #define UART011_FEIC (1 << 7) /* framing error interrupt clear */
  166. #define UART011_RTIC (1 << 6) /* receive timeout interrupt clear */
  167. #define UART011_TXIC (1 << 5) /* transmit interrupt clear */
  168. #define UART011_RXIC (1 << 4) /* receive interrupt clear */
  169. #define UART011_DSRMIC (1 << 3) /* DSR interrupt clear */
  170. #define UART011_DCDMIC (1 << 2) /* DCD interrupt clear */
  171. #define UART011_CTSMIC (1 << 1) /* CTS interrupt clear */
  172. #define UART011_RIMIC (1 << 0) /* RI interrupt clear */
  173. #define UART011_DMAONERR (1 << 2) /* disable dma on error */
  174. #define UART011_TXDMAE (1 << 1) /* enable transmit dma */
  175. #define UART011_RXDMAE (1 << 0) /* enable receive dma */
  176. #define UART01x_RSR_ANY (UART01x_RSR_OE|UART01x_RSR_BE|UART01x_RSR_PE|UART01x_RSR_FE)
  177. #define UART01x_FR_MODEM_ANY (UART01x_FR_DCD|UART01x_FR_DSR|UART01x_FR_CTS)
  178. #ifndef __ASSEMBLY__
  179. struct amba_device; /* in uncompress this is included but amba/bus.h is not */
  180. struct amba_pl010_data {
  181. void (*set_mctrl)(struct amba_device *dev, void __iomem *base, unsigned int mctrl);
  182. };
  183. struct dma_chan;
  184. struct amba_pl011_data {
  185. bool (*dma_filter)(struct dma_chan *chan, void *filter_param);
  186. void *dma_rx_param;
  187. void *dma_tx_param;
  188. void (*init) (void);
  189. void (*exit) (void);
  190. void (*reset) (void);
  191. };
  192. #endif
  193. #endif