serial_netarm.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /*
  2. * Serial Port stuff - taken from Linux
  3. *
  4. * (C) Copyright 2002
  5. * MAZeT GmbH <www.mazet.de>
  6. * Stephan Linz <linz@mazet.de>, <linz@li-pro.net>
  7. *
  8. * (c) 2004
  9. * IMMS gGmbH <www.imms.de>
  10. * Thomas Elste <info@elste.org>
  11. *
  12. * See file CREDITS for list of people who contributed to this
  13. * project.
  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 <asm/hardware.h>
  32. DECLARE_GLOBAL_DATA_PTR;
  33. #define PORTA (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_PORTA))
  34. #if !defined(CONFIG_NETARM_NS7520)
  35. #define PORTB (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_PORTB))
  36. #else
  37. #define PORTC (*(volatile unsigned int *)(NETARM_GEN_MODULE_BASE + NETARM_GEN_PORTC))
  38. #endif
  39. /* wait until transmitter is ready for another character */
  40. #define TXWAITRDY(registers) \
  41. { \
  42. ulong tmo = get_timer(0) + 1 * CONFIG_SYS_HZ; \
  43. while (((registers)->status_a & NETARM_SER_STATA_TX_RDY) == 0 ) { \
  44. if (get_timer(0) > tmo) \
  45. break; \
  46. } \
  47. }
  48. volatile netarm_serial_channel_t *serial_reg_ch1 = get_serial_channel(0);
  49. volatile netarm_serial_channel_t *serial_reg_ch2 = get_serial_channel(1);
  50. extern void _netarm_led_FAIL1(void);
  51. /*
  52. * Setup both serial i/f with given baudrate
  53. */
  54. void serial_setbrg (void)
  55. {
  56. /* set 0 ... make sure pins are configured for serial */
  57. #if !defined(CONFIG_NETARM_NS7520)
  58. PORTA = PORTB =
  59. NETARM_GEN_PORT_MODE (0xef) | NETARM_GEN_PORT_DIR (0xe0);
  60. #else
  61. PORTA = NETARM_GEN_PORT_MODE (0xef) | NETARM_GEN_PORT_DIR (0xe0);
  62. PORTC = NETARM_GEN_PORT_CSF (0xef) | NETARM_GEN_PORT_MODE (0xef) | NETARM_GEN_PORT_DIR (0xe0);
  63. #endif
  64. /* first turn em off */
  65. serial_reg_ch1->ctrl_a = serial_reg_ch2->ctrl_a = 0;
  66. /* clear match register, we don't need it */
  67. serial_reg_ch1->rx_match = serial_reg_ch2->rx_match = 0;
  68. /* setup bit rate generator and rx buffer gap timer (1 byte only) */
  69. if ((gd->baudrate >= MIN_BAUD_RATE)
  70. && (gd->baudrate <= MAX_BAUD_RATE)) {
  71. serial_reg_ch1->bitrate = serial_reg_ch2->bitrate =
  72. NETARM_SER_BR_X16 (gd->baudrate);
  73. serial_reg_ch1->rx_buf_timer = serial_reg_ch2->rx_buf_timer =
  74. 0;
  75. serial_reg_ch1->rx_char_timer = serial_reg_ch2->rx_char_timer =
  76. NETARM_SER_RXGAP (gd->baudrate);
  77. } else {
  78. hang ();
  79. }
  80. /* setup port mode */
  81. serial_reg_ch1->ctrl_b = serial_reg_ch2->ctrl_b =
  82. ( NETARM_SER_CTLB_RCGT_EN |
  83. NETARM_SER_CTLB_UART_MODE);
  84. serial_reg_ch1->ctrl_a = serial_reg_ch2->ctrl_a =
  85. ( NETARM_SER_CTLA_ENABLE |
  86. NETARM_SER_CTLA_P_NONE |
  87. /* see errata */
  88. NETARM_SER_CTLA_2STOP |
  89. NETARM_SER_CTLA_8BITS |
  90. NETARM_SER_CTLA_DTR_EN |
  91. NETARM_SER_CTLA_RTS_EN);
  92. }
  93. /*
  94. * Initialise the serial port with the given baudrate. The settings
  95. * are always 8 data bits, no parity, 1 stop bit, no start bits.
  96. */
  97. int serial_init (void)
  98. {
  99. serial_setbrg ();
  100. return 0;
  101. }
  102. /*
  103. * Output a single byte to the serial port.
  104. */
  105. void serial_putc (const char c)
  106. {
  107. volatile unsigned char *fifo;
  108. /* If \n, also do \r */
  109. if (c == '\n')
  110. serial_putc ('\r');
  111. fifo = (volatile unsigned char *) &(serial_reg_ch1->fifo);
  112. TXWAITRDY (serial_reg_ch1);
  113. *fifo = c;
  114. }
  115. /*
  116. * Test of a single byte from the serial port. Returns 1 on success, 0
  117. * otherwise.
  118. */
  119. int serial_tstc(void)
  120. {
  121. return serial_reg_ch1->status_a & NETARM_SER_STATA_RX_RDY;
  122. }
  123. /*
  124. * Read a single byte from the serial port. Returns 1 on success, 0
  125. * otherwise.
  126. */
  127. int serial_getc (void)
  128. {
  129. unsigned int ch_uint;
  130. volatile unsigned int *fifo;
  131. volatile unsigned char *fifo_char = NULL;
  132. int buf_count = 0;
  133. while (!(serial_reg_ch1->status_a & NETARM_SER_STATA_RX_RDY))
  134. /* NOP */ ;
  135. fifo = (volatile unsigned int *) &(serial_reg_ch1->fifo);
  136. fifo_char = (unsigned char *) &ch_uint;
  137. ch_uint = *fifo;
  138. buf_count = NETARM_SER_STATA_RXFDB (serial_reg_ch1->status_a);
  139. switch (buf_count) {
  140. case NETARM_SER_STATA_RXFDB_4BYTES:
  141. buf_count = 4;
  142. break;
  143. case NETARM_SER_STATA_RXFDB_3BYTES:
  144. buf_count = 3;
  145. break;
  146. case NETARM_SER_STATA_RXFDB_2BYTES:
  147. buf_count = 2;
  148. break;
  149. case NETARM_SER_STATA_RXFDB_1BYTES:
  150. buf_count = 1;
  151. break;
  152. default:
  153. /* panic, be never here */
  154. break;
  155. }
  156. serial_reg_ch1->status_a |= NETARM_SER_STATA_RX_CLOSED;
  157. return ch_uint & 0xff;
  158. }
  159. void serial_puts (const char *s)
  160. {
  161. while (*s) {
  162. serial_putc (*s++);
  163. }
  164. }