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 /* For get_bus_freq() */
15 #include <clock_legacy.h>
22 #include <dm/device_compat.h>
23 #include <dm/platform_data/serial_pl01x.h>
24 #include <linux/compiler.h>
25 #include "serial_pl01x_internal.h"
27 DECLARE_GLOBAL_DATA_PTR;
29 #ifndef CONFIG_DM_SERIAL
31 static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS;
32 static enum pl01x_type pl01x_type __attribute__ ((section(".data")));
33 static struct pl01x_regs *base_regs __attribute__ ((section(".data")));
34 #define NUM_PORTS (sizeof(port)/sizeof(port[0]))
38 static int pl01x_putc(struct pl01x_regs *regs, char c)
40 /* Wait until there is space in the FIFO */
41 if (readl(®s->fr) & UART_PL01x_FR_TXFF)
44 /* Send the character */
50 static int pl01x_getc(struct pl01x_regs *regs)
54 /* Wait until there is data in the FIFO */
55 if (readl(®s->fr) & UART_PL01x_FR_RXFE)
58 data = readl(®s->dr);
60 /* Check for an error flag */
61 if (data & 0xFFFFFF00) {
63 writel(0xFFFFFFFF, ®s->ecr);
70 static int pl01x_tstc(struct pl01x_regs *regs)
73 return !(readl(®s->fr) & UART_PL01x_FR_RXFE);
76 static int pl01x_generic_serial_init(struct pl01x_regs *regs,
81 /* disable everything */
82 writel(0, ®s->pl010_cr);
85 /* disable everything */
86 writel(0, ®s->pl011_cr);
95 static int pl011_set_line_control(struct pl01x_regs *regs)
99 * Internal update of baud rate register require line
100 * control register write
102 lcr = UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN;
103 writel(lcr, ®s->pl011_lcrh);
107 static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
108 int clock, int baudrate)
112 unsigned int divisor;
114 /* disable everything */
115 writel(0, ®s->pl010_cr);
119 divisor = UART_PL010_BAUD_9600;
122 divisor = UART_PL010_BAUD_19200;
125 divisor = UART_PL010_BAUD_38400;
128 divisor = UART_PL010_BAUD_57600;
131 divisor = UART_PL010_BAUD_115200;
134 divisor = UART_PL010_BAUD_38400;
137 writel((divisor & 0xf00) >> 8, ®s->pl010_lcrm);
138 writel(divisor & 0xff, ®s->pl010_lcrl);
141 * Set line control for the PL010 to be 8 bits, 1 stop bit,
142 * no parity, fifo enabled
144 writel(UART_PL010_LCRH_WLEN_8 | UART_PL010_LCRH_FEN,
146 /* Finally, enable the UART */
147 writel(UART_PL010_CR_UARTEN, ®s->pl010_cr);
152 unsigned int divider;
153 unsigned int remainder;
154 unsigned int fraction;
156 /* Without a valid clock rate we cannot set up the baudrate. */
161 * IBRD = UART_CLK / (16 * BAUD_RATE)
162 * FBRD = RND((64 * MOD(UART_CLK,(16 * BAUD_RATE)))
163 * / (16 * BAUD_RATE))
165 temp = 16 * baudrate;
166 divider = clock / temp;
167 remainder = clock % temp;
168 temp = (8 * remainder) / baudrate;
169 fraction = (temp >> 1) + (temp & 1);
171 writel(divider, ®s->pl011_ibrd);
172 writel(fraction, ®s->pl011_fbrd);
175 pl011_set_line_control(regs);
176 /* Finally, enable the UART */
177 writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE |
178 UART_PL011_CR_RXE | UART_PL011_CR_RTS, ®s->pl011_cr);
188 #ifndef CONFIG_DM_SERIAL
189 static void pl01x_serial_init_baud(int baudrate)
193 #if defined(CONFIG_PL010_SERIAL)
194 pl01x_type = TYPE_PL010;
195 #elif defined(CONFIG_PL011_SERIAL)
196 pl01x_type = TYPE_PL011;
197 clock = CONFIG_PL011_CLOCK;
199 base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX];
201 pl01x_generic_serial_init(base_regs, pl01x_type);
202 pl01x_generic_setbrg(base_regs, pl01x_type, clock, baudrate);
206 * Integrator AP has two UARTs, we use the first one, at 38400-8-N-1
207 * Integrator CP has two UARTs, use the first one, at 38400-8-N-1
208 * Versatile PB has four UARTs.
210 int pl01x_serial_init(void)
212 pl01x_serial_init_baud(CONFIG_BAUDRATE);
217 static void pl01x_serial_putc(const char c)
220 while (pl01x_putc(base_regs, '\r') == -EAGAIN);
222 while (pl01x_putc(base_regs, c) == -EAGAIN);
225 static int pl01x_serial_getc(void)
228 int ch = pl01x_getc(base_regs);
239 static int pl01x_serial_tstc(void)
241 return pl01x_tstc(base_regs);
244 static void pl01x_serial_setbrg(void)
247 * Flush FIFO and wait for non-busy before changing baudrate to avoid
250 while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE))
252 while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY)
254 pl01x_serial_init_baud(gd->baudrate);
257 static struct serial_device pl01x_serial_drv = {
258 .name = "pl01x_serial",
259 .start = pl01x_serial_init,
261 .setbrg = pl01x_serial_setbrg,
262 .putc = pl01x_serial_putc,
263 .puts = default_serial_puts,
264 .getc = pl01x_serial_getc,
265 .tstc = pl01x_serial_tstc,
268 void pl01x_serial_initialize(void)
270 serial_register(&pl01x_serial_drv);
273 __weak struct serial_device *default_serial_console(void)
275 return &pl01x_serial_drv;
278 #endif /* nCONFIG_DM_SERIAL */
280 #ifdef CONFIG_DM_SERIAL
282 int pl01x_serial_setbrg(struct udevice *dev, int baudrate)
284 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
285 struct pl01x_priv *priv = dev_get_priv(dev);
287 if (!plat->skip_init) {
288 pl01x_generic_setbrg(priv->regs, priv->type, plat->clock,
295 int pl01x_serial_probe(struct udevice *dev)
297 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
298 struct pl01x_priv *priv = dev_get_priv(dev);
300 priv->regs = (struct pl01x_regs *)plat->base;
301 priv->type = plat->type;
302 if (!plat->skip_init)
303 return pl01x_generic_serial_init(priv->regs, priv->type);
308 int pl01x_serial_getc(struct udevice *dev)
310 struct pl01x_priv *priv = dev_get_priv(dev);
312 return pl01x_getc(priv->regs);
315 int pl01x_serial_putc(struct udevice *dev, const char ch)
317 struct pl01x_priv *priv = dev_get_priv(dev);
319 return pl01x_putc(priv->regs, ch);
322 int pl01x_serial_pending(struct udevice *dev, bool input)
324 struct pl01x_priv *priv = dev_get_priv(dev);
325 unsigned int fr = readl(&priv->regs->fr);
328 return pl01x_tstc(priv->regs);
330 return fr & UART_PL01x_FR_TXFF ? 0 : 1;
333 static const struct dm_serial_ops pl01x_serial_ops = {
334 .putc = pl01x_serial_putc,
335 .pending = pl01x_serial_pending,
336 .getc = pl01x_serial_getc,
337 .setbrg = pl01x_serial_setbrg,
340 #if CONFIG_IS_ENABLED(OF_CONTROL)
341 static const struct udevice_id pl01x_serial_id[] ={
342 {.compatible = "arm,pl011", .data = TYPE_PL011},
343 {.compatible = "arm,pl010", .data = TYPE_PL010},
347 #ifndef CONFIG_PL011_CLOCK
348 #define CONFIG_PL011_CLOCK 0
351 int pl01x_serial_ofdata_to_platdata(struct udevice *dev)
353 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
358 addr = dev_read_addr(dev);
359 if (addr == FDT_ADDR_T_NONE)
363 plat->clock = dev_read_u32_default(dev, "clock", CONFIG_PL011_CLOCK);
364 ret = clk_get_by_index(dev, 0, &clk);
366 ret = clk_enable(&clk);
367 if (ret && ret != -ENOSYS) {
368 dev_err(dev, "failed to enable clock\n");
372 plat->clock = clk_get_rate(&clk);
373 if (IS_ERR_VALUE(plat->clock)) {
374 dev_err(dev, "failed to get rate\n");
377 debug("%s: CLK %d\n", __func__, plat->clock);
379 plat->type = dev_get_driver_data(dev);
380 plat->skip_init = dev_read_bool(dev, "skip-init");
386 U_BOOT_DRIVER(serial_pl01x) = {
387 .name = "serial_pl01x",
389 .of_match = of_match_ptr(pl01x_serial_id),
390 .ofdata_to_platdata = of_match_ptr(pl01x_serial_ofdata_to_platdata),
391 .platdata_auto_alloc_size = sizeof(struct pl01x_serial_platdata),
392 .probe = pl01x_serial_probe,
393 .ops = &pl01x_serial_ops,
394 .flags = DM_FLAG_PRE_RELOC,
395 .priv_auto_alloc_size = sizeof(struct pl01x_priv),
400 #if defined(CONFIG_DEBUG_UART_PL010) || defined(CONFIG_DEBUG_UART_PL011)
402 #include <debug_uart.h>
404 static void _debug_uart_init(void)
406 #ifndef CONFIG_DEBUG_UART_SKIP_INIT
407 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE;
408 enum pl01x_type type = CONFIG_IS_ENABLED(DEBUG_UART_PL011) ?
409 TYPE_PL011 : TYPE_PL010;
411 pl01x_generic_serial_init(regs, type);
412 pl01x_generic_setbrg(regs, type,
413 CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE);
417 static inline void _debug_uart_putc(int ch)
419 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE;
421 pl01x_putc(regs, ch);