Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 2 | /* |
Vabhav Sharma | 1edc568 | 2019-01-31 12:08:10 +0000 | [diff] [blame] | 3 | * Copyright 2019 NXP |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 4 | * Copyright 2013 Freescale Semiconductor, Inc. |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 8 | #include <clk.h> |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 9 | #include <dm.h> |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 10 | #include <fsl_lpuart.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 12 | #include <watchdog.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 14 | #include <asm/io.h> |
| 15 | #include <serial.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 16 | #include <dm/device_compat.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 17 | #include <linux/bitops.h> |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 18 | #include <linux/compiler.h> |
| 19 | #include <asm/arch/imx-regs.h> |
| 20 | #include <asm/arch/clock.h> |
| 21 | |
Bin Meng | 47f1bfc | 2016-01-13 19:39:01 -0800 | [diff] [blame] | 22 | #define US1_TDRE (1 << 7) |
| 23 | #define US1_RDRF (1 << 5) |
| 24 | #define US1_OR (1 << 3) |
| 25 | #define UC2_TE (1 << 3) |
| 26 | #define UC2_RE (1 << 2) |
| 27 | #define CFIFO_TXFLUSH (1 << 7) |
| 28 | #define CFIFO_RXFLUSH (1 << 6) |
| 29 | #define SFIFO_RXOF (1 << 2) |
| 30 | #define SFIFO_RXUF (1 << 0) |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 31 | |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 32 | #define STAT_LBKDIF (1 << 31) |
| 33 | #define STAT_RXEDGIF (1 << 30) |
| 34 | #define STAT_TDRE (1 << 23) |
| 35 | #define STAT_RDRF (1 << 21) |
| 36 | #define STAT_IDLE (1 << 20) |
| 37 | #define STAT_OR (1 << 19) |
| 38 | #define STAT_NF (1 << 18) |
| 39 | #define STAT_FE (1 << 17) |
| 40 | #define STAT_PF (1 << 16) |
| 41 | #define STAT_MA1F (1 << 15) |
| 42 | #define STAT_MA2F (1 << 14) |
| 43 | #define STAT_FLAGS (STAT_LBKDIF | STAT_RXEDGIF | STAT_IDLE | STAT_OR | \ |
Bin Meng | 47f1bfc | 2016-01-13 19:39:01 -0800 | [diff] [blame] | 44 | STAT_NF | STAT_FE | STAT_PF | STAT_MA1F | STAT_MA2F) |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 45 | |
| 46 | #define CTRL_TE (1 << 19) |
| 47 | #define CTRL_RE (1 << 18) |
| 48 | |
Ye Li | cdc16f6 | 2018-10-18 14:28:32 +0200 | [diff] [blame] | 49 | #define FIFO_RXFLUSH BIT(14) |
| 50 | #define FIFO_TXFLUSH BIT(15) |
| 51 | #define FIFO_TXSIZE_MASK 0x70 |
| 52 | #define FIFO_TXSIZE_OFF 4 |
| 53 | #define FIFO_RXSIZE_MASK 0x7 |
| 54 | #define FIFO_RXSIZE_OFF 0 |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 55 | #define FIFO_TXFE 0x80 |
Giulio Benetti | c32449a | 2020-01-10 15:51:43 +0100 | [diff] [blame] | 56 | #if defined(CONFIG_ARCH_IMX8) || defined(CONFIG_ARCH_IMXRT) |
Peng Fan | 126f884 | 2018-10-18 14:28:31 +0200 | [diff] [blame] | 57 | #define FIFO_RXFE 0x08 |
| 58 | #else |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 59 | #define FIFO_RXFE 0x40 |
Peng Fan | 126f884 | 2018-10-18 14:28:31 +0200 | [diff] [blame] | 60 | #endif |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 61 | |
Ye Li | cdc16f6 | 2018-10-18 14:28:32 +0200 | [diff] [blame] | 62 | #define WATER_TXWATER_OFF 0 |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 63 | #define WATER_RXWATER_OFF 16 |
| 64 | |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 65 | DECLARE_GLOBAL_DATA_PTR; |
| 66 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 67 | #define LPUART_FLAG_REGMAP_32BIT_REG BIT(0) |
| 68 | #define LPUART_FLAG_REGMAP_ENDIAN_BIG BIT(1) |
| 69 | |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 70 | enum lpuart_devtype { |
| 71 | DEV_VF610 = 1, |
| 72 | DEV_LS1021A, |
Peng Fan | 126f884 | 2018-10-18 14:28:31 +0200 | [diff] [blame] | 73 | DEV_MX7ULP, |
Giulio Benetti | c32449a | 2020-01-10 15:51:43 +0100 | [diff] [blame] | 74 | DEV_IMX8, |
| 75 | DEV_IMXRT, |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 76 | }; |
| 77 | |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 78 | struct lpuart_serial_plat { |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 79 | void *reg; |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 80 | enum lpuart_devtype devtype; |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 81 | ulong flags; |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 82 | }; |
| 83 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 84 | static void lpuart_read32(u32 flags, u32 *addr, u32 *val) |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 85 | { |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 86 | if (flags & LPUART_FLAG_REGMAP_32BIT_REG) { |
| 87 | if (flags & LPUART_FLAG_REGMAP_ENDIAN_BIG) |
| 88 | *(u32 *)val = in_be32(addr); |
| 89 | else |
| 90 | *(u32 *)val = in_le32(addr); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | static void lpuart_write32(u32 flags, u32 *addr, u32 val) |
| 95 | { |
| 96 | if (flags & LPUART_FLAG_REGMAP_32BIT_REG) { |
| 97 | if (flags & LPUART_FLAG_REGMAP_ENDIAN_BIG) |
| 98 | out_be32(addr, val); |
| 99 | else |
| 100 | out_le32(addr, val); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | |
| 105 | #ifndef CONFIG_SYS_CLK_FREQ |
| 106 | #define CONFIG_SYS_CLK_FREQ 0 |
| 107 | #endif |
| 108 | |
| 109 | u32 __weak get_lpuart_clk(void) |
| 110 | { |
| 111 | return CONFIG_SYS_CLK_FREQ; |
| 112 | } |
| 113 | |
Ye Li | af325e9 | 2019-07-11 03:33:34 +0000 | [diff] [blame] | 114 | #if CONFIG_IS_ENABLED(CLK) |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 115 | static int get_lpuart_clk_rate(struct udevice *dev, u32 *clk) |
| 116 | { |
| 117 | struct clk per_clk; |
| 118 | ulong rate; |
| 119 | int ret; |
| 120 | |
| 121 | ret = clk_get_by_name(dev, "per", &per_clk); |
| 122 | if (ret) { |
| 123 | dev_err(dev, "Failed to get per clk: %d\n", ret); |
| 124 | return ret; |
| 125 | } |
| 126 | |
| 127 | rate = clk_get_rate(&per_clk); |
| 128 | if ((long)rate <= 0) { |
| 129 | dev_err(dev, "Failed to get per clk rate: %ld\n", (long)rate); |
| 130 | return ret; |
| 131 | } |
| 132 | *clk = rate; |
| 133 | return 0; |
| 134 | } |
| 135 | #else |
| 136 | static inline int get_lpuart_clk_rate(struct udevice *dev, u32 *clk) |
| 137 | { return -ENOSYS; } |
| 138 | #endif |
| 139 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 140 | static bool is_lpuart32(struct udevice *dev) |
| 141 | { |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 142 | struct lpuart_serial_plat *plat = dev_get_plat(dev); |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 143 | |
| 144 | return plat->flags & LPUART_FLAG_REGMAP_32BIT_REG; |
| 145 | } |
| 146 | |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 147 | static void _lpuart_serial_setbrg(struct udevice *dev, |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 148 | int baudrate) |
| 149 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 150 | struct lpuart_serial_plat *plat = dev_get_plat(dev); |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 151 | struct lpuart_fsl *base = plat->reg; |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 152 | u32 clk; |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 153 | u16 sbr; |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 154 | int ret; |
| 155 | |
Ye Li | af325e9 | 2019-07-11 03:33:34 +0000 | [diff] [blame] | 156 | if (CONFIG_IS_ENABLED(CLK)) { |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 157 | ret = get_lpuart_clk_rate(dev, &clk); |
| 158 | if (ret) |
| 159 | return; |
| 160 | } else { |
| 161 | clk = get_lpuart_clk(); |
| 162 | } |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 163 | |
Bin Meng | 6ca13b1 | 2016-01-13 19:39:03 -0800 | [diff] [blame] | 164 | sbr = (u16)(clk / (16 * baudrate)); |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 165 | |
Bin Meng | 47f1bfc | 2016-01-13 19:39:01 -0800 | [diff] [blame] | 166 | /* place adjustment later - n/32 BRFA */ |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 167 | __raw_writeb(sbr >> 8, &base->ubdh); |
| 168 | __raw_writeb(sbr & 0xff, &base->ubdl); |
| 169 | } |
| 170 | |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 171 | static int _lpuart_serial_getc(struct lpuart_serial_plat *plat) |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 172 | { |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 173 | struct lpuart_fsl *base = plat->reg; |
Stefan Agner | a3db78d | 2014-08-19 17:54:27 +0200 | [diff] [blame] | 174 | while (!(__raw_readb(&base->us1) & (US1_RDRF | US1_OR))) |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 175 | WATCHDOG_RESET(); |
| 176 | |
Stefan Agner | a3db78d | 2014-08-19 17:54:27 +0200 | [diff] [blame] | 177 | barrier(); |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 178 | |
| 179 | return __raw_readb(&base->ud); |
| 180 | } |
| 181 | |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 182 | static void _lpuart_serial_putc(struct lpuart_serial_plat *plat, |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 183 | const char c) |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 184 | { |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 185 | struct lpuart_fsl *base = plat->reg; |
| 186 | |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 187 | while (!(__raw_readb(&base->us1) & US1_TDRE)) |
| 188 | WATCHDOG_RESET(); |
| 189 | |
| 190 | __raw_writeb(c, &base->ud); |
| 191 | } |
| 192 | |
Bin Meng | 47f1bfc | 2016-01-13 19:39:01 -0800 | [diff] [blame] | 193 | /* Test whether a character is in the RX buffer */ |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 194 | static int _lpuart_serial_tstc(struct lpuart_serial_plat *plat) |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 195 | { |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 196 | struct lpuart_fsl *base = plat->reg; |
| 197 | |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 198 | if (__raw_readb(&base->urcfifo) == 0) |
| 199 | return 0; |
| 200 | |
| 201 | return 1; |
| 202 | } |
| 203 | |
| 204 | /* |
| 205 | * Initialise the serial port with the given baudrate. The settings |
| 206 | * are always 8 data bits, no parity, 1 stop bit, no start bits. |
| 207 | */ |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 208 | static int _lpuart_serial_init(struct udevice *dev) |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 209 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 210 | struct lpuart_serial_plat *plat = dev_get_plat(dev); |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 211 | struct lpuart_fsl *base = (struct lpuart_fsl *)plat->reg; |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 212 | u8 ctrl; |
| 213 | |
| 214 | ctrl = __raw_readb(&base->uc2); |
| 215 | ctrl &= ~UC2_RE; |
| 216 | ctrl &= ~UC2_TE; |
| 217 | __raw_writeb(ctrl, &base->uc2); |
| 218 | |
| 219 | __raw_writeb(0, &base->umodem); |
| 220 | __raw_writeb(0, &base->uc1); |
| 221 | |
Stefan Agner | 89e69fd | 2014-08-19 17:54:28 +0200 | [diff] [blame] | 222 | /* Disable FIFO and flush buffer */ |
| 223 | __raw_writeb(0x0, &base->upfifo); |
| 224 | __raw_writeb(0x0, &base->utwfifo); |
| 225 | __raw_writeb(0x1, &base->urwfifo); |
| 226 | __raw_writeb(CFIFO_TXFLUSH | CFIFO_RXFLUSH, &base->ucfifo); |
| 227 | |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 228 | /* provide data bits, parity, stop bit, etc */ |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 229 | _lpuart_serial_setbrg(dev, gd->baudrate); |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 230 | |
| 231 | __raw_writeb(UC2_RE | UC2_TE, &base->uc2); |
| 232 | |
| 233 | return 0; |
| 234 | } |
| 235 | |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 236 | static void _lpuart32_serial_setbrg_7ulp(struct udevice *dev, |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 237 | int baudrate) |
| 238 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 239 | struct lpuart_serial_plat *plat = dev_get_plat(dev); |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 240 | struct lpuart_fsl_reg32 *base = plat->reg; |
| 241 | u32 sbr, osr, baud_diff, tmp_osr, tmp_sbr, tmp_diff, tmp; |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 242 | u32 clk; |
| 243 | int ret; |
| 244 | |
Ye Li | af325e9 | 2019-07-11 03:33:34 +0000 | [diff] [blame] | 245 | if (CONFIG_IS_ENABLED(CLK)) { |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 246 | ret = get_lpuart_clk_rate(dev, &clk); |
| 247 | if (ret) |
| 248 | return; |
| 249 | } else { |
| 250 | clk = get_lpuart_clk(); |
| 251 | } |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 252 | |
| 253 | baud_diff = baudrate; |
| 254 | osr = 0; |
| 255 | sbr = 0; |
| 256 | |
| 257 | for (tmp_osr = 4; tmp_osr <= 32; tmp_osr++) { |
| 258 | tmp_sbr = (clk / (baudrate * tmp_osr)); |
| 259 | |
| 260 | if (tmp_sbr == 0) |
| 261 | tmp_sbr = 1; |
| 262 | |
| 263 | /*calculate difference in actual buad w/ current values */ |
| 264 | tmp_diff = (clk / (tmp_osr * tmp_sbr)); |
| 265 | tmp_diff = tmp_diff - baudrate; |
| 266 | |
| 267 | /* select best values between sbr and sbr+1 */ |
| 268 | if (tmp_diff > (baudrate - (clk / (tmp_osr * (tmp_sbr + 1))))) { |
| 269 | tmp_diff = baudrate - (clk / (tmp_osr * (tmp_sbr + 1))); |
| 270 | tmp_sbr++; |
| 271 | } |
| 272 | |
| 273 | if (tmp_diff <= baud_diff) { |
| 274 | baud_diff = tmp_diff; |
| 275 | osr = tmp_osr; |
| 276 | sbr = tmp_sbr; |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | /* |
| 281 | * TODO: handle buadrate outside acceptable rate |
| 282 | * if (baudDiff > ((config->baudRate_Bps / 100) * 3)) |
| 283 | * { |
| 284 | * Unacceptable baud rate difference of more than 3% |
| 285 | * return kStatus_LPUART_BaudrateNotSupport; |
| 286 | * } |
| 287 | */ |
| 288 | tmp = in_le32(&base->baud); |
| 289 | |
| 290 | if ((osr > 3) && (osr < 8)) |
| 291 | tmp |= LPUART_BAUD_BOTHEDGE_MASK; |
| 292 | |
| 293 | tmp &= ~LPUART_BAUD_OSR_MASK; |
| 294 | tmp |= LPUART_BAUD_OSR(osr-1); |
| 295 | |
| 296 | tmp &= ~LPUART_BAUD_SBR_MASK; |
| 297 | tmp |= LPUART_BAUD_SBR(sbr); |
| 298 | |
| 299 | /* explicitly disable 10 bit mode & set 1 stop bit */ |
| 300 | tmp &= ~(LPUART_BAUD_M10_MASK | LPUART_BAUD_SBNS_MASK); |
| 301 | |
| 302 | out_le32(&base->baud, tmp); |
| 303 | } |
| 304 | |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 305 | static void _lpuart32_serial_setbrg(struct udevice *dev, |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 306 | int baudrate) |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 307 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 308 | struct lpuart_serial_plat *plat = dev_get_plat(dev); |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 309 | struct lpuart_fsl_reg32 *base = plat->reg; |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 310 | u32 clk; |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 311 | u32 sbr; |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 312 | int ret; |
| 313 | |
Ye Li | af325e9 | 2019-07-11 03:33:34 +0000 | [diff] [blame] | 314 | if (CONFIG_IS_ENABLED(CLK)) { |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 315 | ret = get_lpuart_clk_rate(dev, &clk); |
| 316 | if (ret) |
| 317 | return; |
| 318 | } else { |
| 319 | clk = get_lpuart_clk(); |
| 320 | } |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 321 | |
Bin Meng | 6ca13b1 | 2016-01-13 19:39:03 -0800 | [diff] [blame] | 322 | sbr = (clk / (16 * baudrate)); |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 323 | |
Bin Meng | 47f1bfc | 2016-01-13 19:39:01 -0800 | [diff] [blame] | 324 | /* place adjustment later - n/32 BRFA */ |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 325 | lpuart_write32(plat->flags, &base->baud, sbr); |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 326 | } |
| 327 | |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 328 | static int _lpuart32_serial_getc(struct lpuart_serial_plat *plat) |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 329 | { |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 330 | struct lpuart_fsl_reg32 *base = plat->reg; |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 331 | u32 stat, val; |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 332 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 333 | lpuart_read32(plat->flags, &base->stat, &stat); |
| 334 | while ((stat & STAT_RDRF) == 0) { |
| 335 | lpuart_write32(plat->flags, &base->stat, STAT_FLAGS); |
| 336 | WATCHDOG_RESET(); |
| 337 | lpuart_read32(plat->flags, &base->stat, &stat); |
| 338 | } |
| 339 | |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 340 | lpuart_read32(plat->flags, &base->data, &val); |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 341 | |
Sriram Dash | a2bbfc5 | 2018-01-10 11:57:14 +0530 | [diff] [blame] | 342 | lpuart_read32(plat->flags, &base->stat, &stat); |
| 343 | if (stat & STAT_OR) |
| 344 | lpuart_write32(plat->flags, &base->stat, STAT_OR); |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 345 | |
| 346 | return val & 0x3ff; |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 347 | } |
| 348 | |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 349 | static void _lpuart32_serial_putc(struct lpuart_serial_plat *plat, |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 350 | const char c) |
| 351 | { |
| 352 | struct lpuart_fsl_reg32 *base = plat->reg; |
| 353 | u32 stat; |
| 354 | |
Sriram Dash | a2bbfc5 | 2018-01-10 11:57:14 +0530 | [diff] [blame] | 355 | if (c == '\n') |
| 356 | serial_putc('\r'); |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 357 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 358 | while (true) { |
| 359 | lpuart_read32(plat->flags, &base->stat, &stat); |
| 360 | |
| 361 | if ((stat & STAT_TDRE)) |
| 362 | break; |
| 363 | |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 364 | WATCHDOG_RESET(); |
| 365 | } |
| 366 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 367 | lpuart_write32(plat->flags, &base->data, c); |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 368 | } |
| 369 | |
Bin Meng | 47f1bfc | 2016-01-13 19:39:01 -0800 | [diff] [blame] | 370 | /* Test whether a character is in the RX buffer */ |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 371 | static int _lpuart32_serial_tstc(struct lpuart_serial_plat *plat) |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 372 | { |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 373 | struct lpuart_fsl_reg32 *base = plat->reg; |
| 374 | u32 water; |
| 375 | |
| 376 | lpuart_read32(plat->flags, &base->water, &water); |
| 377 | |
| 378 | if ((water >> 24) == 0) |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 379 | return 0; |
| 380 | |
| 381 | return 1; |
| 382 | } |
| 383 | |
| 384 | /* |
| 385 | * Initialise the serial port with the given baudrate. The settings |
| 386 | * are always 8 data bits, no parity, 1 stop bit, no start bits. |
| 387 | */ |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 388 | static int _lpuart32_serial_init(struct udevice *dev) |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 389 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 390 | struct lpuart_serial_plat *plat = dev_get_plat(dev); |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 391 | struct lpuart_fsl_reg32 *base = (struct lpuart_fsl_reg32 *)plat->reg; |
Ye Li | cdc16f6 | 2018-10-18 14:28:32 +0200 | [diff] [blame] | 392 | u32 val, tx_fifo_size; |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 393 | |
Ye Li | cdc16f6 | 2018-10-18 14:28:32 +0200 | [diff] [blame] | 394 | lpuart_read32(plat->flags, &base->ctrl, &val); |
| 395 | val &= ~CTRL_RE; |
| 396 | val &= ~CTRL_TE; |
| 397 | lpuart_write32(plat->flags, &base->ctrl, val); |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 398 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 399 | lpuart_write32(plat->flags, &base->modir, 0); |
Ye Li | cdc16f6 | 2018-10-18 14:28:32 +0200 | [diff] [blame] | 400 | |
| 401 | lpuart_read32(plat->flags, &base->fifo, &val); |
| 402 | tx_fifo_size = (val & FIFO_TXSIZE_MASK) >> FIFO_TXSIZE_OFF; |
| 403 | /* Set the TX water to half of FIFO size */ |
| 404 | if (tx_fifo_size > 1) |
| 405 | tx_fifo_size = tx_fifo_size >> 1; |
| 406 | |
| 407 | /* Set RX water to 0, to be triggered by any receive data */ |
| 408 | lpuart_write32(plat->flags, &base->water, |
| 409 | (tx_fifo_size << WATER_TXWATER_OFF)); |
| 410 | |
| 411 | /* Enable TX and RX FIFO */ |
| 412 | val |= (FIFO_TXFE | FIFO_RXFE | FIFO_TXFLUSH | FIFO_RXFLUSH); |
| 413 | lpuart_write32(plat->flags, &base->fifo, val); |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 414 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 415 | lpuart_write32(plat->flags, &base->match, 0); |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 416 | |
Giulio Benetti | c32449a | 2020-01-10 15:51:43 +0100 | [diff] [blame] | 417 | if (plat->devtype == DEV_MX7ULP || plat->devtype == DEV_IMX8 || |
| 418 | plat->devtype == DEV_IMXRT) { |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 419 | _lpuart32_serial_setbrg_7ulp(dev, gd->baudrate); |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 420 | } else { |
| 421 | /* provide data bits, parity, stop bit, etc */ |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 422 | _lpuart32_serial_setbrg(dev, gd->baudrate); |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 423 | } |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 424 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 425 | lpuart_write32(plat->flags, &base->ctrl, CTRL_RE | CTRL_TE); |
Jingchang Lu | 6209e14 | 2014-09-05 13:52:47 +0800 | [diff] [blame] | 426 | |
| 427 | return 0; |
| 428 | } |
| 429 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 430 | static int lpuart_serial_setbrg(struct udevice *dev, int baudrate) |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 431 | { |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 432 | struct lpuart_serial_plat *plat = dev_get_plat(dev); |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 433 | |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 434 | if (is_lpuart32(dev)) { |
Giulio Benetti | c32449a | 2020-01-10 15:51:43 +0100 | [diff] [blame] | 435 | if (plat->devtype == DEV_MX7ULP || plat->devtype == DEV_IMX8 || |
| 436 | plat->devtype == DEV_IMXRT) |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 437 | _lpuart32_serial_setbrg_7ulp(dev, baudrate); |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 438 | else |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 439 | _lpuart32_serial_setbrg(dev, baudrate); |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 440 | } else { |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 441 | _lpuart_serial_setbrg(dev, baudrate); |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 442 | } |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 443 | |
| 444 | return 0; |
| 445 | } |
| 446 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 447 | static int lpuart_serial_getc(struct udevice *dev) |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 448 | { |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 449 | struct lpuart_serial_plat *plat = dev_get_plat(dev); |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 450 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 451 | if (is_lpuart32(dev)) |
| 452 | return _lpuart32_serial_getc(plat); |
| 453 | |
| 454 | return _lpuart_serial_getc(plat); |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 455 | } |
| 456 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 457 | static int lpuart_serial_putc(struct udevice *dev, const char c) |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 458 | { |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 459 | struct lpuart_serial_plat *plat = dev_get_plat(dev); |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 460 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 461 | if (is_lpuart32(dev)) |
| 462 | _lpuart32_serial_putc(plat, c); |
| 463 | else |
| 464 | _lpuart_serial_putc(plat, c); |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 465 | |
| 466 | return 0; |
| 467 | } |
| 468 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 469 | static int lpuart_serial_pending(struct udevice *dev, bool input) |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 470 | { |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 471 | struct lpuart_serial_plat *plat = dev_get_plat(dev); |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 472 | struct lpuart_fsl *reg = plat->reg; |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 473 | struct lpuart_fsl_reg32 *reg32 = plat->reg; |
| 474 | u32 stat; |
| 475 | |
| 476 | if (is_lpuart32(dev)) { |
| 477 | if (input) { |
| 478 | return _lpuart32_serial_tstc(plat); |
| 479 | } else { |
| 480 | lpuart_read32(plat->flags, ®32->stat, &stat); |
| 481 | return stat & STAT_TDRE ? 0 : 1; |
| 482 | } |
| 483 | } |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 484 | |
| 485 | if (input) |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 486 | return _lpuart_serial_tstc(plat); |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 487 | else |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 488 | return __raw_readb(®->us1) & US1_TDRE ? 0 : 1; |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 489 | } |
| 490 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 491 | static int lpuart_serial_probe(struct udevice *dev) |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 492 | { |
Giulio Benetti | 55631db | 2020-01-10 15:47:05 +0100 | [diff] [blame] | 493 | #if CONFIG_IS_ENABLED(CLK) |
| 494 | struct clk per_clk; |
| 495 | int ret; |
| 496 | |
| 497 | ret = clk_get_by_name(dev, "per", &per_clk); |
| 498 | if (!ret) { |
| 499 | ret = clk_enable(&per_clk); |
| 500 | if (ret) { |
| 501 | dev_err(dev, "Failed to get per clk: %d\n", ret); |
| 502 | return ret; |
| 503 | } |
| 504 | } else { |
Giulio Benetti | 289dd9f | 2020-01-31 14:39:47 +0100 | [diff] [blame] | 505 | debug("%s: Failed to get per clk: %d\n", __func__, ret); |
Giulio Benetti | 55631db | 2020-01-10 15:47:05 +0100 | [diff] [blame] | 506 | } |
| 507 | #endif |
| 508 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 509 | if (is_lpuart32(dev)) |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 510 | return _lpuart32_serial_init(dev); |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 511 | else |
Peng Fan | 8f5b629 | 2018-10-19 00:26:23 +0200 | [diff] [blame] | 512 | return _lpuart_serial_init(dev); |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 513 | } |
Alison Wang | 427eba7 | 2013-05-27 22:55:45 +0000 | [diff] [blame] | 514 | |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 515 | static int lpuart_serial_of_to_plat(struct udevice *dev) |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 516 | { |
Simon Glass | 0fd3d91 | 2020-12-22 19:30:28 -0700 | [diff] [blame] | 517 | struct lpuart_serial_plat *plat = dev_get_plat(dev); |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 518 | const void *blob = gd->fdt_blob; |
Simon Glass | da409cc | 2017-05-17 17:18:09 -0600 | [diff] [blame] | 519 | int node = dev_of_offset(dev); |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 520 | fdt_addr_t addr; |
| 521 | |
Masahiro Yamada | 2548493 | 2020-07-17 14:36:48 +0900 | [diff] [blame] | 522 | addr = dev_read_addr(dev); |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 523 | if (addr == FDT_ADDR_T_NONE) |
| 524 | return -EINVAL; |
| 525 | |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 526 | plat->reg = (void *)addr; |
| 527 | plat->flags = dev_get_driver_data(dev); |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 528 | |
Vabhav Sharma | 1edc568 | 2019-01-31 12:08:10 +0000 | [diff] [blame] | 529 | if (fdtdec_get_bool(blob, node, "little-endian")) |
| 530 | plat->flags &= ~LPUART_FLAG_REGMAP_ENDIAN_BIG; |
| 531 | |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 532 | if (!fdt_node_check_compatible(blob, node, "fsl,ls1021a-lpuart")) |
| 533 | plat->devtype = DEV_LS1021A; |
| 534 | else if (!fdt_node_check_compatible(blob, node, "fsl,imx7ulp-lpuart")) |
| 535 | plat->devtype = DEV_MX7ULP; |
| 536 | else if (!fdt_node_check_compatible(blob, node, "fsl,vf610-lpuart")) |
| 537 | plat->devtype = DEV_VF610; |
Peng Fan | 126f884 | 2018-10-18 14:28:31 +0200 | [diff] [blame] | 538 | else if (!fdt_node_check_compatible(blob, node, "fsl,imx8qm-lpuart")) |
| 539 | plat->devtype = DEV_IMX8; |
Giulio Benetti | c32449a | 2020-01-10 15:51:43 +0100 | [diff] [blame] | 540 | else if (!fdt_node_check_compatible(blob, node, "fsl,imxrt-lpuart")) |
| 541 | plat->devtype = DEV_IMXRT; |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 542 | |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 543 | return 0; |
| 544 | } |
| 545 | |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 546 | static const struct dm_serial_ops lpuart_serial_ops = { |
| 547 | .putc = lpuart_serial_putc, |
| 548 | .pending = lpuart_serial_pending, |
| 549 | .getc = lpuart_serial_getc, |
| 550 | .setbrg = lpuart_serial_setbrg, |
| 551 | }; |
| 552 | |
| 553 | static const struct udevice_id lpuart_serial_ids[] = { |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 554 | { .compatible = "fsl,ls1021a-lpuart", .data = |
| 555 | LPUART_FLAG_REGMAP_32BIT_REG | LPUART_FLAG_REGMAP_ENDIAN_BIG }, |
Peng Fan | 7edf5c4 | 2017-02-22 16:21:52 +0800 | [diff] [blame] | 556 | { .compatible = "fsl,imx7ulp-lpuart", |
| 557 | .data = LPUART_FLAG_REGMAP_32BIT_REG }, |
Peng Fan | c40d612 | 2017-02-22 16:21:51 +0800 | [diff] [blame] | 558 | { .compatible = "fsl,vf610-lpuart"}, |
Peng Fan | 126f884 | 2018-10-18 14:28:31 +0200 | [diff] [blame] | 559 | { .compatible = "fsl,imx8qm-lpuart", |
| 560 | .data = LPUART_FLAG_REGMAP_32BIT_REG }, |
Giulio Benetti | c32449a | 2020-01-10 15:51:43 +0100 | [diff] [blame] | 561 | { .compatible = "fsl,imxrt-lpuart", |
| 562 | .data = LPUART_FLAG_REGMAP_32BIT_REG }, |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 563 | { } |
| 564 | }; |
| 565 | |
| 566 | U_BOOT_DRIVER(serial_lpuart) = { |
| 567 | .name = "serial_lpuart", |
| 568 | .id = UCLASS_SERIAL, |
| 569 | .of_match = lpuart_serial_ids, |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 570 | .of_to_plat = lpuart_serial_of_to_plat, |
Simon Glass | 8a8d24b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 571 | .plat_auto = sizeof(struct lpuart_serial_plat), |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 572 | .probe = lpuart_serial_probe, |
| 573 | .ops = &lpuart_serial_ops, |
Bin Meng | fdbae09 | 2016-01-13 19:39:04 -0800 | [diff] [blame] | 574 | }; |