serial_mxc.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. /*
  2. * (c) 2007 Sascha Hauer <s.hauer@pengutronix.de>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. *
  18. */
  19. #include <common.h>
  20. #ifdef CONFIG_MX31
  21. #include <asm/arch/mx31.h>
  22. #else
  23. #include <asm/arch/imx-regs.h>
  24. #include <asm/arch/clock.h>
  25. #endif
  26. #define __REG(x) (*((volatile u32 *)(x)))
  27. #ifdef CONFIG_SYS_MX31_UART1
  28. #define UART_PHYS 0x43f90000
  29. #elif defined(CONFIG_SYS_MX31_UART2)
  30. #define UART_PHYS 0x43f94000
  31. #elif defined(CONFIG_SYS_MX31_UART3)
  32. #define UART_PHYS 0x5000c000
  33. #elif defined(CONFIG_SYS_MX31_UART4)
  34. #define UART_PHYS 0x43fb0000
  35. #elif defined(CONFIG_SYS_MX31_UART5)
  36. #define UART_PHYS 0x43fb4000
  37. #elif defined(CONFIG_SYS_MX27_UART1)
  38. #define UART_PHYS 0x1000a000
  39. #elif defined(CONFIG_SYS_MX27_UART2)
  40. #define UART_PHYS 0x1000b000
  41. #elif defined(CONFIG_SYS_MX27_UART3)
  42. #define UART_PHYS 0x1000c000
  43. #elif defined(CONFIG_SYS_MX27_UART4)
  44. #define UART_PHYS 0x1000d000
  45. #elif defined(CONFIG_SYS_MX27_UART5)
  46. #define UART_PHYS 0x1001b000
  47. #elif defined(CONFIG_SYS_MX27_UART6)
  48. #define UART_PHYS 0x1001c000
  49. #else
  50. #error "define CONFIG_SYS_MX31_UARTx to use the mx31 UART driver"
  51. #endif
  52. /* Register definitions */
  53. #define URXD 0x0 /* Receiver Register */
  54. #define UTXD 0x40 /* Transmitter Register */
  55. #define UCR1 0x80 /* Control Register 1 */
  56. #define UCR2 0x84 /* Control Register 2 */
  57. #define UCR3 0x88 /* Control Register 3 */
  58. #define UCR4 0x8c /* Control Register 4 */
  59. #define UFCR 0x90 /* FIFO Control Register */
  60. #define USR1 0x94 /* Status Register 1 */
  61. #define USR2 0x98 /* Status Register 2 */
  62. #define UESC 0x9c /* Escape Character Register */
  63. #define UTIM 0xa0 /* Escape Timer Register */
  64. #define UBIR 0xa4 /* BRM Incremental Register */
  65. #define UBMR 0xa8 /* BRM Modulator Register */
  66. #define UBRC 0xac /* Baud Rate Count Register */
  67. #define UTS 0xb4 /* UART Test Register (mx31) */
  68. /* UART Control Register Bit Fields.*/
  69. #define URXD_CHARRDY (1<<15)
  70. #define URXD_ERR (1<<14)
  71. #define URXD_OVRRUN (1<<13)
  72. #define URXD_FRMERR (1<<12)
  73. #define URXD_BRK (1<<11)
  74. #define URXD_PRERR (1<<10)
  75. #define URXD_RX_DATA (0xFF)
  76. #define UCR1_ADEN (1<<15) /* Auto dectect interrupt */
  77. #define UCR1_ADBR (1<<14) /* Auto detect baud rate */
  78. #define UCR1_TRDYEN (1<<13) /* Transmitter ready interrupt enable */
  79. #define UCR1_IDEN (1<<12) /* Idle condition interrupt */
  80. #define UCR1_RRDYEN (1<<9) /* Recv ready interrupt enable */
  81. #define UCR1_RDMAEN (1<<8) /* Recv ready DMA enable */
  82. #define UCR1_IREN (1<<7) /* Infrared interface enable */
  83. #define UCR1_TXMPTYEN (1<<6) /* Transimitter empty interrupt enable */
  84. #define UCR1_RTSDEN (1<<5) /* RTS delta interrupt enable */
  85. #define UCR1_SNDBRK (1<<4) /* Send break */
  86. #define UCR1_TDMAEN (1<<3) /* Transmitter ready DMA enable */
  87. #define UCR1_UARTCLKEN (1<<2) /* UART clock enabled */
  88. #define UCR1_DOZE (1<<1) /* Doze */
  89. #define UCR1_UARTEN (1<<0) /* UART enabled */
  90. #define UCR2_ESCI (1<<15) /* Escape seq interrupt enable */
  91. #define UCR2_IRTS (1<<14) /* Ignore RTS pin */
  92. #define UCR2_CTSC (1<<13) /* CTS pin control */
  93. #define UCR2_CTS (1<<12) /* Clear to send */
  94. #define UCR2_ESCEN (1<<11) /* Escape enable */
  95. #define UCR2_PREN (1<<8) /* Parity enable */
  96. #define UCR2_PROE (1<<7) /* Parity odd/even */
  97. #define UCR2_STPB (1<<6) /* Stop */
  98. #define UCR2_WS (1<<5) /* Word size */
  99. #define UCR2_RTSEN (1<<4) /* Request to send interrupt enable */
  100. #define UCR2_TXEN (1<<2) /* Transmitter enabled */
  101. #define UCR2_RXEN (1<<1) /* Receiver enabled */
  102. #define UCR2_SRST (1<<0) /* SW reset */
  103. #define UCR3_DTREN (1<<13) /* DTR interrupt enable */
  104. #define UCR3_PARERREN (1<<12) /* Parity enable */
  105. #define UCR3_FRAERREN (1<<11) /* Frame error interrupt enable */
  106. #define UCR3_DSR (1<<10) /* Data set ready */
  107. #define UCR3_DCD (1<<9) /* Data carrier detect */
  108. #define UCR3_RI (1<<8) /* Ring indicator */
  109. #define UCR3_TIMEOUTEN (1<<7) /* Timeout interrupt enable */
  110. #define UCR3_RXDSEN (1<<6) /* Receive status interrupt enable */
  111. #define UCR3_AIRINTEN (1<<5) /* Async IR wake interrupt enable */
  112. #define UCR3_AWAKEN (1<<4) /* Async wake interrupt enable */
  113. #define UCR3_REF25 (1<<3) /* Ref freq 25 MHz */
  114. #define UCR3_REF30 (1<<2) /* Ref Freq 30 MHz */
  115. #define UCR3_INVT (1<<1) /* Inverted Infrared transmission */
  116. #define UCR3_BPEN (1<<0) /* Preset registers enable */
  117. #define UCR4_CTSTL_32 (32<<10) /* CTS trigger level (32 chars) */
  118. #define UCR4_INVR (1<<9) /* Inverted infrared reception */
  119. #define UCR4_ENIRI (1<<8) /* Serial infrared interrupt enable */
  120. #define UCR4_WKEN (1<<7) /* Wake interrupt enable */
  121. #define UCR4_REF16 (1<<6) /* Ref freq 16 MHz */
  122. #define UCR4_IRSC (1<<5) /* IR special case */
  123. #define UCR4_TCEN (1<<3) /* Transmit complete interrupt enable */
  124. #define UCR4_BKEN (1<<2) /* Break condition interrupt enable */
  125. #define UCR4_OREN (1<<1) /* Receiver overrun interrupt enable */
  126. #define UCR4_DREN (1<<0) /* Recv data ready interrupt enable */
  127. #define UFCR_RXTL_SHF 0 /* Receiver trigger level shift */
  128. #define UFCR_RFDIV (7<<7) /* Reference freq divider mask */
  129. #define UFCR_TXTL_SHF 10 /* Transmitter trigger level shift */
  130. #define USR1_PARITYERR (1<<15) /* Parity error interrupt flag */
  131. #define USR1_RTSS (1<<14) /* RTS pin status */
  132. #define USR1_TRDY (1<<13) /* Transmitter ready interrupt/dma flag */
  133. #define USR1_RTSD (1<<12) /* RTS delta */
  134. #define USR1_ESCF (1<<11) /* Escape seq interrupt flag */
  135. #define USR1_FRAMERR (1<<10) /* Frame error interrupt flag */
  136. #define USR1_RRDY (1<<9) /* Receiver ready interrupt/dma flag */
  137. #define USR1_TIMEOUT (1<<7) /* Receive timeout interrupt status */
  138. #define USR1_RXDS (1<<6) /* Receiver idle interrupt flag */
  139. #define USR1_AIRINT (1<<5) /* Async IR wake interrupt flag */
  140. #define USR1_AWAKE (1<<4) /* Aysnc wake interrupt flag */
  141. #define USR2_ADET (1<<15) /* Auto baud rate detect complete */
  142. #define USR2_TXFE (1<<14) /* Transmit buffer FIFO empty */
  143. #define USR2_DTRF (1<<13) /* DTR edge interrupt flag */
  144. #define USR2_IDLE (1<<12) /* Idle condition */
  145. #define USR2_IRINT (1<<8) /* Serial infrared interrupt flag */
  146. #define USR2_WAKE (1<<7) /* Wake */
  147. #define USR2_RTSF (1<<4) /* RTS edge interrupt flag */
  148. #define USR2_TXDC (1<<3) /* Transmitter complete */
  149. #define USR2_BRCD (1<<2) /* Break condition */
  150. #define USR2_ORE (1<<1) /* Overrun error */
  151. #define USR2_RDR (1<<0) /* Recv data ready */
  152. #define UTS_FRCPERR (1<<13) /* Force parity error */
  153. #define UTS_LOOP (1<<12) /* Loop tx and rx */
  154. #define UTS_TXEMPTY (1<<6) /* TxFIFO empty */
  155. #define UTS_RXEMPTY (1<<5) /* RxFIFO empty */
  156. #define UTS_TXFULL (1<<4) /* TxFIFO full */
  157. #define UTS_RXFULL (1<<3) /* RxFIFO full */
  158. #define UTS_SOFTRST (1<<0) /* Software reset */
  159. DECLARE_GLOBAL_DATA_PTR;
  160. void serial_setbrg (void)
  161. {
  162. #ifdef CONFIG_MX31
  163. u32 clk = mx31_get_ipg_clk();
  164. #else
  165. u32 clk = imx_get_perclk1();
  166. #endif
  167. if (!gd->baudrate)
  168. gd->baudrate = CONFIG_BAUDRATE;
  169. __REG(UART_PHYS + UFCR) = 4 << 7; /* divide input clock by 2 */
  170. __REG(UART_PHYS + UBIR) = 0xf;
  171. __REG(UART_PHYS + UBMR) = clk / (2 * gd->baudrate);
  172. }
  173. int serial_getc (void)
  174. {
  175. while (__REG(UART_PHYS + UTS) & UTS_RXEMPTY);
  176. return (__REG(UART_PHYS + URXD) & URXD_RX_DATA); /* mask out status from upper word */
  177. }
  178. void serial_putc (const char c)
  179. {
  180. __REG(UART_PHYS + UTXD) = c;
  181. /* wait for transmitter to be ready */
  182. while(!(__REG(UART_PHYS + UTS) & UTS_TXEMPTY));
  183. /* If \n, also do \r */
  184. if (c == '\n')
  185. serial_putc ('\r');
  186. }
  187. /*
  188. * Test whether a character is in the RX buffer
  189. */
  190. int serial_tstc (void)
  191. {
  192. /* If receive fifo is empty, return false */
  193. if (__REG(UART_PHYS + UTS) & UTS_RXEMPTY)
  194. return 0;
  195. return 1;
  196. }
  197. void
  198. serial_puts (const char *s)
  199. {
  200. while (*s) {
  201. serial_putc (*s++);
  202. }
  203. }
  204. /*
  205. * Initialise the serial port with the given baudrate. The settings
  206. * are always 8 data bits, no parity, 1 stop bit, no start bits.
  207. *
  208. */
  209. int serial_init (void)
  210. {
  211. __REG(UART_PHYS + UCR1) = 0x0;
  212. __REG(UART_PHYS + UCR2) = 0x0;
  213. while (!(__REG(UART_PHYS + UCR2) & UCR2_SRST));
  214. __REG(UART_PHYS + UCR3) = 0x0704;
  215. __REG(UART_PHYS + UCR4) = 0x8000;
  216. __REG(UART_PHYS + UESC) = 0x002b;
  217. __REG(UART_PHYS + UTIM) = 0x0;
  218. __REG(UART_PHYS + UTS) = 0x0;
  219. serial_setbrg();
  220. __REG(UART_PHYS + UCR2) = UCR2_WS | UCR2_IRTS | UCR2_RXEN | UCR2_TXEN | UCR2_SRST;
  221. __REG(UART_PHYS + UCR1) = UCR1_UARTEN;
  222. return 0;
  223. }