1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Atheros AR933X SoC built-in UART driver 4 * 5 * Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org> 6 * 7 * Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o. 8 */ 9 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> 18 #include <linux/of.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> 25 #include <linux/io.h> 26 #include <linux/irq.h> 27 #include <linux/clk.h> 28 29 #include <asm/div64.h> 30 31 #include <asm/mach-ath79/ar933x_uart.h> 32 33 #include "serial_mctrl_gpio.h" 34 35 #define DRIVER_NAME "ar933x-uart" 36 37 #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 43 #define AR933X_DUMMY_STATUS_RD 0x01 44 45 static struct uart_driver ar933x_uart_driver; 46 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; 52 struct clk *clk; 53 struct mctrl_gpios *gpios; 54 struct gpio_desc *rts_gpiod; 55 }; 56 57 static inline unsigned int ar933x_uart_read(struct ar933x_uart_port *up, 58 int offset) 59 { 60 return readl(up->port.membase + offset); 61 } 62 63 static inline void ar933x_uart_write(struct ar933x_uart_port *up, 64 int offset, unsigned int value) 65 { 66 writel(value, up->port.membase + offset); 67 } 68 69 static inline void ar933x_uart_rmw(struct ar933x_uart_port *up, 70 unsigned int offset, 71 unsigned int mask, 72 unsigned int val) 73 { 74 unsigned int t; 75 76 t = ar933x_uart_read(up, offset); 77 t &= ~mask; 78 t |= val; 79 ar933x_uart_write(up, offset, t); 80 } 81 82 static inline void ar933x_uart_rmw_set(struct ar933x_uart_port *up, 83 unsigned int offset, 84 unsigned int val) 85 { 86 ar933x_uart_rmw(up, offset, 0, val); 87 } 88 89 static inline void ar933x_uart_rmw_clear(struct ar933x_uart_port *up, 90 unsigned int offset, 91 unsigned int val) 92 { 93 ar933x_uart_rmw(up, offset, val, 0); 94 } 95 96 static inline void ar933x_uart_start_tx_interrupt(struct ar933x_uart_port *up) 97 { 98 up->ier |= AR933X_UART_INT_TX_EMPTY; 99 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, up->ier); 100 } 101 102 static inline void ar933x_uart_stop_tx_interrupt(struct ar933x_uart_port *up) 103 { 104 up->ier &= ~AR933X_UART_INT_TX_EMPTY; 105 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, up->ier); 106 } 107 108 static inline void ar933x_uart_start_rx_interrupt(struct ar933x_uart_port *up) 109 { 110 up->ier |= AR933X_UART_INT_RX_VALID; 111 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, up->ier); 112 } 113 114 static inline void ar933x_uart_stop_rx_interrupt(struct ar933x_uart_port *up) 115 { 116 up->ier &= ~AR933X_UART_INT_RX_VALID; 117 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, up->ier); 118 } 119 120 static inline void ar933x_uart_putc(struct ar933x_uart_port *up, int ch) 121 { 122 unsigned int rdata; 123 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); 127 } 128 129 static unsigned int ar933x_uart_tx_empty(struct uart_port *port) 130 { 131 struct ar933x_uart_port *up = 132 container_of(port, struct ar933x_uart_port, port); 133 unsigned long flags; 134 unsigned int rdata; 135 136 spin_lock_irqsave(&up->port.lock, flags); 137 rdata = ar933x_uart_read(up, AR933X_UART_DATA_REG); 138 spin_unlock_irqrestore(&up->port.lock, flags); 139 140 return (rdata & AR933X_UART_DATA_TX_CSR) ? 0 : TIOCSER_TEMT; 141 } 142 143 static unsigned int ar933x_uart_get_mctrl(struct uart_port *port) 144 { 145 struct ar933x_uart_port *up = 146 container_of(port, struct ar933x_uart_port, port); 147 int ret = TIOCM_CTS | TIOCM_DSR | TIOCM_CAR; 148 149 mctrl_gpio_get(up->gpios, &ret); 150 151 return ret; 152 } 153 154 static void ar933x_uart_set_mctrl(struct uart_port *port, unsigned int mctrl) 155 { 156 struct ar933x_uart_port *up = 157 container_of(port, struct ar933x_uart_port, port); 158 159 mctrl_gpio_set(up->gpios, mctrl); 160 } 161 162 static void ar933x_uart_start_tx(struct uart_port *port) 163 { 164 struct ar933x_uart_port *up = 165 container_of(port, struct ar933x_uart_port, port); 166 167 ar933x_uart_start_tx_interrupt(up); 168 } 169 170 static void ar933x_uart_wait_tx_complete(struct ar933x_uart_port *up) 171 { 172 unsigned int status; 173 unsigned int timeout = 60000; 174 175 /* Wait up to 60ms for the character(s) to be sent. */ 176 do { 177 status = ar933x_uart_read(up, AR933X_UART_CS_REG); 178 if (--timeout == 0) 179 break; 180 udelay(1); 181 } while (status & AR933X_UART_CS_TX_BUSY); 182 183 if (timeout == 0) 184 dev_err(up->port.dev, "waiting for TX timed out\n"); 185 } 186 187 static void ar933x_uart_rx_flush(struct ar933x_uart_port *up) 188 { 189 unsigned int status; 190 191 /* clear RX_VALID interrupt */ 192 ar933x_uart_write(up, AR933X_UART_INT_REG, AR933X_UART_INT_RX_VALID); 193 194 /* remove characters from the RX FIFO */ 195 do { 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); 199 } 200 201 static void ar933x_uart_stop_tx(struct uart_port *port) 202 { 203 struct ar933x_uart_port *up = 204 container_of(port, struct ar933x_uart_port, port); 205 206 ar933x_uart_stop_tx_interrupt(up); 207 } 208 209 static void ar933x_uart_stop_rx(struct uart_port *port) 210 { 211 struct ar933x_uart_port *up = 212 container_of(port, struct ar933x_uart_port, port); 213 214 ar933x_uart_stop_rx_interrupt(up); 215 } 216 217 static void ar933x_uart_break_ctl(struct uart_port *port, int break_state) 218 { 219 struct ar933x_uart_port *up = 220 container_of(port, struct ar933x_uart_port, port); 221 unsigned long flags; 222 223 spin_lock_irqsave(&up->port.lock, flags); 224 if (break_state == -1) 225 ar933x_uart_rmw_set(up, AR933X_UART_CS_REG, 226 AR933X_UART_CS_TX_BREAK); 227 else 228 ar933x_uart_rmw_clear(up, AR933X_UART_CS_REG, 229 AR933X_UART_CS_TX_BREAK); 230 spin_unlock_irqrestore(&up->port.lock, flags); 231 } 232 233 /* 234 * baudrate = (clk / (scale + 1)) * (step * (1 / 2^17)) 235 */ 236 static unsigned long ar933x_uart_get_baud(unsigned int clk, 237 unsigned int scale, 238 unsigned int step) 239 { 240 u64 t; 241 u32 div; 242 243 div = (2 << 16) * (scale + 1); 244 t = clk; 245 t *= step; 246 t += (div / 2); 247 do_div(t, div); 248 249 return t; 250 } 251 252 static void ar933x_uart_get_scale_step(unsigned int clk, 253 unsigned int baud, 254 unsigned int *scale, 255 unsigned int *step) 256 { 257 unsigned int tscale; 258 long min_diff; 259 260 *scale = 0; 261 *step = 0; 262 263 min_diff = baud; 264 for (tscale = 0; tscale < AR933X_UART_MAX_SCALE; tscale++) { 265 u64 tstep; 266 int diff; 267 268 tstep = baud * (tscale + 1); 269 tstep *= (2 << 16); 270 do_div(tstep, clk); 271 272 if (tstep > AR933X_UART_MAX_STEP) 273 break; 274 275 diff = abs(ar933x_uart_get_baud(clk, tscale, tstep) - baud); 276 if (diff < min_diff) { 277 min_diff = diff; 278 *scale = tscale; 279 *step = tstep; 280 } 281 } 282 } 283 284 static void ar933x_uart_set_termios(struct uart_port *port, 285 struct ktermios *new, 286 struct ktermios *old) 287 { 288 struct ar933x_uart_port *up = 289 container_of(port, struct ar933x_uart_port, port); 290 unsigned int cs; 291 unsigned long flags; 292 unsigned int baud, scale, step; 293 294 /* Only CS8 is supported */ 295 new->c_cflag &= ~CSIZE; 296 new->c_cflag |= CS8; 297 298 /* Only one stop bit is supported */ 299 new->c_cflag &= ~CSTOPB; 300 301 cs = 0; 302 if (new->c_cflag & PARENB) { 303 if (!(new->c_cflag & PARODD)) 304 cs |= AR933X_UART_CS_PARITY_EVEN; 305 else 306 cs |= AR933X_UART_CS_PARITY_ODD; 307 } else { 308 cs |= AR933X_UART_CS_PARITY_NONE; 309 } 310 311 /* Mark/space parity is not supported */ 312 new->c_cflag &= ~CMSPAR; 313 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); 316 317 /* 318 * Ok, we're now changing the port state. Do it with 319 * interrupts disabled. 320 */ 321 spin_lock_irqsave(&up->port.lock, flags); 322 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); 326 327 /* Update the per-port timeout. */ 328 uart_update_timeout(port, new->c_cflag, baud); 329 330 up->port.ignore_status_mask = 0; 331 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; 335 336 ar933x_uart_write(up, AR933X_UART_CLOCK_REG, 337 scale << AR933X_UART_CLOCK_SCALE_S | step); 338 339 /* setup configuration register */ 340 ar933x_uart_rmw(up, AR933X_UART_CS_REG, AR933X_UART_CS_PARITY_M, cs); 341 342 /* enable host interrupt */ 343 ar933x_uart_rmw_set(up, AR933X_UART_CS_REG, 344 AR933X_UART_CS_HOST_INT_EN); 345 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); 349 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); 354 355 spin_unlock_irqrestore(&up->port.lock, flags); 356 357 if (tty_termios_baud_rate(new)) 358 tty_termios_encode_baud_rate(new, baud, baud); 359 } 360 361 static void ar933x_uart_rx_chars(struct ar933x_uart_port *up) 362 { 363 struct tty_port *port = &up->port.state->port; 364 int max_count = 256; 365 366 do { 367 unsigned int rdata; 368 unsigned char ch; 369 370 rdata = ar933x_uart_read(up, AR933X_UART_DATA_REG); 371 if ((rdata & AR933X_UART_DATA_RX_CSR) == 0) 372 break; 373 374 /* remove the character from the FIFO */ 375 ar933x_uart_write(up, AR933X_UART_DATA_REG, 376 AR933X_UART_DATA_RX_CSR); 377 378 up->port.icount.rx++; 379 ch = rdata & AR933X_UART_DATA_TX_RX_MASK; 380 381 if (uart_handle_sysrq_char(&up->port, ch)) 382 continue; 383 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); 387 388 tty_flip_buffer_push(port); 389 } 390 391 static void ar933x_uart_tx_chars(struct ar933x_uart_port *up) 392 { 393 struct circ_buf *xmit = &up->port.state->xmit; 394 struct serial_rs485 *rs485conf = &up->port.rs485; 395 int count; 396 bool half_duplex_send = false; 397 398 if (uart_tx_stopped(&up->port)) 399 return; 400 401 if ((rs485conf->flags & SER_RS485_ENABLED) && 402 (up->port.x_char || !uart_circ_empty(xmit))) { 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; 406 } 407 408 count = up->port.fifosize; 409 do { 410 unsigned int rdata; 411 412 rdata = ar933x_uart_read(up, AR933X_UART_DATA_REG); 413 if ((rdata & AR933X_UART_DATA_TX_CSR) == 0) 414 break; 415 416 if (up->port.x_char) { 417 ar933x_uart_putc(up, up->port.x_char); 418 up->port.icount.tx++; 419 up->port.x_char = 0; 420 continue; 421 } 422 423 if (uart_circ_empty(xmit)) 424 break; 425 426 ar933x_uart_putc(up, xmit->buf[xmit->tail]); 427 428 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); 429 up->port.icount.tx++; 430 } while (--count > 0); 431 432 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) 433 uart_write_wakeup(&up->port); 434 435 if (!uart_circ_empty(xmit)) { 436 ar933x_uart_start_tx_interrupt(up); 437 } else if (half_duplex_send) { 438 ar933x_uart_wait_tx_complete(up); 439 ar933x_uart_rx_flush(up); 440 ar933x_uart_start_rx_interrupt(up); 441 gpiod_set_value(up->rts_gpiod, !!(rs485conf->flags & SER_RS485_RTS_AFTER_SEND)); 442 } 443 } 444 445 static irqreturn_t ar933x_uart_interrupt(int irq, void *dev_id) 446 { 447 struct ar933x_uart_port *up = dev_id; 448 unsigned int status; 449 450 status = ar933x_uart_read(up, AR933X_UART_CS_REG); 451 if ((status & AR933X_UART_CS_HOST_INT) == 0) 452 return IRQ_NONE; 453 454 spin_lock(&up->port.lock); 455 456 status = ar933x_uart_read(up, AR933X_UART_INT_REG); 457 status &= ar933x_uart_read(up, AR933X_UART_INT_EN_REG); 458 459 if (status & AR933X_UART_INT_RX_VALID) { 460 ar933x_uart_write(up, AR933X_UART_INT_REG, 461 AR933X_UART_INT_RX_VALID); 462 ar933x_uart_rx_chars(up); 463 } 464 465 if (status & AR933X_UART_INT_TX_EMPTY) { 466 ar933x_uart_write(up, AR933X_UART_INT_REG, 467 AR933X_UART_INT_TX_EMPTY); 468 ar933x_uart_stop_tx_interrupt(up); 469 ar933x_uart_tx_chars(up); 470 } 471 472 spin_unlock(&up->port.lock); 473 474 return IRQ_HANDLED; 475 } 476 477 static int ar933x_uart_startup(struct uart_port *port) 478 { 479 struct ar933x_uart_port *up = 480 container_of(port, struct ar933x_uart_port, port); 481 unsigned long flags; 482 int ret; 483 484 ret = request_irq(up->port.irq, ar933x_uart_interrupt, 485 up->port.irqflags, dev_name(up->port.dev), up); 486 if (ret) 487 return ret; 488 489 spin_lock_irqsave(&up->port.lock, flags); 490 491 /* Enable HOST interrupts */ 492 ar933x_uart_rmw_set(up, AR933X_UART_CS_REG, 493 AR933X_UART_CS_HOST_INT_EN); 494 495 /* enable RX and TX ready overide */ 496 ar933x_uart_rmw_set(up, AR933X_UART_CS_REG, 497 AR933X_UART_CS_TX_READY_ORIDE | AR933X_UART_CS_RX_READY_ORIDE); 498 499 /* Enable RX interrupts */ 500 ar933x_uart_start_rx_interrupt(up); 501 502 spin_unlock_irqrestore(&up->port.lock, flags); 503 504 return 0; 505 } 506 507 static void ar933x_uart_shutdown(struct uart_port *port) 508 { 509 struct ar933x_uart_port *up = 510 container_of(port, struct ar933x_uart_port, port); 511 512 /* Disable all interrupts */ 513 up->ier = 0; 514 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, up->ier); 515 516 /* Disable break condition */ 517 ar933x_uart_rmw_clear(up, AR933X_UART_CS_REG, 518 AR933X_UART_CS_TX_BREAK); 519 520 free_irq(up->port.irq, up); 521 } 522 523 static const char *ar933x_uart_type(struct uart_port *port) 524 { 525 return (port->type == PORT_AR933X) ? "AR933X UART" : NULL; 526 } 527 528 static void ar933x_uart_release_port(struct uart_port *port) 529 { 530 /* Nothing to release ... */ 531 } 532 533 static int ar933x_uart_request_port(struct uart_port *port) 534 { 535 /* UARTs always present */ 536 return 0; 537 } 538 539 static void ar933x_uart_config_port(struct uart_port *port, int flags) 540 { 541 if (flags & UART_CONFIG_TYPE) 542 port->type = PORT_AR933X; 543 } 544 545 static int ar933x_uart_verify_port(struct uart_port *port, 546 struct serial_struct *ser) 547 { 548 struct ar933x_uart_port *up = 549 container_of(port, struct ar933x_uart_port, port); 550 551 if (ser->type != PORT_UNKNOWN && 552 ser->type != PORT_AR933X) 553 return -EINVAL; 554 555 if (ser->irq < 0 || ser->irq >= NR_IRQS) 556 return -EINVAL; 557 558 if (ser->baud_base < up->min_baud || 559 ser->baud_base > up->max_baud) 560 return -EINVAL; 561 562 return 0; 563 } 564 565 static const struct uart_ops ar933x_uart_ops = { 566 .tx_empty = ar933x_uart_tx_empty, 567 .set_mctrl = ar933x_uart_set_mctrl, 568 .get_mctrl = ar933x_uart_get_mctrl, 569 .stop_tx = ar933x_uart_stop_tx, 570 .start_tx = ar933x_uart_start_tx, 571 .stop_rx = ar933x_uart_stop_rx, 572 .break_ctl = ar933x_uart_break_ctl, 573 .startup = ar933x_uart_startup, 574 .shutdown = ar933x_uart_shutdown, 575 .set_termios = ar933x_uart_set_termios, 576 .type = ar933x_uart_type, 577 .release_port = ar933x_uart_release_port, 578 .request_port = ar933x_uart_request_port, 579 .config_port = ar933x_uart_config_port, 580 .verify_port = ar933x_uart_verify_port, 581 }; 582 583 static int ar933x_config_rs485(struct uart_port *port, struct ktermios *termios, 584 struct serial_rs485 *rs485conf) 585 { 586 return 0; 587 } 588 589 #ifdef CONFIG_SERIAL_AR933X_CONSOLE 590 static struct ar933x_uart_port * 591 ar933x_console_ports[CONFIG_SERIAL_AR933X_NR_UARTS]; 592 593 static void ar933x_uart_wait_xmitr(struct ar933x_uart_port *up) 594 { 595 unsigned int status; 596 unsigned int timeout = 60000; 597 598 /* Wait up to 60ms for the character(s) to be sent. */ 599 do { 600 status = ar933x_uart_read(up, AR933X_UART_DATA_REG); 601 if (--timeout == 0) 602 break; 603 udelay(1); 604 } while ((status & AR933X_UART_DATA_TX_CSR) == 0); 605 } 606 607 static void ar933x_uart_console_putchar(struct uart_port *port, unsigned char ch) 608 { 609 struct ar933x_uart_port *up = 610 container_of(port, struct ar933x_uart_port, port); 611 612 ar933x_uart_wait_xmitr(up); 613 ar933x_uart_putc(up, ch); 614 } 615 616 static void ar933x_uart_console_write(struct console *co, const char *s, 617 unsigned int count) 618 { 619 struct ar933x_uart_port *up = ar933x_console_ports[co->index]; 620 unsigned long flags; 621 unsigned int int_en; 622 int locked = 1; 623 624 local_irq_save(flags); 625 626 if (up->port.sysrq) 627 locked = 0; 628 else if (oops_in_progress) 629 locked = spin_trylock(&up->port.lock); 630 else 631 spin_lock(&up->port.lock); 632 633 /* 634 * First save the IER then disable the interrupts 635 */ 636 int_en = ar933x_uart_read(up, AR933X_UART_INT_EN_REG); 637 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, 0); 638 639 uart_console_write(&up->port, s, count, ar933x_uart_console_putchar); 640 641 /* 642 * Finally, wait for transmitter to become empty 643 * and restore the IER 644 */ 645 ar933x_uart_wait_xmitr(up); 646 ar933x_uart_write(up, AR933X_UART_INT_EN_REG, int_en); 647 648 ar933x_uart_write(up, AR933X_UART_INT_REG, AR933X_UART_INT_ALLINTS); 649 650 if (locked) 651 spin_unlock(&up->port.lock); 652 653 local_irq_restore(flags); 654 } 655 656 static int ar933x_uart_console_setup(struct console *co, char *options) 657 { 658 struct ar933x_uart_port *up; 659 int baud = 115200; 660 int bits = 8; 661 int parity = 'n'; 662 int flow = 'n'; 663 664 if (co->index < 0 || co->index >= CONFIG_SERIAL_AR933X_NR_UARTS) 665 return -EINVAL; 666 667 up = ar933x_console_ports[co->index]; 668 if (!up) 669 return -ENODEV; 670 671 if (options) 672 uart_parse_options(options, &baud, &parity, &bits, &flow); 673 674 return uart_set_options(&up->port, co, baud, parity, bits, flow); 675 } 676 677 static struct console ar933x_uart_console = { 678 .name = "ttyATH", 679 .write = ar933x_uart_console_write, 680 .device = uart_console_device, 681 .setup = ar933x_uart_console_setup, 682 .flags = CON_PRINTBUFFER, 683 .index = -1, 684 .data = &ar933x_uart_driver, 685 }; 686 #endif /* CONFIG_SERIAL_AR933X_CONSOLE */ 687 688 static struct uart_driver ar933x_uart_driver = { 689 .owner = THIS_MODULE, 690 .driver_name = DRIVER_NAME, 691 .dev_name = "ttyATH", 692 .nr = CONFIG_SERIAL_AR933X_NR_UARTS, 693 .cons = NULL, /* filled in runtime */ 694 }; 695 696 static const struct serial_rs485 ar933x_no_rs485 = {}; 697 static const struct serial_rs485 ar933x_rs485_supported = { 698 .flags = SER_RS485_ENABLED | SER_RS485_RTS_ON_SEND | SER_RS485_RTS_AFTER_SEND, 699 }; 700 701 static int ar933x_uart_probe(struct platform_device *pdev) 702 { 703 struct ar933x_uart_port *up; 704 struct uart_port *port; 705 struct resource *mem_res; 706 struct device_node *np; 707 unsigned int baud; 708 int id; 709 int ret; 710 int irq; 711 712 np = pdev->dev.of_node; 713 if (IS_ENABLED(CONFIG_OF) && np) { 714 id = of_alias_get_id(np, "serial"); 715 if (id < 0) { 716 dev_err(&pdev->dev, "unable to get alias id, err=%d\n", 717 id); 718 return id; 719 } 720 } else { 721 id = pdev->id; 722 if (id == -1) 723 id = 0; 724 } 725 726 if (id >= CONFIG_SERIAL_AR933X_NR_UARTS) 727 return -EINVAL; 728 729 irq = platform_get_irq(pdev, 0); 730 if (irq < 0) 731 return irq; 732 733 up = devm_kzalloc(&pdev->dev, sizeof(struct ar933x_uart_port), 734 GFP_KERNEL); 735 if (!up) 736 return -ENOMEM; 737 738 up->clk = devm_clk_get(&pdev->dev, "uart"); 739 if (IS_ERR(up->clk)) { 740 dev_err(&pdev->dev, "unable to get UART clock\n"); 741 return PTR_ERR(up->clk); 742 } 743 744 port = &up->port; 745 746 mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 747 port->membase = devm_ioremap_resource(&pdev->dev, mem_res); 748 if (IS_ERR(port->membase)) 749 return PTR_ERR(port->membase); 750 751 ret = clk_prepare_enable(up->clk); 752 if (ret) 753 return ret; 754 755 port->uartclk = clk_get_rate(up->clk); 756 if (!port->uartclk) { 757 ret = -EINVAL; 758 goto err_disable_clk; 759 } 760 761 port->mapbase = mem_res->start; 762 port->line = id; 763 port->irq = irq; 764 port->dev = &pdev->dev; 765 port->type = PORT_AR933X; 766 port->iotype = UPIO_MEM32; 767 768 port->regshift = 2; 769 port->fifosize = AR933X_UART_FIFO_SIZE; 770 port->ops = &ar933x_uart_ops; 771 port->rs485_config = ar933x_config_rs485; 772 port->rs485_supported = ar933x_rs485_supported; 773 774 baud = ar933x_uart_get_baud(port->uartclk, AR933X_UART_MAX_SCALE, 1); 775 up->min_baud = max_t(unsigned int, baud, AR933X_UART_MIN_BAUD); 776 777 baud = ar933x_uart_get_baud(port->uartclk, 0, AR933X_UART_MAX_STEP); 778 up->max_baud = min_t(unsigned int, baud, AR933X_UART_MAX_BAUD); 779 780 ret = uart_get_rs485_mode(port); 781 if (ret) 782 goto err_disable_clk; 783 784 up->gpios = mctrl_gpio_init(port, 0); 785 if (IS_ERR(up->gpios) && PTR_ERR(up->gpios) != -ENOSYS) { 786 ret = PTR_ERR(up->gpios); 787 goto err_disable_clk; 788 } 789 790 up->rts_gpiod = mctrl_gpio_to_gpiod(up->gpios, UART_GPIO_RTS); 791 792 if (!up->rts_gpiod) { 793 port->rs485_supported = ar933x_no_rs485; 794 if (port->rs485.flags & SER_RS485_ENABLED) { 795 dev_err(&pdev->dev, "lacking rts-gpio, disabling RS485\n"); 796 port->rs485.flags &= ~SER_RS485_ENABLED; 797 } 798 } 799 800 #ifdef CONFIG_SERIAL_AR933X_CONSOLE 801 ar933x_console_ports[up->port.line] = up; 802 #endif 803 804 ret = uart_add_one_port(&ar933x_uart_driver, &up->port); 805 if (ret) 806 goto err_disable_clk; 807 808 platform_set_drvdata(pdev, up); 809 return 0; 810 811 err_disable_clk: 812 clk_disable_unprepare(up->clk); 813 return ret; 814 } 815 816 static int ar933x_uart_remove(struct platform_device *pdev) 817 { 818 struct ar933x_uart_port *up; 819 820 up = platform_get_drvdata(pdev); 821 822 if (up) { 823 uart_remove_one_port(&ar933x_uart_driver, &up->port); 824 clk_disable_unprepare(up->clk); 825 } 826 827 return 0; 828 } 829 830 #ifdef CONFIG_OF 831 static const struct of_device_id ar933x_uart_of_ids[] = { 832 { .compatible = "qca,ar9330-uart" }, 833 {}, 834 }; 835 MODULE_DEVICE_TABLE(of, ar933x_uart_of_ids); 836 #endif 837 838 static struct platform_driver ar933x_uart_platform_driver = { 839 .probe = ar933x_uart_probe, 840 .remove = ar933x_uart_remove, 841 .driver = { 842 .name = DRIVER_NAME, 843 .of_match_table = of_match_ptr(ar933x_uart_of_ids), 844 }, 845 }; 846 847 static int __init ar933x_uart_init(void) 848 { 849 int ret; 850 851 #ifdef CONFIG_SERIAL_AR933X_CONSOLE 852 ar933x_uart_driver.cons = &ar933x_uart_console; 853 #endif 854 855 ret = uart_register_driver(&ar933x_uart_driver); 856 if (ret) 857 goto err_out; 858 859 ret = platform_driver_register(&ar933x_uart_platform_driver); 860 if (ret) 861 goto err_unregister_uart_driver; 862 863 return 0; 864 865 err_unregister_uart_driver: 866 uart_unregister_driver(&ar933x_uart_driver); 867 err_out: 868 return ret; 869 } 870 871 static void __exit ar933x_uart_exit(void) 872 { 873 platform_driver_unregister(&ar933x_uart_platform_driver); 874 uart_unregister_driver(&ar933x_uart_driver); 875 } 876 877 module_init(ar933x_uart_init); 878 module_exit(ar933x_uart_exit); 879 880 MODULE_DESCRIPTION("Atheros AR933X UART driver"); 881 MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>"); 882 MODULE_LICENSE("GPL v2"); 883 MODULE_ALIAS("platform:" DRIVER_NAME); 884