1 // SPDX-License-Identifier: GPL-2.0
3 * timbuart.c timberdale FPGA UART driver
4 * Copyright (c) 2009 Intel Corporation
11 #include <linux/pci.h>
12 #include <linux/interrupt.h>
13 #include <linux/serial_core.h>
14 #include <linux/tty.h>
15 #include <linux/tty_flip.h>
16 #include <linux/kernel.h>
17 #include <linux/platform_device.h>
18 #include <linux/ioport.h>
19 #include <linux/slab.h>
20 #include <linux/module.h>
24 struct timbuart_port
{
25 struct uart_port port
;
26 struct tasklet_struct tasklet
;
29 struct platform_device
*dev
;
32 static int baudrates
[] = {9600, 19200, 38400, 57600, 115200, 230400, 460800,
33 921600, 1843200, 3250000};
35 static void timbuart_mctrl_check(struct uart_port
*port
, u32 isr
, u32
*ier
);
37 static irqreturn_t
timbuart_handleinterrupt(int irq
, void *devid
);
39 static void timbuart_stop_rx(struct uart_port
*port
)
41 /* spin lock held by upper layer, disable all RX interrupts */
42 u32 ier
= ioread32(port
->membase
+ TIMBUART_IER
) & ~RXFLAGS
;
43 iowrite32(ier
, port
->membase
+ TIMBUART_IER
);
46 static void timbuart_stop_tx(struct uart_port
*port
)
48 /* spinlock held by upper layer, disable TX interrupt */
49 u32 ier
= ioread32(port
->membase
+ TIMBUART_IER
) & ~TXBAE
;
50 iowrite32(ier
, port
->membase
+ TIMBUART_IER
);
53 static void timbuart_start_tx(struct uart_port
*port
)
55 struct timbuart_port
*uart
=
56 container_of(port
, struct timbuart_port
, port
);
58 /* do not transfer anything here -> fire off the tasklet */
59 tasklet_schedule(&uart
->tasklet
);
62 static unsigned int timbuart_tx_empty(struct uart_port
*port
)
64 u32 isr
= ioread32(port
->membase
+ TIMBUART_ISR
);
66 return (isr
& TXBE
) ? TIOCSER_TEMT
: 0;
69 static void timbuart_flush_buffer(struct uart_port
*port
)
71 if (!timbuart_tx_empty(port
)) {
72 u8 ctl
= ioread8(port
->membase
+ TIMBUART_CTRL
) |
75 iowrite8(ctl
, port
->membase
+ TIMBUART_CTRL
);
76 iowrite32(TXBF
, port
->membase
+ TIMBUART_ISR
);
80 static void timbuart_rx_chars(struct uart_port
*port
)
82 struct tty_port
*tport
= &port
->state
->port
;
84 while (ioread32(port
->membase
+ TIMBUART_ISR
) & RXDP
) {
85 u8 ch
= ioread8(port
->membase
+ TIMBUART_RXFIFO
);
87 tty_insert_flip_char(tport
, ch
, TTY_NORMAL
);
90 tty_flip_buffer_push(tport
);
92 dev_dbg(port
->dev
, "%s - total read %d bytes\n",
93 __func__
, port
->icount
.rx
);
96 static void timbuart_tx_chars(struct uart_port
*port
)
100 while (!(ioread32(port
->membase
+ TIMBUART_ISR
) & TXBF
) &&
101 uart_fifo_get(port
, &ch
))
102 iowrite8(ch
, port
->membase
+ TIMBUART_TXFIFO
);
105 "%s - total written %d bytes, CTL: %x, RTS: %x, baud: %x\n",
108 ioread8(port
->membase
+ TIMBUART_CTRL
),
109 port
->mctrl
& TIOCM_RTS
,
110 ioread8(port
->membase
+ TIMBUART_BAUDRATE
));
113 static void timbuart_handle_tx_port(struct uart_port
*port
, u32 isr
, u32
*ier
)
115 struct timbuart_port
*uart
=
116 container_of(port
, struct timbuart_port
, port
);
117 struct tty_port
*tport
= &port
->state
->port
;
119 if (kfifo_is_empty(&tport
->xmit_fifo
) || uart_tx_stopped(port
))
126 timbuart_tx_chars(port
);
127 /* clear all TX interrupts */
128 iowrite32(TXFLAGS
, port
->membase
+ TIMBUART_ISR
);
130 if (kfifo_len(&tport
->xmit_fifo
) < WAKEUP_CHARS
)
131 uart_write_wakeup(port
);
133 /* Re-enable any tx interrupt */
134 *ier
|= uart
->last_ier
& TXFLAGS
;
136 /* enable interrupts if there are chars in the transmit buffer,
137 * Or if we delivered some bytes and want the almost empty interrupt
138 * we wake up the upper layer later when we got the interrupt
139 * to give it some time to go out...
141 if (!kfifo_is_empty(&tport
->xmit_fifo
))
144 dev_dbg(port
->dev
, "%s - leaving\n", __func__
);
147 static void timbuart_handle_rx_port(struct uart_port
*port
, u32 isr
, u32
*ier
)
150 /* Some RX status is set */
152 u8 ctl
= ioread8(port
->membase
+ TIMBUART_CTRL
) |
153 TIMBUART_CTRL_FLSHRX
;
154 iowrite8(ctl
, port
->membase
+ TIMBUART_CTRL
);
155 port
->icount
.overrun
++;
156 } else if (isr
& (RXDP
))
157 timbuart_rx_chars(port
);
159 /* ack all RX interrupts */
160 iowrite32(RXFLAGS
, port
->membase
+ TIMBUART_ISR
);
163 /* always have the RX interrupts enabled */
164 *ier
|= RXBAF
| RXBF
| RXTT
;
166 dev_dbg(port
->dev
, "%s - leaving\n", __func__
);
169 static void timbuart_tasklet(struct tasklet_struct
*t
)
171 struct timbuart_port
*uart
= from_tasklet(uart
, t
, tasklet
);
174 uart_port_lock(&uart
->port
);
176 isr
= ioread32(uart
->port
.membase
+ TIMBUART_ISR
);
177 dev_dbg(uart
->port
.dev
, "%s ISR: %x\n", __func__
, isr
);
180 timbuart_handle_tx_port(&uart
->port
, isr
, &ier
);
182 timbuart_mctrl_check(&uart
->port
, isr
, &ier
);
185 timbuart_handle_rx_port(&uart
->port
, isr
, &ier
);
187 iowrite32(ier
, uart
->port
.membase
+ TIMBUART_IER
);
189 uart_port_unlock(&uart
->port
);
190 dev_dbg(uart
->port
.dev
, "%s leaving\n", __func__
);
193 static unsigned int timbuart_get_mctrl(struct uart_port
*port
)
195 u8 cts
= ioread8(port
->membase
+ TIMBUART_CTRL
);
196 dev_dbg(port
->dev
, "%s - cts %x\n", __func__
, cts
);
198 if (cts
& TIMBUART_CTRL_CTS
)
199 return TIOCM_CTS
| TIOCM_DSR
| TIOCM_CAR
;
201 return TIOCM_DSR
| TIOCM_CAR
;
204 static void timbuart_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
206 dev_dbg(port
->dev
, "%s - %x\n", __func__
, mctrl
);
208 if (mctrl
& TIOCM_RTS
)
209 iowrite8(TIMBUART_CTRL_RTS
, port
->membase
+ TIMBUART_CTRL
);
211 iowrite8(0, port
->membase
+ TIMBUART_CTRL
);
214 static void timbuart_mctrl_check(struct uart_port
*port
, u32 isr
, u32
*ier
)
218 if (isr
& CTS_DELTA
) {
220 iowrite32(CTS_DELTA
, port
->membase
+ TIMBUART_ISR
);
221 cts
= timbuart_get_mctrl(port
);
222 uart_handle_cts_change(port
, cts
& TIOCM_CTS
);
223 wake_up_interruptible(&port
->state
->port
.delta_msr_wait
);
229 static void timbuart_break_ctl(struct uart_port
*port
, int ctl
)
234 static int timbuart_startup(struct uart_port
*port
)
236 struct timbuart_port
*uart
=
237 container_of(port
, struct timbuart_port
, port
);
239 dev_dbg(port
->dev
, "%s\n", __func__
);
241 iowrite8(TIMBUART_CTRL_FLSHRX
, port
->membase
+ TIMBUART_CTRL
);
242 iowrite32(0x1ff, port
->membase
+ TIMBUART_ISR
);
243 /* Enable all but TX interrupts */
244 iowrite32(RXBAF
| RXBF
| RXTT
| CTS_DELTA
,
245 port
->membase
+ TIMBUART_IER
);
247 return request_irq(port
->irq
, timbuart_handleinterrupt
, IRQF_SHARED
,
251 static void timbuart_shutdown(struct uart_port
*port
)
253 struct timbuart_port
*uart
=
254 container_of(port
, struct timbuart_port
, port
);
255 dev_dbg(port
->dev
, "%s\n", __func__
);
256 free_irq(port
->irq
, uart
);
257 iowrite32(0, port
->membase
+ TIMBUART_IER
);
259 timbuart_flush_buffer(port
);
262 static int get_bindex(int baud
)
266 for (i
= 0; i
< ARRAY_SIZE(baudrates
); i
++)
267 if (baud
<= baudrates
[i
])
273 static void timbuart_set_termios(struct uart_port
*port
,
274 struct ktermios
*termios
,
275 const struct ktermios
*old
)
281 baud
= uart_get_baud_rate(port
, termios
, old
, 0, port
->uartclk
/ 16);
282 bindex
= get_bindex(baud
);
283 dev_dbg(port
->dev
, "%s - bindex %d\n", __func__
, bindex
);
287 baud
= baudrates
[bindex
];
289 /* The serial layer calls into this once with old = NULL when setting
292 tty_termios_copy_hw(termios
, old
);
293 tty_termios_encode_baud_rate(termios
, baud
, baud
);
295 uart_port_lock_irqsave(port
, &flags
);
296 iowrite8((u8
)bindex
, port
->membase
+ TIMBUART_BAUDRATE
);
297 uart_update_timeout(port
, termios
->c_cflag
, baud
);
298 uart_port_unlock_irqrestore(port
, flags
);
301 static const char *timbuart_type(struct uart_port
*port
)
303 return port
->type
== PORT_UNKNOWN
? "timbuart" : NULL
;
306 /* We do not request/release mappings of the registers here,
307 * currently it's done in the proble function.
309 static void timbuart_release_port(struct uart_port
*port
)
311 struct platform_device
*pdev
= to_platform_device(port
->dev
);
313 resource_size(platform_get_resource(pdev
, IORESOURCE_MEM
, 0));
315 if (port
->flags
& UPF_IOREMAP
) {
316 iounmap(port
->membase
);
317 port
->membase
= NULL
;
320 release_mem_region(port
->mapbase
, size
);
323 static int timbuart_request_port(struct uart_port
*port
)
325 struct platform_device
*pdev
= to_platform_device(port
->dev
);
327 resource_size(platform_get_resource(pdev
, IORESOURCE_MEM
, 0));
329 if (!request_mem_region(port
->mapbase
, size
, "timb-uart"))
332 if (port
->flags
& UPF_IOREMAP
) {
333 port
->membase
= ioremap(port
->mapbase
, size
);
334 if (port
->membase
== NULL
) {
335 release_mem_region(port
->mapbase
, size
);
343 static irqreturn_t
timbuart_handleinterrupt(int irq
, void *devid
)
345 struct timbuart_port
*uart
= (struct timbuart_port
*)devid
;
347 if (ioread8(uart
->port
.membase
+ TIMBUART_IPR
)) {
348 uart
->last_ier
= ioread32(uart
->port
.membase
+ TIMBUART_IER
);
350 /* disable interrupts, the tasklet enables them again */
351 iowrite32(0, uart
->port
.membase
+ TIMBUART_IER
);
353 /* fire off bottom half */
354 tasklet_schedule(&uart
->tasklet
);
362 * Configure/autoconfigure the port.
364 static void timbuart_config_port(struct uart_port
*port
, int flags
)
366 if (flags
& UART_CONFIG_TYPE
) {
367 port
->type
= PORT_TIMBUART
;
368 timbuart_request_port(port
);
372 static int timbuart_verify_port(struct uart_port
*port
,
373 struct serial_struct
*ser
)
375 /* we don't want the core code to modify any port params */
379 static const struct uart_ops timbuart_ops
= {
380 .tx_empty
= timbuart_tx_empty
,
381 .set_mctrl
= timbuart_set_mctrl
,
382 .get_mctrl
= timbuart_get_mctrl
,
383 .stop_tx
= timbuart_stop_tx
,
384 .start_tx
= timbuart_start_tx
,
385 .flush_buffer
= timbuart_flush_buffer
,
386 .stop_rx
= timbuart_stop_rx
,
387 .break_ctl
= timbuart_break_ctl
,
388 .startup
= timbuart_startup
,
389 .shutdown
= timbuart_shutdown
,
390 .set_termios
= timbuart_set_termios
,
391 .type
= timbuart_type
,
392 .release_port
= timbuart_release_port
,
393 .request_port
= timbuart_request_port
,
394 .config_port
= timbuart_config_port
,
395 .verify_port
= timbuart_verify_port
398 static struct uart_driver timbuart_driver
= {
399 .owner
= THIS_MODULE
,
400 .driver_name
= "timberdale_uart",
402 .major
= TIMBUART_MAJOR
,
403 .minor
= TIMBUART_MINOR
,
407 static int timbuart_probe(struct platform_device
*dev
)
410 struct timbuart_port
*uart
;
411 struct resource
*iomem
;
413 dev_dbg(&dev
->dev
, "%s\n", __func__
);
415 uart
= kzalloc(sizeof(*uart
), GFP_KERNEL
);
423 uart
->port
.uartclk
= 3250000 * 16;
424 uart
->port
.fifosize
= TIMBUART_FIFO_SIZE
;
425 uart
->port
.regshift
= 2;
426 uart
->port
.iotype
= UPIO_MEM
;
427 uart
->port
.ops
= &timbuart_ops
;
429 uart
->port
.flags
= UPF_BOOT_AUTOCONF
| UPF_IOREMAP
;
431 uart
->port
.dev
= &dev
->dev
;
433 iomem
= platform_get_resource(dev
, IORESOURCE_MEM
, 0);
438 uart
->port
.mapbase
= iomem
->start
;
439 uart
->port
.membase
= NULL
;
441 irq
= platform_get_irq(dev
, 0);
446 uart
->port
.irq
= irq
;
448 tasklet_setup(&uart
->tasklet
, timbuart_tasklet
);
450 err
= uart_register_driver(&timbuart_driver
);
454 err
= uart_add_one_port(&timbuart_driver
, &uart
->port
);
458 platform_set_drvdata(dev
, uart
);
463 uart_unregister_driver(&timbuart_driver
);
467 printk(KERN_ERR
"timberdale: Failed to register Timberdale UART: %d\n",
473 static void timbuart_remove(struct platform_device
*dev
)
475 struct timbuart_port
*uart
= platform_get_drvdata(dev
);
477 tasklet_kill(&uart
->tasklet
);
478 uart_remove_one_port(&timbuart_driver
, &uart
->port
);
479 uart_unregister_driver(&timbuart_driver
);
483 static struct platform_driver timbuart_platform_driver
= {
487 .probe
= timbuart_probe
,
488 .remove
= timbuart_remove
,
491 module_platform_driver(timbuart_platform_driver
);
493 MODULE_DESCRIPTION("Timberdale UART driver");
494 MODULE_LICENSE("GPL v2");
495 MODULE_ALIAS("platform:timb-uart");