Merge tag 'efi-2020-07-rc6' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
[oweals/u-boot.git] / drivers / serial / ns16550.c
1 /*
2  * COM1 NS16550 support
3  * originally from linux source (arch/powerpc/boot/ns16550.c)
4  * modified to use CONFIG_SYS_ISA_MEM and new defines
5  */
6
7 #include <clock_legacy.h>
8 #include <common.h>
9 #include <clk.h>
10 #include <dm.h>
11 #include <errno.h>
12 #include <log.h>
13 #include <ns16550.h>
14 #include <reset.h>
15 #include <serial.h>
16 #include <watchdog.h>
17 #include <linux/err.h>
18 #include <linux/types.h>
19 #include <asm/io.h>
20
21 DECLARE_GLOBAL_DATA_PTR;
22
23 #define UART_LCRVAL UART_LCR_8N1                /* 8 data, 1 stop, no parity */
24 #define UART_MCRVAL (UART_MCR_DTR | \
25                      UART_MCR_RTS)              /* RTS/DTR */
26
27 #if !CONFIG_IS_ENABLED(DM_SERIAL)
28 #ifdef CONFIG_SYS_NS16550_PORT_MAPPED
29 #define serial_out(x, y)        outb(x, (ulong)y)
30 #define serial_in(y)            inb((ulong)y)
31 #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0)
32 #define serial_out(x, y)        out_be32(y, x)
33 #define serial_in(y)            in_be32(y)
34 #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0)
35 #define serial_out(x, y)        out_le32(y, x)
36 #define serial_in(y)            in_le32(y)
37 #else
38 #define serial_out(x, y)        writeb(x, y)
39 #define serial_in(y)            readb(y)
40 #endif
41 #endif /* !CONFIG_DM_SERIAL */
42
43 #if defined(CONFIG_SOC_KEYSTONE)
44 #define UART_REG_VAL_PWREMU_MGMT_UART_DISABLE   0
45 #define UART_REG_VAL_PWREMU_MGMT_UART_ENABLE ((1 << 14) | (1 << 13) | (1 << 0))
46 #undef UART_MCRVAL
47 #ifdef CONFIG_SERIAL_HW_FLOW_CONTROL
48 #define UART_MCRVAL             (UART_MCR_RTS | UART_MCR_AFE)
49 #else
50 #define UART_MCRVAL             (UART_MCR_RTS)
51 #endif
52 #endif
53
54 #ifndef CONFIG_SYS_NS16550_IER
55 #define CONFIG_SYS_NS16550_IER  0x00
56 #endif /* CONFIG_SYS_NS16550_IER */
57
58 static inline void serial_out_shift(void *addr, int shift, int value)
59 {
60 #ifdef CONFIG_SYS_NS16550_PORT_MAPPED
61         outb(value, (ulong)addr);
62 #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN)
63         out_le32(addr, value);
64 #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
65         out_be32(addr, value);
66 #elif defined(CONFIG_SYS_NS16550_MEM32)
67         writel(value, addr);
68 #elif defined(CONFIG_SYS_BIG_ENDIAN)
69         writeb(value, addr + (1 << shift) - 1);
70 #else
71         writeb(value, addr);
72 #endif
73 }
74
75 static inline int serial_in_shift(void *addr, int shift)
76 {
77 #ifdef CONFIG_SYS_NS16550_PORT_MAPPED
78         return inb((ulong)addr);
79 #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_LITTLE_ENDIAN)
80         return in_le32(addr);
81 #elif defined(CONFIG_SYS_NS16550_MEM32) && defined(CONFIG_SYS_BIG_ENDIAN)
82         return in_be32(addr);
83 #elif defined(CONFIG_SYS_NS16550_MEM32)
84         return readl(addr);
85 #elif defined(CONFIG_SYS_BIG_ENDIAN)
86         return readb(addr + (1 << shift) - 1);
87 #else
88         return readb(addr);
89 #endif
90 }
91
92 #if CONFIG_IS_ENABLED(DM_SERIAL)
93
94 #ifndef CONFIG_SYS_NS16550_CLK
95 #define CONFIG_SYS_NS16550_CLK  0
96 #endif
97
98 /*
99  * Use this #ifdef for now since many platforms don't define in(), out(),
100  * out_le32(), etc. but we don't have #defines to indicate this.
101  *
102  * TODO(sjg@chromium.org): Add CONFIG options to indicate what I/O is available
103  * on a platform
104  */
105 #ifdef CONFIG_NS16550_DYNAMIC
106 static void serial_out_dynamic(struct ns16550_platdata *plat, u8 *addr,
107                                int value)
108 {
109         if (plat->flags & NS16550_FLAG_IO) {
110                 outb(value, addr);
111         } else if (plat->reg_width == 4) {
112                 if (plat->flags & NS16550_FLAG_ENDIAN) {
113                         if (plat->flags & NS16550_FLAG_BE)
114                                 out_be32(addr, value);
115                         else
116                                 out_le32(addr, value);
117                 } else {
118                         writel(value, addr);
119                 }
120         } else if (plat->flags & NS16550_FLAG_BE) {
121                 writeb(value, addr + (1 << plat->reg_shift) - 1);
122         } else {
123                 writeb(value, addr);
124         }
125 }
126
127 static int serial_in_dynamic(struct ns16550_platdata *plat, u8 *addr)
128 {
129         if (plat->flags & NS16550_FLAG_IO) {
130                 return inb(addr);
131         } else if (plat->reg_width == 4) {
132                 if (plat->flags & NS16550_FLAG_ENDIAN) {
133                         if (plat->flags & NS16550_FLAG_BE)
134                                 return in_be32(addr);
135                         else
136                                 return in_le32(addr);
137                 } else {
138                         return readl(addr);
139                 }
140         } else if (plat->flags & NS16550_FLAG_BE) {
141                 return readb(addr + (1 << plat->reg_shift) - 1);
142         } else {
143                 return readb(addr);
144         }
145 }
146 #else
147 static inline void serial_out_dynamic(struct ns16550_platdata *plat, u8 *addr,
148                                       int value)
149 {
150 }
151
152 static inline int serial_in_dynamic(struct ns16550_platdata *plat, u8 *addr)
153 {
154         return 0;
155 }
156
157 #endif /* CONFIG_NS16550_DYNAMIC */
158
159 static void ns16550_writeb(NS16550_t port, int offset, int value)
160 {
161         struct ns16550_platdata *plat = port->plat;
162         unsigned char *addr;
163
164         offset *= 1 << plat->reg_shift;
165         addr = (unsigned char *)plat->base + offset + plat->reg_offset;
166
167         if (IS_ENABLED(CONFIG_NS16550_DYNAMIC))
168                 serial_out_dynamic(plat, addr, value);
169         else
170                 serial_out_shift(addr, plat->reg_shift, value);
171 }
172
173 static int ns16550_readb(NS16550_t port, int offset)
174 {
175         struct ns16550_platdata *plat = port->plat;
176         unsigned char *addr;
177
178         offset *= 1 << plat->reg_shift;
179         addr = (unsigned char *)plat->base + offset + plat->reg_offset;
180
181         if (IS_ENABLED(CONFIG_NS16550_DYNAMIC))
182                 return serial_in_dynamic(plat, addr);
183         else
184                 return serial_in_shift(addr, plat->reg_shift);
185 }
186
187 static u32 ns16550_getfcr(NS16550_t port)
188 {
189         struct ns16550_platdata *plat = port->plat;
190
191         return plat->fcr;
192 }
193
194 /* We can clean these up once everything is moved to driver model */
195 #define serial_out(value, addr) \
196         ns16550_writeb(com_port, \
197                 (unsigned char *)addr - (unsigned char *)com_port, value)
198 #define serial_in(addr) \
199         ns16550_readb(com_port, \
200                 (unsigned char *)addr - (unsigned char *)com_port)
201 #else
202 static u32 ns16550_getfcr(NS16550_t port)
203 {
204         return UART_FCR_DEFVAL;
205 }
206 #endif
207
208 int ns16550_calc_divisor(NS16550_t port, int clock, int baudrate)
209 {
210         const unsigned int mode_x_div = 16;
211
212         return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate);
213 }
214
215 static void NS16550_setbrg(NS16550_t com_port, int baud_divisor)
216 {
217         /* to keep serial format, read lcr before writing BKSE */
218         int lcr_val = serial_in(&com_port->lcr) & ~UART_LCR_BKSE;
219
220         serial_out(UART_LCR_BKSE | lcr_val, &com_port->lcr);
221         serial_out(baud_divisor & 0xff, &com_port->dll);
222         serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
223         serial_out(lcr_val, &com_port->lcr);
224 }
225
226 void NS16550_init(NS16550_t com_port, int baud_divisor)
227 {
228 #if (defined(CONFIG_SPL_BUILD) && \
229                 (defined(CONFIG_OMAP34XX) || defined(CONFIG_OMAP44XX)))
230         /*
231          * On some OMAP3/OMAP4 devices when UART3 is configured for boot mode
232          * before SPL starts only THRE bit is set. We have to empty the
233          * transmitter before initialization starts.
234          */
235         if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE))
236              == UART_LSR_THRE) {
237                 if (baud_divisor != -1)
238                         NS16550_setbrg(com_port, baud_divisor);
239                 else {
240                         // Re-use old baud rate divisor to flush transmit reg.
241                         const int dll = serial_in(&com_port->dll);
242                         const int dlm = serial_in(&com_port->dlm);
243                         const int divisor = dll | (dlm << 8);
244                         NS16550_setbrg(com_port, divisor);
245                 }
246                 serial_out(0, &com_port->mdr1);
247         }
248 #endif
249
250         while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
251                 ;
252
253         serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
254 #if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_OMAP_SERIAL)
255         serial_out(0x7, &com_port->mdr1);       /* mode select reset TL16C750*/
256 #endif
257
258         serial_out(UART_MCRVAL, &com_port->mcr);
259         serial_out(ns16550_getfcr(com_port), &com_port->fcr);
260         /* initialize serial config to 8N1 before writing baudrate */
261         serial_out(UART_LCRVAL, &com_port->lcr);
262         if (baud_divisor != -1)
263                 NS16550_setbrg(com_port, baud_divisor);
264 #if defined(CONFIG_ARCH_OMAP2PLUS) || defined(CONFIG_SOC_DA8XX) || \
265         defined(CONFIG_OMAP_SERIAL)
266         /* /16 is proper to hit 115200 with 48MHz */
267         serial_out(0, &com_port->mdr1);
268 #endif
269 #if defined(CONFIG_SOC_KEYSTONE)
270         serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC);
271 #endif
272 }
273
274 #ifndef CONFIG_NS16550_MIN_FUNCTIONS
275 void NS16550_reinit(NS16550_t com_port, int baud_divisor)
276 {
277         serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
278         NS16550_setbrg(com_port, 0);
279         serial_out(UART_MCRVAL, &com_port->mcr);
280         serial_out(ns16550_getfcr(com_port), &com_port->fcr);
281         NS16550_setbrg(com_port, baud_divisor);
282 }
283 #endif /* CONFIG_NS16550_MIN_FUNCTIONS */
284
285 void NS16550_putc(NS16550_t com_port, char c)
286 {
287         while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
288                 ;
289         serial_out(c, &com_port->thr);
290
291         /*
292          * Call watchdog_reset() upon newline. This is done here in putc
293          * since the environment code uses a single puts() to print the complete
294          * environment upon "printenv". So we can't put this watchdog call
295          * in puts().
296          */
297         if (c == '\n')
298                 WATCHDOG_RESET();
299 }
300
301 #ifndef CONFIG_NS16550_MIN_FUNCTIONS
302 char NS16550_getc(NS16550_t com_port)
303 {
304         while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
305 #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
306                 extern void usbtty_poll(void);
307                 usbtty_poll();
308 #endif
309                 WATCHDOG_RESET();
310         }
311         return serial_in(&com_port->rbr);
312 }
313
314 int NS16550_tstc(NS16550_t com_port)
315 {
316         return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
317 }
318
319 #endif /* CONFIG_NS16550_MIN_FUNCTIONS */
320
321 #ifdef CONFIG_DEBUG_UART_NS16550
322
323 #include <debug_uart.h>
324
325 static inline void _debug_uart_init(void)
326 {
327         struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
328         int baud_divisor;
329
330         /*
331          * We copy the code from above because it is already horribly messy.
332          * Trying to refactor to nicely remove the duplication doesn't seem
333          * feasible. The better fix is to move all users of this driver to
334          * driver model.
335          */
336         baud_divisor = ns16550_calc_divisor(com_port, CONFIG_DEBUG_UART_CLOCK,
337                                             CONFIG_BAUDRATE);
338         serial_dout(&com_port->ier, CONFIG_SYS_NS16550_IER);
339         serial_dout(&com_port->mcr, UART_MCRVAL);
340         serial_dout(&com_port->fcr, UART_FCR_DEFVAL);
341
342         serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL);
343         serial_dout(&com_port->dll, baud_divisor & 0xff);
344         serial_dout(&com_port->dlm, (baud_divisor >> 8) & 0xff);
345         serial_dout(&com_port->lcr, UART_LCRVAL);
346 }
347
348 static inline int NS16550_read_baud_divisor(struct NS16550 *com_port)
349 {
350         int ret;
351
352         serial_dout(&com_port->lcr, UART_LCR_BKSE | UART_LCRVAL);
353         ret = serial_din(&com_port->dll) & 0xff;
354         ret |= (serial_din(&com_port->dlm) & 0xff) << 8;
355         serial_dout(&com_port->lcr, UART_LCRVAL);
356
357         return ret;
358 }
359
360 static inline void _debug_uart_putc(int ch)
361 {
362         struct NS16550 *com_port = (struct NS16550 *)CONFIG_DEBUG_UART_BASE;
363
364         while (!(serial_din(&com_port->lsr) & UART_LSR_THRE)) {
365 #ifdef CONFIG_DEBUG_UART_NS16550_CHECK_ENABLED
366                 if (!NS16550_read_baud_divisor(com_port))
367                         return;
368 #endif
369         }
370         serial_dout(&com_port->thr, ch);
371 }
372
373 DEBUG_UART_FUNCS
374
375 #endif
376
377 #if CONFIG_IS_ENABLED(DM_SERIAL)
378 static int ns16550_serial_putc(struct udevice *dev, const char ch)
379 {
380         struct NS16550 *const com_port = dev_get_priv(dev);
381
382         if (!(serial_in(&com_port->lsr) & UART_LSR_THRE))
383                 return -EAGAIN;
384         serial_out(ch, &com_port->thr);
385
386         /*
387          * Call watchdog_reset() upon newline. This is done here in putc
388          * since the environment code uses a single puts() to print the complete
389          * environment upon "printenv". So we can't put this watchdog call
390          * in puts().
391          */
392         if (ch == '\n')
393                 WATCHDOG_RESET();
394
395         return 0;
396 }
397
398 static int ns16550_serial_pending(struct udevice *dev, bool input)
399 {
400         struct NS16550 *const com_port = dev_get_priv(dev);
401
402         if (input)
403                 return (serial_in(&com_port->lsr) & UART_LSR_DR) ? 1 : 0;
404         else
405                 return (serial_in(&com_port->lsr) & UART_LSR_THRE) ? 0 : 1;
406 }
407
408 static int ns16550_serial_getc(struct udevice *dev)
409 {
410         struct NS16550 *const com_port = dev_get_priv(dev);
411
412         if (!(serial_in(&com_port->lsr) & UART_LSR_DR))
413                 return -EAGAIN;
414
415         return serial_in(&com_port->rbr);
416 }
417
418 static int ns16550_serial_setbrg(struct udevice *dev, int baudrate)
419 {
420         struct NS16550 *const com_port = dev_get_priv(dev);
421         struct ns16550_platdata *plat = com_port->plat;
422         int clock_divisor;
423
424         clock_divisor = ns16550_calc_divisor(com_port, plat->clock, baudrate);
425
426         NS16550_setbrg(com_port, clock_divisor);
427
428         return 0;
429 }
430
431 static int ns16550_serial_setconfig(struct udevice *dev, uint serial_config)
432 {
433         struct NS16550 *const com_port = dev_get_priv(dev);
434         int lcr_val = UART_LCR_WLS_8;
435         uint parity = SERIAL_GET_PARITY(serial_config);
436         uint bits = SERIAL_GET_BITS(serial_config);
437         uint stop = SERIAL_GET_STOP(serial_config);
438
439         /*
440          * only parity config is implemented, check if other serial settings
441          * are the default one.
442          */
443         if (bits != SERIAL_8_BITS || stop != SERIAL_ONE_STOP)
444                 return -ENOTSUPP; /* not supported in driver*/
445
446         switch (parity) {
447         case SERIAL_PAR_NONE:
448                 /* no bits to add */
449                 break;
450         case SERIAL_PAR_ODD:
451                 lcr_val |= UART_LCR_PEN;
452                 break;
453         case SERIAL_PAR_EVEN:
454                 lcr_val |= UART_LCR_PEN | UART_LCR_EPS;
455                 break;
456         default:
457                 return -ENOTSUPP; /* not supported in driver*/
458         }
459
460         serial_out(lcr_val, &com_port->lcr);
461         return 0;
462 }
463
464 static int ns16550_serial_getinfo(struct udevice *dev,
465                                   struct serial_device_info *info)
466 {
467         struct NS16550 *const com_port = dev_get_priv(dev);
468         struct ns16550_platdata *plat = com_port->plat;
469
470         info->type = SERIAL_CHIP_16550_COMPATIBLE;
471 #ifdef CONFIG_SYS_NS16550_PORT_MAPPED
472         info->addr_space = SERIAL_ADDRESS_SPACE_IO;
473 #else
474         info->addr_space = SERIAL_ADDRESS_SPACE_MEMORY;
475 #endif
476         info->addr = plat->base;
477         info->reg_width = plat->reg_width;
478         info->reg_shift = plat->reg_shift;
479         info->reg_offset = plat->reg_offset;
480         info->clock = plat->clock;
481
482         return 0;
483 }
484
485 static int ns16550_serial_assign_base(struct ns16550_platdata *plat, ulong base)
486 {
487         if (base == FDT_ADDR_T_NONE)
488                 return -EINVAL;
489
490 #ifdef CONFIG_SYS_NS16550_PORT_MAPPED
491         plat->base = base;
492 #else
493         plat->base = (unsigned long)map_physmem(base, 0, MAP_NOCACHE);
494 #endif
495
496         return 0;
497 }
498
499 int ns16550_serial_probe(struct udevice *dev)
500 {
501         struct ns16550_platdata *plat = dev->platdata;
502         struct NS16550 *const com_port = dev_get_priv(dev);
503         struct reset_ctl_bulk reset_bulk;
504         fdt_addr_t addr;
505         int ret;
506
507         /*
508          * If we are on PCI bus, either directly attached to a PCI root port,
509          * or via a PCI bridge, assign platdata->base before probing hardware.
510          */
511         if (device_is_on_pci_bus(dev)) {
512                 addr = devfdt_get_addr_pci(dev);
513                 ret = ns16550_serial_assign_base(plat, addr);
514                 if (ret)
515                         return ret;
516         }
517
518         ret = reset_get_bulk(dev, &reset_bulk);
519         if (!ret)
520                 reset_deassert_bulk(&reset_bulk);
521
522         com_port->plat = dev_get_platdata(dev);
523         NS16550_init(com_port, -1);
524
525         return 0;
526 }
527
528 #if CONFIG_IS_ENABLED(OF_CONTROL)
529 enum {
530         PORT_NS16550 = 0,
531         PORT_JZ4780,
532 };
533 #endif
534
535 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
536 int ns16550_serial_ofdata_to_platdata(struct udevice *dev)
537 {
538         struct ns16550_platdata *plat = dev->platdata;
539         const u32 port_type = dev_get_driver_data(dev);
540         fdt_addr_t addr;
541         struct clk clk;
542         int err;
543
544         addr = dev_read_addr(dev);
545         err = ns16550_serial_assign_base(plat, addr);
546         if (err && !device_is_on_pci_bus(dev))
547                 return err;
548
549         plat->reg_offset = dev_read_u32_default(dev, "reg-offset", 0);
550         plat->reg_shift = dev_read_u32_default(dev, "reg-shift", 0);
551         plat->reg_width = dev_read_u32_default(dev, "reg-io-width", 1);
552
553         err = clk_get_by_index(dev, 0, &clk);
554         if (!err) {
555                 err = clk_get_rate(&clk);
556                 if (!IS_ERR_VALUE(err))
557                         plat->clock = err;
558         } else if (err != -ENOENT && err != -ENODEV && err != -ENOSYS) {
559                 debug("ns16550 failed to get clock\n");
560                 return err;
561         }
562
563         if (!plat->clock)
564                 plat->clock = dev_read_u32_default(dev, "clock-frequency",
565                                                    CONFIG_SYS_NS16550_CLK);
566         if (!plat->clock) {
567                 debug("ns16550 clock not defined\n");
568                 return -EINVAL;
569         }
570
571         plat->fcr = UART_FCR_DEFVAL;
572         if (port_type == PORT_JZ4780)
573                 plat->fcr |= UART_FCR_UME;
574
575         return 0;
576 }
577 #endif
578
579 const struct dm_serial_ops ns16550_serial_ops = {
580         .putc = ns16550_serial_putc,
581         .pending = ns16550_serial_pending,
582         .getc = ns16550_serial_getc,
583         .setbrg = ns16550_serial_setbrg,
584         .setconfig = ns16550_serial_setconfig,
585         .getinfo = ns16550_serial_getinfo,
586 };
587
588 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
589 /*
590  * Please consider existing compatible strings before adding a new
591  * one to keep this table compact. Or you may add a generic "ns16550"
592  * compatible string to your dts.
593  */
594 static const struct udevice_id ns16550_serial_ids[] = {
595         { .compatible = "ns16550",              .data = PORT_NS16550 },
596         { .compatible = "ns16550a",             .data = PORT_NS16550 },
597         { .compatible = "ingenic,jz4780-uart",  .data = PORT_JZ4780  },
598         { .compatible = "nvidia,tegra20-uart",  .data = PORT_NS16550 },
599         { .compatible = "snps,dw-apb-uart",     .data = PORT_NS16550 },
600         {}
601 };
602 #endif /* OF_CONTROL && !OF_PLATDATA */
603
604 #if CONFIG_IS_ENABLED(SERIAL_PRESENT)
605
606 /* TODO(sjg@chromium.org): Integrate this into a macro like CONFIG_IS_ENABLED */
607 #if !defined(CONFIG_TPL_BUILD) || defined(CONFIG_TPL_DM_SERIAL)
608 U_BOOT_DRIVER(ns16550_serial) = {
609         .name   = "ns16550_serial",
610         .id     = UCLASS_SERIAL,
611 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
612         .of_match = ns16550_serial_ids,
613         .ofdata_to_platdata = ns16550_serial_ofdata_to_platdata,
614         .platdata_auto_alloc_size = sizeof(struct ns16550_platdata),
615 #endif
616         .priv_auto_alloc_size = sizeof(struct NS16550),
617         .probe = ns16550_serial_probe,
618         .ops    = &ns16550_serial_ops,
619 #if !CONFIG_IS_ENABLED(OF_CONTROL)
620         .flags  = DM_FLAG_PRE_RELOC,
621 #endif
622 };
623 #endif
624 #endif /* SERIAL_PRESENT */
625
626 #endif /* CONFIG_DM_SERIAL */