serial_xuartlite.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * (C) Copyright 2004 Atmark Techno, Inc.
  3. *
  4. * Yasushi SHOJI <yashi@atmark-techno.com>
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. #include <config.h>
  25. #include <asm/serial_xuartlite.h>
  26. /* FIXME: we should convert these to in32 and out32 */
  27. #define IO_WORD(offset) (*(volatile unsigned long *)(offset))
  28. #define IO_SERIAL(offset) IO_WORD(CONFIG_SERIAL_BASE + (offset))
  29. #define IO_SERIAL_RX_FIFO IO_SERIAL(XUL_RX_FIFO_OFFSET)
  30. #define IO_SERIAL_TX_FIFO IO_SERIAL(XUL_TX_FIFO_OFFSET)
  31. #define IO_SERIAL_STATUS IO_SERIAL(XUL_STATUS_REG_OFFSET)
  32. #define IO_SERIAL_CONTROL IO_SERIAL(XUL_CONTROL_REG_OFFSET)
  33. int serial_init(void)
  34. {
  35. /* FIXME: Nothing for now. We should initialize fifo, etc */
  36. return 0;
  37. }
  38. void serial_setbrg(void)
  39. {
  40. /* FIXME: what's this for? */
  41. }
  42. void serial_putc(const char c)
  43. {
  44. if (c == '\n') serial_putc('\r');
  45. while (IO_SERIAL_STATUS & XUL_SR_TX_FIFO_FULL);
  46. IO_SERIAL_TX_FIFO = (unsigned char) (c & 0xff);
  47. return 0;
  48. }
  49. void serial_puts(const char * s)
  50. {
  51. while (*s) {
  52. serial_putc(*s++);
  53. }
  54. }
  55. int serial_getc(void)
  56. {
  57. while (!(IO_SERIAL_STATUS & XUL_SR_RX_FIFO_VALID_DATA));
  58. return IO_SERIAL_RX_FIFO & 0xff;
  59. }
  60. int serial_tstc(void)
  61. {
  62. return (IO_SERIAL_STATUS & XUL_SR_RX_FIFO_VALID_DATA);
  63. }