serial_clps7111.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /*
  2. * (C) Copyright 2002-2004
  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 <clps7111.h>
  32. DECLARE_GLOBAL_DATA_PTR;
  33. void serial_setbrg (void)
  34. {
  35. unsigned int reg = 0;
  36. switch (gd->baudrate) {
  37. case 1200: reg = 191; break;
  38. case 9600: reg = 23; break;
  39. case 19200: reg = 11; break;
  40. case 38400: reg = 5; break;
  41. case 57600: reg = 3; break;
  42. case 115200: reg = 1; break;
  43. default: hang (); break;
  44. }
  45. /* init serial serial 1,2 */
  46. IO_SYSCON1 = SYSCON1_UART1EN;
  47. IO_SYSCON2 = SYSCON2_UART2EN;
  48. reg |= UBRLCR_WRDLEN8;
  49. IO_UBRLCR1 = reg;
  50. IO_UBRLCR2 = reg;
  51. }
  52. /*
  53. * Initialise the serial port with the given baudrate. The settings
  54. * are always 8 data bits, no parity, 1 stop bit, no start bits.
  55. *
  56. */
  57. int serial_init (void)
  58. {
  59. serial_setbrg ();
  60. return (0);
  61. }
  62. /*
  63. * Output a single byte to the serial port.
  64. */
  65. void serial_putc (const char c)
  66. {
  67. int tmo;
  68. /* If \n, also do \r */
  69. if (c == '\n')
  70. serial_putc ('\r');
  71. tmo = get_timer (0) + 1 * CONFIG_SYS_HZ;
  72. while (IO_SYSFLG1 & SYSFLG1_UTXFF)
  73. if (get_timer (0) > tmo)
  74. break;
  75. IO_UARTDR1 = c;
  76. }
  77. /*
  78. * Read a single byte from the serial port. Returns 1 on success, 0
  79. * otherwise. When the function is succesfull, the character read is
  80. * written into its argument c.
  81. */
  82. int serial_tstc (void)
  83. {
  84. return !(IO_SYSFLG1 & SYSFLG1_URXFE);
  85. }
  86. /*
  87. * Read a single byte from the serial port. Returns 1 on success, 0
  88. * otherwise. When the function is succesfull, the character read is
  89. * written into its argument c.
  90. */
  91. int serial_getc (void)
  92. {
  93. while (IO_SYSFLG1 & SYSFLG1_URXFE);
  94. return IO_UARTDR1 & 0xff;
  95. }
  96. void
  97. serial_puts (const char *s)
  98. {
  99. while (*s) {
  100. serial_putc (*s++);
  101. }
  102. }