Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 2 | /* |
| 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> |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Andreas Engel | 48d0192 | 2008-09-08 14:30:53 +0200 | [diff] [blame] | 11 | /* Simple U-Boot driver for the PrimeCell PL010/PL011 UARTs */ |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 12 | |
| 13 | #include <common.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 14 | #include <asm/global_data.h> |
Andre Przywara | e3e2d66 | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 15 | /* For get_bus_freq() */ |
| 16 | #include <clock_legacy.h> |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 17 | #include <dm.h> |
Andre Przywara | e3e2d66 | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 18 | #include <clk.h> |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 19 | #include <errno.h> |
Stuart Wood | 8b616ed | 2008-06-02 16:42:19 -0400 | [diff] [blame] | 20 | #include <watchdog.h> |
Matt Waddel | 249d521 | 2010-10-07 15:48:46 -0600 | [diff] [blame] | 21 | #include <asm/io.h> |
Marek Vasut | 39f6147 | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 22 | #include <serial.h> |
Michal Simek | 6c9662d | 2020-10-13 15:00:24 +0200 | [diff] [blame] | 23 | #include <dm/device_compat.h> |
Masahiro Yamada | 86256b7 | 2014-10-24 12:41:19 +0900 | [diff] [blame] | 24 | #include <dm/platform_data/serial_pl01x.h> |
Marek Vasut | 39f6147 | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 25 | #include <linux/compiler.h> |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 26 | #include "serial_pl01x_internal.h" |
Vikas Manocha | 6975172 | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 27 | |
| 28 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 29 | |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 30 | #ifndef CONFIG_DM_SERIAL |
| 31 | |
wdenk | 6705d81 | 2004-08-02 23:22:59 +0000 | [diff] [blame] | 32 | static volatile unsigned char *const port[] = CONFIG_PL01x_PORTS; |
Marek BehĂșn | 236f2ec | 2021-05-20 13:23:52 +0200 | [diff] [blame] | 33 | static enum pl01x_type pl01x_type __section(".data"); |
| 34 | static struct pl01x_regs *base_regs __section(".data"); |
wdenk | 6705d81 | 2004-08-02 23:22:59 +0000 | [diff] [blame] | 35 | #define NUM_PORTS (sizeof(port)/sizeof(port[0])) |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 36 | |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 37 | #endif |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 38 | |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 39 | static int pl01x_putc(struct pl01x_regs *regs, char c) |
Rabin Vincent | 72d5e44 | 2010-05-05 09:23:07 +0530 | [diff] [blame] | 40 | { |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 41 | /* Wait until there is space in the FIFO */ |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 42 | if (readl(®s->fr) & UART_PL01x_FR_TXFF) |
| 43 | return -EAGAIN; |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 44 | |
| 45 | /* Send the character */ |
Rabin Vincent | 72d5e44 | 2010-05-05 09:23:07 +0530 | [diff] [blame] | 46 | writel(c, ®s->dr); |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 47 | |
| 48 | return 0; |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 49 | } |
| 50 | |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 51 | static int pl01x_getc(struct pl01x_regs *regs) |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 52 | { |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 53 | unsigned int data; |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 54 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 55 | /* Wait until there is data in the FIFO */ |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 56 | if (readl(®s->fr) & UART_PL01x_FR_RXFE) |
| 57 | return -EAGAIN; |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 58 | |
Rabin Vincent | 72d5e44 | 2010-05-05 09:23:07 +0530 | [diff] [blame] | 59 | data = readl(®s->dr); |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 60 | |
| 61 | /* Check for an error flag */ |
| 62 | if (data & 0xFFFFFF00) { |
| 63 | /* Clear the error */ |
Rabin Vincent | 72d5e44 | 2010-05-05 09:23:07 +0530 | [diff] [blame] | 64 | writel(0xFFFFFFFF, ®s->ecr); |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 65 | return -1; |
| 66 | } |
| 67 | |
| 68 | return (int) data; |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 69 | } |
| 70 | |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 71 | static int pl01x_tstc(struct pl01x_regs *regs) |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 72 | { |
Stuart Wood | 8b616ed | 2008-06-02 16:42:19 -0400 | [diff] [blame] | 73 | WATCHDOG_RESET(); |
Rabin Vincent | 72d5e44 | 2010-05-05 09:23:07 +0530 | [diff] [blame] | 74 | return !(readl(®s->fr) & UART_PL01x_FR_RXFE); |
wdenk | 3d3befa | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 75 | } |
Marek Vasut | 39f6147 | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 76 | |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 77 | static int pl01x_generic_serial_init(struct pl01x_regs *regs, |
| 78 | enum pl01x_type type) |
| 79 | { |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 80 | switch (type) { |
| 81 | case TYPE_PL010: |
Vikas Manocha | f7e517b | 2014-11-21 10:34:22 -0800 | [diff] [blame] | 82 | /* disable everything */ |
| 83 | writel(0, ®s->pl010_cr); |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 84 | break; |
Vikas Manocha | d2ca9fd | 2014-11-21 10:34:21 -0800 | [diff] [blame] | 85 | case TYPE_PL011: |
Vikas Manocha | f7e517b | 2014-11-21 10:34:22 -0800 | [diff] [blame] | 86 | /* disable everything */ |
| 87 | writel(0, ®s->pl011_cr); |
Vikas Manocha | d2ca9fd | 2014-11-21 10:34:21 -0800 | [diff] [blame] | 88 | break; |
| 89 | default: |
| 90 | return -EINVAL; |
| 91 | } |
| 92 | |
| 93 | return 0; |
| 94 | } |
| 95 | |
Linus Walleij | d77447f | 2015-04-21 15:10:06 +0200 | [diff] [blame] | 96 | static int pl011_set_line_control(struct pl01x_regs *regs) |
Vikas Manocha | d2ca9fd | 2014-11-21 10:34:21 -0800 | [diff] [blame] | 97 | { |
| 98 | unsigned int lcr; |
| 99 | /* |
| 100 | * Internal update of baud rate register require line |
| 101 | * control register write |
| 102 | */ |
| 103 | lcr = UART_PL011_LCRH_WLEN_8 | UART_PL011_LCRH_FEN; |
Vikas Manocha | d2ca9fd | 2014-11-21 10:34:21 -0800 | [diff] [blame] | 104 | writel(lcr, ®s->pl011_lcrh); |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 105 | return 0; |
| 106 | } |
| 107 | |
| 108 | static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type, |
| 109 | int clock, int baudrate) |
| 110 | { |
| 111 | switch (type) { |
| 112 | case TYPE_PL010: { |
| 113 | unsigned int divisor; |
| 114 | |
Linus Walleij | d77447f | 2015-04-21 15:10:06 +0200 | [diff] [blame] | 115 | /* disable everything */ |
| 116 | writel(0, ®s->pl010_cr); |
| 117 | |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 118 | switch (baudrate) { |
| 119 | case 9600: |
| 120 | divisor = UART_PL010_BAUD_9600; |
| 121 | break; |
| 122 | case 19200: |
Alyssa Rosenzweig | b2aa889 | 2017-04-07 09:48:22 -0700 | [diff] [blame] | 123 | divisor = UART_PL010_BAUD_19200; |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 124 | break; |
| 125 | case 38400: |
| 126 | divisor = UART_PL010_BAUD_38400; |
| 127 | break; |
| 128 | case 57600: |
| 129 | divisor = UART_PL010_BAUD_57600; |
| 130 | break; |
| 131 | case 115200: |
| 132 | divisor = UART_PL010_BAUD_115200; |
| 133 | break; |
| 134 | default: |
| 135 | divisor = UART_PL010_BAUD_38400; |
| 136 | } |
| 137 | |
| 138 | writel((divisor & 0xf00) >> 8, ®s->pl010_lcrm); |
| 139 | writel(divisor & 0xff, ®s->pl010_lcrl); |
| 140 | |
Linus Walleij | d77447f | 2015-04-21 15:10:06 +0200 | [diff] [blame] | 141 | /* |
| 142 | * Set line control for the PL010 to be 8 bits, 1 stop bit, |
| 143 | * no parity, fifo enabled |
| 144 | */ |
| 145 | writel(UART_PL010_LCRH_WLEN_8 | UART_PL010_LCRH_FEN, |
| 146 | ®s->pl010_lcrh); |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 147 | /* Finally, enable the UART */ |
| 148 | writel(UART_PL010_CR_UARTEN, ®s->pl010_cr); |
| 149 | break; |
| 150 | } |
| 151 | case TYPE_PL011: { |
| 152 | unsigned int temp; |
| 153 | unsigned int divider; |
| 154 | unsigned int remainder; |
| 155 | unsigned int fraction; |
| 156 | |
Andre Przywara | e3e2d66 | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 157 | /* Without a valid clock rate we cannot set up the baudrate. */ |
| 158 | if (clock) { |
| 159 | /* |
| 160 | * Set baud rate |
| 161 | * |
| 162 | * IBRD = UART_CLK / (16 * BAUD_RATE) |
| 163 | * FBRD = RND((64 * MOD(UART_CLK,(16 * BAUD_RATE))) |
| 164 | * / (16 * BAUD_RATE)) |
| 165 | */ |
| 166 | temp = 16 * baudrate; |
| 167 | divider = clock / temp; |
| 168 | remainder = clock % temp; |
| 169 | temp = (8 * remainder) / baudrate; |
| 170 | fraction = (temp >> 1) + (temp & 1); |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 171 | |
Andre Przywara | e3e2d66 | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 172 | writel(divider, ®s->pl011_ibrd); |
| 173 | writel(fraction, ®s->pl011_fbrd); |
| 174 | } |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 175 | |
Linus Walleij | d77447f | 2015-04-21 15:10:06 +0200 | [diff] [blame] | 176 | pl011_set_line_control(regs); |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 177 | /* Finally, enable the UART */ |
| 178 | writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE | |
| 179 | UART_PL011_CR_RXE | UART_PL011_CR_RTS, ®s->pl011_cr); |
| 180 | break; |
| 181 | } |
| 182 | default: |
| 183 | return -EINVAL; |
| 184 | } |
| 185 | |
| 186 | return 0; |
| 187 | } |
| 188 | |
| 189 | #ifndef CONFIG_DM_SERIAL |
| 190 | static void pl01x_serial_init_baud(int baudrate) |
| 191 | { |
| 192 | int clock = 0; |
| 193 | |
Tom Rini | bc08dc5 | 2021-05-22 08:47:08 -0400 | [diff] [blame] | 194 | #if defined(CONFIG_PL011_SERIAL) |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 195 | pl01x_type = TYPE_PL011; |
| 196 | clock = CONFIG_PL011_CLOCK; |
| 197 | #endif |
| 198 | base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX]; |
| 199 | |
| 200 | pl01x_generic_serial_init(base_regs, pl01x_type); |
Vikas Manocha | a7deea6 | 2014-11-21 10:34:19 -0800 | [diff] [blame] | 201 | pl01x_generic_setbrg(base_regs, pl01x_type, clock, baudrate); |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | /* |
| 205 | * Integrator AP has two UARTs, we use the first one, at 38400-8-N-1 |
| 206 | * Integrator CP has two UARTs, use the first one, at 38400-8-N-1 |
| 207 | * Versatile PB has four UARTs. |
| 208 | */ |
| 209 | int pl01x_serial_init(void) |
| 210 | { |
| 211 | pl01x_serial_init_baud(CONFIG_BAUDRATE); |
| 212 | |
| 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | static void pl01x_serial_putc(const char c) |
| 217 | { |
| 218 | if (c == '\n') |
| 219 | while (pl01x_putc(base_regs, '\r') == -EAGAIN); |
| 220 | |
| 221 | while (pl01x_putc(base_regs, c) == -EAGAIN); |
| 222 | } |
| 223 | |
| 224 | static int pl01x_serial_getc(void) |
| 225 | { |
| 226 | while (1) { |
| 227 | int ch = pl01x_getc(base_regs); |
| 228 | |
| 229 | if (ch == -EAGAIN) { |
| 230 | WATCHDOG_RESET(); |
| 231 | continue; |
| 232 | } |
| 233 | |
| 234 | return ch; |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | static int pl01x_serial_tstc(void) |
| 239 | { |
| 240 | return pl01x_tstc(base_regs); |
| 241 | } |
| 242 | |
| 243 | static void pl01x_serial_setbrg(void) |
| 244 | { |
| 245 | /* |
| 246 | * Flush FIFO and wait for non-busy before changing baudrate to avoid |
| 247 | * crap in console |
| 248 | */ |
| 249 | while (!(readl(&base_regs->fr) & UART_PL01x_FR_TXFE)) |
| 250 | WATCHDOG_RESET(); |
| 251 | while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY) |
| 252 | WATCHDOG_RESET(); |
| 253 | pl01x_serial_init_baud(gd->baudrate); |
| 254 | } |
| 255 | |
Marek Vasut | 39f6147 | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 256 | static struct serial_device pl01x_serial_drv = { |
| 257 | .name = "pl01x_serial", |
| 258 | .start = pl01x_serial_init, |
| 259 | .stop = NULL, |
| 260 | .setbrg = pl01x_serial_setbrg, |
| 261 | .putc = pl01x_serial_putc, |
Marek Vasut | ec3fd68 | 2012-10-06 14:07:02 +0000 | [diff] [blame] | 262 | .puts = default_serial_puts, |
Marek Vasut | 39f6147 | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 263 | .getc = pl01x_serial_getc, |
| 264 | .tstc = pl01x_serial_tstc, |
| 265 | }; |
| 266 | |
| 267 | void pl01x_serial_initialize(void) |
| 268 | { |
| 269 | serial_register(&pl01x_serial_drv); |
| 270 | } |
| 271 | |
| 272 | __weak struct serial_device *default_serial_console(void) |
| 273 | { |
| 274 | return &pl01x_serial_drv; |
| 275 | } |
Simon Glass | aed2fbe | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 276 | |
| 277 | #endif /* nCONFIG_DM_SERIAL */ |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 278 | |
| 279 | #ifdef CONFIG_DM_SERIAL |
| 280 | |
Alexander Graf | c9bf43d | 2018-03-07 22:08:25 +0100 | [diff] [blame] | 281 | int pl01x_serial_setbrg(struct udevice *dev, int baudrate) |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 282 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 283 | struct pl01x_serial_plat *plat = dev_get_plat(dev); |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 284 | struct pl01x_priv *priv = dev_get_priv(dev); |
| 285 | |
Eric Anholt | cd0fa5b | 2016-03-13 18:16:54 -0700 | [diff] [blame] | 286 | if (!plat->skip_init) { |
| 287 | pl01x_generic_setbrg(priv->regs, priv->type, plat->clock, |
| 288 | baudrate); |
| 289 | } |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 290 | |
| 291 | return 0; |
| 292 | } |
| 293 | |
Alexander Graf | 6001985 | 2018-01-25 12:05:55 +0100 | [diff] [blame] | 294 | int pl01x_serial_probe(struct udevice *dev) |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 295 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 296 | struct pl01x_serial_plat *plat = dev_get_plat(dev); |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 297 | struct pl01x_priv *priv = dev_get_priv(dev); |
| 298 | |
| 299 | priv->regs = (struct pl01x_regs *)plat->base; |
| 300 | priv->type = plat->type; |
Eric Anholt | cd0fa5b | 2016-03-13 18:16:54 -0700 | [diff] [blame] | 301 | if (!plat->skip_init) |
| 302 | return pl01x_generic_serial_init(priv->regs, priv->type); |
| 303 | else |
| 304 | return 0; |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 305 | } |
| 306 | |
Alexander Graf | c9bf43d | 2018-03-07 22:08:25 +0100 | [diff] [blame] | 307 | int pl01x_serial_getc(struct udevice *dev) |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 308 | { |
| 309 | struct pl01x_priv *priv = dev_get_priv(dev); |
| 310 | |
| 311 | return pl01x_getc(priv->regs); |
| 312 | } |
| 313 | |
Alexander Graf | c9bf43d | 2018-03-07 22:08:25 +0100 | [diff] [blame] | 314 | int pl01x_serial_putc(struct udevice *dev, const char ch) |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 315 | { |
| 316 | struct pl01x_priv *priv = dev_get_priv(dev); |
| 317 | |
| 318 | return pl01x_putc(priv->regs, ch); |
| 319 | } |
| 320 | |
Alexander Graf | c9bf43d | 2018-03-07 22:08:25 +0100 | [diff] [blame] | 321 | int pl01x_serial_pending(struct udevice *dev, bool input) |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 322 | { |
| 323 | struct pl01x_priv *priv = dev_get_priv(dev); |
| 324 | unsigned int fr = readl(&priv->regs->fr); |
| 325 | |
| 326 | if (input) |
| 327 | return pl01x_tstc(priv->regs); |
| 328 | else |
| 329 | return fr & UART_PL01x_FR_TXFF ? 0 : 1; |
| 330 | } |
| 331 | |
Alexander Graf | c9bf43d | 2018-03-07 22:08:25 +0100 | [diff] [blame] | 332 | static const struct dm_serial_ops pl01x_serial_ops = { |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 333 | .putc = pl01x_serial_putc, |
| 334 | .pending = pl01x_serial_pending, |
| 335 | .getc = pl01x_serial_getc, |
| 336 | .setbrg = pl01x_serial_setbrg, |
| 337 | }; |
| 338 | |
Masahiro Yamada | 0f92582 | 2015-08-12 07:31:55 +0900 | [diff] [blame] | 339 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Vikas Manocha | 6975172 | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 340 | static const struct udevice_id pl01x_serial_id[] ={ |
| 341 | {.compatible = "arm,pl011", .data = TYPE_PL011}, |
| 342 | {.compatible = "arm,pl010", .data = TYPE_PL010}, |
| 343 | {} |
| 344 | }; |
| 345 | |
Andre Przywara | e3e2d66 | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 346 | #ifndef CONFIG_PL011_CLOCK |
| 347 | #define CONFIG_PL011_CLOCK 0 |
| 348 | #endif |
| 349 | |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 350 | int pl01x_serial_of_to_plat(struct udevice *dev) |
Vikas Manocha | 6975172 | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 351 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 352 | struct pl01x_serial_plat *plat = dev_get_plat(dev); |
Andre Przywara | e3e2d66 | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 353 | struct clk clk; |
Vikas Manocha | 6975172 | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 354 | fdt_addr_t addr; |
Andre Przywara | e3e2d66 | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 355 | int ret; |
Vikas Manocha | 6975172 | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 356 | |
Masahiro Yamada | 2548493 | 2020-07-17 14:36:48 +0900 | [diff] [blame] | 357 | addr = dev_read_addr(dev); |
Vikas Manocha | 6975172 | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 358 | if (addr == FDT_ADDR_T_NONE) |
| 359 | return -EINVAL; |
| 360 | |
| 361 | plat->base = addr; |
Andre Przywara | e3e2d66 | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 362 | plat->clock = dev_read_u32_default(dev, "clock", CONFIG_PL011_CLOCK); |
| 363 | ret = clk_get_by_index(dev, 0, &clk); |
| 364 | if (!ret) { |
Michal Simek | 6c9662d | 2020-10-13 15:00:24 +0200 | [diff] [blame] | 365 | ret = clk_enable(&clk); |
| 366 | if (ret && ret != -ENOSYS) { |
| 367 | dev_err(dev, "failed to enable clock\n"); |
| 368 | return ret; |
| 369 | } |
| 370 | |
Andre Przywara | e3e2d66 | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 371 | plat->clock = clk_get_rate(&clk); |
Michal Simek | 6c9662d | 2020-10-13 15:00:24 +0200 | [diff] [blame] | 372 | if (IS_ERR_VALUE(plat->clock)) { |
| 373 | dev_err(dev, "failed to get rate\n"); |
| 374 | return plat->clock; |
| 375 | } |
| 376 | debug("%s: CLK %d\n", __func__, plat->clock); |
Andre Przywara | e3e2d66 | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 377 | } |
Vikas Manocha | 6975172 | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 378 | plat->type = dev_get_driver_data(dev); |
Alexander Graf | b311163 | 2018-01-25 12:05:49 +0100 | [diff] [blame] | 379 | plat->skip_init = dev_read_bool(dev, "skip-init"); |
| 380 | |
Vikas Manocha | 6975172 | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 381 | return 0; |
| 382 | } |
| 383 | #endif |
| 384 | |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 385 | U_BOOT_DRIVER(serial_pl01x) = { |
| 386 | .name = "serial_pl01x", |
| 387 | .id = UCLASS_SERIAL, |
Vikas Manocha | 6975172 | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 388 | .of_match = of_match_ptr(pl01x_serial_id), |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 389 | .of_to_plat = of_match_ptr(pl01x_serial_of_to_plat), |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 390 | .plat_auto = sizeof(struct pl01x_serial_plat), |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 391 | .probe = pl01x_serial_probe, |
| 392 | .ops = &pl01x_serial_ops, |
| 393 | .flags = DM_FLAG_PRE_RELOC, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 394 | .priv_auto = sizeof(struct pl01x_priv), |
Simon Glass | 8a9cd5a | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 395 | }; |
| 396 | |
| 397 | #endif |
Sergey Temerkhanov | b81406d | 2015-10-14 09:54:23 -0700 | [diff] [blame] | 398 | |
| 399 | #if defined(CONFIG_DEBUG_UART_PL010) || defined(CONFIG_DEBUG_UART_PL011) |
| 400 | |
| 401 | #include <debug_uart.h> |
| 402 | |
| 403 | static void _debug_uart_init(void) |
| 404 | { |
| 405 | #ifndef CONFIG_DEBUG_UART_SKIP_INIT |
| 406 | struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE; |
Chen Baozi | 91a0438 | 2021-07-21 14:11:26 +0800 | [diff] [blame] | 407 | enum pl01x_type type; |
| 408 | |
| 409 | if (IS_ENABLED(CONFIG_DEBUG_UART_PL011)) |
| 410 | type = TYPE_PL011; |
| 411 | else |
| 412 | type = TYPE_PL010; |
Sergey Temerkhanov | b81406d | 2015-10-14 09:54:23 -0700 | [diff] [blame] | 413 | |
| 414 | pl01x_generic_serial_init(regs, type); |
| 415 | pl01x_generic_setbrg(regs, type, |
| 416 | CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE); |
| 417 | #endif |
| 418 | } |
| 419 | |
| 420 | static inline void _debug_uart_putc(int ch) |
| 421 | { |
| 422 | struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_DEBUG_UART_BASE; |
| 423 | |
Chen Baozi | 1982015 | 2021-07-19 15:36:04 +0800 | [diff] [blame] | 424 | while (pl01x_putc(regs, ch) == -EAGAIN) |
| 425 | ; |
Sergey Temerkhanov | b81406d | 2015-10-14 09:54:23 -0700 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | DEBUG_UART_FUNCS |
| 429 | |
| 430 | #endif |