blob: 38dda910217652ecf167ad52bbc53af3559e2722 [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"
wdenk3d3befa2004-03-14 15:06:13 +000023
Simon Glass8a9cd5a2014-09-22 17:30:58 -060024#ifndef CONFIG_DM_SERIAL
25
wdenk6705d812004-08-02 23:22:59 +000026static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS;
Simon Glassaed2fbe2014-09-22 17:30:57 -060027static enum pl01x_type pl01x_type __attribute__ ((section(".data")));
28static struct pl01x_regs *base_regs __attribute__ ((section(".data")));
wdenk6705d812004-08-02 23:22:59 +000029#define NUM_PORTS (sizeof(port)/sizeof(port[0]))
wdenk3d3befa2004-03-14 15:06:13 +000030
Matt Waddel249d5212010-10-07 15:48:46 -060031DECLARE_GLOBAL_DATA_PTR;
Simon Glass8a9cd5a2014-09-22 17:30:58 -060032#endif
wdenk3d3befa2004-03-14 15:06:13 +000033
Simon Glassaed2fbe2014-09-22 17:30:57 -060034static int pl01x_putc(struct pl01x_regs *regs, char c)
Rabin Vincent72d5e442010-05-05 09:23:07 +053035{
wdenk42dfe7a2004-03-14 22:25:36 +000036 /* Wait until there is space in the FIFO */
Simon Glassaed2fbe2014-09-22 17:30:57 -060037 if (readl(&regs->fr) & UART_PL01x_FR_TXFF)
38 return -EAGAIN;
wdenk42dfe7a2004-03-14 22:25:36 +000039
40 /* Send the character */
Rabin Vincent72d5e442010-05-05 09:23:07 +053041 writel(c, &regs->dr);
Simon Glassaed2fbe2014-09-22 17:30:57 -060042
43 return 0;
wdenk3d3befa2004-03-14 15:06:13 +000044}
45
Simon Glassaed2fbe2014-09-22 17:30:57 -060046static int pl01x_getc(struct pl01x_regs *regs)
wdenk3d3befa2004-03-14 15:06:13 +000047{
wdenk42dfe7a2004-03-14 22:25:36 +000048 unsigned int data;
wdenk3d3befa2004-03-14 15:06:13 +000049
wdenk42dfe7a2004-03-14 22:25:36 +000050 /* Wait until there is data in the FIFO */
Simon Glassaed2fbe2014-09-22 17:30:57 -060051 if (readl(&regs->fr) & UART_PL01x_FR_RXFE)
52 return -EAGAIN;
wdenk42dfe7a2004-03-14 22:25:36 +000053
Rabin Vincent72d5e442010-05-05 09:23:07 +053054 data = readl(&regs->dr);
wdenk42dfe7a2004-03-14 22:25:36 +000055
56 /* Check for an error flag */
57 if (data & 0xFFFFFF00) {
58 /* Clear the error */
Rabin Vincent72d5e442010-05-05 09:23:07 +053059 writel(0xFFFFFFFF, &regs->ecr);
wdenk42dfe7a2004-03-14 22:25:36 +000060 return -1;
61 }
62
63 return (int) data;
wdenk3d3befa2004-03-14 15:06:13 +000064}
65
Simon Glassaed2fbe2014-09-22 17:30:57 -060066static int pl01x_tstc(struct pl01x_regs *regs)
wdenk3d3befa2004-03-14 15:06:13 +000067{
Stuart Wood8b616ed2008-06-02 16:42:19 -040068 WATCHDOG_RESET();
Rabin Vincent72d5e442010-05-05 09:23:07 +053069 return !(readl(&regs->fr) & UART_PL01x_FR_RXFE);
wdenk3d3befa2004-03-14 15:06:13 +000070}
Marek Vasut39f61472012-09-14 22:38:46 +020071
Simon Glassaed2fbe2014-09-22 17:30:57 -060072static int pl01x_generic_serial_init(struct pl01x_regs *regs,
73 enum pl01x_type type)
74{
75 unsigned int lcr;
76
77#ifdef CONFIG_PL011_SERIAL_FLUSH_ON_INIT
78 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 }
84 }
85#endif
86
87 /* First, disable everything */
88 writel(0, &regs->pl010_cr);
89
90 /* Set the UART to be 8 bits, 1 stop bit, no parity, fifo enabled */
91 lcr = UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN;
92 writel(lcr, &regs->pl011_lcrh);
93
94 switch (type) {
95 case TYPE_PL010:
96 break;
97 case TYPE_PL011: {
98#ifdef CONFIG_PL011_SERIAL_RLCR
99 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);
108
109 writel(lcr, &regs->pl011_rlcr);
110 /* lcrh needs to be set again for change to be effective */
111 writel(lcr, &regs->pl011_lcrh);
112#endif
113 break;
114 }
115 default:
116 return -EINVAL;
117 }
118
119 return 0;
120}
121
122static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
123 int clock, int baudrate)
124{
125 switch (type) {
126 case TYPE_PL010: {
127 unsigned int divisor;
128
129 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 }
148
149 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;
188}
189
190#ifndef CONFIG_DM_SERIAL
191static void pl01x_serial_init_baud(int baudrate)
192{
193 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);
205}
206
207/*
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)
213{
214 pl01x_serial_init_baud(CONFIG_BAUDRATE);
215
216 return 0;
217}
218
219static void pl01x_serial_putc(const char c)
220{
221 if (c == '\n')
222 while (pl01x_putc(base_regs, '\r') == -EAGAIN);
223
224 while (pl01x_putc(base_regs, c) == -EAGAIN);
225}
226
227static int pl01x_serial_getc(void)
228{
229 while (1) {
230 int ch = pl01x_getc(base_regs);
231
232 if (ch == -EAGAIN) {
233 WATCHDOG_RESET();
234 continue;
235 }
236
237 return ch;
238 }
239}
240
241static int pl01x_serial_tstc(void)
242{
243 return pl01x_tstc(base_regs);
244}
245
246static 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);
257}
258
Marek Vasut39f61472012-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 Vasutec3fd682012-10-06 14:07:02 +0000265 .puts = default_serial_puts,
Marek Vasut39f61472012-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 Glassaed2fbe2014-09-22 17:30:57 -0600279
280#endif /* nCONFIG_DM_SERIAL */
Simon Glass8a9cd5a2014-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