vct.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. * (C) Copyright 2008 Stefan Roese <sr@denx.de>, DENX Software Engineering
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of
  7. * the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  17. * MA 02111-1307 USA
  18. */
  19. #include <config.h>
  20. #include <common.h>
  21. #include <asm/io.h>
  22. #ifdef CONFIG_VCT_PLATINUMAVC
  23. #define UART_1_BASE 0xBDC30000
  24. #else
  25. #define UART_1_BASE 0xBF89C000
  26. #endif
  27. #define UART_RBR_OFF 0x00 /* receiver buffer reg */
  28. #define UART_THR_OFF 0x00 /* transmit holding reg */
  29. #define UART_DLL_OFF 0x00 /* divisor latch low reg */
  30. #define UART_IER_OFF 0x04 /* interrupt enable reg */
  31. #define UART_DLH_OFF 0x04 /* receiver buffer reg */
  32. #define UART_FCR_OFF 0x08 /* fifo control register */
  33. #define UART_LCR_OFF 0x0c /* line control register */
  34. #define UART_MCR_OFF 0x10 /* modem control register */
  35. #define UART_LSR_OFF 0x14 /* line status register */
  36. #define UART_MSR_OFF 0x18 /* modem status register */
  37. #define UART_SCR_OFF 0x1c /* scratch pad register */
  38. #define UART_RCV_DATA_RDY 0x01 /* Data Received */
  39. #define UART_XMT_HOLD_EMPTY 0x20
  40. #define UART_TRANSMIT_EMPTY 0x40
  41. /* 7 bit on line control reg. enalbing rw to dll and dlh */
  42. #define UART_LCR_DLAB 0x0080
  43. #define UART___9600_BDR 0x84
  44. #define UART__19200_BDR 0x42
  45. #define UART_115200_BDR 0x08
  46. #define UART_DIS_ALL_INTER 0x00 /* disable all interrupts */
  47. #define UART_5DATA_BITS 0x0000 /* 5 [bits] 1.5 bits 2 */
  48. #define UART_6DATA_BITS 0x0001 /* 6 [bits] 1 bits 2 */
  49. #define UART_7DATA_BITS 0x0002 /* 7 [bits] 1 bits 2 */
  50. #define UART_8DATA_BITS 0x0003 /* 8 [bits] 1 bits 2 */
  51. static void vct_uart_set_baud_rate(u32 address, u32 dh, u32 dl)
  52. {
  53. u32 val = __raw_readl(UART_1_BASE + UART_LCR_OFF);
  54. /* set 7 bit on 1 */
  55. val |= UART_LCR_DLAB;
  56. __raw_writel(val, UART_1_BASE + UART_LCR_OFF);
  57. __raw_writel(dl, UART_1_BASE + UART_DLL_OFF);
  58. __raw_writel(dh, UART_1_BASE + UART_DLH_OFF);
  59. /* set 7 bit on 0 */
  60. val &= ~UART_LCR_DLAB;
  61. __raw_writel(val, UART_1_BASE + UART_LCR_OFF);
  62. return;
  63. }
  64. int serial_init(void)
  65. {
  66. __raw_writel(UART_DIS_ALL_INTER, UART_1_BASE + UART_IER_OFF);
  67. vct_uart_set_baud_rate(UART_1_BASE, 0, UART_115200_BDR);
  68. __raw_writel(UART_8DATA_BITS, UART_1_BASE + UART_LCR_OFF);
  69. return 0;
  70. }
  71. void serial_setbrg(void)
  72. {
  73. /*
  74. * Baudrate change not supported currently, fixed to 115200 baud
  75. */
  76. }
  77. void serial_putc(const char c)
  78. {
  79. if (c == '\n')
  80. serial_putc('\r');
  81. while (!(UART_XMT_HOLD_EMPTY & __raw_readl(UART_1_BASE + UART_LSR_OFF)))
  82. ;
  83. __raw_writel(c, UART_1_BASE + UART_THR_OFF);
  84. }
  85. void serial_puts(const char *s)
  86. {
  87. while (*s)
  88. serial_putc(*s++);
  89. }
  90. int serial_getc(void)
  91. {
  92. while (!(UART_RCV_DATA_RDY & __raw_readl(UART_1_BASE + UART_LSR_OFF)))
  93. ;
  94. return __raw_readl(UART_1_BASE + UART_RBR_OFF) & 0xff;
  95. }
  96. int serial_tstc(void)
  97. {
  98. if (!(UART_RCV_DATA_RDY & __raw_readl(UART_1_BASE + UART_LSR_OFF)))
  99. return 0;
  100. return 1;
  101. }