1 // SPDX-License-Identifier: GPL-2.0
3 * Atheros AR933X SoC built-in UART driver
5 * Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
7 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
10 #include <linux/module.h>
11 #include <linux/ioport.h>
12 #include <linux/init.h>
13 #include <linux/console.h>
14 #include <linux/sysrq.h>
15 #include <linux/delay.h>
16 #include <linux/gpio/consumer.h>
17 #include <linux/platform_device.h>
19 #include <linux/of_platform.h>
20 #include <linux/tty.h>
21 #include <linux/tty_flip.h>
22 #include <linux/serial_core.h>
23 #include <linux/serial.h>
24 #include <linux/slab.h>
26 #include <linux/irq.h>
27 #include <linux/clk.h>
29 #include <asm/div64.h>
31 #include <asm/mach-ath79/ar933x_uart.h>
33 #include "serial_mctrl_gpio.h"
35 #define DRIVER_NAME "ar933x-uart"
37 #define AR933X_UART_MAX_SCALE 0xff
38 #define AR933X_UART_MAX_STEP 0xffff
40 #define AR933X_UART_MIN_BAUD 300
41 #define AR933X_UART_MAX_BAUD 3000000
43 #define AR933X_DUMMY_STATUS_RD 0x01
45 static struct uart_driver ar933x_uart_driver
;
47 struct ar933x_uart_port
{
48 struct uart_port port
;
49 unsigned int ier
; /* shadow Interrupt Enable Register */
50 unsigned int min_baud
;
51 unsigned int max_baud
;
53 struct mctrl_gpios
*gpios
;
54 struct gpio_desc
*rts_gpiod
;
57 static inline unsigned int ar933x_uart_read(struct ar933x_uart_port
*up
,
60 return readl(up
->port
.membase
+ offset
);
63 static inline void ar933x_uart_write(struct ar933x_uart_port
*up
,
64 int offset
, unsigned int value
)
66 writel(value
, up
->port
.membase
+ offset
);
69 static inline void ar933x_uart_rmw(struct ar933x_uart_port
*up
,
76 t
= ar933x_uart_read(up
, offset
);
79 ar933x_uart_write(up
, offset
, t
);
82 static inline void ar933x_uart_rmw_set(struct ar933x_uart_port
*up
,
86 ar933x_uart_rmw(up
, offset
, 0, val
);
89 static inline void ar933x_uart_rmw_clear(struct ar933x_uart_port
*up
,
93 ar933x_uart_rmw(up
, offset
, val
, 0);
96 static inline void ar933x_uart_start_tx_interrupt(struct ar933x_uart_port
*up
)
98 up
->ier
|= AR933X_UART_INT_TX_EMPTY
;
99 ar933x_uart_write(up
, AR933X_UART_INT_EN_REG
, up
->ier
);
102 static inline void ar933x_uart_stop_tx_interrupt(struct ar933x_uart_port
*up
)
104 up
->ier
&= ~AR933X_UART_INT_TX_EMPTY
;
105 ar933x_uart_write(up
, AR933X_UART_INT_EN_REG
, up
->ier
);
108 static inline void ar933x_uart_start_rx_interrupt(struct ar933x_uart_port
*up
)
110 up
->ier
|= AR933X_UART_INT_RX_VALID
;
111 ar933x_uart_write(up
, AR933X_UART_INT_EN_REG
, up
->ier
);
114 static inline void ar933x_uart_stop_rx_interrupt(struct ar933x_uart_port
*up
)
116 up
->ier
&= ~AR933X_UART_INT_RX_VALID
;
117 ar933x_uart_write(up
, AR933X_UART_INT_EN_REG
, up
->ier
);
120 static inline void ar933x_uart_putc(struct ar933x_uart_port
*up
, int ch
)
124 rdata
= ch
& AR933X_UART_DATA_TX_RX_MASK
;
125 rdata
|= AR933X_UART_DATA_TX_CSR
;
126 ar933x_uart_write(up
, AR933X_UART_DATA_REG
, rdata
);
129 static unsigned int ar933x_uart_tx_empty(struct uart_port
*port
)
131 struct ar933x_uart_port
*up
=
132 container_of(port
, struct ar933x_uart_port
, port
);
136 uart_port_lock_irqsave(&up
->port
, &flags
);
137 rdata
= ar933x_uart_read(up
, AR933X_UART_DATA_REG
);
138 uart_port_unlock_irqrestore(&up
->port
, flags
);
140 return (rdata
& AR933X_UART_DATA_TX_CSR
) ? 0 : TIOCSER_TEMT
;
143 static unsigned int ar933x_uart_get_mctrl(struct uart_port
*port
)
145 struct ar933x_uart_port
*up
=
146 container_of(port
, struct ar933x_uart_port
, port
);
147 int ret
= TIOCM_CTS
| TIOCM_DSR
| TIOCM_CAR
;
149 mctrl_gpio_get(up
->gpios
, &ret
);
154 static void ar933x_uart_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
156 struct ar933x_uart_port
*up
=
157 container_of(port
, struct ar933x_uart_port
, port
);
159 mctrl_gpio_set(up
->gpios
, mctrl
);
162 static void ar933x_uart_start_tx(struct uart_port
*port
)
164 struct ar933x_uart_port
*up
=
165 container_of(port
, struct ar933x_uart_port
, port
);
167 ar933x_uart_start_tx_interrupt(up
);
170 static void ar933x_uart_wait_tx_complete(struct ar933x_uart_port
*up
)
173 unsigned int timeout
= 60000;
175 /* Wait up to 60ms for the character(s) to be sent. */
177 status
= ar933x_uart_read(up
, AR933X_UART_CS_REG
);
181 } while (status
& AR933X_UART_CS_TX_BUSY
);
184 dev_err(up
->port
.dev
, "waiting for TX timed out\n");
187 static void ar933x_uart_rx_flush(struct ar933x_uart_port
*up
)
191 /* clear RX_VALID interrupt */
192 ar933x_uart_write(up
, AR933X_UART_INT_REG
, AR933X_UART_INT_RX_VALID
);
194 /* remove characters from the RX FIFO */
196 ar933x_uart_write(up
, AR933X_UART_DATA_REG
, AR933X_UART_DATA_RX_CSR
);
197 status
= ar933x_uart_read(up
, AR933X_UART_DATA_REG
);
198 } while (status
& AR933X_UART_DATA_RX_CSR
);
201 static void ar933x_uart_stop_tx(struct uart_port
*port
)
203 struct ar933x_uart_port
*up
=
204 container_of(port
, struct ar933x_uart_port
, port
);
206 ar933x_uart_stop_tx_interrupt(up
);
209 static void ar933x_uart_stop_rx(struct uart_port
*port
)
211 struct ar933x_uart_port
*up
=
212 container_of(port
, struct ar933x_uart_port
, port
);
214 ar933x_uart_stop_rx_interrupt(up
);
217 static void ar933x_uart_break_ctl(struct uart_port
*port
, int break_state
)
219 struct ar933x_uart_port
*up
=
220 container_of(port
, struct ar933x_uart_port
, port
);
223 uart_port_lock_irqsave(&up
->port
, &flags
);
224 if (break_state
== -1)
225 ar933x_uart_rmw_set(up
, AR933X_UART_CS_REG
,
226 AR933X_UART_CS_TX_BREAK
);
228 ar933x_uart_rmw_clear(up
, AR933X_UART_CS_REG
,
229 AR933X_UART_CS_TX_BREAK
);
230 uart_port_unlock_irqrestore(&up
->port
, flags
);
234 * baudrate = (clk / (scale + 1)) * (step * (1 / 2^17))
236 static unsigned long ar933x_uart_get_baud(unsigned int clk
,
243 div
= (2 << 16) * (scale
+ 1);
252 static void ar933x_uart_get_scale_step(unsigned int clk
,
264 for (tscale
= 0; tscale
< AR933X_UART_MAX_SCALE
; tscale
++) {
268 tstep
= baud
* (tscale
+ 1);
272 if (tstep
> AR933X_UART_MAX_STEP
)
275 diff
= abs(ar933x_uart_get_baud(clk
, tscale
, tstep
) - baud
);
276 if (diff
< min_diff
) {
284 static void ar933x_uart_set_termios(struct uart_port
*port
,
285 struct ktermios
*new,
286 const struct ktermios
*old
)
288 struct ar933x_uart_port
*up
=
289 container_of(port
, struct ar933x_uart_port
, port
);
292 unsigned int baud
, scale
, step
;
294 /* Only CS8 is supported */
295 new->c_cflag
&= ~CSIZE
;
298 /* Only one stop bit is supported */
299 new->c_cflag
&= ~CSTOPB
;
302 if (new->c_cflag
& PARENB
) {
303 if (!(new->c_cflag
& PARODD
))
304 cs
|= AR933X_UART_CS_PARITY_EVEN
;
306 cs
|= AR933X_UART_CS_PARITY_ODD
;
308 cs
|= AR933X_UART_CS_PARITY_NONE
;
311 /* Mark/space parity is not supported */
312 new->c_cflag
&= ~CMSPAR
;
314 baud
= uart_get_baud_rate(port
, new, old
, up
->min_baud
, up
->max_baud
);
315 ar933x_uart_get_scale_step(port
->uartclk
, baud
, &scale
, &step
);
318 * Ok, we're now changing the port state. Do it with
319 * interrupts disabled.
321 uart_port_lock_irqsave(&up
->port
, &flags
);
323 /* disable the UART */
324 ar933x_uart_rmw_clear(up
, AR933X_UART_CS_REG
,
325 AR933X_UART_CS_IF_MODE_M
<< AR933X_UART_CS_IF_MODE_S
);
327 /* Update the per-port timeout. */
328 uart_update_timeout(port
, new->c_cflag
, baud
);
330 up
->port
.ignore_status_mask
= 0;
332 /* ignore all characters if CREAD is not set */
333 if ((new->c_cflag
& CREAD
) == 0)
334 up
->port
.ignore_status_mask
|= AR933X_DUMMY_STATUS_RD
;
336 ar933x_uart_write(up
, AR933X_UART_CLOCK_REG
,
337 scale
<< AR933X_UART_CLOCK_SCALE_S
| step
);
339 /* setup configuration register */
340 ar933x_uart_rmw(up
, AR933X_UART_CS_REG
, AR933X_UART_CS_PARITY_M
, cs
);
342 /* enable host interrupt */
343 ar933x_uart_rmw_set(up
, AR933X_UART_CS_REG
,
344 AR933X_UART_CS_HOST_INT_EN
);
346 /* enable RX and TX ready overide */
347 ar933x_uart_rmw_set(up
, AR933X_UART_CS_REG
,
348 AR933X_UART_CS_TX_READY_ORIDE
| AR933X_UART_CS_RX_READY_ORIDE
);
350 /* reenable the UART */
351 ar933x_uart_rmw(up
, AR933X_UART_CS_REG
,
352 AR933X_UART_CS_IF_MODE_M
<< AR933X_UART_CS_IF_MODE_S
,
353 AR933X_UART_CS_IF_MODE_DCE
<< AR933X_UART_CS_IF_MODE_S
);
355 uart_port_unlock_irqrestore(&up
->port
, flags
);
357 if (tty_termios_baud_rate(new))
358 tty_termios_encode_baud_rate(new, baud
, baud
);
361 static void ar933x_uart_rx_chars(struct ar933x_uart_port
*up
)
363 struct tty_port
*port
= &up
->port
.state
->port
;
370 rdata
= ar933x_uart_read(up
, AR933X_UART_DATA_REG
);
371 if ((rdata
& AR933X_UART_DATA_RX_CSR
) == 0)
374 /* remove the character from the FIFO */
375 ar933x_uart_write(up
, AR933X_UART_DATA_REG
,
376 AR933X_UART_DATA_RX_CSR
);
378 up
->port
.icount
.rx
++;
379 ch
= rdata
& AR933X_UART_DATA_TX_RX_MASK
;
381 if (uart_prepare_sysrq_char(&up
->port
, ch
))
384 if ((up
->port
.ignore_status_mask
& AR933X_DUMMY_STATUS_RD
) == 0)
385 tty_insert_flip_char(port
, ch
, TTY_NORMAL
);
386 } while (max_count
-- > 0);
388 tty_flip_buffer_push(port
);
391 static void ar933x_uart_tx_chars(struct ar933x_uart_port
*up
)
393 struct tty_port
*tport
= &up
->port
.state
->port
;
394 struct serial_rs485
*rs485conf
= &up
->port
.rs485
;
396 bool half_duplex_send
= false;
398 if (uart_tx_stopped(&up
->port
))
401 if ((rs485conf
->flags
& SER_RS485_ENABLED
) &&
402 (up
->port
.x_char
|| !kfifo_is_empty(&tport
->xmit_fifo
))) {
403 ar933x_uart_stop_rx_interrupt(up
);
404 gpiod_set_value(up
->rts_gpiod
, !!(rs485conf
->flags
& SER_RS485_RTS_ON_SEND
));
405 half_duplex_send
= true;
408 count
= up
->port
.fifosize
;
413 rdata
= ar933x_uart_read(up
, AR933X_UART_DATA_REG
);
414 if ((rdata
& AR933X_UART_DATA_TX_CSR
) == 0)
417 if (up
->port
.x_char
) {
418 ar933x_uart_putc(up
, up
->port
.x_char
);
419 up
->port
.icount
.tx
++;
424 if (!uart_fifo_get(&up
->port
, &c
))
427 ar933x_uart_putc(up
, c
);
428 } while (--count
> 0);
430 if (kfifo_len(&tport
->xmit_fifo
) < WAKEUP_CHARS
)
431 uart_write_wakeup(&up
->port
);
433 if (!kfifo_is_empty(&tport
->xmit_fifo
)) {
434 ar933x_uart_start_tx_interrupt(up
);
435 } else if (half_duplex_send
) {
436 ar933x_uart_wait_tx_complete(up
);
437 ar933x_uart_rx_flush(up
);
438 ar933x_uart_start_rx_interrupt(up
);
439 gpiod_set_value(up
->rts_gpiod
, !!(rs485conf
->flags
& SER_RS485_RTS_AFTER_SEND
));
443 static irqreturn_t
ar933x_uart_interrupt(int irq
, void *dev_id
)
445 struct ar933x_uart_port
*up
= dev_id
;
448 status
= ar933x_uart_read(up
, AR933X_UART_CS_REG
);
449 if ((status
& AR933X_UART_CS_HOST_INT
) == 0)
452 uart_port_lock(&up
->port
);
454 status
= ar933x_uart_read(up
, AR933X_UART_INT_REG
);
455 status
&= ar933x_uart_read(up
, AR933X_UART_INT_EN_REG
);
457 if (status
& AR933X_UART_INT_RX_VALID
) {
458 ar933x_uart_write(up
, AR933X_UART_INT_REG
,
459 AR933X_UART_INT_RX_VALID
);
460 ar933x_uart_rx_chars(up
);
463 if (status
& AR933X_UART_INT_TX_EMPTY
) {
464 ar933x_uart_write(up
, AR933X_UART_INT_REG
,
465 AR933X_UART_INT_TX_EMPTY
);
466 ar933x_uart_stop_tx_interrupt(up
);
467 ar933x_uart_tx_chars(up
);
470 uart_unlock_and_check_sysrq(&up
->port
);
475 static int ar933x_uart_startup(struct uart_port
*port
)
477 struct ar933x_uart_port
*up
=
478 container_of(port
, struct ar933x_uart_port
, port
);
482 ret
= request_irq(up
->port
.irq
, ar933x_uart_interrupt
,
483 up
->port
.irqflags
, dev_name(up
->port
.dev
), up
);
487 uart_port_lock_irqsave(&up
->port
, &flags
);
489 /* Enable HOST interrupts */
490 ar933x_uart_rmw_set(up
, AR933X_UART_CS_REG
,
491 AR933X_UART_CS_HOST_INT_EN
);
493 /* enable RX and TX ready overide */
494 ar933x_uart_rmw_set(up
, AR933X_UART_CS_REG
,
495 AR933X_UART_CS_TX_READY_ORIDE
| AR933X_UART_CS_RX_READY_ORIDE
);
497 /* Enable RX interrupts */
498 ar933x_uart_start_rx_interrupt(up
);
500 uart_port_unlock_irqrestore(&up
->port
, flags
);
505 static void ar933x_uart_shutdown(struct uart_port
*port
)
507 struct ar933x_uart_port
*up
=
508 container_of(port
, struct ar933x_uart_port
, port
);
510 /* Disable all interrupts */
512 ar933x_uart_write(up
, AR933X_UART_INT_EN_REG
, up
->ier
);
514 /* Disable break condition */
515 ar933x_uart_rmw_clear(up
, AR933X_UART_CS_REG
,
516 AR933X_UART_CS_TX_BREAK
);
518 free_irq(up
->port
.irq
, up
);
521 static const char *ar933x_uart_type(struct uart_port
*port
)
523 return (port
->type
== PORT_AR933X
) ? "AR933X UART" : NULL
;
526 static void ar933x_uart_release_port(struct uart_port
*port
)
528 /* Nothing to release ... */
531 static int ar933x_uart_request_port(struct uart_port
*port
)
533 /* UARTs always present */
537 static void ar933x_uart_config_port(struct uart_port
*port
, int flags
)
539 if (flags
& UART_CONFIG_TYPE
)
540 port
->type
= PORT_AR933X
;
543 static int ar933x_uart_verify_port(struct uart_port
*port
,
544 struct serial_struct
*ser
)
546 struct ar933x_uart_port
*up
=
547 container_of(port
, struct ar933x_uart_port
, port
);
549 if (ser
->type
!= PORT_UNKNOWN
&&
550 ser
->type
!= PORT_AR933X
)
553 if (ser
->irq
< 0 || ser
->irq
>= NR_IRQS
)
556 if (ser
->baud_base
< up
->min_baud
||
557 ser
->baud_base
> up
->max_baud
)
563 static const struct uart_ops ar933x_uart_ops
= {
564 .tx_empty
= ar933x_uart_tx_empty
,
565 .set_mctrl
= ar933x_uart_set_mctrl
,
566 .get_mctrl
= ar933x_uart_get_mctrl
,
567 .stop_tx
= ar933x_uart_stop_tx
,
568 .start_tx
= ar933x_uart_start_tx
,
569 .stop_rx
= ar933x_uart_stop_rx
,
570 .break_ctl
= ar933x_uart_break_ctl
,
571 .startup
= ar933x_uart_startup
,
572 .shutdown
= ar933x_uart_shutdown
,
573 .set_termios
= ar933x_uart_set_termios
,
574 .type
= ar933x_uart_type
,
575 .release_port
= ar933x_uart_release_port
,
576 .request_port
= ar933x_uart_request_port
,
577 .config_port
= ar933x_uart_config_port
,
578 .verify_port
= ar933x_uart_verify_port
,
581 static int ar933x_config_rs485(struct uart_port
*port
, struct ktermios
*termios
,
582 struct serial_rs485
*rs485conf
)
584 struct ar933x_uart_port
*up
=
585 container_of(port
, struct ar933x_uart_port
, port
);
587 if (port
->rs485
.flags
& SER_RS485_ENABLED
)
588 gpiod_set_value(up
->rts_gpiod
,
589 !!(rs485conf
->flags
& SER_RS485_RTS_AFTER_SEND
));
594 #ifdef CONFIG_SERIAL_AR933X_CONSOLE
595 static struct ar933x_uart_port
*
596 ar933x_console_ports
[CONFIG_SERIAL_AR933X_NR_UARTS
];
598 static void ar933x_uart_wait_xmitr(struct ar933x_uart_port
*up
)
601 unsigned int timeout
= 60000;
603 /* Wait up to 60ms for the character(s) to be sent. */
605 status
= ar933x_uart_read(up
, AR933X_UART_DATA_REG
);
609 } while ((status
& AR933X_UART_DATA_TX_CSR
) == 0);
612 static void ar933x_uart_console_putchar(struct uart_port
*port
, unsigned char ch
)
614 struct ar933x_uart_port
*up
=
615 container_of(port
, struct ar933x_uart_port
, port
);
617 ar933x_uart_wait_xmitr(up
);
618 ar933x_uart_putc(up
, ch
);
621 static void ar933x_uart_console_write(struct console
*co
, const char *s
,
624 struct ar933x_uart_port
*up
= ar933x_console_ports
[co
->index
];
629 if (oops_in_progress
)
630 locked
= uart_port_trylock_irqsave(&up
->port
, &flags
);
632 uart_port_lock_irqsave(&up
->port
, &flags
);
635 * First save the IER then disable the interrupts
637 int_en
= ar933x_uart_read(up
, AR933X_UART_INT_EN_REG
);
638 ar933x_uart_write(up
, AR933X_UART_INT_EN_REG
, 0);
640 uart_console_write(&up
->port
, s
, count
, ar933x_uart_console_putchar
);
643 * Finally, wait for transmitter to become empty
644 * and restore the IER
646 ar933x_uart_wait_xmitr(up
);
647 ar933x_uart_write(up
, AR933X_UART_INT_EN_REG
, int_en
);
649 ar933x_uart_write(up
, AR933X_UART_INT_REG
, AR933X_UART_INT_ALLINTS
);
652 uart_port_unlock_irqrestore(&up
->port
, flags
);
655 static int ar933x_uart_console_setup(struct console
*co
, char *options
)
657 struct ar933x_uart_port
*up
;
663 if (co
->index
< 0 || co
->index
>= CONFIG_SERIAL_AR933X_NR_UARTS
)
666 up
= ar933x_console_ports
[co
->index
];
671 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
673 return uart_set_options(&up
->port
, co
, baud
, parity
, bits
, flow
);
676 static struct console ar933x_uart_console
= {
678 .write
= ar933x_uart_console_write
,
679 .device
= uart_console_device
,
680 .setup
= ar933x_uart_console_setup
,
681 .flags
= CON_PRINTBUFFER
,
683 .data
= &ar933x_uart_driver
,
685 #endif /* CONFIG_SERIAL_AR933X_CONSOLE */
687 static struct uart_driver ar933x_uart_driver
= {
688 .owner
= THIS_MODULE
,
689 .driver_name
= DRIVER_NAME
,
690 .dev_name
= "ttyATH",
691 .nr
= CONFIG_SERIAL_AR933X_NR_UARTS
,
692 .cons
= NULL
, /* filled in runtime */
695 static const struct serial_rs485 ar933x_rs485_supported
= {
696 .flags
= SER_RS485_ENABLED
| SER_RS485_RTS_ON_SEND
| SER_RS485_RTS_AFTER_SEND
,
699 static int ar933x_uart_probe(struct platform_device
*pdev
)
701 struct ar933x_uart_port
*up
;
702 struct uart_port
*port
;
703 struct resource
*mem_res
;
704 struct device_node
*np
;
710 np
= pdev
->dev
.of_node
;
711 if (IS_ENABLED(CONFIG_OF
) && np
) {
712 id
= of_alias_get_id(np
, "serial");
714 dev_err(&pdev
->dev
, "unable to get alias id, err=%d\n",
724 if (id
>= CONFIG_SERIAL_AR933X_NR_UARTS
)
727 irq
= platform_get_irq(pdev
, 0);
731 up
= devm_kzalloc(&pdev
->dev
, sizeof(struct ar933x_uart_port
),
736 up
->clk
= devm_clk_get(&pdev
->dev
, "uart");
737 if (IS_ERR(up
->clk
)) {
738 dev_err(&pdev
->dev
, "unable to get UART clock\n");
739 return PTR_ERR(up
->clk
);
744 port
->membase
= devm_platform_get_and_ioremap_resource(pdev
, 0, &mem_res
);
745 if (IS_ERR(port
->membase
))
746 return PTR_ERR(port
->membase
);
748 ret
= clk_prepare_enable(up
->clk
);
752 port
->uartclk
= clk_get_rate(up
->clk
);
753 if (!port
->uartclk
) {
755 goto err_disable_clk
;
758 port
->mapbase
= mem_res
->start
;
761 port
->dev
= &pdev
->dev
;
762 port
->type
= PORT_AR933X
;
763 port
->iotype
= UPIO_MEM32
;
766 port
->fifosize
= AR933X_UART_FIFO_SIZE
;
767 port
->ops
= &ar933x_uart_ops
;
768 port
->rs485_config
= ar933x_config_rs485
;
769 port
->rs485_supported
= ar933x_rs485_supported
;
771 baud
= ar933x_uart_get_baud(port
->uartclk
, AR933X_UART_MAX_SCALE
, 1);
772 up
->min_baud
= max_t(unsigned int, baud
, AR933X_UART_MIN_BAUD
);
774 baud
= ar933x_uart_get_baud(port
->uartclk
, 0, AR933X_UART_MAX_STEP
);
775 up
->max_baud
= min_t(unsigned int, baud
, AR933X_UART_MAX_BAUD
);
777 ret
= uart_get_rs485_mode(port
);
779 goto err_disable_clk
;
781 up
->gpios
= mctrl_gpio_init(port
, 0);
782 if (IS_ERR(up
->gpios
) && PTR_ERR(up
->gpios
) != -ENOSYS
) {
783 ret
= PTR_ERR(up
->gpios
);
784 goto err_disable_clk
;
787 up
->rts_gpiod
= mctrl_gpio_to_gpiod(up
->gpios
, UART_GPIO_RTS
);
789 if (!up
->rts_gpiod
) {
790 port
->rs485_supported
.flags
&= ~SER_RS485_ENABLED
;
791 if (port
->rs485
.flags
& SER_RS485_ENABLED
) {
792 dev_err(&pdev
->dev
, "lacking rts-gpio, disabling RS485\n");
793 port
->rs485
.flags
&= ~SER_RS485_ENABLED
;
797 #ifdef CONFIG_SERIAL_AR933X_CONSOLE
798 ar933x_console_ports
[up
->port
.line
] = up
;
801 ret
= uart_add_one_port(&ar933x_uart_driver
, &up
->port
);
803 goto err_disable_clk
;
805 platform_set_drvdata(pdev
, up
);
809 clk_disable_unprepare(up
->clk
);
813 static void ar933x_uart_remove(struct platform_device
*pdev
)
815 struct ar933x_uart_port
*up
;
817 up
= platform_get_drvdata(pdev
);
820 uart_remove_one_port(&ar933x_uart_driver
, &up
->port
);
821 clk_disable_unprepare(up
->clk
);
826 static const struct of_device_id ar933x_uart_of_ids
[] = {
827 { .compatible
= "qca,ar9330-uart" },
830 MODULE_DEVICE_TABLE(of
, ar933x_uart_of_ids
);
833 static struct platform_driver ar933x_uart_platform_driver
= {
834 .probe
= ar933x_uart_probe
,
835 .remove
= ar933x_uart_remove
,
838 .of_match_table
= of_match_ptr(ar933x_uart_of_ids
),
842 static int __init
ar933x_uart_init(void)
846 #ifdef CONFIG_SERIAL_AR933X_CONSOLE
847 ar933x_uart_driver
.cons
= &ar933x_uart_console
;
850 ret
= uart_register_driver(&ar933x_uart_driver
);
854 ret
= platform_driver_register(&ar933x_uart_platform_driver
);
856 goto err_unregister_uart_driver
;
860 err_unregister_uart_driver
:
861 uart_unregister_driver(&ar933x_uart_driver
);
866 static void __exit
ar933x_uart_exit(void)
868 platform_driver_unregister(&ar933x_uart_platform_driver
);
869 uart_unregister_driver(&ar933x_uart_driver
);
872 module_init(ar933x_uart_init
);
873 module_exit(ar933x_uart_exit
);
875 MODULE_DESCRIPTION("Atheros AR933X UART driver");
876 MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>");
877 MODULE_LICENSE("GPL v2");
878 MODULE_ALIAS("platform:" DRIVER_NAME
);