serial_xuartlite.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. #ifdef CONFIG_MICROBLAZE
  26. #include <asm/serial_xuartlite.h>
  27. /* FIXME: we should convert these to in32 and out32 */
  28. #define IO_WORD(offset) (*(volatile unsigned long *)(offset))
  29. #define IO_SERIAL(offset) IO_WORD(CONFIG_SERIAL_BASE + (offset))
  30. #define IO_SERIAL_RX_FIFO IO_SERIAL(XUL_RX_FIFO_OFFSET)
  31. #define IO_SERIAL_TX_FIFO IO_SERIAL(XUL_TX_FIFO_OFFSET)
  32. #define IO_SERIAL_STATUS IO_SERIAL(XUL_STATUS_REG_OFFSET)
  33. #define IO_SERIAL_CONTROL IO_SERIAL(XUL_CONTROL_REG_OFFSET)
  34. int serial_init(void)
  35. {
  36. /* FIXME: Nothing for now. We should initialize fifo, etc */
  37. return 0;
  38. }
  39. void serial_setbrg(void)
  40. {
  41. /* FIXME: what's this for? */
  42. }
  43. void serial_putc(const char c)
  44. {
  45. if (c == '\n') serial_putc('\r');
  46. while (IO_SERIAL_STATUS & XUL_SR_TX_FIFO_FULL);
  47. IO_SERIAL_TX_FIFO = (unsigned char) (c & 0xff);
  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. }
  64. #endif /* CONFIG_MICROBLZE */