sh-sci.h 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #include <linux/bitops.h>
  3. #include <linux/serial_core.h>
  4. #include <linux/io.h>
  5. #include <linux/gpio.h>
  6. #define SCI_MAJOR 204
  7. #define SCI_MINOR_START 8
  8. /*
  9. * SCI register subset common for all port types.
  10. * Not all registers will exist on all parts.
  11. */
  12. enum {
  13. SCSMR, /* Serial Mode Register */
  14. SCBRR, /* Bit Rate Register */
  15. SCSCR, /* Serial Control Register */
  16. SCxSR, /* Serial Status Register */
  17. SCFCR, /* FIFO Control Register */
  18. SCFDR, /* FIFO Data Count Register */
  19. SCxTDR, /* Transmit (FIFO) Data Register */
  20. SCxRDR, /* Receive (FIFO) Data Register */
  21. SCLSR, /* Line Status Register */
  22. SCTFDR, /* Transmit FIFO Data Count Register */
  23. SCRFDR, /* Receive FIFO Data Count Register */
  24. SCSPTR, /* Serial Port Register */
  25. HSSRR, /* Sampling Rate Register */
  26. SCPCR, /* Serial Port Control Register */
  27. SCPDR, /* Serial Port Data Register */
  28. SCDL, /* BRG Frequency Division Register */
  29. SCCKS, /* BRG Clock Select Register */
  30. HSRTRGR, /* Rx FIFO Data Count Trigger Register */
  31. HSTTRGR, /* Tx FIFO Data Count Trigger Register */
  32. SCIx_NR_REGS,
  33. };
  34. /* SCSMR (Serial Mode Register) */
  35. #define SCSMR_C_A BIT(7) /* Communication Mode */
  36. #define SCSMR_CSYNC BIT(7) /* - Clocked synchronous mode */
  37. #define SCSMR_ASYNC 0 /* - Asynchronous mode */
  38. #define SCSMR_CHR BIT(6) /* 7-bit Character Length */
  39. #define SCSMR_PE BIT(5) /* Parity Enable */
  40. #define SCSMR_ODD BIT(4) /* Odd Parity */
  41. #define SCSMR_STOP BIT(3) /* Stop Bit Length */
  42. #define SCSMR_CKS 0x0003 /* Clock Select */
  43. /* Serial Mode Register, SCIFA/SCIFB only bits */
  44. #define SCSMR_CKEDG BIT(12) /* Transmit/Receive Clock Edge Select */
  45. #define SCSMR_SRC_MASK 0x0700 /* Sampling Control */
  46. #define SCSMR_SRC_16 0x0000 /* Sampling rate 1/16 */
  47. #define SCSMR_SRC_5 0x0100 /* Sampling rate 1/5 */
  48. #define SCSMR_SRC_7 0x0200 /* Sampling rate 1/7 */
  49. #define SCSMR_SRC_11 0x0300 /* Sampling rate 1/11 */
  50. #define SCSMR_SRC_13 0x0400 /* Sampling rate 1/13 */
  51. #define SCSMR_SRC_17 0x0500 /* Sampling rate 1/17 */
  52. #define SCSMR_SRC_19 0x0600 /* Sampling rate 1/19 */
  53. #define SCSMR_SRC_27 0x0700 /* Sampling rate 1/27 */
  54. /* Serial Control Register, SCIFA/SCIFB only bits */
  55. #define SCSCR_TDRQE BIT(15) /* Tx Data Transfer Request Enable */
  56. #define SCSCR_RDRQE BIT(14) /* Rx Data Transfer Request Enable */
  57. /* Serial Control Register, HSCIF-only bits */
  58. #define HSSCR_TOT_SHIFT 14
  59. /* SCxSR (Serial Status Register) on SCI */
  60. #define SCI_TDRE BIT(7) /* Transmit Data Register Empty */
  61. #define SCI_RDRF BIT(6) /* Receive Data Register Full */
  62. #define SCI_ORER BIT(5) /* Overrun Error */
  63. #define SCI_FER BIT(4) /* Framing Error */
  64. #define SCI_PER BIT(3) /* Parity Error */
  65. #define SCI_TEND BIT(2) /* Transmit End */
  66. #define SCI_RESERVED 0x03 /* All reserved bits */
  67. #define SCI_DEFAULT_ERROR_MASK (SCI_PER | SCI_FER)
  68. #define SCI_RDxF_CLEAR (u32)(~(SCI_RESERVED | SCI_RDRF))
  69. #define SCI_ERROR_CLEAR (u32)(~(SCI_RESERVED | SCI_PER | SCI_FER | SCI_ORER))
  70. #define SCI_TDxE_CLEAR (u32)(~(SCI_RESERVED | SCI_TEND | SCI_TDRE))
  71. #define SCI_BREAK_CLEAR (u32)(~(SCI_RESERVED | SCI_PER | SCI_FER | SCI_ORER))
  72. /* SCxSR (Serial Status Register) on SCIF, SCIFA, SCIFB, HSCIF */
  73. #define SCIF_ER BIT(7) /* Receive Error */
  74. #define SCIF_TEND BIT(6) /* Transmission End */
  75. #define SCIF_TDFE BIT(5) /* Transmit FIFO Data Empty */
  76. #define SCIF_BRK BIT(4) /* Break Detect */
  77. #define SCIF_FER BIT(3) /* Framing Error */
  78. #define SCIF_PER BIT(2) /* Parity Error */
  79. #define SCIF_RDF BIT(1) /* Receive FIFO Data Full */
  80. #define SCIF_DR BIT(0) /* Receive Data Ready */
  81. /* SCIF only (optional) */
  82. #define SCIF_PERC 0xf000 /* Number of Parity Errors */
  83. #define SCIF_FERC 0x0f00 /* Number of Framing Errors */
  84. /*SCIFA/SCIFB and SCIF on SH7705/SH7720/SH7721 only */
  85. #define SCIFA_ORER BIT(9) /* Overrun Error */
  86. #define SCIF_DEFAULT_ERROR_MASK (SCIF_PER | SCIF_FER | SCIF_BRK | SCIF_ER)
  87. #define SCIF_RDxF_CLEAR (u32)(~(SCIF_DR | SCIF_RDF))
  88. #define SCIF_ERROR_CLEAR (u32)(~(SCIF_PER | SCIF_FER | SCIF_ER))
  89. #define SCIF_TDxE_CLEAR (u32)(~(SCIF_TDFE))
  90. #define SCIF_BREAK_CLEAR (u32)(~(SCIF_PER | SCIF_FER | SCIF_BRK))
  91. /* SCFCR (FIFO Control Register) */
  92. #define SCFCR_RTRG1 BIT(7) /* Receive FIFO Data Count Trigger */
  93. #define SCFCR_RTRG0 BIT(6)
  94. #define SCFCR_TTRG1 BIT(5) /* Transmit FIFO Data Count Trigger */
  95. #define SCFCR_TTRG0 BIT(4)
  96. #define SCFCR_MCE BIT(3) /* Modem Control Enable */
  97. #define SCFCR_TFRST BIT(2) /* Transmit FIFO Data Register Reset */
  98. #define SCFCR_RFRST BIT(1) /* Receive FIFO Data Register Reset */
  99. #define SCFCR_LOOP BIT(0) /* Loopback Test */
  100. /* SCLSR (Line Status Register) on (H)SCIF */
  101. #define SCLSR_TO BIT(2) /* Timeout */
  102. #define SCLSR_ORER BIT(0) /* Overrun Error */
  103. /* SCSPTR (Serial Port Register), optional */
  104. #define SCSPTR_RTSIO BIT(7) /* Serial Port RTS# Pin Input/Output */
  105. #define SCSPTR_RTSDT BIT(6) /* Serial Port RTS# Pin Data */
  106. #define SCSPTR_CTSIO BIT(5) /* Serial Port CTS# Pin Input/Output */
  107. #define SCSPTR_CTSDT BIT(4) /* Serial Port CTS# Pin Data */
  108. #define SCSPTR_SCKIO BIT(3) /* Serial Port Clock Pin Input/Output */
  109. #define SCSPTR_SCKDT BIT(2) /* Serial Port Clock Pin Data */
  110. #define SCSPTR_SPB2IO BIT(1) /* Serial Port Break Input/Output */
  111. #define SCSPTR_SPB2DT BIT(0) /* Serial Port Break Data */
  112. /* HSSRR HSCIF */
  113. #define HSCIF_SRE BIT(15) /* Sampling Rate Register Enable */
  114. #define HSCIF_SRDE BIT(14) /* Sampling Point Register Enable */
  115. #define HSCIF_SRHP_SHIFT 8
  116. #define HSCIF_SRHP_MASK 0x0f00
  117. /* SCPCR (Serial Port Control Register), SCIFA/SCIFB only */
  118. #define SCPCR_RTSC BIT(4) /* Serial Port RTS# Pin / Output Pin */
  119. #define SCPCR_CTSC BIT(3) /* Serial Port CTS# Pin / Input Pin */
  120. #define SCPCR_SCKC BIT(2) /* Serial Port SCK Pin / Output Pin */
  121. #define SCPCR_RXDC BIT(1) /* Serial Port RXD Pin / Input Pin */
  122. #define SCPCR_TXDC BIT(0) /* Serial Port TXD Pin / Output Pin */
  123. /* SCPDR (Serial Port Data Register), SCIFA/SCIFB only */
  124. #define SCPDR_RTSD BIT(4) /* Serial Port RTS# Output Pin Data */
  125. #define SCPDR_CTSD BIT(3) /* Serial Port CTS# Input Pin Data */
  126. #define SCPDR_SCKD BIT(2) /* Serial Port SCK Output Pin Data */
  127. #define SCPDR_RXDD BIT(1) /* Serial Port RXD Input Pin Data */
  128. #define SCPDR_TXDD BIT(0) /* Serial Port TXD Output Pin Data */
  129. /*
  130. * BRG Clock Select Register (Some SCIF and HSCIF)
  131. * The Baud Rate Generator for external clock can provide a clock source for
  132. * the sampling clock. It outputs either its frequency divided clock, or the
  133. * (undivided) (H)SCK external clock.
  134. */
  135. #define SCCKS_CKS BIT(15) /* Select (H)SCK (1) or divided SC_CLK (0) */
  136. #define SCCKS_XIN BIT(14) /* SC_CLK uses bus clock (1) or SCIF_CLK (0) */
  137. #define SCxSR_TEND(port) (((port)->type == PORT_SCI) ? SCI_TEND : SCIF_TEND)
  138. #define SCxSR_RDxF(port) (((port)->type == PORT_SCI) ? SCI_RDRF : SCIF_DR | SCIF_RDF)
  139. #define SCxSR_TDxE(port) (((port)->type == PORT_SCI) ? SCI_TDRE : SCIF_TDFE)
  140. #define SCxSR_FER(port) (((port)->type == PORT_SCI) ? SCI_FER : SCIF_FER)
  141. #define SCxSR_PER(port) (((port)->type == PORT_SCI) ? SCI_PER : SCIF_PER)
  142. #define SCxSR_BRK(port) (((port)->type == PORT_SCI) ? 0x00 : SCIF_BRK)
  143. #define SCxSR_ERRORS(port) (to_sci_port(port)->params->error_mask)
  144. #define SCxSR_RDxF_CLEAR(port) \
  145. (((port)->type == PORT_SCI) ? SCI_RDxF_CLEAR : SCIF_RDxF_CLEAR)
  146. #define SCxSR_ERROR_CLEAR(port) \
  147. (to_sci_port(port)->params->error_clear)
  148. #define SCxSR_TDxE_CLEAR(port) \
  149. (((port)->type == PORT_SCI) ? SCI_TDxE_CLEAR : SCIF_TDxE_CLEAR)
  150. #define SCxSR_BREAK_CLEAR(port) \
  151. (((port)->type == PORT_SCI) ? SCI_BREAK_CLEAR : SCIF_BREAK_CLEAR)