3 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
6 * Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <asm/arch/s3c6400.h>
28 DECLARE_GLOBAL_DATA_PTR;
31 #define UART_NR S3C64XX_UART0
33 #elif defined(CONFIG_SERIAL2)
34 #define UART_NR S3C64XX_UART1
36 #elif defined(CONFIG_SERIAL3)
37 #define UART_NR S3C64XX_UART2
40 #error "Bad: you didn't configure serial ..."
44 * The coefficient, used to calculate the baudrate on S3C6400 UARTs is
46 * C = UBRDIV * 16 + number_of_set_bits_in_UDIVSLOT
47 * however, section 31.6.11 of the datasheet doesn't recomment using 1 for 1,
48 * 3 for 2, ... (2^n - 1) for n, instead, they suggest using these constants:
50 static const int udivslot[] = {
69 static void s3c64xx_serial_setbrg(void)
71 s3c64xx_uart *const uart = s3c64xx_get_base_uart(UART_NR);
72 u32 pclk = get_PCLK();
73 u32 baudrate = gd->baudrate;
76 i = (pclk / baudrate) % 16;
78 uart->UBRDIV = pclk / baudrate / 16 - 1;
79 uart->UDIVSLOT = udivslot[i];
81 for (i = 0; i < 100; i++)
86 * Initialise the serial port with the given baudrate. The settings
87 * are always 8 data bits, no parity, 1 stop bit, no start bits.
89 static int s3c64xx_serial_init(void)
91 s3c64xx_uart *const uart = s3c64xx_get_base_uart(UART_NR);
93 /* reset and enable FIFOs, set triggers to the maximum */
98 /* No interrupts, no DMA, pure polling */
107 * Read a single byte from the serial port. Returns 1 on success, 0
108 * otherwise. When the function is succesfull, the character read is
109 * written into its argument c.
111 static int s3c64xx_serial_getc(void)
113 s3c64xx_uart *const uart = s3c64xx_get_base_uart(UART_NR);
115 /* wait for character to arrive */
116 while (!(uart->UTRSTAT & 0x1));
118 return uart->URXH & 0xff;
121 #ifdef CONFIG_MODEM_SUPPORT
123 void disable_putc(void)
128 void enable_putc(void)
136 * Output a single byte to the serial port.
138 static void s3c64xx_serial_putc(const char c)
140 s3c64xx_uart *const uart = s3c64xx_get_base_uart(UART_NR);
142 #ifdef CONFIG_MODEM_SUPPORT
147 /* wait for room in the tx FIFO */
148 while (!(uart->UTRSTAT & 0x2));
152 /* If \n, also do \r */
158 * Test whether a character is in the RX buffer
160 static int s3c64xx_serial_tstc(void)
162 s3c64xx_uart *const uart = s3c64xx_get_base_uart(UART_NR);
164 return uart->UTRSTAT & 0x1;
167 static struct serial_device s3c64xx_serial_drv = {
168 .name = "s3c64xx_serial",
169 .start = s3c64xx_serial_init,
171 .setbrg = s3c64xx_serial_setbrg,
172 .putc = s3c64xx_serial_putc,
173 .puts = default_serial_puts,
174 .getc = s3c64xx_serial_getc,
175 .tstc = s3c64xx_serial_tstc,
178 void s3c64xx_serial_initialize(void)
180 serial_register(&s3c64xx_serial_drv);
183 __weak struct serial_device *default_serial_console(void)
185 return &s3c64xx_serial_drv;