blob: ad503afcad540c3b7901e462ba024d1a382ad71d [file] [log] [blame]
wdenk4989f872004-03-14 15:06:13 +00001/*
2 * (C) Copyright 2000
3 * Rob Taylor, Flying Pig Systems. robt@flyingpig.com.
4 *
5 * (C) Copyright 2004
6 * ARM Ltd.
7 * Philippe Robin, <philippe.robin@arm.com>
8 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
wdenk4989f872004-03-14 15:06:13 +000010 */
11
Andreas Engel0813b122008-09-08 14:30:53 +020012/* Simple U-Boot driver for the PrimeCell PL010/PL011 UARTs */
wdenk4989f872004-03-14 15:06:13 +000013
14#include <common.h>
Simon Glass3ad93fe2014-09-22 17:30:58 -060015#include <dm.h>
Simon Glassf35484d2014-09-22 17:30:57 -060016#include <errno.h>
Stuart Wood26136ef2008-06-02 16:42:19 -040017#include <watchdog.h>
Matt Waddeld6ce53e2010-10-07 15:48:46 -060018#include <asm/io.h>
Marek Vasut46e4d5f2012-09-14 22:38:46 +020019#include <serial.h>
Masahiro Yamada22c97de2014-10-24 12:41:19 +090020#include <dm/platform_data/serial_pl01x.h>
Marek Vasut46e4d5f2012-09-14 22:38:46 +020021#include <linux/compiler.h>
Simon Glassf35484d2014-09-22 17:30:57 -060022#include "serial_pl01x_internal.h"
Vikas Manocha92e349e2015-05-06 11:46:29 -070023#include <fdtdec.h>
24
25DECLARE_GLOBAL_DATA_PTR;
wdenk4989f872004-03-14 15:06:13 +000026
Simon Glass3ad93fe2014-09-22 17:30:58 -060027#ifndef CONFIG_DM_SERIAL
28
wdenkda04a8b2004-08-02 23:22:59 +000029static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS;
Simon Glassf35484d2014-09-22 17:30:57 -060030static enum pl01x_type pl01x_type __attribute__ ((section(".data")));
31static struct pl01x_regs *base_regs __attribute__ ((section(".data")));
wdenkda04a8b2004-08-02 23:22:59 +000032#define NUM_PORTS (sizeof(port)/sizeof(port[0]))
wdenk4989f872004-03-14 15:06:13 +000033
Simon Glass3ad93fe2014-09-22 17:30:58 -060034#endif
wdenk4989f872004-03-14 15:06:13 +000035
Simon Glassf35484d2014-09-22 17:30:57 -060036static int pl01x_putc(struct pl01x_regs *regs, char c)
wdenk4989f872004-03-14 15:06:13 +000037{
Simon Glassf35484d2014-09-22 17:30:57 -060038 /* Wait until there is space in the FIFO */
39 if (readl(&regs->fr) & UART_PL01x_FR_TXFF)
40 return -EAGAIN;
wdenk4989f872004-03-14 15:06:13 +000041
Simon Glassf35484d2014-09-22 17:30:57 -060042 /* Send the character */
43 writel(c, &regs->dr);
wdenk4989f872004-03-14 15:06:13 +000044
Simon Glassf35484d2014-09-22 17:30:57 -060045 return 0;
46}
wdenk4989f872004-03-14 15:06:13 +000047
Simon Glassf35484d2014-09-22 17:30:57 -060048static int pl01x_getc(struct pl01x_regs *regs)
49{
50 unsigned int data;
wdenk4989f872004-03-14 15:06:13 +000051
Simon Glassf35484d2014-09-22 17:30:57 -060052 /* Wait until there is data in the FIFO */
53 if (readl(&regs->fr) & UART_PL01x_FR_RXFE)
54 return -EAGAIN;
wdenk4989f872004-03-14 15:06:13 +000055
Simon Glassf35484d2014-09-22 17:30:57 -060056 data = readl(&regs->dr);
wdenk4989f872004-03-14 15:06:13 +000057
Simon Glassf35484d2014-09-22 17:30:57 -060058 /* Check for an error flag */
59 if (data & 0xFFFFFF00) {
60 /* Clear the error */
61 writel(0xFFFFFFFF, &regs->ecr);
62 return -1;
wdenkc35ba4e2004-03-14 22:25:36 +000063 }
64
Simon Glassf35484d2014-09-22 17:30:57 -060065 return (int) data;
wdenk4989f872004-03-14 15:06:13 +000066}
67
Simon Glassf35484d2014-09-22 17:30:57 -060068static int pl01x_tstc(struct pl01x_regs *regs)
69{
70 WATCHDOG_RESET();
71 return !(readl(&regs->fr) & UART_PL01x_FR_RXFE);
72}
Andreas Engel80438612008-09-08 10:17:31 +020073
Simon Glassf35484d2014-09-22 17:30:57 -060074static int pl01x_generic_serial_init(struct pl01x_regs *regs,
75 enum pl01x_type type)
Andreas Engel80438612008-09-08 10:17:31 +020076{
Vikas Manochabe14f152014-11-21 10:34:23 -080077 switch (type) {
78 case TYPE_PL010:
79 /* disable everything */
80 writel(0, &regs->pl010_cr);
81 break;
82 case TYPE_PL011:
John Rigby34e21ee2011-04-19 10:42:39 +000083#ifdef CONFIG_PL011_SERIAL_FLUSH_ON_INIT
Simon Glassf35484d2014-09-22 17:30:57 -060084 /* Empty RX fifo if necessary */
85 if (readl(&regs->pl011_cr) & UART_PL011_CR_UARTEN) {
86 while (!(readl(&regs->fr) & UART_PL01x_FR_RXFE))
87 readl(&regs->dr);
88 }
John Rigby34e21ee2011-04-19 10:42:39 +000089#endif
Vikas Manochaee038e22014-11-21 10:34:22 -080090 /* disable everything */
91 writel(0, &regs->pl011_cr);
Vikas Manochafe96bbd2014-11-21 10:34:21 -080092 break;
93 default:
94 return -EINVAL;
95 }
96
97 return 0;
98}
99
Linus Walleij70864f62015-04-21 15:10:06 +0200100static int pl011_set_line_control(struct pl01x_regs *regs)
Vikas Manochafe96bbd2014-11-21 10:34:21 -0800101{
102 unsigned int lcr;
103 /*
104 * Internal update of baud rate register require line
105 * control register write
106 */
107 lcr = UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN;
John Rigby34e21ee2011-04-19 10:42:39 +0000108#ifdef CONFIG_PL011_SERIAL_RLCR
Vikas Manochafe96bbd2014-11-21 10:34:21 -0800109 {
John Rigby34e21ee2011-04-19 10:42:39 +0000110 int i;
111
112 /*
113 * Program receive line control register after waiting
114 * 10 bus cycles. Delay be writing to readonly register
115 * 10 times
116 */
117 for (i = 0; i < 10; i++)
118 writel(lcr, &regs->fr);
Andreas Engel80438612008-09-08 10:17:31 +0200119
John Rigby34e21ee2011-04-19 10:42:39 +0000120 writel(lcr, &regs->pl011_rlcr);
Simon Glassf35484d2014-09-22 17:30:57 -0600121 }
Vikas Manochafe96bbd2014-11-21 10:34:21 -0800122#endif
123 writel(lcr, &regs->pl011_lcrh);
Andreas Engel80438612008-09-08 10:17:31 +0200124 return 0;
125}
126
Simon Glassf35484d2014-09-22 17:30:57 -0600127static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
128 int clock, int baudrate)
wdenk4989f872004-03-14 15:06:13 +0000129{
Simon Glassf35484d2014-09-22 17:30:57 -0600130 switch (type) {
131 case TYPE_PL010: {
132 unsigned int divisor;
wdenk4989f872004-03-14 15:06:13 +0000133
Linus Walleij70864f62015-04-21 15:10:06 +0200134 /* disable everything */
135 writel(0, &regs->pl010_cr);
136
Simon Glassf35484d2014-09-22 17:30:57 -0600137 switch (baudrate) {
138 case 9600:
139 divisor = UART_PL010_BAUD_9600;
140 break;
141 case 19200:
142 divisor = UART_PL010_BAUD_9600;
143 break;
144 case 38400:
145 divisor = UART_PL010_BAUD_38400;
146 break;
147 case 57600:
148 divisor = UART_PL010_BAUD_57600;
149 break;
150 case 115200:
151 divisor = UART_PL010_BAUD_115200;
152 break;
153 default:
154 divisor = UART_PL010_BAUD_38400;
155 }
wdenk4989f872004-03-14 15:06:13 +0000156
Simon Glassf35484d2014-09-22 17:30:57 -0600157 writel((divisor & 0xf00) >> 8, &regs->pl010_lcrm);
158 writel(divisor & 0xff, &regs->pl010_lcrl);
159
Linus Walleij70864f62015-04-21 15:10:06 +0200160 /*
161 * Set line control for the PL010 to be 8 bits, 1 stop bit,
162 * no parity, fifo enabled
163 */
164 writel(UART_PL010_LCRH_WLEN_8 | UART_PL010_LCRH_FEN,
165 &regs->pl010_lcrh);
Simon Glassf35484d2014-09-22 17:30:57 -0600166 /* Finally, enable the UART */
167 writel(UART_PL010_CR_UARTEN, &regs->pl010_cr);
168 break;
169 }
170 case TYPE_PL011: {
171 unsigned int temp;
172 unsigned int divider;
173 unsigned int remainder;
174 unsigned int fraction;
175
176 /*
177 * Set baud rate
178 *
179 * IBRD = UART_CLK / (16 * BAUD_RATE)
180 * FBRD = RND((64 * MOD(UART_CLK,(16 * BAUD_RATE)))
181 * / (16 * BAUD_RATE))
182 */
183 temp = 16 * baudrate;
184 divider = clock / temp;
185 remainder = clock % temp;
186 temp = (8 * remainder) / baudrate;
187 fraction = (temp >> 1) + (temp & 1);
188
189 writel(divider, &regs->pl011_ibrd);
190 writel(fraction, &regs->pl011_fbrd);
191
Linus Walleij70864f62015-04-21 15:10:06 +0200192 pl011_set_line_control(regs);
Simon Glassf35484d2014-09-22 17:30:57 -0600193 /* Finally, enable the UART */
194 writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE |
195 UART_PL011_CR_RXE | UART_PL011_CR_RTS, &regs->pl011_cr);
196 break;
197 }
198 default:
199 return -EINVAL;
200 }
201
202 return 0;
wdenk4989f872004-03-14 15:06:13 +0000203}
204
Simon Glassf35484d2014-09-22 17:30:57 -0600205#ifndef CONFIG_DM_SERIAL
206static void pl01x_serial_init_baud(int baudrate)
wdenk4989f872004-03-14 15:06:13 +0000207{
Simon Glassf35484d2014-09-22 17:30:57 -0600208 int clock = 0;
209
210#if defined(CONFIG_PL010_SERIAL)
211 pl01x_type = TYPE_PL010;
212#elif defined(CONFIG_PL011_SERIAL)
213 pl01x_type = TYPE_PL011;
214 clock = CONFIG_PL011_CLOCK;
215#endif
216 base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX];
217
218 pl01x_generic_serial_init(base_regs, pl01x_type);
Vikas Manochaaac23962014-11-21 10:34:19 -0800219 pl01x_generic_setbrg(base_regs, pl01x_type, clock, baudrate);
wdenk4989f872004-03-14 15:06:13 +0000220}
221
Simon Glassf35484d2014-09-22 17:30:57 -0600222/*
223 * Integrator AP has two UARTs, we use the first one, at 38400-8-N-1
224 * Integrator CP has two UARTs, use the first one, at 38400-8-N-1
225 * Versatile PB has four UARTs.
226 */
227int pl01x_serial_init(void)
wdenk4989f872004-03-14 15:06:13 +0000228{
Simon Glassf35484d2014-09-22 17:30:57 -0600229 pl01x_serial_init_baud(CONFIG_BAUDRATE);
Linus Walleijb8058e82011-10-02 11:52:52 +0000230
Simon Glassf35484d2014-09-22 17:30:57 -0600231 return 0;
wdenk4989f872004-03-14 15:06:13 +0000232}
233
Simon Glassf35484d2014-09-22 17:30:57 -0600234static void pl01x_serial_putc(const char c)
wdenk4989f872004-03-14 15:06:13 +0000235{
Simon Glassf35484d2014-09-22 17:30:57 -0600236 if (c == '\n')
237 while (pl01x_putc(base_regs, '\r') == -EAGAIN);
wdenkc35ba4e2004-03-14 22:25:36 +0000238
Simon Glassf35484d2014-09-22 17:30:57 -0600239 while (pl01x_putc(base_regs, c) == -EAGAIN);
wdenk4989f872004-03-14 15:06:13 +0000240}
241
Simon Glassf35484d2014-09-22 17:30:57 -0600242static int pl01x_serial_getc(void)
wdenk4989f872004-03-14 15:06:13 +0000243{
Simon Glassf35484d2014-09-22 17:30:57 -0600244 while (1) {
245 int ch = pl01x_getc(base_regs);
wdenkc35ba4e2004-03-14 22:25:36 +0000246
Simon Glassf35484d2014-09-22 17:30:57 -0600247 if (ch == -EAGAIN) {
248 WATCHDOG_RESET();
249 continue;
250 }
wdenk4989f872004-03-14 15:06:13 +0000251
Simon Glassf35484d2014-09-22 17:30:57 -0600252 return ch;
wdenkc35ba4e2004-03-14 22:25:36 +0000253 }
wdenk4989f872004-03-14 15:06:13 +0000254}
255
Simon Glassf35484d2014-09-22 17:30:57 -0600256static int pl01x_serial_tstc(void)
wdenk4989f872004-03-14 15:06:13 +0000257{
Simon Glassf35484d2014-09-22 17:30:57 -0600258 return pl01x_tstc(base_regs);
259}
Rabin Vincentfb3c95f2010-05-05 09:23:07 +0530260
Simon Glassf35484d2014-09-22 17:30:57 -0600261static void pl01x_serial_setbrg(void)
262{
263 /*
264 * Flush FIFO and wait for non-busy before changing baudrate to avoid
265 * crap in console
266 */
267 while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE))
268 WATCHDOG_RESET();
269 while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY)
270 WATCHDOG_RESET();
271 pl01x_serial_init_baud(gd->baudrate);
wdenk4989f872004-03-14 15:06:13 +0000272}
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200273
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200274static struct serial_device pl01x_serial_drv = {
275 .name = "pl01x_serial",
276 .start = pl01x_serial_init,
277 .stop = NULL,
278 .setbrg = pl01x_serial_setbrg,
279 .putc = pl01x_serial_putc,
Marek Vasutd9c64492012-10-06 14:07:02 +0000280 .puts = default_serial_puts,
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200281 .getc = pl01x_serial_getc,
282 .tstc = pl01x_serial_tstc,
283};
284
285void pl01x_serial_initialize(void)
286{
287 serial_register(&pl01x_serial_drv);
288}
289
290__weak struct serial_device *default_serial_console(void)
291{
292 return &pl01x_serial_drv;
293}
Simon Glassf35484d2014-09-22 17:30:57 -0600294
295#endif /* nCONFIG_DM_SERIAL */
Simon Glass3ad93fe2014-09-22 17:30:58 -0600296
297#ifdef CONFIG_DM_SERIAL
298
299struct pl01x_priv {
300 struct pl01x_regs *regs;
301 enum pl01x_type type;
302};
303
304static int pl01x_serial_setbrg(struct udevice *dev, int baudrate)
305{
306 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
307 struct pl01x_priv *priv = dev_get_priv(dev);
308
309 pl01x_generic_setbrg(priv->regs, priv->type, plat->clock, baudrate);
310
311 return 0;
312}
313
314static int pl01x_serial_probe(struct udevice *dev)
315{
316 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
317 struct pl01x_priv *priv = dev_get_priv(dev);
318
319 priv->regs = (struct pl01x_regs *)plat->base;
320 priv->type = plat->type;
321 return pl01x_generic_serial_init(priv->regs, priv->type);
322}
323
324static int pl01x_serial_getc(struct udevice *dev)
325{
326 struct pl01x_priv *priv = dev_get_priv(dev);
327
328 return pl01x_getc(priv->regs);
329}
330
331static int pl01x_serial_putc(struct udevice *dev, const char ch)
332{
333 struct pl01x_priv *priv = dev_get_priv(dev);
334
335 return pl01x_putc(priv->regs, ch);
336}
337
338static int pl01x_serial_pending(struct udevice *dev, bool input)
339{
340 struct pl01x_priv *priv = dev_get_priv(dev);
341 unsigned int fr = readl(&priv->regs->fr);
342
343 if (input)
344 return pl01x_tstc(priv->regs);
345 else
346 return fr & UART_PL01x_FR_TXFF ? 0 : 1;
347}
348
349static const struct dm_serial_ops pl01x_serial_ops = {
350 .putc = pl01x_serial_putc,
351 .pending = pl01x_serial_pending,
352 .getc = pl01x_serial_getc,
353 .setbrg = pl01x_serial_setbrg,
354};
355
Vikas Manocha92e349e2015-05-06 11:46:29 -0700356#ifdef CONFIG_OF_CONTROL
357static const struct udevice_id pl01x_serial_id[] ={
358 {.compatible = "arm,pl011", .data = TYPE_PL011},
359 {.compatible = "arm,pl010", .data = TYPE_PL010},
360 {}
361};
362
363static int pl01x_serial_ofdata_to_platdata(struct udevice *dev)
364{
365 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
366 fdt_addr_t addr;
367
368 addr = fdtdec_get_addr(gd->fdt_blob, dev->of_offset, "reg");
369 if (addr == FDT_ADDR_T_NONE)
370 return -EINVAL;
371
372 plat->base = addr;
373 plat->clock = fdtdec_get_int(gd->fdt_blob, dev->of_offset, "clock", 1);
374 plat->type = dev_get_driver_data(dev);
375 return 0;
376}
377#endif
378
Simon Glass3ad93fe2014-09-22 17:30:58 -0600379U_BOOT_DRIVER(serial_pl01x) = {
380 .name = "serial_pl01x",
381 .id = UCLASS_SERIAL,
Vikas Manocha92e349e2015-05-06 11:46:29 -0700382 .of_match = of_match_ptr(pl01x_serial_id),
383 .ofdata_to_platdata = of_match_ptr(pl01x_serial_ofdata_to_platdata),
384 .platdata_auto_alloc_size = sizeof(struct pl01x_serial_platdata),
Simon Glass3ad93fe2014-09-22 17:30:58 -0600385 .probe = pl01x_serial_probe,
386 .ops = &pl01x_serial_ops,
387 .flags = DM_FLAG_PRE_RELOC,
Simon Glass900de912014-11-24 21:36:35 -0700388 .priv_auto_alloc_size = sizeof(struct pl01x_priv),
Simon Glass3ad93fe2014-09-22 17:30:58 -0600389};
390
391#endif