blob: 6f83835fa8cd2a3748149c45bd6c5abb113a952f [file] [log] [blame]
wdenk3d3befa2004-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 Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
wdenk3d3befa2004-03-14 15:06:13 +000010 */
11
Andreas Engel48d01922008-09-08 14:30:53 +020012/* Simple U-Boot driver for the PrimeCell PL010/PL011 UARTs */
wdenk3d3befa2004-03-14 15:06:13 +000013
14#include <common.h>
Simon Glass8a9cd5a2014-09-22 17:30:58 -060015#include <dm.h>
Simon Glassaed2fbe2014-09-22 17:30:57 -060016#include <errno.h>
Stuart Wood8b616ed2008-06-02 16:42:19 -040017#include <watchdog.h>
Matt Waddel249d5212010-10-07 15:48:46 -060018#include <asm/io.h>
Marek Vasut39f61472012-09-14 22:38:46 +020019#include <serial.h>
Masahiro Yamada86256b72014-10-24 12:41:19 +090020#include <dm/platform_data/serial_pl01x.h>
Marek Vasut39f61472012-09-14 22:38:46 +020021#include <linux/compiler.h>
Simon Glassaed2fbe2014-09-22 17:30:57 -060022#include "serial_pl01x_internal.h"
Vikas Manocha69751722015-05-06 11:46:29 -070023#include <fdtdec.h>
24
25DECLARE_GLOBAL_DATA_PTR;
wdenk3d3befa2004-03-14 15:06:13 +000026
Simon Glass8a9cd5a2014-09-22 17:30:58 -060027#ifndef CONFIG_DM_SERIAL
28
wdenk6705d812004-08-02 23:22:59 +000029static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS;
Simon Glassaed2fbe2014-09-22 17:30:57 -060030static enum pl01x_type pl01x_type __attribute__ ((section(".data")));
31static struct pl01x_regs *base_regs __attribute__ ((section(".data")));
wdenk6705d812004-08-02 23:22:59 +000032#define NUM_PORTS (sizeof(port)/sizeof(port[0]))
wdenk3d3befa2004-03-14 15:06:13 +000033
Simon Glass8a9cd5a2014-09-22 17:30:58 -060034#endif
wdenk3d3befa2004-03-14 15:06:13 +000035
Simon Glassaed2fbe2014-09-22 17:30:57 -060036static int pl01x_putc(struct pl01x_regs *regs, char c)
Rabin Vincent72d5e442010-05-05 09:23:07 +053037{
wdenk42dfe7a2004-03-14 22:25:36 +000038 /* Wait until there is space in the FIFO */
Simon Glassaed2fbe2014-09-22 17:30:57 -060039 if (readl(&regs->fr) & UART_PL01x_FR_TXFF)
40 return -EAGAIN;
wdenk42dfe7a2004-03-14 22:25:36 +000041
42 /* Send the character */
Rabin Vincent72d5e442010-05-05 09:23:07 +053043 writel(c, &regs->dr);
Simon Glassaed2fbe2014-09-22 17:30:57 -060044
45 return 0;
wdenk3d3befa2004-03-14 15:06:13 +000046}
47
Simon Glassaed2fbe2014-09-22 17:30:57 -060048static int pl01x_getc(struct pl01x_regs *regs)
wdenk3d3befa2004-03-14 15:06:13 +000049{
wdenk42dfe7a2004-03-14 22:25:36 +000050 unsigned int data;
wdenk3d3befa2004-03-14 15:06:13 +000051
wdenk42dfe7a2004-03-14 22:25:36 +000052 /* Wait until there is data in the FIFO */
Simon Glassaed2fbe2014-09-22 17:30:57 -060053 if (readl(&regs->fr) & UART_PL01x_FR_RXFE)
54 return -EAGAIN;
wdenk42dfe7a2004-03-14 22:25:36 +000055
Rabin Vincent72d5e442010-05-05 09:23:07 +053056 data = readl(&regs->dr);
wdenk42dfe7a2004-03-14 22:25:36 +000057
58 /* Check for an error flag */
59 if (data & 0xFFFFFF00) {
60 /* Clear the error */
Rabin Vincent72d5e442010-05-05 09:23:07 +053061 writel(0xFFFFFFFF, &regs->ecr);
wdenk42dfe7a2004-03-14 22:25:36 +000062 return -1;
63 }
64
65 return (int) data;
wdenk3d3befa2004-03-14 15:06:13 +000066}
67
Simon Glassaed2fbe2014-09-22 17:30:57 -060068static int pl01x_tstc(struct pl01x_regs *regs)
wdenk3d3befa2004-03-14 15:06:13 +000069{
Stuart Wood8b616ed2008-06-02 16:42:19 -040070 WATCHDOG_RESET();
Rabin Vincent72d5e442010-05-05 09:23:07 +053071 return !(readl(&regs->fr) & UART_PL01x_FR_RXFE);
wdenk3d3befa2004-03-14 15:06:13 +000072}
Marek Vasut39f61472012-09-14 22:38:46 +020073
Simon Glassaed2fbe2014-09-22 17:30:57 -060074static int pl01x_generic_serial_init(struct pl01x_regs *regs,
75 enum pl01x_type type)
76{
Simon Glassaed2fbe2014-09-22 17:30:57 -060077 switch (type) {
78 case TYPE_PL010:
Vikas Manochaf7e517b2014-11-21 10:34:22 -080079 /* disable everything */
80 writel(0, &regs->pl010_cr);
Simon Glassaed2fbe2014-09-22 17:30:57 -060081 break;
Vikas Manochad2ca9fd2014-11-21 10:34:21 -080082 case TYPE_PL011:
Vikas Manochaf7e517b2014-11-21 10:34:22 -080083 /* disable everything */
84 writel(0, &regs->pl011_cr);
Vikas Manochad2ca9fd2014-11-21 10:34:21 -080085 break;
86 default:
87 return -EINVAL;
88 }
89
90 return 0;
91}
92
Linus Walleijd77447f2015-04-21 15:10:06 +020093static int pl011_set_line_control(struct pl01x_regs *regs)
Vikas Manochad2ca9fd2014-11-21 10:34:21 -080094{
95 unsigned int lcr;
96 /*
97 * Internal update of baud rate register require line
98 * control register write
99 */
100 lcr = UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN;
Vikas Manochad2ca9fd2014-11-21 10:34:21 -0800101 writel(lcr, &regs->pl011_lcrh);
Simon Glassaed2fbe2014-09-22 17:30:57 -0600102 return 0;
103}
104
105static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
106 int clock, int baudrate)
107{
108 switch (type) {
109 case TYPE_PL010: {
110 unsigned int divisor;
111
Linus Walleijd77447f2015-04-21 15:10:06 +0200112 /* disable everything */
113 writel(0, &regs->pl010_cr);
114
Simon Glassaed2fbe2014-09-22 17:30:57 -0600115 switch (baudrate) {
116 case 9600:
117 divisor = UART_PL010_BAUD_9600;
118 break;
119 case 19200:
120 divisor = UART_PL010_BAUD_9600;
121 break;
122 case 38400:
123 divisor = UART_PL010_BAUD_38400;
124 break;
125 case 57600:
126 divisor = UART_PL010_BAUD_57600;
127 break;
128 case 115200:
129 divisor = UART_PL010_BAUD_115200;
130 break;
131 default:
132 divisor = UART_PL010_BAUD_38400;
133 }
134
135 writel((divisor & 0xf00) >> 8, &regs->pl010_lcrm);
136 writel(divisor & 0xff, &regs->pl010_lcrl);
137
Linus Walleijd77447f2015-04-21 15:10:06 +0200138 /*
139 * Set line control for the PL010 to be 8 bits, 1 stop bit,
140 * no parity, fifo enabled
141 */
142 writel(UART_PL010_LCRH_WLEN_8 | UART_PL010_LCRH_FEN,
143 &regs->pl010_lcrh);
Simon Glassaed2fbe2014-09-22 17:30:57 -0600144 /* Finally, enable the UART */
145 writel(UART_PL010_CR_UARTEN, &regs->pl010_cr);
146 break;
147 }
148 case TYPE_PL011: {
149 unsigned int temp;
150 unsigned int divider;
151 unsigned int remainder;
152 unsigned int fraction;
153
154 /*
155 * Set baud rate
156 *
157 * IBRD = UART_CLK / (16 * BAUD_RATE)
158 * FBRD = RND((64 * MOD(UART_CLK,(16 * BAUD_RATE)))
159 * / (16 * BAUD_RATE))
160 */
161 temp = 16 * baudrate;
162 divider = clock / temp;
163 remainder = clock % temp;
164 temp = (8 * remainder) / baudrate;
165 fraction = (temp >> 1) + (temp & 1);
166
167 writel(divider, &regs->pl011_ibrd);
168 writel(fraction, &regs->pl011_fbrd);
169
Linus Walleijd77447f2015-04-21 15:10:06 +0200170 pl011_set_line_control(regs);
Simon Glassaed2fbe2014-09-22 17:30:57 -0600171 /* Finally, enable the UART */
172 writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE |
173 UART_PL011_CR_RXE | UART_PL011_CR_RTS, &regs->pl011_cr);
174 break;
175 }
176 default:
177 return -EINVAL;
178 }
179
180 return 0;
181}
182
183#ifndef CONFIG_DM_SERIAL
184static void pl01x_serial_init_baud(int baudrate)
185{
186 int clock = 0;
187
188#if defined(CONFIG_PL010_SERIAL)
189 pl01x_type = TYPE_PL010;
190#elif defined(CONFIG_PL011_SERIAL)
191 pl01x_type = TYPE_PL011;
192 clock = CONFIG_PL011_CLOCK;
193#endif
194 base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX];
195
196 pl01x_generic_serial_init(base_regs, pl01x_type);
Vikas Manochaa7deea62014-11-21 10:34:19 -0800197 pl01x_generic_setbrg(base_regs, pl01x_type, clock, baudrate);
Simon Glassaed2fbe2014-09-22 17:30:57 -0600198}
199
200/*
201 * Integrator AP has two UARTs, we use the first one, at 38400-8-N-1
202 * Integrator CP has two UARTs, use the first one, at 38400-8-N-1
203 * Versatile PB has four UARTs.
204 */
205int pl01x_serial_init(void)
206{
207 pl01x_serial_init_baud(CONFIG_BAUDRATE);
208
209 return 0;
210}
211
212static void pl01x_serial_putc(const char c)
213{
214 if (c == '\n')
215 while (pl01x_putc(base_regs, '\r') == -EAGAIN);
216
217 while (pl01x_putc(base_regs, c) == -EAGAIN);
218}
219
220static int pl01x_serial_getc(void)
221{
222 while (1) {
223 int ch = pl01x_getc(base_regs);
224
225 if (ch == -EAGAIN) {
226 WATCHDOG_RESET();
227 continue;
228 }
229
230 return ch;
231 }
232}
233
234static int pl01x_serial_tstc(void)
235{
236 return pl01x_tstc(base_regs);
237}
238
239static void pl01x_serial_setbrg(void)
240{
241 /*
242 * Flush FIFO and wait for non-busy before changing baudrate to avoid
243 * crap in console
244 */
245 while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE))
246 WATCHDOG_RESET();
247 while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY)
248 WATCHDOG_RESET();
249 pl01x_serial_init_baud(gd->baudrate);
250}
251
Marek Vasut39f61472012-09-14 22:38:46 +0200252static struct serial_device pl01x_serial_drv = {
253 .name = "pl01x_serial",
254 .start = pl01x_serial_init,
255 .stop = NULL,
256 .setbrg = pl01x_serial_setbrg,
257 .putc = pl01x_serial_putc,
Marek Vasutec3fd682012-10-06 14:07:02 +0000258 .puts = default_serial_puts,
Marek Vasut39f61472012-09-14 22:38:46 +0200259 .getc = pl01x_serial_getc,
260 .tstc = pl01x_serial_tstc,
261};
262
263void pl01x_serial_initialize(void)
264{
265 serial_register(&pl01x_serial_drv);
266}
267
268__weak struct serial_device *default_serial_console(void)
269{
270 return &pl01x_serial_drv;
271}
Simon Glassaed2fbe2014-09-22 17:30:57 -0600272
273#endif /* nCONFIG_DM_SERIAL */
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600274
275#ifdef CONFIG_DM_SERIAL
276
277struct pl01x_priv {
278 struct pl01x_regs *regs;
279 enum pl01x_type type;
280};
281
282static int pl01x_serial_setbrg(struct udevice *dev, int baudrate)
283{
284 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
285 struct pl01x_priv *priv = dev_get_priv(dev);
286
Eric Anholtcd0fa5b2016-03-13 18:16:54 -0700287 if (!plat->skip_init) {
288 pl01x_generic_setbrg(priv->regs, priv->type, plat->clock,
289 baudrate);
290 }
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600291
292 return 0;
293}
294
295static int pl01x_serial_probe(struct udevice *dev)
296{
297 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
298 struct pl01x_priv *priv = dev_get_priv(dev);
299
300 priv->regs = (struct pl01x_regs *)plat->base;
301 priv->type = plat->type;
Eric Anholtcd0fa5b2016-03-13 18:16:54 -0700302 if (!plat->skip_init)
303 return pl01x_generic_serial_init(priv->regs, priv->type);
304 else
305 return 0;
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600306}
307
308static int pl01x_serial_getc(struct udevice *dev)
309{
310 struct pl01x_priv *priv = dev_get_priv(dev);
311
312 return pl01x_getc(priv->regs);
313}
314
315static int pl01x_serial_putc(struct udevice *dev, const char ch)
316{
317 struct pl01x_priv *priv = dev_get_priv(dev);
318
319 return pl01x_putc(priv->regs, ch);
320}
321
322static int pl01x_serial_pending(struct udevice *dev, bool input)
323{
324 struct pl01x_priv *priv = dev_get_priv(dev);
325 unsigned int fr = readl(&priv->regs->fr);
326
327 if (input)
328 return pl01x_tstc(priv->regs);
329 else
330 return fr & UART_PL01x_FR_TXFF ? 0 : 1;
331}
332
333static const struct dm_serial_ops pl01x_serial_ops = {
334 .putc = pl01x_serial_putc,
335 .pending = pl01x_serial_pending,
336 .getc = pl01x_serial_getc,
337 .setbrg = pl01x_serial_setbrg,
338};
339
Masahiro Yamada0f925822015-08-12 07:31:55 +0900340#if CONFIG_IS_ENABLED(OF_CONTROL)
Vikas Manocha69751722015-05-06 11:46:29 -0700341static const struct udevice_id pl01x_serial_id[] ={
342 {.compatible = "arm,pl011", .data = TYPE_PL011},
343 {.compatible = "arm,pl010", .data = TYPE_PL010},
344 {}
345};
346
347static int pl01x_serial_ofdata_to_platdata(struct udevice *dev)
348{
349 struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
350 fdt_addr_t addr;
351
Simon Glass4e9838c2015-08-11 08:33:29 -0600352 addr = dev_get_addr(dev);
Vikas Manocha69751722015-05-06 11:46:29 -0700353 if (addr == FDT_ADDR_T_NONE)
354 return -EINVAL;
355
356 plat->base = addr;
357 plat->clock = fdtdec_get_int(gd->fdt_blob, dev->of_offset, "clock", 1);
358 plat->type = dev_get_driver_data(dev);
359 return 0;
360}
361#endif
362
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600363U_BOOT_DRIVER(serial_pl01x) = {
364 .name = "serial_pl01x",
365 .id = UCLASS_SERIAL,
Vikas Manocha69751722015-05-06 11:46:29 -0700366 .of_match = of_match_ptr(pl01x_serial_id),
367 .ofdata_to_platdata = of_match_ptr(pl01x_serial_ofdata_to_platdata),
368 .platdata_auto_alloc_size = sizeof(struct pl01x_serial_platdata),
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600369 .probe = pl01x_serial_probe,
370 .ops = &pl01x_serial_ops,
371 .flags = DM_FLAG_PRE_RELOC,
Simon Glass59c73d72014-11-24 21:36:35 -0700372 .priv_auto_alloc_size = sizeof(struct pl01x_priv),
Simon Glass8a9cd5a2014-09-22 17:30:58 -0600373};
374
375#endif
Sergey Temerkhanovb81406d2015-10-14 09:54:23 -0700376
377#if defined(CONFIG_DEBUG_UART_PL010) || defined(CONFIG_DEBUG_UART_PL011)
378
379#include <debug_uart.h>
380
381static void _debug_uart_init(void)
382{
383#ifndef CONFIG_DEBUG_UART_SKIP_INIT
384 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE;
385 enum pl01x_type type = CONFIG_IS_ENABLED(DEBUG_UART_PL011) ?
386 TYPE_PL011 : TYPE_PL010;
387
388 pl01x_generic_serial_init(regs, type);
389 pl01x_generic_setbrg(regs, type,
390 CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE);
391#endif
392}
393
394static inline void _debug_uart_putc(int ch)
395{
396 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE;
397
398 pl01x_putc(regs, ch);
399}
400
401DEBUG_UART_FUNCS
402
403#endif