blob: 80c35963b8f2988af861c1f02e6c368799c2e012 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk4989f872004-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>
wdenk4989f872004-03-14 15:06:13 +00009 */
10
Andreas Engel0813b122008-09-08 14:30:53 +020011/* Simple U-Boot driver for the PrimeCell PL010/PL011 UARTs */
wdenk4989f872004-03-14 15:06:13 +000012
Simon Glass3ba929a2020-10-30 21:38:53 -060013#include <asm/global_data.h>
Andre Przywara7ee2dab2020-04-27 19:17:59 +010014/* For get_bus_freq() */
15#include <clock_legacy.h>
Simon Glass3ad93fe2014-09-22 17:30:58 -060016#include <dm.h>
Andre Przywara7ee2dab2020-04-27 19:17:59 +010017#include <clk.h>
Simon Glassf35484d2014-09-22 17:30:57 -060018#include <errno.h>
Stuart Wood26136ef2008-06-02 16:42:19 -040019#include <watchdog.h>
Matt Waddeld6ce53e2010-10-07 15:48:46 -060020#include <asm/io.h>
Marek Vasut46e4d5f2012-09-14 22:38:46 +020021#include <serial.h>
Michal Simekf96c7892020-10-13 15:00:24 +020022#include <dm/device_compat.h>
Masahiro Yamada22c97de2014-10-24 12:41:19 +090023#include <dm/platform_data/serial_pl01x.h>
Marek Vasut46e4d5f2012-09-14 22:38:46 +020024#include <linux/compiler.h>
Simon Glassf35484d2014-09-22 17:30:57 -060025#include "serial_pl01x_internal.h"
Vikas Manocha92e349e2015-05-06 11:46:29 -070026
27DECLARE_GLOBAL_DATA_PTR;
wdenk4989f872004-03-14 15:06:13 +000028
Tom Rini952cc382022-12-04 10:14:13 -050029#if !CONFIG_IS_ENABLED(DM_SERIAL)
Tom Rini9fe2b312022-12-04 10:13:31 -050030static volatile unsigned char *const port[] = CFG_PL01x_PORTS;
Marek Behún4bebdd32021-05-20 13:23:52 +020031static enum pl01x_type pl01x_type __section(".data");
32static struct pl01x_regs *base_regs __section(".data");
wdenkda04a8b2004-08-02 23:22:59 +000033#define NUM_PORTS (sizeof(port)/sizeof(port[0]))
wdenk4989f872004-03-14 15:06:13 +000034
Simon Glass3ad93fe2014-09-22 17:30:58 -060035#endif
wdenk4989f872004-03-14 15:06:13 +000036
Simon Glassf35484d2014-09-22 17:30:57 -060037static int pl01x_putc(struct pl01x_regs *regs, char c)
wdenk4989f872004-03-14 15:06:13 +000038{
Simon Glassf35484d2014-09-22 17:30:57 -060039 /* Wait until there is space in the FIFO */
40 if (readl(&regs->fr) & UART_PL01x_FR_TXFF)
41 return -EAGAIN;
wdenk4989f872004-03-14 15:06:13 +000042
Simon Glassf35484d2014-09-22 17:30:57 -060043 /* Send the character */
44 writel(c, &regs->dr);
wdenk4989f872004-03-14 15:06:13 +000045
Simon Glassf35484d2014-09-22 17:30:57 -060046 return 0;
47}
wdenk4989f872004-03-14 15:06:13 +000048
Simon Glassf35484d2014-09-22 17:30:57 -060049static int pl01x_getc(struct pl01x_regs *regs)
50{
51 unsigned int data;
wdenk4989f872004-03-14 15:06:13 +000052
Simon Glassf35484d2014-09-22 17:30:57 -060053 /* Wait until there is data in the FIFO */
54 if (readl(&regs->fr) & UART_PL01x_FR_RXFE)
55 return -EAGAIN;
wdenk4989f872004-03-14 15:06:13 +000056
Simon Glassf35484d2014-09-22 17:30:57 -060057 data = readl(&regs->dr);
wdenk4989f872004-03-14 15:06:13 +000058
Simon Glassf35484d2014-09-22 17:30:57 -060059 /* Check for an error flag */
60 if (data & 0xFFFFFF00) {
61 /* Clear the error */
62 writel(0xFFFFFFFF, &regs->ecr);
63 return -1;
wdenkc35ba4e2004-03-14 22:25:36 +000064 }
65
Simon Glassf35484d2014-09-22 17:30:57 -060066 return (int) data;
wdenk4989f872004-03-14 15:06:13 +000067}
68
Simon Glassf35484d2014-09-22 17:30:57 -060069static int pl01x_tstc(struct pl01x_regs *regs)
70{
Stefan Roese80877fa2022-09-02 14:10:46 +020071 schedule();
Simon Glassf35484d2014-09-22 17:30:57 -060072 return !(readl(&regs->fr) & UART_PL01x_FR_RXFE);
73}
Andreas Engel80438612008-09-08 10:17:31 +020074
Simon Glassf35484d2014-09-22 17:30:57 -060075static int pl01x_generic_serial_init(struct pl01x_regs *regs,
76 enum pl01x_type type)
Andreas Engel80438612008-09-08 10:17:31 +020077{
Vikas Manochabe14f152014-11-21 10:34:23 -080078 switch (type) {
79 case TYPE_PL010:
80 /* disable everything */
81 writel(0, &regs->pl010_cr);
82 break;
83 case TYPE_PL011:
Vikas Manochaee038e22014-11-21 10:34:22 -080084 /* disable everything */
85 writel(0, &regs->pl011_cr);
Vikas Manochafe96bbd2014-11-21 10:34:21 -080086 break;
87 default:
88 return -EINVAL;
89 }
90
91 return 0;
92}
93
Linus Walleij70864f62015-04-21 15:10:06 +020094static int pl011_set_line_control(struct pl01x_regs *regs)
Vikas Manochafe96bbd2014-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 Manochafe96bbd2014-11-21 10:34:21 -0800102 writel(lcr, &regs->pl011_lcrh);
Andreas Engel80438612008-09-08 10:17:31 +0200103 return 0;
104}
105
Simon Glassf35484d2014-09-22 17:30:57 -0600106static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
107 int clock, int baudrate)
wdenk4989f872004-03-14 15:06:13 +0000108{
Simon Glassf35484d2014-09-22 17:30:57 -0600109 switch (type) {
110 case TYPE_PL010: {
111 unsigned int divisor;
wdenk4989f872004-03-14 15:06:13 +0000112
Linus Walleij70864f62015-04-21 15:10:06 +0200113 /* disable everything */
114 writel(0, &regs->pl010_cr);
115
Simon Glassf35484d2014-09-22 17:30:57 -0600116 switch (baudrate) {
117 case 9600:
118 divisor = UART_PL010_BAUD_9600;
119 break;
120 case 19200:
Alyssa Rosenzweigaf7638b2017-04-07 09:48:22 -0700121 divisor = UART_PL010_BAUD_19200;
Simon Glassf35484d2014-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 }
wdenk4989f872004-03-14 15:06:13 +0000135
Simon Glassf35484d2014-09-22 17:30:57 -0600136 writel((divisor & 0xf00) >> 8, &regs->pl010_lcrm);
137 writel(divisor & 0xff, &regs->pl010_lcrl);
138
Linus Walleij70864f62015-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 Glassf35484d2014-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 Przywara7ee2dab2020-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 Glassf35484d2014-09-22 17:30:57 -0600169
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100170 writel(divider, &regs->pl011_ibrd);
171 writel(fraction, &regs->pl011_fbrd);
172 }
Simon Glassf35484d2014-09-22 17:30:57 -0600173
Linus Walleij70864f62015-04-21 15:10:06 +0200174 pl011_set_line_control(regs);
Simon Glassf35484d2014-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;
wdenk4989f872004-03-14 15:06:13 +0000185}
186
Tom Rini952cc382022-12-04 10:14:13 -0500187#if !CONFIG_IS_ENABLED(DM_SERIAL)
Simon Glassf35484d2014-09-22 17:30:57 -0600188static void pl01x_serial_init_baud(int baudrate)
wdenk4989f872004-03-14 15:06:13 +0000189{
Simon Glassf35484d2014-09-22 17:30:57 -0600190 int clock = 0;
191
Tom Rini0ba2f372021-05-22 08:47:08 -0400192#if defined(CONFIG_PL011_SERIAL)
Simon Glassf35484d2014-09-22 17:30:57 -0600193 pl01x_type = TYPE_PL011;
Tom Rini5c896ae2022-12-04 10:13:30 -0500194 clock = CFG_PL011_CLOCK;
Simon Glassf35484d2014-09-22 17:30:57 -0600195#endif
196 base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX];
197
198 pl01x_generic_serial_init(base_regs, pl01x_type);
Vikas Manochaaac23962014-11-21 10:34:19 -0800199 pl01x_generic_setbrg(base_regs, pl01x_type, clock, baudrate);
wdenk4989f872004-03-14 15:06:13 +0000200}
201
Simon Glassf35484d2014-09-22 17:30:57 -0600202/*
203 * Integrator AP has two UARTs, we use the first one, at 38400-8-N-1
204 * Integrator CP has two UARTs, use the first one, at 38400-8-N-1
205 * Versatile PB has four UARTs.
206 */
207int pl01x_serial_init(void)
wdenk4989f872004-03-14 15:06:13 +0000208{
Simon Glassf35484d2014-09-22 17:30:57 -0600209 pl01x_serial_init_baud(CONFIG_BAUDRATE);
Linus Walleijb8058e82011-10-02 11:52:52 +0000210
Simon Glassf35484d2014-09-22 17:30:57 -0600211 return 0;
wdenk4989f872004-03-14 15:06:13 +0000212}
213
Simon Glassf35484d2014-09-22 17:30:57 -0600214static void pl01x_serial_putc(const char c)
wdenk4989f872004-03-14 15:06:13 +0000215{
Simon Glassf35484d2014-09-22 17:30:57 -0600216 if (c == '\n')
217 while (pl01x_putc(base_regs, '\r') == -EAGAIN);
wdenkc35ba4e2004-03-14 22:25:36 +0000218
Simon Glassf35484d2014-09-22 17:30:57 -0600219 while (pl01x_putc(base_regs, c) == -EAGAIN);
wdenk4989f872004-03-14 15:06:13 +0000220}
221
Simon Glassf35484d2014-09-22 17:30:57 -0600222static int pl01x_serial_getc(void)
wdenk4989f872004-03-14 15:06:13 +0000223{
Simon Glassf35484d2014-09-22 17:30:57 -0600224 while (1) {
225 int ch = pl01x_getc(base_regs);
wdenkc35ba4e2004-03-14 22:25:36 +0000226
Simon Glassf35484d2014-09-22 17:30:57 -0600227 if (ch == -EAGAIN) {
Stefan Roese80877fa2022-09-02 14:10:46 +0200228 schedule();
Simon Glassf35484d2014-09-22 17:30:57 -0600229 continue;
230 }
wdenk4989f872004-03-14 15:06:13 +0000231
Simon Glassf35484d2014-09-22 17:30:57 -0600232 return ch;
wdenkc35ba4e2004-03-14 22:25:36 +0000233 }
wdenk4989f872004-03-14 15:06:13 +0000234}
235
Simon Glassf35484d2014-09-22 17:30:57 -0600236static int pl01x_serial_tstc(void)
wdenk4989f872004-03-14 15:06:13 +0000237{
Simon Glassf35484d2014-09-22 17:30:57 -0600238 return pl01x_tstc(base_regs);
239}
Rabin Vincentfb3c95f2010-05-05 09:23:07 +0530240
Simon Glassf35484d2014-09-22 17:30:57 -0600241static void pl01x_serial_setbrg(void)
242{
243 /*
244 * Flush FIFO and wait for non-busy before changing baudrate to avoid
245 * crap in console
246 */
247 while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE))
Stefan Roese80877fa2022-09-02 14:10:46 +0200248 schedule();
Simon Glassf35484d2014-09-22 17:30:57 -0600249 while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY)
Stefan Roese80877fa2022-09-02 14:10:46 +0200250 schedule();
Simon Glassf35484d2014-09-22 17:30:57 -0600251 pl01x_serial_init_baud(gd->baudrate);
wdenk4989f872004-03-14 15:06:13 +0000252}
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200253
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200254static struct serial_device pl01x_serial_drv = {
255 .name = "pl01x_serial",
256 .start = pl01x_serial_init,
257 .stop = NULL,
258 .setbrg = pl01x_serial_setbrg,
259 .putc = pl01x_serial_putc,
Marek Vasutd9c64492012-10-06 14:07:02 +0000260 .puts = default_serial_puts,
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200261 .getc = pl01x_serial_getc,
262 .tstc = pl01x_serial_tstc,
263};
264
265void pl01x_serial_initialize(void)
266{
267 serial_register(&pl01x_serial_drv);
268}
269
270__weak struct serial_device *default_serial_console(void)
271{
272 return &pl01x_serial_drv;
273}
Tom Rini952cc382022-12-04 10:14:13 -0500274#else
Alexander Grafa5c35852018-03-07 22:08:25 +0100275int pl01x_serial_setbrg(struct udevice *dev, int baudrate)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600276{
Simon Glassb75b15b2020-12-03 16:55:23 -0700277 struct pl01x_serial_plat *plat = dev_get_plat(dev);
Simon Glass3ad93fe2014-09-22 17:30:58 -0600278 struct pl01x_priv *priv = dev_get_priv(dev);
279
Eric Anholtbe5a7dd2016-03-13 18:16:54 -0700280 if (!plat->skip_init) {
281 pl01x_generic_setbrg(priv->regs, priv->type, plat->clock,
282 baudrate);
283 }
Simon Glass3ad93fe2014-09-22 17:30:58 -0600284
285 return 0;
286}
287
Alexander Grafa73b0ec2018-01-25 12:05:55 +0100288int pl01x_serial_probe(struct udevice *dev)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600289{
Simon Glassb75b15b2020-12-03 16:55:23 -0700290 struct pl01x_serial_plat *plat = dev_get_plat(dev);
Simon Glass3ad93fe2014-09-22 17:30:58 -0600291 struct pl01x_priv *priv = dev_get_priv(dev);
Yang Xiwenc6d2e012024-02-28 18:57:52 +0800292 int ret;
Simon Glass3ad93fe2014-09-22 17:30:58 -0600293
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200294#if CONFIG_IS_ENABLED(OF_PLATDATA)
295 struct dtd_serial_pl01x *dtplat = &plat->dtplat;
296
297 priv->regs = (struct pl01x_regs *)dtplat->reg[0];
298 plat->type = dtplat->type;
299#else
Simon Glass3ad93fe2014-09-22 17:30:58 -0600300 priv->regs = (struct pl01x_regs *)plat->base;
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200301#endif
Simon Glass3ad93fe2014-09-22 17:30:58 -0600302 priv->type = plat->type;
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200303
Yang Xiwenc6d2e012024-02-28 18:57:52 +0800304 if (!plat->skip_init) {
305 ret = pl01x_generic_serial_init(priv->regs, priv->type);
306 if (ret)
307 return ret;
308 return pl01x_serial_setbrg(dev, gd->baudrate);
309 } else {
Eric Anholtbe5a7dd2016-03-13 18:16:54 -0700310 return 0;
Yang Xiwenc6d2e012024-02-28 18:57:52 +0800311 }
Simon Glass3ad93fe2014-09-22 17:30:58 -0600312}
313
Alexander Grafa5c35852018-03-07 22:08:25 +0100314int pl01x_serial_getc(struct udevice *dev)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600315{
316 struct pl01x_priv *priv = dev_get_priv(dev);
317
318 return pl01x_getc(priv->regs);
319}
320
Alexander Grafa5c35852018-03-07 22:08:25 +0100321int pl01x_serial_putc(struct udevice *dev, const char ch)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600322{
323 struct pl01x_priv *priv = dev_get_priv(dev);
324
325 return pl01x_putc(priv->regs, ch);
326}
327
Alexander Grafa5c35852018-03-07 22:08:25 +0100328int pl01x_serial_pending(struct udevice *dev, bool input)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600329{
330 struct pl01x_priv *priv = dev_get_priv(dev);
331 unsigned int fr = readl(&priv->regs->fr);
332
333 if (input)
334 return pl01x_tstc(priv->regs);
335 else
Lukasz Majewskidb244c72023-05-19 12:43:53 +0200336 return fr & UART_PL01x_FR_TXFE ? 0 : 1;
Simon Glass3ad93fe2014-09-22 17:30:58 -0600337}
338
Alexander Grafa5c35852018-03-07 22:08:25 +0100339static const struct dm_serial_ops pl01x_serial_ops = {
Simon Glass3ad93fe2014-09-22 17:30:58 -0600340 .putc = pl01x_serial_putc,
341 .pending = pl01x_serial_pending,
342 .getc = pl01x_serial_getc,
343 .setbrg = pl01x_serial_setbrg,
344};
345
Lukasz Majewski647c0032023-05-19 12:43:51 +0200346#if CONFIG_IS_ENABLED(OF_REAL)
Vikas Manocha92e349e2015-05-06 11:46:29 -0700347static const struct udevice_id pl01x_serial_id[] ={
348 {.compatible = "arm,pl011", .data = TYPE_PL011},
349 {.compatible = "arm,pl010", .data = TYPE_PL010},
350 {}
351};
352
Tom Rini5c896ae2022-12-04 10:13:30 -0500353#ifndef CFG_PL011_CLOCK
354#define CFG_PL011_CLOCK 0
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100355#endif
356
Simon Glassaad29ae2020-12-03 16:55:21 -0700357int pl01x_serial_of_to_plat(struct udevice *dev)
Vikas Manocha92e349e2015-05-06 11:46:29 -0700358{
Simon Glassb75b15b2020-12-03 16:55:23 -0700359 struct pl01x_serial_plat *plat = dev_get_plat(dev);
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100360 struct clk clk;
Vikas Manocha92e349e2015-05-06 11:46:29 -0700361 fdt_addr_t addr;
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100362 int ret;
Vikas Manocha92e349e2015-05-06 11:46:29 -0700363
Masahiro Yamadaa89b4de2020-07-17 14:36:48 +0900364 addr = dev_read_addr(dev);
Vikas Manocha92e349e2015-05-06 11:46:29 -0700365 if (addr == FDT_ADDR_T_NONE)
366 return -EINVAL;
367
368 plat->base = addr;
Tom Rini5c896ae2022-12-04 10:13:30 -0500369 plat->clock = dev_read_u32_default(dev, "clock", CFG_PL011_CLOCK);
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100370 ret = clk_get_by_index(dev, 0, &clk);
371 if (!ret) {
Michal Simekf96c7892020-10-13 15:00:24 +0200372 ret = clk_enable(&clk);
373 if (ret && ret != -ENOSYS) {
374 dev_err(dev, "failed to enable clock\n");
375 return ret;
376 }
377
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100378 plat->clock = clk_get_rate(&clk);
Michal Simekf96c7892020-10-13 15:00:24 +0200379 if (IS_ERR_VALUE(plat->clock)) {
380 dev_err(dev, "failed to get rate\n");
381 return plat->clock;
382 }
383 debug("%s: CLK %d\n", __func__, plat->clock);
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100384 }
Vikas Manocha92e349e2015-05-06 11:46:29 -0700385 plat->type = dev_get_driver_data(dev);
Alexander Grafcce64432018-01-25 12:05:49 +0100386 plat->skip_init = dev_read_bool(dev, "skip-init");
387
Vikas Manocha92e349e2015-05-06 11:46:29 -0700388 return 0;
389}
390#endif
391
Simon Glass3ad93fe2014-09-22 17:30:58 -0600392U_BOOT_DRIVER(serial_pl01x) = {
393 .name = "serial_pl01x",
394 .id = UCLASS_SERIAL,
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200395#if CONFIG_IS_ENABLED(OF_REAL)
Vikas Manocha92e349e2015-05-06 11:46:29 -0700396 .of_match = of_match_ptr(pl01x_serial_id),
Simon Glassaad29ae2020-12-03 16:55:21 -0700397 .of_to_plat = of_match_ptr(pl01x_serial_of_to_plat),
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200398#endif
Simon Glassb75b15b2020-12-03 16:55:23 -0700399 .plat_auto = sizeof(struct pl01x_serial_plat),
Simon Glass3ad93fe2014-09-22 17:30:58 -0600400 .probe = pl01x_serial_probe,
401 .ops = &pl01x_serial_ops,
402 .flags = DM_FLAG_PRE_RELOC,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700403 .priv_auto = sizeof(struct pl01x_priv),
Simon Glass3ad93fe2014-09-22 17:30:58 -0600404};
405
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200406DM_DRIVER_ALIAS(serial_pl01x, arm_pl011)
407DM_DRIVER_ALIAS(serial_pl01x, arm_pl010)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600408#endif
Sergey Temerkhanovc0ffa4e2015-10-14 09:54:23 -0700409
410#if defined(CONFIG_DEBUG_UART_PL010) || defined(CONFIG_DEBUG_UART_PL011)
411
412#include <debug_uart.h>
413
414static void _debug_uart_init(void)
415{
416#ifndef CONFIG_DEBUG_UART_SKIP_INIT
Pali Rohár8864b352022-05-27 22:15:24 +0200417 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_VAL(DEBUG_UART_BASE);
Chen Baozia506ff42021-07-21 14:11:26 +0800418 enum pl01x_type type;
419
420 if (IS_ENABLED(CONFIG_DEBUG_UART_PL011))
421 type = TYPE_PL011;
422 else
423 type = TYPE_PL010;
Sergey Temerkhanovc0ffa4e2015-10-14 09:54:23 -0700424
425 pl01x_generic_serial_init(regs, type);
426 pl01x_generic_setbrg(regs, type,
427 CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE);
428#endif
429}
430
431static inline void _debug_uart_putc(int ch)
432{
Pali Rohár8864b352022-05-27 22:15:24 +0200433 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_VAL(DEBUG_UART_BASE);
Sergey Temerkhanovc0ffa4e2015-10-14 09:54:23 -0700434
Chen Baozi99888fa2021-07-19 15:36:04 +0800435 while (pl01x_putc(regs, ch) == -EAGAIN)
436 ;
Sergey Temerkhanovc0ffa4e2015-10-14 09:54:23 -0700437}
438
439DEBUG_UART_FUNCS
440
441#endif