blob: 38dda910217652ecf167ad52bbc53af3559e2722 [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"
wdenk4989f872004-03-14 15:06:13 +000023
Simon Glass3ad93fe2014-09-22 17:30:58 -060024#ifndef CONFIG_DM_SERIAL
25
wdenkda04a8b2004-08-02 23:22:59 +000026static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS;
Simon Glassf35484d2014-09-22 17:30:57 -060027static enum pl01x_type pl01x_type __attribute__ ((section(".data")));
28static struct pl01x_regs *base_regs __attribute__ ((section(".data")));
wdenkda04a8b2004-08-02 23:22:59 +000029#define NUM_PORTS (sizeof(port)/sizeof(port[0]))
wdenk4989f872004-03-14 15:06:13 +000030
Matt Waddeld6ce53e2010-10-07 15:48:46 -060031DECLARE_GLOBAL_DATA_PTR;
Simon Glass3ad93fe2014-09-22 17:30:58 -060032#endif
wdenk4989f872004-03-14 15:06:13 +000033
Simon Glassf35484d2014-09-22 17:30:57 -060034static int pl01x_putc(struct pl01x_regs *regs, char c)
wdenk4989f872004-03-14 15:06:13 +000035{
Simon Glassf35484d2014-09-22 17:30:57 -060036 /* Wait until there is space in the FIFO */
37 if (readl(&regs->fr) & UART_PL01x_FR_TXFF)
38 return -EAGAIN;
wdenk4989f872004-03-14 15:06:13 +000039
Simon Glassf35484d2014-09-22 17:30:57 -060040 /* Send the character */
41 writel(c, &regs->dr);
wdenk4989f872004-03-14 15:06:13 +000042
Simon Glassf35484d2014-09-22 17:30:57 -060043 return 0;
44}
wdenk4989f872004-03-14 15:06:13 +000045
Simon Glassf35484d2014-09-22 17:30:57 -060046static int pl01x_getc(struct pl01x_regs *regs)
47{
48 unsigned int data;
wdenk4989f872004-03-14 15:06:13 +000049
Simon Glassf35484d2014-09-22 17:30:57 -060050 /* Wait until there is data in the FIFO */
51 if (readl(&regs->fr) & UART_PL01x_FR_RXFE)
52 return -EAGAIN;
wdenk4989f872004-03-14 15:06:13 +000053
Simon Glassf35484d2014-09-22 17:30:57 -060054 data = readl(&regs->dr);
wdenk4989f872004-03-14 15:06:13 +000055
Simon Glassf35484d2014-09-22 17:30:57 -060056 /* Check for an error flag */
57 if (data & 0xFFFFFF00) {
58 /* Clear the error */
59 writel(0xFFFFFFFF, &regs->ecr);
60 return -1;
wdenkc35ba4e2004-03-14 22:25:36 +000061 }
62
Simon Glassf35484d2014-09-22 17:30:57 -060063 return (int) data;
wdenk4989f872004-03-14 15:06:13 +000064}
65
Simon Glassf35484d2014-09-22 17:30:57 -060066static int pl01x_tstc(struct pl01x_regs *regs)
67{
68 WATCHDOG_RESET();
69 return !(readl(&regs->fr) & UART_PL01x_FR_RXFE);
70}
Andreas Engel80438612008-09-08 10:17:31 +020071
Simon Glassf35484d2014-09-22 17:30:57 -060072static int pl01x_generic_serial_init(struct pl01x_regs *regs,
73 enum pl01x_type type)
Andreas Engel80438612008-09-08 10:17:31 +020074{
John Rigby34e21ee2011-04-19 10:42:39 +000075 unsigned int lcr;
76
77#ifdef CONFIG_PL011_SERIAL_FLUSH_ON_INIT
Simon Glassf35484d2014-09-22 17:30:57 -060078 if (type == TYPE_PL011) {
79 /* Empty RX fifo if necessary */
80 if (readl(&regs->pl011_cr) & UART_PL011_CR_UARTEN) {
81 while (!(readl(&regs->fr) & UART_PL01x_FR_RXFE))
82 readl(&regs->dr);
83 }
John Rigby34e21ee2011-04-19 10:42:39 +000084 }
85#endif
Andreas Engel80438612008-09-08 10:17:31 +020086
Matt Waddeld6ce53e2010-10-07 15:48:46 -060087 /* First, disable everything */
Simon Glassf35484d2014-09-22 17:30:57 -060088 writel(0, &regs->pl010_cr);
Andreas Engel80438612008-09-08 10:17:31 +020089
Matt Waddeld6ce53e2010-10-07 15:48:46 -060090 /* Set the UART to be 8 bits, 1 stop bit, no parity, fifo enabled */
John Rigby34e21ee2011-04-19 10:42:39 +000091 lcr = UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN;
92 writel(lcr, &regs->pl011_lcrh);
93
Simon Glassf35484d2014-09-22 17:30:57 -060094 switch (type) {
95 case TYPE_PL010:
96 break;
97 case TYPE_PL011: {
John Rigby34e21ee2011-04-19 10:42:39 +000098#ifdef CONFIG_PL011_SERIAL_RLCR
John Rigby34e21ee2011-04-19 10:42:39 +000099 int i;
100
101 /*
102 * Program receive line control register after waiting
103 * 10 bus cycles. Delay be writing to readonly register
104 * 10 times
105 */
106 for (i = 0; i < 10; i++)
107 writel(lcr, &regs->fr);
Andreas Engel80438612008-09-08 10:17:31 +0200108
John Rigby34e21ee2011-04-19 10:42:39 +0000109 writel(lcr, &regs->pl011_rlcr);
Mathieu J. Poirier4a036fe2012-08-03 11:05:12 +0000110 /* lcrh needs to be set again for change to be effective */
111 writel(lcr, &regs->pl011_lcrh);
John Rigby34e21ee2011-04-19 10:42:39 +0000112#endif
Simon Glassf35484d2014-09-22 17:30:57 -0600113 break;
114 }
115 default:
116 return -EINVAL;
117 }
Andreas Engel80438612008-09-08 10:17:31 +0200118
119 return 0;
120}
121
Simon Glassf35484d2014-09-22 17:30:57 -0600122static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
123 int clock, int baudrate)
wdenk4989f872004-03-14 15:06:13 +0000124{
Simon Glassf35484d2014-09-22 17:30:57 -0600125 switch (type) {
126 case TYPE_PL010: {
127 unsigned int divisor;
wdenk4989f872004-03-14 15:06:13 +0000128
Simon Glassf35484d2014-09-22 17:30:57 -0600129 switch (baudrate) {
130 case 9600:
131 divisor = UART_PL010_BAUD_9600;
132 break;
133 case 19200:
134 divisor = UART_PL010_BAUD_9600;
135 break;
136 case 38400:
137 divisor = UART_PL010_BAUD_38400;
138 break;
139 case 57600:
140 divisor = UART_PL010_BAUD_57600;
141 break;
142 case 115200:
143 divisor = UART_PL010_BAUD_115200;
144 break;
145 default:
146 divisor = UART_PL010_BAUD_38400;
147 }
wdenk4989f872004-03-14 15:06:13 +0000148
Simon Glassf35484d2014-09-22 17:30:57 -0600149 writel((divisor & 0xf00) >> 8, &regs->pl010_lcrm);
150 writel(divisor & 0xff, &regs->pl010_lcrl);
151
152 /* Finally, enable the UART */
153 writel(UART_PL010_CR_UARTEN, &regs->pl010_cr);
154 break;
155 }
156 case TYPE_PL011: {
157 unsigned int temp;
158 unsigned int divider;
159 unsigned int remainder;
160 unsigned int fraction;
161
162 /*
163 * Set baud rate
164 *
165 * IBRD = UART_CLK / (16 * BAUD_RATE)
166 * FBRD = RND((64 * MOD(UART_CLK,(16 * BAUD_RATE)))
167 * / (16 * BAUD_RATE))
168 */
169 temp = 16 * baudrate;
170 divider = clock / temp;
171 remainder = clock % temp;
172 temp = (8 * remainder) / baudrate;
173 fraction = (temp >> 1) + (temp & 1);
174
175 writel(divider, &regs->pl011_ibrd);
176 writel(fraction, &regs->pl011_fbrd);
177
178 /* Finally, enable the UART */
179 writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE |
180 UART_PL011_CR_RXE | UART_PL011_CR_RTS, &regs->pl011_cr);
181 break;
182 }
183 default:
184 return -EINVAL;
185 }
186
187 return 0;
wdenk4989f872004-03-14 15:06:13 +0000188}
189
Simon Glassf35484d2014-09-22 17:30:57 -0600190#ifndef CONFIG_DM_SERIAL
191static void pl01x_serial_init_baud(int baudrate)
wdenk4989f872004-03-14 15:06:13 +0000192{
Simon Glassf35484d2014-09-22 17:30:57 -0600193 int clock = 0;
194
195#if defined(CONFIG_PL010_SERIAL)
196 pl01x_type = TYPE_PL010;
197#elif defined(CONFIG_PL011_SERIAL)
198 pl01x_type = TYPE_PL011;
199 clock = CONFIG_PL011_CLOCK;
200#endif
201 base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX];
202
203 pl01x_generic_serial_init(base_regs, pl01x_type);
204 pl01x_generic_setbrg(base_regs, TYPE_PL010, clock, baudrate);
wdenk4989f872004-03-14 15:06:13 +0000205}
206
Simon Glassf35484d2014-09-22 17:30:57 -0600207/*
208 * Integrator AP has two UARTs, we use the first one, at 38400-8-N-1
209 * Integrator CP has two UARTs, use the first one, at 38400-8-N-1
210 * Versatile PB has four UARTs.
211 */
212int pl01x_serial_init(void)
wdenk4989f872004-03-14 15:06:13 +0000213{
Simon Glassf35484d2014-09-22 17:30:57 -0600214 pl01x_serial_init_baud(CONFIG_BAUDRATE);
Linus Walleijb8058e82011-10-02 11:52:52 +0000215
Simon Glassf35484d2014-09-22 17:30:57 -0600216 return 0;
wdenk4989f872004-03-14 15:06:13 +0000217}
218
Simon Glassf35484d2014-09-22 17:30:57 -0600219static void pl01x_serial_putc(const char c)
wdenk4989f872004-03-14 15:06:13 +0000220{
Simon Glassf35484d2014-09-22 17:30:57 -0600221 if (c == '\n')
222 while (pl01x_putc(base_regs, '\r') == -EAGAIN);
wdenkc35ba4e2004-03-14 22:25:36 +0000223
Simon Glassf35484d2014-09-22 17:30:57 -0600224 while (pl01x_putc(base_regs, c) == -EAGAIN);
wdenk4989f872004-03-14 15:06:13 +0000225}
226
Simon Glassf35484d2014-09-22 17:30:57 -0600227static int pl01x_serial_getc(void)
wdenk4989f872004-03-14 15:06:13 +0000228{
Simon Glassf35484d2014-09-22 17:30:57 -0600229 while (1) {
230 int ch = pl01x_getc(base_regs);
wdenkc35ba4e2004-03-14 22:25:36 +0000231
Simon Glassf35484d2014-09-22 17:30:57 -0600232 if (ch == -EAGAIN) {
233 WATCHDOG_RESET();
234 continue;
235 }
wdenk4989f872004-03-14 15:06:13 +0000236
Simon Glassf35484d2014-09-22 17:30:57 -0600237 return ch;
wdenkc35ba4e2004-03-14 22:25:36 +0000238 }
wdenk4989f872004-03-14 15:06:13 +0000239}
240
Simon Glassf35484d2014-09-22 17:30:57 -0600241static int pl01x_serial_tstc(void)
wdenk4989f872004-03-14 15:06:13 +0000242{
Simon Glassf35484d2014-09-22 17:30:57 -0600243 return pl01x_tstc(base_regs);
244}
Rabin Vincentfb3c95f2010-05-05 09:23:07 +0530245
Simon Glassf35484d2014-09-22 17:30:57 -0600246static void pl01x_serial_setbrg(void)
247{
248 /*
249 * Flush FIFO and wait for non-busy before changing baudrate to avoid
250 * crap in console
251 */
252 while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE))
253 WATCHDOG_RESET();
254 while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY)
255 WATCHDOG_RESET();
256 pl01x_serial_init_baud(gd->baudrate);
wdenk4989f872004-03-14 15:06:13 +0000257}
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200258
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200259static struct serial_device pl01x_serial_drv = {
260 .name = "pl01x_serial",
261 .start = pl01x_serial_init,
262 .stop = NULL,
263 .setbrg = pl01x_serial_setbrg,
264 .putc = pl01x_serial_putc,
Marek Vasutd9c64492012-10-06 14:07:02 +0000265 .puts = default_serial_puts,
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200266 .getc = pl01x_serial_getc,
267 .tstc = pl01x_serial_tstc,
268};
269
270void pl01x_serial_initialize(void)
271{
272 serial_register(&pl01x_serial_drv);
273}
274
275__weak struct serial_device *default_serial_console(void)
276{
277 return &pl01x_serial_drv;
278}
Simon Glassf35484d2014-09-22 17:30:57 -0600279
280#endif /* nCONFIG_DM_SERIAL */
Simon Glass3ad93fe2014-09-22 17:30:58 -0600281
282#ifdef CONFIG_DM_SERIAL
283
284struct pl01x_priv {
285 struct pl01x_regs *regs;
286 enum pl01x_type type;
287};
288
289static int pl01x_serial_setbrg(struct udevice *dev, int baudrate)
290{
291 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
292 struct pl01x_priv *priv = dev_get_priv(dev);
293
294 pl01x_generic_setbrg(priv->regs, priv->type, plat->clock, baudrate);
295
296 return 0;
297}
298
299static int pl01x_serial_probe(struct udevice *dev)
300{
301 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
302 struct pl01x_priv *priv = dev_get_priv(dev);
303
304 priv->regs = (struct pl01x_regs *)plat->base;
305 priv->type = plat->type;
306 return pl01x_generic_serial_init(priv->regs, priv->type);
307}
308
309static int pl01x_serial_getc(struct udevice *dev)
310{
311 struct pl01x_priv *priv = dev_get_priv(dev);
312
313 return pl01x_getc(priv->regs);
314}
315
316static int pl01x_serial_putc(struct udevice *dev, const char ch)
317{
318 struct pl01x_priv *priv = dev_get_priv(dev);
319
320 return pl01x_putc(priv->regs, ch);
321}
322
323static int pl01x_serial_pending(struct udevice *dev, bool input)
324{
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
334static const struct dm_serial_ops pl01x_serial_ops = {
335 .putc = pl01x_serial_putc,
336 .pending = pl01x_serial_pending,
337 .getc = pl01x_serial_getc,
338 .setbrg = pl01x_serial_setbrg,
339};
340
341U_BOOT_DRIVER(serial_pl01x) = {
342 .name = "serial_pl01x",
343 .id = UCLASS_SERIAL,
344 .probe = pl01x_serial_probe,
345 .ops = &pl01x_serial_ops,
346 .flags = DM_FLAG_PRE_RELOC,
347};
348
349#endif