1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2009 SAMSUNG Electronics
4 * Minkyu Kang <mk7.kang@samsung.com>
5 * Heungjun Kim <riverful.kim@samsung.com>
7 * based on drivers/serial/s3c64xx.c
14 #include <linux/compiler.h>
16 #include <asm/arch/clk.h>
17 #include <asm/arch/uart.h>
21 DECLARE_GLOBAL_DATA_PTR;
23 #define RX_FIFO_COUNT_SHIFT 0
24 #define RX_FIFO_COUNT_MASK (0xff << RX_FIFO_COUNT_SHIFT)
25 #define RX_FIFO_FULL (1 << 8)
26 #define TX_FIFO_COUNT_SHIFT 16
27 #define TX_FIFO_COUNT_MASK (0xff << TX_FIFO_COUNT_SHIFT)
28 #define TX_FIFO_FULL (1 << 24)
30 /* Information about a serial port */
31 struct s5p_serial_platdata {
32 struct s5p_uart *reg; /* address of registers in physical memory */
33 u8 port_id; /* uart port number */
37 * The coefficient, used to calculate the baudrate on S5P UARTs is
39 * C = UBRDIV * 16 + number_of_set_bits_in_UDIVSLOT
40 * however, section 31.6.11 of the datasheet doesn't recomment using 1 for 1,
41 * 3 for 2, ... (2^n - 1) for n, instead, they suggest using these constants:
43 static const int udivslot[] = {
62 static void __maybe_unused s5p_serial_init(struct s5p_uart *uart)
64 /* enable FIFOs, auto clear Rx FIFO */
65 writel(0x3, &uart->ufcon);
66 writel(0, &uart->umcon);
68 writel(0x3, &uart->ulcon);
69 /* No interrupts, no DMA, pure polling */
70 writel(0x245, &uart->ucon);
73 static void __maybe_unused s5p_serial_baud(struct s5p_uart *uart, uint uclk,
78 val = uclk / baudrate;
80 writel(val / 16 - 1, &uart->ubrdiv);
82 if (s5p_uart_divslot())
83 writew(udivslot[val % 16], &uart->rest.slot);
85 writeb(val % 16, &uart->rest.value);
88 #ifndef CONFIG_SPL_BUILD
89 int s5p_serial_setbrg(struct udevice *dev, int baudrate)
91 struct s5p_serial_platdata *plat = dev->platdata;
92 struct s5p_uart *const uart = plat->reg;
95 #ifdef CONFIG_CLK_EXYNOS
99 ret = clk_get_by_index(dev, 1, &clk);
102 uclk = clk_get_rate(&clk);
104 uclk = get_uart_clk(plat->port_id);
107 s5p_serial_baud(uart, uclk, baudrate);
112 static int s5p_serial_probe(struct udevice *dev)
114 struct s5p_serial_platdata *plat = dev->platdata;
115 struct s5p_uart *const uart = plat->reg;
117 s5p_serial_init(uart);
122 static int serial_err_check(const struct s5p_uart *const uart, int op)
129 * Frame Err [2] : receive operation
130 * Parity Err [1] : receive operation
131 * Overrun Err [0] : receive operation
138 return readl(&uart->uerstat) & mask;
141 static int s5p_serial_getc(struct udevice *dev)
143 struct s5p_serial_platdata *plat = dev->platdata;
144 struct s5p_uart *const uart = plat->reg;
146 if (!(readl(&uart->ufstat) & RX_FIFO_COUNT_MASK))
149 serial_err_check(uart, 0);
150 return (int)(readb(&uart->urxh) & 0xff);
153 static int s5p_serial_putc(struct udevice *dev, const char ch)
155 struct s5p_serial_platdata *plat = dev->platdata;
156 struct s5p_uart *const uart = plat->reg;
158 if (readl(&uart->ufstat) & TX_FIFO_FULL)
161 writeb(ch, &uart->utxh);
162 serial_err_check(uart, 1);
167 static int s5p_serial_pending(struct udevice *dev, bool input)
169 struct s5p_serial_platdata *plat = dev->platdata;
170 struct s5p_uart *const uart = plat->reg;
171 uint32_t ufstat = readl(&uart->ufstat);
174 return (ufstat & RX_FIFO_COUNT_MASK) >> RX_FIFO_COUNT_SHIFT;
176 return (ufstat & TX_FIFO_COUNT_MASK) >> TX_FIFO_COUNT_SHIFT;
179 static int s5p_serial_ofdata_to_platdata(struct udevice *dev)
181 struct s5p_serial_platdata *plat = dev->platdata;
184 addr = devfdt_get_addr(dev);
185 if (addr == FDT_ADDR_T_NONE)
188 plat->reg = (struct s5p_uart *)addr;
189 plat->port_id = fdtdec_get_int(gd->fdt_blob, dev_of_offset(dev),
194 static const struct dm_serial_ops s5p_serial_ops = {
195 .putc = s5p_serial_putc,
196 .pending = s5p_serial_pending,
197 .getc = s5p_serial_getc,
198 .setbrg = s5p_serial_setbrg,
201 static const struct udevice_id s5p_serial_ids[] = {
202 { .compatible = "samsung,exynos4210-uart" },
206 U_BOOT_DRIVER(serial_s5p) = {
207 .name = "serial_s5p",
209 .of_match = s5p_serial_ids,
210 .ofdata_to_platdata = s5p_serial_ofdata_to_platdata,
211 .platdata_auto_alloc_size = sizeof(struct s5p_serial_platdata),
212 .probe = s5p_serial_probe,
213 .ops = &s5p_serial_ops,
217 #ifdef CONFIG_DEBUG_UART_S5P
219 #include <debug_uart.h>
221 static inline void _debug_uart_init(void)
223 struct s5p_uart *uart = (struct s5p_uart *)CONFIG_DEBUG_UART_BASE;
225 s5p_serial_init(uart);
226 s5p_serial_baud(uart, CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE);
229 static inline void _debug_uart_putc(int ch)
231 struct s5p_uart *uart = (struct s5p_uart *)CONFIG_DEBUG_UART_BASE;
233 while (readl(&uart->ufstat) & TX_FIFO_FULL);
235 writeb(ch, &uart->utxh);