GNU Linux-libre 4.19.264-gnu1
[releases.git] / drivers / tty / serial / meson_uart.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  *  Based on meson_uart.c, by AMLOGIC, INC.
4  *
5  * Copyright (C) 2014 Carlo Caione <carlo@caione.org>
6  */
7
8 #if defined(CONFIG_SERIAL_MESON_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
9 #define SUPPORT_SYSRQ
10 #endif
11
12 #include <linux/clk.h>
13 #include <linux/console.h>
14 #include <linux/delay.h>
15 #include <linux/init.h>
16 #include <linux/io.h>
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/of.h>
20 #include <linux/platform_device.h>
21 #include <linux/serial.h>
22 #include <linux/serial_core.h>
23 #include <linux/tty.h>
24 #include <linux/tty_flip.h>
25
26 /* Register offsets */
27 #define AML_UART_WFIFO                  0x00
28 #define AML_UART_RFIFO                  0x04
29 #define AML_UART_CONTROL                0x08
30 #define AML_UART_STATUS                 0x0c
31 #define AML_UART_MISC                   0x10
32 #define AML_UART_REG5                   0x14
33
34 /* AML_UART_CONTROL bits */
35 #define AML_UART_TX_EN                  BIT(12)
36 #define AML_UART_RX_EN                  BIT(13)
37 #define AML_UART_TWO_WIRE_EN            BIT(15)
38 #define AML_UART_STOP_BIT_LEN_MASK      (0x03 << 16)
39 #define AML_UART_STOP_BIT_1SB           (0x00 << 16)
40 #define AML_UART_STOP_BIT_2SB           (0x01 << 16)
41 #define AML_UART_PARITY_TYPE            BIT(18)
42 #define AML_UART_PARITY_EN              BIT(19)
43 #define AML_UART_TX_RST                 BIT(22)
44 #define AML_UART_RX_RST                 BIT(23)
45 #define AML_UART_CLEAR_ERR              BIT(24)
46 #define AML_UART_RX_INT_EN              BIT(27)
47 #define AML_UART_TX_INT_EN              BIT(28)
48 #define AML_UART_DATA_LEN_MASK          (0x03 << 20)
49 #define AML_UART_DATA_LEN_8BIT          (0x00 << 20)
50 #define AML_UART_DATA_LEN_7BIT          (0x01 << 20)
51 #define AML_UART_DATA_LEN_6BIT          (0x02 << 20)
52 #define AML_UART_DATA_LEN_5BIT          (0x03 << 20)
53
54 /* AML_UART_STATUS bits */
55 #define AML_UART_PARITY_ERR             BIT(16)
56 #define AML_UART_FRAME_ERR              BIT(17)
57 #define AML_UART_TX_FIFO_WERR           BIT(18)
58 #define AML_UART_RX_EMPTY               BIT(20)
59 #define AML_UART_TX_FULL                BIT(21)
60 #define AML_UART_TX_EMPTY               BIT(22)
61 #define AML_UART_XMIT_BUSY              BIT(25)
62 #define AML_UART_ERR                    (AML_UART_PARITY_ERR | \
63                                          AML_UART_FRAME_ERR  | \
64                                          AML_UART_TX_FIFO_WERR)
65
66 /* AML_UART_MISC bits */
67 #define AML_UART_XMIT_IRQ(c)            (((c) & 0xff) << 8)
68 #define AML_UART_RECV_IRQ(c)            ((c) & 0xff)
69
70 /* AML_UART_REG5 bits */
71 #define AML_UART_BAUD_MASK              0x7fffff
72 #define AML_UART_BAUD_USE               BIT(23)
73 #define AML_UART_BAUD_XTAL              BIT(24)
74
75 #define AML_UART_PORT_NUM               6
76 #define AML_UART_DEV_NAME               "ttyAML"
77
78
79 static struct uart_driver meson_uart_driver;
80
81 static struct uart_port *meson_ports[AML_UART_PORT_NUM];
82
83 static void meson_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
84 {
85 }
86
87 static unsigned int meson_uart_get_mctrl(struct uart_port *port)
88 {
89         return TIOCM_CTS;
90 }
91
92 static unsigned int meson_uart_tx_empty(struct uart_port *port)
93 {
94         u32 val;
95
96         val = readl(port->membase + AML_UART_STATUS);
97         val &= (AML_UART_TX_EMPTY | AML_UART_XMIT_BUSY);
98         return (val == AML_UART_TX_EMPTY) ? TIOCSER_TEMT : 0;
99 }
100
101 static void meson_uart_stop_tx(struct uart_port *port)
102 {
103         u32 val;
104
105         val = readl(port->membase + AML_UART_CONTROL);
106         val &= ~AML_UART_TX_INT_EN;
107         writel(val, port->membase + AML_UART_CONTROL);
108 }
109
110 static void meson_uart_stop_rx(struct uart_port *port)
111 {
112         u32 val;
113
114         val = readl(port->membase + AML_UART_CONTROL);
115         val &= ~AML_UART_RX_EN;
116         writel(val, port->membase + AML_UART_CONTROL);
117 }
118
119 static void meson_uart_shutdown(struct uart_port *port)
120 {
121         unsigned long flags;
122         u32 val;
123
124         free_irq(port->irq, port);
125
126         spin_lock_irqsave(&port->lock, flags);
127
128         val = readl(port->membase + AML_UART_CONTROL);
129         val &= ~AML_UART_RX_EN;
130         val &= ~(AML_UART_RX_INT_EN | AML_UART_TX_INT_EN);
131         writel(val, port->membase + AML_UART_CONTROL);
132
133         spin_unlock_irqrestore(&port->lock, flags);
134 }
135
136 static void meson_uart_start_tx(struct uart_port *port)
137 {
138         struct circ_buf *xmit = &port->state->xmit;
139         unsigned int ch;
140         u32 val;
141
142         if (uart_tx_stopped(port)) {
143                 meson_uart_stop_tx(port);
144                 return;
145         }
146
147         while (!(readl(port->membase + AML_UART_STATUS) & AML_UART_TX_FULL)) {
148                 if (port->x_char) {
149                         writel(port->x_char, port->membase + AML_UART_WFIFO);
150                         port->icount.tx++;
151                         port->x_char = 0;
152                         continue;
153                 }
154
155                 if (uart_circ_empty(xmit))
156                         break;
157
158                 ch = xmit->buf[xmit->tail];
159                 writel(ch, port->membase + AML_UART_WFIFO);
160                 xmit->tail = (xmit->tail+1) & (SERIAL_XMIT_SIZE - 1);
161                 port->icount.tx++;
162         }
163
164         if (!uart_circ_empty(xmit)) {
165                 val = readl(port->membase + AML_UART_CONTROL);
166                 val |= AML_UART_TX_INT_EN;
167                 writel(val, port->membase + AML_UART_CONTROL);
168         }
169
170         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
171                 uart_write_wakeup(port);
172 }
173
174 static void meson_receive_chars(struct uart_port *port)
175 {
176         struct tty_port *tport = &port->state->port;
177         char flag;
178         u32 ostatus, status, ch, mode;
179
180         do {
181                 flag = TTY_NORMAL;
182                 port->icount.rx++;
183                 ostatus = status = readl(port->membase + AML_UART_STATUS);
184
185                 if (status & AML_UART_ERR) {
186                         if (status & AML_UART_TX_FIFO_WERR)
187                                 port->icount.overrun++;
188                         else if (status & AML_UART_FRAME_ERR)
189                                 port->icount.frame++;
190                         else if (status & AML_UART_PARITY_ERR)
191                                 port->icount.frame++;
192
193                         mode = readl(port->membase + AML_UART_CONTROL);
194                         mode |= AML_UART_CLEAR_ERR;
195                         writel(mode, port->membase + AML_UART_CONTROL);
196
197                         /* It doesn't clear to 0 automatically */
198                         mode &= ~AML_UART_CLEAR_ERR;
199                         writel(mode, port->membase + AML_UART_CONTROL);
200
201                         status &= port->read_status_mask;
202                         if (status & AML_UART_FRAME_ERR)
203                                 flag = TTY_FRAME;
204                         else if (status & AML_UART_PARITY_ERR)
205                                 flag = TTY_PARITY;
206                 }
207
208                 ch = readl(port->membase + AML_UART_RFIFO);
209                 ch &= 0xff;
210
211                 if ((ostatus & AML_UART_FRAME_ERR) && (ch == 0)) {
212                         port->icount.brk++;
213                         flag = TTY_BREAK;
214                         if (uart_handle_break(port))
215                                 continue;
216                 }
217
218                 if (uart_handle_sysrq_char(port, ch))
219                         continue;
220
221                 if ((status & port->ignore_status_mask) == 0)
222                         tty_insert_flip_char(tport, ch, flag);
223
224                 if (status & AML_UART_TX_FIFO_WERR)
225                         tty_insert_flip_char(tport, 0, TTY_OVERRUN);
226
227         } while (!(readl(port->membase + AML_UART_STATUS) & AML_UART_RX_EMPTY));
228
229         spin_unlock(&port->lock);
230         tty_flip_buffer_push(tport);
231         spin_lock(&port->lock);
232 }
233
234 static irqreturn_t meson_uart_interrupt(int irq, void *dev_id)
235 {
236         struct uart_port *port = (struct uart_port *)dev_id;
237
238         spin_lock(&port->lock);
239
240         if (!(readl(port->membase + AML_UART_STATUS) & AML_UART_RX_EMPTY))
241                 meson_receive_chars(port);
242
243         if (!(readl(port->membase + AML_UART_STATUS) & AML_UART_TX_FULL)) {
244                 if (readl(port->membase + AML_UART_CONTROL) & AML_UART_TX_INT_EN)
245                         meson_uart_start_tx(port);
246         }
247
248         spin_unlock(&port->lock);
249
250         return IRQ_HANDLED;
251 }
252
253 static const char *meson_uart_type(struct uart_port *port)
254 {
255         return (port->type == PORT_MESON) ? "meson_uart" : NULL;
256 }
257
258 /*
259  * This function is called only from probe() using a temporary io mapping
260  * in order to perform a reset before setting up the device. Since the
261  * temporarily mapped region was successfully requested, there can be no
262  * console on this port at this time. Hence it is not necessary for this
263  * function to acquire the port->lock. (Since there is no console on this
264  * port at this time, the port->lock is not initialized yet.)
265  */
266 static void meson_uart_reset(struct uart_port *port)
267 {
268         u32 val;
269
270         val = readl(port->membase + AML_UART_CONTROL);
271         val |= (AML_UART_RX_RST | AML_UART_TX_RST | AML_UART_CLEAR_ERR);
272         writel(val, port->membase + AML_UART_CONTROL);
273
274         val &= ~(AML_UART_RX_RST | AML_UART_TX_RST | AML_UART_CLEAR_ERR);
275         writel(val, port->membase + AML_UART_CONTROL);
276 }
277
278 static int meson_uart_startup(struct uart_port *port)
279 {
280         unsigned long flags;
281         u32 val;
282         int ret = 0;
283
284         spin_lock_irqsave(&port->lock, flags);
285
286         val = readl(port->membase + AML_UART_CONTROL);
287         val |= AML_UART_CLEAR_ERR;
288         writel(val, port->membase + AML_UART_CONTROL);
289         val &= ~AML_UART_CLEAR_ERR;
290         writel(val, port->membase + AML_UART_CONTROL);
291
292         val |= (AML_UART_RX_EN | AML_UART_TX_EN);
293         writel(val, port->membase + AML_UART_CONTROL);
294
295         val |= (AML_UART_RX_INT_EN | AML_UART_TX_INT_EN);
296         writel(val, port->membase + AML_UART_CONTROL);
297
298         val = (AML_UART_RECV_IRQ(1) | AML_UART_XMIT_IRQ(port->fifosize / 2));
299         writel(val, port->membase + AML_UART_MISC);
300
301         spin_unlock_irqrestore(&port->lock, flags);
302
303         ret = request_irq(port->irq, meson_uart_interrupt, 0,
304                           port->name, port);
305
306         return ret;
307 }
308
309 static void meson_uart_change_speed(struct uart_port *port, unsigned long baud)
310 {
311         u32 val;
312
313         while (!meson_uart_tx_empty(port))
314                 cpu_relax();
315
316         if (port->uartclk == 24000000) {
317                 val = ((port->uartclk / 3) / baud) - 1;
318                 val |= AML_UART_BAUD_XTAL;
319         } else {
320                 val = ((port->uartclk * 10 / (baud * 4) + 5) / 10) - 1;
321         }
322         val |= AML_UART_BAUD_USE;
323         writel(val, port->membase + AML_UART_REG5);
324 }
325
326 static void meson_uart_set_termios(struct uart_port *port,
327                                    struct ktermios *termios,
328                                    struct ktermios *old)
329 {
330         unsigned int cflags, iflags, baud;
331         unsigned long flags;
332         u32 val;
333
334         spin_lock_irqsave(&port->lock, flags);
335
336         cflags = termios->c_cflag;
337         iflags = termios->c_iflag;
338
339         val = readl(port->membase + AML_UART_CONTROL);
340
341         val &= ~AML_UART_DATA_LEN_MASK;
342         switch (cflags & CSIZE) {
343         case CS8:
344                 val |= AML_UART_DATA_LEN_8BIT;
345                 break;
346         case CS7:
347                 val |= AML_UART_DATA_LEN_7BIT;
348                 break;
349         case CS6:
350                 val |= AML_UART_DATA_LEN_6BIT;
351                 break;
352         case CS5:
353                 val |= AML_UART_DATA_LEN_5BIT;
354                 break;
355         }
356
357         if (cflags & PARENB)
358                 val |= AML_UART_PARITY_EN;
359         else
360                 val &= ~AML_UART_PARITY_EN;
361
362         if (cflags & PARODD)
363                 val |= AML_UART_PARITY_TYPE;
364         else
365                 val &= ~AML_UART_PARITY_TYPE;
366
367         val &= ~AML_UART_STOP_BIT_LEN_MASK;
368         if (cflags & CSTOPB)
369                 val |= AML_UART_STOP_BIT_2SB;
370         else
371                 val |= AML_UART_STOP_BIT_1SB;
372
373         if (cflags & CRTSCTS)
374                 val &= ~AML_UART_TWO_WIRE_EN;
375         else
376                 val |= AML_UART_TWO_WIRE_EN;
377
378         writel(val, port->membase + AML_UART_CONTROL);
379
380         baud = uart_get_baud_rate(port, termios, old, 50, 4000000);
381         meson_uart_change_speed(port, baud);
382
383         port->read_status_mask = AML_UART_TX_FIFO_WERR;
384         if (iflags & INPCK)
385                 port->read_status_mask |= AML_UART_PARITY_ERR |
386                                           AML_UART_FRAME_ERR;
387
388         port->ignore_status_mask = 0;
389         if (iflags & IGNPAR)
390                 port->ignore_status_mask |= AML_UART_PARITY_ERR |
391                                             AML_UART_FRAME_ERR;
392
393         uart_update_timeout(port, termios->c_cflag, baud);
394         spin_unlock_irqrestore(&port->lock, flags);
395 }
396
397 static int meson_uart_verify_port(struct uart_port *port,
398                                   struct serial_struct *ser)
399 {
400         int ret = 0;
401
402         if (port->type != PORT_MESON)
403                 ret = -EINVAL;
404         if (port->irq != ser->irq)
405                 ret = -EINVAL;
406         if (ser->baud_base < 9600)
407                 ret = -EINVAL;
408         return ret;
409 }
410
411 static void meson_uart_release_port(struct uart_port *port)
412 {
413         devm_iounmap(port->dev, port->membase);
414         port->membase = NULL;
415         devm_release_mem_region(port->dev, port->mapbase, port->mapsize);
416 }
417
418 static int meson_uart_request_port(struct uart_port *port)
419 {
420         if (!devm_request_mem_region(port->dev, port->mapbase, port->mapsize,
421                                      dev_name(port->dev))) {
422                 dev_err(port->dev, "Memory region busy\n");
423                 return -EBUSY;
424         }
425
426         port->membase = devm_ioremap_nocache(port->dev, port->mapbase,
427                                              port->mapsize);
428         if (!port->membase)
429                 return -ENOMEM;
430
431         return 0;
432 }
433
434 static void meson_uart_config_port(struct uart_port *port, int flags)
435 {
436         if (flags & UART_CONFIG_TYPE) {
437                 port->type = PORT_MESON;
438                 meson_uart_request_port(port);
439         }
440 }
441
442 static const struct uart_ops meson_uart_ops = {
443         .set_mctrl      = meson_uart_set_mctrl,
444         .get_mctrl      = meson_uart_get_mctrl,
445         .tx_empty       = meson_uart_tx_empty,
446         .start_tx       = meson_uart_start_tx,
447         .stop_tx        = meson_uart_stop_tx,
448         .stop_rx        = meson_uart_stop_rx,
449         .startup        = meson_uart_startup,
450         .shutdown       = meson_uart_shutdown,
451         .set_termios    = meson_uart_set_termios,
452         .type           = meson_uart_type,
453         .config_port    = meson_uart_config_port,
454         .request_port   = meson_uart_request_port,
455         .release_port   = meson_uart_release_port,
456         .verify_port    = meson_uart_verify_port,
457 };
458
459 #ifdef CONFIG_SERIAL_MESON_CONSOLE
460 static void meson_uart_enable_tx_engine(struct uart_port *port)
461 {
462         u32 val;
463
464         val = readl(port->membase + AML_UART_CONTROL);
465         val |= AML_UART_TX_EN;
466         writel(val, port->membase + AML_UART_CONTROL);
467 }
468
469 static void meson_console_putchar(struct uart_port *port, int ch)
470 {
471         if (!port->membase)
472                 return;
473
474         while (readl(port->membase + AML_UART_STATUS) & AML_UART_TX_FULL)
475                 cpu_relax();
476         writel(ch, port->membase + AML_UART_WFIFO);
477 }
478
479 static void meson_serial_port_write(struct uart_port *port, const char *s,
480                                     u_int count)
481 {
482         unsigned long flags;
483         int locked;
484         u32 val, tmp;
485
486         local_irq_save(flags);
487         if (port->sysrq) {
488                 locked = 0;
489         } else if (oops_in_progress) {
490                 locked = spin_trylock(&port->lock);
491         } else {
492                 spin_lock(&port->lock);
493                 locked = 1;
494         }
495
496         val = readl(port->membase + AML_UART_CONTROL);
497         tmp = val & ~(AML_UART_TX_INT_EN | AML_UART_RX_INT_EN);
498         writel(tmp, port->membase + AML_UART_CONTROL);
499
500         uart_console_write(port, s, count, meson_console_putchar);
501         writel(val, port->membase + AML_UART_CONTROL);
502
503         if (locked)
504                 spin_unlock(&port->lock);
505         local_irq_restore(flags);
506 }
507
508 static void meson_serial_console_write(struct console *co, const char *s,
509                                        u_int count)
510 {
511         struct uart_port *port;
512
513         port = meson_ports[co->index];
514         if (!port)
515                 return;
516
517         meson_serial_port_write(port, s, count);
518 }
519
520 static int meson_serial_console_setup(struct console *co, char *options)
521 {
522         struct uart_port *port;
523         int baud = 115200;
524         int bits = 8;
525         int parity = 'n';
526         int flow = 'n';
527
528         if (co->index < 0 || co->index >= AML_UART_PORT_NUM)
529                 return -EINVAL;
530
531         port = meson_ports[co->index];
532         if (!port || !port->membase)
533                 return -ENODEV;
534
535         meson_uart_enable_tx_engine(port);
536
537         if (options)
538                 uart_parse_options(options, &baud, &parity, &bits, &flow);
539
540         return uart_set_options(port, co, baud, parity, bits, flow);
541 }
542
543 static struct console meson_serial_console = {
544         .name           = AML_UART_DEV_NAME,
545         .write          = meson_serial_console_write,
546         .device         = uart_console_device,
547         .setup          = meson_serial_console_setup,
548         .flags          = CON_PRINTBUFFER,
549         .index          = -1,
550         .data           = &meson_uart_driver,
551 };
552
553 static int __init meson_serial_console_init(void)
554 {
555         register_console(&meson_serial_console);
556         return 0;
557 }
558 console_initcall(meson_serial_console_init);
559
560 static void meson_serial_early_console_write(struct console *co,
561                                              const char *s,
562                                              u_int count)
563 {
564         struct earlycon_device *dev = co->data;
565
566         meson_serial_port_write(&dev->port, s, count);
567 }
568
569 static int __init
570 meson_serial_early_console_setup(struct earlycon_device *device, const char *opt)
571 {
572         if (!device->port.membase)
573                 return -ENODEV;
574
575         meson_uart_enable_tx_engine(&device->port);
576         device->con->write = meson_serial_early_console_write;
577         return 0;
578 }
579 /* Legacy bindings, should be removed when no more used */
580 OF_EARLYCON_DECLARE(meson, "amlogic,meson-uart",
581                     meson_serial_early_console_setup);
582 /* Stable bindings */
583 OF_EARLYCON_DECLARE(meson, "amlogic,meson-ao-uart",
584                     meson_serial_early_console_setup);
585
586 #define MESON_SERIAL_CONSOLE    (&meson_serial_console)
587 #else
588 #define MESON_SERIAL_CONSOLE    NULL
589 #endif
590
591 static struct uart_driver meson_uart_driver = {
592         .owner          = THIS_MODULE,
593         .driver_name    = "meson_uart",
594         .dev_name       = AML_UART_DEV_NAME,
595         .nr             = AML_UART_PORT_NUM,
596         .cons           = MESON_SERIAL_CONSOLE,
597 };
598
599 static inline struct clk *meson_uart_probe_clock(struct device *dev,
600                                                  const char *id)
601 {
602         struct clk *clk = NULL;
603         int ret;
604
605         clk = devm_clk_get(dev, id);
606         if (IS_ERR(clk))
607                 return clk;
608
609         ret = clk_prepare_enable(clk);
610         if (ret) {
611                 dev_err(dev, "couldn't enable clk\n");
612                 return ERR_PTR(ret);
613         }
614
615         devm_add_action_or_reset(dev,
616                         (void(*)(void *))clk_disable_unprepare,
617                         clk);
618
619         return clk;
620 }
621
622 /*
623  * This function gets clocks in the legacy non-stable DT bindings.
624  * This code will be remove once all the platforms switch to the
625  * new DT bindings.
626  */
627 static int meson_uart_probe_clocks_legacy(struct platform_device *pdev,
628                                           struct uart_port *port)
629 {
630         struct clk *clk = NULL;
631
632         clk = meson_uart_probe_clock(&pdev->dev, NULL);
633         if (IS_ERR(clk))
634                 return PTR_ERR(clk);
635
636         port->uartclk = clk_get_rate(clk);
637
638         return 0;
639 }
640
641 static int meson_uart_probe_clocks(struct platform_device *pdev,
642                                    struct uart_port *port)
643 {
644         struct clk *clk_xtal = NULL;
645         struct clk *clk_pclk = NULL;
646         struct clk *clk_baud = NULL;
647
648         clk_pclk = meson_uart_probe_clock(&pdev->dev, "pclk");
649         if (IS_ERR(clk_pclk))
650                 return PTR_ERR(clk_pclk);
651
652         clk_xtal = meson_uart_probe_clock(&pdev->dev, "xtal");
653         if (IS_ERR(clk_xtal))
654                 return PTR_ERR(clk_xtal);
655
656         clk_baud = meson_uart_probe_clock(&pdev->dev, "baud");
657         if (IS_ERR(clk_baud))
658                 return PTR_ERR(clk_baud);
659
660         port->uartclk = clk_get_rate(clk_baud);
661
662         return 0;
663 }
664
665 static int meson_uart_probe(struct platform_device *pdev)
666 {
667         struct resource *res_mem, *res_irq;
668         struct uart_port *port;
669         int ret = 0;
670
671         if (pdev->dev.of_node)
672                 pdev->id = of_alias_get_id(pdev->dev.of_node, "serial");
673
674         if (pdev->id < 0 || pdev->id >= AML_UART_PORT_NUM)
675                 return -EINVAL;
676
677         res_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
678         if (!res_mem)
679                 return -ENODEV;
680
681         res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
682         if (!res_irq)
683                 return -ENODEV;
684
685         if (meson_ports[pdev->id]) {
686                 dev_err(&pdev->dev, "port %d already allocated\n", pdev->id);
687                 return -EBUSY;
688         }
689
690         port = devm_kzalloc(&pdev->dev, sizeof(struct uart_port), GFP_KERNEL);
691         if (!port)
692                 return -ENOMEM;
693
694         /* Use legacy way until all platforms switch to new bindings */
695         if (of_device_is_compatible(pdev->dev.of_node, "amlogic,meson-uart"))
696                 ret = meson_uart_probe_clocks_legacy(pdev, port);
697         else
698                 ret = meson_uart_probe_clocks(pdev, port);
699
700         if (ret)
701                 return ret;
702
703         port->iotype = UPIO_MEM;
704         port->mapbase = res_mem->start;
705         port->mapsize = resource_size(res_mem);
706         port->irq = res_irq->start;
707         port->flags = UPF_BOOT_AUTOCONF | UPF_LOW_LATENCY;
708         port->dev = &pdev->dev;
709         port->line = pdev->id;
710         port->type = PORT_MESON;
711         port->x_char = 0;
712         port->ops = &meson_uart_ops;
713         port->fifosize = 64;
714
715         meson_ports[pdev->id] = port;
716         platform_set_drvdata(pdev, port);
717
718         /* reset port before registering (and possibly registering console) */
719         if (meson_uart_request_port(port) >= 0) {
720                 meson_uart_reset(port);
721                 meson_uart_release_port(port);
722         }
723
724         ret = uart_add_one_port(&meson_uart_driver, port);
725         if (ret)
726                 meson_ports[pdev->id] = NULL;
727
728         return ret;
729 }
730
731 static int meson_uart_remove(struct platform_device *pdev)
732 {
733         struct uart_port *port;
734
735         port = platform_get_drvdata(pdev);
736         uart_remove_one_port(&meson_uart_driver, port);
737         meson_ports[pdev->id] = NULL;
738
739         return 0;
740 }
741
742 static const struct of_device_id meson_uart_dt_match[] = {
743         /* Legacy bindings, should be removed when no more used */
744         { .compatible = "amlogic,meson-uart" },
745         /* Stable bindings */
746         { .compatible = "amlogic,meson6-uart" },
747         { .compatible = "amlogic,meson8-uart" },
748         { .compatible = "amlogic,meson8b-uart" },
749         { .compatible = "amlogic,meson-gx-uart" },
750         { /* sentinel */ },
751 };
752 MODULE_DEVICE_TABLE(of, meson_uart_dt_match);
753
754 static  struct platform_driver meson_uart_platform_driver = {
755         .probe          = meson_uart_probe,
756         .remove         = meson_uart_remove,
757         .driver         = {
758                 .name           = "meson_uart",
759                 .of_match_table = meson_uart_dt_match,
760         },
761 };
762
763 static int __init meson_uart_init(void)
764 {
765         int ret;
766
767         ret = uart_register_driver(&meson_uart_driver);
768         if (ret)
769                 return ret;
770
771         ret = platform_driver_register(&meson_uart_platform_driver);
772         if (ret)
773                 uart_unregister_driver(&meson_uart_driver);
774
775         return ret;
776 }
777
778 static void __exit meson_uart_exit(void)
779 {
780         platform_driver_unregister(&meson_uart_platform_driver);
781         uart_unregister_driver(&meson_uart_driver);
782 }
783
784 module_init(meson_uart_init);
785 module_exit(meson_uart_exit);
786
787 MODULE_AUTHOR("Carlo Caione <carlo@caione.org>");
788 MODULE_DESCRIPTION("Amlogic Meson serial port driver");
789 MODULE_LICENSE("GPL v2");