blob: 4f9de0da767f54c16cf3edefce38bf25af45206b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk4989f872004-03-14 15:06:13 +00002/*
3 * (C) Copyright 2000
4 * Rob Taylor, Flying Pig Systems. robt@flyingpig.com.
5 *
6 * (C) Copyright 2004
7 * ARM Ltd.
8 * Philippe Robin, <philippe.robin@arm.com>
wdenk4989f872004-03-14 15:06:13 +00009 */
10
Andreas Engel0813b122008-09-08 14:30:53 +020011/* Simple U-Boot driver for the PrimeCell PL010/PL011 UARTs */
wdenk4989f872004-03-14 15:06:13 +000012
13#include <common.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Andre Przywara7ee2dab2020-04-27 19:17:59 +010015/* For get_bus_freq() */
16#include <clock_legacy.h>
Simon Glass3ad93fe2014-09-22 17:30:58 -060017#include <dm.h>
Andre Przywara7ee2dab2020-04-27 19:17:59 +010018#include <clk.h>
Simon Glassf35484d2014-09-22 17:30:57 -060019#include <errno.h>
Stuart Wood26136ef2008-06-02 16:42:19 -040020#include <watchdog.h>
Matt Waddeld6ce53e2010-10-07 15:48:46 -060021#include <asm/io.h>
Marek Vasut46e4d5f2012-09-14 22:38:46 +020022#include <serial.h>
Michal Simekf96c7892020-10-13 15:00:24 +020023#include <dm/device_compat.h>
Masahiro Yamada22c97de2014-10-24 12:41:19 +090024#include <dm/platform_data/serial_pl01x.h>
Marek Vasut46e4d5f2012-09-14 22:38:46 +020025#include <linux/compiler.h>
Simon Glassf35484d2014-09-22 17:30:57 -060026#include "serial_pl01x_internal.h"
Vikas Manocha92e349e2015-05-06 11:46:29 -070027
28DECLARE_GLOBAL_DATA_PTR;
wdenk4989f872004-03-14 15:06:13 +000029
Simon Glass3ad93fe2014-09-22 17:30:58 -060030#ifndef CONFIG_DM_SERIAL
31
wdenkda04a8b2004-08-02 23:22:59 +000032static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS;
Simon Glassf35484d2014-09-22 17:30:57 -060033static enum pl01x_type pl01x_type __attribute__ ((section(".data")));
34static struct pl01x_regs *base_regs __attribute__ ((section(".data")));
wdenkda04a8b2004-08-02 23:22:59 +000035#define NUM_PORTS (sizeof(port)/sizeof(port[0]))
wdenk4989f872004-03-14 15:06:13 +000036
Simon Glass3ad93fe2014-09-22 17:30:58 -060037#endif
wdenk4989f872004-03-14 15:06:13 +000038
Simon Glassf35484d2014-09-22 17:30:57 -060039static int pl01x_putc(struct pl01x_regs *regs, char c)
wdenk4989f872004-03-14 15:06:13 +000040{
Simon Glassf35484d2014-09-22 17:30:57 -060041 /* Wait until there is space in the FIFO */
42 if (readl(&regs->fr) & UART_PL01x_FR_TXFF)
43 return -EAGAIN;
wdenk4989f872004-03-14 15:06:13 +000044
Simon Glassf35484d2014-09-22 17:30:57 -060045 /* Send the character */
46 writel(c, &regs->dr);
wdenk4989f872004-03-14 15:06:13 +000047
Simon Glassf35484d2014-09-22 17:30:57 -060048 return 0;
49}
wdenk4989f872004-03-14 15:06:13 +000050
Simon Glassf35484d2014-09-22 17:30:57 -060051static int pl01x_getc(struct pl01x_regs *regs)
52{
53 unsigned int data;
wdenk4989f872004-03-14 15:06:13 +000054
Simon Glassf35484d2014-09-22 17:30:57 -060055 /* Wait until there is data in the FIFO */
56 if (readl(&regs->fr) & UART_PL01x_FR_RXFE)
57 return -EAGAIN;
wdenk4989f872004-03-14 15:06:13 +000058
Simon Glassf35484d2014-09-22 17:30:57 -060059 data = readl(&regs->dr);
wdenk4989f872004-03-14 15:06:13 +000060
Simon Glassf35484d2014-09-22 17:30:57 -060061 /* Check for an error flag */
62 if (data & 0xFFFFFF00) {
63 /* Clear the error */
64 writel(0xFFFFFFFF, &regs->ecr);
65 return -1;
wdenkc35ba4e2004-03-14 22:25:36 +000066 }
67
Simon Glassf35484d2014-09-22 17:30:57 -060068 return (int) data;
wdenk4989f872004-03-14 15:06:13 +000069}
70
Simon Glassf35484d2014-09-22 17:30:57 -060071static int pl01x_tstc(struct pl01x_regs *regs)
72{
73 WATCHDOG_RESET();
74 return !(readl(&regs->fr) & UART_PL01x_FR_RXFE);
75}
Andreas Engel80438612008-09-08 10:17:31 +020076
Simon Glassf35484d2014-09-22 17:30:57 -060077static int pl01x_generic_serial_init(struct pl01x_regs *regs,
78 enum pl01x_type type)
Andreas Engel80438612008-09-08 10:17:31 +020079{
Vikas Manochabe14f152014-11-21 10:34:23 -080080 switch (type) {
81 case TYPE_PL010:
82 /* disable everything */
83 writel(0, &regs->pl010_cr);
84 break;
85 case TYPE_PL011:
Vikas Manochaee038e22014-11-21 10:34:22 -080086 /* disable everything */
87 writel(0, &regs->pl011_cr);
Vikas Manochafe96bbd2014-11-21 10:34:21 -080088 break;
89 default:
90 return -EINVAL;
91 }
92
93 return 0;
94}
95
Linus Walleij70864f62015-04-21 15:10:06 +020096static int pl011_set_line_control(struct pl01x_regs *regs)
Vikas Manochafe96bbd2014-11-21 10:34:21 -080097{
98 unsigned int lcr;
99 /*
100 * Internal update of baud rate register require line
101 * control register write
102 */
103 lcr = UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN;
Vikas Manochafe96bbd2014-11-21 10:34:21 -0800104 writel(lcr, &regs->pl011_lcrh);
Andreas Engel80438612008-09-08 10:17:31 +0200105 return 0;
106}
107
Simon Glassf35484d2014-09-22 17:30:57 -0600108static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
109 int clock, int baudrate)
wdenk4989f872004-03-14 15:06:13 +0000110{
Simon Glassf35484d2014-09-22 17:30:57 -0600111 switch (type) {
112 case TYPE_PL010: {
113 unsigned int divisor;
wdenk4989f872004-03-14 15:06:13 +0000114
Linus Walleij70864f62015-04-21 15:10:06 +0200115 /* disable everything */
116 writel(0, &regs->pl010_cr);
117
Simon Glassf35484d2014-09-22 17:30:57 -0600118 switch (baudrate) {
119 case 9600:
120 divisor = UART_PL010_BAUD_9600;
121 break;
122 case 19200:
Alyssa Rosenzweigaf7638b2017-04-07 09:48:22 -0700123 divisor = UART_PL010_BAUD_19200;
Simon Glassf35484d2014-09-22 17:30:57 -0600124 break;
125 case 38400:
126 divisor = UART_PL010_BAUD_38400;
127 break;
128 case 57600:
129 divisor = UART_PL010_BAUD_57600;
130 break;
131 case 115200:
132 divisor = UART_PL010_BAUD_115200;
133 break;
134 default:
135 divisor = UART_PL010_BAUD_38400;
136 }
wdenk4989f872004-03-14 15:06:13 +0000137
Simon Glassf35484d2014-09-22 17:30:57 -0600138 writel((divisor & 0xf00) >> 8, &regs->pl010_lcrm);
139 writel(divisor & 0xff, &regs->pl010_lcrl);
140
Linus Walleij70864f62015-04-21 15:10:06 +0200141 /*
142 * Set line control for the PL010 to be 8 bits, 1 stop bit,
143 * no parity, fifo enabled
144 */
145 writel(UART_PL010_LCRH_WLEN_8 | UART_PL010_LCRH_FEN,
146 &regs->pl010_lcrh);
Simon Glassf35484d2014-09-22 17:30:57 -0600147 /* Finally, enable the UART */
148 writel(UART_PL010_CR_UARTEN, &regs->pl010_cr);
149 break;
150 }
151 case TYPE_PL011: {
152 unsigned int temp;
153 unsigned int divider;
154 unsigned int remainder;
155 unsigned int fraction;
156
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100157 /* Without a valid clock rate we cannot set up the baudrate. */
158 if (clock) {
159 /*
160 * Set baud rate
161 *
162 * IBRD = UART_CLK / (16 * BAUD_RATE)
163 * FBRD = RND((64 * MOD(UART_CLK,(16 * BAUD_RATE)))
164 * / (16 * BAUD_RATE))
165 */
166 temp = 16 * baudrate;
167 divider = clock / temp;
168 remainder = clock % temp;
169 temp = (8 * remainder) / baudrate;
170 fraction = (temp >> 1) + (temp & 1);
Simon Glassf35484d2014-09-22 17:30:57 -0600171
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100172 writel(divider, &regs->pl011_ibrd);
173 writel(fraction, &regs->pl011_fbrd);
174 }
Simon Glassf35484d2014-09-22 17:30:57 -0600175
Linus Walleij70864f62015-04-21 15:10:06 +0200176 pl011_set_line_control(regs);
Simon Glassf35484d2014-09-22 17:30:57 -0600177 /* Finally, enable the UART */
178 writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE |
179 UART_PL011_CR_RXE | UART_PL011_CR_RTS, &regs->pl011_cr);
180 break;
181 }
182 default:
183 return -EINVAL;
184 }
185
186 return 0;
wdenk4989f872004-03-14 15:06:13 +0000187}
188
Simon Glassf35484d2014-09-22 17:30:57 -0600189#ifndef CONFIG_DM_SERIAL
190static void pl01x_serial_init_baud(int baudrate)
wdenk4989f872004-03-14 15:06:13 +0000191{
Simon Glassf35484d2014-09-22 17:30:57 -0600192 int clock = 0;
193
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;
199#endif
200 base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX];
201
202 pl01x_generic_serial_init(base_regs, pl01x_type);
Vikas Manochaaac23962014-11-21 10:34:19 -0800203 pl01x_generic_setbrg(base_regs, pl01x_type, clock, baudrate);
wdenk4989f872004-03-14 15:06:13 +0000204}
205
Simon Glassf35484d2014-09-22 17:30:57 -0600206/*
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.
210 */
211int pl01x_serial_init(void)
wdenk4989f872004-03-14 15:06:13 +0000212{
Simon Glassf35484d2014-09-22 17:30:57 -0600213 pl01x_serial_init_baud(CONFIG_BAUDRATE);
Linus Walleijb8058e82011-10-02 11:52:52 +0000214
Simon Glassf35484d2014-09-22 17:30:57 -0600215 return 0;
wdenk4989f872004-03-14 15:06:13 +0000216}
217
Simon Glassf35484d2014-09-22 17:30:57 -0600218static void pl01x_serial_putc(const char c)
wdenk4989f872004-03-14 15:06:13 +0000219{
Simon Glassf35484d2014-09-22 17:30:57 -0600220 if (c == '\n')
221 while (pl01x_putc(base_regs, '\r') == -EAGAIN);
wdenkc35ba4e2004-03-14 22:25:36 +0000222
Simon Glassf35484d2014-09-22 17:30:57 -0600223 while (pl01x_putc(base_regs, c) == -EAGAIN);
wdenk4989f872004-03-14 15:06:13 +0000224}
225
Simon Glassf35484d2014-09-22 17:30:57 -0600226static int pl01x_serial_getc(void)
wdenk4989f872004-03-14 15:06:13 +0000227{
Simon Glassf35484d2014-09-22 17:30:57 -0600228 while (1) {
229 int ch = pl01x_getc(base_regs);
wdenkc35ba4e2004-03-14 22:25:36 +0000230
Simon Glassf35484d2014-09-22 17:30:57 -0600231 if (ch == -EAGAIN) {
232 WATCHDOG_RESET();
233 continue;
234 }
wdenk4989f872004-03-14 15:06:13 +0000235
Simon Glassf35484d2014-09-22 17:30:57 -0600236 return ch;
wdenkc35ba4e2004-03-14 22:25:36 +0000237 }
wdenk4989f872004-03-14 15:06:13 +0000238}
239
Simon Glassf35484d2014-09-22 17:30:57 -0600240static int pl01x_serial_tstc(void)
wdenk4989f872004-03-14 15:06:13 +0000241{
Simon Glassf35484d2014-09-22 17:30:57 -0600242 return pl01x_tstc(base_regs);
243}
Rabin Vincentfb3c95f2010-05-05 09:23:07 +0530244
Simon Glassf35484d2014-09-22 17:30:57 -0600245static void pl01x_serial_setbrg(void)
246{
247 /*
248 * Flush FIFO and wait for non-busy before changing baudrate to avoid
249 * crap in console
250 */
251 while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE))
252 WATCHDOG_RESET();
253 while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY)
254 WATCHDOG_RESET();
255 pl01x_serial_init_baud(gd->baudrate);
wdenk4989f872004-03-14 15:06:13 +0000256}
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200257
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200258static struct serial_device pl01x_serial_drv = {
259 .name = "pl01x_serial",
260 .start = pl01x_serial_init,
261 .stop = NULL,
262 .setbrg = pl01x_serial_setbrg,
263 .putc = pl01x_serial_putc,
Marek Vasutd9c64492012-10-06 14:07:02 +0000264 .puts = default_serial_puts,
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200265 .getc = pl01x_serial_getc,
266 .tstc = pl01x_serial_tstc,
267};
268
269void pl01x_serial_initialize(void)
270{
271 serial_register(&pl01x_serial_drv);
272}
273
274__weak struct serial_device *default_serial_console(void)
275{
276 return &pl01x_serial_drv;
277}
Simon Glassf35484d2014-09-22 17:30:57 -0600278
279#endif /* nCONFIG_DM_SERIAL */
Simon Glass3ad93fe2014-09-22 17:30:58 -0600280
281#ifdef CONFIG_DM_SERIAL
282
Alexander Grafa5c35852018-03-07 22:08:25 +0100283int pl01x_serial_setbrg(struct udevice *dev, int baudrate)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600284{
Simon Glassb75b15b2020-12-03 16:55:23 -0700285 struct pl01x_serial_plat *plat = dev_get_plat(dev);
Simon Glass3ad93fe2014-09-22 17:30:58 -0600286 struct pl01x_priv *priv = dev_get_priv(dev);
287
Eric Anholtbe5a7dd2016-03-13 18:16:54 -0700288 if (!plat->skip_init) {
289 pl01x_generic_setbrg(priv->regs, priv->type, plat->clock,
290 baudrate);
291 }
Simon Glass3ad93fe2014-09-22 17:30:58 -0600292
293 return 0;
294}
295
Alexander Grafa73b0ec2018-01-25 12:05:55 +0100296int pl01x_serial_probe(struct udevice *dev)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600297{
Simon Glassb75b15b2020-12-03 16:55:23 -0700298 struct pl01x_serial_plat *plat = dev_get_plat(dev);
Simon Glass3ad93fe2014-09-22 17:30:58 -0600299 struct pl01x_priv *priv = dev_get_priv(dev);
300
301 priv->regs = (struct pl01x_regs *)plat->base;
302 priv->type = plat->type;
Eric Anholtbe5a7dd2016-03-13 18:16:54 -0700303 if (!plat->skip_init)
304 return pl01x_generic_serial_init(priv->regs, priv->type);
305 else
306 return 0;
Simon Glass3ad93fe2014-09-22 17:30:58 -0600307}
308
Alexander Grafa5c35852018-03-07 22:08:25 +0100309int pl01x_serial_getc(struct udevice *dev)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600310{
311 struct pl01x_priv *priv = dev_get_priv(dev);
312
313 return pl01x_getc(priv->regs);
314}
315
Alexander Grafa5c35852018-03-07 22:08:25 +0100316int pl01x_serial_putc(struct udevice *dev, const char ch)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600317{
318 struct pl01x_priv *priv = dev_get_priv(dev);
319
320 return pl01x_putc(priv->regs, ch);
321}
322
Alexander Grafa5c35852018-03-07 22:08:25 +0100323int pl01x_serial_pending(struct udevice *dev, bool input)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600324{
325 struct pl01x_priv *priv = dev_get_priv(dev);
326 unsigned int fr = readl(&priv->regs->fr);
327
328 if (input)
329 return pl01x_tstc(priv->regs);
330 else
331 return fr & UART_PL01x_FR_TXFF ? 0 : 1;
332}
333
Alexander Grafa5c35852018-03-07 22:08:25 +0100334static const struct dm_serial_ops pl01x_serial_ops = {
Simon Glass3ad93fe2014-09-22 17:30:58 -0600335 .putc = pl01x_serial_putc,
336 .pending = pl01x_serial_pending,
337 .getc = pl01x_serial_getc,
338 .setbrg = pl01x_serial_setbrg,
339};
340
Masahiro Yamada366b24f2015-08-12 07:31:55 +0900341#if CONFIG_IS_ENABLED(OF_CONTROL)
Vikas Manocha92e349e2015-05-06 11:46:29 -0700342static const struct udevice_id pl01x_serial_id[] ={
343 {.compatible = "arm,pl011", .data = TYPE_PL011},
344 {.compatible = "arm,pl010", .data = TYPE_PL010},
345 {}
346};
347
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100348#ifndef CONFIG_PL011_CLOCK
349#define CONFIG_PL011_CLOCK 0
350#endif
351
Simon Glassaad29ae2020-12-03 16:55:21 -0700352int pl01x_serial_of_to_plat(struct udevice *dev)
Vikas Manocha92e349e2015-05-06 11:46:29 -0700353{
Simon Glassb75b15b2020-12-03 16:55:23 -0700354 struct pl01x_serial_plat *plat = dev_get_plat(dev);
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100355 struct clk clk;
Vikas Manocha92e349e2015-05-06 11:46:29 -0700356 fdt_addr_t addr;
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100357 int ret;
Vikas Manocha92e349e2015-05-06 11:46:29 -0700358
Masahiro Yamadaa89b4de2020-07-17 14:36:48 +0900359 addr = dev_read_addr(dev);
Vikas Manocha92e349e2015-05-06 11:46:29 -0700360 if (addr == FDT_ADDR_T_NONE)
361 return -EINVAL;
362
363 plat->base = addr;
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100364 plat->clock = dev_read_u32_default(dev, "clock", CONFIG_PL011_CLOCK);
365 ret = clk_get_by_index(dev, 0, &clk);
366 if (!ret) {
Michal Simekf96c7892020-10-13 15:00:24 +0200367 ret = clk_enable(&clk);
368 if (ret && ret != -ENOSYS) {
369 dev_err(dev, "failed to enable clock\n");
370 return ret;
371 }
372
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100373 plat->clock = clk_get_rate(&clk);
Michal Simekf96c7892020-10-13 15:00:24 +0200374 if (IS_ERR_VALUE(plat->clock)) {
375 dev_err(dev, "failed to get rate\n");
376 return plat->clock;
377 }
378 debug("%s: CLK %d\n", __func__, plat->clock);
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100379 }
Vikas Manocha92e349e2015-05-06 11:46:29 -0700380 plat->type = dev_get_driver_data(dev);
Alexander Grafcce64432018-01-25 12:05:49 +0100381 plat->skip_init = dev_read_bool(dev, "skip-init");
382
Vikas Manocha92e349e2015-05-06 11:46:29 -0700383 return 0;
384}
385#endif
386
Simon Glass3ad93fe2014-09-22 17:30:58 -0600387U_BOOT_DRIVER(serial_pl01x) = {
388 .name = "serial_pl01x",
389 .id = UCLASS_SERIAL,
Vikas Manocha92e349e2015-05-06 11:46:29 -0700390 .of_match = of_match_ptr(pl01x_serial_id),
Simon Glassaad29ae2020-12-03 16:55:21 -0700391 .of_to_plat = of_match_ptr(pl01x_serial_of_to_plat),
Simon Glassb75b15b2020-12-03 16:55:23 -0700392 .plat_auto = sizeof(struct pl01x_serial_plat),
Simon Glass3ad93fe2014-09-22 17:30:58 -0600393 .probe = pl01x_serial_probe,
394 .ops = &pl01x_serial_ops,
395 .flags = DM_FLAG_PRE_RELOC,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700396 .priv_auto = sizeof(struct pl01x_priv),
Simon Glass3ad93fe2014-09-22 17:30:58 -0600397};
398
399#endif
Sergey Temerkhanovc0ffa4e2015-10-14 09:54:23 -0700400
401#if defined(CONFIG_DEBUG_UART_PL010) || defined(CONFIG_DEBUG_UART_PL011)
402
403#include <debug_uart.h>
404
405static void _debug_uart_init(void)
406{
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;
411
412 pl01x_generic_serial_init(regs, type);
413 pl01x_generic_setbrg(regs, type,
414 CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE);
415#endif
416}
417
418static inline void _debug_uart_putc(int ch)
419{
420 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE;
421
422 pl01x_putc(regs, ch);
423}
424
425DEBUG_UART_FUNCS
426
427#endif