serial_mxc.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. /*
  2. * (c) 2007 Sascha Hauer <s.hauer@pengutronix.de>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <watchdog.h>
  8. #include <asm/arch/imx-regs.h>
  9. #include <asm/arch/clock.h>
  10. #include <serial.h>
  11. #include <linux/compiler.h>
  12. #define __REG(x) (*((volatile u32 *)(x)))
  13. #ifndef CONFIG_MXC_UART_BASE
  14. #error "define CONFIG_MXC_UART_BASE to use the MXC UART driver"
  15. #endif
  16. #define UART_PHYS CONFIG_MXC_UART_BASE
  17. /* Register definitions */
  18. #define URXD 0x0 /* Receiver Register */
  19. #define UTXD 0x40 /* Transmitter Register */
  20. #define UCR1 0x80 /* Control Register 1 */
  21. #define UCR2 0x84 /* Control Register 2 */
  22. #define UCR3 0x88 /* Control Register 3 */
  23. #define UCR4 0x8c /* Control Register 4 */
  24. #define UFCR 0x90 /* FIFO Control Register */
  25. #define USR1 0x94 /* Status Register 1 */
  26. #define USR2 0x98 /* Status Register 2 */
  27. #define UESC 0x9c /* Escape Character Register */
  28. #define UTIM 0xa0 /* Escape Timer Register */
  29. #define UBIR 0xa4 /* BRM Incremental Register */
  30. #define UBMR 0xa8 /* BRM Modulator Register */
  31. #define UBRC 0xac /* Baud Rate Count Register */
  32. #define UTS 0xb4 /* UART Test Register (mx31) */
  33. /* UART Control Register Bit Fields.*/
  34. #define URXD_CHARRDY (1<<15)
  35. #define URXD_ERR (1<<14)
  36. #define URXD_OVRRUN (1<<13)
  37. #define URXD_FRMERR (1<<12)
  38. #define URXD_BRK (1<<11)
  39. #define URXD_PRERR (1<<10)
  40. #define URXD_RX_DATA (0xFF)
  41. #define UCR1_ADEN (1<<15) /* Auto dectect interrupt */
  42. #define UCR1_ADBR (1<<14) /* Auto detect baud rate */
  43. #define UCR1_TRDYEN (1<<13) /* Transmitter ready interrupt enable */
  44. #define UCR1_IDEN (1<<12) /* Idle condition interrupt */
  45. #define UCR1_RRDYEN (1<<9) /* Recv ready interrupt enable */
  46. #define UCR1_RDMAEN (1<<8) /* Recv ready DMA enable */
  47. #define UCR1_IREN (1<<7) /* Infrared interface enable */
  48. #define UCR1_TXMPTYEN (1<<6) /* Transimitter empty interrupt enable */
  49. #define UCR1_RTSDEN (1<<5) /* RTS delta interrupt enable */
  50. #define UCR1_SNDBRK (1<<4) /* Send break */
  51. #define UCR1_TDMAEN (1<<3) /* Transmitter ready DMA enable */
  52. #define UCR1_UARTCLKEN (1<<2) /* UART clock enabled */
  53. #define UCR1_DOZE (1<<1) /* Doze */
  54. #define UCR1_UARTEN (1<<0) /* UART enabled */
  55. #define UCR2_ESCI (1<<15) /* Escape seq interrupt enable */
  56. #define UCR2_IRTS (1<<14) /* Ignore RTS pin */
  57. #define UCR2_CTSC (1<<13) /* CTS pin control */
  58. #define UCR2_CTS (1<<12) /* Clear to send */
  59. #define UCR2_ESCEN (1<<11) /* Escape enable */
  60. #define UCR2_PREN (1<<8) /* Parity enable */
  61. #define UCR2_PROE (1<<7) /* Parity odd/even */
  62. #define UCR2_STPB (1<<6) /* Stop */
  63. #define UCR2_WS (1<<5) /* Word size */
  64. #define UCR2_RTSEN (1<<4) /* Request to send interrupt enable */
  65. #define UCR2_TXEN (1<<2) /* Transmitter enabled */
  66. #define UCR2_RXEN (1<<1) /* Receiver enabled */
  67. #define UCR2_SRST (1<<0) /* SW reset */
  68. #define UCR3_DTREN (1<<13) /* DTR interrupt enable */
  69. #define UCR3_PARERREN (1<<12) /* Parity enable */
  70. #define UCR3_FRAERREN (1<<11) /* Frame error interrupt enable */
  71. #define UCR3_DSR (1<<10) /* Data set ready */
  72. #define UCR3_DCD (1<<9) /* Data carrier detect */
  73. #define UCR3_RI (1<<8) /* Ring indicator */
  74. #define UCR3_ADNIMP (1<<7) /* Autobaud Detection Not Improved */
  75. #define UCR3_RXDSEN (1<<6) /* Receive status interrupt enable */
  76. #define UCR3_AIRINTEN (1<<5) /* Async IR wake interrupt enable */
  77. #define UCR3_AWAKEN (1<<4) /* Async wake interrupt enable */
  78. #define UCR3_REF25 (1<<3) /* Ref freq 25 MHz */
  79. #define UCR3_REF30 (1<<2) /* Ref Freq 30 MHz */
  80. #define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
  81. #define UCR3_BPEN (1<<0) /* Preset registers enable */
  82. #define UCR4_CTSTL_32 (32<<10) /* CTS trigger level (32 chars) */
  83. #define UCR4_INVR (1<<9) /* Inverted infrared reception */
  84. #define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
  85. #define UCR4_WKEN (1<<7) /* Wake interrupt enable */
  86. #define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
  87. #define UCR4_IRSC (1<<5) /* IR special case */
  88. #define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
  89. #define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
  90. #define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
  91. #define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
  92. #define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
  93. #define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
  94. #define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
  95. #define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
  96. #define USR1_RTSS (1<<14) /* RTS pin status */
  97. #define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
  98. #define USR1_RTSD (1<<12) /* RTS delta */
  99. #define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
  100. #define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
  101. #define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
  102. #define USR1_TIMEOUT (1<<7) /* Receive timeout interrupt status */
  103. #define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
  104. #define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
  105. #define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
  106. #define USR2_ADET (1<<15) /* Auto baud rate detect complete */
  107. #define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
  108. #define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
  109. #define USR2_IDLE (1<<12) /* Idle condition */
  110. #define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
  111. #define USR2_WAKE (1<<7) /* Wake */
  112. #define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
  113. #define USR2_TXDC (1<<3) /* Transmitter complete */
  114. #define USR2_BRCD (1<<2) /* Break condition */
  115. #define USR2_ORE (1<<1) /* Overrun error */
  116. #define USR2_RDR (1<<0) /* Recv data ready */
  117. #define UTS_FRCPERR (1<<13) /* Force parity error */
  118. #define UTS_LOOP (1<<12) /* Loop tx and rx */
  119. #define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
  120. #define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
  121. #define UTS_TXFULL (1<<4) /* TxFIFO full */
  122. #define UTS_RXFULL (1<<3) /* RxFIFO full */
  123. #define UTS_SOFTRST (1<<0) /* Software reset */
  124. DECLARE_GLOBAL_DATA_PTR;
  125. static void mxc_serial_setbrg(void)
  126. {
  127. u32 clk = imx_get_uartclk();
  128. if (!gd->baudrate)
  129. gd->baudrate = CONFIG_BAUDRATE;
  130. __REG(UART_PHYS + UFCR) = 4 << 7; /* divide input clock by 2 */
  131. __REG(UART_PHYS + UBIR) = 0xf;
  132. __REG(UART_PHYS + UBMR) = clk / (2 * gd->baudrate);
  133. }
  134. static int mxc_serial_getc(void)
  135. {
  136. while (__REG(UART_PHYS + UTS) & UTS_RXEMPTY)
  137. WATCHDOG_RESET();
  138. return (__REG(UART_PHYS + URXD) & URXD_RX_DATA); /* mask out status from upper word */
  139. }
  140. static void mxc_serial_putc(const char c)
  141. {
  142. __REG(UART_PHYS + UTXD) = c;
  143. /* wait for transmitter to be ready */
  144. while (!(__REG(UART_PHYS + UTS) & UTS_TXEMPTY))
  145. WATCHDOG_RESET();
  146. /* If \n, also do \r */
  147. if (c == '\n')
  148. serial_putc ('\r');
  149. }
  150. /*
  151. * Test whether a character is in the RX buffer
  152. */
  153. static int mxc_serial_tstc(void)
  154. {
  155. /* If receive fifo is empty, return false */
  156. if (__REG(UART_PHYS + UTS) & UTS_RXEMPTY)
  157. return 0;
  158. return 1;
  159. }
  160. /*
  161. * Initialise the serial port with the given baudrate. The settings
  162. * are always 8 data bits, no parity, 1 stop bit, no start bits.
  163. *
  164. */
  165. static int mxc_serial_init(void)
  166. {
  167. __REG(UART_PHYS + UCR1) = 0x0;
  168. __REG(UART_PHYS + UCR2) = 0x0;
  169. while (!(__REG(UART_PHYS + UCR2) & UCR2_SRST));
  170. __REG(UART_PHYS + UCR3) = 0x0704 | UCR3_ADNIMP;
  171. __REG(UART_PHYS + UCR4) = 0x8000;
  172. __REG(UART_PHYS + UESC) = 0x002b;
  173. __REG(UART_PHYS + UTIM) = 0x0;
  174. __REG(UART_PHYS + UTS) = 0x0;
  175. serial_setbrg();
  176. __REG(UART_PHYS + UCR2) = UCR2_WS | UCR2_IRTS | UCR2_RXEN | UCR2_TXEN | UCR2_SRST;
  177. __REG(UART_PHYS + UCR1) = UCR1_UARTEN;
  178. return 0;
  179. }
  180. static struct serial_device mxc_serial_drv = {
  181. .name = "mxc_serial",
  182. .start = mxc_serial_init,
  183. .stop = NULL,
  184. .setbrg = mxc_serial_setbrg,
  185. .putc = mxc_serial_putc,
  186. .puts = default_serial_puts,
  187. .getc = mxc_serial_getc,
  188. .tstc = mxc_serial_tstc,
  189. };
  190. void mxc_serial_initialize(void)
  191. {
  192. serial_register(&mxc_serial_drv);
  193. }
  194. __weak struct serial_device *default_serial_console(void)
  195. {
  196. return &mxc_serial_drv;
  197. }