1 // SPDX-License-Identifier: GPL-2.0+
4 * Rob Taylor, Flying Pig Systems. robt@flyingpig.com.
8 * Philippe Robin, <philippe.robin@arm.com>
11 /* Simple U-Boot driver for the PrimeCell PL010/PL011 UARTs */
14 #include <asm/global_data.h>
15 /* For get_bus_freq() */
16 #include <clock_legacy.h>
23 #include <dm/device_compat.h>
24 #include <dm/platform_data/serial_pl01x.h>
25 #include <linux/compiler.h>
26 #include "serial_pl01x_internal.h"
28 DECLARE_GLOBAL_DATA_PTR;
30 #ifndef CONFIG_DM_SERIAL
32 static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS;
33 static enum pl01x_type pl01x_type __attribute__ ((section(".data")));
34 static struct pl01x_regs *base_regs __attribute__ ((section(".data")));
35 #define NUM_PORTS (sizeof(port)/sizeof(port[0]))
39 static int pl01x_putc(struct pl01x_regs *regs, char c)
41 /* Wait until there is space in the FIFO */
42 if (readl(®s->fr) & UART_PL01x_FR_TXFF)
45 /* Send the character */
51 static int pl01x_getc(struct pl01x_regs *regs)
55 /* Wait until there is data in the FIFO */
56 if (readl(®s->fr) & UART_PL01x_FR_RXFE)
59 data = readl(®s->dr);
61 /* Check for an error flag */
62 if (data & 0xFFFFFF00) {
64 writel(0xFFFFFFFF, ®s->ecr);
71 static int pl01x_tstc(struct pl01x_regs *regs)
74 return !(readl(®s->fr) & UART_PL01x_FR_RXFE);
77 static int pl01x_generic_serial_init(struct pl01x_regs *regs,
82 /* disable everything */
83 writel(0, ®s->pl010_cr);
86 /* disable everything */
87 writel(0, ®s->pl011_cr);
96 static int pl011_set_line_control(struct pl01x_regs *regs)
100 * Internal update of baud rate register require line
101 * control register write
103 lcr = UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN;
104 writel(lcr, ®s->pl011_lcrh);
108 static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
109 int clock, int baudrate)
113 unsigned int divisor;
115 /* disable everything */
116 writel(0, ®s->pl010_cr);
120 divisor = UART_PL010_BAUD_9600;
123 divisor = UART_PL010_BAUD_19200;
126 divisor = UART_PL010_BAUD_38400;
129 divisor = UART_PL010_BAUD_57600;
132 divisor = UART_PL010_BAUD_115200;
135 divisor = UART_PL010_BAUD_38400;
138 writel((divisor & 0xf00) >> 8, ®s->pl010_lcrm);
139 writel(divisor & 0xff, ®s->pl010_lcrl);
142 * Set line control for the PL010 to be 8 bits, 1 stop bit,
143 * no parity, fifo enabled
145 writel(UART_PL010_LCRH_WLEN_8 | UART_PL010_LCRH_FEN,
147 /* Finally, enable the UART */
148 writel(UART_PL010_CR_UARTEN, ®s->pl010_cr);
153 unsigned int divider;
154 unsigned int remainder;
155 unsigned int fraction;
157 /* Without a valid clock rate we cannot set up the baudrate. */
162 * IBRD = UART_CLK / (16 * BAUD_RATE)
163 * FBRD = RND((64 * MOD(UART_CLK,(16 * BAUD_RATE)))
164 * / (16 * BAUD_RATE))
166 temp = 16 * baudrate;
167 divider = clock / temp;
168 remainder = clock % temp;
169 temp = (8 * remainder) / baudrate;
170 fraction = (temp >> 1) + (temp & 1);
172 writel(divider, ®s->pl011_ibrd);
173 writel(fraction, ®s->pl011_fbrd);
176 pl011_set_line_control(regs);
177 /* Finally, enable the UART */
178 writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE |
179 UART_PL011_CR_RXE | UART_PL011_CR_RTS, ®s->pl011_cr);
189 #ifndef CONFIG_DM_SERIAL
190 static void pl01x_serial_init_baud(int baudrate)
194 #if defined(CONFIG_PL010_SERIAL)
195 pl01x_type = TYPE_PL010;
196 #elif defined(CONFIG_PL011_SERIAL)
197 pl01x_type = TYPE_PL011;
198 clock = CONFIG_PL011_CLOCK;
200 base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX];
202 pl01x_generic_serial_init(base_regs, pl01x_type);
203 pl01x_generic_setbrg(base_regs, pl01x_type, clock, baudrate);
207 * Integrator AP has two UARTs, we use the first one, at 38400-8-N-1
208 * Integrator CP has two UARTs, use the first one, at 38400-8-N-1
209 * Versatile PB has four UARTs.
211 int pl01x_serial_init(void)
213 pl01x_serial_init_baud(CONFIG_BAUDRATE);
218 static void pl01x_serial_putc(const char c)
221 while (pl01x_putc(base_regs, '\r') == -EAGAIN);
223 while (pl01x_putc(base_regs, c) == -EAGAIN);
226 static int pl01x_serial_getc(void)
229 int ch = pl01x_getc(base_regs);
240 static int pl01x_serial_tstc(void)
242 return pl01x_tstc(base_regs);
245 static void pl01x_serial_setbrg(void)
248 * Flush FIFO and wait for non-busy before changing baudrate to avoid
251 while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE))
253 while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY)
255 pl01x_serial_init_baud(gd->baudrate);
258 static struct serial_device pl01x_serial_drv = {
259 .name = "pl01x_serial",
260 .start = pl01x_serial_init,
262 .setbrg = pl01x_serial_setbrg,
263 .putc = pl01x_serial_putc,
264 .puts = default_serial_puts,
265 .getc = pl01x_serial_getc,
266 .tstc = pl01x_serial_tstc,
269 void pl01x_serial_initialize(void)
271 serial_register(&pl01x_serial_drv);
274 __weak struct serial_device *default_serial_console(void)
276 return &pl01x_serial_drv;
279 #endif /* nCONFIG_DM_SERIAL */
281 #ifdef CONFIG_DM_SERIAL
283 int pl01x_serial_setbrg(struct udevice *dev, int baudrate)
285 struct pl01x_serial_plat *plat = dev_get_plat(dev);
286 struct pl01x_priv *priv = dev_get_priv(dev);
288 if (!plat->skip_init) {
289 pl01x_generic_setbrg(priv->regs, priv->type, plat->clock,
296 int pl01x_serial_probe(struct udevice *dev)
298 struct pl01x_serial_plat *plat = dev_get_plat(dev);
299 struct pl01x_priv *priv = dev_get_priv(dev);
301 priv->regs = (struct pl01x_regs *)plat->base;
302 priv->type = plat->type;
303 if (!plat->skip_init)
304 return pl01x_generic_serial_init(priv->regs, priv->type);
309 int pl01x_serial_getc(struct udevice *dev)
311 struct pl01x_priv *priv = dev_get_priv(dev);
313 return pl01x_getc(priv->regs);
316 int pl01x_serial_putc(struct udevice *dev, const char ch)
318 struct pl01x_priv *priv = dev_get_priv(dev);
320 return pl01x_putc(priv->regs, ch);
323 int pl01x_serial_pending(struct udevice *dev, bool input)
325 struct pl01x_priv *priv = dev_get_priv(dev);
326 unsigned int fr = readl(&priv->regs->fr);
329 return pl01x_tstc(priv->regs);
331 return fr & UART_PL01x_FR_TXFF ? 0 : 1;
334 static const struct dm_serial_ops pl01x_serial_ops = {
335 .putc = pl01x_serial_putc,
336 .pending = pl01x_serial_pending,
337 .getc = pl01x_serial_getc,
338 .setbrg = pl01x_serial_setbrg,
341 #if CONFIG_IS_ENABLED(OF_CONTROL)
342 static const struct udevice_id pl01x_serial_id[] ={
343 {.compatible = "arm,pl011", .data = TYPE_PL011},
344 {.compatible = "arm,pl010", .data = TYPE_PL010},
348 #ifndef CONFIG_PL011_CLOCK
349 #define CONFIG_PL011_CLOCK 0
352 int pl01x_serial_of_to_plat(struct udevice *dev)
354 struct pl01x_serial_plat *plat = dev_get_plat(dev);
359 addr = dev_read_addr(dev);
360 if (addr == FDT_ADDR_T_NONE)
364 plat->clock = dev_read_u32_default(dev, "clock", CONFIG_PL011_CLOCK);
365 ret = clk_get_by_index(dev, 0, &clk);
367 ret = clk_enable(&clk);
368 if (ret && ret != -ENOSYS) {
369 dev_err(dev, "failed to enable clock\n");
373 plat->clock = clk_get_rate(&clk);
374 if (IS_ERR_VALUE(plat->clock)) {
375 dev_err(dev, "failed to get rate\n");
378 debug("%s: CLK %d\n", __func__, plat->clock);
380 plat->type = dev_get_driver_data(dev);
381 plat->skip_init = dev_read_bool(dev, "skip-init");
387 U_BOOT_DRIVER(serial_pl01x) = {
388 .name = "serial_pl01x",
390 .of_match = of_match_ptr(pl01x_serial_id),
391 .of_to_plat = of_match_ptr(pl01x_serial_of_to_plat),
392 .plat_auto = sizeof(struct pl01x_serial_plat),
393 .probe = pl01x_serial_probe,
394 .ops = &pl01x_serial_ops,
395 .flags = DM_FLAG_PRE_RELOC,
396 .priv_auto = sizeof(struct pl01x_priv),
401 #if defined(CONFIG_DEBUG_UART_PL010) || defined(CONFIG_DEBUG_UART_PL011)
403 #include <debug_uart.h>
405 static void _debug_uart_init(void)
407 #ifndef CONFIG_DEBUG_UART_SKIP_INIT
408 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE;
409 enum pl01x_type type = CONFIG_IS_ENABLED(DEBUG_UART_PL011) ?
410 TYPE_PL011 : TYPE_PL010;
412 pl01x_generic_serial_init(regs, type);
413 pl01x_generic_setbrg(regs, type,
414 CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE);
418 static inline void _debug_uart_putc(int ch)
420 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE;
422 pl01x_putc(regs, ch);