serial.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. * (C) Copyright 2000-2004
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. #include <command.h>
  25. #include <watchdog.h>
  26. #include <asm/mcfuart.h>
  27. #ifdef CONFIG_M5271
  28. #include <asm/m5271.h>
  29. #endif
  30. #ifdef CONFIG_M5272
  31. #include <asm/m5272.h>
  32. #endif
  33. #ifdef CONFIG_M5282
  34. #include <asm/m5282.h>
  35. #endif
  36. #ifdef CONFIG_M5249
  37. #include <asm/m5249.h>
  38. #endif
  39. DECLARE_GLOBAL_DATA_PTR;
  40. #if defined(CONFIG_M5249) || defined(CONFIG_M5271)
  41. #define DoubleClock(a) ((double)(CFG_CLK/2) / 32.0 / (double)(a))
  42. #else
  43. #define DoubleClock(a) ((double)(CFG_CLK) / 32.0 / (double)(a))
  44. #endif
  45. void rs_serial_setbaudrate(int port,int baudrate)
  46. {
  47. #if defined(CONFIG_M5272) || defined(CONFIG_M5249) || defined(CONFIG_M5271)
  48. volatile unsigned char *uartp;
  49. #ifndef CONFIG_M5271
  50. double fraction;
  51. #endif
  52. double clock;
  53. if (port == 0)
  54. uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE1);
  55. else
  56. uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE2);
  57. clock = DoubleClock(baudrate); /* Set baud above */
  58. uartp[MCFUART_UBG1] = (((int)clock >> 8) & 0xff); /* set msb baud */
  59. uartp[MCFUART_UBG2] = ((int)clock & 0xff); /* set lsb baud */
  60. #ifndef CONFIG_M5271
  61. fraction = ((clock - (int)clock) * 16.0) + 0.5;
  62. uartp[MCFUART_UFPD] = ((int)fraction & 0xf); /* set baud fraction adjust */
  63. #endif
  64. #endif
  65. };
  66. void rs_serial_init(int port,int baudrate)
  67. {
  68. volatile unsigned char *uartp;
  69. /*
  70. * Reset UART, get it into known state...
  71. */
  72. if (port == 0)
  73. uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE1);
  74. else
  75. uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE2);
  76. uartp[MCFUART_UCR] = MCFUART_UCR_CMDRESETTX; /* reset TX */
  77. uartp[MCFUART_UCR] = MCFUART_UCR_CMDRESETRX; /* reset RX */
  78. uartp[MCFUART_UCR] = MCFUART_UCR_CMDRESETMRPTR; /* reset MR pointer */
  79. uartp[MCFUART_UCR] = MCFUART_UCR_CMDRESETERR; /* reset Error pointer */
  80. /*
  81. * Set port for CONSOLE_BAUD_RATE, 8 data bits, 1 stop bit, no parity.
  82. */
  83. uartp[MCFUART_UMR] = MCFUART_MR1_PARITYNONE | MCFUART_MR1_CS8;
  84. uartp[MCFUART_UMR] = MCFUART_MR2_STOP1;
  85. /* Mask UART interrupts */
  86. uartp[MCFUART_UIMR] = 0;
  87. /* Set clock Select Register: Tx/Rx clock is timer */
  88. uartp[MCFUART_UCSR] = MCFUART_UCSR_RXCLKTIMER | MCFUART_UCSR_TXCLKTIMER;
  89. rs_serial_setbaudrate(port,baudrate);
  90. /* Enable Tx/Rx */
  91. uartp[MCFUART_UCR] = MCFUART_UCR_RXENABLE | MCFUART_UCR_TXENABLE;
  92. return;
  93. }
  94. /****************************************************************************/
  95. /*
  96. * Output a single character, using UART polled mode.
  97. * This is used for console output.
  98. */
  99. void rs_put_char(char ch)
  100. {
  101. volatile unsigned char *uartp;
  102. int i;
  103. uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE1);
  104. for (i = 0; (i < 0x10000); i++) {
  105. if (uartp[MCFUART_USR] & MCFUART_USR_TXREADY)
  106. break;
  107. }
  108. uartp[MCFUART_UTB] = ch;
  109. return;
  110. }
  111. int rs_is_char(void)
  112. {
  113. volatile unsigned char *uartp;
  114. uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE1);
  115. return((uartp[MCFUART_USR] & MCFUART_USR_RXREADY) ? 1 : 0);
  116. }
  117. int rs_get_char(void)
  118. {
  119. volatile unsigned char *uartp;
  120. uartp = (volatile unsigned char *) (CFG_MBAR + MCFUART_BASE1);
  121. return(uartp[MCFUART_URB]);
  122. }
  123. void serial_setbrg(void) {
  124. rs_serial_setbaudrate(0,gd->bd->bi_baudrate);
  125. }
  126. int serial_init(void) {
  127. rs_serial_init(0,gd->baudrate);
  128. return 0;
  129. }
  130. void serial_putc(const char c) {
  131. if (c == '\n')
  132. serial_putc ('\r');
  133. rs_put_char(c);
  134. }
  135. void serial_puts (const char *s) {
  136. while (*s) {
  137. serial_putc(*s++);
  138. }
  139. }
  140. int serial_getc(void) {
  141. while(!rs_is_char())
  142. WATCHDOG_RESET();
  143. return rs_get_char();
  144. }
  145. int serial_tstc() {
  146. return rs_is_char();
  147. }