serial_ixp.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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 <asm/arch/ixp425.h>
  32. #include <watchdog.h>
  33. #include <serial.h>
  34. #include <linux/compiler.h>
  35. /*
  36. * 14.7456 MHz
  37. * Baud Rate = --------------
  38. * 16 x Divisor
  39. */
  40. #define SERIAL_CLOCK 921600
  41. DECLARE_GLOBAL_DATA_PTR;
  42. static void ixp_serial_setbrg(void)
  43. {
  44. unsigned int quot = 0;
  45. int uart = CONFIG_SYS_IXP425_CONSOLE;
  46. if ((gd->baudrate <= SERIAL_CLOCK) && (SERIAL_CLOCK % gd->baudrate == 0))
  47. quot = SERIAL_CLOCK / gd->baudrate;
  48. else
  49. hang ();
  50. IER(uart) = 0; /* Disable for now */
  51. FCR(uart) = 0; /* No fifos enabled */
  52. /* set baud rate */
  53. LCR(uart) = LCR_WLS0 | LCR_WLS1 | LCR_DLAB;
  54. DLL(uart) = quot & 0xff;
  55. DLH(uart) = quot >> 8;
  56. LCR(uart) = LCR_WLS0 | LCR_WLS1;
  57. #ifdef CONFIG_SERIAL_RTS_ACTIVE
  58. MCR(uart) = MCR_RTS; /* set RTS active */
  59. #else
  60. MCR(uart) = 0; /* set RTS inactive */
  61. #endif
  62. IER(uart) = IER_UUE;
  63. }
  64. /*
  65. * Initialise the serial port with the given baudrate. The settings
  66. * are always 8 data bits, no parity, 1 stop bit, no start bits.
  67. *
  68. */
  69. static int ixp_serial_init(void)
  70. {
  71. serial_setbrg ();
  72. return (0);
  73. }
  74. /*
  75. * Output a single byte to the serial port.
  76. */
  77. static void ixp_serial_putc(const char c)
  78. {
  79. /* wait for room in the tx FIFO on UART */
  80. while ((LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_TEMT) == 0)
  81. WATCHDOG_RESET(); /* Reset HW Watchdog, if needed */
  82. THR(CONFIG_SYS_IXP425_CONSOLE) = c;
  83. /* If \n, also do \r */
  84. if (c == '\n')
  85. serial_putc ('\r');
  86. }
  87. /*
  88. * Read a single byte from the serial port. Returns 1 on success, 0
  89. * otherwise. When the function is succesfull, the character read is
  90. * written into its argument c.
  91. */
  92. static int ixp_serial_tstc(void)
  93. {
  94. return LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_DR;
  95. }
  96. /*
  97. * Read a single byte from the serial port. Returns 1 on success, 0
  98. * otherwise. When the function is succesfull, the character read is
  99. * written into its argument c.
  100. */
  101. static int ixp_serial_getc(void)
  102. {
  103. while (!(LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_DR))
  104. WATCHDOG_RESET(); /* Reset HW Watchdog, if needed */
  105. return (char) RBR(CONFIG_SYS_IXP425_CONSOLE) & 0xff;
  106. }
  107. static struct serial_device ixp_serial_drv = {
  108. .name = "ixp_serial",
  109. .start = ixp_serial_init,
  110. .stop = NULL,
  111. .setbrg = ixp_serial_setbrg,
  112. .putc = ixp_serial_putc,
  113. .puts = default_serial_puts,
  114. .getc = ixp_serial_getc,
  115. .tstc = ixp_serial_tstc,
  116. };
  117. void ixp_serial_initialize(void)
  118. {
  119. serial_register(&ixp_serial_drv);
  120. }
  121. __weak struct serial_device *default_serial_console(void)
  122. {
  123. return &ixp_serial_drv;
  124. }