blob: 246f4aab74075aaaa2c163bf3a93111204a18bb6 [file] [log] [blame]
Gabor Juhosd57f3412011-06-20 19:26:11 +02001/*
2 * Atheros AR933X SoC built-in UART driver
3 *
4 * Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
5 *
6 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published
10 * by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
14#include <linux/ioport.h>
15#include <linux/init.h>
16#include <linux/console.h>
17#include <linux/sysrq.h>
18#include <linux/delay.h>
19#include <linux/platform_device.h>
Gabor Juhosdd910d92013-08-29 08:44:01 +020020#include <linux/of.h>
21#include <linux/of_platform.h>
Gabor Juhosd57f3412011-06-20 19:26:11 +020022#include <linux/tty.h>
23#include <linux/tty_flip.h>
24#include <linux/serial_core.h>
25#include <linux/serial.h>
26#include <linux/slab.h>
27#include <linux/io.h>
28#include <linux/irq.h>
Gabor Juhos15ef17f2013-08-28 10:09:28 +020029#include <linux/clk.h>
Gabor Juhosd57f3412011-06-20 19:26:11 +020030
Gabor Juhos2dff8ad2012-11-14 10:38:13 +010031#include <asm/div64.h>
32
Gabor Juhosd57f3412011-06-20 19:26:11 +020033#include <asm/mach-ath79/ar933x_uart.h>
Gabor Juhosd57f3412011-06-20 19:26:11 +020034
35#define DRIVER_NAME "ar933x-uart"
36
Gabor Juhos2dff8ad2012-11-14 10:38:13 +010037#define AR933X_UART_MAX_SCALE 0xff
38#define AR933X_UART_MAX_STEP 0xffff
39
40#define AR933X_UART_MIN_BAUD 300
41#define AR933X_UART_MAX_BAUD 3000000
42
Gabor Juhosd57f3412011-06-20 19:26:11 +020043#define AR933X_DUMMY_STATUS_RD 0x01
44
45static struct uart_driver ar933x_uart_driver;
46
47struct ar933x_uart_port {
48 struct uart_port port;
49 unsigned int ier; /* shadow Interrupt Enable Register */
Gabor Juhos2dff8ad2012-11-14 10:38:13 +010050 unsigned int min_baud;
51 unsigned int max_baud;
Gabor Juhos15ef17f2013-08-28 10:09:28 +020052 struct clk *clk;
Gabor Juhosd57f3412011-06-20 19:26:11 +020053};
54
55static inline unsigned int ar933x_uart_read(struct ar933x_uart_port *up,
56 int offset)
57{
58 return readl(up->port.membase + offset);
59}
60
61static inline void ar933x_uart_write(struct ar933x_uart_port *up,
62 int offset, unsigned int value)
63{
64 writel(value, up->port.membase + offset);
65}
66
67static inline void ar933x_uart_rmw(struct ar933x_uart_port *up,
68 unsigned int offset,
69 unsigned int mask,
70 unsigned int val)
71{
72 unsigned int t;
73
74 t = ar933x_uart_read(up, offset);
75 t &= ~mask;
76 t |= val;
77 ar933x_uart_write(up, offset, t);
78}
79
80static inline void ar933x_uart_rmw_set(struct ar933x_uart_port *up,
81 unsigned int offset,
82 unsigned int val)
83{
84 ar933x_uart_rmw(up, offset, 0, val);
85}
86
87static inline void ar933x_uart_rmw_clear(struct ar933x_uart_port *up,
88 unsigned int offset,
89 unsigned int val)
90{
91 ar933x_uart_rmw(up, offset, val, 0);
92}
93
94static inline void ar933x_uart_start_tx_interrupt(struct ar933x_uart_port *up)
95{
96 up->ier |= AR933X_UART_INT_TX_EMPTY;
97 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, up->ier);
98}
99
100static inline void ar933x_uart_stop_tx_interrupt(struct ar933x_uart_port *up)
101{
102 up->ier &= ~AR933X_UART_INT_TX_EMPTY;
103 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, up->ier);
104}
105
106static inline void ar933x_uart_putc(struct ar933x_uart_port *up, int ch)
107{
108 unsigned int rdata;
109
110 rdata = ch & AR933X_UART_DATA_TX_RX_MASK;
111 rdata |= AR933X_UART_DATA_TX_CSR;
112 ar933x_uart_write(up, AR933X_UART_DATA_REG, rdata);
113}
114
115static unsigned int ar933x_uart_tx_empty(struct uart_port *port)
116{
Fabian Frederickf9c1b282014-10-05 19:19:49 +0200117 struct ar933x_uart_port *up =
118 container_of(port, struct ar933x_uart_port, port);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200119 unsigned long flags;
120 unsigned int rdata;
121
122 spin_lock_irqsave(&up->port.lock, flags);
123 rdata = ar933x_uart_read(up, AR933X_UART_DATA_REG);
124 spin_unlock_irqrestore(&up->port.lock, flags);
125
126 return (rdata & AR933X_UART_DATA_TX_CSR) ? 0 : TIOCSER_TEMT;
127}
128
129static unsigned int ar933x_uart_get_mctrl(struct uart_port *port)
130{
131 return TIOCM_CAR;
132}
133
134static void ar933x_uart_set_mctrl(struct uart_port *port, unsigned int mctrl)
135{
136}
137
138static void ar933x_uart_start_tx(struct uart_port *port)
139{
Fabian Frederickf9c1b282014-10-05 19:19:49 +0200140 struct ar933x_uart_port *up =
141 container_of(port, struct ar933x_uart_port, port);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200142
143 ar933x_uart_start_tx_interrupt(up);
144}
145
146static void ar933x_uart_stop_tx(struct uart_port *port)
147{
Fabian Frederickf9c1b282014-10-05 19:19:49 +0200148 struct ar933x_uart_port *up =
149 container_of(port, struct ar933x_uart_port, port);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200150
151 ar933x_uart_stop_tx_interrupt(up);
152}
153
154static void ar933x_uart_stop_rx(struct uart_port *port)
155{
Fabian Frederickf9c1b282014-10-05 19:19:49 +0200156 struct ar933x_uart_port *up =
157 container_of(port, struct ar933x_uart_port, port);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200158
159 up->ier &= ~AR933X_UART_INT_RX_VALID;
160 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, up->ier);
161}
162
163static void ar933x_uart_break_ctl(struct uart_port *port, int break_state)
164{
Fabian Frederickf9c1b282014-10-05 19:19:49 +0200165 struct ar933x_uart_port *up =
166 container_of(port, struct ar933x_uart_port, port);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200167 unsigned long flags;
168
169 spin_lock_irqsave(&up->port.lock, flags);
170 if (break_state == -1)
171 ar933x_uart_rmw_set(up, AR933X_UART_CS_REG,
172 AR933X_UART_CS_TX_BREAK);
173 else
174 ar933x_uart_rmw_clear(up, AR933X_UART_CS_REG,
175 AR933X_UART_CS_TX_BREAK);
176 spin_unlock_irqrestore(&up->port.lock, flags);
177}
178
Gabor Juhos2dff8ad2012-11-14 10:38:13 +0100179/*
180 * baudrate = (clk / (scale + 1)) * (step * (1 / 2^17))
181 */
182static unsigned long ar933x_uart_get_baud(unsigned int clk,
183 unsigned int scale,
184 unsigned int step)
185{
186 u64 t;
187 u32 div;
188
189 div = (2 << 16) * (scale + 1);
190 t = clk;
191 t *= step;
192 t += (div / 2);
193 do_div(t, div);
194
195 return t;
196}
197
198static void ar933x_uart_get_scale_step(unsigned int clk,
199 unsigned int baud,
200 unsigned int *scale,
201 unsigned int *step)
202{
203 unsigned int tscale;
204 long min_diff;
205
206 *scale = 0;
207 *step = 0;
208
209 min_diff = baud;
210 for (tscale = 0; tscale < AR933X_UART_MAX_SCALE; tscale++) {
211 u64 tstep;
212 int diff;
213
214 tstep = baud * (tscale + 1);
215 tstep *= (2 << 16);
216 do_div(tstep, clk);
217
218 if (tstep > AR933X_UART_MAX_STEP)
219 break;
220
221 diff = abs(ar933x_uart_get_baud(clk, tscale, tstep) - baud);
222 if (diff < min_diff) {
223 min_diff = diff;
224 *scale = tscale;
225 *step = tstep;
226 }
227 }
228}
229
Gabor Juhosd57f3412011-06-20 19:26:11 +0200230static void ar933x_uart_set_termios(struct uart_port *port,
231 struct ktermios *new,
232 struct ktermios *old)
233{
Fabian Frederickf9c1b282014-10-05 19:19:49 +0200234 struct ar933x_uart_port *up =
235 container_of(port, struct ar933x_uart_port, port);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200236 unsigned int cs;
237 unsigned long flags;
Gabor Juhos2dff8ad2012-11-14 10:38:13 +0100238 unsigned int baud, scale, step;
Gabor Juhosd57f3412011-06-20 19:26:11 +0200239
240 /* Only CS8 is supported */
241 new->c_cflag &= ~CSIZE;
242 new->c_cflag |= CS8;
243
244 /* Only one stop bit is supported */
245 new->c_cflag &= ~CSTOPB;
246
247 cs = 0;
248 if (new->c_cflag & PARENB) {
249 if (!(new->c_cflag & PARODD))
250 cs |= AR933X_UART_CS_PARITY_EVEN;
251 else
252 cs |= AR933X_UART_CS_PARITY_ODD;
253 } else {
254 cs |= AR933X_UART_CS_PARITY_NONE;
255 }
256
257 /* Mark/space parity is not supported */
258 new->c_cflag &= ~CMSPAR;
259
Gabor Juhos2dff8ad2012-11-14 10:38:13 +0100260 baud = uart_get_baud_rate(port, new, old, up->min_baud, up->max_baud);
261 ar933x_uart_get_scale_step(port->uartclk, baud, &scale, &step);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200262
263 /*
264 * Ok, we're now changing the port state. Do it with
265 * interrupts disabled.
266 */
267 spin_lock_irqsave(&up->port.lock, flags);
268
Gabor Juhos2dff8ad2012-11-14 10:38:13 +0100269 /* disable the UART */
270 ar933x_uart_rmw_clear(up, AR933X_UART_CS_REG,
271 AR933X_UART_CS_IF_MODE_M << AR933X_UART_CS_IF_MODE_S);
272
Gabor Juhosd57f3412011-06-20 19:26:11 +0200273 /* Update the per-port timeout. */
274 uart_update_timeout(port, new->c_cflag, baud);
275
276 up->port.ignore_status_mask = 0;
277
278 /* ignore all characters if CREAD is not set */
279 if ((new->c_cflag & CREAD) == 0)
280 up->port.ignore_status_mask |= AR933X_DUMMY_STATUS_RD;
281
282 ar933x_uart_write(up, AR933X_UART_CLOCK_REG,
Gabor Juhos2dff8ad2012-11-14 10:38:13 +0100283 scale << AR933X_UART_CLOCK_SCALE_S | step);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200284
285 /* setup configuration register */
286 ar933x_uart_rmw(up, AR933X_UART_CS_REG, AR933X_UART_CS_PARITY_M, cs);
287
288 /* enable host interrupt */
289 ar933x_uart_rmw_set(up, AR933X_UART_CS_REG,
290 AR933X_UART_CS_HOST_INT_EN);
291
Daniel Golleab52eba2020-02-07 11:53:35 +0200292 /* enable RX and TX ready overide */
293 ar933x_uart_rmw_set(up, AR933X_UART_CS_REG,
294 AR933X_UART_CS_TX_READY_ORIDE | AR933X_UART_CS_RX_READY_ORIDE);
295
Gabor Juhos2dff8ad2012-11-14 10:38:13 +0100296 /* reenable the UART */
297 ar933x_uart_rmw(up, AR933X_UART_CS_REG,
298 AR933X_UART_CS_IF_MODE_M << AR933X_UART_CS_IF_MODE_S,
299 AR933X_UART_CS_IF_MODE_DCE << AR933X_UART_CS_IF_MODE_S);
300
Gabor Juhosd57f3412011-06-20 19:26:11 +0200301 spin_unlock_irqrestore(&up->port.lock, flags);
302
303 if (tty_termios_baud_rate(new))
304 tty_termios_encode_baud_rate(new, baud, baud);
305}
306
307static void ar933x_uart_rx_chars(struct ar933x_uart_port *up)
308{
Jiri Slaby92a19f92013-01-03 15:53:03 +0100309 struct tty_port *port = &up->port.state->port;
Gabor Juhosd57f3412011-06-20 19:26:11 +0200310 int max_count = 256;
311
Gabor Juhosd57f3412011-06-20 19:26:11 +0200312 do {
313 unsigned int rdata;
314 unsigned char ch;
315
316 rdata = ar933x_uart_read(up, AR933X_UART_DATA_REG);
317 if ((rdata & AR933X_UART_DATA_RX_CSR) == 0)
318 break;
319
320 /* remove the character from the FIFO */
321 ar933x_uart_write(up, AR933X_UART_DATA_REG,
322 AR933X_UART_DATA_RX_CSR);
323
Gabor Juhosd57f3412011-06-20 19:26:11 +0200324 up->port.icount.rx++;
325 ch = rdata & AR933X_UART_DATA_TX_RX_MASK;
326
327 if (uart_handle_sysrq_char(&up->port, ch))
328 continue;
329
330 if ((up->port.ignore_status_mask & AR933X_DUMMY_STATUS_RD) == 0)
Jiri Slaby92a19f92013-01-03 15:53:03 +0100331 tty_insert_flip_char(port, ch, TTY_NORMAL);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200332 } while (max_count-- > 0);
333
Viresh Kumarb16c8e32013-08-19 20:14:08 +0530334 spin_unlock(&up->port.lock);
Jiri Slaby2e124b42013-01-03 15:53:06 +0100335 tty_flip_buffer_push(port);
Viresh Kumarb16c8e32013-08-19 20:14:08 +0530336 spin_lock(&up->port.lock);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200337}
338
339static void ar933x_uart_tx_chars(struct ar933x_uart_port *up)
340{
341 struct circ_buf *xmit = &up->port.state->xmit;
342 int count;
343
344 if (uart_tx_stopped(&up->port))
345 return;
346
347 count = up->port.fifosize;
348 do {
349 unsigned int rdata;
350
351 rdata = ar933x_uart_read(up, AR933X_UART_DATA_REG);
352 if ((rdata & AR933X_UART_DATA_TX_CSR) == 0)
353 break;
354
355 if (up->port.x_char) {
356 ar933x_uart_putc(up, up->port.x_char);
357 up->port.icount.tx++;
358 up->port.x_char = 0;
359 continue;
360 }
361
362 if (uart_circ_empty(xmit))
363 break;
364
365 ar933x_uart_putc(up, xmit->buf[xmit->tail]);
366
367 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
368 up->port.icount.tx++;
369 } while (--count > 0);
370
371 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
372 uart_write_wakeup(&up->port);
373
374 if (!uart_circ_empty(xmit))
375 ar933x_uart_start_tx_interrupt(up);
376}
377
378static irqreturn_t ar933x_uart_interrupt(int irq, void *dev_id)
379{
380 struct ar933x_uart_port *up = dev_id;
381 unsigned int status;
382
383 status = ar933x_uart_read(up, AR933X_UART_CS_REG);
384 if ((status & AR933X_UART_CS_HOST_INT) == 0)
385 return IRQ_NONE;
386
387 spin_lock(&up->port.lock);
388
389 status = ar933x_uart_read(up, AR933X_UART_INT_REG);
390 status &= ar933x_uart_read(up, AR933X_UART_INT_EN_REG);
391
392 if (status & AR933X_UART_INT_RX_VALID) {
393 ar933x_uart_write(up, AR933X_UART_INT_REG,
394 AR933X_UART_INT_RX_VALID);
395 ar933x_uart_rx_chars(up);
396 }
397
398 if (status & AR933X_UART_INT_TX_EMPTY) {
399 ar933x_uart_write(up, AR933X_UART_INT_REG,
400 AR933X_UART_INT_TX_EMPTY);
401 ar933x_uart_stop_tx_interrupt(up);
402 ar933x_uart_tx_chars(up);
403 }
404
405 spin_unlock(&up->port.lock);
406
407 return IRQ_HANDLED;
408}
409
410static int ar933x_uart_startup(struct uart_port *port)
411{
Fabian Frederickf9c1b282014-10-05 19:19:49 +0200412 struct ar933x_uart_port *up =
413 container_of(port, struct ar933x_uart_port, port);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200414 unsigned long flags;
415 int ret;
416
417 ret = request_irq(up->port.irq, ar933x_uart_interrupt,
418 up->port.irqflags, dev_name(up->port.dev), up);
419 if (ret)
420 return ret;
421
422 spin_lock_irqsave(&up->port.lock, flags);
423
424 /* Enable HOST interrupts */
425 ar933x_uart_rmw_set(up, AR933X_UART_CS_REG,
426 AR933X_UART_CS_HOST_INT_EN);
427
Daniel Golleab52eba2020-02-07 11:53:35 +0200428 /* enable RX and TX ready overide */
429 ar933x_uart_rmw_set(up, AR933X_UART_CS_REG,
430 AR933X_UART_CS_TX_READY_ORIDE | AR933X_UART_CS_RX_READY_ORIDE);
431
Gabor Juhosd57f3412011-06-20 19:26:11 +0200432 /* Enable RX interrupts */
433 up->ier = AR933X_UART_INT_RX_VALID;
434 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, up->ier);
435
436 spin_unlock_irqrestore(&up->port.lock, flags);
437
438 return 0;
439}
440
441static void ar933x_uart_shutdown(struct uart_port *port)
442{
Fabian Frederickf9c1b282014-10-05 19:19:49 +0200443 struct ar933x_uart_port *up =
444 container_of(port, struct ar933x_uart_port, port);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200445
446 /* Disable all interrupts */
447 up->ier = 0;
448 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, up->ier);
449
450 /* Disable break condition */
451 ar933x_uart_rmw_clear(up, AR933X_UART_CS_REG,
452 AR933X_UART_CS_TX_BREAK);
453
454 free_irq(up->port.irq, up);
455}
456
457static const char *ar933x_uart_type(struct uart_port *port)
458{
459 return (port->type == PORT_AR933X) ? "AR933X UART" : NULL;
460}
461
462static void ar933x_uart_release_port(struct uart_port *port)
463{
464 /* Nothing to release ... */
465}
466
467static int ar933x_uart_request_port(struct uart_port *port)
468{
469 /* UARTs always present */
470 return 0;
471}
472
473static void ar933x_uart_config_port(struct uart_port *port, int flags)
474{
475 if (flags & UART_CONFIG_TYPE)
476 port->type = PORT_AR933X;
477}
478
479static int ar933x_uart_verify_port(struct uart_port *port,
480 struct serial_struct *ser)
481{
Fabian Frederickf9c1b282014-10-05 19:19:49 +0200482 struct ar933x_uart_port *up =
483 container_of(port, struct ar933x_uart_port, port);
Gabor Juhos2dff8ad2012-11-14 10:38:13 +0100484
Gabor Juhosd57f3412011-06-20 19:26:11 +0200485 if (ser->type != PORT_UNKNOWN &&
486 ser->type != PORT_AR933X)
487 return -EINVAL;
488
489 if (ser->irq < 0 || ser->irq >= NR_IRQS)
490 return -EINVAL;
491
Gabor Juhos2dff8ad2012-11-14 10:38:13 +0100492 if (ser->baud_base < up->min_baud ||
493 ser->baud_base > up->max_baud)
Gabor Juhosd57f3412011-06-20 19:26:11 +0200494 return -EINVAL;
495
496 return 0;
497}
498
499static struct uart_ops ar933x_uart_ops = {
500 .tx_empty = ar933x_uart_tx_empty,
501 .set_mctrl = ar933x_uart_set_mctrl,
502 .get_mctrl = ar933x_uart_get_mctrl,
503 .stop_tx = ar933x_uart_stop_tx,
504 .start_tx = ar933x_uart_start_tx,
505 .stop_rx = ar933x_uart_stop_rx,
Gabor Juhosd57f3412011-06-20 19:26:11 +0200506 .break_ctl = ar933x_uart_break_ctl,
507 .startup = ar933x_uart_startup,
508 .shutdown = ar933x_uart_shutdown,
509 .set_termios = ar933x_uart_set_termios,
510 .type = ar933x_uart_type,
511 .release_port = ar933x_uart_release_port,
512 .request_port = ar933x_uart_request_port,
513 .config_port = ar933x_uart_config_port,
514 .verify_port = ar933x_uart_verify_port,
515};
516
Petr Štetiar21cc1fc2019-03-06 17:54:03 +0100517#ifdef CONFIG_SERIAL_AR933X_CONSOLE
Gabor Juhosd57f3412011-06-20 19:26:11 +0200518static struct ar933x_uart_port *
519ar933x_console_ports[CONFIG_SERIAL_AR933X_NR_UARTS];
520
521static void ar933x_uart_wait_xmitr(struct ar933x_uart_port *up)
522{
523 unsigned int status;
524 unsigned int timeout = 60000;
525
526 /* Wait up to 60ms for the character(s) to be sent. */
527 do {
528 status = ar933x_uart_read(up, AR933X_UART_DATA_REG);
529 if (--timeout == 0)
530 break;
531 udelay(1);
532 } while ((status & AR933X_UART_DATA_TX_CSR) == 0);
533}
534
535static void ar933x_uart_console_putchar(struct uart_port *port, int ch)
536{
Fabian Frederickf9c1b282014-10-05 19:19:49 +0200537 struct ar933x_uart_port *up =
538 container_of(port, struct ar933x_uart_port, port);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200539
540 ar933x_uart_wait_xmitr(up);
541 ar933x_uart_putc(up, ch);
542}
543
544static void ar933x_uart_console_write(struct console *co, const char *s,
545 unsigned int count)
546{
547 struct ar933x_uart_port *up = ar933x_console_ports[co->index];
548 unsigned long flags;
549 unsigned int int_en;
550 int locked = 1;
551
552 local_irq_save(flags);
553
554 if (up->port.sysrq)
555 locked = 0;
556 else if (oops_in_progress)
557 locked = spin_trylock(&up->port.lock);
558 else
559 spin_lock(&up->port.lock);
560
561 /*
562 * First save the IER then disable the interrupts
563 */
564 int_en = ar933x_uart_read(up, AR933X_UART_INT_EN_REG);
565 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, 0);
566
567 uart_console_write(&up->port, s, count, ar933x_uart_console_putchar);
568
569 /*
570 * Finally, wait for transmitter to become empty
571 * and restore the IER
572 */
573 ar933x_uart_wait_xmitr(up);
574 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, int_en);
575
576 ar933x_uart_write(up, AR933X_UART_INT_REG, AR933X_UART_INT_ALLINTS);
577
578 if (locked)
579 spin_unlock(&up->port.lock);
580
581 local_irq_restore(flags);
582}
583
584static int ar933x_uart_console_setup(struct console *co, char *options)
585{
586 struct ar933x_uart_port *up;
587 int baud = 115200;
588 int bits = 8;
589 int parity = 'n';
590 int flow = 'n';
591
592 if (co->index < 0 || co->index >= CONFIG_SERIAL_AR933X_NR_UARTS)
593 return -EINVAL;
594
595 up = ar933x_console_ports[co->index];
596 if (!up)
597 return -ENODEV;
598
599 if (options)
600 uart_parse_options(options, &baud, &parity, &bits, &flow);
601
602 return uart_set_options(&up->port, co, baud, parity, bits, flow);
603}
604
605static struct console ar933x_uart_console = {
606 .name = "ttyATH",
607 .write = ar933x_uart_console_write,
608 .device = uart_console_device,
609 .setup = ar933x_uart_console_setup,
610 .flags = CON_PRINTBUFFER,
611 .index = -1,
612 .data = &ar933x_uart_driver,
613};
Petr Štetiar21cc1fc2019-03-06 17:54:03 +0100614#endif /* CONFIG_SERIAL_AR933X_CONSOLE */
Gabor Juhosd57f3412011-06-20 19:26:11 +0200615
Gabor Juhosd57f3412011-06-20 19:26:11 +0200616static struct uart_driver ar933x_uart_driver = {
617 .owner = THIS_MODULE,
618 .driver_name = DRIVER_NAME,
619 .dev_name = "ttyATH",
620 .nr = CONFIG_SERIAL_AR933X_NR_UARTS,
Gabor Juhos12415532013-08-28 17:08:39 +0200621 .cons = NULL, /* filled in runtime */
Gabor Juhosd57f3412011-06-20 19:26:11 +0200622};
623
Bill Pemberton9671f092012-11-19 13:21:50 -0500624static int ar933x_uart_probe(struct platform_device *pdev)
Gabor Juhosd57f3412011-06-20 19:26:11 +0200625{
Gabor Juhosd57f3412011-06-20 19:26:11 +0200626 struct ar933x_uart_port *up;
627 struct uart_port *port;
628 struct resource *mem_res;
629 struct resource *irq_res;
Gabor Juhosdd910d92013-08-29 08:44:01 +0200630 struct device_node *np;
Gabor Juhos2dff8ad2012-11-14 10:38:13 +0100631 unsigned int baud;
Gabor Juhosd57f3412011-06-20 19:26:11 +0200632 int id;
633 int ret;
634
Gabor Juhosdd910d92013-08-29 08:44:01 +0200635 np = pdev->dev.of_node;
Masahiro Yamada97f26452016-08-03 13:45:50 -0700636 if (IS_ENABLED(CONFIG_OF) && np) {
Gabor Juhosdd910d92013-08-29 08:44:01 +0200637 id = of_alias_get_id(np, "serial");
638 if (id < 0) {
639 dev_err(&pdev->dev, "unable to get alias id, err=%d\n",
640 id);
641 return id;
642 }
643 } else {
644 id = pdev->id;
645 if (id == -1)
646 id = 0;
647 }
Gabor Juhosd57f3412011-06-20 19:26:11 +0200648
Axel Linbb8478d2015-02-23 11:34:30 +0800649 if (id >= CONFIG_SERIAL_AR933X_NR_UARTS)
Gabor Juhosd57f3412011-06-20 19:26:11 +0200650 return -EINVAL;
651
Gabor Juhosd57f3412011-06-20 19:26:11 +0200652 irq_res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
653 if (!irq_res) {
654 dev_err(&pdev->dev, "no IRQ resource\n");
655 return -EINVAL;
656 }
657
Gabor Juhosa324e4d2013-08-10 09:32:15 +0200658 up = devm_kzalloc(&pdev->dev, sizeof(struct ar933x_uart_port),
659 GFP_KERNEL);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200660 if (!up)
661 return -ENOMEM;
662
Gabor Juhos15ef17f2013-08-28 10:09:28 +0200663 up->clk = devm_clk_get(&pdev->dev, "uart");
664 if (IS_ERR(up->clk)) {
665 dev_err(&pdev->dev, "unable to get UART clock\n");
666 return PTR_ERR(up->clk);
667 }
668
Gabor Juhosd57f3412011-06-20 19:26:11 +0200669 port = &up->port;
Gabor Juhosa324e4d2013-08-10 09:32:15 +0200670
Julia Lawall071eb0f2013-08-14 11:11:22 +0200671 mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Gabor Juhosa324e4d2013-08-10 09:32:15 +0200672 port->membase = devm_ioremap_resource(&pdev->dev, mem_res);
673 if (IS_ERR(port->membase))
674 return PTR_ERR(port->membase);
675
Gabor Juhos15ef17f2013-08-28 10:09:28 +0200676 ret = clk_prepare_enable(up->clk);
677 if (ret)
678 return ret;
679
680 port->uartclk = clk_get_rate(up->clk);
681 if (!port->uartclk) {
682 ret = -EINVAL;
683 goto err_disable_clk;
684 }
685
Gabor Juhosd57f3412011-06-20 19:26:11 +0200686 port->mapbase = mem_res->start;
Gabor Juhosd57f3412011-06-20 19:26:11 +0200687 port->line = id;
688 port->irq = irq_res->start;
689 port->dev = &pdev->dev;
690 port->type = PORT_AR933X;
691 port->iotype = UPIO_MEM32;
Gabor Juhosd57f3412011-06-20 19:26:11 +0200692
693 port->regshift = 2;
694 port->fifosize = AR933X_UART_FIFO_SIZE;
695 port->ops = &ar933x_uart_ops;
696
Gabor Juhos2dff8ad2012-11-14 10:38:13 +0100697 baud = ar933x_uart_get_baud(port->uartclk, AR933X_UART_MAX_SCALE, 1);
698 up->min_baud = max_t(unsigned int, baud, AR933X_UART_MIN_BAUD);
699
700 baud = ar933x_uart_get_baud(port->uartclk, 0, AR933X_UART_MAX_STEP);
701 up->max_baud = min_t(unsigned int, baud, AR933X_UART_MAX_BAUD);
702
Petr Štetiar21cc1fc2019-03-06 17:54:03 +0100703#ifdef CONFIG_SERIAL_AR933X_CONSOLE
704 ar933x_console_ports[up->port.line] = up;
705#endif
Gabor Juhosd57f3412011-06-20 19:26:11 +0200706
707 ret = uart_add_one_port(&ar933x_uart_driver, &up->port);
708 if (ret)
Gabor Juhos15ef17f2013-08-28 10:09:28 +0200709 goto err_disable_clk;
Gabor Juhosd57f3412011-06-20 19:26:11 +0200710
711 platform_set_drvdata(pdev, up);
712 return 0;
Gabor Juhos15ef17f2013-08-28 10:09:28 +0200713
714err_disable_clk:
715 clk_disable_unprepare(up->clk);
716 return ret;
Gabor Juhosd57f3412011-06-20 19:26:11 +0200717}
718
Bill Pembertonae8d8a12012-11-19 13:26:18 -0500719static int ar933x_uart_remove(struct platform_device *pdev)
Gabor Juhosd57f3412011-06-20 19:26:11 +0200720{
721 struct ar933x_uart_port *up;
722
723 up = platform_get_drvdata(pdev);
Gabor Juhosd57f3412011-06-20 19:26:11 +0200724
Gabor Juhos15ef17f2013-08-28 10:09:28 +0200725 if (up) {
Gabor Juhosd57f3412011-06-20 19:26:11 +0200726 uart_remove_one_port(&ar933x_uart_driver, &up->port);
Gabor Juhos15ef17f2013-08-28 10:09:28 +0200727 clk_disable_unprepare(up->clk);
728 }
Gabor Juhosd57f3412011-06-20 19:26:11 +0200729
730 return 0;
731}
732
Gabor Juhosdd910d92013-08-29 08:44:01 +0200733#ifdef CONFIG_OF
734static const struct of_device_id ar933x_uart_of_ids[] = {
735 { .compatible = "qca,ar9330-uart" },
736 {},
737};
738MODULE_DEVICE_TABLE(of, ar933x_uart_of_ids);
739#endif
740
Gabor Juhosd57f3412011-06-20 19:26:11 +0200741static struct platform_driver ar933x_uart_platform_driver = {
742 .probe = ar933x_uart_probe,
Bill Pemberton2d47b712012-11-19 13:21:34 -0500743 .remove = ar933x_uart_remove,
Gabor Juhosd57f3412011-06-20 19:26:11 +0200744 .driver = {
745 .name = DRIVER_NAME,
Gabor Juhosdd910d92013-08-29 08:44:01 +0200746 .of_match_table = of_match_ptr(ar933x_uart_of_ids),
Gabor Juhosd57f3412011-06-20 19:26:11 +0200747 },
748};
749
750static int __init ar933x_uart_init(void)
751{
752 int ret;
753
Petr Štetiar21cc1fc2019-03-06 17:54:03 +0100754#ifdef CONFIG_SERIAL_AR933X_CONSOLE
755 ar933x_uart_driver.cons = &ar933x_uart_console;
756#endif
Gabor Juhos12415532013-08-28 17:08:39 +0200757
Gabor Juhosd57f3412011-06-20 19:26:11 +0200758 ret = uart_register_driver(&ar933x_uart_driver);
759 if (ret)
760 goto err_out;
761
762 ret = platform_driver_register(&ar933x_uart_platform_driver);
763 if (ret)
764 goto err_unregister_uart_driver;
765
766 return 0;
767
768err_unregister_uart_driver:
769 uart_unregister_driver(&ar933x_uart_driver);
770err_out:
771 return ret;
772}
773
774static void __exit ar933x_uart_exit(void)
775{
776 platform_driver_unregister(&ar933x_uart_platform_driver);
777 uart_unregister_driver(&ar933x_uart_driver);
778}
779
780module_init(ar933x_uart_init);
781module_exit(ar933x_uart_exit);
782
783MODULE_DESCRIPTION("Atheros AR933X UART driver");
784MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>");
785MODULE_LICENSE("GPL v2");
786MODULE_ALIAS("platform:" DRIVER_NAME);