serial_sa1100.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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 <SA-1100.h>
  32. #include <serial.h>
  33. #include <linux/compiler.h>
  34. DECLARE_GLOBAL_DATA_PTR;
  35. static void sa1100_serial_setbrg(void)
  36. {
  37. unsigned int reg = 0;
  38. if (gd->baudrate == 1200)
  39. reg = 191;
  40. else if (gd->baudrate == 9600)
  41. reg = 23;
  42. else if (gd->baudrate == 19200)
  43. reg = 11;
  44. else if (gd->baudrate == 38400)
  45. reg = 5;
  46. else if (gd->baudrate == 57600)
  47. reg = 3;
  48. else if (gd->baudrate == 115200)
  49. reg = 1;
  50. else
  51. hang ();
  52. #ifdef CONFIG_SERIAL1
  53. /* SA1110 uart function */
  54. Ser1SDCR0 |= SDCR0_SUS;
  55. /* Wait until port is ready ... */
  56. while(Ser1UTSR1 & UTSR1_TBY) {}
  57. /* init serial serial 1 */
  58. Ser1UTCR3 = 0x00;
  59. Ser1UTSR0 = 0xff;
  60. Ser1UTCR0 = ( UTCR0_1StpBit | UTCR0_8BitData );
  61. Ser1UTCR1 = 0;
  62. Ser1UTCR2 = (u32)reg;
  63. Ser1UTCR3 = ( UTCR3_RXE | UTCR3_TXE );
  64. #elif defined(CONFIG_SERIAL3)
  65. /* Wait until port is ready ... */
  66. while (Ser3UTSR1 & UTSR1_TBY) {
  67. }
  68. /* init serial serial 3 */
  69. Ser3UTCR3 = 0x00;
  70. Ser3UTSR0 = 0xff;
  71. Ser3UTCR0 = (UTCR0_1StpBit | UTCR0_8BitData);
  72. Ser3UTCR1 = 0;
  73. Ser3UTCR2 = (u32) reg;
  74. Ser3UTCR3 = (UTCR3_RXE | UTCR3_TXE);
  75. #else
  76. #error "Bad: you didn't configured serial ..."
  77. #endif
  78. }
  79. /*
  80. * Initialise the serial port with the given baudrate. The settings
  81. * are always 8 data bits, no parity, 1 stop bit, no start bits.
  82. *
  83. */
  84. static int sa1100_serial_init(void)
  85. {
  86. serial_setbrg ();
  87. return (0);
  88. }
  89. /*
  90. * Output a single byte to the serial port.
  91. */
  92. static void sa1100_serial_putc(const char c)
  93. {
  94. #ifdef CONFIG_SERIAL1
  95. /* wait for room in the tx FIFO on SERIAL1 */
  96. while ((Ser1UTSR0 & UTSR0_TFS) == 0);
  97. Ser1UTDR = c;
  98. #elif defined(CONFIG_SERIAL3)
  99. /* wait for room in the tx FIFO on SERIAL3 */
  100. while ((Ser3UTSR0 & UTSR0_TFS) == 0);
  101. Ser3UTDR = c;
  102. #endif
  103. /* If \n, also do \r */
  104. if (c == '\n')
  105. serial_putc ('\r');
  106. }
  107. /*
  108. * Read a single byte from the serial port. Returns 1 on success, 0
  109. * otherwise. When the function is succesfull, the character read is
  110. * written into its argument c.
  111. */
  112. static int sa1100_serial_tstc(void)
  113. {
  114. #ifdef CONFIG_SERIAL1
  115. return Ser1UTSR1 & UTSR1_RNE;
  116. #elif defined(CONFIG_SERIAL3)
  117. return Ser3UTSR1 & UTSR1_RNE;
  118. #endif
  119. }
  120. /*
  121. * Read a single byte from the serial port. Returns 1 on success, 0
  122. * otherwise. When the function is succesfull, the character read is
  123. * written into its argument c.
  124. */
  125. static int sa1100_serial_getc(void)
  126. {
  127. #ifdef CONFIG_SERIAL1
  128. while (!(Ser1UTSR1 & UTSR1_RNE));
  129. return (char) Ser1UTDR & 0xff;
  130. #elif defined(CONFIG_SERIAL3)
  131. while (!(Ser3UTSR1 & UTSR1_RNE));
  132. return (char) Ser3UTDR & 0xff;
  133. #endif
  134. }
  135. static struct serial_device sa1100_serial_drv = {
  136. .name = "sa1100_serial",
  137. .start = sa1100_serial_init,
  138. .stop = NULL,
  139. .setbrg = sa1100_serial_setbrg,
  140. .putc = sa1100_serial_putc,
  141. .puts = default_serial_puts,
  142. .getc = sa1100_serial_getc,
  143. .tstc = sa1100_serial_tstc,
  144. };
  145. void sa1100_serial_initialize(void)
  146. {
  147. serial_register(&sa1100_serial_drv);
  148. }
  149. __weak struct serial_device *default_serial_console(void)
  150. {
  151. return &sa1100_serial_drv;
  152. }