Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 4989f87 | 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 | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Andreas Engel | 0813b12 | 2008-09-08 14:30:53 +0200 | [diff] [blame] | 11 | /* Simple U-Boot driver for the PrimeCell PL010/PL011 UARTs */ |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 12 | |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Andre Przywara | 7ee2dab | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 14 | /* For get_bus_freq() */ |
| 15 | #include <clock_legacy.h> |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 16 | #include <dm.h> |
Andre Przywara | 7ee2dab | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 17 | #include <clk.h> |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 18 | #include <errno.h> |
Stuart Wood | 26136ef | 2008-06-02 16:42:19 -0400 | [diff] [blame] | 19 | #include <watchdog.h> |
Matt Waddel | d6ce53e | 2010-10-07 15:48:46 -0600 | [diff] [blame] | 20 | #include <asm/io.h> |
Marek Vasut | 46e4d5f | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 21 | #include <serial.h> |
Michal Simek | f96c789 | 2020-10-13 15:00:24 +0200 | [diff] [blame] | 22 | #include <dm/device_compat.h> |
Masahiro Yamada | 22c97de | 2014-10-24 12:41:19 +0900 | [diff] [blame] | 23 | #include <dm/platform_data/serial_pl01x.h> |
Marek Vasut | 46e4d5f | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 24 | #include <linux/compiler.h> |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 25 | #include "serial_pl01x_internal.h" |
Vikas Manocha | 92e349e | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 26 | |
| 27 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 28 | |
Tom Rini | 952cc38 | 2022-12-04 10:14:13 -0500 | [diff] [blame] | 29 | #if !CONFIG_IS_ENABLED(DM_SERIAL) |
Tom Rini | 9fe2b31 | 2022-12-04 10:13:31 -0500 | [diff] [blame] | 30 | static volatile unsigned char *const port[] = CFG_PL01x_PORTS; |
Marek Behún | 4bebdd3 | 2021-05-20 13:23:52 +0200 | [diff] [blame] | 31 | static enum pl01x_type pl01x_type __section(".data"); |
| 32 | static struct pl01x_regs *base_regs __section(".data"); |
wdenk | da04a8b | 2004-08-02 23:22:59 +0000 | [diff] [blame] | 33 | #define NUM_PORTS (sizeof(port)/sizeof(port[0])) |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 34 | |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 35 | #endif |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 36 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 37 | static int pl01x_putc(struct pl01x_regs *regs, char c) |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 38 | { |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 39 | /* Wait until there is space in the FIFO */ |
| 40 | if (readl(®s->fr) & UART_PL01x_FR_TXFF) |
| 41 | return -EAGAIN; |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 42 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 43 | /* Send the character */ |
| 44 | writel(c, ®s->dr); |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 45 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 46 | return 0; |
| 47 | } |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 48 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 49 | static int pl01x_getc(struct pl01x_regs *regs) |
| 50 | { |
| 51 | unsigned int data; |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 52 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 53 | /* Wait until there is data in the FIFO */ |
| 54 | if (readl(®s->fr) & UART_PL01x_FR_RXFE) |
| 55 | return -EAGAIN; |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 56 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 57 | data = readl(®s->dr); |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 58 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 59 | /* Check for an error flag */ |
| 60 | if (data & 0xFFFFFF00) { |
| 61 | /* Clear the error */ |
| 62 | writel(0xFFFFFFFF, ®s->ecr); |
| 63 | return -1; |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 64 | } |
| 65 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 66 | return (int) data; |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 67 | } |
| 68 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 69 | static int pl01x_tstc(struct pl01x_regs *regs) |
| 70 | { |
Stefan Roese | 80877fa | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 71 | schedule(); |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 72 | return !(readl(®s->fr) & UART_PL01x_FR_RXFE); |
| 73 | } |
Andreas Engel | 8043861 | 2008-09-08 10:17:31 +0200 | [diff] [blame] | 74 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 75 | static int pl01x_generic_serial_init(struct pl01x_regs *regs, |
| 76 | enum pl01x_type type) |
Andreas Engel | 8043861 | 2008-09-08 10:17:31 +0200 | [diff] [blame] | 77 | { |
Vikas Manocha | be14f15 | 2014-11-21 10:34:23 -0800 | [diff] [blame] | 78 | switch (type) { |
| 79 | case TYPE_PL010: |
| 80 | /* disable everything */ |
| 81 | writel(0, ®s->pl010_cr); |
| 82 | break; |
| 83 | case TYPE_PL011: |
Vikas Manocha | ee038e2 | 2014-11-21 10:34:22 -0800 | [diff] [blame] | 84 | /* disable everything */ |
| 85 | writel(0, ®s->pl011_cr); |
Vikas Manocha | fe96bbd | 2014-11-21 10:34:21 -0800 | [diff] [blame] | 86 | break; |
| 87 | default: |
| 88 | return -EINVAL; |
| 89 | } |
| 90 | |
| 91 | return 0; |
| 92 | } |
| 93 | |
Linus Walleij | 70864f6 | 2015-04-21 15:10:06 +0200 | [diff] [blame] | 94 | static int pl011_set_line_control(struct pl01x_regs *regs) |
Vikas Manocha | fe96bbd | 2014-11-21 10:34:21 -0800 | [diff] [blame] | 95 | { |
| 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 Manocha | fe96bbd | 2014-11-21 10:34:21 -0800 | [diff] [blame] | 102 | writel(lcr, ®s->pl011_lcrh); |
Andreas Engel | 8043861 | 2008-09-08 10:17:31 +0200 | [diff] [blame] | 103 | return 0; |
| 104 | } |
| 105 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 106 | static int pl01x_generic_setbrg(struct pl01x_regs *regs, enum pl01x_type type, |
| 107 | int clock, int baudrate) |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 108 | { |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 109 | switch (type) { |
| 110 | case TYPE_PL010: { |
| 111 | unsigned int divisor; |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 112 | |
Linus Walleij | 70864f6 | 2015-04-21 15:10:06 +0200 | [diff] [blame] | 113 | /* disable everything */ |
| 114 | writel(0, ®s->pl010_cr); |
| 115 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 116 | switch (baudrate) { |
| 117 | case 9600: |
| 118 | divisor = UART_PL010_BAUD_9600; |
| 119 | break; |
| 120 | case 19200: |
Alyssa Rosenzweig | af7638b | 2017-04-07 09:48:22 -0700 | [diff] [blame] | 121 | divisor = UART_PL010_BAUD_19200; |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 122 | 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 | } |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 135 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 136 | writel((divisor & 0xf00) >> 8, ®s->pl010_lcrm); |
| 137 | writel(divisor & 0xff, ®s->pl010_lcrl); |
| 138 | |
Linus Walleij | 70864f6 | 2015-04-21 15:10:06 +0200 | [diff] [blame] | 139 | /* |
| 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 | ®s->pl010_lcrh); |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 145 | /* Finally, enable the UART */ |
| 146 | writel(UART_PL010_CR_UARTEN, ®s->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 Przywara | 7ee2dab | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 155 | /* 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 Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 169 | |
Andre Przywara | 7ee2dab | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 170 | writel(divider, ®s->pl011_ibrd); |
| 171 | writel(fraction, ®s->pl011_fbrd); |
| 172 | } |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 173 | |
Linus Walleij | 70864f6 | 2015-04-21 15:10:06 +0200 | [diff] [blame] | 174 | pl011_set_line_control(regs); |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 175 | /* Finally, enable the UART */ |
| 176 | writel(UART_PL011_CR_UARTEN | UART_PL011_CR_TXE | |
| 177 | UART_PL011_CR_RXE | UART_PL011_CR_RTS, ®s->pl011_cr); |
| 178 | break; |
| 179 | } |
| 180 | default: |
| 181 | return -EINVAL; |
| 182 | } |
| 183 | |
| 184 | return 0; |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 185 | } |
| 186 | |
Tom Rini | 952cc38 | 2022-12-04 10:14:13 -0500 | [diff] [blame] | 187 | #if !CONFIG_IS_ENABLED(DM_SERIAL) |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 188 | static void pl01x_serial_init_baud(int baudrate) |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 189 | { |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 190 | int clock = 0; |
| 191 | |
Tom Rini | 0ba2f37 | 2021-05-22 08:47:08 -0400 | [diff] [blame] | 192 | #if defined(CONFIG_PL011_SERIAL) |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 193 | pl01x_type = TYPE_PL011; |
Tom Rini | 5c896ae | 2022-12-04 10:13:30 -0500 | [diff] [blame] | 194 | clock = CFG_PL011_CLOCK; |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 195 | #endif |
| 196 | base_regs = (struct pl01x_regs *)port[CONFIG_CONS_INDEX]; |
| 197 | |
| 198 | pl01x_generic_serial_init(base_regs, pl01x_type); |
Vikas Manocha | aac2396 | 2014-11-21 10:34:19 -0800 | [diff] [blame] | 199 | pl01x_generic_setbrg(base_regs, pl01x_type, clock, baudrate); |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 200 | } |
| 201 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 202 | /* |
| 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 | */ |
| 207 | int pl01x_serial_init(void) |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 208 | { |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 209 | pl01x_serial_init_baud(CONFIG_BAUDRATE); |
Linus Walleij | b8058e8 | 2011-10-02 11:52:52 +0000 | [diff] [blame] | 210 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 211 | return 0; |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 212 | } |
| 213 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 214 | static void pl01x_serial_putc(const char c) |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 215 | { |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 216 | if (c == '\n') |
| 217 | while (pl01x_putc(base_regs, '\r') == -EAGAIN); |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 218 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 219 | while (pl01x_putc(base_regs, c) == -EAGAIN); |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 220 | } |
| 221 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 222 | static int pl01x_serial_getc(void) |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 223 | { |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 224 | while (1) { |
| 225 | int ch = pl01x_getc(base_regs); |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 226 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 227 | if (ch == -EAGAIN) { |
Stefan Roese | 80877fa | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 228 | schedule(); |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 229 | continue; |
| 230 | } |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 231 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 232 | return ch; |
wdenk | c35ba4e | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 233 | } |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 234 | } |
| 235 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 236 | static int pl01x_serial_tstc(void) |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 237 | { |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 238 | return pl01x_tstc(base_regs); |
| 239 | } |
Rabin Vincent | fb3c95f | 2010-05-05 09:23:07 +0530 | [diff] [blame] | 240 | |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 241 | static 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 Roese | 80877fa | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 248 | schedule(); |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 249 | while (readl(&base_regs->fr) & UART_PL01x_FR_BUSY) |
Stefan Roese | 80877fa | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 250 | schedule(); |
Simon Glass | f35484d | 2014-09-22 17:30:57 -0600 | [diff] [blame] | 251 | pl01x_serial_init_baud(gd->baudrate); |
wdenk | 4989f87 | 2004-03-14 15:06:13 +0000 | [diff] [blame] | 252 | } |
Marek Vasut | 46e4d5f | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 253 | |
Marek Vasut | 46e4d5f | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 254 | static 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 Vasut | d9c6449 | 2012-10-06 14:07:02 +0000 | [diff] [blame] | 260 | .puts = default_serial_puts, |
Marek Vasut | 46e4d5f | 2012-09-14 22:38:46 +0200 | [diff] [blame] | 261 | .getc = pl01x_serial_getc, |
| 262 | .tstc = pl01x_serial_tstc, |
| 263 | }; |
| 264 | |
| 265 | void 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 Rini | 952cc38 | 2022-12-04 10:14:13 -0500 | [diff] [blame] | 274 | #else |
Alexander Graf | a5c3585 | 2018-03-07 22:08:25 +0100 | [diff] [blame] | 275 | int pl01x_serial_setbrg(struct udevice *dev, int baudrate) |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 276 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 277 | struct pl01x_serial_plat *plat = dev_get_plat(dev); |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 278 | struct pl01x_priv *priv = dev_get_priv(dev); |
| 279 | |
Eric Anholt | be5a7dd | 2016-03-13 18:16:54 -0700 | [diff] [blame] | 280 | if (!plat->skip_init) { |
| 281 | pl01x_generic_setbrg(priv->regs, priv->type, plat->clock, |
| 282 | baudrate); |
| 283 | } |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 284 | |
| 285 | return 0; |
| 286 | } |
| 287 | |
Alexander Graf | a73b0ec | 2018-01-25 12:05:55 +0100 | [diff] [blame] | 288 | int pl01x_serial_probe(struct udevice *dev) |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 289 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 290 | struct pl01x_serial_plat *plat = dev_get_plat(dev); |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 291 | struct pl01x_priv *priv = dev_get_priv(dev); |
Yang Xiwen | c6d2e01 | 2024-02-28 18:57:52 +0800 | [diff] [blame] | 292 | int ret; |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 293 | |
Lukasz Majewski | 58aec3f | 2023-05-19 12:43:52 +0200 | [diff] [blame] | 294 | #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 Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 300 | priv->regs = (struct pl01x_regs *)plat->base; |
Lukasz Majewski | 58aec3f | 2023-05-19 12:43:52 +0200 | [diff] [blame] | 301 | #endif |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 302 | priv->type = plat->type; |
Lukasz Majewski | 58aec3f | 2023-05-19 12:43:52 +0200 | [diff] [blame] | 303 | |
Yang Xiwen | c6d2e01 | 2024-02-28 18:57:52 +0800 | [diff] [blame] | 304 | 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 Anholt | be5a7dd | 2016-03-13 18:16:54 -0700 | [diff] [blame] | 310 | return 0; |
Yang Xiwen | c6d2e01 | 2024-02-28 18:57:52 +0800 | [diff] [blame] | 311 | } |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 312 | } |
| 313 | |
Alexander Graf | a5c3585 | 2018-03-07 22:08:25 +0100 | [diff] [blame] | 314 | int pl01x_serial_getc(struct udevice *dev) |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 315 | { |
| 316 | struct pl01x_priv *priv = dev_get_priv(dev); |
| 317 | |
| 318 | return pl01x_getc(priv->regs); |
| 319 | } |
| 320 | |
Alexander Graf | a5c3585 | 2018-03-07 22:08:25 +0100 | [diff] [blame] | 321 | int pl01x_serial_putc(struct udevice *dev, const char ch) |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 322 | { |
| 323 | struct pl01x_priv *priv = dev_get_priv(dev); |
| 324 | |
| 325 | return pl01x_putc(priv->regs, ch); |
| 326 | } |
| 327 | |
Alexander Graf | a5c3585 | 2018-03-07 22:08:25 +0100 | [diff] [blame] | 328 | int pl01x_serial_pending(struct udevice *dev, bool input) |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 329 | { |
| 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 Majewski | db244c7 | 2023-05-19 12:43:53 +0200 | [diff] [blame] | 336 | return fr & UART_PL01x_FR_TXFE ? 0 : 1; |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 337 | } |
| 338 | |
Alexander Graf | a5c3585 | 2018-03-07 22:08:25 +0100 | [diff] [blame] | 339 | static const struct dm_serial_ops pl01x_serial_ops = { |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 340 | .putc = pl01x_serial_putc, |
| 341 | .pending = pl01x_serial_pending, |
| 342 | .getc = pl01x_serial_getc, |
| 343 | .setbrg = pl01x_serial_setbrg, |
| 344 | }; |
| 345 | |
Lukasz Majewski | 647c003 | 2023-05-19 12:43:51 +0200 | [diff] [blame] | 346 | #if CONFIG_IS_ENABLED(OF_REAL) |
Vikas Manocha | 92e349e | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 347 | static 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 Rini | 5c896ae | 2022-12-04 10:13:30 -0500 | [diff] [blame] | 353 | #ifndef CFG_PL011_CLOCK |
| 354 | #define CFG_PL011_CLOCK 0 |
Andre Przywara | 7ee2dab | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 355 | #endif |
| 356 | |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 357 | int pl01x_serial_of_to_plat(struct udevice *dev) |
Vikas Manocha | 92e349e | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 358 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 359 | struct pl01x_serial_plat *plat = dev_get_plat(dev); |
Andre Przywara | 7ee2dab | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 360 | struct clk clk; |
Vikas Manocha | 92e349e | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 361 | fdt_addr_t addr; |
Andre Przywara | 7ee2dab | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 362 | int ret; |
Vikas Manocha | 92e349e | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 363 | |
Masahiro Yamada | a89b4de | 2020-07-17 14:36:48 +0900 | [diff] [blame] | 364 | addr = dev_read_addr(dev); |
Vikas Manocha | 92e349e | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 365 | if (addr == FDT_ADDR_T_NONE) |
| 366 | return -EINVAL; |
| 367 | |
| 368 | plat->base = addr; |
Tom Rini | 5c896ae | 2022-12-04 10:13:30 -0500 | [diff] [blame] | 369 | plat->clock = dev_read_u32_default(dev, "clock", CFG_PL011_CLOCK); |
Andre Przywara | 7ee2dab | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 370 | ret = clk_get_by_index(dev, 0, &clk); |
| 371 | if (!ret) { |
Michal Simek | f96c789 | 2020-10-13 15:00:24 +0200 | [diff] [blame] | 372 | ret = clk_enable(&clk); |
| 373 | if (ret && ret != -ENOSYS) { |
| 374 | dev_err(dev, "failed to enable clock\n"); |
| 375 | return ret; |
| 376 | } |
| 377 | |
Andre Przywara | 7ee2dab | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 378 | plat->clock = clk_get_rate(&clk); |
Michal Simek | f96c789 | 2020-10-13 15:00:24 +0200 | [diff] [blame] | 379 | 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 Przywara | 7ee2dab | 2020-04-27 19:17:59 +0100 | [diff] [blame] | 384 | } |
Vikas Manocha | 92e349e | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 385 | plat->type = dev_get_driver_data(dev); |
Alexander Graf | cce6443 | 2018-01-25 12:05:49 +0100 | [diff] [blame] | 386 | plat->skip_init = dev_read_bool(dev, "skip-init"); |
| 387 | |
Vikas Manocha | 92e349e | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 388 | return 0; |
| 389 | } |
| 390 | #endif |
| 391 | |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 392 | U_BOOT_DRIVER(serial_pl01x) = { |
| 393 | .name = "serial_pl01x", |
| 394 | .id = UCLASS_SERIAL, |
Lukasz Majewski | 58aec3f | 2023-05-19 12:43:52 +0200 | [diff] [blame] | 395 | #if CONFIG_IS_ENABLED(OF_REAL) |
Vikas Manocha | 92e349e | 2015-05-06 11:46:29 -0700 | [diff] [blame] | 396 | .of_match = of_match_ptr(pl01x_serial_id), |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 397 | .of_to_plat = of_match_ptr(pl01x_serial_of_to_plat), |
Lukasz Majewski | 58aec3f | 2023-05-19 12:43:52 +0200 | [diff] [blame] | 398 | #endif |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 399 | .plat_auto = sizeof(struct pl01x_serial_plat), |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 400 | .probe = pl01x_serial_probe, |
| 401 | .ops = &pl01x_serial_ops, |
| 402 | .flags = DM_FLAG_PRE_RELOC, |
Simon Glass | 8a2b47f | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 403 | .priv_auto = sizeof(struct pl01x_priv), |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 404 | }; |
| 405 | |
Lukasz Majewski | 58aec3f | 2023-05-19 12:43:52 +0200 | [diff] [blame] | 406 | DM_DRIVER_ALIAS(serial_pl01x, arm_pl011) |
| 407 | DM_DRIVER_ALIAS(serial_pl01x, arm_pl010) |
Simon Glass | 3ad93fe | 2014-09-22 17:30:58 -0600 | [diff] [blame] | 408 | #endif |
Sergey Temerkhanov | c0ffa4e | 2015-10-14 09:54:23 -0700 | [diff] [blame] | 409 | |
| 410 | #if defined(CONFIG_DEBUG_UART_PL010) || defined(CONFIG_DEBUG_UART_PL011) |
| 411 | |
| 412 | #include <debug_uart.h> |
| 413 | |
| 414 | static void _debug_uart_init(void) |
| 415 | { |
| 416 | #ifndef CONFIG_DEBUG_UART_SKIP_INIT |
Pali Rohár | 8864b35 | 2022-05-27 22:15:24 +0200 | [diff] [blame] | 417 | struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_VAL(DEBUG_UART_BASE); |
Chen Baozi | a506ff4 | 2021-07-21 14:11:26 +0800 | [diff] [blame] | 418 | enum pl01x_type type; |
| 419 | |
| 420 | if (IS_ENABLED(CONFIG_DEBUG_UART_PL011)) |
| 421 | type = TYPE_PL011; |
| 422 | else |
| 423 | type = TYPE_PL010; |
Sergey Temerkhanov | c0ffa4e | 2015-10-14 09:54:23 -0700 | [diff] [blame] | 424 | |
| 425 | pl01x_generic_serial_init(regs, type); |
| 426 | pl01x_generic_setbrg(regs, type, |
| 427 | CONFIG_DEBUG_UART_CLOCK, CONFIG_BAUDRATE); |
| 428 | #endif |
| 429 | } |
| 430 | |
| 431 | static inline void _debug_uart_putc(int ch) |
| 432 | { |
Pali Rohár | 8864b35 | 2022-05-27 22:15:24 +0200 | [diff] [blame] | 433 | struct pl01x_regs *regs = (struct pl01x_regs *)CONFIG_VAL(DEBUG_UART_BASE); |
Sergey Temerkhanov | c0ffa4e | 2015-10-14 09:54:23 -0700 | [diff] [blame] | 434 | |
Chen Baozi | 99888fa | 2021-07-19 15:36:04 +0800 | [diff] [blame] | 435 | while (pl01x_putc(regs, ch) == -EAGAIN) |
| 436 | ; |
Sergey Temerkhanov | c0ffa4e | 2015-10-14 09:54:23 -0700 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | DEBUG_UART_FUNCS |
| 440 | |
| 441 | #endif |