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/platform_data/serial_pl01x.h>
23 #include <linux/compiler.h>
24 #include "serial_pl01x_internal.h"
26 DECLARE_GLOBAL_DATA_PTR;
28 #ifndef CONFIG_DM_SERIAL
30 static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS;
31 static enum pl01x_type pl01x_type __attribute__ ((section(".data")));
32 static struct pl01x_regs *base_regs __attribute__ ((section(".data")));
33 #define NUM_PORTS (sizeof(port)/sizeof(port[0]))
37 static int pl01x_putc(struct pl01x_regs *regs, char c)
39 /* Wait until there is space in the FIFO */
40 if (readl(®s->fr) & UART_PL01x_FR_TXFF)
43 /* Send the character */
49 static int pl01x_getc(struct pl01x_regs *regs)
53 /* Wait until there is data in the FIFO */
54 if (readl(®s->fr) & UART_PL01x_FR_RXFE)
57 data = readl(®s->dr);
59 /* Check for an error flag */
60 if (data & 0xFFFFFF00) {
62 writel(0xFFFFFFFF, ®s->ecr);
69 static int pl01x_tstc(struct pl01x_regs *regs)
72 return !(readl(®s->fr) & UART_PL01x_FR_RXFE);
75 static int pl01x_generic_serial_init(struct pl01x_regs *regs,
80 /* disable everything */
81 writel(0, ®s->pl010_cr);
84 /* disable everything */
85 writel(0, ®s->pl011_cr);
94 static int pl011_set_line_control(struct pl01x_regs *regs)
98 * Internal update of baud rate register require line
99 * control register write
101 lcr = UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN;
102 writel(lcr, ®s->pl011_lcrh);
106 static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
107 int clock, int baudrate)
111 unsigned int divisor;
113 /* disable everything */
114 writel(0, ®s->pl010_cr);
118 divisor = UART_PL010_BAUD_9600;
121 divisor = UART_PL010_BAUD_19200;
124 divisor = UART_PL010_BAUD_38400;
127 divisor = UART_PL010_BAUD_57600;
130 divisor = UART_PL010_BAUD_115200;
133 divisor = UART_PL010_BAUD_38400;
136 writel((divisor & 0xf00) >> 8, ®s->pl010_lcrm);
137 writel(divisor & 0xff, ®s->pl010_lcrl);
140 * Set line control for the PL010 to be 8 bits, 1 stop bit,
141 * no parity, fifo enabled
143 writel(UART_PL010_LCRH_WLEN_8 | UART_PL010_LCRH_FEN,
145 /* Finally, enable the UART */
146 writel(UART_PL010_CR_UARTEN, ®s->pl010_cr);
151 unsigned int divider;
152 unsigned int remainder;
153 unsigned int fraction;
155 /* Without a valid clock rate we cannot set up the baudrate. */
160 * IBRD = UART_CLK / (16 * BAUD_RATE)
161 * FBRD = RND((64 * MOD(UART_CLK,(16 * BAUD_RATE)))
162 * / (16 * BAUD_RATE))
164 temp = 16 * baudrate;
165 divider = clock / temp;
166 remainder = clock % temp;
167 temp = (8 * remainder) / baudrate;
168 fraction = (temp >> 1) + (temp & 1);
170 writel(divider, ®s->pl011_ibrd);
171 writel(fraction, ®s->pl011_fbrd);
174 pl011_set_line_control(regs);
175 /* Finally, enable the UART */
176 writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE |
177 UART_PL011_CR_RXE | UART_PL011_CR_RTS, ®s->pl011_cr);
187 #ifndef CONFIG_DM_SERIAL
188 static void pl01x_serial_init_baud(int baudrate)
192 #if defined(CONFIG_PL010_SERIAL)
193 pl01x_type = TYPE_PL010;
194 #elif defined(CONFIG_PL011_SERIAL)
195 pl01x_type = TYPE_PL011;
196 clock = CONFIG_PL011_CLOCK;
198 base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX];
200 pl01x_generic_serial_init(base_regs, pl01x_type);
201 pl01x_generic_setbrg(base_regs, pl01x_type, clock, baudrate);
205 * Integrator AP has two UARTs, we use the first one, at 38400-8-N-1
206 * Integrator CP has two UARTs, use the first one, at 38400-8-N-1
207 * Versatile PB has four UARTs.
209 int pl01x_serial_init(void)
211 pl01x_serial_init_baud(CONFIG_BAUDRATE);
216 static void pl01x_serial_putc(const char c)
219 while (pl01x_putc(base_regs, '\r') == -EAGAIN);
221 while (pl01x_putc(base_regs, c) == -EAGAIN);
224 static int pl01x_serial_getc(void)
227 int ch = pl01x_getc(base_regs);
238 static int pl01x_serial_tstc(void)
240 return pl01x_tstc(base_regs);
243 static void pl01x_serial_setbrg(void)
246 * Flush FIFO and wait for non-busy before changing baudrate to avoid
249 while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE))
251 while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY)
253 pl01x_serial_init_baud(gd->baudrate);
256 static struct serial_device pl01x_serial_drv = {
257 .name = "pl01x_serial",
258 .start = pl01x_serial_init,
260 .setbrg = pl01x_serial_setbrg,
261 .putc = pl01x_serial_putc,
262 .puts = default_serial_puts,
263 .getc = pl01x_serial_getc,
264 .tstc = pl01x_serial_tstc,
267 void pl01x_serial_initialize(void)
269 serial_register(&pl01x_serial_drv);
272 __weak struct serial_device *default_serial_console(void)
274 return &pl01x_serial_drv;
277 #endif /* nCONFIG_DM_SERIAL */
279 #ifdef CONFIG_DM_SERIAL
281 int pl01x_serial_setbrg(struct udevice *dev, int baudrate)
283 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
284 struct pl01x_priv *priv = dev_get_priv(dev);
286 if (!plat->skip_init) {
287 pl01x_generic_setbrg(priv->regs, priv->type, plat->clock,
294 int pl01x_serial_probe(struct udevice *dev)
296 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
297 struct pl01x_priv *priv = dev_get_priv(dev);
299 priv->regs = (struct pl01x_regs *)plat->base;
300 priv->type = plat->type;
301 if (!plat->skip_init)
302 return pl01x_generic_serial_init(priv->regs, priv->type);
307 int pl01x_serial_getc(struct udevice *dev)
309 struct pl01x_priv *priv = dev_get_priv(dev);
311 return pl01x_getc(priv->regs);
314 int pl01x_serial_putc(struct udevice *dev, const char ch)
316 struct pl01x_priv *priv = dev_get_priv(dev);
318 return pl01x_putc(priv->regs, ch);
321 int pl01x_serial_pending(struct udevice *dev, bool input)
323 struct pl01x_priv *priv = dev_get_priv(dev);
324 unsigned int fr = readl(&priv->regs->fr);
327 return pl01x_tstc(priv->regs);
329 return fr & UART_PL01x_FR_TXFF ? 0 : 1;
332 static const struct dm_serial_ops pl01x_serial_ops = {
333 .putc = pl01x_serial_putc,
334 .pending = pl01x_serial_pending,
335 .getc = pl01x_serial_getc,
336 .setbrg = pl01x_serial_setbrg,
339 #if CONFIG_IS_ENABLED(OF_CONTROL)
340 static const struct udevice_id pl01x_serial_id[] ={
341 {.compatible = "arm,pl011", .data = TYPE_PL011},
342 {.compatible = "arm,pl010", .data = TYPE_PL010},
346 #ifndef CONFIG_PL011_CLOCK
347 #define CONFIG_PL011_CLOCK 0
350 int pl01x_serial_ofdata_to_platdata(struct udevice *dev)
352 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
357 addr = dev_read_addr(dev);
358 if (addr == FDT_ADDR_T_NONE)
362 plat->clock = dev_read_u32_default(dev, "clock", CONFIG_PL011_CLOCK);
363 ret = clk_get_by_index(dev, 0, &clk);
366 plat->clock = clk_get_rate(&clk);
368 plat->type = dev_get_driver_data(dev);
369 plat->skip_init = dev_read_bool(dev, "skip-init");
375 U_BOOT_DRIVER(serial_pl01x) = {
376 .name = "serial_pl01x",
378 .of_match = of_match_ptr(pl01x_serial_id),
379 .ofdata_to_platdata = of_match_ptr(pl01x_serial_ofdata_to_platdata),
380 .platdata_auto_alloc_size = sizeof(struct pl01x_serial_platdata),
381 .probe = pl01x_serial_probe,
382 .ops = &pl01x_serial_ops,
383 .flags = DM_FLAG_PRE_RELOC,
384 .priv_auto_alloc_size = sizeof(struct pl01x_priv),
389 #if defined(CONFIG_DEBUG_UART_PL010) || defined(CONFIG_DEBUG_UART_PL011)
391 #include <debug_uart.h>
393 static void _debug_uart_init(void)
395 #ifndef CONFIG_DEBUG_UART_SKIP_INIT
396 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE;
397 enum pl01x_type type = CONFIG_IS_ENABLED(DEBUG_UART_PL011) ?
398 TYPE_PL011 : TYPE_PL010;
400 pl01x_generic_serial_init(regs, type);
401 pl01x_generic_setbrg(regs, type,
402 CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE);
406 static inline void _debug_uart_putc(int ch)
408 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE;
410 pl01x_putc(regs, ch);