blob: e6bf0c2935b8b948b33b2830c23974f0d15ffd7b [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>
Maximilian Bruneb25c4222024-10-23 15:19:48 +020022#include <spl.h>
Michal Simekf96c7892020-10-13 15:00:24 +020023#include <dm/device_compat.h>
Masahiro Yamada22c97de2014-10-24 12:41:19 +090024#include <dm/platform_data/serial_pl01x.h>
Marek Vasut46e4d5f2012-09-14 22:38:46 +020025#include <linux/compiler.h>
Simon Glassf35484d2014-09-22 17:30:57 -060026#include "serial_pl01x_internal.h"
Vikas Manocha92e349e2015-05-06 11:46:29 -070027
28DECLARE_GLOBAL_DATA_PTR;
wdenk4989f872004-03-14 15:06:13 +000029
Tom Rini952cc382022-12-04 10:14:13 -050030#if !CONFIG_IS_ENABLED(DM_SERIAL)
Tom Rini9fe2b312022-12-04 10:13:31 -050031static volatile unsigned char *const port[] = CFG_PL01x_PORTS;
Marek Behún4bebdd32021-05-20 13:23:52 +020032static enum pl01x_type pl01x_type __section(".data");
33static struct pl01x_regs *base_regs __section(".data");
wdenkda04a8b2004-08-02 23:22:59 +000034#define NUM_PORTS (sizeof(port)/sizeof(port[0]))
wdenk4989f872004-03-14 15:06:13 +000035
Simon Glass3ad93fe2014-09-22 17:30:58 -060036#endif
wdenk4989f872004-03-14 15:06:13 +000037
Simon Glassf35484d2014-09-22 17:30:57 -060038static int pl01x_putc(struct pl01x_regs *regs, char c)
wdenk4989f872004-03-14 15:06:13 +000039{
Simon Glassf35484d2014-09-22 17:30:57 -060040 /* Wait until there is space in the FIFO */
41 if (readl(&regs->fr) & UART_PL01x_FR_TXFF)
42 return -EAGAIN;
wdenk4989f872004-03-14 15:06:13 +000043
Simon Glassf35484d2014-09-22 17:30:57 -060044 /* Send the character */
45 writel(c, &regs->dr);
wdenk4989f872004-03-14 15:06:13 +000046
Simon Glassf35484d2014-09-22 17:30:57 -060047 return 0;
48}
wdenk4989f872004-03-14 15:06:13 +000049
Simon Glassf35484d2014-09-22 17:30:57 -060050static int pl01x_getc(struct pl01x_regs *regs)
51{
52 unsigned int data;
wdenk4989f872004-03-14 15:06:13 +000053
Simon Glassf35484d2014-09-22 17:30:57 -060054 /* Wait until there is data in the FIFO */
55 if (readl(&regs->fr) & UART_PL01x_FR_RXFE)
56 return -EAGAIN;
wdenk4989f872004-03-14 15:06:13 +000057
Simon Glassf35484d2014-09-22 17:30:57 -060058 data = readl(&regs->dr);
wdenk4989f872004-03-14 15:06:13 +000059
Simon Glassf35484d2014-09-22 17:30:57 -060060 /* Check for an error flag */
61 if (data & 0xFFFFFF00) {
62 /* Clear the error */
63 writel(0xFFFFFFFF, &regs->ecr);
64 return -1;
wdenkc35ba4e2004-03-14 22:25:36 +000065 }
66
Simon Glassf35484d2014-09-22 17:30:57 -060067 return (int) data;
wdenk4989f872004-03-14 15:06:13 +000068}
69
Simon Glassf35484d2014-09-22 17:30:57 -060070static int pl01x_tstc(struct pl01x_regs *regs)
71{
Stefan Roese80877fa2022-09-02 14:10:46 +020072 schedule();
Simon Glassf35484d2014-09-22 17:30:57 -060073 return !(readl(&regs->fr) & UART_PL01x_FR_RXFE);
74}
Andreas Engel80438612008-09-08 10:17:31 +020075
Simon Glassf35484d2014-09-22 17:30:57 -060076static int pl01x_generic_serial_init(struct pl01x_regs *regs,
77 enum pl01x_type type)
Andreas Engel80438612008-09-08 10:17:31 +020078{
Vikas Manochabe14f152014-11-21 10:34:23 -080079 switch (type) {
80 case TYPE_PL010:
81 /* disable everything */
82 writel(0, &regs->pl010_cr);
83 break;
84 case TYPE_PL011:
Vikas Manochaee038e22014-11-21 10:34:22 -080085 /* disable everything */
86 writel(0, &regs->pl011_cr);
Vikas Manochafe96bbd2014-11-21 10:34:21 -080087 break;
88 default:
89 return -EINVAL;
90 }
91
92 return 0;
93}
94
Linus Walleij70864f62015-04-21 15:10:06 +020095static int pl011_set_line_control(struct pl01x_regs *regs)
Vikas Manochafe96bbd2014-11-21 10:34:21 -080096{
97 unsigned int lcr;
98 /*
99 * Internal update of baud rate register require line
100 * control register write
101 */
102 lcr = UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN;
Vikas Manochafe96bbd2014-11-21 10:34:21 -0800103 writel(lcr, &regs->pl011_lcrh);
Andreas Engel80438612008-09-08 10:17:31 +0200104 return 0;
105}
106
Simon Glassf35484d2014-09-22 17:30:57 -0600107static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type,
108 int clock, int baudrate)
wdenk4989f872004-03-14 15:06:13 +0000109{
Simon Glassf35484d2014-09-22 17:30:57 -0600110 switch (type) {
111 case TYPE_PL010: {
112 unsigned int divisor;
wdenk4989f872004-03-14 15:06:13 +0000113
Linus Walleij70864f62015-04-21 15:10:06 +0200114 /* disable everything */
115 writel(0, &regs->pl010_cr);
116
Simon Glassf35484d2014-09-22 17:30:57 -0600117 switch (baudrate) {
118 case 9600:
119 divisor = UART_PL010_BAUD_9600;
120 break;
121 case 19200:
Alyssa Rosenzweigaf7638b2017-04-07 09:48:22 -0700122 divisor = UART_PL010_BAUD_19200;
Simon Glassf35484d2014-09-22 17:30:57 -0600123 break;
124 case 38400:
125 divisor = UART_PL010_BAUD_38400;
126 break;
127 case 57600:
128 divisor = UART_PL010_BAUD_57600;
129 break;
130 case 115200:
131 divisor = UART_PL010_BAUD_115200;
132 break;
133 default:
134 divisor = UART_PL010_BAUD_38400;
135 }
wdenk4989f872004-03-14 15:06:13 +0000136
Simon Glassf35484d2014-09-22 17:30:57 -0600137 writel((divisor & 0xf00) >> 8, &regs->pl010_lcrm);
138 writel(divisor & 0xff, &regs->pl010_lcrl);
139
Linus Walleij70864f62015-04-21 15:10:06 +0200140 /*
141 * Set line control for the PL010 to be 8 bits, 1 stop bit,
142 * no parity, fifo enabled
143 */
144 writel(UART_PL010_LCRH_WLEN_8 | UART_PL010_LCRH_FEN,
145 &regs->pl010_lcrh);
Simon Glassf35484d2014-09-22 17:30:57 -0600146 /* Finally, enable the UART */
147 writel(UART_PL010_CR_UARTEN, &regs->pl010_cr);
148 break;
149 }
150 case TYPE_PL011: {
151 unsigned int temp;
152 unsigned int divider;
153 unsigned int remainder;
154 unsigned int fraction;
155
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100156 /* Without a valid clock rate we cannot set up the baudrate. */
157 if (clock) {
158 /*
159 * Set baud rate
160 *
161 * IBRD = UART_CLK / (16 * BAUD_RATE)
162 * FBRD = RND((64 * MOD(UART_CLK,(16 * BAUD_RATE)))
163 * / (16 * BAUD_RATE))
164 */
165 temp = 16 * baudrate;
166 divider = clock / temp;
167 remainder = clock % temp;
168 temp = (8 * remainder) / baudrate;
169 fraction = (temp >> 1) + (temp & 1);
Simon Glassf35484d2014-09-22 17:30:57 -0600170
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100171 writel(divider, &regs->pl011_ibrd);
172 writel(fraction, &regs->pl011_fbrd);
173 }
Simon Glassf35484d2014-09-22 17:30:57 -0600174
Linus Walleij70864f62015-04-21 15:10:06 +0200175 pl011_set_line_control(regs);
Simon Glassf35484d2014-09-22 17:30:57 -0600176 /* Finally, enable the UART */
177 writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE |
178 UART_PL011_CR_RXE | UART_PL011_CR_RTS, &regs->pl011_cr);
179 break;
180 }
181 default:
182 return -EINVAL;
183 }
184
185 return 0;
wdenk4989f872004-03-14 15:06:13 +0000186}
187
Tom Rini952cc382022-12-04 10:14:13 -0500188#if !CONFIG_IS_ENABLED(DM_SERIAL)
Simon Glassf35484d2014-09-22 17:30:57 -0600189static void pl01x_serial_init_baud(int baudrate)
wdenk4989f872004-03-14 15:06:13 +0000190{
Simon Glassf35484d2014-09-22 17:30:57 -0600191 int clock = 0;
192
Tom Rini0ba2f372021-05-22 08:47:08 -0400193#if defined(CONFIG_PL011_SERIAL)
Simon Glassf35484d2014-09-22 17:30:57 -0600194 pl01x_type = TYPE_PL011;
Tom Rini5c896ae2022-12-04 10:13:30 -0500195 clock = CFG_PL011_CLOCK;
Simon Glassf35484d2014-09-22 17:30:57 -0600196#endif
197 base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX];
198
199 pl01x_generic_serial_init(base_regs, pl01x_type);
Vikas Manochaaac23962014-11-21 10:34:19 -0800200 pl01x_generic_setbrg(base_regs, pl01x_type, clock, baudrate);
wdenk4989f872004-03-14 15:06:13 +0000201}
202
Simon Glassf35484d2014-09-22 17:30:57 -0600203/*
204 * Integrator AP has two UARTs, we use the first one, at 38400-8-N-1
205 * Integrator CP has two UARTs, use the first one, at 38400-8-N-1
206 * Versatile PB has four UARTs.
207 */
208int pl01x_serial_init(void)
wdenk4989f872004-03-14 15:06:13 +0000209{
Simon Glassf35484d2014-09-22 17:30:57 -0600210 pl01x_serial_init_baud(CONFIG_BAUDRATE);
Linus Walleijb8058e82011-10-02 11:52:52 +0000211
Simon Glassf35484d2014-09-22 17:30:57 -0600212 return 0;
wdenk4989f872004-03-14 15:06:13 +0000213}
214
Simon Glassf35484d2014-09-22 17:30:57 -0600215static void pl01x_serial_putc(const char c)
wdenk4989f872004-03-14 15:06:13 +0000216{
Simon Glassf35484d2014-09-22 17:30:57 -0600217 if (c == '\n')
218 while (pl01x_putc(base_regs, '\r') == -EAGAIN);
wdenkc35ba4e2004-03-14 22:25:36 +0000219
Simon Glassf35484d2014-09-22 17:30:57 -0600220 while (pl01x_putc(base_regs, c) == -EAGAIN);
wdenk4989f872004-03-14 15:06:13 +0000221}
222
Simon Glassf35484d2014-09-22 17:30:57 -0600223static int pl01x_serial_getc(void)
wdenk4989f872004-03-14 15:06:13 +0000224{
Simon Glassf35484d2014-09-22 17:30:57 -0600225 while (1) {
226 int ch = pl01x_getc(base_regs);
wdenkc35ba4e2004-03-14 22:25:36 +0000227
Simon Glassf35484d2014-09-22 17:30:57 -0600228 if (ch == -EAGAIN) {
Stefan Roese80877fa2022-09-02 14:10:46 +0200229 schedule();
Simon Glassf35484d2014-09-22 17:30:57 -0600230 continue;
231 }
wdenk4989f872004-03-14 15:06:13 +0000232
Simon Glassf35484d2014-09-22 17:30:57 -0600233 return ch;
wdenkc35ba4e2004-03-14 22:25:36 +0000234 }
wdenk4989f872004-03-14 15:06:13 +0000235}
236
Simon Glassf35484d2014-09-22 17:30:57 -0600237static int pl01x_serial_tstc(void)
wdenk4989f872004-03-14 15:06:13 +0000238{
Simon Glassf35484d2014-09-22 17:30:57 -0600239 return pl01x_tstc(base_regs);
240}
Rabin Vincentfb3c95f2010-05-05 09:23:07 +0530241
Simon Glassf35484d2014-09-22 17:30:57 -0600242static void pl01x_serial_setbrg(void)
243{
244 /*
245 * Flush FIFO and wait for non-busy before changing baudrate to avoid
246 * crap in console
247 */
248 while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE))
Stefan Roese80877fa2022-09-02 14:10:46 +0200249 schedule();
Simon Glassf35484d2014-09-22 17:30:57 -0600250 while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY)
Stefan Roese80877fa2022-09-02 14:10:46 +0200251 schedule();
Simon Glassf35484d2014-09-22 17:30:57 -0600252 pl01x_serial_init_baud(gd->baudrate);
wdenk4989f872004-03-14 15:06:13 +0000253}
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200254
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200255static struct serial_device pl01x_serial_drv = {
256 .name = "pl01x_serial",
257 .start = pl01x_serial_init,
258 .stop = NULL,
259 .setbrg = pl01x_serial_setbrg,
260 .putc = pl01x_serial_putc,
Marek Vasutd9c64492012-10-06 14:07:02 +0000261 .puts = default_serial_puts,
Marek Vasut46e4d5f2012-09-14 22:38:46 +0200262 .getc = pl01x_serial_getc,
263 .tstc = pl01x_serial_tstc,
264};
265
266void pl01x_serial_initialize(void)
267{
268 serial_register(&pl01x_serial_drv);
269}
270
271__weak struct serial_device *default_serial_console(void)
272{
273 return &pl01x_serial_drv;
274}
Tom Rini952cc382022-12-04 10:14:13 -0500275#else
Maximilian Bruneb25c4222024-10-23 15:19:48 +0200276
277static int pl01x_serial_getinfo(struct udevice *dev,
278 struct serial_device_info *info)
279{
280 struct pl01x_serial_plat *plat = dev_get_plat(dev);
281
282 /* save code size */
283 if (!not_xpl())
284 return -ENOSYS;
285
286 info->type = SERIAL_CHIP_PL01X;
287 info->addr_space = SERIAL_ADDRESS_SPACE_MEMORY;
288 info->addr = plat->base;
289 info->size = 0x1000;
290 info->reg_width = 4;
291 info->reg_shift = 2;
292 info->reg_offset = 0;
293 info->clock = plat->clock;
294
295 return 0;
296}
297
Alexander Grafa5c35852018-03-07 22:08:25 +0100298int pl01x_serial_setbrg(struct udevice *dev, int baudrate)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600299{
Simon Glassb75b15b2020-12-03 16:55:23 -0700300 struct pl01x_serial_plat *plat = dev_get_plat(dev);
Simon Glass3ad93fe2014-09-22 17:30:58 -0600301 struct pl01x_priv *priv = dev_get_priv(dev);
302
Eric Anholtbe5a7dd2016-03-13 18:16:54 -0700303 if (!plat->skip_init) {
304 pl01x_generic_setbrg(priv->regs, priv->type, plat->clock,
305 baudrate);
306 }
Simon Glass3ad93fe2014-09-22 17:30:58 -0600307
308 return 0;
309}
310
Alexander Grafa73b0ec2018-01-25 12:05:55 +0100311int pl01x_serial_probe(struct udevice *dev)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600312{
Simon Glassb75b15b2020-12-03 16:55:23 -0700313 struct pl01x_serial_plat *plat = dev_get_plat(dev);
Simon Glass3ad93fe2014-09-22 17:30:58 -0600314 struct pl01x_priv *priv = dev_get_priv(dev);
Yang Xiwenc6d2e012024-02-28 18:57:52 +0800315 int ret;
Simon Glass3ad93fe2014-09-22 17:30:58 -0600316
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200317#if CONFIG_IS_ENABLED(OF_PLATDATA)
318 struct dtd_serial_pl01x *dtplat = &plat->dtplat;
319
320 priv->regs = (struct pl01x_regs *)dtplat->reg[0];
321 plat->type = dtplat->type;
322#else
Simon Glass3ad93fe2014-09-22 17:30:58 -0600323 priv->regs = (struct pl01x_regs *)plat->base;
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200324#endif
Simon Glass3ad93fe2014-09-22 17:30:58 -0600325 priv->type = plat->type;
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200326
Yang Xiwenc6d2e012024-02-28 18:57:52 +0800327 if (!plat->skip_init) {
328 ret = pl01x_generic_serial_init(priv->regs, priv->type);
329 if (ret)
330 return ret;
331 return pl01x_serial_setbrg(dev, gd->baudrate);
332 } else {
Eric Anholtbe5a7dd2016-03-13 18:16:54 -0700333 return 0;
Yang Xiwenc6d2e012024-02-28 18:57:52 +0800334 }
Simon Glass3ad93fe2014-09-22 17:30:58 -0600335}
336
Alexander Grafa5c35852018-03-07 22:08:25 +0100337int pl01x_serial_getc(struct udevice *dev)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600338{
339 struct pl01x_priv *priv = dev_get_priv(dev);
340
341 return pl01x_getc(priv->regs);
342}
343
Alexander Grafa5c35852018-03-07 22:08:25 +0100344int pl01x_serial_putc(struct udevice *dev, const char ch)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600345{
346 struct pl01x_priv *priv = dev_get_priv(dev);
347
348 return pl01x_putc(priv->regs, ch);
349}
350
Alexander Grafa5c35852018-03-07 22:08:25 +0100351int pl01x_serial_pending(struct udevice *dev, bool input)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600352{
353 struct pl01x_priv *priv = dev_get_priv(dev);
354 unsigned int fr = readl(&priv->regs->fr);
355
356 if (input)
357 return pl01x_tstc(priv->regs);
358 else
Lukasz Majewskidb244c72023-05-19 12:43:53 +0200359 return fr & UART_PL01x_FR_TXFE ? 0 : 1;
Simon Glass3ad93fe2014-09-22 17:30:58 -0600360}
361
Alexander Grafa5c35852018-03-07 22:08:25 +0100362static const struct dm_serial_ops pl01x_serial_ops = {
Simon Glass3ad93fe2014-09-22 17:30:58 -0600363 .putc = pl01x_serial_putc,
364 .pending = pl01x_serial_pending,
365 .getc = pl01x_serial_getc,
366 .setbrg = pl01x_serial_setbrg,
Maximilian Bruneb25c4222024-10-23 15:19:48 +0200367 .getinfo = pl01x_serial_getinfo,
Simon Glass3ad93fe2014-09-22 17:30:58 -0600368};
369
Lukasz Majewski647c0032023-05-19 12:43:51 +0200370#if CONFIG_IS_ENABLED(OF_REAL)
Vikas Manocha92e349e2015-05-06 11:46:29 -0700371static const struct udevice_id pl01x_serial_id[] ={
372 {.compatible = "arm,pl011", .data = TYPE_PL011},
373 {.compatible = "arm,pl010", .data = TYPE_PL010},
374 {}
375};
376
Tom Rini5c896ae2022-12-04 10:13:30 -0500377#ifndef CFG_PL011_CLOCK
378#define CFG_PL011_CLOCK 0
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100379#endif
380
Simon Glassaad29ae2020-12-03 16:55:21 -0700381int pl01x_serial_of_to_plat(struct udevice *dev)
Vikas Manocha92e349e2015-05-06 11:46:29 -0700382{
Simon Glassb75b15b2020-12-03 16:55:23 -0700383 struct pl01x_serial_plat *plat = dev_get_plat(dev);
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100384 struct clk clk;
Vikas Manocha92e349e2015-05-06 11:46:29 -0700385 fdt_addr_t addr;
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100386 int ret;
Vikas Manocha92e349e2015-05-06 11:46:29 -0700387
Masahiro Yamadaa89b4de2020-07-17 14:36:48 +0900388 addr = dev_read_addr(dev);
Vikas Manocha92e349e2015-05-06 11:46:29 -0700389 if (addr == FDT_ADDR_T_NONE)
390 return -EINVAL;
391
392 plat->base = addr;
Tom Rini5c896ae2022-12-04 10:13:30 -0500393 plat->clock = dev_read_u32_default(dev, "clock", CFG_PL011_CLOCK);
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100394 ret = clk_get_by_index(dev, 0, &clk);
395 if (!ret) {
Michal Simekf96c7892020-10-13 15:00:24 +0200396 ret = clk_enable(&clk);
397 if (ret && ret != -ENOSYS) {
398 dev_err(dev, "failed to enable clock\n");
399 return ret;
400 }
401
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100402 plat->clock = clk_get_rate(&clk);
Michal Simekf96c7892020-10-13 15:00:24 +0200403 if (IS_ERR_VALUE(plat->clock)) {
404 dev_err(dev, "failed to get rate\n");
405 return plat->clock;
406 }
407 debug("%s: CLK %d\n", __func__, plat->clock);
Andre Przywara7ee2dab2020-04-27 19:17:59 +0100408 }
Vikas Manocha92e349e2015-05-06 11:46:29 -0700409 plat->type = dev_get_driver_data(dev);
Alexander Grafcce64432018-01-25 12:05:49 +0100410 plat->skip_init = dev_read_bool(dev, "skip-init");
411
Vikas Manocha92e349e2015-05-06 11:46:29 -0700412 return 0;
413}
414#endif
415
Simon Glass3ad93fe2014-09-22 17:30:58 -0600416U_BOOT_DRIVER(serial_pl01x) = {
417 .name = "serial_pl01x",
418 .id = UCLASS_SERIAL,
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200419#if CONFIG_IS_ENABLED(OF_REAL)
Vikas Manocha92e349e2015-05-06 11:46:29 -0700420 .of_match = of_match_ptr(pl01x_serial_id),
Simon Glassaad29ae2020-12-03 16:55:21 -0700421 .of_to_plat = of_match_ptr(pl01x_serial_of_to_plat),
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200422#endif
Simon Glassb75b15b2020-12-03 16:55:23 -0700423 .plat_auto = sizeof(struct pl01x_serial_plat),
Simon Glass3ad93fe2014-09-22 17:30:58 -0600424 .probe = pl01x_serial_probe,
425 .ops = &pl01x_serial_ops,
426 .flags = DM_FLAG_PRE_RELOC,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700427 .priv_auto = sizeof(struct pl01x_priv),
Simon Glass3ad93fe2014-09-22 17:30:58 -0600428};
429
Lukasz Majewski58aec3f2023-05-19 12:43:52 +0200430DM_DRIVER_ALIAS(serial_pl01x, arm_pl011)
431DM_DRIVER_ALIAS(serial_pl01x, arm_pl010)
Simon Glass3ad93fe2014-09-22 17:30:58 -0600432#endif
Sergey Temerkhanovc0ffa4e2015-10-14 09:54:23 -0700433
434#if defined(CONFIG_DEBUG_UART_PL010) || defined(CONFIG_DEBUG_UART_PL011)
435
436#include <debug_uart.h>
437
438static void _debug_uart_init(void)
439{
440#ifndef CONFIG_DEBUG_UART_SKIP_INIT
Pali Rohár8864b352022-05-27 22:15:24 +0200441 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_VAL(DEBUG_UART_BASE);
Chen Baozia506ff42021-07-21 14:11:26 +0800442 enum pl01x_type type;
443
444 if (IS_ENABLED(CONFIG_DEBUG_UART_PL011))
445 type = TYPE_PL011;
446 else
447 type = TYPE_PL010;
Sergey Temerkhanovc0ffa4e2015-10-14 09:54:23 -0700448
449 pl01x_generic_serial_init(regs, type);
450 pl01x_generic_setbrg(regs, type,
451 CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE);
452#endif
453}
454
455static inline void _debug_uart_putc(int ch)
456{
Pali Rohár8864b352022-05-27 22:15:24 +0200457 struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_VAL(DEBUG_UART_BASE);
Sergey Temerkhanovc0ffa4e2015-10-14 09:54:23 -0700458
Chen Baozi99888fa2021-07-19 15:36:04 +0800459 while (pl01x_putc(regs, ch) == -EAGAIN)
460 ;
Sergey Temerkhanovc0ffa4e2015-10-14 09:54:23 -0700461}
462
463DEBUG_UART_FUNCS
464
465#endif