blob: 2772c25f1d2d4f3706029c661fff9a3c8bb1f21e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk3d3befa2004-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>
wdenk3d3befa2004-03-14 15:06:13 +00009 */
10
Andreas Engel48d01922008-09-08 14:30:53 +020011/* Simple U-Boot driver for the PrimeCell PL010/PL011 UARTs */
wdenk3d3befa2004-03-14 15:06:13 +000012
13#include <common.h>
Andre Przywarae3e2d662020-04-27 19:17:59 +010014/* For get_bus_freq() */
15#include <clock_legacy.h>
Simon Glass8a9cd5a2014-09-22 17:30:58 -060016#include <dm.h>
Andre Przywarae3e2d662020-04-27 19:17:59 +010017#include <clk.h>
Simon Glassaed2fbe2014-09-22 17:30:57 -060018#include <errno.h>
Stuart Wood8b616ed2008-06-02 16:42:19 -040019#include <watchdog.h>
Matt Waddel249d5212010-10-07 15:48:46 -060020#include <asm/io.h>
Marek Vasut39f61472012-09-14 22:38:46 +020021#include <serial.h>
Masahiro Yamada86256b72014-10-24 12:41:19 +090022#include <dm/platform_data/serial_pl01x.h>
Marek Vasut39f61472012-09-14 22:38:46 +020023#include <linux/compiler.h>
Simon Glassaed2fbe2014-09-22 17:30:57 -060024#include "serial_pl01x_internal.h"
Vikas Manocha69751722015-05-06 11:46:29 -070025
26DECLARE_GLOBAL_DATA_PTR;
wdenk3d3befa2004-03-14 15:06:13 +000027
Simon Glass8a9cd5a2014-09-22 17:30:58 -060028#ifndef CONFIG_DM_SERIAL
29
wdenk6705d812004-08-02 23:22:59 +000030static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS;
Simon Glassaed2fbe2014-09-22 17:30:57 -060031static enum pl01x_type pl01x_type __attribute__ ((section(".data")));
32static struct pl01x_regs *base_regs __attribute__ ((section(".data")));
wdenk6705d812004-08-02 23:22:59 +000033#define NUM_PORTS (sizeof(port)/sizeof(port[0]))
wdenk3d3befa2004-03-14 15:06:13 +000034
Simon Glass8a9cd5a2014-09-22 17:30:58 -060035#endif
wdenk3d3befa2004-03-14 15:06:13 +000036
Simon Glassaed2fbe2014-09-22 17:30:57 -060037static int pl01x_putc(struct pl01x_regs *regs, char c)
Rabin Vincent72d5e442010-05-05 09:23:07 +053038{
wdenk42dfe7a2004-03-14 22:25:36 +000039 /* Wait until there is space in the FIFO */
Simon Glassaed2fbe2014-09-22 17:30:57 -060040 if (readl(&regs->fr) & UART_PL01x_FR_TXFF)
41 return -EAGAIN;
wdenk42dfe7a2004-03-14 22:25:36 +000042
43 /* Send the character */
Rabin Vincent72d5e442010-05-05 09:23:07 +053044 writel(c, &regs->dr);
Simon Glassaed2fbe2014-09-22 17:30:57 -060045
46 return 0;
wdenk3d3befa2004-03-14 15:06:13 +000047}
48
Simon Glassaed2fbe2014-09-22 17:30:57 -060049static int pl01x_getc(struct pl01x_regs *regs)
wdenk3d3befa2004-03-14 15:06:13 +000050{
wdenk42dfe7a2004-03-14 22:25:36 +000051 unsigned int data;
wdenk3d3befa2004-03-14 15:06:13 +000052
wdenk42dfe7a2004-03-14 22:25:36 +000053 /* Wait until there is data in the FIFO */
Simon Glassaed2fbe2014-09-22 17:30:57 -060054 if (readl(&regs->fr) & UART_PL01x_FR_RXFE)
55 return -EAGAIN;
wdenk42dfe7a2004-03-14 22:25:36 +000056
Rabin Vincent72d5e442010-05-05 09:23:07 +053057 data = readl(&regs->dr);
wdenk42dfe7a2004-03-14 22:25:36 +000058
59 /* Check for an error flag */
60 if (data & 0xFFFFFF00) {
61 /* Clear the error */
Rabin Vincent72d5e442010-05-05 09:23:07 +053062 writel(0xFFFFFFFF, &regs->ecr);
wdenk42dfe7a2004-03-14 22:25:36 +000063 return -1;
64 }
65
66 return (int) data;
wdenk3d3befa2004-03-14 15:06:13 +000067}
68
Simon Glassaed2fbe2014-09-22 17:30:57 -060069static int pl01x_tstc(struct pl01x_regs *regs)
wdenk3d3befa2004-03-14 15:06:13 +000070{
Stuart Wood8b616ed2008-06-02 16:42:19 -040071 WATCHDOG_RESET();
Rabin Vincent72d5e442010-05-05 09:23:07 +053072 return !(readl(&regs->fr) & UART_PL01x_FR_RXFE);
wdenk3d3befa2004-03-14 15:06:13 +000073}
Marek Vasut39f61472012-09-14 22:38:46 +020074
Simon Glassaed2fbe2014-09-22 17:30:57 -060075static int pl01x_generic_serial_init(struct pl01x_regs *regs,
76 enum pl01x_type type)
77{
Simon Glassaed2fbe2014-09-22 17:30:57 -060078 switch (type) {
79 case TYPE_PL010:
Vikas Manochaf7e517b2014-11-21 10:34:22 -080080 /* disable everything */
81 writel(0, &regs->pl010_cr);
Simon Glassaed2fbe2014-09-22 17:30:57 -060082 break;
Vikas Manochad2ca9fd2014-11-21 10:34:21 -080083 case TYPE_PL011:
Vikas Manochaf7e517b2014-11-21 10:34:22 -080084 /* disable everything */
85 writel(0, &regs->pl011_cr);
Vikas Manochad2ca9fd2014-11-21 10:34:21 -080086 break;
87 default:
88 return -EINVAL;
89 }
90
91 return 0;
92}
93
Linus Walleijd77447f2015-04-21 15:10:06 +020094static int pl011_set_line_control(struct pl01x_regs *regs)
Vikas Manochad2ca9fd2014-11-21 10:34:21 -080095{
96 unsigned int lcr;
97 /*
98 * Internal update of baud rate register require line
99 * control register write
100 */
101 lcr = UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN;
Vikas Manochad2ca9fd2014-11-21 10:34:21 -0800102 writel(lcr, &regs->pl011_lcrh);
Simon Glassaed2fbe2014-09-22 17:30:57 -0600103 return 0;
104}
105
106static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
107 int clock, int baudrate)
108{
109 switch (type) {
110 case TYPE_PL010: {
111 unsigned int divisor;
112
Linus Walleijd77447f2015-04-21 15:10:06 +0200113 /* disable everything */
114 writel(0, &regs->pl010_cr);
115
Simon Glassaed2fbe2014-09-22 17:30:57 -0600116 switch (baudrate) {
117 case 9600:
118 divisor = UART_PL010_BAUD_9600;
119 break;
120 case 19200:
Alyssa Rosenzweigb2aa8892017-04-07 09:48:22 -0700121 divisor = UART_PL010_BAUD_19200;
Simon Glassaed2fbe2014-09-22 17:30:57 -0600122 break;
123 case 38400:
124 divisor = UART_PL010_BAUD_38400;
125 break;
126 case 57600:
127 divisor = UART_PL010_BAUD_57600;
128 break;
129 case 115200:
130 divisor = UART_PL010_BAUD_115200;
131 break;
132 default:
133 divisor = UART_PL010_BAUD_38400;
134 }
135
136 writel((divisor & 0xf00) >> 8, &regs->pl010_lcrm);
137 writel(divisor & 0xff, &regs->pl010_lcrl);
138
Linus Walleijd77447f2015-04-21 15:10:06 +0200139 /*
140 * Set line control for the PL010 to be 8 bits, 1 stop bit,
141 * no parity, fifo enabled
142 */
143 writel(UART_PL010_LCRH_WLEN_8 | UART_PL010_LCRH_FEN,
144 &regs->pl010_lcrh);
Simon Glassaed2fbe2014-09-22 17:30:57 -0600145 /* Finally, enable the UART */
146 writel(UART_PL010_CR_UARTEN, &regs->pl010_cr);
147 break;
148 }
149 case TYPE_PL011: {
150 unsigned int temp;
151 unsigned int divider;
152 unsigned int remainder;
153 unsigned int fraction;
154
Andre Przywarae3e2d662020-04-27 19:17:59 +0100155 /* Without a valid clock rate we cannot set up the baudrate. */
156 if (clock) {
157 /*
158 * Set baud rate
159 *
160 * IBRD = UART_CLK / (16 * BAUD_RATE)
161 * FBRD = RND((64 * MOD(UART_CLK,(16 * BAUD_RATE)))
162 * / (16 * BAUD_RATE))
163 */
164 temp = 16 * baudrate;
165 divider = clock / temp;
166 remainder = clock % temp;
167 temp = (8 * remainder) / baudrate;
168 fraction = (temp >> 1) + (temp & 1);
Simon Glassaed2fbe2014-09-22 17:30:57 -0600169
Andre Przywarae3e2d662020-04-27 19:17:59 +0100170 writel(divider, &regs->pl011_ibrd);
171 writel(fraction, &regs->pl011_fbrd);
172 }
Simon Glassaed2fbe2014-09-22 17:30:57 -0600173
Linus Walleijd77447f2015-04-21 15:10:06 +0200174 pl011_set_line_control(regs);
Simon Glassaed2fbe2014-09-22 17:30:57 -0600175 /* Finally, enable the UART */
176 writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE |
177 UART_PL011_CR_RXE | UART_PL011_CR_RTS, &regs->pl011_cr);
178 break;
179 }
180 default:
181 return -EINVAL;
182 }
183
184 return 0;
185}
186
187#ifndef CONFIG_DM_SERIAL
188static void pl01x_serial_init_baud(int baudrate)
189{
190 int clock = 0;
191
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;
197#endif
198 base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX];
199
200 pl01x_generic_serial_init(base_regs, pl01x_type);
Vikas Manochaa7deea62014-11-21 10:34:19 -0800201 pl01x_generic_setbrg(base_regs, pl01x_type, clock, baudrate);
Simon Glassaed2fbe2014-09-22 17:30:57 -0600202}
203
204/*
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.
208 */
209int pl01x_serial_init(void)
210{
211 pl01x_serial_init_baud(CONFIG_BAUDRATE);
212
213 return 0;
214}
215
216static void pl01x_serial_putc(const char c)
217{
218 if (c == '\n')
219 while (pl01x_putc(base_regs, '\r') == -EAGAIN);
220
221 while (pl01x_putc(base_regs, c) == -EAGAIN);
222}
223
224static int pl01x_serial_getc(void)
225{
226 while (1) {
227 int ch = pl01x_getc(base_regs);
228
229 if (ch == -EAGAIN) {
230 WATCHDOG_RESET();
231 continue;
232 }
233
234 return ch;
235 }
236}
237
238static int pl01x_serial_tstc(void)
239{
240 return pl01x_tstc(base_regs);
241}
242
243static void pl01x_serial_setbrg(void)
244{
245 /*
246 * Flush FIFO and wait for non-busy before changing baudrate to avoid
247 * crap in console
248 */
249 while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE))
250 WATCHDOG_RESET();
251 while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY)
252 WATCHDOG_RESET();
253 pl01x_serial_init_baud(gd->baudrate);
254}
255
Marek Vasut39f61472012-09-14 22:38:46 +0200256static struct serial_device pl01x_serial_drv = {
257 .name = "pl01x_serial",
258 .start = pl01x_serial_init,
259 .stop = NULL,
260 .setbrg = pl01x_serial_setbrg,
261 .putc = pl01x_serial_putc,
Marek Vasutec3fd682012-10-06 14:07:02 +0000262 .puts = default_serial_puts,
Marek Vasut39f61472012-09-14 22:38:46 +0200263 .getc = pl01x_serial_getc,
264 .tstc = pl01x_serial_tstc,
265};
266
267void pl01x_serial_initialize(void)
268{
269 serial_register(&pl01x_serial_drv);
270}
271
272__weak struct serial_device *default_serial_console(void)
273{
274 return &pl01x_serial_drv;
275}
Simon Glassaed2fbe2014-09-22 17:30:57 -0600276
277#endif /* nCONFIG_DM_SERIAL */
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600278
279#ifdef CONFIG_DM_SERIAL
280
Alexander Grafc9bf43d2018-03-07 22:08:25 +0100281int pl01x_serial_setbrg(struct udevice *dev, int baudrate)
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600282{
283 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
284 struct pl01x_priv *priv = dev_get_priv(dev);
285
Eric Anholtcd0fa5b2016-03-13 18:16:54 -0700286 if (!plat->skip_init) {
287 pl01x_generic_setbrg(priv->regs, priv->type, plat->clock,
288 baudrate);
289 }
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600290
291 return 0;
292}
293
Alexander Graf60019852018-01-25 12:05:55 +0100294int pl01x_serial_probe(struct udevice *dev)
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600295{
296 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
297 struct pl01x_priv *priv = dev_get_priv(dev);
298
299 priv->regs = (struct pl01x_regs *)plat->base;
300 priv->type = plat->type;
Eric Anholtcd0fa5b2016-03-13 18:16:54 -0700301 if (!plat->skip_init)
302 return pl01x_generic_serial_init(priv->regs, priv->type);
303 else
304 return 0;
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600305}
306
Alexander Grafc9bf43d2018-03-07 22:08:25 +0100307int pl01x_serial_getc(struct udevice *dev)
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600308{
309 struct pl01x_priv *priv = dev_get_priv(dev);
310
311 return pl01x_getc(priv->regs);
312}
313
Alexander Grafc9bf43d2018-03-07 22:08:25 +0100314int pl01x_serial_putc(struct udevice *dev, const char ch)
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600315{
316 struct pl01x_priv *priv = dev_get_priv(dev);
317
318 return pl01x_putc(priv->regs, ch);
319}
320
Alexander Grafc9bf43d2018-03-07 22:08:25 +0100321int pl01x_serial_pending(struct udevice *dev, bool input)
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600322{
323 struct pl01x_priv *priv = dev_get_priv(dev);
324 unsigned int fr = readl(&priv->regs->fr);
325
326 if (input)
327 return pl01x_tstc(priv->regs);
328 else
329 return fr & UART_PL01x_FR_TXFF ? 0 : 1;
330}
331
Alexander Grafc9bf43d2018-03-07 22:08:25 +0100332static const struct dm_serial_ops pl01x_serial_ops = {
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600333 .putc = pl01x_serial_putc,
334 .pending = pl01x_serial_pending,
335 .getc = pl01x_serial_getc,
336 .setbrg = pl01x_serial_setbrg,
337};
338
Masahiro Yamada0f925822015-08-12 07:31:55 +0900339#if CONFIG_IS_ENABLED(OF_CONTROL)
Vikas Manocha69751722015-05-06 11:46:29 -0700340static const struct udevice_id pl01x_serial_id[] ={
341 {.compatible = "arm,pl011", .data = TYPE_PL011},
342 {.compatible = "arm,pl010", .data = TYPE_PL010},
343 {}
344};
345
Andre Przywarae3e2d662020-04-27 19:17:59 +0100346#ifndef CONFIG_PL011_CLOCK
347#define CONFIG_PL011_CLOCK 0
348#endif
349
Alexander Graf60019852018-01-25 12:05:55 +0100350int pl01x_serial_ofdata_to_platdata(struct udevice *dev)
Vikas Manocha69751722015-05-06 11:46:29 -0700351{
352 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
Andre Przywarae3e2d662020-04-27 19:17:59 +0100353 struct clk clk;
Vikas Manocha69751722015-05-06 11:46:29 -0700354 fdt_addr_t addr;
Andre Przywarae3e2d662020-04-27 19:17:59 +0100355 int ret;
Vikas Manocha69751722015-05-06 11:46:29 -0700356
Masahiro Yamada25484932020-07-17 14:36:48 +0900357 addr = dev_read_addr(dev);
Vikas Manocha69751722015-05-06 11:46:29 -0700358 if (addr == FDT_ADDR_T_NONE)
359 return -EINVAL;
360
361 plat->base = addr;
Andre Przywarae3e2d662020-04-27 19:17:59 +0100362 plat->clock = dev_read_u32_default(dev, "clock", CONFIG_PL011_CLOCK);
363 ret = clk_get_by_index(dev, 0, &clk);
364 if (!ret) {
365 clk_enable(&clk);
366 plat->clock = clk_get_rate(&clk);
367 }
Vikas Manocha69751722015-05-06 11:46:29 -0700368 plat->type = dev_get_driver_data(dev);
Alexander Grafb3111632018-01-25 12:05:49 +0100369 plat->skip_init = dev_read_bool(dev, "skip-init");
370
Vikas Manocha69751722015-05-06 11:46:29 -0700371 return 0;
372}
373#endif
374
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600375U_BOOT_DRIVER(serial_pl01x) = {
376 .name = "serial_pl01x",
377 .id = UCLASS_SERIAL,
Vikas Manocha69751722015-05-06 11:46:29 -0700378 .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),
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600381 .probe = pl01x_serial_probe,
382 .ops = &pl01x_serial_ops,
383 .flags = DM_FLAG_PRE_RELOC,
Simon Glass59c73d72014-11-24 21:36:35 -0700384 .priv_auto_alloc_size = sizeof(struct pl01x_priv),
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600385};
386
387#endif
Sergey Temerkhanovb81406d2015-10-14 09:54:23 -0700388
389#if defined(CONFIG_DEBUG_UART_PL010) || defined(CONFIG_DEBUG_UART_PL011)
390
391#include <debug_uart.h>
392
393static void _debug_uart_init(void)
394{
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;
399
400 pl01x_generic_serial_init(regs, type);
401 pl01x_generic_setbrg(regs, type,
402 CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE);
403#endif
404}
405
406static inline void _debug_uart_putc(int ch)
407{
408 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE;
409
410 pl01x_putc(regs, ch);
411}
412
413DEBUG_UART_FUNCS
414
415#endif