2 * Driver core for Samsung SoC onboard UARTs.
4 * Ben Dooks, Copyright (c) 2003-2008 Simtec Electronics
5 * http://armlinux.simtec.co.uk/
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 /* Hote on 2410 error handling
14 * The s3c2410 manual has a love/hate affair with the contents of the
15 * UERSTAT register in the UART blocks, and keeps marking some of the
16 * error bits as reserved. Having checked with the s3c2410x01,
17 * it copes with BREAKs properly, so I am happy to ignore the RESERVED
18 * feature from the latter versions of the manual.
20 * If it becomes aparrent that latter versions of the 2410 remove these
21 * bits, then action will have to be taken to differentiate the versions
22 * and change the policy on BREAK
27 #if defined(CONFIG_SERIAL_SAMSUNG_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
31 #include <linux/dmaengine.h>
32 #include <linux/dma-mapping.h>
33 #include <linux/slab.h>
34 #include <linux/module.h>
35 #include <linux/ioport.h>
37 #include <linux/platform_device.h>
38 #include <linux/init.h>
39 #include <linux/sysrq.h>
40 #include <linux/console.h>
41 #include <linux/tty.h>
42 #include <linux/tty_flip.h>
43 #include <linux/serial_core.h>
44 #include <linux/serial.h>
45 #include <linux/serial_s3c.h>
46 #include <linux/delay.h>
47 #include <linux/clk.h>
48 #include <linux/cpufreq.h>
55 #if defined(CONFIG_SERIAL_SAMSUNG_DEBUG) && \
58 extern void printascii(const char *);
61 static void dbg(const char *fmt, ...)
67 vscnprintf(buff, sizeof(buff), fmt, va);
74 #define dbg(fmt, ...) do { if (0) no_printk(fmt, ##__VA_ARGS__); } while (0)
77 /* UART name and device definitions */
79 #define S3C24XX_SERIAL_NAME "ttySAC"
80 #define S3C24XX_SERIAL_MAJOR 204
81 #define S3C24XX_SERIAL_MINOR 64
83 #define S3C24XX_TX_PIO 1
84 #define S3C24XX_TX_DMA 2
85 #define S3C24XX_RX_PIO 1
86 #define S3C24XX_RX_DMA 2
87 /* macros to change one thing to another */
89 #define tx_enabled(port) ((port)->unused[0])
90 #define rx_enabled(port) ((port)->unused[1])
92 /* flag to ignore all characters coming in */
93 #define RXSTAT_DUMMY_READ (0x10000000)
95 static inline struct s3c24xx_uart_port *to_ourport(struct uart_port *port)
97 return container_of(port, struct s3c24xx_uart_port, port);
100 /* translate a port to the device name */
102 static inline const char *s3c24xx_serial_portname(struct uart_port *port)
104 return to_platform_device(port->dev)->name;
107 static int s3c24xx_serial_txempty_nofifo(struct uart_port *port)
109 return rd_regl(port, S3C2410_UTRSTAT) & S3C2410_UTRSTAT_TXE;
113 * s3c64xx and later SoC's include the interrupt mask and status registers in
114 * the controller itself, unlike the s3c24xx SoC's which have these registers
115 * in the interrupt controller. Check if the port type is s3c64xx or higher.
117 static int s3c24xx_serial_has_interrupt_mask(struct uart_port *port)
119 return to_ourport(port)->info->type == PORT_S3C6400;
122 static void s3c24xx_serial_rx_enable(struct uart_port *port)
125 unsigned int ucon, ufcon;
128 spin_lock_irqsave(&port->lock, flags);
130 while (--count && !s3c24xx_serial_txempty_nofifo(port))
133 ufcon = rd_regl(port, S3C2410_UFCON);
134 ufcon |= S3C2410_UFCON_RESETRX;
135 wr_regl(port, S3C2410_UFCON, ufcon);
137 ucon = rd_regl(port, S3C2410_UCON);
138 ucon |= S3C2410_UCON_RXIRQMODE;
139 wr_regl(port, S3C2410_UCON, ucon);
141 rx_enabled(port) = 1;
142 spin_unlock_irqrestore(&port->lock, flags);
145 static void s3c24xx_serial_rx_disable(struct uart_port *port)
150 spin_lock_irqsave(&port->lock, flags);
152 ucon = rd_regl(port, S3C2410_UCON);
153 ucon &= ~S3C2410_UCON_RXIRQMODE;
154 wr_regl(port, S3C2410_UCON, ucon);
156 rx_enabled(port) = 0;
157 spin_unlock_irqrestore(&port->lock, flags);
160 static void s3c24xx_serial_stop_tx(struct uart_port *port)
162 struct s3c24xx_uart_port *ourport = to_ourport(port);
163 struct s3c24xx_uart_dma *dma = ourport->dma;
164 struct circ_buf *xmit = &port->state->xmit;
165 struct dma_tx_state state;
168 if (!tx_enabled(port))
171 if (s3c24xx_serial_has_interrupt_mask(port))
172 s3c24xx_set_bit(port, S3C64XX_UINTM_TXD, S3C64XX_UINTM);
174 disable_irq_nosync(ourport->tx_irq);
176 if (dma && dma->tx_chan && ourport->tx_in_progress == S3C24XX_TX_DMA) {
177 dmaengine_pause(dma->tx_chan);
178 dmaengine_tx_status(dma->tx_chan, dma->tx_cookie, &state);
179 dmaengine_terminate_all(dma->tx_chan);
180 dma_sync_single_for_cpu(ourport->port.dev,
181 dma->tx_transfer_addr, dma->tx_size, DMA_TO_DEVICE);
182 async_tx_ack(dma->tx_desc);
183 count = dma->tx_bytes_requested - state.residue;
184 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
185 port->icount.tx += count;
188 tx_enabled(port) = 0;
189 ourport->tx_in_progress = 0;
191 if (port->flags & UPF_CONS_FLOW)
192 s3c24xx_serial_rx_enable(port);
194 ourport->tx_mode = 0;
197 static void s3c24xx_serial_start_next_tx(struct s3c24xx_uart_port *ourport);
199 static void s3c24xx_serial_tx_dma_complete(void *args)
201 struct s3c24xx_uart_port *ourport = args;
202 struct uart_port *port = &ourport->port;
203 struct circ_buf *xmit = &port->state->xmit;
204 struct s3c24xx_uart_dma *dma = ourport->dma;
205 struct dma_tx_state state;
210 dmaengine_tx_status(dma->tx_chan, dma->tx_cookie, &state);
211 count = dma->tx_bytes_requested - state.residue;
212 async_tx_ack(dma->tx_desc);
214 dma_sync_single_for_cpu(ourport->port.dev, dma->tx_transfer_addr,
215 dma->tx_size, DMA_TO_DEVICE);
217 spin_lock_irqsave(&port->lock, flags);
219 xmit->tail = (xmit->tail + count) & (UART_XMIT_SIZE - 1);
220 port->icount.tx += count;
221 ourport->tx_in_progress = 0;
223 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
224 uart_write_wakeup(port);
226 s3c24xx_serial_start_next_tx(ourport);
227 spin_unlock_irqrestore(&port->lock, flags);
230 static void enable_tx_dma(struct s3c24xx_uart_port *ourport)
232 struct uart_port *port = &ourport->port;
235 /* Mask Tx interrupt */
236 if (s3c24xx_serial_has_interrupt_mask(port))
237 s3c24xx_set_bit(port, S3C64XX_UINTM_TXD, S3C64XX_UINTM);
239 disable_irq_nosync(ourport->tx_irq);
241 /* Enable tx dma mode */
242 ucon = rd_regl(port, S3C2410_UCON);
243 ucon &= ~(S3C64XX_UCON_TXBURST_MASK | S3C64XX_UCON_TXMODE_MASK);
244 ucon |= (dma_get_cache_alignment() >= 16) ?
245 S3C64XX_UCON_TXBURST_16 : S3C64XX_UCON_TXBURST_1;
246 ucon |= S3C64XX_UCON_TXMODE_DMA;
247 wr_regl(port, S3C2410_UCON, ucon);
249 ourport->tx_mode = S3C24XX_TX_DMA;
252 static void enable_tx_pio(struct s3c24xx_uart_port *ourport)
254 struct uart_port *port = &ourport->port;
257 /* Set ufcon txtrig */
258 ourport->tx_in_progress = S3C24XX_TX_PIO;
259 ufcon = rd_regl(port, S3C2410_UFCON);
260 wr_regl(port, S3C2410_UFCON, ufcon);
262 /* Enable tx pio mode */
263 ucon = rd_regl(port, S3C2410_UCON);
264 ucon &= ~(S3C64XX_UCON_TXMODE_MASK);
265 ucon |= S3C64XX_UCON_TXMODE_CPU;
266 wr_regl(port, S3C2410_UCON, ucon);
268 /* Unmask Tx interrupt */
269 if (s3c24xx_serial_has_interrupt_mask(port))
270 s3c24xx_clear_bit(port, S3C64XX_UINTM_TXD,
273 enable_irq(ourport->tx_irq);
275 ourport->tx_mode = S3C24XX_TX_PIO;
278 static void s3c24xx_serial_start_tx_pio(struct s3c24xx_uart_port *ourport)
280 if (ourport->tx_mode != S3C24XX_TX_PIO)
281 enable_tx_pio(ourport);
284 static int s3c24xx_serial_start_tx_dma(struct s3c24xx_uart_port *ourport,
287 struct uart_port *port = &ourport->port;
288 struct circ_buf *xmit = &port->state->xmit;
289 struct s3c24xx_uart_dma *dma = ourport->dma;
292 if (ourport->tx_mode != S3C24XX_TX_DMA)
293 enable_tx_dma(ourport);
295 dma->tx_size = count & ~(dma_get_cache_alignment() - 1);
296 dma->tx_transfer_addr = dma->tx_addr + xmit->tail;
298 dma_sync_single_for_device(ourport->port.dev, dma->tx_transfer_addr,
299 dma->tx_size, DMA_TO_DEVICE);
301 dma->tx_desc = dmaengine_prep_slave_single(dma->tx_chan,
302 dma->tx_transfer_addr, dma->tx_size,
303 DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT);
305 dev_err(ourport->port.dev, "Unable to get desc for Tx\n");
309 dma->tx_desc->callback = s3c24xx_serial_tx_dma_complete;
310 dma->tx_desc->callback_param = ourport;
311 dma->tx_bytes_requested = dma->tx_size;
313 ourport->tx_in_progress = S3C24XX_TX_DMA;
314 dma->tx_cookie = dmaengine_submit(dma->tx_desc);
315 dma_async_issue_pending(dma->tx_chan);
319 static void s3c24xx_serial_start_next_tx(struct s3c24xx_uart_port *ourport)
321 struct uart_port *port = &ourport->port;
322 struct circ_buf *xmit = &port->state->xmit;
325 /* Get data size up to the end of buffer */
326 count = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
329 s3c24xx_serial_stop_tx(port);
333 if (!ourport->dma || !ourport->dma->tx_chan ||
334 count < ourport->min_dma_size ||
335 xmit->tail & (dma_get_cache_alignment() - 1))
336 s3c24xx_serial_start_tx_pio(ourport);
338 s3c24xx_serial_start_tx_dma(ourport, count);
341 static void s3c24xx_serial_start_tx(struct uart_port *port)
343 struct s3c24xx_uart_port *ourport = to_ourport(port);
344 struct circ_buf *xmit = &port->state->xmit;
346 if (!tx_enabled(port)) {
347 if (port->flags & UPF_CONS_FLOW)
348 s3c24xx_serial_rx_disable(port);
350 tx_enabled(port) = 1;
351 if (!ourport->dma || !ourport->dma->tx_chan)
352 s3c24xx_serial_start_tx_pio(ourport);
355 if (ourport->dma && ourport->dma->tx_chan) {
356 if (!uart_circ_empty(xmit) && !ourport->tx_in_progress)
357 s3c24xx_serial_start_next_tx(ourport);
361 static void s3c24xx_uart_copy_rx_to_tty(struct s3c24xx_uart_port *ourport,
362 struct tty_port *tty, int count)
364 struct s3c24xx_uart_dma *dma = ourport->dma;
370 dma_sync_single_for_cpu(ourport->port.dev, dma->rx_addr,
371 dma->rx_size, DMA_FROM_DEVICE);
373 ourport->port.icount.rx += count;
375 dev_err(ourport->port.dev, "No tty port\n");
378 copied = tty_insert_flip_string(tty,
379 ((unsigned char *)(ourport->dma->rx_buf)), count);
380 if (copied != count) {
382 dev_err(ourport->port.dev, "RxData copy to tty layer failed\n");
386 static void s3c24xx_serial_stop_rx(struct uart_port *port)
388 struct s3c24xx_uart_port *ourport = to_ourport(port);
389 struct s3c24xx_uart_dma *dma = ourport->dma;
390 struct tty_port *t = &port->state->port;
391 struct dma_tx_state state;
392 enum dma_status dma_status;
393 unsigned int received;
395 if (rx_enabled(port)) {
396 dbg("s3c24xx_serial_stop_rx: port=%p\n", port);
397 if (s3c24xx_serial_has_interrupt_mask(port))
398 s3c24xx_set_bit(port, S3C64XX_UINTM_RXD,
401 disable_irq_nosync(ourport->rx_irq);
402 rx_enabled(port) = 0;
404 if (dma && dma->rx_chan) {
405 dmaengine_pause(dma->tx_chan);
406 dma_status = dmaengine_tx_status(dma->rx_chan,
407 dma->rx_cookie, &state);
408 if (dma_status == DMA_IN_PROGRESS ||
409 dma_status == DMA_PAUSED) {
410 received = dma->rx_bytes_requested - state.residue;
411 dmaengine_terminate_all(dma->rx_chan);
412 s3c24xx_uart_copy_rx_to_tty(ourport, t, received);
417 static inline struct s3c24xx_uart_info
418 *s3c24xx_port_to_info(struct uart_port *port)
420 return to_ourport(port)->info;
423 static inline struct s3c2410_uartcfg
424 *s3c24xx_port_to_cfg(struct uart_port *port)
426 struct s3c24xx_uart_port *ourport;
428 if (port->dev == NULL)
431 ourport = container_of(port, struct s3c24xx_uart_port, port);
435 static int s3c24xx_serial_rx_fifocnt(struct s3c24xx_uart_port *ourport,
436 unsigned long ufstat)
438 struct s3c24xx_uart_info *info = ourport->info;
440 if (ufstat & info->rx_fifofull)
441 return ourport->port.fifosize;
443 return (ufstat & info->rx_fifomask) >> info->rx_fifoshift;
446 static void s3c64xx_start_rx_dma(struct s3c24xx_uart_port *ourport);
447 static void s3c24xx_serial_rx_dma_complete(void *args)
449 struct s3c24xx_uart_port *ourport = args;
450 struct uart_port *port = &ourport->port;
452 struct s3c24xx_uart_dma *dma = ourport->dma;
453 struct tty_port *t = &port->state->port;
454 struct tty_struct *tty = tty_port_tty_get(&ourport->port.state->port);
456 struct dma_tx_state state;
460 dmaengine_tx_status(dma->rx_chan, dma->rx_cookie, &state);
461 received = dma->rx_bytes_requested - state.residue;
462 async_tx_ack(dma->rx_desc);
464 spin_lock_irqsave(&port->lock, flags);
467 s3c24xx_uart_copy_rx_to_tty(ourport, t, received);
470 tty_flip_buffer_push(t);
474 s3c64xx_start_rx_dma(ourport);
476 spin_unlock_irqrestore(&port->lock, flags);
479 static void s3c64xx_start_rx_dma(struct s3c24xx_uart_port *ourport)
481 struct s3c24xx_uart_dma *dma = ourport->dma;
483 dma_sync_single_for_device(ourport->port.dev, dma->rx_addr,
484 dma->rx_size, DMA_FROM_DEVICE);
486 dma->rx_desc = dmaengine_prep_slave_single(dma->rx_chan,
487 dma->rx_addr, dma->rx_size, DMA_DEV_TO_MEM,
490 dev_err(ourport->port.dev, "Unable to get desc for Rx\n");
494 dma->rx_desc->callback = s3c24xx_serial_rx_dma_complete;
495 dma->rx_desc->callback_param = ourport;
496 dma->rx_bytes_requested = dma->rx_size;
498 dma->rx_cookie = dmaengine_submit(dma->rx_desc);
499 dma_async_issue_pending(dma->rx_chan);
502 /* ? - where has parity gone?? */
503 #define S3C2410_UERSTAT_PARITY (0x1000)
505 static void enable_rx_dma(struct s3c24xx_uart_port *ourport)
507 struct uart_port *port = &ourport->port;
510 /* set Rx mode to DMA mode */
511 ucon = rd_regl(port, S3C2410_UCON);
512 ucon &= ~(S3C64XX_UCON_RXBURST_MASK |
513 S3C64XX_UCON_TIMEOUT_MASK |
514 S3C64XX_UCON_EMPTYINT_EN |
515 S3C64XX_UCON_DMASUS_EN |
516 S3C64XX_UCON_TIMEOUT_EN |
517 S3C64XX_UCON_RXMODE_MASK);
518 ucon |= S3C64XX_UCON_RXBURST_16 |
519 0xf << S3C64XX_UCON_TIMEOUT_SHIFT |
520 S3C64XX_UCON_EMPTYINT_EN |
521 S3C64XX_UCON_TIMEOUT_EN |
522 S3C64XX_UCON_RXMODE_DMA;
523 wr_regl(port, S3C2410_UCON, ucon);
525 ourport->rx_mode = S3C24XX_RX_DMA;
528 static void enable_rx_pio(struct s3c24xx_uart_port *ourport)
530 struct uart_port *port = &ourport->port;
533 /* set Rx mode to DMA mode */
534 ucon = rd_regl(port, S3C2410_UCON);
535 ucon &= ~(S3C64XX_UCON_TIMEOUT_MASK |
536 S3C64XX_UCON_EMPTYINT_EN |
537 S3C64XX_UCON_DMASUS_EN |
538 S3C64XX_UCON_TIMEOUT_EN |
539 S3C64XX_UCON_RXMODE_MASK);
540 ucon |= 0xf << S3C64XX_UCON_TIMEOUT_SHIFT |
541 S3C64XX_UCON_TIMEOUT_EN |
542 S3C64XX_UCON_RXMODE_CPU;
543 wr_regl(port, S3C2410_UCON, ucon);
545 ourport->rx_mode = S3C24XX_RX_PIO;
548 static void s3c24xx_serial_rx_drain_fifo(struct s3c24xx_uart_port *ourport);
550 static irqreturn_t s3c24xx_serial_rx_chars_dma(void *dev_id)
552 unsigned int utrstat, ufstat, received;
553 struct s3c24xx_uart_port *ourport = dev_id;
554 struct uart_port *port = &ourport->port;
555 struct s3c24xx_uart_dma *dma = ourport->dma;
556 struct tty_struct *tty = tty_port_tty_get(&ourport->port.state->port);
557 struct tty_port *t = &port->state->port;
559 struct dma_tx_state state;
561 utrstat = rd_regl(port, S3C2410_UTRSTAT);
562 ufstat = rd_regl(port, S3C2410_UFSTAT);
564 spin_lock_irqsave(&port->lock, flags);
566 if (!(utrstat & S3C2410_UTRSTAT_TIMEOUT)) {
567 s3c64xx_start_rx_dma(ourport);
568 if (ourport->rx_mode == S3C24XX_RX_PIO)
569 enable_rx_dma(ourport);
573 if (ourport->rx_mode == S3C24XX_RX_DMA) {
574 dmaengine_pause(dma->rx_chan);
575 dmaengine_tx_status(dma->rx_chan, dma->rx_cookie, &state);
576 dmaengine_terminate_all(dma->rx_chan);
577 received = dma->rx_bytes_requested - state.residue;
578 s3c24xx_uart_copy_rx_to_tty(ourport, t, received);
580 enable_rx_pio(ourport);
583 s3c24xx_serial_rx_drain_fifo(ourport);
586 tty_flip_buffer_push(t);
590 wr_regl(port, S3C2410_UTRSTAT, S3C2410_UTRSTAT_TIMEOUT);
593 spin_unlock_irqrestore(&port->lock, flags);
598 static void s3c24xx_serial_rx_drain_fifo(struct s3c24xx_uart_port *ourport)
600 struct uart_port *port = &ourport->port;
601 unsigned int ufcon, ch, flag, ufstat, uerstat;
602 unsigned int fifocnt = 0;
603 int max_count = port->fifosize;
605 while (max_count-- > 0) {
607 * Receive all characters known to be in FIFO
608 * before reading FIFO level again
611 ufstat = rd_regl(port, S3C2410_UFSTAT);
612 fifocnt = s3c24xx_serial_rx_fifocnt(ourport, ufstat);
618 uerstat = rd_regl(port, S3C2410_UERSTAT);
619 ch = rd_regb(port, S3C2410_URXH);
621 if (port->flags & UPF_CONS_FLOW) {
622 int txe = s3c24xx_serial_txempty_nofifo(port);
624 if (rx_enabled(port)) {
626 rx_enabled(port) = 0;
631 ufcon = rd_regl(port, S3C2410_UFCON);
632 ufcon |= S3C2410_UFCON_RESETRX;
633 wr_regl(port, S3C2410_UFCON, ufcon);
634 rx_enabled(port) = 1;
641 /* insert the character into the buffer */
646 if (unlikely(uerstat & S3C2410_UERSTAT_ANY)) {
647 dbg("rxerr: port ch=0x%02x, rxs=0x%08x\n",
650 /* check for break */
651 if (uerstat & S3C2410_UERSTAT_BREAK) {
654 if (uart_handle_break(port))
655 continue; /* Ignore character */
658 if (uerstat & S3C2410_UERSTAT_FRAME)
659 port->icount.frame++;
660 if (uerstat & S3C2410_UERSTAT_OVERRUN)
661 port->icount.overrun++;
663 uerstat &= port->read_status_mask;
665 if (uerstat & S3C2410_UERSTAT_BREAK)
667 else if (uerstat & S3C2410_UERSTAT_PARITY)
669 else if (uerstat & (S3C2410_UERSTAT_FRAME |
670 S3C2410_UERSTAT_OVERRUN))
674 if (uart_handle_sysrq_char(port, ch))
675 continue; /* Ignore character */
677 uart_insert_char(port, uerstat, S3C2410_UERSTAT_OVERRUN,
681 tty_flip_buffer_push(&port->state->port);
684 static irqreturn_t s3c24xx_serial_rx_chars_pio(void *dev_id)
686 struct s3c24xx_uart_port *ourport = dev_id;
687 struct uart_port *port = &ourport->port;
690 spin_lock_irqsave(&port->lock, flags);
691 s3c24xx_serial_rx_drain_fifo(ourport);
692 spin_unlock_irqrestore(&port->lock, flags);
698 static irqreturn_t s3c24xx_serial_rx_chars(int irq, void *dev_id)
700 struct s3c24xx_uart_port *ourport = dev_id;
702 if (ourport->dma && ourport->dma->rx_chan)
703 return s3c24xx_serial_rx_chars_dma(dev_id);
704 return s3c24xx_serial_rx_chars_pio(dev_id);
707 static irqreturn_t s3c24xx_serial_tx_chars(int irq, void *id)
709 struct s3c24xx_uart_port *ourport = id;
710 struct uart_port *port = &ourport->port;
711 struct circ_buf *xmit = &port->state->xmit;
713 int count, dma_count = 0;
715 spin_lock_irqsave(&port->lock, flags);
717 count = CIRC_CNT_TO_END(xmit->head, xmit->tail, UART_XMIT_SIZE);
719 if (ourport->dma && ourport->dma->tx_chan &&
720 count >= ourport->min_dma_size) {
721 int align = dma_get_cache_alignment() -
722 (xmit->tail & (dma_get_cache_alignment() - 1));
723 if (count-align >= ourport->min_dma_size) {
724 dma_count = count-align;
730 wr_regb(port, S3C2410_UTXH, port->x_char);
736 /* if there isn't anything more to transmit, or the uart is now
737 * stopped, disable the uart and exit
740 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
741 s3c24xx_serial_stop_tx(port);
745 /* try and drain the buffer... */
747 if (count > port->fifosize) {
748 count = port->fifosize;
752 while (!uart_circ_empty(xmit) && count > 0) {
753 if (rd_regl(port, S3C2410_UFSTAT) & ourport->info->tx_fifofull)
756 wr_regb(port, S3C2410_UTXH, xmit->buf[xmit->tail]);
757 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
762 if (!count && dma_count) {
763 s3c24xx_serial_start_tx_dma(ourport, dma_count);
767 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) {
768 spin_unlock(&port->lock);
769 uart_write_wakeup(port);
770 spin_lock(&port->lock);
773 if (uart_circ_empty(xmit))
774 s3c24xx_serial_stop_tx(port);
777 spin_unlock_irqrestore(&port->lock, flags);
781 /* interrupt handler for s3c64xx and later SoC's.*/
782 static irqreturn_t s3c64xx_serial_handle_irq(int irq, void *id)
784 struct s3c24xx_uart_port *ourport = id;
785 struct uart_port *port = &ourport->port;
786 unsigned int pend = rd_regl(port, S3C64XX_UINTP);
787 irqreturn_t ret = IRQ_HANDLED;
789 if (pend & S3C64XX_UINTM_RXD_MSK) {
790 ret = s3c24xx_serial_rx_chars(irq, id);
791 wr_regl(port, S3C64XX_UINTP, S3C64XX_UINTM_RXD_MSK);
793 if (pend & S3C64XX_UINTM_TXD_MSK) {
794 ret = s3c24xx_serial_tx_chars(irq, id);
795 wr_regl(port, S3C64XX_UINTP, S3C64XX_UINTM_TXD_MSK);
800 static unsigned int s3c24xx_serial_tx_empty(struct uart_port *port)
802 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
803 unsigned long ufstat = rd_regl(port, S3C2410_UFSTAT);
804 unsigned long ufcon = rd_regl(port, S3C2410_UFCON);
806 if (ufcon & S3C2410_UFCON_FIFOMODE) {
807 if ((ufstat & info->tx_fifomask) != 0 ||
808 (ufstat & info->tx_fifofull))
814 return s3c24xx_serial_txempty_nofifo(port);
817 /* no modem control lines */
818 static unsigned int s3c24xx_serial_get_mctrl(struct uart_port *port)
820 unsigned int umstat = rd_regb(port, S3C2410_UMSTAT);
822 if (umstat & S3C2410_UMSTAT_CTS)
823 return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
825 return TIOCM_CAR | TIOCM_DSR;
828 static void s3c24xx_serial_set_mctrl(struct uart_port *port, unsigned int mctrl)
830 unsigned int umcon = rd_regl(port, S3C2410_UMCON);
832 if (mctrl & TIOCM_RTS)
833 umcon |= S3C2410_UMCOM_RTS_LOW;
835 umcon &= ~S3C2410_UMCOM_RTS_LOW;
837 wr_regl(port, S3C2410_UMCON, umcon);
840 static void s3c24xx_serial_break_ctl(struct uart_port *port, int break_state)
845 spin_lock_irqsave(&port->lock, flags);
847 ucon = rd_regl(port, S3C2410_UCON);
850 ucon |= S3C2410_UCON_SBREAK;
852 ucon &= ~S3C2410_UCON_SBREAK;
854 wr_regl(port, S3C2410_UCON, ucon);
856 spin_unlock_irqrestore(&port->lock, flags);
859 static int s3c24xx_serial_request_dma(struct s3c24xx_uart_port *p)
861 struct s3c24xx_uart_dma *dma = p->dma;
865 /* Default slave configuration parameters */
866 dma->rx_conf.direction = DMA_DEV_TO_MEM;
867 dma->rx_conf.src_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
868 dma->rx_conf.src_addr = p->port.mapbase + S3C2410_URXH;
869 dma->rx_conf.src_maxburst = 1;
871 dma->tx_conf.direction = DMA_MEM_TO_DEV;
872 dma->tx_conf.dst_addr_width = DMA_SLAVE_BUSWIDTH_1_BYTE;
873 dma->tx_conf.dst_addr = p->port.mapbase + S3C2410_UTXH;
874 dma->tx_conf.dst_maxburst = 1;
877 dma_cap_set(DMA_SLAVE, mask);
879 dma->rx_chan = dma_request_slave_channel_compat(mask, dma->fn,
880 dma->rx_param, p->port.dev, "rx");
884 dmaengine_slave_config(dma->rx_chan, &dma->rx_conf);
886 dma->tx_chan = dma_request_slave_channel_compat(mask, dma->fn,
887 dma->tx_param, p->port.dev, "tx");
889 dma_release_channel(dma->rx_chan);
893 dmaengine_slave_config(dma->tx_chan, &dma->tx_conf);
896 dma->rx_size = PAGE_SIZE;
898 dma->rx_buf = kmalloc(dma->rx_size, GFP_KERNEL);
901 dma_release_channel(dma->rx_chan);
902 dma_release_channel(dma->tx_chan);
906 dma->rx_addr = dma_map_single(p->port.dev, dma->rx_buf,
907 dma->rx_size, DMA_FROM_DEVICE);
909 spin_lock_irqsave(&p->port.lock, flags);
912 dma->tx_addr = dma_map_single(p->port.dev, p->port.state->xmit.buf,
913 UART_XMIT_SIZE, DMA_TO_DEVICE);
915 spin_unlock_irqrestore(&p->port.lock, flags);
920 static void s3c24xx_serial_release_dma(struct s3c24xx_uart_port *p)
922 struct s3c24xx_uart_dma *dma = p->dma;
925 dmaengine_terminate_all(dma->rx_chan);
926 dma_unmap_single(p->port.dev, dma->rx_addr,
927 dma->rx_size, DMA_FROM_DEVICE);
929 dma_release_channel(dma->rx_chan);
934 dmaengine_terminate_all(dma->tx_chan);
935 dma_unmap_single(p->port.dev, dma->tx_addr,
936 UART_XMIT_SIZE, DMA_TO_DEVICE);
937 dma_release_channel(dma->tx_chan);
942 static void s3c24xx_serial_shutdown(struct uart_port *port)
944 struct s3c24xx_uart_port *ourport = to_ourport(port);
946 if (ourport->tx_claimed) {
947 if (!s3c24xx_serial_has_interrupt_mask(port))
948 free_irq(ourport->tx_irq, ourport);
949 tx_enabled(port) = 0;
950 ourport->tx_claimed = 0;
951 ourport->tx_mode = 0;
954 if (ourport->rx_claimed) {
955 if (!s3c24xx_serial_has_interrupt_mask(port))
956 free_irq(ourport->rx_irq, ourport);
957 ourport->rx_claimed = 0;
958 rx_enabled(port) = 0;
961 /* Clear pending interrupts and mask all interrupts */
962 if (s3c24xx_serial_has_interrupt_mask(port)) {
963 free_irq(port->irq, ourport);
965 wr_regl(port, S3C64XX_UINTP, 0xf);
966 wr_regl(port, S3C64XX_UINTM, 0xf);
970 s3c24xx_serial_release_dma(ourport);
972 ourport->tx_in_progress = 0;
975 static int s3c24xx_serial_startup(struct uart_port *port)
977 struct s3c24xx_uart_port *ourport = to_ourport(port);
980 dbg("s3c24xx_serial_startup: port=%p (%08llx,%p)\n",
981 port, (unsigned long long)port->mapbase, port->membase);
983 rx_enabled(port) = 1;
985 ret = request_irq(ourport->rx_irq, s3c24xx_serial_rx_chars, 0,
986 s3c24xx_serial_portname(port), ourport);
989 dev_err(port->dev, "cannot get irq %d\n", ourport->rx_irq);
993 ourport->rx_claimed = 1;
995 dbg("requesting tx irq...\n");
997 tx_enabled(port) = 1;
999 ret = request_irq(ourport->tx_irq, s3c24xx_serial_tx_chars, 0,
1000 s3c24xx_serial_portname(port), ourport);
1003 dev_err(port->dev, "cannot get irq %d\n", ourport->tx_irq);
1007 ourport->tx_claimed = 1;
1009 dbg("s3c24xx_serial_startup ok\n");
1011 /* the port reset code should have done the correct
1012 * register setup for the port controls */
1017 s3c24xx_serial_shutdown(port);
1021 static int s3c64xx_serial_startup(struct uart_port *port)
1023 struct s3c24xx_uart_port *ourport = to_ourport(port);
1024 unsigned long flags;
1028 dbg("s3c64xx_serial_startup: port=%p (%08llx,%p)\n",
1029 port, (unsigned long long)port->mapbase, port->membase);
1031 wr_regl(port, S3C64XX_UINTM, 0xf);
1033 ret = s3c24xx_serial_request_dma(ourport);
1036 "DMA request failed, DMA will not be used\n");
1037 devm_kfree(port->dev, ourport->dma);
1038 ourport->dma = NULL;
1042 ret = request_irq(port->irq, s3c64xx_serial_handle_irq, IRQF_SHARED,
1043 s3c24xx_serial_portname(port), ourport);
1045 dev_err(port->dev, "cannot get irq %d\n", port->irq);
1049 /* For compatibility with s3c24xx Soc's */
1050 rx_enabled(port) = 1;
1051 ourport->rx_claimed = 1;
1052 tx_enabled(port) = 0;
1053 ourport->tx_claimed = 1;
1055 spin_lock_irqsave(&port->lock, flags);
1057 ufcon = rd_regl(port, S3C2410_UFCON);
1058 ufcon |= S3C2410_UFCON_RESETRX | S5PV210_UFCON_RXTRIG8;
1059 if (!uart_console(port))
1060 ufcon |= S3C2410_UFCON_RESETTX;
1061 wr_regl(port, S3C2410_UFCON, ufcon);
1063 enable_rx_pio(ourport);
1065 spin_unlock_irqrestore(&port->lock, flags);
1067 /* Enable Rx Interrupt */
1068 s3c24xx_clear_bit(port, S3C64XX_UINTM_RXD, S3C64XX_UINTM);
1070 dbg("s3c64xx_serial_startup ok\n");
1074 /* power power management control */
1076 static void s3c24xx_serial_pm(struct uart_port *port, unsigned int level,
1079 struct s3c24xx_uart_port *ourport = to_ourport(port);
1080 int timeout = 10000;
1082 ourport->pm_level = level;
1086 while (--timeout && !s3c24xx_serial_txempty_nofifo(port))
1089 if (!IS_ERR(ourport->baudclk))
1090 clk_disable_unprepare(ourport->baudclk);
1092 clk_disable_unprepare(ourport->clk);
1096 clk_prepare_enable(ourport->clk);
1098 if (!IS_ERR(ourport->baudclk))
1099 clk_prepare_enable(ourport->baudclk);
1103 dev_err(port->dev, "s3c24xx_serial: unknown pm %d\n", level);
1107 /* baud rate calculation
1109 * The UARTs on the S3C2410/S3C2440 can take their clocks from a number
1110 * of different sources, including the peripheral clock ("pclk") and an
1111 * external clock ("uclk"). The S3C2440 also adds the core clock ("fclk")
1112 * with a programmable extra divisor.
1114 * The following code goes through the clock sources, and calculates the
1115 * baud clocks (and the resultant actual baud rates) and then tries to
1116 * pick the closest one and select that.
1120 #define MAX_CLK_NAME_LENGTH 15
1122 static inline int s3c24xx_serial_getsource(struct uart_port *port)
1124 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
1127 if (info->num_clks == 1)
1130 ucon = rd_regl(port, S3C2410_UCON);
1131 ucon &= info->clksel_mask;
1132 return ucon >> info->clksel_shift;
1135 static void s3c24xx_serial_setsource(struct uart_port *port,
1136 unsigned int clk_sel)
1138 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
1141 if (info->num_clks == 1)
1144 ucon = rd_regl(port, S3C2410_UCON);
1145 if ((ucon & info->clksel_mask) >> info->clksel_shift == clk_sel)
1148 ucon &= ~info->clksel_mask;
1149 ucon |= clk_sel << info->clksel_shift;
1150 wr_regl(port, S3C2410_UCON, ucon);
1153 static unsigned int s3c24xx_serial_getclk(struct s3c24xx_uart_port *ourport,
1154 unsigned int req_baud, struct clk **best_clk,
1155 unsigned int *clk_num)
1157 struct s3c24xx_uart_info *info = ourport->info;
1160 unsigned int cnt, baud, quot, best_quot = 0;
1161 char clkname[MAX_CLK_NAME_LENGTH];
1162 int calc_deviation, deviation = (1 << 30) - 1;
1164 for (cnt = 0; cnt < info->num_clks; cnt++) {
1165 /* Keep selected clock if provided */
1166 if (ourport->cfg->clk_sel &&
1167 !(ourport->cfg->clk_sel & (1 << cnt)))
1170 sprintf(clkname, "clk_uart_baud%d", cnt);
1171 clk = clk_get(ourport->port.dev, clkname);
1175 rate = clk_get_rate(clk);
1179 if (ourport->info->has_divslot) {
1180 unsigned long div = rate / req_baud;
1182 /* The UDIVSLOT register on the newer UARTs allows us to
1183 * get a divisor adjustment of 1/16th on the baud clock.
1185 * We don't keep the UDIVSLOT value (the 16ths we
1186 * calculated by not multiplying the baud by 16) as it
1187 * is easy enough to recalculate.
1193 quot = (rate + (8 * req_baud)) / (16 * req_baud);
1194 baud = rate / (quot * 16);
1198 calc_deviation = req_baud - baud;
1199 if (calc_deviation < 0)
1200 calc_deviation = -calc_deviation;
1202 if (calc_deviation < deviation) {
1206 deviation = calc_deviation;
1215 * This table takes the fractional value of the baud divisor and gives
1216 * the recommended setting for the UDIVSLOT register.
1218 static u16 udivslot_table[16] = {
1237 static void s3c24xx_serial_set_termios(struct uart_port *port,
1238 struct ktermios *termios,
1239 struct ktermios *old)
1241 struct s3c2410_uartcfg *cfg = s3c24xx_port_to_cfg(port);
1242 struct s3c24xx_uart_port *ourport = to_ourport(port);
1243 struct clk *clk = ERR_PTR(-EINVAL);
1244 unsigned long flags;
1245 unsigned int baud, quot, clk_sel = 0;
1248 unsigned int udivslot = 0;
1251 * We don't support modem control lines.
1253 termios->c_cflag &= ~(HUPCL | CMSPAR);
1254 termios->c_cflag |= CLOCAL;
1257 * Ask the core to calculate the divisor for us.
1260 baud = uart_get_baud_rate(port, termios, old, 0, 115200*8);
1261 quot = s3c24xx_serial_getclk(ourport, baud, &clk, &clk_sel);
1262 if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
1263 quot = port->custom_divisor;
1267 /* check to see if we need to change clock source */
1269 if (ourport->baudclk != clk) {
1270 clk_prepare_enable(clk);
1272 s3c24xx_serial_setsource(port, clk_sel);
1274 if (!IS_ERR(ourport->baudclk)) {
1275 clk_disable_unprepare(ourport->baudclk);
1276 ourport->baudclk = ERR_PTR(-EINVAL);
1279 ourport->baudclk = clk;
1280 ourport->baudclk_rate = clk ? clk_get_rate(clk) : 0;
1283 if (ourport->info->has_divslot) {
1284 unsigned int div = ourport->baudclk_rate / baud;
1286 if (cfg->has_fracval) {
1287 udivslot = (div & 15);
1288 dbg("fracval = %04x\n", udivslot);
1290 udivslot = udivslot_table[div & 15];
1291 dbg("udivslot = %04x (div %d)\n", udivslot, div & 15);
1295 switch (termios->c_cflag & CSIZE) {
1297 dbg("config: 5bits/char\n");
1298 ulcon = S3C2410_LCON_CS5;
1301 dbg("config: 6bits/char\n");
1302 ulcon = S3C2410_LCON_CS6;
1305 dbg("config: 7bits/char\n");
1306 ulcon = S3C2410_LCON_CS7;
1310 dbg("config: 8bits/char\n");
1311 ulcon = S3C2410_LCON_CS8;
1315 /* preserve original lcon IR settings */
1316 ulcon |= (cfg->ulcon & S3C2410_LCON_IRM);
1318 if (termios->c_cflag & CSTOPB)
1319 ulcon |= S3C2410_LCON_STOPB;
1321 if (termios->c_cflag & PARENB) {
1322 if (termios->c_cflag & PARODD)
1323 ulcon |= S3C2410_LCON_PODD;
1325 ulcon |= S3C2410_LCON_PEVEN;
1327 ulcon |= S3C2410_LCON_PNONE;
1330 spin_lock_irqsave(&port->lock, flags);
1332 dbg("setting ulcon to %08x, brddiv to %d, udivslot %08x\n",
1333 ulcon, quot, udivslot);
1335 wr_regl(port, S3C2410_ULCON, ulcon);
1336 wr_regl(port, S3C2410_UBRDIV, quot);
1338 port->status &= ~UPSTAT_AUTOCTS;
1340 umcon = rd_regl(port, S3C2410_UMCON);
1341 if (termios->c_cflag & CRTSCTS) {
1342 umcon |= S3C2410_UMCOM_AFC;
1343 /* Disable RTS when RX FIFO contains 63 bytes */
1344 umcon &= ~S3C2412_UMCON_AFC_8;
1345 port->status = UPSTAT_AUTOCTS;
1347 umcon &= ~S3C2410_UMCOM_AFC;
1349 wr_regl(port, S3C2410_UMCON, umcon);
1351 if (ourport->info->has_divslot)
1352 wr_regl(port, S3C2443_DIVSLOT, udivslot);
1354 dbg("uart: ulcon = 0x%08x, ucon = 0x%08x, ufcon = 0x%08x\n",
1355 rd_regl(port, S3C2410_ULCON),
1356 rd_regl(port, S3C2410_UCON),
1357 rd_regl(port, S3C2410_UFCON));
1360 * Update the per-port timeout.
1362 uart_update_timeout(port, termios->c_cflag, baud);
1365 * Which character status flags are we interested in?
1367 port->read_status_mask = S3C2410_UERSTAT_OVERRUN;
1368 if (termios->c_iflag & INPCK)
1369 port->read_status_mask |= S3C2410_UERSTAT_FRAME |
1370 S3C2410_UERSTAT_PARITY;
1372 * Which character status flags should we ignore?
1374 port->ignore_status_mask = 0;
1375 if (termios->c_iflag & IGNPAR)
1376 port->ignore_status_mask |= S3C2410_UERSTAT_OVERRUN;
1377 if (termios->c_iflag & IGNBRK && termios->c_iflag & IGNPAR)
1378 port->ignore_status_mask |= S3C2410_UERSTAT_FRAME;
1381 * Ignore all characters if CREAD is not set.
1383 if ((termios->c_cflag & CREAD) == 0)
1384 port->ignore_status_mask |= RXSTAT_DUMMY_READ;
1386 spin_unlock_irqrestore(&port->lock, flags);
1389 static const char *s3c24xx_serial_type(struct uart_port *port)
1391 switch (port->type) {
1399 return "S3C6400/10";
1405 #define MAP_SIZE (0x100)
1407 static void s3c24xx_serial_release_port(struct uart_port *port)
1409 release_mem_region(port->mapbase, MAP_SIZE);
1412 static int s3c24xx_serial_request_port(struct uart_port *port)
1414 const char *name = s3c24xx_serial_portname(port);
1415 return request_mem_region(port->mapbase, MAP_SIZE, name) ? 0 : -EBUSY;
1418 static void s3c24xx_serial_config_port(struct uart_port *port, int flags)
1420 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
1422 if (flags & UART_CONFIG_TYPE &&
1423 s3c24xx_serial_request_port(port) == 0)
1424 port->type = info->type;
1428 * verify the new serial_struct (for TIOCSSERIAL).
1431 s3c24xx_serial_verify_port(struct uart_port *port, struct serial_struct *ser)
1433 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
1435 if (ser->type != PORT_UNKNOWN && ser->type != info->type)
1442 #ifdef CONFIG_SERIAL_SAMSUNG_CONSOLE
1444 static struct console s3c24xx_serial_console;
1446 static int __init s3c24xx_serial_console_init(void)
1448 register_console(&s3c24xx_serial_console);
1451 console_initcall(s3c24xx_serial_console_init);
1453 #define S3C24XX_SERIAL_CONSOLE &s3c24xx_serial_console
1455 #define S3C24XX_SERIAL_CONSOLE NULL
1458 #if defined(CONFIG_SERIAL_SAMSUNG_CONSOLE) && defined(CONFIG_CONSOLE_POLL)
1459 static int s3c24xx_serial_get_poll_char(struct uart_port *port);
1460 static void s3c24xx_serial_put_poll_char(struct uart_port *port,
1464 static struct uart_ops s3c24xx_serial_ops = {
1465 .pm = s3c24xx_serial_pm,
1466 .tx_empty = s3c24xx_serial_tx_empty,
1467 .get_mctrl = s3c24xx_serial_get_mctrl,
1468 .set_mctrl = s3c24xx_serial_set_mctrl,
1469 .stop_tx = s3c24xx_serial_stop_tx,
1470 .start_tx = s3c24xx_serial_start_tx,
1471 .stop_rx = s3c24xx_serial_stop_rx,
1472 .break_ctl = s3c24xx_serial_break_ctl,
1473 .startup = s3c24xx_serial_startup,
1474 .shutdown = s3c24xx_serial_shutdown,
1475 .set_termios = s3c24xx_serial_set_termios,
1476 .type = s3c24xx_serial_type,
1477 .release_port = s3c24xx_serial_release_port,
1478 .request_port = s3c24xx_serial_request_port,
1479 .config_port = s3c24xx_serial_config_port,
1480 .verify_port = s3c24xx_serial_verify_port,
1481 #if defined(CONFIG_SERIAL_SAMSUNG_CONSOLE) && defined(CONFIG_CONSOLE_POLL)
1482 .poll_get_char = s3c24xx_serial_get_poll_char,
1483 .poll_put_char = s3c24xx_serial_put_poll_char,
1487 static struct uart_driver s3c24xx_uart_drv = {
1488 .owner = THIS_MODULE,
1489 .driver_name = "s3c2410_serial",
1490 .nr = CONFIG_SERIAL_SAMSUNG_UARTS,
1491 .cons = S3C24XX_SERIAL_CONSOLE,
1492 .dev_name = S3C24XX_SERIAL_NAME,
1493 .major = S3C24XX_SERIAL_MAJOR,
1494 .minor = S3C24XX_SERIAL_MINOR,
1497 #define __PORT_LOCK_UNLOCKED(i) \
1498 __SPIN_LOCK_UNLOCKED(s3c24xx_serial_ports[i].port.lock)
1499 static struct s3c24xx_uart_port
1500 s3c24xx_serial_ports[CONFIG_SERIAL_SAMSUNG_UARTS] = {
1503 .lock = __PORT_LOCK_UNLOCKED(0),
1507 .ops = &s3c24xx_serial_ops,
1508 .flags = UPF_BOOT_AUTOCONF,
1514 .lock = __PORT_LOCK_UNLOCKED(1),
1518 .ops = &s3c24xx_serial_ops,
1519 .flags = UPF_BOOT_AUTOCONF,
1523 #if CONFIG_SERIAL_SAMSUNG_UARTS > 2
1527 .lock = __PORT_LOCK_UNLOCKED(2),
1531 .ops = &s3c24xx_serial_ops,
1532 .flags = UPF_BOOT_AUTOCONF,
1537 #if CONFIG_SERIAL_SAMSUNG_UARTS > 3
1540 .lock = __PORT_LOCK_UNLOCKED(3),
1544 .ops = &s3c24xx_serial_ops,
1545 .flags = UPF_BOOT_AUTOCONF,
1551 #undef __PORT_LOCK_UNLOCKED
1553 /* s3c24xx_serial_resetport
1555 * reset the fifos and other the settings.
1558 static void s3c24xx_serial_resetport(struct uart_port *port,
1559 struct s3c2410_uartcfg *cfg)
1561 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
1562 unsigned long ucon = rd_regl(port, S3C2410_UCON);
1563 unsigned int ucon_mask;
1565 ucon_mask = info->clksel_mask;
1566 if (info->type == PORT_S3C2440)
1567 ucon_mask |= S3C2440_UCON0_DIVMASK;
1570 wr_regl(port, S3C2410_UCON, ucon | cfg->ucon);
1572 /* reset both fifos */
1573 wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
1574 wr_regl(port, S3C2410_UFCON, cfg->ufcon);
1576 /* some delay is required after fifo reset */
1581 #ifdef CONFIG_ARM_S3C24XX_CPUFREQ
1583 static int s3c24xx_serial_cpufreq_transition(struct notifier_block *nb,
1584 unsigned long val, void *data)
1586 struct s3c24xx_uart_port *port;
1587 struct uart_port *uport;
1589 port = container_of(nb, struct s3c24xx_uart_port, freq_transition);
1590 uport = &port->port;
1592 /* check to see if port is enabled */
1594 if (port->pm_level != 0)
1597 /* try and work out if the baudrate is changing, we can detect
1598 * a change in rate, but we do not have support for detecting
1599 * a disturbance in the clock-rate over the change.
1602 if (IS_ERR(port->baudclk))
1605 if (port->baudclk_rate == clk_get_rate(port->baudclk))
1608 if (val == CPUFREQ_PRECHANGE) {
1609 /* we should really shut the port down whilst the
1610 * frequency change is in progress. */
1612 } else if (val == CPUFREQ_POSTCHANGE) {
1613 struct ktermios *termios;
1614 struct tty_struct *tty;
1616 if (uport->state == NULL)
1619 tty = uport->state->port.tty;
1624 termios = &tty->termios;
1626 if (termios == NULL) {
1627 dev_warn(uport->dev, "%s: no termios?\n", __func__);
1631 s3c24xx_serial_set_termios(uport, termios, NULL);
1639 s3c24xx_serial_cpufreq_register(struct s3c24xx_uart_port *port)
1641 port->freq_transition.notifier_call = s3c24xx_serial_cpufreq_transition;
1643 return cpufreq_register_notifier(&port->freq_transition,
1644 CPUFREQ_TRANSITION_NOTIFIER);
1648 s3c24xx_serial_cpufreq_deregister(struct s3c24xx_uart_port *port)
1650 cpufreq_unregister_notifier(&port->freq_transition,
1651 CPUFREQ_TRANSITION_NOTIFIER);
1656 s3c24xx_serial_cpufreq_register(struct s3c24xx_uart_port *port)
1662 s3c24xx_serial_cpufreq_deregister(struct s3c24xx_uart_port *port)
1667 /* s3c24xx_serial_init_port
1669 * initialise a single serial port from the platform device given
1672 static int s3c24xx_serial_init_port(struct s3c24xx_uart_port *ourport,
1673 struct platform_device *platdev)
1675 struct uart_port *port = &ourport->port;
1676 struct s3c2410_uartcfg *cfg = ourport->cfg;
1677 struct resource *res;
1680 dbg("s3c24xx_serial_init_port: port=%p, platdev=%p\n", port, platdev);
1682 if (platdev == NULL)
1685 if (port->mapbase != 0)
1688 /* setup info for port */
1689 port->dev = &platdev->dev;
1691 /* Startup sequence is different for s3c64xx and higher SoC's */
1692 if (s3c24xx_serial_has_interrupt_mask(port))
1693 s3c24xx_serial_ops.startup = s3c64xx_serial_startup;
1697 if (cfg->uart_flags & UPF_CONS_FLOW) {
1698 dbg("s3c24xx_serial_init_port: enabling flow control\n");
1699 port->flags |= UPF_CONS_FLOW;
1702 /* sort our the physical and virtual addresses for each UART */
1704 res = platform_get_resource(platdev, IORESOURCE_MEM, 0);
1706 dev_err(port->dev, "failed to find memory resource for uart\n");
1710 dbg("resource %pR)\n", res);
1712 port->membase = devm_ioremap(port->dev, res->start, resource_size(res));
1713 if (!port->membase) {
1714 dev_err(port->dev, "failed to remap controller address\n");
1718 port->mapbase = res->start;
1719 ret = platform_get_irq(platdev, 0);
1724 ourport->rx_irq = ret;
1725 ourport->tx_irq = ret + 1;
1728 if (!s3c24xx_serial_has_interrupt_mask(port)) {
1729 ret = platform_get_irq(platdev, 1);
1731 ourport->tx_irq = ret;
1734 * DMA is currently supported only on DT platforms, if DMA properties
1737 if (platdev->dev.of_node && of_find_property(platdev->dev.of_node,
1739 ourport->dma = devm_kzalloc(port->dev,
1740 sizeof(*ourport->dma),
1742 if (!ourport->dma) {
1748 ourport->clk = clk_get(&platdev->dev, "uart");
1749 if (IS_ERR(ourport->clk)) {
1750 pr_err("%s: Controller clock not found\n",
1751 dev_name(&platdev->dev));
1752 ret = PTR_ERR(ourport->clk);
1756 ret = clk_prepare_enable(ourport->clk);
1758 pr_err("uart: clock failed to prepare+enable: %d\n", ret);
1759 clk_put(ourport->clk);
1763 /* Keep all interrupts masked and cleared */
1764 if (s3c24xx_serial_has_interrupt_mask(port)) {
1765 wr_regl(port, S3C64XX_UINTM, 0xf);
1766 wr_regl(port, S3C64XX_UINTP, 0xf);
1767 wr_regl(port, S3C64XX_UINTSP, 0xf);
1770 dbg("port: map=%pa, mem=%p, irq=%d (%d,%d), clock=%u\n",
1771 &port->mapbase, port->membase, port->irq,
1772 ourport->rx_irq, ourport->tx_irq, port->uartclk);
1774 /* reset the fifos (and setup the uart) */
1775 s3c24xx_serial_resetport(port, cfg);
1784 /* Device driver serial port probe */
1786 static const struct of_device_id s3c24xx_uart_dt_match[];
1787 static int probe_index;
1789 static inline struct s3c24xx_serial_drv_data *s3c24xx_get_driver_data(
1790 struct platform_device *pdev)
1793 if (pdev->dev.of_node) {
1794 const struct of_device_id *match;
1795 match = of_match_node(s3c24xx_uart_dt_match, pdev->dev.of_node);
1796 return (struct s3c24xx_serial_drv_data *)match->data;
1799 return (struct s3c24xx_serial_drv_data *)
1800 platform_get_device_id(pdev)->driver_data;
1803 static int s3c24xx_serial_probe(struct platform_device *pdev)
1805 struct device_node *np = pdev->dev.of_node;
1806 struct s3c24xx_uart_port *ourport;
1807 int index = probe_index;
1811 ret = of_alias_get_id(np, "serial");
1816 dbg("s3c24xx_serial_probe(%p) %d\n", pdev, index);
1818 if (index >= ARRAY_SIZE(s3c24xx_serial_ports)) {
1819 dev_err(&pdev->dev, "serial%d out of range\n", index);
1822 ourport = &s3c24xx_serial_ports[index];
1824 ourport->drv_data = s3c24xx_get_driver_data(pdev);
1825 if (!ourport->drv_data) {
1826 dev_err(&pdev->dev, "could not find driver data\n");
1830 ourport->baudclk = ERR_PTR(-EINVAL);
1831 ourport->info = ourport->drv_data->info;
1832 ourport->cfg = (dev_get_platdata(&pdev->dev)) ?
1833 dev_get_platdata(&pdev->dev) :
1834 ourport->drv_data->def_cfg;
1837 of_property_read_u32(np,
1838 "samsung,uart-fifosize", &ourport->port.fifosize);
1840 if (ourport->drv_data->fifosize[index])
1841 ourport->port.fifosize = ourport->drv_data->fifosize[index];
1842 else if (ourport->info->fifosize)
1843 ourport->port.fifosize = ourport->info->fifosize;
1846 * DMA transfers must be aligned at least to cache line size,
1847 * so find minimal transfer size suitable for DMA mode
1849 ourport->min_dma_size = max_t(int, ourport->port.fifosize,
1850 dma_get_cache_alignment());
1852 dbg("%s: initialising port %p...\n", __func__, ourport);
1854 ret = s3c24xx_serial_init_port(ourport, pdev);
1858 if (!s3c24xx_uart_drv.state) {
1859 ret = uart_register_driver(&s3c24xx_uart_drv);
1861 pr_err("Failed to register Samsung UART driver\n");
1866 dbg("%s: adding port\n", __func__);
1867 uart_add_one_port(&s3c24xx_uart_drv, &ourport->port);
1868 platform_set_drvdata(pdev, &ourport->port);
1871 * Deactivate the clock enabled in s3c24xx_serial_init_port here,
1872 * so that a potential re-enablement through the pm-callback overlaps
1873 * and keeps the clock enabled in this case.
1875 clk_disable_unprepare(ourport->clk);
1877 ret = s3c24xx_serial_cpufreq_register(ourport);
1879 dev_err(&pdev->dev, "failed to add cpufreq notifier\n");
1886 static int s3c24xx_serial_remove(struct platform_device *dev)
1888 struct uart_port *port = s3c24xx_dev_to_port(&dev->dev);
1891 s3c24xx_serial_cpufreq_deregister(to_ourport(port));
1892 uart_remove_one_port(&s3c24xx_uart_drv, port);
1895 uart_unregister_driver(&s3c24xx_uart_drv);
1900 /* UART power management code */
1901 #ifdef CONFIG_PM_SLEEP
1902 static int s3c24xx_serial_suspend(struct device *dev)
1904 struct uart_port *port = s3c24xx_dev_to_port(dev);
1907 uart_suspend_port(&s3c24xx_uart_drv, port);
1912 static int s3c24xx_serial_resume(struct device *dev)
1914 struct uart_port *port = s3c24xx_dev_to_port(dev);
1915 struct s3c24xx_uart_port *ourport = to_ourport(port);
1918 clk_prepare_enable(ourport->clk);
1919 s3c24xx_serial_resetport(port, s3c24xx_port_to_cfg(port));
1920 clk_disable_unprepare(ourport->clk);
1922 uart_resume_port(&s3c24xx_uart_drv, port);
1928 static int s3c24xx_serial_resume_noirq(struct device *dev)
1930 struct uart_port *port = s3c24xx_dev_to_port(dev);
1933 /* restore IRQ mask */
1934 if (s3c24xx_serial_has_interrupt_mask(port)) {
1935 unsigned int uintm = 0xf;
1936 if (tx_enabled(port))
1937 uintm &= ~S3C64XX_UINTM_TXD_MSK;
1938 if (rx_enabled(port))
1939 uintm &= ~S3C64XX_UINTM_RXD_MSK;
1940 wr_regl(port, S3C64XX_UINTM, uintm);
1947 static const struct dev_pm_ops s3c24xx_serial_pm_ops = {
1948 .suspend = s3c24xx_serial_suspend,
1949 .resume = s3c24xx_serial_resume,
1950 .resume_noirq = s3c24xx_serial_resume_noirq,
1952 #define SERIAL_SAMSUNG_PM_OPS (&s3c24xx_serial_pm_ops)
1954 #else /* !CONFIG_PM_SLEEP */
1956 #define SERIAL_SAMSUNG_PM_OPS NULL
1957 #endif /* CONFIG_PM_SLEEP */
1961 #ifdef CONFIG_SERIAL_SAMSUNG_CONSOLE
1963 static struct uart_port *cons_uart;
1966 s3c24xx_serial_console_txrdy(struct uart_port *port, unsigned int ufcon)
1968 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
1969 unsigned long ufstat, utrstat;
1971 if (ufcon & S3C2410_UFCON_FIFOMODE) {
1972 /* fifo mode - check amount of data in fifo registers... */
1974 ufstat = rd_regl(port, S3C2410_UFSTAT);
1975 return (ufstat & info->tx_fifofull) ? 0 : 1;
1978 /* in non-fifo mode, we go and use the tx buffer empty */
1980 utrstat = rd_regl(port, S3C2410_UTRSTAT);
1981 return (utrstat & S3C2410_UTRSTAT_TXE) ? 1 : 0;
1985 s3c24xx_port_configured(unsigned int ucon)
1987 /* consider the serial port configured if the tx/rx mode set */
1988 return (ucon & 0xf) != 0;
1991 #ifdef CONFIG_CONSOLE_POLL
1993 * Console polling routines for writing and reading from the uart while
1994 * in an interrupt or debug context.
1997 static int s3c24xx_serial_get_poll_char(struct uart_port *port)
1999 struct s3c24xx_uart_port *ourport = to_ourport(port);
2000 unsigned int ufstat;
2002 ufstat = rd_regl(port, S3C2410_UFSTAT);
2003 if (s3c24xx_serial_rx_fifocnt(ourport, ufstat) == 0)
2004 return NO_POLL_CHAR;
2006 return rd_regb(port, S3C2410_URXH);
2009 static void s3c24xx_serial_put_poll_char(struct uart_port *port,
2012 unsigned int ufcon = rd_regl(port, S3C2410_UFCON);
2013 unsigned int ucon = rd_regl(port, S3C2410_UCON);
2015 /* not possible to xmit on unconfigured port */
2016 if (!s3c24xx_port_configured(ucon))
2019 while (!s3c24xx_serial_console_txrdy(port, ufcon))
2021 wr_regb(port, S3C2410_UTXH, c);
2024 #endif /* CONFIG_CONSOLE_POLL */
2027 s3c24xx_serial_console_putchar(struct uart_port *port, int ch)
2029 unsigned int ufcon = rd_regl(port, S3C2410_UFCON);
2031 while (!s3c24xx_serial_console_txrdy(port, ufcon))
2033 wr_regb(port, S3C2410_UTXH, ch);
2037 s3c24xx_serial_console_write(struct console *co, const char *s,
2040 unsigned int ucon = rd_regl(cons_uart, S3C2410_UCON);
2042 /* not possible to xmit on unconfigured port */
2043 if (!s3c24xx_port_configured(ucon))
2046 uart_console_write(cons_uart, s, count, s3c24xx_serial_console_putchar);
2050 s3c24xx_serial_get_options(struct uart_port *port, int *baud,
2051 int *parity, int *bits)
2056 unsigned int ubrdiv;
2058 unsigned int clk_sel;
2059 char clk_name[MAX_CLK_NAME_LENGTH];
2061 ulcon = rd_regl(port, S3C2410_ULCON);
2062 ucon = rd_regl(port, S3C2410_UCON);
2063 ubrdiv = rd_regl(port, S3C2410_UBRDIV);
2065 dbg("s3c24xx_serial_get_options: port=%p\n"
2066 "registers: ulcon=%08x, ucon=%08x, ubdriv=%08x\n",
2067 port, ulcon, ucon, ubrdiv);
2069 if (s3c24xx_port_configured(ucon)) {
2070 switch (ulcon & S3C2410_LCON_CSMASK) {
2071 case S3C2410_LCON_CS5:
2074 case S3C2410_LCON_CS6:
2077 case S3C2410_LCON_CS7:
2080 case S3C2410_LCON_CS8:
2086 switch (ulcon & S3C2410_LCON_PMASK) {
2087 case S3C2410_LCON_PEVEN:
2091 case S3C2410_LCON_PODD:
2095 case S3C2410_LCON_PNONE:
2100 /* now calculate the baud rate */
2102 clk_sel = s3c24xx_serial_getsource(port);
2103 sprintf(clk_name, "clk_uart_baud%d", clk_sel);
2105 clk = clk_get(port->dev, clk_name);
2107 rate = clk_get_rate(clk);
2111 *baud = rate / (16 * (ubrdiv + 1));
2112 dbg("calculated baud %d\n", *baud);
2118 s3c24xx_serial_console_setup(struct console *co, char *options)
2120 struct uart_port *port;
2126 dbg("s3c24xx_serial_console_setup: co=%p (%d), %s\n",
2127 co, co->index, options);
2129 /* is this a valid port */
2131 if (co->index == -1 || co->index >= CONFIG_SERIAL_SAMSUNG_UARTS)
2134 port = &s3c24xx_serial_ports[co->index].port;
2136 /* is the port configured? */
2138 if (port->mapbase == 0x0)
2143 dbg("s3c24xx_serial_console_setup: port=%p (%d)\n", port, co->index);
2146 * Check whether an invalid uart number has been specified, and
2147 * if so, search for the first available port that does have
2151 uart_parse_options(options, &baud, &parity, &bits, &flow);
2153 s3c24xx_serial_get_options(port, &baud, &parity, &bits);
2155 dbg("s3c24xx_serial_console_setup: baud %d\n", baud);
2157 return uart_set_options(port, co, baud, parity, bits, flow);
2160 static struct console s3c24xx_serial_console = {
2161 .name = S3C24XX_SERIAL_NAME,
2162 .device = uart_console_device,
2163 .flags = CON_PRINTBUFFER,
2165 .write = s3c24xx_serial_console_write,
2166 .setup = s3c24xx_serial_console_setup,
2167 .data = &s3c24xx_uart_drv,
2169 #endif /* CONFIG_SERIAL_SAMSUNG_CONSOLE */
2171 #ifdef CONFIG_CPU_S3C2410
2172 static struct s3c24xx_serial_drv_data s3c2410_serial_drv_data = {
2173 .info = &(struct s3c24xx_uart_info) {
2174 .name = "Samsung S3C2410 UART",
2175 .type = PORT_S3C2410,
2177 .rx_fifomask = S3C2410_UFSTAT_RXMASK,
2178 .rx_fifoshift = S3C2410_UFSTAT_RXSHIFT,
2179 .rx_fifofull = S3C2410_UFSTAT_RXFULL,
2180 .tx_fifofull = S3C2410_UFSTAT_TXFULL,
2181 .tx_fifomask = S3C2410_UFSTAT_TXMASK,
2182 .tx_fifoshift = S3C2410_UFSTAT_TXSHIFT,
2183 .def_clk_sel = S3C2410_UCON_CLKSEL0,
2185 .clksel_mask = S3C2410_UCON_CLKMASK,
2186 .clksel_shift = S3C2410_UCON_CLKSHIFT,
2188 .def_cfg = &(struct s3c2410_uartcfg) {
2189 .ucon = S3C2410_UCON_DEFAULT,
2190 .ufcon = S3C2410_UFCON_DEFAULT,
2193 #define S3C2410_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c2410_serial_drv_data)
2195 #define S3C2410_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2198 #ifdef CONFIG_CPU_S3C2412
2199 static struct s3c24xx_serial_drv_data s3c2412_serial_drv_data = {
2200 .info = &(struct s3c24xx_uart_info) {
2201 .name = "Samsung S3C2412 UART",
2202 .type = PORT_S3C2412,
2205 .rx_fifomask = S3C2440_UFSTAT_RXMASK,
2206 .rx_fifoshift = S3C2440_UFSTAT_RXSHIFT,
2207 .rx_fifofull = S3C2440_UFSTAT_RXFULL,
2208 .tx_fifofull = S3C2440_UFSTAT_TXFULL,
2209 .tx_fifomask = S3C2440_UFSTAT_TXMASK,
2210 .tx_fifoshift = S3C2440_UFSTAT_TXSHIFT,
2211 .def_clk_sel = S3C2410_UCON_CLKSEL2,
2213 .clksel_mask = S3C2412_UCON_CLKMASK,
2214 .clksel_shift = S3C2412_UCON_CLKSHIFT,
2216 .def_cfg = &(struct s3c2410_uartcfg) {
2217 .ucon = S3C2410_UCON_DEFAULT,
2218 .ufcon = S3C2410_UFCON_DEFAULT,
2221 #define S3C2412_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c2412_serial_drv_data)
2223 #define S3C2412_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2226 #if defined(CONFIG_CPU_S3C2440) || defined(CONFIG_CPU_S3C2416) || \
2227 defined(CONFIG_CPU_S3C2443) || defined(CONFIG_CPU_S3C2442)
2228 static struct s3c24xx_serial_drv_data s3c2440_serial_drv_data = {
2229 .info = &(struct s3c24xx_uart_info) {
2230 .name = "Samsung S3C2440 UART",
2231 .type = PORT_S3C2440,
2234 .rx_fifomask = S3C2440_UFSTAT_RXMASK,
2235 .rx_fifoshift = S3C2440_UFSTAT_RXSHIFT,
2236 .rx_fifofull = S3C2440_UFSTAT_RXFULL,
2237 .tx_fifofull = S3C2440_UFSTAT_TXFULL,
2238 .tx_fifomask = S3C2440_UFSTAT_TXMASK,
2239 .tx_fifoshift = S3C2440_UFSTAT_TXSHIFT,
2240 .def_clk_sel = S3C2410_UCON_CLKSEL2,
2242 .clksel_mask = S3C2412_UCON_CLKMASK,
2243 .clksel_shift = S3C2412_UCON_CLKSHIFT,
2245 .def_cfg = &(struct s3c2410_uartcfg) {
2246 .ucon = S3C2410_UCON_DEFAULT,
2247 .ufcon = S3C2410_UFCON_DEFAULT,
2250 #define S3C2440_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c2440_serial_drv_data)
2252 #define S3C2440_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2255 #if defined(CONFIG_CPU_S3C6400) || defined(CONFIG_CPU_S3C6410)
2256 static struct s3c24xx_serial_drv_data s3c6400_serial_drv_data = {
2257 .info = &(struct s3c24xx_uart_info) {
2258 .name = "Samsung S3C6400 UART",
2259 .type = PORT_S3C6400,
2262 .rx_fifomask = S3C2440_UFSTAT_RXMASK,
2263 .rx_fifoshift = S3C2440_UFSTAT_RXSHIFT,
2264 .rx_fifofull = S3C2440_UFSTAT_RXFULL,
2265 .tx_fifofull = S3C2440_UFSTAT_TXFULL,
2266 .tx_fifomask = S3C2440_UFSTAT_TXMASK,
2267 .tx_fifoshift = S3C2440_UFSTAT_TXSHIFT,
2268 .def_clk_sel = S3C2410_UCON_CLKSEL2,
2270 .clksel_mask = S3C6400_UCON_CLKMASK,
2271 .clksel_shift = S3C6400_UCON_CLKSHIFT,
2273 .def_cfg = &(struct s3c2410_uartcfg) {
2274 .ucon = S3C2410_UCON_DEFAULT,
2275 .ufcon = S3C2410_UFCON_DEFAULT,
2278 #define S3C6400_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c6400_serial_drv_data)
2280 #define S3C6400_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2283 #ifdef CONFIG_CPU_S5PV210
2284 static struct s3c24xx_serial_drv_data s5pv210_serial_drv_data = {
2285 .info = &(struct s3c24xx_uart_info) {
2286 .name = "Samsung S5PV210 UART",
2287 .type = PORT_S3C6400,
2289 .rx_fifomask = S5PV210_UFSTAT_RXMASK,
2290 .rx_fifoshift = S5PV210_UFSTAT_RXSHIFT,
2291 .rx_fifofull = S5PV210_UFSTAT_RXFULL,
2292 .tx_fifofull = S5PV210_UFSTAT_TXFULL,
2293 .tx_fifomask = S5PV210_UFSTAT_TXMASK,
2294 .tx_fifoshift = S5PV210_UFSTAT_TXSHIFT,
2295 .def_clk_sel = S3C2410_UCON_CLKSEL0,
2297 .clksel_mask = S5PV210_UCON_CLKMASK,
2298 .clksel_shift = S5PV210_UCON_CLKSHIFT,
2300 .def_cfg = &(struct s3c2410_uartcfg) {
2301 .ucon = S5PV210_UCON_DEFAULT,
2302 .ufcon = S5PV210_UFCON_DEFAULT,
2304 .fifosize = { 256, 64, 16, 16 },
2306 #define S5PV210_SERIAL_DRV_DATA ((kernel_ulong_t)&s5pv210_serial_drv_data)
2308 #define S5PV210_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2311 #if defined(CONFIG_ARCH_EXYNOS)
2312 #define EXYNOS_COMMON_SERIAL_DRV_DATA \
2313 .info = &(struct s3c24xx_uart_info) { \
2314 .name = "Samsung Exynos UART", \
2315 .type = PORT_S3C6400, \
2317 .rx_fifomask = S5PV210_UFSTAT_RXMASK, \
2318 .rx_fifoshift = S5PV210_UFSTAT_RXSHIFT, \
2319 .rx_fifofull = S5PV210_UFSTAT_RXFULL, \
2320 .tx_fifofull = S5PV210_UFSTAT_TXFULL, \
2321 .tx_fifomask = S5PV210_UFSTAT_TXMASK, \
2322 .tx_fifoshift = S5PV210_UFSTAT_TXSHIFT, \
2323 .def_clk_sel = S3C2410_UCON_CLKSEL0, \
2326 .clksel_shift = 0, \
2328 .def_cfg = &(struct s3c2410_uartcfg) { \
2329 .ucon = S5PV210_UCON_DEFAULT, \
2330 .ufcon = S5PV210_UFCON_DEFAULT, \
2334 static struct s3c24xx_serial_drv_data exynos4210_serial_drv_data = {
2335 EXYNOS_COMMON_SERIAL_DRV_DATA,
2336 .fifosize = { 256, 64, 16, 16 },
2339 static struct s3c24xx_serial_drv_data exynos5433_serial_drv_data = {
2340 EXYNOS_COMMON_SERIAL_DRV_DATA,
2341 .fifosize = { 64, 256, 16, 256 },
2344 #define EXYNOS4210_SERIAL_DRV_DATA ((kernel_ulong_t)&exynos4210_serial_drv_data)
2345 #define EXYNOS5433_SERIAL_DRV_DATA ((kernel_ulong_t)&exynos5433_serial_drv_data)
2347 #define EXYNOS4210_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2348 #define EXYNOS5433_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2351 static const struct platform_device_id s3c24xx_serial_driver_ids[] = {
2353 .name = "s3c2410-uart",
2354 .driver_data = S3C2410_SERIAL_DRV_DATA,
2356 .name = "s3c2412-uart",
2357 .driver_data = S3C2412_SERIAL_DRV_DATA,
2359 .name = "s3c2440-uart",
2360 .driver_data = S3C2440_SERIAL_DRV_DATA,
2362 .name = "s3c6400-uart",
2363 .driver_data = S3C6400_SERIAL_DRV_DATA,
2365 .name = "s5pv210-uart",
2366 .driver_data = S5PV210_SERIAL_DRV_DATA,
2368 .name = "exynos4210-uart",
2369 .driver_data = EXYNOS4210_SERIAL_DRV_DATA,
2371 .name = "exynos5433-uart",
2372 .driver_data = EXYNOS5433_SERIAL_DRV_DATA,
2376 MODULE_DEVICE_TABLE(platform, s3c24xx_serial_driver_ids);
2379 static const struct of_device_id s3c24xx_uart_dt_match[] = {
2380 { .compatible = "samsung,s3c2410-uart",
2381 .data = (void *)S3C2410_SERIAL_DRV_DATA },
2382 { .compatible = "samsung,s3c2412-uart",
2383 .data = (void *)S3C2412_SERIAL_DRV_DATA },
2384 { .compatible = "samsung,s3c2440-uart",
2385 .data = (void *)S3C2440_SERIAL_DRV_DATA },
2386 { .compatible = "samsung,s3c6400-uart",
2387 .data = (void *)S3C6400_SERIAL_DRV_DATA },
2388 { .compatible = "samsung,s5pv210-uart",
2389 .data = (void *)S5PV210_SERIAL_DRV_DATA },
2390 { .compatible = "samsung,exynos4210-uart",
2391 .data = (void *)EXYNOS4210_SERIAL_DRV_DATA },
2392 { .compatible = "samsung,exynos5433-uart",
2393 .data = (void *)EXYNOS5433_SERIAL_DRV_DATA },
2396 MODULE_DEVICE_TABLE(of, s3c24xx_uart_dt_match);
2399 static struct platform_driver samsung_serial_driver = {
2400 .probe = s3c24xx_serial_probe,
2401 .remove = s3c24xx_serial_remove,
2402 .id_table = s3c24xx_serial_driver_ids,
2404 .name = "samsung-uart",
2405 .pm = SERIAL_SAMSUNG_PM_OPS,
2406 .of_match_table = of_match_ptr(s3c24xx_uart_dt_match),
2410 module_platform_driver(samsung_serial_driver);
2412 #ifdef CONFIG_SERIAL_SAMSUNG_CONSOLE
2417 struct samsung_early_console_data {
2421 static void samsung_early_busyuart(struct uart_port *port)
2423 while (!(readl(port->membase + S3C2410_UTRSTAT) & S3C2410_UTRSTAT_TXFE))
2427 static void samsung_early_busyuart_fifo(struct uart_port *port)
2429 struct samsung_early_console_data *data = port->private_data;
2431 while (readl(port->membase + S3C2410_UFSTAT) & data->txfull_mask)
2435 static void samsung_early_putc(struct uart_port *port, int c)
2437 if (readl(port->membase + S3C2410_UFCON) & S3C2410_UFCON_FIFOMODE)
2438 samsung_early_busyuart_fifo(port);
2440 samsung_early_busyuart(port);
2442 writeb(c, port->membase + S3C2410_UTXH);
2445 static void samsung_early_write(struct console *con, const char *s, unsigned n)
2447 struct earlycon_device *dev = con->data;
2449 uart_console_write(&dev->port, s, n, samsung_early_putc);
2452 static int __init samsung_early_console_setup(struct earlycon_device *device,
2455 if (!device->port.membase)
2458 device->con->write = samsung_early_write;
2463 static struct samsung_early_console_data s3c2410_early_console_data = {
2464 .txfull_mask = S3C2410_UFSTAT_TXFULL,
2467 static int __init s3c2410_early_console_setup(struct earlycon_device *device,
2470 device->port.private_data = &s3c2410_early_console_data;
2471 return samsung_early_console_setup(device, opt);
2473 OF_EARLYCON_DECLARE(s3c2410, "samsung,s3c2410-uart",
2474 s3c2410_early_console_setup);
2476 /* S3C2412, S3C2440, S3C64xx */
2477 static struct samsung_early_console_data s3c2440_early_console_data = {
2478 .txfull_mask = S3C2440_UFSTAT_TXFULL,
2481 static int __init s3c2440_early_console_setup(struct earlycon_device *device,
2484 device->port.private_data = &s3c2440_early_console_data;
2485 return samsung_early_console_setup(device, opt);
2487 OF_EARLYCON_DECLARE(s3c2412, "samsung,s3c2412-uart",
2488 s3c2440_early_console_setup);
2489 OF_EARLYCON_DECLARE(s3c2440, "samsung,s3c2440-uart",
2490 s3c2440_early_console_setup);
2491 OF_EARLYCON_DECLARE(s3c6400, "samsung,s3c6400-uart",
2492 s3c2440_early_console_setup);
2494 /* S5PV210, EXYNOS */
2495 static struct samsung_early_console_data s5pv210_early_console_data = {
2496 .txfull_mask = S5PV210_UFSTAT_TXFULL,
2499 static int __init s5pv210_early_console_setup(struct earlycon_device *device,
2502 device->port.private_data = &s5pv210_early_console_data;
2503 return samsung_early_console_setup(device, opt);
2505 OF_EARLYCON_DECLARE(s5pv210, "samsung,s5pv210-uart",
2506 s5pv210_early_console_setup);
2507 OF_EARLYCON_DECLARE(exynos4210, "samsung,exynos4210-uart",
2508 s5pv210_early_console_setup);
2511 MODULE_ALIAS("platform:samsung-uart");
2512 MODULE_DESCRIPTION("Samsung SoC Serial port driver");
2513 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
2514 MODULE_LICENSE("GPL v2");