serial.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * (C) Copyright 2002
  3. * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
  4. *
  5. * (C) Copyright 2002
  6. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  7. * Marius Groeger <mgroeger@sysgo.de>
  8. *
  9. * (C) Copyright 2002
  10. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  11. * Alex Zuepke <azu@sysgo.de>
  12. *
  13. * Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
  14. *
  15. * This program is free software; you can redistribute it and/or modify
  16. * it under the terms of the GNU General Public License as published by
  17. * the Free Software Foundation; either version 2 of the License, or
  18. * (at your option) any later version.
  19. *
  20. * This program is distributed in the hope that it will be useful,
  21. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  23. * GNU General Public License for more details.
  24. *
  25. * You should have received a copy of the GNU General Public License
  26. * along with this program; if not, write to the Free Software
  27. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  28. *
  29. */
  30. #include <common.h>
  31. #include <watchdog.h>
  32. #include <asm/arch/pxa-regs.h>
  33. DECLARE_GLOBAL_DATA_PTR;
  34. void serial_setbrg (void)
  35. {
  36. unsigned int quot = 0;
  37. if (gd->baudrate == 1200)
  38. quot = 768;
  39. else if (gd->baudrate == 9600)
  40. quot = 96;
  41. else if (gd->baudrate == 19200)
  42. quot = 48;
  43. else if (gd->baudrate == 38400)
  44. quot = 24;
  45. else if (gd->baudrate == 57600)
  46. quot = 16;
  47. else if (gd->baudrate == 115200)
  48. quot = 8;
  49. else
  50. hang ();
  51. #ifdef CONFIG_FFUART
  52. #ifdef CONFIG_CPU_MONAHANS
  53. CKENA |= CKENA_22_FFUART;
  54. #else
  55. CKEN |= CKEN6_FFUART;
  56. #endif /* CONFIG_CPU_MONAHANS */
  57. FFIER = 0; /* Disable for now */
  58. FFFCR = 0; /* No fifos enabled */
  59. /* set baud rate */
  60. FFLCR = LCR_WLS0 | LCR_WLS1 | LCR_DLAB;
  61. FFDLL = quot & 0xff;
  62. FFDLH = quot >> 8;
  63. FFLCR = LCR_WLS0 | LCR_WLS1;
  64. FFIER = IER_UUE; /* Enable FFUART */
  65. #elif defined(CONFIG_BTUART)
  66. #ifdef CONFIG_CPU_MONAHANS
  67. CKENA |= CKENA_21_BTUART;
  68. #else
  69. CKEN |= CKEN7_BTUART;
  70. #endif /* CONFIG_CPU_MONAHANS */
  71. BTIER = 0;
  72. BTFCR = 0;
  73. /* set baud rate */
  74. BTLCR = LCR_DLAB;
  75. BTDLL = quot & 0xff;
  76. BTDLH = quot >> 8;
  77. BTLCR = LCR_WLS0 | LCR_WLS1;
  78. BTIER = IER_UUE; /* Enable BFUART */
  79. #elif defined(CONFIG_STUART)
  80. #ifdef CONFIG_CPU_MONAHANS
  81. CKENA |= CKENA_23_STUART;
  82. #else
  83. CKEN |= CKEN5_STUART;
  84. #endif /* CONFIG_CPU_MONAHANS */
  85. STIER = 0;
  86. STFCR = 0;
  87. /* set baud rate */
  88. STLCR = LCR_DLAB;
  89. STDLL = quot & 0xff;
  90. STDLH = quot >> 8;
  91. STLCR = LCR_WLS0 | LCR_WLS1;
  92. STIER = IER_UUE; /* Enable STUART */
  93. #else
  94. #error "Bad: you didn't configure serial ..."
  95. #endif
  96. }
  97. /*
  98. * Initialise the serial port with the given baudrate. The settings
  99. * are always 8 data bits, no parity, 1 stop bit, no start bits.
  100. *
  101. */
  102. int serial_init (void)
  103. {
  104. serial_setbrg ();
  105. return (0);
  106. }
  107. /*
  108. * Output a single byte to the serial port.
  109. */
  110. void serial_putc (const char c)
  111. {
  112. #ifdef CONFIG_FFUART
  113. /* wait for room in the tx FIFO on FFUART */
  114. while ((FFLSR & LSR_TEMT) == 0)
  115. WATCHDOG_RESET (); /* Reset HW Watchdog, if needed */
  116. FFTHR = c;
  117. #elif defined(CONFIG_BTUART)
  118. while ((BTLSR & LSR_TEMT ) == 0 )
  119. WATCHDOG_RESET (); /* Reset HW Watchdog, if needed */
  120. BTTHR = c;
  121. #elif defined(CONFIG_STUART)
  122. while ((STLSR & LSR_TEMT ) == 0 )
  123. WATCHDOG_RESET (); /* Reset HW Watchdog, if needed */
  124. STTHR = c;
  125. #endif
  126. /* If \n, also do \r */
  127. if (c == '\n')
  128. serial_putc ('\r');
  129. }
  130. /*
  131. * Read a single byte from the serial port. Returns 1 on success, 0
  132. * otherwise. When the function is succesfull, the character read is
  133. * written into its argument c.
  134. */
  135. int serial_tstc (void)
  136. {
  137. #ifdef CONFIG_FFUART
  138. return FFLSR & LSR_DR;
  139. #elif defined(CONFIG_BTUART)
  140. return BTLSR & LSR_DR;
  141. #elif defined(CONFIG_STUART)
  142. return STLSR & LSR_DR;
  143. #endif
  144. }
  145. /*
  146. * Read a single byte from the serial port. Returns 1 on success, 0
  147. * otherwise. When the function is succesfull, the character read is
  148. * written into its argument c.
  149. */
  150. int serial_getc (void)
  151. {
  152. #ifdef CONFIG_FFUART
  153. while (!(FFLSR & LSR_DR))
  154. WATCHDOG_RESET (); /* Reset HW Watchdog, if needed */
  155. return (char) FFRBR & 0xff;
  156. #elif defined(CONFIG_BTUART)
  157. while (!(BTLSR & LSR_DR))
  158. WATCHDOG_RESET (); /* Reset HW Watchdog, if needed */
  159. return (char) BTRBR & 0xff;
  160. #elif defined(CONFIG_STUART)
  161. while (!(STLSR & LSR_DR))
  162. WATCHDOG_RESET (); /* Reset HW Watchdog, if needed */
  163. return (char) STRBR & 0xff;
  164. #endif
  165. }
  166. void
  167. serial_puts (const char *s)
  168. {
  169. while (*s) {
  170. serial_putc (*s++);
  171. }
  172. }