Lines Matching +full:- +full:uart

1 // SPDX-License-Identifier: GPL-2.0
3 * timbuart.c timberdale FPGA UART driver
8 * Timberdale FPGA UART
42 u32 ier = ioread32(port->membase + TIMBUART_IER) & ~RXFLAGS; in timbuart_stop_rx()
43 iowrite32(ier, port->membase + TIMBUART_IER); in timbuart_stop_rx()
49 u32 ier = ioread32(port->membase + TIMBUART_IER) & ~TXBAE; in timbuart_stop_tx()
50 iowrite32(ier, port->membase + TIMBUART_IER); in timbuart_stop_tx()
55 struct timbuart_port *uart = in timbuart_start_tx() local
58 /* do not transfer anything here -> fire off the tasklet */ in timbuart_start_tx()
59 tasklet_schedule(&uart->tasklet); in timbuart_start_tx()
64 u32 isr = ioread32(port->membase + TIMBUART_ISR); in timbuart_tx_empty()
72 u8 ctl = ioread8(port->membase + TIMBUART_CTRL) | in timbuart_flush_buffer()
75 iowrite8(ctl, port->membase + TIMBUART_CTRL); in timbuart_flush_buffer()
76 iowrite32(TXBF, port->membase + TIMBUART_ISR); in timbuart_flush_buffer()
82 struct tty_port *tport = &port->state->port; in timbuart_rx_chars()
84 while (ioread32(port->membase + TIMBUART_ISR) & RXDP) { in timbuart_rx_chars()
85 u8 ch = ioread8(port->membase + TIMBUART_RXFIFO); in timbuart_rx_chars()
86 port->icount.rx++; in timbuart_rx_chars()
90 spin_unlock(&port->lock); in timbuart_rx_chars()
92 spin_lock(&port->lock); in timbuart_rx_chars()
94 dev_dbg(port->dev, "%s - total read %d bytes\n", in timbuart_rx_chars()
95 __func__, port->icount.rx); in timbuart_rx_chars()
100 struct circ_buf *xmit = &port->state->xmit; in timbuart_tx_chars()
102 while (!(ioread32(port->membase + TIMBUART_ISR) & TXBF) && in timbuart_tx_chars()
104 iowrite8(xmit->buf[xmit->tail], in timbuart_tx_chars()
105 port->membase + TIMBUART_TXFIFO); in timbuart_tx_chars()
106 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1); in timbuart_tx_chars()
107 port->icount.tx++; in timbuart_tx_chars()
110 dev_dbg(port->dev, in timbuart_tx_chars()
111 "%s - total written %d bytes, CTL: %x, RTS: %x, baud: %x\n", in timbuart_tx_chars()
113 port->icount.tx, in timbuart_tx_chars()
114 ioread8(port->membase + TIMBUART_CTRL), in timbuart_tx_chars()
115 port->mctrl & TIOCM_RTS, in timbuart_tx_chars()
116 ioread8(port->membase + TIMBUART_BAUDRATE)); in timbuart_tx_chars()
121 struct timbuart_port *uart = in timbuart_handle_tx_port() local
123 struct circ_buf *xmit = &port->state->xmit; in timbuart_handle_tx_port()
128 if (port->x_char) in timbuart_handle_tx_port()
134 iowrite32(TXFLAGS, port->membase + TIMBUART_ISR); in timbuart_handle_tx_port()
139 /* Re-enable any tx interrupt */ in timbuart_handle_tx_port()
140 *ier |= uart->last_ier & TXFLAGS; in timbuart_handle_tx_port()
150 dev_dbg(port->dev, "%s - leaving\n", __func__); in timbuart_handle_tx_port()
158 u8 ctl = ioread8(port->membase + TIMBUART_CTRL) | in timbuart_handle_rx_port()
160 iowrite8(ctl, port->membase + TIMBUART_CTRL); in timbuart_handle_rx_port()
161 port->icount.overrun++; in timbuart_handle_rx_port()
166 iowrite32(RXFLAGS, port->membase + TIMBUART_ISR); in timbuart_handle_rx_port()
172 dev_dbg(port->dev, "%s - leaving\n", __func__); in timbuart_handle_rx_port()
177 struct timbuart_port *uart = from_tasklet(uart, t, tasklet); in timbuart_tasklet() local
180 spin_lock(&uart->port.lock); in timbuart_tasklet()
182 isr = ioread32(uart->port.membase + TIMBUART_ISR); in timbuart_tasklet()
183 dev_dbg(uart->port.dev, "%s ISR: %x\n", __func__, isr); in timbuart_tasklet()
185 if (!uart->usedma) in timbuart_tasklet()
186 timbuart_handle_tx_port(&uart->port, isr, &ier); in timbuart_tasklet()
188 timbuart_mctrl_check(&uart->port, isr, &ier); in timbuart_tasklet()
190 if (!uart->usedma) in timbuart_tasklet()
191 timbuart_handle_rx_port(&uart->port, isr, &ier); in timbuart_tasklet()
193 iowrite32(ier, uart->port.membase + TIMBUART_IER); in timbuart_tasklet()
195 spin_unlock(&uart->port.lock); in timbuart_tasklet()
196 dev_dbg(uart->port.dev, "%s leaving\n", __func__); in timbuart_tasklet()
201 u8 cts = ioread8(port->membase + TIMBUART_CTRL); in timbuart_get_mctrl()
202 dev_dbg(port->dev, "%s - cts %x\n", __func__, cts); in timbuart_get_mctrl()
212 dev_dbg(port->dev, "%s - %x\n", __func__, mctrl); in timbuart_set_mctrl()
215 iowrite8(TIMBUART_CTRL_RTS, port->membase + TIMBUART_CTRL); in timbuart_set_mctrl()
217 iowrite8(0, port->membase + TIMBUART_CTRL); in timbuart_set_mctrl()
226 iowrite32(CTS_DELTA, port->membase + TIMBUART_ISR); in timbuart_mctrl_check()
229 wake_up_interruptible(&port->state->port.delta_msr_wait); in timbuart_mctrl_check()
242 struct timbuart_port *uart = in timbuart_startup() local
245 dev_dbg(port->dev, "%s\n", __func__); in timbuart_startup()
247 iowrite8(TIMBUART_CTRL_FLSHRX, port->membase + TIMBUART_CTRL); in timbuart_startup()
248 iowrite32(0x1ff, port->membase + TIMBUART_ISR); in timbuart_startup()
251 port->membase + TIMBUART_IER); in timbuart_startup()
253 return request_irq(port->irq, timbuart_handleinterrupt, IRQF_SHARED, in timbuart_startup()
254 "timb-uart", uart); in timbuart_startup()
259 struct timbuart_port *uart = in timbuart_shutdown() local
261 dev_dbg(port->dev, "%s\n", __func__); in timbuart_shutdown()
262 free_irq(port->irq, uart); in timbuart_shutdown()
263 iowrite32(0, port->membase + TIMBUART_IER); in timbuart_shutdown()
276 return -1; in get_bindex()
287 baud = uart_get_baud_rate(port, termios, old, 0, port->uartclk / 16); in timbuart_set_termios()
289 dev_dbg(port->dev, "%s - bindex %d\n", __func__, bindex); in timbuart_set_termios()
301 spin_lock_irqsave(&port->lock, flags); in timbuart_set_termios()
302 iowrite8((u8)bindex, port->membase + TIMBUART_BAUDRATE); in timbuart_set_termios()
303 uart_update_timeout(port, termios->c_cflag, baud); in timbuart_set_termios()
304 spin_unlock_irqrestore(&port->lock, flags); in timbuart_set_termios()
309 return port->type == PORT_UNKNOWN ? "timbuart" : NULL; in timbuart_type()
317 struct platform_device *pdev = to_platform_device(port->dev); in timbuart_release_port()
321 if (port->flags & UPF_IOREMAP) { in timbuart_release_port()
322 iounmap(port->membase); in timbuart_release_port()
323 port->membase = NULL; in timbuart_release_port()
326 release_mem_region(port->mapbase, size); in timbuart_release_port()
331 struct platform_device *pdev = to_platform_device(port->dev); in timbuart_request_port()
335 if (!request_mem_region(port->mapbase, size, "timb-uart")) in timbuart_request_port()
336 return -EBUSY; in timbuart_request_port()
338 if (port->flags & UPF_IOREMAP) { in timbuart_request_port()
339 port->membase = ioremap(port->mapbase, size); in timbuart_request_port()
340 if (port->membase == NULL) { in timbuart_request_port()
341 release_mem_region(port->mapbase, size); in timbuart_request_port()
342 return -ENOMEM; in timbuart_request_port()
351 struct timbuart_port *uart = (struct timbuart_port *)devid; in timbuart_handleinterrupt() local
353 if (ioread8(uart->port.membase + TIMBUART_IPR)) { in timbuart_handleinterrupt()
354 uart->last_ier = ioread32(uart->port.membase + TIMBUART_IER); in timbuart_handleinterrupt()
357 iowrite32(0, uart->port.membase + TIMBUART_IER); in timbuart_handleinterrupt()
360 tasklet_schedule(&uart->tasklet); in timbuart_handleinterrupt()
373 port->type = PORT_TIMBUART; in timbuart_config_port()
382 return -EINVAL; in timbuart_verify_port()
416 struct timbuart_port *uart; in timbuart_probe() local
419 dev_dbg(&dev->dev, "%s\n", __func__); in timbuart_probe()
421 uart = kzalloc(sizeof(*uart), GFP_KERNEL); in timbuart_probe()
422 if (!uart) { in timbuart_probe()
423 err = -EINVAL; in timbuart_probe()
427 uart->usedma = 0; in timbuart_probe()
429 uart->port.uartclk = 3250000 * 16; in timbuart_probe()
430 uart->port.fifosize = TIMBUART_FIFO_SIZE; in timbuart_probe()
431 uart->port.regshift = 2; in timbuart_probe()
432 uart->port.iotype = UPIO_MEM; in timbuart_probe()
433 uart->port.ops = &timbuart_ops; in timbuart_probe()
434 uart->port.irq = 0; in timbuart_probe()
435 uart->port.flags = UPF_BOOT_AUTOCONF | UPF_IOREMAP; in timbuart_probe()
436 uart->port.line = 0; in timbuart_probe()
437 uart->port.dev = &dev->dev; in timbuart_probe()
441 err = -ENOMEM; in timbuart_probe()
444 uart->port.mapbase = iomem->start; in timbuart_probe()
445 uart->port.membase = NULL; in timbuart_probe()
449 err = -EINVAL; in timbuart_probe()
452 uart->port.irq = irq; in timbuart_probe()
454 tasklet_setup(&uart->tasklet, timbuart_tasklet); in timbuart_probe()
460 err = uart_add_one_port(&timbuart_driver, &uart->port); in timbuart_probe()
464 platform_set_drvdata(dev, uart); in timbuart_probe()
471 kfree(uart); in timbuart_probe()
473 printk(KERN_ERR "timberdale: Failed to register Timberdale UART: %d\n", in timbuart_probe()
481 struct timbuart_port *uart = platform_get_drvdata(dev); in timbuart_remove() local
483 tasklet_kill(&uart->tasklet); in timbuart_remove()
484 uart_remove_one_port(&timbuart_driver, &uart->port); in timbuart_remove()
486 kfree(uart); in timbuart_remove()
493 .name = "timb-uart",
501 MODULE_DESCRIPTION("Timberdale UART driver");
503 MODULE_ALIAS("platform:timb-uart");