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) && \
56 defined(CONFIG_DEBUG_LL) && \
59 extern void printascii(const char *);
62 static void dbg(const char *fmt
, ...)
68 vscnprintf(buff
, sizeof(buff
), fmt
, va
);
75 #define dbg(fmt, ...) do { if (0) no_printk(fmt, ##__VA_ARGS__); } while (0)
78 /* UART name and device definitions */
80 #define S3C24XX_SERIAL_NAME "ttySAC"
81 #define S3C24XX_SERIAL_MAJOR 204
82 #define S3C24XX_SERIAL_MINOR 64
84 #define S3C24XX_TX_PIO 1
85 #define S3C24XX_TX_DMA 2
86 #define S3C24XX_RX_PIO 1
87 #define S3C24XX_RX_DMA 2
88 /* macros to change one thing to another */
90 #define tx_enabled(port) ((port)->unused[0])
91 #define rx_enabled(port) ((port)->unused[1])
93 /* flag to ignore all characters coming in */
94 #define RXSTAT_DUMMY_READ (0x10000000)
96 static inline struct s3c24xx_uart_port
*to_ourport(struct uart_port
*port
)
98 return container_of(port
, struct s3c24xx_uart_port
, port
);
101 /* translate a port to the device name */
103 static inline const char *s3c24xx_serial_portname(struct uart_port
*port
)
105 return to_platform_device(port
->dev
)->name
;
108 static int s3c24xx_serial_txempty_nofifo(struct uart_port
*port
)
110 return rd_regl(port
, S3C2410_UTRSTAT
) & S3C2410_UTRSTAT_TXE
;
114 * s3c64xx and later SoC's include the interrupt mask and status registers in
115 * the controller itself, unlike the s3c24xx SoC's which have these registers
116 * in the interrupt controller. Check if the port type is s3c64xx or higher.
118 static int s3c24xx_serial_has_interrupt_mask(struct uart_port
*port
)
120 return to_ourport(port
)->info
->type
== PORT_S3C6400
;
123 static void s3c24xx_serial_rx_enable(struct uart_port
*port
)
126 unsigned int ucon
, ufcon
;
129 spin_lock_irqsave(&port
->lock
, flags
);
131 while (--count
&& !s3c24xx_serial_txempty_nofifo(port
))
134 ufcon
= rd_regl(port
, S3C2410_UFCON
);
135 ufcon
|= S3C2410_UFCON_RESETRX
;
136 wr_regl(port
, S3C2410_UFCON
, ufcon
);
138 ucon
= rd_regl(port
, S3C2410_UCON
);
139 ucon
|= S3C2410_UCON_RXIRQMODE
;
140 wr_regl(port
, S3C2410_UCON
, ucon
);
142 rx_enabled(port
) = 1;
143 spin_unlock_irqrestore(&port
->lock
, flags
);
146 static void s3c24xx_serial_rx_disable(struct uart_port
*port
)
151 spin_lock_irqsave(&port
->lock
, flags
);
153 ucon
= rd_regl(port
, S3C2410_UCON
);
154 ucon
&= ~S3C2410_UCON_RXIRQMODE
;
155 wr_regl(port
, S3C2410_UCON
, ucon
);
157 rx_enabled(port
) = 0;
158 spin_unlock_irqrestore(&port
->lock
, flags
);
161 static void s3c24xx_serial_stop_tx(struct uart_port
*port
)
163 struct s3c24xx_uart_port
*ourport
= to_ourport(port
);
164 struct s3c24xx_uart_dma
*dma
= ourport
->dma
;
165 struct circ_buf
*xmit
= &port
->state
->xmit
;
166 struct dma_tx_state state
;
169 if (!tx_enabled(port
))
172 if (s3c24xx_serial_has_interrupt_mask(port
))
173 __set_bit(S3C64XX_UINTM_TXD
,
174 portaddrl(port
, S3C64XX_UINTM
));
176 disable_irq_nosync(ourport
->tx_irq
);
178 if (dma
&& dma
->tx_chan
&& ourport
->tx_in_progress
== S3C24XX_TX_DMA
) {
179 dmaengine_pause(dma
->tx_chan
);
180 dmaengine_tx_status(dma
->tx_chan
, dma
->tx_cookie
, &state
);
181 dmaengine_terminate_all(dma
->tx_chan
);
182 dma_sync_single_for_cpu(ourport
->port
.dev
,
183 dma
->tx_transfer_addr
, dma
->tx_size
, DMA_TO_DEVICE
);
184 async_tx_ack(dma
->tx_desc
);
185 count
= dma
->tx_bytes_requested
- state
.residue
;
186 xmit
->tail
= (xmit
->tail
+ count
) & (UART_XMIT_SIZE
- 1);
187 port
->icount
.tx
+= count
;
190 tx_enabled(port
) = 0;
191 ourport
->tx_in_progress
= 0;
193 if (port
->flags
& UPF_CONS_FLOW
)
194 s3c24xx_serial_rx_enable(port
);
196 ourport
->tx_mode
= 0;
199 static void s3c24xx_serial_start_next_tx(struct s3c24xx_uart_port
*ourport
);
201 static void s3c24xx_serial_tx_dma_complete(void *args
)
203 struct s3c24xx_uart_port
*ourport
= args
;
204 struct uart_port
*port
= &ourport
->port
;
205 struct circ_buf
*xmit
= &port
->state
->xmit
;
206 struct s3c24xx_uart_dma
*dma
= ourport
->dma
;
207 struct dma_tx_state state
;
212 dmaengine_tx_status(dma
->tx_chan
, dma
->tx_cookie
, &state
);
213 count
= dma
->tx_bytes_requested
- state
.residue
;
214 async_tx_ack(dma
->tx_desc
);
216 dma_sync_single_for_cpu(ourport
->port
.dev
, dma
->tx_transfer_addr
,
217 dma
->tx_size
, DMA_TO_DEVICE
);
219 spin_lock_irqsave(&port
->lock
, flags
);
221 xmit
->tail
= (xmit
->tail
+ count
) & (UART_XMIT_SIZE
- 1);
222 port
->icount
.tx
+= count
;
223 ourport
->tx_in_progress
= 0;
225 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
226 uart_write_wakeup(port
);
228 s3c24xx_serial_start_next_tx(ourport
);
229 spin_unlock_irqrestore(&port
->lock
, flags
);
232 static void enable_tx_dma(struct s3c24xx_uart_port
*ourport
)
234 struct uart_port
*port
= &ourport
->port
;
237 /* Mask Tx interrupt */
238 if (s3c24xx_serial_has_interrupt_mask(port
))
239 __set_bit(S3C64XX_UINTM_TXD
,
240 portaddrl(port
, S3C64XX_UINTM
));
242 disable_irq_nosync(ourport
->tx_irq
);
244 /* Enable tx dma mode */
245 ucon
= rd_regl(port
, S3C2410_UCON
);
246 ucon
&= ~(S3C64XX_UCON_TXBURST_MASK
| S3C64XX_UCON_TXMODE_MASK
);
247 ucon
|= (dma_get_cache_alignment() >= 16) ?
248 S3C64XX_UCON_TXBURST_16
: S3C64XX_UCON_TXBURST_1
;
249 ucon
|= S3C64XX_UCON_TXMODE_DMA
;
250 wr_regl(port
, S3C2410_UCON
, ucon
);
252 ourport
->tx_mode
= S3C24XX_TX_DMA
;
255 static void enable_tx_pio(struct s3c24xx_uart_port
*ourport
)
257 struct uart_port
*port
= &ourport
->port
;
260 /* Set ufcon txtrig */
261 ourport
->tx_in_progress
= S3C24XX_TX_PIO
;
262 ufcon
= rd_regl(port
, S3C2410_UFCON
);
263 wr_regl(port
, S3C2410_UFCON
, ufcon
);
265 /* Enable tx pio mode */
266 ucon
= rd_regl(port
, S3C2410_UCON
);
267 ucon
&= ~(S3C64XX_UCON_TXMODE_MASK
);
268 ucon
|= S3C64XX_UCON_TXMODE_CPU
;
269 wr_regl(port
, S3C2410_UCON
, ucon
);
271 /* Unmask Tx interrupt */
272 if (s3c24xx_serial_has_interrupt_mask(port
))
273 __clear_bit(S3C64XX_UINTM_TXD
,
274 portaddrl(port
, S3C64XX_UINTM
));
276 enable_irq(ourport
->tx_irq
);
278 ourport
->tx_mode
= S3C24XX_TX_PIO
;
281 static void s3c24xx_serial_start_tx_pio(struct s3c24xx_uart_port
*ourport
)
283 if (ourport
->tx_mode
!= S3C24XX_TX_PIO
)
284 enable_tx_pio(ourport
);
287 static int s3c24xx_serial_start_tx_dma(struct s3c24xx_uart_port
*ourport
,
290 struct uart_port
*port
= &ourport
->port
;
291 struct circ_buf
*xmit
= &port
->state
->xmit
;
292 struct s3c24xx_uart_dma
*dma
= ourport
->dma
;
295 if (ourport
->tx_mode
!= S3C24XX_TX_DMA
)
296 enable_tx_dma(ourport
);
298 while (xmit
->tail
& (dma_get_cache_alignment() - 1)) {
299 if (rd_regl(port
, S3C2410_UFSTAT
) & ourport
->info
->tx_fifofull
)
301 wr_regb(port
, S3C2410_UTXH
, xmit
->buf
[xmit
->tail
]);
302 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
307 dma
->tx_size
= count
& ~(dma_get_cache_alignment() - 1);
308 dma
->tx_transfer_addr
= dma
->tx_addr
+ xmit
->tail
;
310 dma_sync_single_for_device(ourport
->port
.dev
, dma
->tx_transfer_addr
,
311 dma
->tx_size
, DMA_TO_DEVICE
);
313 dma
->tx_desc
= dmaengine_prep_slave_single(dma
->tx_chan
,
314 dma
->tx_transfer_addr
, dma
->tx_size
,
315 DMA_MEM_TO_DEV
, DMA_PREP_INTERRUPT
);
317 dev_err(ourport
->port
.dev
, "Unable to get desc for Tx\n");
321 dma
->tx_desc
->callback
= s3c24xx_serial_tx_dma_complete
;
322 dma
->tx_desc
->callback_param
= ourport
;
323 dma
->tx_bytes_requested
= dma
->tx_size
;
325 ourport
->tx_in_progress
= S3C24XX_TX_DMA
;
326 dma
->tx_cookie
= dmaengine_submit(dma
->tx_desc
);
327 dma_async_issue_pending(dma
->tx_chan
);
331 static void s3c24xx_serial_start_next_tx(struct s3c24xx_uart_port
*ourport
)
333 struct uart_port
*port
= &ourport
->port
;
334 struct circ_buf
*xmit
= &port
->state
->xmit
;
337 /* Get data size up to the end of buffer */
338 count
= CIRC_CNT_TO_END(xmit
->head
, xmit
->tail
, UART_XMIT_SIZE
);
341 s3c24xx_serial_stop_tx(port
);
345 if (!ourport
->dma
|| !ourport
->dma
->tx_chan
|| count
< port
->fifosize
)
346 s3c24xx_serial_start_tx_pio(ourport
);
348 s3c24xx_serial_start_tx_dma(ourport
, count
);
351 void s3c24xx_serial_start_tx(struct uart_port
*port
)
353 struct s3c24xx_uart_port
*ourport
= to_ourport(port
);
354 struct circ_buf
*xmit
= &port
->state
->xmit
;
356 if (!tx_enabled(port
)) {
357 if (port
->flags
& UPF_CONS_FLOW
)
358 s3c24xx_serial_rx_disable(port
);
360 tx_enabled(port
) = 1;
361 if (!ourport
->dma
|| !ourport
->dma
->tx_chan
)
362 s3c24xx_serial_start_tx_pio(ourport
);
365 if (ourport
->dma
&& ourport
->dma
->tx_chan
) {
366 if (!uart_circ_empty(xmit
) && !ourport
->tx_in_progress
)
367 s3c24xx_serial_start_next_tx(ourport
);
371 static void s3c24xx_uart_copy_rx_to_tty(struct s3c24xx_uart_port
*ourport
,
372 struct tty_port
*tty
, int count
)
374 struct s3c24xx_uart_dma
*dma
= ourport
->dma
;
380 dma_sync_single_for_cpu(ourport
->port
.dev
, dma
->rx_addr
,
381 dma
->rx_size
, DMA_FROM_DEVICE
);
383 ourport
->port
.icount
.rx
+= count
;
385 dev_err(ourport
->port
.dev
, "No tty port\n");
388 copied
= tty_insert_flip_string(tty
,
389 ((unsigned char *)(ourport
->dma
->rx_buf
)), count
);
390 if (copied
!= count
) {
392 dev_err(ourport
->port
.dev
, "RxData copy to tty layer failed\n");
396 static int s3c24xx_serial_rx_fifocnt(struct s3c24xx_uart_port
*ourport
,
397 unsigned long ufstat
);
399 static void uart_rx_drain_fifo(struct s3c24xx_uart_port
*ourport
)
401 struct uart_port
*port
= &ourport
->port
;
402 struct tty_port
*tty
= &port
->state
->port
;
403 unsigned int ch
, ufstat
;
406 ufstat
= rd_regl(port
, S3C2410_UFSTAT
);
407 count
= s3c24xx_serial_rx_fifocnt(ourport
, ufstat
);
412 while (count
-- > 0) {
413 ch
= rd_regb(port
, S3C2410_URXH
);
415 ourport
->port
.icount
.rx
++;
416 tty_insert_flip_char(tty
, ch
, TTY_NORMAL
);
419 tty_flip_buffer_push(tty
);
422 static void s3c24xx_serial_stop_rx(struct uart_port
*port
)
424 struct s3c24xx_uart_port
*ourport
= to_ourport(port
);
425 struct s3c24xx_uart_dma
*dma
= ourport
->dma
;
426 struct tty_port
*t
= &port
->state
->port
;
427 struct dma_tx_state state
;
428 enum dma_status dma_status
;
429 unsigned int received
;
431 if (rx_enabled(port
)) {
432 dbg("s3c24xx_serial_stop_rx: port=%p\n", port
);
433 if (s3c24xx_serial_has_interrupt_mask(port
))
434 __set_bit(S3C64XX_UINTM_RXD
,
435 portaddrl(port
, S3C64XX_UINTM
));
437 disable_irq_nosync(ourport
->rx_irq
);
438 rx_enabled(port
) = 0;
440 if (dma
&& dma
->rx_chan
) {
441 dmaengine_pause(dma
->tx_chan
);
442 dma_status
= dmaengine_tx_status(dma
->rx_chan
,
443 dma
->rx_cookie
, &state
);
444 if (dma_status
== DMA_IN_PROGRESS
||
445 dma_status
== DMA_PAUSED
) {
446 received
= dma
->rx_bytes_requested
- state
.residue
;
447 dmaengine_terminate_all(dma
->rx_chan
);
448 s3c24xx_uart_copy_rx_to_tty(ourport
, t
, received
);
453 static inline struct s3c24xx_uart_info
454 *s3c24xx_port_to_info(struct uart_port
*port
)
456 return to_ourport(port
)->info
;
459 static inline struct s3c2410_uartcfg
460 *s3c24xx_port_to_cfg(struct uart_port
*port
)
462 struct s3c24xx_uart_port
*ourport
;
464 if (port
->dev
== NULL
)
467 ourport
= container_of(port
, struct s3c24xx_uart_port
, port
);
471 static int s3c24xx_serial_rx_fifocnt(struct s3c24xx_uart_port
*ourport
,
472 unsigned long ufstat
)
474 struct s3c24xx_uart_info
*info
= ourport
->info
;
476 if (ufstat
& info
->rx_fifofull
)
477 return ourport
->port
.fifosize
;
479 return (ufstat
& info
->rx_fifomask
) >> info
->rx_fifoshift
;
482 static void s3c64xx_start_rx_dma(struct s3c24xx_uart_port
*ourport
);
483 static void s3c24xx_serial_rx_dma_complete(void *args
)
485 struct s3c24xx_uart_port
*ourport
= args
;
486 struct uart_port
*port
= &ourport
->port
;
488 struct s3c24xx_uart_dma
*dma
= ourport
->dma
;
489 struct tty_port
*t
= &port
->state
->port
;
490 struct tty_struct
*tty
= tty_port_tty_get(&ourport
->port
.state
->port
);
492 struct dma_tx_state state
;
496 dmaengine_tx_status(dma
->rx_chan
, dma
->rx_cookie
, &state
);
497 received
= dma
->rx_bytes_requested
- state
.residue
;
498 async_tx_ack(dma
->rx_desc
);
500 spin_lock_irqsave(&port
->lock
, flags
);
503 s3c24xx_uart_copy_rx_to_tty(ourport
, t
, received
);
506 tty_flip_buffer_push(t
);
510 s3c64xx_start_rx_dma(ourport
);
512 spin_unlock_irqrestore(&port
->lock
, flags
);
515 static void s3c64xx_start_rx_dma(struct s3c24xx_uart_port
*ourport
)
517 struct s3c24xx_uart_dma
*dma
= ourport
->dma
;
519 dma_sync_single_for_device(ourport
->port
.dev
, dma
->rx_addr
,
520 dma
->rx_size
, DMA_FROM_DEVICE
);
522 dma
->rx_desc
= dmaengine_prep_slave_single(dma
->rx_chan
,
523 dma
->rx_addr
, dma
->rx_size
, DMA_DEV_TO_MEM
,
526 dev_err(ourport
->port
.dev
, "Unable to get desc for Rx\n");
530 dma
->rx_desc
->callback
= s3c24xx_serial_rx_dma_complete
;
531 dma
->rx_desc
->callback_param
= ourport
;
532 dma
->rx_bytes_requested
= dma
->rx_size
;
534 dma
->rx_cookie
= dmaengine_submit(dma
->rx_desc
);
535 dma_async_issue_pending(dma
->rx_chan
);
538 /* ? - where has parity gone?? */
539 #define S3C2410_UERSTAT_PARITY (0x1000)
541 static void enable_rx_dma(struct s3c24xx_uart_port
*ourport
)
543 struct uart_port
*port
= &ourport
->port
;
546 /* set Rx mode to DMA mode */
547 ucon
= rd_regl(port
, S3C2410_UCON
);
548 ucon
&= ~(S3C64XX_UCON_RXBURST_MASK
|
549 S3C64XX_UCON_TIMEOUT_MASK
|
550 S3C64XX_UCON_EMPTYINT_EN
|
551 S3C64XX_UCON_DMASUS_EN
|
552 S3C64XX_UCON_TIMEOUT_EN
|
553 S3C64XX_UCON_RXMODE_MASK
);
554 ucon
|= S3C64XX_UCON_RXBURST_16
|
555 0xf << S3C64XX_UCON_TIMEOUT_SHIFT
|
556 S3C64XX_UCON_EMPTYINT_EN
|
557 S3C64XX_UCON_TIMEOUT_EN
|
558 S3C64XX_UCON_RXMODE_DMA
;
559 wr_regl(port
, S3C2410_UCON
, ucon
);
561 ourport
->rx_mode
= S3C24XX_RX_DMA
;
564 static void enable_rx_pio(struct s3c24xx_uart_port
*ourport
)
566 struct uart_port
*port
= &ourport
->port
;
569 /* set Rx mode to DMA mode */
570 ucon
= rd_regl(port
, S3C2410_UCON
);
571 ucon
&= ~(S3C64XX_UCON_TIMEOUT_MASK
|
572 S3C64XX_UCON_EMPTYINT_EN
|
573 S3C64XX_UCON_DMASUS_EN
|
574 S3C64XX_UCON_TIMEOUT_EN
|
575 S3C64XX_UCON_RXMODE_MASK
);
576 ucon
|= 0xf << S3C64XX_UCON_TIMEOUT_SHIFT
|
577 S3C64XX_UCON_TIMEOUT_EN
|
578 S3C64XX_UCON_RXMODE_CPU
;
579 wr_regl(port
, S3C2410_UCON
, ucon
);
581 ourport
->rx_mode
= S3C24XX_RX_PIO
;
584 static irqreturn_t
s3c24xx_serial_rx_chars_dma(int irq
, void *dev_id
)
586 unsigned int utrstat
, ufstat
, received
;
587 struct s3c24xx_uart_port
*ourport
= dev_id
;
588 struct uart_port
*port
= &ourport
->port
;
589 struct s3c24xx_uart_dma
*dma
= ourport
->dma
;
590 struct tty_struct
*tty
= tty_port_tty_get(&ourport
->port
.state
->port
);
591 struct tty_port
*t
= &port
->state
->port
;
593 struct dma_tx_state state
;
595 utrstat
= rd_regl(port
, S3C2410_UTRSTAT
);
596 ufstat
= rd_regl(port
, S3C2410_UFSTAT
);
598 spin_lock_irqsave(&port
->lock
, flags
);
600 if (!(utrstat
& S3C2410_UTRSTAT_TIMEOUT
)) {
601 s3c64xx_start_rx_dma(ourport
);
602 if (ourport
->rx_mode
== S3C24XX_RX_PIO
)
603 enable_rx_dma(ourport
);
607 if (ourport
->rx_mode
== S3C24XX_RX_DMA
) {
608 dmaengine_pause(dma
->rx_chan
);
609 dmaengine_tx_status(dma
->rx_chan
, dma
->rx_cookie
, &state
);
610 dmaengine_terminate_all(dma
->rx_chan
);
611 received
= dma
->rx_bytes_requested
- state
.residue
;
612 s3c24xx_uart_copy_rx_to_tty(ourport
, t
, received
);
614 enable_rx_pio(ourport
);
617 uart_rx_drain_fifo(ourport
);
620 tty_flip_buffer_push(t
);
624 wr_regl(port
, S3C2410_UTRSTAT
, S3C2410_UTRSTAT_TIMEOUT
);
627 spin_unlock_irqrestore(&port
->lock
, flags
);
632 static irqreturn_t
s3c24xx_serial_rx_chars_pio(int irq
, void *dev_id
)
634 struct s3c24xx_uart_port
*ourport
= dev_id
;
635 struct uart_port
*port
= &ourport
->port
;
636 unsigned int ufcon
, ch
, flag
, ufstat
, uerstat
;
638 int max_count
= port
->fifosize
;
640 spin_lock_irqsave(&port
->lock
, flags
);
642 while (max_count
-- > 0) {
643 ufcon
= rd_regl(port
, S3C2410_UFCON
);
644 ufstat
= rd_regl(port
, S3C2410_UFSTAT
);
646 if (s3c24xx_serial_rx_fifocnt(ourport
, ufstat
) == 0)
649 uerstat
= rd_regl(port
, S3C2410_UERSTAT
);
650 ch
= rd_regb(port
, S3C2410_URXH
);
652 if (port
->flags
& UPF_CONS_FLOW
) {
653 int txe
= s3c24xx_serial_txempty_nofifo(port
);
655 if (rx_enabled(port
)) {
657 rx_enabled(port
) = 0;
662 ufcon
|= S3C2410_UFCON_RESETRX
;
663 wr_regl(port
, S3C2410_UFCON
, ufcon
);
664 rx_enabled(port
) = 1;
665 spin_unlock_irqrestore(&port
->lock
,
673 /* insert the character into the buffer */
678 if (unlikely(uerstat
& S3C2410_UERSTAT_ANY
)) {
679 dbg("rxerr: port ch=0x%02x, rxs=0x%08x\n",
682 /* check for break */
683 if (uerstat
& S3C2410_UERSTAT_BREAK
) {
686 if (uart_handle_break(port
))
690 if (uerstat
& S3C2410_UERSTAT_FRAME
)
691 port
->icount
.frame
++;
692 if (uerstat
& S3C2410_UERSTAT_OVERRUN
)
693 port
->icount
.overrun
++;
695 uerstat
&= port
->read_status_mask
;
697 if (uerstat
& S3C2410_UERSTAT_BREAK
)
699 else if (uerstat
& S3C2410_UERSTAT_PARITY
)
701 else if (uerstat
& (S3C2410_UERSTAT_FRAME
|
702 S3C2410_UERSTAT_OVERRUN
))
706 if (uart_handle_sysrq_char(port
, ch
))
709 uart_insert_char(port
, uerstat
, S3C2410_UERSTAT_OVERRUN
,
716 spin_unlock_irqrestore(&port
->lock
, flags
);
717 tty_flip_buffer_push(&port
->state
->port
);
724 static irqreturn_t
s3c24xx_serial_rx_chars(int irq
, void *dev_id
)
726 struct s3c24xx_uart_port
*ourport
= dev_id
;
728 if (ourport
->dma
&& ourport
->dma
->rx_chan
)
729 return s3c24xx_serial_rx_chars_dma(irq
, dev_id
);
730 return s3c24xx_serial_rx_chars_pio(irq
, dev_id
);
733 static irqreturn_t
s3c24xx_serial_tx_chars(int irq
, void *id
)
735 struct s3c24xx_uart_port
*ourport
= id
;
736 struct uart_port
*port
= &ourport
->port
;
737 struct circ_buf
*xmit
= &port
->state
->xmit
;
741 spin_lock_irqsave(&port
->lock
, flags
);
743 count
= CIRC_CNT_TO_END(xmit
->head
, xmit
->tail
, UART_XMIT_SIZE
);
745 if (ourport
->dma
&& ourport
->dma
->tx_chan
&& count
>= port
->fifosize
) {
746 s3c24xx_serial_start_tx_dma(ourport
, count
);
751 wr_regb(port
, S3C2410_UTXH
, port
->x_char
);
757 /* if there isn't anything more to transmit, or the uart is now
758 * stopped, disable the uart and exit
761 if (uart_circ_empty(xmit
) || uart_tx_stopped(port
)) {
762 s3c24xx_serial_stop_tx(port
);
766 /* try and drain the buffer... */
768 count
= port
->fifosize
;
769 while (!uart_circ_empty(xmit
) && count
-- > 0) {
770 if (rd_regl(port
, S3C2410_UFSTAT
) & ourport
->info
->tx_fifofull
)
773 wr_regb(port
, S3C2410_UTXH
, xmit
->buf
[xmit
->tail
]);
774 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
778 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
) {
779 spin_unlock(&port
->lock
);
780 uart_write_wakeup(port
);
781 spin_lock(&port
->lock
);
784 if (uart_circ_empty(xmit
))
785 s3c24xx_serial_stop_tx(port
);
788 spin_unlock_irqrestore(&port
->lock
, flags
);
792 /* interrupt handler for s3c64xx and later SoC's.*/
793 static irqreturn_t
s3c64xx_serial_handle_irq(int irq
, void *id
)
795 struct s3c24xx_uart_port
*ourport
= id
;
796 struct uart_port
*port
= &ourport
->port
;
797 unsigned int pend
= rd_regl(port
, S3C64XX_UINTP
);
798 irqreturn_t ret
= IRQ_HANDLED
;
800 if (pend
& S3C64XX_UINTM_RXD_MSK
) {
801 ret
= s3c24xx_serial_rx_chars(irq
, id
);
802 wr_regl(port
, S3C64XX_UINTP
, S3C64XX_UINTM_RXD_MSK
);
804 if (pend
& S3C64XX_UINTM_TXD_MSK
) {
805 ret
= s3c24xx_serial_tx_chars(irq
, id
);
806 wr_regl(port
, S3C64XX_UINTP
, S3C64XX_UINTM_TXD_MSK
);
811 static unsigned int s3c24xx_serial_tx_empty(struct uart_port
*port
)
813 struct s3c24xx_uart_info
*info
= s3c24xx_port_to_info(port
);
814 unsigned long ufstat
= rd_regl(port
, S3C2410_UFSTAT
);
815 unsigned long ufcon
= rd_regl(port
, S3C2410_UFCON
);
817 if (ufcon
& S3C2410_UFCON_FIFOMODE
) {
818 if ((ufstat
& info
->tx_fifomask
) != 0 ||
819 (ufstat
& info
->tx_fifofull
))
825 return s3c24xx_serial_txempty_nofifo(port
);
828 /* no modem control lines */
829 static unsigned int s3c24xx_serial_get_mctrl(struct uart_port
*port
)
831 unsigned int umstat
= rd_regb(port
, S3C2410_UMSTAT
);
833 if (umstat
& S3C2410_UMSTAT_CTS
)
834 return TIOCM_CAR
| TIOCM_DSR
| TIOCM_CTS
;
836 return TIOCM_CAR
| TIOCM_DSR
;
839 static void s3c24xx_serial_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
841 unsigned int umcon
= rd_regl(port
, S3C2410_UMCON
);
843 if (mctrl
& TIOCM_RTS
)
844 umcon
|= S3C2410_UMCOM_RTS_LOW
;
846 umcon
&= ~S3C2410_UMCOM_RTS_LOW
;
848 wr_regl(port
, S3C2410_UMCON
, umcon
);
851 static void s3c24xx_serial_break_ctl(struct uart_port
*port
, int break_state
)
856 spin_lock_irqsave(&port
->lock
, flags
);
858 ucon
= rd_regl(port
, S3C2410_UCON
);
861 ucon
|= S3C2410_UCON_SBREAK
;
863 ucon
&= ~S3C2410_UCON_SBREAK
;
865 wr_regl(port
, S3C2410_UCON
, ucon
);
867 spin_unlock_irqrestore(&port
->lock
, flags
);
870 static int s3c24xx_serial_request_dma(struct s3c24xx_uart_port
*p
)
872 struct s3c24xx_uart_dma
*dma
= p
->dma
;
876 /* Default slave configuration parameters */
877 dma
->rx_conf
.direction
= DMA_DEV_TO_MEM
;
878 dma
->rx_conf
.src_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
879 dma
->rx_conf
.src_addr
= p
->port
.mapbase
+ S3C2410_URXH
;
880 dma
->rx_conf
.src_maxburst
= 16;
882 dma
->tx_conf
.direction
= DMA_MEM_TO_DEV
;
883 dma
->tx_conf
.dst_addr_width
= DMA_SLAVE_BUSWIDTH_1_BYTE
;
884 dma
->tx_conf
.dst_addr
= p
->port
.mapbase
+ S3C2410_UTXH
;
885 if (dma_get_cache_alignment() >= 16)
886 dma
->tx_conf
.dst_maxburst
= 16;
888 dma
->tx_conf
.dst_maxburst
= 1;
891 dma_cap_set(DMA_SLAVE
, mask
);
893 dma
->rx_chan
= dma_request_slave_channel_compat(mask
, dma
->fn
,
894 dma
->rx_param
, p
->port
.dev
, "rx");
898 dmaengine_slave_config(dma
->rx_chan
, &dma
->rx_conf
);
900 dma
->tx_chan
= dma_request_slave_channel_compat(mask
, dma
->fn
,
901 dma
->tx_param
, p
->port
.dev
, "tx");
903 dma_release_channel(dma
->rx_chan
);
907 dmaengine_slave_config(dma
->tx_chan
, &dma
->tx_conf
);
910 dma
->rx_size
= PAGE_SIZE
;
912 dma
->rx_buf
= kmalloc(dma
->rx_size
, GFP_KERNEL
);
915 dma_release_channel(dma
->rx_chan
);
916 dma_release_channel(dma
->tx_chan
);
920 dma
->rx_addr
= dma_map_single(dma
->rx_chan
->device
->dev
, dma
->rx_buf
,
921 dma
->rx_size
, DMA_FROM_DEVICE
);
923 spin_lock_irqsave(&p
->port
.lock
, flags
);
926 dma
->tx_addr
= dma_map_single(dma
->tx_chan
->device
->dev
,
927 p
->port
.state
->xmit
.buf
,
928 UART_XMIT_SIZE
, DMA_TO_DEVICE
);
930 spin_unlock_irqrestore(&p
->port
.lock
, flags
);
935 static void s3c24xx_serial_release_dma(struct s3c24xx_uart_port
*p
)
937 struct s3c24xx_uart_dma
*dma
= p
->dma
;
940 dmaengine_terminate_all(dma
->rx_chan
);
941 dma_unmap_single(dma
->rx_chan
->device
->dev
, dma
->rx_addr
,
942 dma
->rx_size
, DMA_FROM_DEVICE
);
944 dma_release_channel(dma
->rx_chan
);
949 dmaengine_terminate_all(dma
->tx_chan
);
950 dma_unmap_single(dma
->tx_chan
->device
->dev
, dma
->tx_addr
,
951 UART_XMIT_SIZE
, DMA_TO_DEVICE
);
952 dma_release_channel(dma
->tx_chan
);
957 static void s3c24xx_serial_shutdown(struct uart_port
*port
)
959 struct s3c24xx_uart_port
*ourport
= to_ourport(port
);
961 if (ourport
->tx_claimed
) {
962 if (!s3c24xx_serial_has_interrupt_mask(port
))
963 free_irq(ourport
->tx_irq
, ourport
);
964 tx_enabled(port
) = 0;
965 ourport
->tx_claimed
= 0;
966 ourport
->tx_mode
= 0;
969 if (ourport
->rx_claimed
) {
970 if (!s3c24xx_serial_has_interrupt_mask(port
))
971 free_irq(ourport
->rx_irq
, ourport
);
972 ourport
->rx_claimed
= 0;
973 rx_enabled(port
) = 0;
976 /* Clear pending interrupts and mask all interrupts */
977 if (s3c24xx_serial_has_interrupt_mask(port
)) {
978 free_irq(port
->irq
, ourport
);
980 wr_regl(port
, S3C64XX_UINTP
, 0xf);
981 wr_regl(port
, S3C64XX_UINTM
, 0xf);
985 s3c24xx_serial_release_dma(ourport
);
987 ourport
->tx_in_progress
= 0;
990 static int s3c24xx_serial_startup(struct uart_port
*port
)
992 struct s3c24xx_uart_port
*ourport
= to_ourport(port
);
995 dbg("s3c24xx_serial_startup: port=%p (%08llx,%p)\n",
996 port
, (unsigned long long)port
->mapbase
, port
->membase
);
998 rx_enabled(port
) = 1;
1000 ret
= request_irq(ourport
->rx_irq
, s3c24xx_serial_rx_chars
, 0,
1001 s3c24xx_serial_portname(port
), ourport
);
1004 dev_err(port
->dev
, "cannot get irq %d\n", ourport
->rx_irq
);
1008 ourport
->rx_claimed
= 1;
1010 dbg("requesting tx irq...\n");
1012 tx_enabled(port
) = 1;
1014 ret
= request_irq(ourport
->tx_irq
, s3c24xx_serial_tx_chars
, 0,
1015 s3c24xx_serial_portname(port
), ourport
);
1018 dev_err(port
->dev
, "cannot get irq %d\n", ourport
->tx_irq
);
1022 ourport
->tx_claimed
= 1;
1024 dbg("s3c24xx_serial_startup ok\n");
1026 /* the port reset code should have done the correct
1027 * register setup for the port controls */
1032 s3c24xx_serial_shutdown(port
);
1036 static int s3c64xx_serial_startup(struct uart_port
*port
)
1038 struct s3c24xx_uart_port
*ourport
= to_ourport(port
);
1039 unsigned long flags
;
1043 dbg("s3c64xx_serial_startup: port=%p (%08llx,%p)\n",
1044 port
, (unsigned long long)port
->mapbase
, port
->membase
);
1046 wr_regl(port
, S3C64XX_UINTM
, 0xf);
1048 ret
= s3c24xx_serial_request_dma(ourport
);
1050 dev_warn(port
->dev
, "DMA request failed\n");
1055 ret
= request_irq(port
->irq
, s3c64xx_serial_handle_irq
, IRQF_SHARED
,
1056 s3c24xx_serial_portname(port
), ourport
);
1058 dev_err(port
->dev
, "cannot get irq %d\n", port
->irq
);
1062 /* For compatibility with s3c24xx Soc's */
1063 rx_enabled(port
) = 1;
1064 ourport
->rx_claimed
= 1;
1065 tx_enabled(port
) = 0;
1066 ourport
->tx_claimed
= 1;
1068 spin_lock_irqsave(&port
->lock
, flags
);
1070 ufcon
= rd_regl(port
, S3C2410_UFCON
);
1071 ufcon
|= S3C2410_UFCON_RESETRX
| S5PV210_UFCON_RXTRIG8
;
1072 if (!uart_console(port
))
1073 ufcon
|= S3C2410_UFCON_RESETTX
;
1074 wr_regl(port
, S3C2410_UFCON
, ufcon
);
1076 enable_rx_pio(ourport
);
1078 spin_unlock_irqrestore(&port
->lock
, flags
);
1080 /* Enable Rx Interrupt */
1081 __clear_bit(S3C64XX_UINTM_RXD
, portaddrl(port
, S3C64XX_UINTM
));
1083 dbg("s3c64xx_serial_startup ok\n");
1087 /* power power management control */
1089 static void s3c24xx_serial_pm(struct uart_port
*port
, unsigned int level
,
1092 struct s3c24xx_uart_port
*ourport
= to_ourport(port
);
1093 int timeout
= 10000;
1095 ourport
->pm_level
= level
;
1099 while (--timeout
&& !s3c24xx_serial_txempty_nofifo(port
))
1102 if (!IS_ERR(ourport
->baudclk
))
1103 clk_disable_unprepare(ourport
->baudclk
);
1105 clk_disable_unprepare(ourport
->clk
);
1109 clk_prepare_enable(ourport
->clk
);
1111 if (!IS_ERR(ourport
->baudclk
))
1112 clk_prepare_enable(ourport
->baudclk
);
1116 dev_err(port
->dev
, "s3c24xx_serial: unknown pm %d\n", level
);
1120 /* baud rate calculation
1122 * The UARTs on the S3C2410/S3C2440 can take their clocks from a number
1123 * of different sources, including the peripheral clock ("pclk") and an
1124 * external clock ("uclk"). The S3C2440 also adds the core clock ("fclk")
1125 * with a programmable extra divisor.
1127 * The following code goes through the clock sources, and calculates the
1128 * baud clocks (and the resultant actual baud rates) and then tries to
1129 * pick the closest one and select that.
1133 #define MAX_CLK_NAME_LENGTH 15
1135 static inline int s3c24xx_serial_getsource(struct uart_port
*port
)
1137 struct s3c24xx_uart_info
*info
= s3c24xx_port_to_info(port
);
1140 if (info
->num_clks
== 1)
1143 ucon
= rd_regl(port
, S3C2410_UCON
);
1144 ucon
&= info
->clksel_mask
;
1145 return ucon
>> info
->clksel_shift
;
1148 static void s3c24xx_serial_setsource(struct uart_port
*port
,
1149 unsigned int clk_sel
)
1151 struct s3c24xx_uart_info
*info
= s3c24xx_port_to_info(port
);
1154 if (info
->num_clks
== 1)
1157 ucon
= rd_regl(port
, S3C2410_UCON
);
1158 if ((ucon
& info
->clksel_mask
) >> info
->clksel_shift
== clk_sel
)
1161 ucon
&= ~info
->clksel_mask
;
1162 ucon
|= clk_sel
<< info
->clksel_shift
;
1163 wr_regl(port
, S3C2410_UCON
, ucon
);
1166 static unsigned int s3c24xx_serial_getclk(struct s3c24xx_uart_port
*ourport
,
1167 unsigned int req_baud
, struct clk
**best_clk
,
1168 unsigned int *clk_num
)
1170 struct s3c24xx_uart_info
*info
= ourport
->info
;
1173 unsigned int cnt
, baud
, quot
, clk_sel
, best_quot
= 0;
1174 char clkname
[MAX_CLK_NAME_LENGTH
];
1175 int calc_deviation
, deviation
= (1 << 30) - 1;
1177 clk_sel
= (ourport
->cfg
->clk_sel
) ? ourport
->cfg
->clk_sel
:
1178 ourport
->info
->def_clk_sel
;
1179 for (cnt
= 0; cnt
< info
->num_clks
; cnt
++) {
1180 if (!(clk_sel
& (1 << cnt
)))
1183 sprintf(clkname
, "clk_uart_baud%d", cnt
);
1184 clk
= clk_get(ourport
->port
.dev
, clkname
);
1188 rate
= clk_get_rate(clk
);
1192 if (ourport
->info
->has_divslot
) {
1193 unsigned long div
= rate
/ req_baud
;
1195 /* The UDIVSLOT register on the newer UARTs allows us to
1196 * get a divisor adjustment of 1/16th on the baud clock.
1198 * We don't keep the UDIVSLOT value (the 16ths we
1199 * calculated by not multiplying the baud by 16) as it
1200 * is easy enough to recalculate.
1206 quot
= (rate
+ (8 * req_baud
)) / (16 * req_baud
);
1207 baud
= rate
/ (quot
* 16);
1211 calc_deviation
= req_baud
- baud
;
1212 if (calc_deviation
< 0)
1213 calc_deviation
= -calc_deviation
;
1215 if (calc_deviation
< deviation
) {
1219 deviation
= calc_deviation
;
1228 * This table takes the fractional value of the baud divisor and gives
1229 * the recommended setting for the UDIVSLOT register.
1231 static u16 udivslot_table
[16] = {
1250 static void s3c24xx_serial_set_termios(struct uart_port
*port
,
1251 struct ktermios
*termios
,
1252 struct ktermios
*old
)
1254 struct s3c2410_uartcfg
*cfg
= s3c24xx_port_to_cfg(port
);
1255 struct s3c24xx_uart_port
*ourport
= to_ourport(port
);
1256 struct clk
*clk
= ERR_PTR(-EINVAL
);
1257 unsigned long flags
;
1258 unsigned int baud
, quot
, clk_sel
= 0;
1261 unsigned int udivslot
= 0;
1264 * We don't support modem control lines.
1266 termios
->c_cflag
&= ~(HUPCL
| CMSPAR
);
1267 termios
->c_cflag
|= CLOCAL
;
1270 * Ask the core to calculate the divisor for us.
1273 baud
= uart_get_baud_rate(port
, termios
, old
, 0, 115200*8);
1274 quot
= s3c24xx_serial_getclk(ourport
, baud
, &clk
, &clk_sel
);
1275 if (baud
== 38400 && (port
->flags
& UPF_SPD_MASK
) == UPF_SPD_CUST
)
1276 quot
= port
->custom_divisor
;
1280 /* check to see if we need to change clock source */
1282 if (ourport
->baudclk
!= clk
) {
1283 s3c24xx_serial_setsource(port
, clk_sel
);
1285 if (!IS_ERR(ourport
->baudclk
)) {
1286 clk_disable_unprepare(ourport
->baudclk
);
1287 ourport
->baudclk
= ERR_PTR(-EINVAL
);
1290 clk_prepare_enable(clk
);
1292 ourport
->baudclk
= clk
;
1293 ourport
->baudclk_rate
= clk
? clk_get_rate(clk
) : 0;
1296 if (ourport
->info
->has_divslot
) {
1297 unsigned int div
= ourport
->baudclk_rate
/ baud
;
1299 if (cfg
->has_fracval
) {
1300 udivslot
= (div
& 15);
1301 dbg("fracval = %04x\n", udivslot
);
1303 udivslot
= udivslot_table
[div
& 15];
1304 dbg("udivslot = %04x (div %d)\n", udivslot
, div
& 15);
1308 switch (termios
->c_cflag
& CSIZE
) {
1310 dbg("config: 5bits/char\n");
1311 ulcon
= S3C2410_LCON_CS5
;
1314 dbg("config: 6bits/char\n");
1315 ulcon
= S3C2410_LCON_CS6
;
1318 dbg("config: 7bits/char\n");
1319 ulcon
= S3C2410_LCON_CS7
;
1323 dbg("config: 8bits/char\n");
1324 ulcon
= S3C2410_LCON_CS8
;
1328 /* preserve original lcon IR settings */
1329 ulcon
|= (cfg
->ulcon
& S3C2410_LCON_IRM
);
1331 if (termios
->c_cflag
& CSTOPB
)
1332 ulcon
|= S3C2410_LCON_STOPB
;
1334 if (termios
->c_cflag
& PARENB
) {
1335 if (termios
->c_cflag
& PARODD
)
1336 ulcon
|= S3C2410_LCON_PODD
;
1338 ulcon
|= S3C2410_LCON_PEVEN
;
1340 ulcon
|= S3C2410_LCON_PNONE
;
1343 spin_lock_irqsave(&port
->lock
, flags
);
1345 dbg("setting ulcon to %08x, brddiv to %d, udivslot %08x\n",
1346 ulcon
, quot
, udivslot
);
1348 wr_regl(port
, S3C2410_ULCON
, ulcon
);
1349 wr_regl(port
, S3C2410_UBRDIV
, quot
);
1351 umcon
= rd_regl(port
, S3C2410_UMCON
);
1352 if (termios
->c_cflag
& CRTSCTS
) {
1353 umcon
|= S3C2410_UMCOM_AFC
;
1354 /* Disable RTS when RX FIFO contains 63 bytes */
1355 umcon
&= ~S3C2412_UMCON_AFC_8
;
1357 umcon
&= ~S3C2410_UMCOM_AFC
;
1359 wr_regl(port
, S3C2410_UMCON
, umcon
);
1361 if (ourport
->info
->has_divslot
)
1362 wr_regl(port
, S3C2443_DIVSLOT
, udivslot
);
1364 dbg("uart: ulcon = 0x%08x, ucon = 0x%08x, ufcon = 0x%08x\n",
1365 rd_regl(port
, S3C2410_ULCON
),
1366 rd_regl(port
, S3C2410_UCON
),
1367 rd_regl(port
, S3C2410_UFCON
));
1370 * Update the per-port timeout.
1372 uart_update_timeout(port
, termios
->c_cflag
, baud
);
1375 * Which character status flags are we interested in?
1377 port
->read_status_mask
= S3C2410_UERSTAT_OVERRUN
;
1378 if (termios
->c_iflag
& INPCK
)
1379 port
->read_status_mask
|= S3C2410_UERSTAT_FRAME
|
1380 S3C2410_UERSTAT_PARITY
;
1382 * Which character status flags should we ignore?
1384 port
->ignore_status_mask
= 0;
1385 if (termios
->c_iflag
& IGNPAR
)
1386 port
->ignore_status_mask
|= S3C2410_UERSTAT_OVERRUN
;
1387 if (termios
->c_iflag
& IGNBRK
&& termios
->c_iflag
& IGNPAR
)
1388 port
->ignore_status_mask
|= S3C2410_UERSTAT_FRAME
;
1391 * Ignore all characters if CREAD is not set.
1393 if ((termios
->c_cflag
& CREAD
) == 0)
1394 port
->ignore_status_mask
|= RXSTAT_DUMMY_READ
;
1396 spin_unlock_irqrestore(&port
->lock
, flags
);
1399 static const char *s3c24xx_serial_type(struct uart_port
*port
)
1401 switch (port
->type
) {
1409 return "S3C6400/10";
1415 #define MAP_SIZE (0x100)
1417 static void s3c24xx_serial_release_port(struct uart_port
*port
)
1419 release_mem_region(port
->mapbase
, MAP_SIZE
);
1422 static int s3c24xx_serial_request_port(struct uart_port
*port
)
1424 const char *name
= s3c24xx_serial_portname(port
);
1425 return request_mem_region(port
->mapbase
, MAP_SIZE
, name
) ? 0 : -EBUSY
;
1428 static void s3c24xx_serial_config_port(struct uart_port
*port
, int flags
)
1430 struct s3c24xx_uart_info
*info
= s3c24xx_port_to_info(port
);
1432 if (flags
& UART_CONFIG_TYPE
&&
1433 s3c24xx_serial_request_port(port
) == 0)
1434 port
->type
= info
->type
;
1438 * verify the new serial_struct (for TIOCSSERIAL).
1441 s3c24xx_serial_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
1443 struct s3c24xx_uart_info
*info
= s3c24xx_port_to_info(port
);
1445 if (ser
->type
!= PORT_UNKNOWN
&& ser
->type
!= info
->type
)
1452 #ifdef CONFIG_SERIAL_SAMSUNG_CONSOLE
1454 static struct console s3c24xx_serial_console
;
1456 static int __init
s3c24xx_serial_console_init(void)
1458 register_console(&s3c24xx_serial_console
);
1461 console_initcall(s3c24xx_serial_console_init
);
1463 #define S3C24XX_SERIAL_CONSOLE &s3c24xx_serial_console
1465 #define S3C24XX_SERIAL_CONSOLE NULL
1468 #if defined(CONFIG_SERIAL_SAMSUNG_CONSOLE) && defined(CONFIG_CONSOLE_POLL)
1469 static int s3c24xx_serial_get_poll_char(struct uart_port
*port
);
1470 static void s3c24xx_serial_put_poll_char(struct uart_port
*port
,
1474 static struct uart_ops s3c24xx_serial_ops
= {
1475 .pm
= s3c24xx_serial_pm
,
1476 .tx_empty
= s3c24xx_serial_tx_empty
,
1477 .get_mctrl
= s3c24xx_serial_get_mctrl
,
1478 .set_mctrl
= s3c24xx_serial_set_mctrl
,
1479 .stop_tx
= s3c24xx_serial_stop_tx
,
1480 .start_tx
= s3c24xx_serial_start_tx
,
1481 .stop_rx
= s3c24xx_serial_stop_rx
,
1482 .break_ctl
= s3c24xx_serial_break_ctl
,
1483 .startup
= s3c24xx_serial_startup
,
1484 .shutdown
= s3c24xx_serial_shutdown
,
1485 .set_termios
= s3c24xx_serial_set_termios
,
1486 .type
= s3c24xx_serial_type
,
1487 .release_port
= s3c24xx_serial_release_port
,
1488 .request_port
= s3c24xx_serial_request_port
,
1489 .config_port
= s3c24xx_serial_config_port
,
1490 .verify_port
= s3c24xx_serial_verify_port
,
1491 #if defined(CONFIG_SERIAL_SAMSUNG_CONSOLE) && defined(CONFIG_CONSOLE_POLL)
1492 .poll_get_char
= s3c24xx_serial_get_poll_char
,
1493 .poll_put_char
= s3c24xx_serial_put_poll_char
,
1497 static struct uart_driver s3c24xx_uart_drv
= {
1498 .owner
= THIS_MODULE
,
1499 .driver_name
= "s3c2410_serial",
1500 .nr
= CONFIG_SERIAL_SAMSUNG_UARTS
,
1501 .cons
= S3C24XX_SERIAL_CONSOLE
,
1502 .dev_name
= S3C24XX_SERIAL_NAME
,
1503 .major
= S3C24XX_SERIAL_MAJOR
,
1504 .minor
= S3C24XX_SERIAL_MINOR
,
1507 #define __PORT_LOCK_UNLOCKED(i) \
1508 __SPIN_LOCK_UNLOCKED(s3c24xx_serial_ports[i].port.lock)
1509 static struct s3c24xx_uart_port
1510 s3c24xx_serial_ports
[CONFIG_SERIAL_SAMSUNG_UARTS
] = {
1513 .lock
= __PORT_LOCK_UNLOCKED(0),
1517 .ops
= &s3c24xx_serial_ops
,
1518 .flags
= UPF_BOOT_AUTOCONF
,
1524 .lock
= __PORT_LOCK_UNLOCKED(1),
1528 .ops
= &s3c24xx_serial_ops
,
1529 .flags
= UPF_BOOT_AUTOCONF
,
1533 #if CONFIG_SERIAL_SAMSUNG_UARTS > 2
1537 .lock
= __PORT_LOCK_UNLOCKED(2),
1541 .ops
= &s3c24xx_serial_ops
,
1542 .flags
= UPF_BOOT_AUTOCONF
,
1547 #if CONFIG_SERIAL_SAMSUNG_UARTS > 3
1550 .lock
= __PORT_LOCK_UNLOCKED(3),
1554 .ops
= &s3c24xx_serial_ops
,
1555 .flags
= UPF_BOOT_AUTOCONF
,
1561 #undef __PORT_LOCK_UNLOCKED
1563 /* s3c24xx_serial_resetport
1565 * reset the fifos and other the settings.
1568 static void s3c24xx_serial_resetport(struct uart_port
*port
,
1569 struct s3c2410_uartcfg
*cfg
)
1571 struct s3c24xx_uart_info
*info
= s3c24xx_port_to_info(port
);
1572 unsigned long ucon
= rd_regl(port
, S3C2410_UCON
);
1573 unsigned int ucon_mask
;
1575 ucon_mask
= info
->clksel_mask
;
1576 if (info
->type
== PORT_S3C2440
)
1577 ucon_mask
|= S3C2440_UCON0_DIVMASK
;
1580 wr_regl(port
, S3C2410_UCON
, ucon
| cfg
->ucon
);
1582 /* reset both fifos */
1583 wr_regl(port
, S3C2410_UFCON
, cfg
->ufcon
| S3C2410_UFCON_RESETBOTH
);
1584 wr_regl(port
, S3C2410_UFCON
, cfg
->ufcon
);
1586 /* some delay is required after fifo reset */
1591 #ifdef CONFIG_CPU_FREQ
1593 static int s3c24xx_serial_cpufreq_transition(struct notifier_block
*nb
,
1594 unsigned long val
, void *data
)
1596 struct s3c24xx_uart_port
*port
;
1597 struct uart_port
*uport
;
1599 port
= container_of(nb
, struct s3c24xx_uart_port
, freq_transition
);
1600 uport
= &port
->port
;
1602 /* check to see if port is enabled */
1604 if (port
->pm_level
!= 0)
1607 /* try and work out if the baudrate is changing, we can detect
1608 * a change in rate, but we do not have support for detecting
1609 * a disturbance in the clock-rate over the change.
1612 if (IS_ERR(port
->baudclk
))
1615 if (port
->baudclk_rate
== clk_get_rate(port
->baudclk
))
1618 if (val
== CPUFREQ_PRECHANGE
) {
1619 /* we should really shut the port down whilst the
1620 * frequency change is in progress. */
1622 } else if (val
== CPUFREQ_POSTCHANGE
) {
1623 struct ktermios
*termios
;
1624 struct tty_struct
*tty
;
1626 if (uport
->state
== NULL
)
1629 tty
= uport
->state
->port
.tty
;
1634 termios
= &tty
->termios
;
1636 if (termios
== NULL
) {
1637 dev_warn(uport
->dev
, "%s: no termios?\n", __func__
);
1641 s3c24xx_serial_set_termios(uport
, termios
, NULL
);
1649 s3c24xx_serial_cpufreq_register(struct s3c24xx_uart_port
*port
)
1651 port
->freq_transition
.notifier_call
= s3c24xx_serial_cpufreq_transition
;
1653 return cpufreq_register_notifier(&port
->freq_transition
,
1654 CPUFREQ_TRANSITION_NOTIFIER
);
1658 s3c24xx_serial_cpufreq_deregister(struct s3c24xx_uart_port
*port
)
1660 cpufreq_unregister_notifier(&port
->freq_transition
,
1661 CPUFREQ_TRANSITION_NOTIFIER
);
1666 s3c24xx_serial_cpufreq_register(struct s3c24xx_uart_port
*port
)
1672 s3c24xx_serial_cpufreq_deregister(struct s3c24xx_uart_port
*port
)
1677 /* s3c24xx_serial_init_port
1679 * initialise a single serial port from the platform device given
1682 static int s3c24xx_serial_init_port(struct s3c24xx_uart_port
*ourport
,
1683 struct platform_device
*platdev
)
1685 struct uart_port
*port
= &ourport
->port
;
1686 struct s3c2410_uartcfg
*cfg
= ourport
->cfg
;
1687 struct resource
*res
;
1690 dbg("s3c24xx_serial_init_port: port=%p, platdev=%p\n", port
, platdev
);
1692 if (platdev
== NULL
)
1695 if (port
->mapbase
!= 0)
1698 /* setup info for port */
1699 port
->dev
= &platdev
->dev
;
1701 /* Startup sequence is different for s3c64xx and higher SoC's */
1702 if (s3c24xx_serial_has_interrupt_mask(port
))
1703 s3c24xx_serial_ops
.startup
= s3c64xx_serial_startup
;
1707 if (cfg
->uart_flags
& UPF_CONS_FLOW
) {
1708 dbg("s3c24xx_serial_init_port: enabling flow control\n");
1709 port
->flags
|= UPF_CONS_FLOW
;
1712 /* sort our the physical and virtual addresses for each UART */
1714 res
= platform_get_resource(platdev
, IORESOURCE_MEM
, 0);
1716 dev_err(port
->dev
, "failed to find memory resource for uart\n");
1720 dbg("resource %pR)\n", res
);
1722 port
->membase
= devm_ioremap(port
->dev
, res
->start
, resource_size(res
));
1723 if (!port
->membase
) {
1724 dev_err(port
->dev
, "failed to remap controller address\n");
1728 port
->mapbase
= res
->start
;
1729 ret
= platform_get_irq(platdev
, 0);
1734 ourport
->rx_irq
= ret
;
1735 ourport
->tx_irq
= ret
+ 1;
1738 ret
= platform_get_irq(platdev
, 1);
1740 ourport
->tx_irq
= ret
;
1742 * DMA is currently supported only on DT platforms, if DMA properties
1745 if (platdev
->dev
.of_node
&& of_find_property(platdev
->dev
.of_node
,
1747 ourport
->dma
= devm_kzalloc(port
->dev
,
1748 sizeof(*ourport
->dma
),
1754 ourport
->clk
= clk_get(&platdev
->dev
, "uart");
1755 if (IS_ERR(ourport
->clk
)) {
1756 pr_err("%s: Controller clock not found\n",
1757 dev_name(&platdev
->dev
));
1758 return PTR_ERR(ourport
->clk
);
1761 ret
= clk_prepare_enable(ourport
->clk
);
1763 pr_err("uart: clock failed to prepare+enable: %d\n", ret
);
1764 clk_put(ourport
->clk
);
1768 /* Keep all interrupts masked and cleared */
1769 if (s3c24xx_serial_has_interrupt_mask(port
)) {
1770 wr_regl(port
, S3C64XX_UINTM
, 0xf);
1771 wr_regl(port
, S3C64XX_UINTP
, 0xf);
1772 wr_regl(port
, S3C64XX_UINTSP
, 0xf);
1775 dbg("port: map=%pa, mem=%p, irq=%d (%d,%d), clock=%u\n",
1776 &port
->mapbase
, port
->membase
, port
->irq
,
1777 ourport
->rx_irq
, ourport
->tx_irq
, port
->uartclk
);
1779 /* reset the fifos (and setup the uart) */
1780 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 ourport
= &s3c24xx_serial_ports
[index
];
1820 ourport
->drv_data
= s3c24xx_get_driver_data(pdev
);
1821 if (!ourport
->drv_data
) {
1822 dev_err(&pdev
->dev
, "could not find driver data\n");
1826 ourport
->baudclk
= ERR_PTR(-EINVAL
);
1827 ourport
->info
= ourport
->drv_data
->info
;
1828 ourport
->cfg
= (dev_get_platdata(&pdev
->dev
)) ?
1829 dev_get_platdata(&pdev
->dev
) :
1830 ourport
->drv_data
->def_cfg
;
1833 of_property_read_u32(np
,
1834 "samsung,uart-fifosize", &ourport
->port
.fifosize
);
1836 if (ourport
->drv_data
->fifosize
[index
])
1837 ourport
->port
.fifosize
= ourport
->drv_data
->fifosize
[index
];
1838 else if (ourport
->info
->fifosize
)
1839 ourport
->port
.fifosize
= ourport
->info
->fifosize
;
1843 dbg("%s: initialising port %p...\n", __func__
, ourport
);
1845 ret
= s3c24xx_serial_init_port(ourport
, pdev
);
1849 if (!s3c24xx_uart_drv
.state
) {
1850 ret
= uart_register_driver(&s3c24xx_uart_drv
);
1852 pr_err("Failed to register Samsung UART driver\n");
1857 dbg("%s: adding port\n", __func__
);
1858 uart_add_one_port(&s3c24xx_uart_drv
, &ourport
->port
);
1859 platform_set_drvdata(pdev
, &ourport
->port
);
1862 * Deactivate the clock enabled in s3c24xx_serial_init_port here,
1863 * so that a potential re-enablement through the pm-callback overlaps
1864 * and keeps the clock enabled in this case.
1866 clk_disable_unprepare(ourport
->clk
);
1868 ret
= s3c24xx_serial_cpufreq_register(ourport
);
1870 dev_err(&pdev
->dev
, "failed to add cpufreq notifier\n");
1875 static int s3c24xx_serial_remove(struct platform_device
*dev
)
1877 struct uart_port
*port
= s3c24xx_dev_to_port(&dev
->dev
);
1880 s3c24xx_serial_cpufreq_deregister(to_ourport(port
));
1881 uart_remove_one_port(&s3c24xx_uart_drv
, port
);
1884 uart_unregister_driver(&s3c24xx_uart_drv
);
1889 /* UART power management code */
1890 #ifdef CONFIG_PM_SLEEP
1891 static int s3c24xx_serial_suspend(struct device
*dev
)
1893 struct uart_port
*port
= s3c24xx_dev_to_port(dev
);
1896 uart_suspend_port(&s3c24xx_uart_drv
, port
);
1901 static int s3c24xx_serial_resume(struct device
*dev
)
1903 struct uart_port
*port
= s3c24xx_dev_to_port(dev
);
1904 struct s3c24xx_uart_port
*ourport
= to_ourport(port
);
1907 clk_prepare_enable(ourport
->clk
);
1908 s3c24xx_serial_resetport(port
, s3c24xx_port_to_cfg(port
));
1909 clk_disable_unprepare(ourport
->clk
);
1911 uart_resume_port(&s3c24xx_uart_drv
, port
);
1917 static int s3c24xx_serial_resume_noirq(struct device
*dev
)
1919 struct uart_port
*port
= s3c24xx_dev_to_port(dev
);
1922 /* restore IRQ mask */
1923 if (s3c24xx_serial_has_interrupt_mask(port
)) {
1924 unsigned int uintm
= 0xf;
1925 if (tx_enabled(port
))
1926 uintm
&= ~S3C64XX_UINTM_TXD_MSK
;
1927 if (rx_enabled(port
))
1928 uintm
&= ~S3C64XX_UINTM_RXD_MSK
;
1929 wr_regl(port
, S3C64XX_UINTM
, uintm
);
1936 static const struct dev_pm_ops s3c24xx_serial_pm_ops
= {
1937 .suspend
= s3c24xx_serial_suspend
,
1938 .resume
= s3c24xx_serial_resume
,
1939 .resume_noirq
= s3c24xx_serial_resume_noirq
,
1941 #define SERIAL_SAMSUNG_PM_OPS (&s3c24xx_serial_pm_ops)
1943 #else /* !CONFIG_PM_SLEEP */
1945 #define SERIAL_SAMSUNG_PM_OPS NULL
1946 #endif /* CONFIG_PM_SLEEP */
1950 #ifdef CONFIG_SERIAL_SAMSUNG_CONSOLE
1952 static struct uart_port
*cons_uart
;
1955 s3c24xx_serial_console_txrdy(struct uart_port
*port
, unsigned int ufcon
)
1957 struct s3c24xx_uart_info
*info
= s3c24xx_port_to_info(port
);
1958 unsigned long ufstat
, utrstat
;
1960 if (ufcon
& S3C2410_UFCON_FIFOMODE
) {
1961 /* fifo mode - check amount of data in fifo registers... */
1963 ufstat
= rd_regl(port
, S3C2410_UFSTAT
);
1964 return (ufstat
& info
->tx_fifofull
) ? 0 : 1;
1967 /* in non-fifo mode, we go and use the tx buffer empty */
1969 utrstat
= rd_regl(port
, S3C2410_UTRSTAT
);
1970 return (utrstat
& S3C2410_UTRSTAT_TXE
) ? 1 : 0;
1974 s3c24xx_port_configured(unsigned int ucon
)
1976 /* consider the serial port configured if the tx/rx mode set */
1977 return (ucon
& 0xf) != 0;
1980 #ifdef CONFIG_CONSOLE_POLL
1982 * Console polling routines for writing and reading from the uart while
1983 * in an interrupt or debug context.
1986 static int s3c24xx_serial_get_poll_char(struct uart_port
*port
)
1988 struct s3c24xx_uart_port
*ourport
= to_ourport(port
);
1989 unsigned int ufstat
;
1991 ufstat
= rd_regl(port
, S3C2410_UFSTAT
);
1992 if (s3c24xx_serial_rx_fifocnt(ourport
, ufstat
) == 0)
1993 return NO_POLL_CHAR
;
1995 return rd_regb(port
, S3C2410_URXH
);
1998 static void s3c24xx_serial_put_poll_char(struct uart_port
*port
,
2001 unsigned int ufcon
= rd_regl(port
, S3C2410_UFCON
);
2002 unsigned int ucon
= rd_regl(port
, S3C2410_UCON
);
2004 /* not possible to xmit on unconfigured port */
2005 if (!s3c24xx_port_configured(ucon
))
2008 while (!s3c24xx_serial_console_txrdy(port
, ufcon
))
2010 wr_regb(port
, S3C2410_UTXH
, c
);
2013 #endif /* CONFIG_CONSOLE_POLL */
2016 s3c24xx_serial_console_putchar(struct uart_port
*port
, int ch
)
2018 unsigned int ufcon
= rd_regl(port
, S3C2410_UFCON
);
2020 while (!s3c24xx_serial_console_txrdy(port
, ufcon
))
2022 wr_regb(port
, S3C2410_UTXH
, ch
);
2026 s3c24xx_serial_console_write(struct console
*co
, const char *s
,
2029 unsigned int ucon
= rd_regl(cons_uart
, S3C2410_UCON
);
2031 /* not possible to xmit on unconfigured port */
2032 if (!s3c24xx_port_configured(ucon
))
2035 uart_console_write(cons_uart
, s
, count
, s3c24xx_serial_console_putchar
);
2039 s3c24xx_serial_get_options(struct uart_port
*port
, int *baud
,
2040 int *parity
, int *bits
)
2045 unsigned int ubrdiv
;
2047 unsigned int clk_sel
;
2048 char clk_name
[MAX_CLK_NAME_LENGTH
];
2050 ulcon
= rd_regl(port
, S3C2410_ULCON
);
2051 ucon
= rd_regl(port
, S3C2410_UCON
);
2052 ubrdiv
= rd_regl(port
, S3C2410_UBRDIV
);
2054 dbg("s3c24xx_serial_get_options: port=%p\n"
2055 "registers: ulcon=%08x, ucon=%08x, ubdriv=%08x\n",
2056 port
, ulcon
, ucon
, ubrdiv
);
2058 if (s3c24xx_port_configured(ucon
)) {
2059 switch (ulcon
& S3C2410_LCON_CSMASK
) {
2060 case S3C2410_LCON_CS5
:
2063 case S3C2410_LCON_CS6
:
2066 case S3C2410_LCON_CS7
:
2069 case S3C2410_LCON_CS8
:
2075 switch (ulcon
& S3C2410_LCON_PMASK
) {
2076 case S3C2410_LCON_PEVEN
:
2080 case S3C2410_LCON_PODD
:
2084 case S3C2410_LCON_PNONE
:
2089 /* now calculate the baud rate */
2091 clk_sel
= s3c24xx_serial_getsource(port
);
2092 sprintf(clk_name
, "clk_uart_baud%d", clk_sel
);
2094 clk
= clk_get(port
->dev
, clk_name
);
2096 rate
= clk_get_rate(clk
);
2100 *baud
= rate
/ (16 * (ubrdiv
+ 1));
2101 dbg("calculated baud %d\n", *baud
);
2107 s3c24xx_serial_console_setup(struct console
*co
, char *options
)
2109 struct uart_port
*port
;
2115 dbg("s3c24xx_serial_console_setup: co=%p (%d), %s\n",
2116 co
, co
->index
, options
);
2118 /* is this a valid port */
2120 if (co
->index
== -1 || co
->index
>= CONFIG_SERIAL_SAMSUNG_UARTS
)
2123 port
= &s3c24xx_serial_ports
[co
->index
].port
;
2125 /* is the port configured? */
2127 if (port
->mapbase
== 0x0)
2132 dbg("s3c24xx_serial_console_setup: port=%p (%d)\n", port
, co
->index
);
2135 * Check whether an invalid uart number has been specified, and
2136 * if so, search for the first available port that does have
2140 uart_parse_options(options
, &baud
, &parity
, &bits
, &flow
);
2142 s3c24xx_serial_get_options(port
, &baud
, &parity
, &bits
);
2144 dbg("s3c24xx_serial_console_setup: baud %d\n", baud
);
2146 return uart_set_options(port
, co
, baud
, parity
, bits
, flow
);
2149 static struct console s3c24xx_serial_console
= {
2150 .name
= S3C24XX_SERIAL_NAME
,
2151 .device
= uart_console_device
,
2152 .flags
= CON_PRINTBUFFER
,
2154 .write
= s3c24xx_serial_console_write
,
2155 .setup
= s3c24xx_serial_console_setup
,
2156 .data
= &s3c24xx_uart_drv
,
2158 #endif /* CONFIG_SERIAL_SAMSUNG_CONSOLE */
2160 #ifdef CONFIG_CPU_S3C2410
2161 static struct s3c24xx_serial_drv_data s3c2410_serial_drv_data
= {
2162 .info
= &(struct s3c24xx_uart_info
) {
2163 .name
= "Samsung S3C2410 UART",
2164 .type
= PORT_S3C2410
,
2166 .rx_fifomask
= S3C2410_UFSTAT_RXMASK
,
2167 .rx_fifoshift
= S3C2410_UFSTAT_RXSHIFT
,
2168 .rx_fifofull
= S3C2410_UFSTAT_RXFULL
,
2169 .tx_fifofull
= S3C2410_UFSTAT_TXFULL
,
2170 .tx_fifomask
= S3C2410_UFSTAT_TXMASK
,
2171 .tx_fifoshift
= S3C2410_UFSTAT_TXSHIFT
,
2172 .def_clk_sel
= S3C2410_UCON_CLKSEL0
,
2174 .clksel_mask
= S3C2410_UCON_CLKMASK
,
2175 .clksel_shift
= S3C2410_UCON_CLKSHIFT
,
2177 .def_cfg
= &(struct s3c2410_uartcfg
) {
2178 .ucon
= S3C2410_UCON_DEFAULT
,
2179 .ufcon
= S3C2410_UFCON_DEFAULT
,
2182 #define S3C2410_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c2410_serial_drv_data)
2184 #define S3C2410_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2187 #ifdef CONFIG_CPU_S3C2412
2188 static struct s3c24xx_serial_drv_data s3c2412_serial_drv_data
= {
2189 .info
= &(struct s3c24xx_uart_info
) {
2190 .name
= "Samsung S3C2412 UART",
2191 .type
= PORT_S3C2412
,
2194 .rx_fifomask
= S3C2440_UFSTAT_RXMASK
,
2195 .rx_fifoshift
= S3C2440_UFSTAT_RXSHIFT
,
2196 .rx_fifofull
= S3C2440_UFSTAT_RXFULL
,
2197 .tx_fifofull
= S3C2440_UFSTAT_TXFULL
,
2198 .tx_fifomask
= S3C2440_UFSTAT_TXMASK
,
2199 .tx_fifoshift
= S3C2440_UFSTAT_TXSHIFT
,
2200 .def_clk_sel
= S3C2410_UCON_CLKSEL2
,
2202 .clksel_mask
= S3C2412_UCON_CLKMASK
,
2203 .clksel_shift
= S3C2412_UCON_CLKSHIFT
,
2205 .def_cfg
= &(struct s3c2410_uartcfg
) {
2206 .ucon
= S3C2410_UCON_DEFAULT
,
2207 .ufcon
= S3C2410_UFCON_DEFAULT
,
2210 #define S3C2412_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c2412_serial_drv_data)
2212 #define S3C2412_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2215 #if defined(CONFIG_CPU_S3C2440) || defined(CONFIG_CPU_S3C2416) || \
2216 defined(CONFIG_CPU_S3C2443) || defined(CONFIG_CPU_S3C2442)
2217 static struct s3c24xx_serial_drv_data s3c2440_serial_drv_data
= {
2218 .info
= &(struct s3c24xx_uart_info
) {
2219 .name
= "Samsung S3C2440 UART",
2220 .type
= PORT_S3C2440
,
2223 .rx_fifomask
= S3C2440_UFSTAT_RXMASK
,
2224 .rx_fifoshift
= S3C2440_UFSTAT_RXSHIFT
,
2225 .rx_fifofull
= S3C2440_UFSTAT_RXFULL
,
2226 .tx_fifofull
= S3C2440_UFSTAT_TXFULL
,
2227 .tx_fifomask
= S3C2440_UFSTAT_TXMASK
,
2228 .tx_fifoshift
= S3C2440_UFSTAT_TXSHIFT
,
2229 .def_clk_sel
= S3C2410_UCON_CLKSEL2
,
2231 .clksel_mask
= S3C2412_UCON_CLKMASK
,
2232 .clksel_shift
= S3C2412_UCON_CLKSHIFT
,
2234 .def_cfg
= &(struct s3c2410_uartcfg
) {
2235 .ucon
= S3C2410_UCON_DEFAULT
,
2236 .ufcon
= S3C2410_UFCON_DEFAULT
,
2239 #define S3C2440_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c2440_serial_drv_data)
2241 #define S3C2440_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2244 #if defined(CONFIG_CPU_S3C6400) || defined(CONFIG_CPU_S3C6410)
2245 static struct s3c24xx_serial_drv_data s3c6400_serial_drv_data
= {
2246 .info
= &(struct s3c24xx_uart_info
) {
2247 .name
= "Samsung S3C6400 UART",
2248 .type
= PORT_S3C6400
,
2251 .rx_fifomask
= S3C2440_UFSTAT_RXMASK
,
2252 .rx_fifoshift
= S3C2440_UFSTAT_RXSHIFT
,
2253 .rx_fifofull
= S3C2440_UFSTAT_RXFULL
,
2254 .tx_fifofull
= S3C2440_UFSTAT_TXFULL
,
2255 .tx_fifomask
= S3C2440_UFSTAT_TXMASK
,
2256 .tx_fifoshift
= S3C2440_UFSTAT_TXSHIFT
,
2257 .def_clk_sel
= S3C2410_UCON_CLKSEL2
,
2259 .clksel_mask
= S3C6400_UCON_CLKMASK
,
2260 .clksel_shift
= S3C6400_UCON_CLKSHIFT
,
2262 .def_cfg
= &(struct s3c2410_uartcfg
) {
2263 .ucon
= S3C2410_UCON_DEFAULT
,
2264 .ufcon
= S3C2410_UFCON_DEFAULT
,
2267 #define S3C6400_SERIAL_DRV_DATA ((kernel_ulong_t)&s3c6400_serial_drv_data)
2269 #define S3C6400_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2272 #ifdef CONFIG_CPU_S5PV210
2273 static struct s3c24xx_serial_drv_data s5pv210_serial_drv_data
= {
2274 .info
= &(struct s3c24xx_uart_info
) {
2275 .name
= "Samsung S5PV210 UART",
2276 .type
= PORT_S3C6400
,
2278 .rx_fifomask
= S5PV210_UFSTAT_RXMASK
,
2279 .rx_fifoshift
= S5PV210_UFSTAT_RXSHIFT
,
2280 .rx_fifofull
= S5PV210_UFSTAT_RXFULL
,
2281 .tx_fifofull
= S5PV210_UFSTAT_TXFULL
,
2282 .tx_fifomask
= S5PV210_UFSTAT_TXMASK
,
2283 .tx_fifoshift
= S5PV210_UFSTAT_TXSHIFT
,
2284 .def_clk_sel
= S3C2410_UCON_CLKSEL0
,
2286 .clksel_mask
= S5PV210_UCON_CLKMASK
,
2287 .clksel_shift
= S5PV210_UCON_CLKSHIFT
,
2289 .def_cfg
= &(struct s3c2410_uartcfg
) {
2290 .ucon
= S5PV210_UCON_DEFAULT
,
2291 .ufcon
= S5PV210_UFCON_DEFAULT
,
2293 .fifosize
= { 256, 64, 16, 16 },
2295 #define S5PV210_SERIAL_DRV_DATA ((kernel_ulong_t)&s5pv210_serial_drv_data)
2297 #define S5PV210_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2300 #if defined(CONFIG_ARCH_EXYNOS)
2301 #define EXYNOS_COMMON_SERIAL_DRV_DATA \
2302 .info = &(struct s3c24xx_uart_info) { \
2303 .name = "Samsung Exynos UART", \
2304 .type = PORT_S3C6400, \
2306 .rx_fifomask = S5PV210_UFSTAT_RXMASK, \
2307 .rx_fifoshift = S5PV210_UFSTAT_RXSHIFT, \
2308 .rx_fifofull = S5PV210_UFSTAT_RXFULL, \
2309 .tx_fifofull = S5PV210_UFSTAT_TXFULL, \
2310 .tx_fifomask = S5PV210_UFSTAT_TXMASK, \
2311 .tx_fifoshift = S5PV210_UFSTAT_TXSHIFT, \
2312 .def_clk_sel = S3C2410_UCON_CLKSEL0, \
2315 .clksel_shift = 0, \
2317 .def_cfg = &(struct s3c2410_uartcfg) { \
2318 .ucon = S5PV210_UCON_DEFAULT, \
2319 .ufcon = S5PV210_UFCON_DEFAULT, \
2323 static struct s3c24xx_serial_drv_data exynos4210_serial_drv_data = {
2324 EXYNOS_COMMON_SERIAL_DRV_DATA
,
2325 .fifosize
= { 256, 64, 16, 16 },
2328 static struct s3c24xx_serial_drv_data exynos5433_serial_drv_data
= {
2329 EXYNOS_COMMON_SERIAL_DRV_DATA
,
2330 .fifosize
= { 64, 256, 16, 256 },
2333 #define EXYNOS4210_SERIAL_DRV_DATA ((kernel_ulong_t)&exynos4210_serial_drv_data)
2334 #define EXYNOS5433_SERIAL_DRV_DATA ((kernel_ulong_t)&exynos5433_serial_drv_data)
2336 #define EXYNOS4210_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2337 #define EXYNOS5433_SERIAL_DRV_DATA (kernel_ulong_t)NULL
2340 static struct platform_device_id s3c24xx_serial_driver_ids
[] = {
2342 .name
= "s3c2410-uart",
2343 .driver_data
= S3C2410_SERIAL_DRV_DATA
,
2345 .name
= "s3c2412-uart",
2346 .driver_data
= S3C2412_SERIAL_DRV_DATA
,
2348 .name
= "s3c2440-uart",
2349 .driver_data
= S3C2440_SERIAL_DRV_DATA
,
2351 .name
= "s3c6400-uart",
2352 .driver_data
= S3C6400_SERIAL_DRV_DATA
,
2354 .name
= "s5pv210-uart",
2355 .driver_data
= S5PV210_SERIAL_DRV_DATA
,
2357 .name
= "exynos4210-uart",
2358 .driver_data
= EXYNOS4210_SERIAL_DRV_DATA
,
2360 .name
= "exynos5433-uart",
2361 .driver_data
= EXYNOS5433_SERIAL_DRV_DATA
,
2365 MODULE_DEVICE_TABLE(platform
, s3c24xx_serial_driver_ids
);
2368 static const struct of_device_id s3c24xx_uart_dt_match
[] = {
2369 { .compatible
= "samsung,s3c2410-uart",
2370 .data
= (void *)S3C2410_SERIAL_DRV_DATA
},
2371 { .compatible
= "samsung,s3c2412-uart",
2372 .data
= (void *)S3C2412_SERIAL_DRV_DATA
},
2373 { .compatible
= "samsung,s3c2440-uart",
2374 .data
= (void *)S3C2440_SERIAL_DRV_DATA
},
2375 { .compatible
= "samsung,s3c6400-uart",
2376 .data
= (void *)S3C6400_SERIAL_DRV_DATA
},
2377 { .compatible
= "samsung,s5pv210-uart",
2378 .data
= (void *)S5PV210_SERIAL_DRV_DATA
},
2379 { .compatible
= "samsung,exynos4210-uart",
2380 .data
= (void *)EXYNOS4210_SERIAL_DRV_DATA
},
2381 { .compatible
= "samsung,exynos5433-uart",
2382 .data
= (void *)EXYNOS5433_SERIAL_DRV_DATA
},
2385 MODULE_DEVICE_TABLE(of
, s3c24xx_uart_dt_match
);
2388 static struct platform_driver samsung_serial_driver
= {
2389 .probe
= s3c24xx_serial_probe
,
2390 .remove
= s3c24xx_serial_remove
,
2391 .id_table
= s3c24xx_serial_driver_ids
,
2393 .name
= "samsung-uart",
2394 .pm
= SERIAL_SAMSUNG_PM_OPS
,
2395 .of_match_table
= of_match_ptr(s3c24xx_uart_dt_match
),
2399 module_platform_driver(samsung_serial_driver
);
2401 #ifdef CONFIG_SERIAL_SAMSUNG_CONSOLE
2406 struct samsung_early_console_data
{
2410 static void samsung_early_busyuart(struct uart_port
*port
)
2412 while (!(readl(port
->membase
+ S3C2410_UTRSTAT
) & S3C2410_UTRSTAT_TXFE
))
2416 static void samsung_early_busyuart_fifo(struct uart_port
*port
)
2418 struct samsung_early_console_data
*data
= port
->private_data
;
2420 while (readl(port
->membase
+ S3C2410_UFSTAT
) & data
->txfull_mask
)
2424 static void samsung_early_putc(struct uart_port
*port
, int c
)
2426 if (readl(port
->membase
+ S3C2410_UFCON
) & S3C2410_UFCON_FIFOMODE
)
2427 samsung_early_busyuart_fifo(port
);
2429 samsung_early_busyuart(port
);
2431 writeb(c
, port
->membase
+ S3C2410_UTXH
);
2434 static void samsung_early_write(struct console
*con
, const char *s
, unsigned n
)
2436 struct earlycon_device
*dev
= con
->data
;
2438 uart_console_write(&dev
->port
, s
, n
, samsung_early_putc
);
2441 static int __init
samsung_early_console_setup(struct earlycon_device
*device
,
2444 if (!device
->port
.membase
)
2447 device
->con
->write
= samsung_early_write
;
2452 static struct samsung_early_console_data s3c2410_early_console_data
= {
2453 .txfull_mask
= S3C2410_UFSTAT_TXFULL
,
2456 static int __init
s3c2410_early_console_setup(struct earlycon_device
*device
,
2459 device
->port
.private_data
= &s3c2410_early_console_data
;
2460 return samsung_early_console_setup(device
, opt
);
2462 OF_EARLYCON_DECLARE(s3c2410
, "samsung,s3c2410-uart",
2463 s3c2410_early_console_setup
);
2464 EARLYCON_DECLARE(s3c2410
, s3c2410_early_console_setup
);
2466 /* S3C2412, S3C2440, S3C64xx */
2467 static struct samsung_early_console_data s3c2440_early_console_data
= {
2468 .txfull_mask
= S3C2440_UFSTAT_TXFULL
,
2471 static int __init
s3c2440_early_console_setup(struct earlycon_device
*device
,
2474 device
->port
.private_data
= &s3c2440_early_console_data
;
2475 return samsung_early_console_setup(device
, opt
);
2477 OF_EARLYCON_DECLARE(s3c2412
, "samsung,s3c2412-uart",
2478 s3c2440_early_console_setup
);
2479 OF_EARLYCON_DECLARE(s3c2440
, "samsung,s3c2440-uart",
2480 s3c2440_early_console_setup
);
2481 OF_EARLYCON_DECLARE(s3c6400
, "samsung,s3c6400-uart",
2482 s3c2440_early_console_setup
);
2483 EARLYCON_DECLARE(s3c2412
, s3c2440_early_console_setup
);
2484 EARLYCON_DECLARE(s3c2440
, s3c2440_early_console_setup
);
2485 EARLYCON_DECLARE(s3c6400
, s3c2440_early_console_setup
);
2487 /* S5PV210, EXYNOS */
2488 static struct samsung_early_console_data s5pv210_early_console_data
= {
2489 .txfull_mask
= S5PV210_UFSTAT_TXFULL
,
2492 static int __init
s5pv210_early_console_setup(struct earlycon_device
*device
,
2495 device
->port
.private_data
= &s5pv210_early_console_data
;
2496 return samsung_early_console_setup(device
, opt
);
2498 OF_EARLYCON_DECLARE(s5pv210
, "samsung,s5pv210-uart",
2499 s5pv210_early_console_setup
);
2500 OF_EARLYCON_DECLARE(exynos4210
, "samsung,exynos4210-uart",
2501 s5pv210_early_console_setup
);
2502 EARLYCON_DECLARE(s5pv210
, s5pv210_early_console_setup
);
2503 EARLYCON_DECLARE(exynos4210
, s5pv210_early_console_setup
);
2506 MODULE_ALIAS("platform:samsung-uart");
2507 MODULE_DESCRIPTION("Samsung SoC Serial port driver");
2508 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
2509 MODULE_LICENSE("GPL v2");