blob: 78aea1a49ad81af2e7f0a3890ee97b2d50a6dfb0 [file] [log] [blame]
Jovi Zhang99edb3d2011-03-30 05:30:41 -04001/*
Ben Dooksb4975492008-07-03 12:32:51 +01002 * Driver core for Samsung SoC onboard UARTs.
3 *
Ben Dooksccae9412009-11-13 22:54:14 +00004 * Ben Dooks, Copyright (c) 2003-2008 Simtec Electronics
Ben Dooksb4975492008-07-03 12:32:51 +01005 * http://armlinux.simtec.co.uk/
6 *
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.
10*/
11
12/* Hote on 2410 error handling
13 *
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.
19 *
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
23 *
24 * BJD, 04-Nov-2004
25*/
26
27#if defined(CONFIG_SERIAL_SAMSUNG_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
28#define SUPPORT_SYSRQ
29#endif
30
31#include <linux/module.h>
32#include <linux/ioport.h>
33#include <linux/io.h>
34#include <linux/platform_device.h>
35#include <linux/init.h>
36#include <linux/sysrq.h>
37#include <linux/console.h>
38#include <linux/tty.h>
39#include <linux/tty_flip.h>
40#include <linux/serial_core.h>
41#include <linux/serial.h>
42#include <linux/delay.h>
43#include <linux/clk.h>
Ben Dooks30555472008-10-21 14:06:36 +010044#include <linux/cpufreq.h>
Ben Dooksb4975492008-07-03 12:32:51 +010045
46#include <asm/irq.h>
47
Russell Kinga09e64f2008-08-05 16:14:15 +010048#include <mach/hardware.h>
Ben Dooksb690ace2008-10-21 14:07:03 +010049#include <mach/map.h>
Ben Dooksb4975492008-07-03 12:32:51 +010050
Ben Dooksa2b7ba92008-10-07 22:26:09 +010051#include <plat/regs-serial.h>
Thomas Abraham5f5a7a52011-10-24 11:47:46 +020052#include <plat/clock.h>
Ben Dooksb4975492008-07-03 12:32:51 +010053
54#include "samsung.h"
55
56/* UART name and device definitions */
57
58#define S3C24XX_SERIAL_NAME "ttySAC"
59#define S3C24XX_SERIAL_MAJOR 204
60#define S3C24XX_SERIAL_MINOR 64
61
Ben Dooksb4975492008-07-03 12:32:51 +010062/* macros to change one thing to another */
63
64#define tx_enabled(port) ((port)->unused[0])
65#define rx_enabled(port) ((port)->unused[1])
66
Lucas De Marchi25985ed2011-03-30 22:57:33 -030067/* flag to ignore all characters coming in */
Ben Dooksb4975492008-07-03 12:32:51 +010068#define RXSTAT_DUMMY_READ (0x10000000)
69
70static inline struct s3c24xx_uart_port *to_ourport(struct uart_port *port)
71{
72 return container_of(port, struct s3c24xx_uart_port, port);
73}
74
75/* translate a port to the device name */
76
77static inline const char *s3c24xx_serial_portname(struct uart_port *port)
78{
79 return to_platform_device(port->dev)->name;
80}
81
82static int s3c24xx_serial_txempty_nofifo(struct uart_port *port)
83{
84 return (rd_regl(port, S3C2410_UTRSTAT) & S3C2410_UTRSTAT_TXE);
85}
86
Thomas Abraham88bb4ea2011-08-10 15:51:19 +053087/*
88 * s3c64xx and later SoC's include the interrupt mask and status registers in
89 * the controller itself, unlike the s3c24xx SoC's which have these registers
90 * in the interrupt controller. Check if the port type is s3c64xx or higher.
91 */
92static int s3c24xx_serial_has_interrupt_mask(struct uart_port *port)
93{
94 return to_ourport(port)->info->type == PORT_S3C6400;
95}
96
Ben Dooksb4975492008-07-03 12:32:51 +010097static void s3c24xx_serial_rx_enable(struct uart_port *port)
98{
99 unsigned long flags;
100 unsigned int ucon, ufcon;
101 int count = 10000;
102
103 spin_lock_irqsave(&port->lock, flags);
104
105 while (--count && !s3c24xx_serial_txempty_nofifo(port))
106 udelay(100);
107
108 ufcon = rd_regl(port, S3C2410_UFCON);
109 ufcon |= S3C2410_UFCON_RESETRX;
110 wr_regl(port, S3C2410_UFCON, ufcon);
111
112 ucon = rd_regl(port, S3C2410_UCON);
113 ucon |= S3C2410_UCON_RXIRQMODE;
114 wr_regl(port, S3C2410_UCON, ucon);
115
116 rx_enabled(port) = 1;
117 spin_unlock_irqrestore(&port->lock, flags);
118}
119
120static void s3c24xx_serial_rx_disable(struct uart_port *port)
121{
122 unsigned long flags;
123 unsigned int ucon;
124
125 spin_lock_irqsave(&port->lock, flags);
126
127 ucon = rd_regl(port, S3C2410_UCON);
128 ucon &= ~S3C2410_UCON_RXIRQMODE;
129 wr_regl(port, S3C2410_UCON, ucon);
130
131 rx_enabled(port) = 0;
132 spin_unlock_irqrestore(&port->lock, flags);
133}
134
135static void s3c24xx_serial_stop_tx(struct uart_port *port)
136{
Ben Dooksb73c2892008-10-21 14:07:04 +0100137 struct s3c24xx_uart_port *ourport = to_ourport(port);
138
Ben Dooksb4975492008-07-03 12:32:51 +0100139 if (tx_enabled(port)) {
Thomas Abraham88bb4ea2011-08-10 15:51:19 +0530140 if (s3c24xx_serial_has_interrupt_mask(port))
141 __set_bit(S3C64XX_UINTM_TXD,
142 portaddrl(port, S3C64XX_UINTM));
143 else
144 disable_irq_nosync(ourport->tx_irq);
Ben Dooksb4975492008-07-03 12:32:51 +0100145 tx_enabled(port) = 0;
146 if (port->flags & UPF_CONS_FLOW)
147 s3c24xx_serial_rx_enable(port);
148 }
149}
150
151static void s3c24xx_serial_start_tx(struct uart_port *port)
152{
Ben Dooksb73c2892008-10-21 14:07:04 +0100153 struct s3c24xx_uart_port *ourport = to_ourport(port);
154
Ben Dooksb4975492008-07-03 12:32:51 +0100155 if (!tx_enabled(port)) {
156 if (port->flags & UPF_CONS_FLOW)
157 s3c24xx_serial_rx_disable(port);
158
Thomas Abraham88bb4ea2011-08-10 15:51:19 +0530159 if (s3c24xx_serial_has_interrupt_mask(port))
160 __clear_bit(S3C64XX_UINTM_TXD,
161 portaddrl(port, S3C64XX_UINTM));
162 else
163 enable_irq(ourport->tx_irq);
Ben Dooksb4975492008-07-03 12:32:51 +0100164 tx_enabled(port) = 1;
165 }
166}
167
Ben Dooksb4975492008-07-03 12:32:51 +0100168static void s3c24xx_serial_stop_rx(struct uart_port *port)
169{
Ben Dooksb73c2892008-10-21 14:07:04 +0100170 struct s3c24xx_uart_port *ourport = to_ourport(port);
171
Ben Dooksb4975492008-07-03 12:32:51 +0100172 if (rx_enabled(port)) {
173 dbg("s3c24xx_serial_stop_rx: port=%p\n", port);
Thomas Abraham88bb4ea2011-08-10 15:51:19 +0530174 if (s3c24xx_serial_has_interrupt_mask(port))
175 __set_bit(S3C64XX_UINTM_RXD,
176 portaddrl(port, S3C64XX_UINTM));
177 else
178 disable_irq_nosync(ourport->rx_irq);
Ben Dooksb4975492008-07-03 12:32:51 +0100179 rx_enabled(port) = 0;
180 }
181}
182
183static void s3c24xx_serial_enable_ms(struct uart_port *port)
184{
185}
186
187static inline struct s3c24xx_uart_info *s3c24xx_port_to_info(struct uart_port *port)
188{
189 return to_ourport(port)->info;
190}
191
192static inline struct s3c2410_uartcfg *s3c24xx_port_to_cfg(struct uart_port *port)
193{
Thomas Abraham4d84e972011-10-24 11:47:25 +0200194 struct s3c24xx_uart_port *ourport;
195
Ben Dooksb4975492008-07-03 12:32:51 +0100196 if (port->dev == NULL)
197 return NULL;
198
Thomas Abraham4d84e972011-10-24 11:47:25 +0200199 ourport = container_of(port, struct s3c24xx_uart_port, port);
200 return ourport->cfg;
Ben Dooksb4975492008-07-03 12:32:51 +0100201}
202
203static int s3c24xx_serial_rx_fifocnt(struct s3c24xx_uart_port *ourport,
204 unsigned long ufstat)
205{
206 struct s3c24xx_uart_info *info = ourport->info;
207
208 if (ufstat & info->rx_fifofull)
209 return info->fifosize;
210
211 return (ufstat & info->rx_fifomask) >> info->rx_fifoshift;
212}
213
214
215/* ? - where has parity gone?? */
216#define S3C2410_UERSTAT_PARITY (0x1000)
217
218static irqreturn_t
219s3c24xx_serial_rx_chars(int irq, void *dev_id)
220{
221 struct s3c24xx_uart_port *ourport = dev_id;
222 struct uart_port *port = &ourport->port;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700223 struct tty_struct *tty = port->state->port.tty;
Ben Dooksb4975492008-07-03 12:32:51 +0100224 unsigned int ufcon, ch, flag, ufstat, uerstat;
225 int max_count = 64;
226
227 while (max_count-- > 0) {
228 ufcon = rd_regl(port, S3C2410_UFCON);
229 ufstat = rd_regl(port, S3C2410_UFSTAT);
230
231 if (s3c24xx_serial_rx_fifocnt(ourport, ufstat) == 0)
232 break;
233
234 uerstat = rd_regl(port, S3C2410_UERSTAT);
235 ch = rd_regb(port, S3C2410_URXH);
236
237 if (port->flags & UPF_CONS_FLOW) {
238 int txe = s3c24xx_serial_txempty_nofifo(port);
239
240 if (rx_enabled(port)) {
241 if (!txe) {
242 rx_enabled(port) = 0;
243 continue;
244 }
245 } else {
246 if (txe) {
247 ufcon |= S3C2410_UFCON_RESETRX;
248 wr_regl(port, S3C2410_UFCON, ufcon);
249 rx_enabled(port) = 1;
250 goto out;
251 }
252 continue;
253 }
254 }
255
256 /* insert the character into the buffer */
257
258 flag = TTY_NORMAL;
259 port->icount.rx++;
260
261 if (unlikely(uerstat & S3C2410_UERSTAT_ANY)) {
262 dbg("rxerr: port ch=0x%02x, rxs=0x%08x\n",
263 ch, uerstat);
264
265 /* check for break */
266 if (uerstat & S3C2410_UERSTAT_BREAK) {
267 dbg("break!\n");
268 port->icount.brk++;
269 if (uart_handle_break(port))
270 goto ignore_char;
271 }
272
273 if (uerstat & S3C2410_UERSTAT_FRAME)
274 port->icount.frame++;
275 if (uerstat & S3C2410_UERSTAT_OVERRUN)
276 port->icount.overrun++;
277
278 uerstat &= port->read_status_mask;
279
280 if (uerstat & S3C2410_UERSTAT_BREAK)
281 flag = TTY_BREAK;
282 else if (uerstat & S3C2410_UERSTAT_PARITY)
283 flag = TTY_PARITY;
284 else if (uerstat & (S3C2410_UERSTAT_FRAME |
285 S3C2410_UERSTAT_OVERRUN))
286 flag = TTY_FRAME;
287 }
288
289 if (uart_handle_sysrq_char(port, ch))
290 goto ignore_char;
291
292 uart_insert_char(port, uerstat, S3C2410_UERSTAT_OVERRUN,
293 ch, flag);
294
295 ignore_char:
296 continue;
297 }
298 tty_flip_buffer_push(tty);
299
300 out:
301 return IRQ_HANDLED;
302}
303
304static irqreturn_t s3c24xx_serial_tx_chars(int irq, void *id)
305{
306 struct s3c24xx_uart_port *ourport = id;
307 struct uart_port *port = &ourport->port;
Alan Coxebd2c8f2009-09-19 13:13:28 -0700308 struct circ_buf *xmit = &port->state->xmit;
Ben Dooksb4975492008-07-03 12:32:51 +0100309 int count = 256;
310
311 if (port->x_char) {
312 wr_regb(port, S3C2410_UTXH, port->x_char);
313 port->icount.tx++;
314 port->x_char = 0;
315 goto out;
316 }
317
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300318 /* if there isn't anything more to transmit, or the uart is now
Ben Dooksb4975492008-07-03 12:32:51 +0100319 * stopped, disable the uart and exit
320 */
321
322 if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
323 s3c24xx_serial_stop_tx(port);
324 goto out;
325 }
326
327 /* try and drain the buffer... */
328
329 while (!uart_circ_empty(xmit) && count-- > 0) {
330 if (rd_regl(port, S3C2410_UFSTAT) & ourport->info->tx_fifofull)
331 break;
332
333 wr_regb(port, S3C2410_UTXH, xmit->buf[xmit->tail]);
334 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
335 port->icount.tx++;
336 }
337
338 if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
339 uart_write_wakeup(port);
340
341 if (uart_circ_empty(xmit))
342 s3c24xx_serial_stop_tx(port);
343
344 out:
345 return IRQ_HANDLED;
346}
347
Thomas Abraham88bb4ea2011-08-10 15:51:19 +0530348/* interrupt handler for s3c64xx and later SoC's.*/
349static irqreturn_t s3c64xx_serial_handle_irq(int irq, void *id)
350{
351 struct s3c24xx_uart_port *ourport = id;
352 struct uart_port *port = &ourport->port;
353 unsigned int pend = rd_regl(port, S3C64XX_UINTP);
354 unsigned long flags;
355 irqreturn_t ret = IRQ_HANDLED;
356
357 spin_lock_irqsave(&port->lock, flags);
358 if (pend & S3C64XX_UINTM_RXD_MSK) {
359 ret = s3c24xx_serial_rx_chars(irq, id);
360 wr_regl(port, S3C64XX_UINTP, S3C64XX_UINTM_RXD_MSK);
361 }
362 if (pend & S3C64XX_UINTM_TXD_MSK) {
363 ret = s3c24xx_serial_tx_chars(irq, id);
364 wr_regl(port, S3C64XX_UINTP, S3C64XX_UINTM_TXD_MSK);
365 }
366 spin_unlock_irqrestore(&port->lock, flags);
367 return ret;
368}
369
Ben Dooksb4975492008-07-03 12:32:51 +0100370static unsigned int s3c24xx_serial_tx_empty(struct uart_port *port)
371{
372 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
373 unsigned long ufstat = rd_regl(port, S3C2410_UFSTAT);
374 unsigned long ufcon = rd_regl(port, S3C2410_UFCON);
375
376 if (ufcon & S3C2410_UFCON_FIFOMODE) {
377 if ((ufstat & info->tx_fifomask) != 0 ||
378 (ufstat & info->tx_fifofull))
379 return 0;
380
381 return 1;
382 }
383
384 return s3c24xx_serial_txempty_nofifo(port);
385}
386
387/* no modem control lines */
388static unsigned int s3c24xx_serial_get_mctrl(struct uart_port *port)
389{
390 unsigned int umstat = rd_regb(port, S3C2410_UMSTAT);
391
392 if (umstat & S3C2410_UMSTAT_CTS)
393 return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
394 else
395 return TIOCM_CAR | TIOCM_DSR;
396}
397
398static void s3c24xx_serial_set_mctrl(struct uart_port *port, unsigned int mctrl)
399{
400 /* todo - possibly remove AFC and do manual CTS */
401}
402
403static void s3c24xx_serial_break_ctl(struct uart_port *port, int break_state)
404{
405 unsigned long flags;
406 unsigned int ucon;
407
408 spin_lock_irqsave(&port->lock, flags);
409
410 ucon = rd_regl(port, S3C2410_UCON);
411
412 if (break_state)
413 ucon |= S3C2410_UCON_SBREAK;
414 else
415 ucon &= ~S3C2410_UCON_SBREAK;
416
417 wr_regl(port, S3C2410_UCON, ucon);
418
419 spin_unlock_irqrestore(&port->lock, flags);
420}
421
422static void s3c24xx_serial_shutdown(struct uart_port *port)
423{
424 struct s3c24xx_uart_port *ourport = to_ourport(port);
425
426 if (ourport->tx_claimed) {
Thomas Abraham88bb4ea2011-08-10 15:51:19 +0530427 if (!s3c24xx_serial_has_interrupt_mask(port))
428 free_irq(ourport->tx_irq, ourport);
Ben Dooksb4975492008-07-03 12:32:51 +0100429 tx_enabled(port) = 0;
430 ourport->tx_claimed = 0;
431 }
432
433 if (ourport->rx_claimed) {
Thomas Abraham88bb4ea2011-08-10 15:51:19 +0530434 if (!s3c24xx_serial_has_interrupt_mask(port))
435 free_irq(ourport->rx_irq, ourport);
Ben Dooksb4975492008-07-03 12:32:51 +0100436 ourport->rx_claimed = 0;
437 rx_enabled(port) = 0;
438 }
Ben Dooksb4975492008-07-03 12:32:51 +0100439
Thomas Abraham88bb4ea2011-08-10 15:51:19 +0530440 /* Clear pending interrupts and mask all interrupts */
441 if (s3c24xx_serial_has_interrupt_mask(port)) {
442 wr_regl(port, S3C64XX_UINTP, 0xf);
443 wr_regl(port, S3C64XX_UINTM, 0xf);
444 }
445}
Ben Dooksb4975492008-07-03 12:32:51 +0100446
447static int s3c24xx_serial_startup(struct uart_port *port)
448{
449 struct s3c24xx_uart_port *ourport = to_ourport(port);
450 int ret;
451
452 dbg("s3c24xx_serial_startup: port=%p (%08lx,%p)\n",
453 port->mapbase, port->membase);
454
455 rx_enabled(port) = 1;
456
Ben Dooksb73c2892008-10-21 14:07:04 +0100457 ret = request_irq(ourport->rx_irq, s3c24xx_serial_rx_chars, 0,
Ben Dooksb4975492008-07-03 12:32:51 +0100458 s3c24xx_serial_portname(port), ourport);
459
460 if (ret != 0) {
Ben Dooksb73c2892008-10-21 14:07:04 +0100461 printk(KERN_ERR "cannot get irq %d\n", ourport->rx_irq);
Ben Dooksb4975492008-07-03 12:32:51 +0100462 return ret;
463 }
464
465 ourport->rx_claimed = 1;
466
467 dbg("requesting tx irq...\n");
468
469 tx_enabled(port) = 1;
470
Ben Dooksb73c2892008-10-21 14:07:04 +0100471 ret = request_irq(ourport->tx_irq, s3c24xx_serial_tx_chars, 0,
Ben Dooksb4975492008-07-03 12:32:51 +0100472 s3c24xx_serial_portname(port), ourport);
473
474 if (ret) {
Ben Dooksb73c2892008-10-21 14:07:04 +0100475 printk(KERN_ERR "cannot get irq %d\n", ourport->tx_irq);
Ben Dooksb4975492008-07-03 12:32:51 +0100476 goto err;
477 }
478
479 ourport->tx_claimed = 1;
480
481 dbg("s3c24xx_serial_startup ok\n");
482
483 /* the port reset code should have done the correct
484 * register setup for the port controls */
485
486 return ret;
487
488 err:
489 s3c24xx_serial_shutdown(port);
490 return ret;
491}
492
Thomas Abraham88bb4ea2011-08-10 15:51:19 +0530493static int s3c64xx_serial_startup(struct uart_port *port)
494{
495 struct s3c24xx_uart_port *ourport = to_ourport(port);
496 int ret;
497
498 dbg("s3c64xx_serial_startup: port=%p (%08lx,%p)\n",
499 port->mapbase, port->membase);
500
501 ret = request_irq(port->irq, s3c64xx_serial_handle_irq, IRQF_SHARED,
502 s3c24xx_serial_portname(port), ourport);
503 if (ret) {
504 printk(KERN_ERR "cannot get irq %d\n", port->irq);
505 return ret;
506 }
507
508 /* For compatibility with s3c24xx Soc's */
509 rx_enabled(port) = 1;
510 ourport->rx_claimed = 1;
511 tx_enabled(port) = 0;
512 ourport->tx_claimed = 1;
513
514 /* Enable Rx Interrupt */
515 __clear_bit(S3C64XX_UINTM_RXD, portaddrl(port, S3C64XX_UINTM));
516 dbg("s3c64xx_serial_startup ok\n");
517 return ret;
518}
519
Ben Dooksb4975492008-07-03 12:32:51 +0100520/* power power management control */
521
522static void s3c24xx_serial_pm(struct uart_port *port, unsigned int level,
523 unsigned int old)
524{
525 struct s3c24xx_uart_port *ourport = to_ourport(port);
526
Ben Dooks30555472008-10-21 14:06:36 +0100527 ourport->pm_level = level;
528
Ben Dooksb4975492008-07-03 12:32:51 +0100529 switch (level) {
530 case 3:
531 if (!IS_ERR(ourport->baudclk) && ourport->baudclk != NULL)
532 clk_disable(ourport->baudclk);
533
534 clk_disable(ourport->clk);
535 break;
536
537 case 0:
538 clk_enable(ourport->clk);
539
540 if (!IS_ERR(ourport->baudclk) && ourport->baudclk != NULL)
541 clk_enable(ourport->baudclk);
542
543 break;
544 default:
545 printk(KERN_ERR "s3c24xx_serial: unknown pm %d\n", level);
546 }
547}
548
549/* baud rate calculation
550 *
551 * The UARTs on the S3C2410/S3C2440 can take their clocks from a number
552 * of different sources, including the peripheral clock ("pclk") and an
553 * external clock ("uclk"). The S3C2440 also adds the core clock ("fclk")
554 * with a programmable extra divisor.
555 *
556 * The following code goes through the clock sources, and calculates the
557 * baud clocks (and the resultant actual baud rates) and then tries to
558 * pick the closest one and select that.
559 *
560*/
561
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200562#define MAX_CLK_NAME_LENGTH 15
Ben Dooksb4975492008-07-03 12:32:51 +0100563
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200564static inline int s3c24xx_serial_getsource(struct uart_port *port)
Ben Dooksb4975492008-07-03 12:32:51 +0100565{
566 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200567 unsigned int ucon;
Ben Dooksb4975492008-07-03 12:32:51 +0100568
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200569 if (info->num_clks == 1)
Ben Dooksb4975492008-07-03 12:32:51 +0100570 return 0;
571
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200572 ucon = rd_regl(port, S3C2410_UCON);
573 ucon &= info->clksel_mask;
574 return ucon >> info->clksel_shift;
Ben Dooksb4975492008-07-03 12:32:51 +0100575}
576
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200577static void s3c24xx_serial_setsource(struct uart_port *port,
578 unsigned int clk_sel)
Ben Dooksb4975492008-07-03 12:32:51 +0100579{
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200580 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
581 unsigned int ucon;
Ben Dooksb4975492008-07-03 12:32:51 +0100582
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200583 if (info->num_clks == 1)
584 return;
Ben Dooksb4975492008-07-03 12:32:51 +0100585
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200586 ucon = rd_regl(port, S3C2410_UCON);
587 if ((ucon & info->clksel_mask) >> info->clksel_shift == clk_sel)
588 return;
Ben Dooksb4975492008-07-03 12:32:51 +0100589
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200590 ucon &= ~info->clksel_mask;
591 ucon |= clk_sel << info->clksel_shift;
592 wr_regl(port, S3C2410_UCON, ucon);
593}
Ben Dooksb4975492008-07-03 12:32:51 +0100594
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200595static unsigned int s3c24xx_serial_getclk(struct s3c24xx_uart_port *ourport,
596 unsigned int req_baud, struct clk **best_clk,
597 unsigned int *clk_num)
598{
599 struct s3c24xx_uart_info *info = ourport->info;
600 struct clk *clk;
601 unsigned long rate;
602 unsigned int cnt, baud, quot, clk_sel, best_quot = 0;
603 char clkname[MAX_CLK_NAME_LENGTH];
604 int calc_deviation, deviation = (1 << 30) - 1;
605
606 *best_clk = NULL;
607 clk_sel = (ourport->cfg->clk_sel) ? ourport->cfg->clk_sel :
608 ourport->info->def_clk_sel;
609 for (cnt = 0; cnt < info->num_clks; cnt++) {
610 if (!(clk_sel & (1 << cnt)))
611 continue;
612
613 sprintf(clkname, "clk_uart_baud%d", cnt);
614 clk = clk_get(ourport->port.dev, clkname);
615 if (IS_ERR_OR_NULL(clk))
616 continue;
617
618 rate = clk_get_rate(clk);
619 if (!rate)
620 continue;
621
622 if (ourport->info->has_divslot) {
623 unsigned long div = rate / req_baud;
624
625 /* The UDIVSLOT register on the newer UARTs allows us to
626 * get a divisor adjustment of 1/16th on the baud clock.
627 *
628 * We don't keep the UDIVSLOT value (the 16ths we
629 * calculated by not multiplying the baud by 16) as it
630 * is easy enough to recalculate.
631 */
632
633 quot = div / 16;
634 baud = rate / div;
635 } else {
636 quot = (rate + (8 * req_baud)) / (16 * req_baud);
637 baud = rate / (quot * 16);
638 }
639 quot--;
640
641 calc_deviation = req_baud - baud;
642 if (calc_deviation < 0)
643 calc_deviation = -calc_deviation;
644
645 if (calc_deviation < deviation) {
646 *best_clk = clk;
647 best_quot = quot;
648 *clk_num = cnt;
649 deviation = calc_deviation;
Ben Dooksb4975492008-07-03 12:32:51 +0100650 }
651 }
652
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200653 return best_quot;
Ben Dooksb4975492008-07-03 12:32:51 +0100654}
655
Ben Dooks090f8482008-12-12 00:24:21 +0000656/* udivslot_table[]
657 *
658 * This table takes the fractional value of the baud divisor and gives
659 * the recommended setting for the UDIVSLOT register.
660 */
661static u16 udivslot_table[16] = {
662 [0] = 0x0000,
663 [1] = 0x0080,
664 [2] = 0x0808,
665 [3] = 0x0888,
666 [4] = 0x2222,
667 [5] = 0x4924,
668 [6] = 0x4A52,
669 [7] = 0x54AA,
670 [8] = 0x5555,
671 [9] = 0xD555,
672 [10] = 0xD5D5,
673 [11] = 0xDDD5,
674 [12] = 0xDDDD,
675 [13] = 0xDFDD,
676 [14] = 0xDFDF,
677 [15] = 0xFFDF,
678};
679
Ben Dooksb4975492008-07-03 12:32:51 +0100680static void s3c24xx_serial_set_termios(struct uart_port *port,
681 struct ktermios *termios,
682 struct ktermios *old)
683{
684 struct s3c2410_uartcfg *cfg = s3c24xx_port_to_cfg(port);
685 struct s3c24xx_uart_port *ourport = to_ourport(port);
Ben Dooksb4975492008-07-03 12:32:51 +0100686 struct clk *clk = NULL;
687 unsigned long flags;
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200688 unsigned int baud, quot, clk_sel = 0;
Ben Dooksb4975492008-07-03 12:32:51 +0100689 unsigned int ulcon;
690 unsigned int umcon;
Ben Dooks090f8482008-12-12 00:24:21 +0000691 unsigned int udivslot = 0;
Ben Dooksb4975492008-07-03 12:32:51 +0100692
693 /*
694 * We don't support modem control lines.
695 */
696 termios->c_cflag &= ~(HUPCL | CMSPAR);
697 termios->c_cflag |= CLOCAL;
698
699 /*
700 * Ask the core to calculate the divisor for us.
701 */
702
703 baud = uart_get_baud_rate(port, termios, old, 0, 115200*8);
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200704 quot = s3c24xx_serial_getclk(ourport, baud, &clk, &clk_sel);
Ben Dooksb4975492008-07-03 12:32:51 +0100705 if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
706 quot = port->custom_divisor;
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200707 if (!clk)
708 return;
Ben Dooksb4975492008-07-03 12:32:51 +0100709
710 /* check to see if we need to change clock source */
711
Thomas Abraham5f5a7a52011-10-24 11:47:46 +0200712 if (ourport->baudclk != clk) {
713 s3c24xx_serial_setsource(port, clk_sel);
Ben Dooksb4975492008-07-03 12:32:51 +0100714
715 if (ourport->baudclk != NULL && !IS_ERR(ourport->baudclk)) {
716 clk_disable(ourport->baudclk);
717 ourport->baudclk = NULL;
718 }
719
720 clk_enable(clk);
721
Ben Dooksb4975492008-07-03 12:32:51 +0100722 ourport->baudclk = clk;
Ben Dooks30555472008-10-21 14:06:36 +0100723 ourport->baudclk_rate = clk ? clk_get_rate(clk) : 0;
Ben Dooksb4975492008-07-03 12:32:51 +0100724 }
725
Ben Dooks090f8482008-12-12 00:24:21 +0000726 if (ourport->info->has_divslot) {
727 unsigned int div = ourport->baudclk_rate / baud;
728
Jongpill Lee8b526ae2010-07-16 10:19:41 +0900729 if (cfg->has_fracval) {
730 udivslot = (div & 15);
731 dbg("fracval = %04x\n", udivslot);
732 } else {
733 udivslot = udivslot_table[div & 15];
734 dbg("udivslot = %04x (div %d)\n", udivslot, div & 15);
735 }
Ben Dooks090f8482008-12-12 00:24:21 +0000736 }
737
Ben Dooksb4975492008-07-03 12:32:51 +0100738 switch (termios->c_cflag & CSIZE) {
739 case CS5:
740 dbg("config: 5bits/char\n");
741 ulcon = S3C2410_LCON_CS5;
742 break;
743 case CS6:
744 dbg("config: 6bits/char\n");
745 ulcon = S3C2410_LCON_CS6;
746 break;
747 case CS7:
748 dbg("config: 7bits/char\n");
749 ulcon = S3C2410_LCON_CS7;
750 break;
751 case CS8:
752 default:
753 dbg("config: 8bits/char\n");
754 ulcon = S3C2410_LCON_CS8;
755 break;
756 }
757
758 /* preserve original lcon IR settings */
759 ulcon |= (cfg->ulcon & S3C2410_LCON_IRM);
760
761 if (termios->c_cflag & CSTOPB)
762 ulcon |= S3C2410_LCON_STOPB;
763
764 umcon = (termios->c_cflag & CRTSCTS) ? S3C2410_UMCOM_AFC : 0;
765
766 if (termios->c_cflag & PARENB) {
767 if (termios->c_cflag & PARODD)
768 ulcon |= S3C2410_LCON_PODD;
769 else
770 ulcon |= S3C2410_LCON_PEVEN;
771 } else {
772 ulcon |= S3C2410_LCON_PNONE;
773 }
774
775 spin_lock_irqsave(&port->lock, flags);
776
Ben Dooks090f8482008-12-12 00:24:21 +0000777 dbg("setting ulcon to %08x, brddiv to %d, udivslot %08x\n",
778 ulcon, quot, udivslot);
Ben Dooksb4975492008-07-03 12:32:51 +0100779
780 wr_regl(port, S3C2410_ULCON, ulcon);
781 wr_regl(port, S3C2410_UBRDIV, quot);
782 wr_regl(port, S3C2410_UMCON, umcon);
783
Ben Dooks090f8482008-12-12 00:24:21 +0000784 if (ourport->info->has_divslot)
785 wr_regl(port, S3C2443_DIVSLOT, udivslot);
786
Ben Dooksb4975492008-07-03 12:32:51 +0100787 dbg("uart: ulcon = 0x%08x, ucon = 0x%08x, ufcon = 0x%08x\n",
788 rd_regl(port, S3C2410_ULCON),
789 rd_regl(port, S3C2410_UCON),
790 rd_regl(port, S3C2410_UFCON));
791
792 /*
793 * Update the per-port timeout.
794 */
795 uart_update_timeout(port, termios->c_cflag, baud);
796
797 /*
798 * Which character status flags are we interested in?
799 */
800 port->read_status_mask = S3C2410_UERSTAT_OVERRUN;
801 if (termios->c_iflag & INPCK)
802 port->read_status_mask |= S3C2410_UERSTAT_FRAME | S3C2410_UERSTAT_PARITY;
803
804 /*
805 * Which character status flags should we ignore?
806 */
807 port->ignore_status_mask = 0;
808 if (termios->c_iflag & IGNPAR)
809 port->ignore_status_mask |= S3C2410_UERSTAT_OVERRUN;
810 if (termios->c_iflag & IGNBRK && termios->c_iflag & IGNPAR)
811 port->ignore_status_mask |= S3C2410_UERSTAT_FRAME;
812
813 /*
814 * Ignore all characters if CREAD is not set.
815 */
816 if ((termios->c_cflag & CREAD) == 0)
817 port->ignore_status_mask |= RXSTAT_DUMMY_READ;
818
819 spin_unlock_irqrestore(&port->lock, flags);
820}
821
822static const char *s3c24xx_serial_type(struct uart_port *port)
823{
824 switch (port->type) {
825 case PORT_S3C2410:
826 return "S3C2410";
827 case PORT_S3C2440:
828 return "S3C2440";
829 case PORT_S3C2412:
830 return "S3C2412";
Ben Dooksb690ace2008-10-21 14:07:03 +0100831 case PORT_S3C6400:
832 return "S3C6400/10";
Ben Dooksb4975492008-07-03 12:32:51 +0100833 default:
834 return NULL;
835 }
836}
837
838#define MAP_SIZE (0x100)
839
840static void s3c24xx_serial_release_port(struct uart_port *port)
841{
842 release_mem_region(port->mapbase, MAP_SIZE);
843}
844
845static int s3c24xx_serial_request_port(struct uart_port *port)
846{
847 const char *name = s3c24xx_serial_portname(port);
848 return request_mem_region(port->mapbase, MAP_SIZE, name) ? 0 : -EBUSY;
849}
850
851static void s3c24xx_serial_config_port(struct uart_port *port, int flags)
852{
853 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
854
855 if (flags & UART_CONFIG_TYPE &&
856 s3c24xx_serial_request_port(port) == 0)
857 port->type = info->type;
858}
859
860/*
861 * verify the new serial_struct (for TIOCSSERIAL).
862 */
863static int
864s3c24xx_serial_verify_port(struct uart_port *port, struct serial_struct *ser)
865{
866 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
867
868 if (ser->type != PORT_UNKNOWN && ser->type != info->type)
869 return -EINVAL;
870
871 return 0;
872}
873
874
875#ifdef CONFIG_SERIAL_SAMSUNG_CONSOLE
876
877static struct console s3c24xx_serial_console;
878
879#define S3C24XX_SERIAL_CONSOLE &s3c24xx_serial_console
880#else
881#define S3C24XX_SERIAL_CONSOLE NULL
882#endif
883
884static struct uart_ops s3c24xx_serial_ops = {
885 .pm = s3c24xx_serial_pm,
886 .tx_empty = s3c24xx_serial_tx_empty,
887 .get_mctrl = s3c24xx_serial_get_mctrl,
888 .set_mctrl = s3c24xx_serial_set_mctrl,
889 .stop_tx = s3c24xx_serial_stop_tx,
890 .start_tx = s3c24xx_serial_start_tx,
891 .stop_rx = s3c24xx_serial_stop_rx,
892 .enable_ms = s3c24xx_serial_enable_ms,
893 .break_ctl = s3c24xx_serial_break_ctl,
894 .startup = s3c24xx_serial_startup,
895 .shutdown = s3c24xx_serial_shutdown,
896 .set_termios = s3c24xx_serial_set_termios,
897 .type = s3c24xx_serial_type,
898 .release_port = s3c24xx_serial_release_port,
899 .request_port = s3c24xx_serial_request_port,
900 .config_port = s3c24xx_serial_config_port,
901 .verify_port = s3c24xx_serial_verify_port,
902};
903
Ben Dooksb4975492008-07-03 12:32:51 +0100904static struct uart_driver s3c24xx_uart_drv = {
905 .owner = THIS_MODULE,
Darius Augulis2cf0c582011-01-12 14:50:51 +0900906 .driver_name = "s3c2410_serial",
Ben Dooksbdd49152008-11-03 19:51:42 +0000907 .nr = CONFIG_SERIAL_SAMSUNG_UARTS,
Ben Dooksb4975492008-07-03 12:32:51 +0100908 .cons = S3C24XX_SERIAL_CONSOLE,
Darius Augulis2cf0c582011-01-12 14:50:51 +0900909 .dev_name = S3C24XX_SERIAL_NAME,
Ben Dooksb4975492008-07-03 12:32:51 +0100910 .major = S3C24XX_SERIAL_MAJOR,
911 .minor = S3C24XX_SERIAL_MINOR,
912};
913
Ben Dooks03d5e772008-11-03 09:21:23 +0000914static struct s3c24xx_uart_port s3c24xx_serial_ports[CONFIG_SERIAL_SAMSUNG_UARTS] = {
Ben Dooksb4975492008-07-03 12:32:51 +0100915 [0] = {
916 .port = {
917 .lock = __SPIN_LOCK_UNLOCKED(s3c24xx_serial_ports[0].port.lock),
918 .iotype = UPIO_MEM,
Ben Dooksb4975492008-07-03 12:32:51 +0100919 .uartclk = 0,
920 .fifosize = 16,
921 .ops = &s3c24xx_serial_ops,
922 .flags = UPF_BOOT_AUTOCONF,
923 .line = 0,
924 }
925 },
926 [1] = {
927 .port = {
928 .lock = __SPIN_LOCK_UNLOCKED(s3c24xx_serial_ports[1].port.lock),
929 .iotype = UPIO_MEM,
Ben Dooksb4975492008-07-03 12:32:51 +0100930 .uartclk = 0,
931 .fifosize = 16,
932 .ops = &s3c24xx_serial_ops,
933 .flags = UPF_BOOT_AUTOCONF,
934 .line = 1,
935 }
936 },
Ben Dooks03d5e772008-11-03 09:21:23 +0000937#if CONFIG_SERIAL_SAMSUNG_UARTS > 2
Ben Dooksb4975492008-07-03 12:32:51 +0100938
939 [2] = {
940 .port = {
941 .lock = __SPIN_LOCK_UNLOCKED(s3c24xx_serial_ports[2].port.lock),
942 .iotype = UPIO_MEM,
Ben Dooksb4975492008-07-03 12:32:51 +0100943 .uartclk = 0,
944 .fifosize = 16,
945 .ops = &s3c24xx_serial_ops,
946 .flags = UPF_BOOT_AUTOCONF,
947 .line = 2,
948 }
Ben Dooks03d5e772008-11-03 09:21:23 +0000949 },
950#endif
951#if CONFIG_SERIAL_SAMSUNG_UARTS > 3
952 [3] = {
953 .port = {
954 .lock = __SPIN_LOCK_UNLOCKED(s3c24xx_serial_ports[3].port.lock),
955 .iotype = UPIO_MEM,
Ben Dooks03d5e772008-11-03 09:21:23 +0000956 .uartclk = 0,
957 .fifosize = 16,
958 .ops = &s3c24xx_serial_ops,
959 .flags = UPF_BOOT_AUTOCONF,
960 .line = 3,
961 }
Ben Dooksb4975492008-07-03 12:32:51 +0100962 }
963#endif
964};
965
966/* s3c24xx_serial_resetport
967 *
Thomas Abraham0dfb3b42011-10-24 11:48:21 +0200968 * reset the fifos and other the settings.
Ben Dooksb4975492008-07-03 12:32:51 +0100969*/
970
Thomas Abraham0dfb3b42011-10-24 11:48:21 +0200971static void s3c24xx_serial_resetport(struct uart_port *port,
972 struct s3c2410_uartcfg *cfg)
Ben Dooksb4975492008-07-03 12:32:51 +0100973{
974 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
Thomas Abraham0dfb3b42011-10-24 11:48:21 +0200975 unsigned long ucon = rd_regl(port, S3C2410_UCON);
976 unsigned int ucon_mask;
Ben Dooksb4975492008-07-03 12:32:51 +0100977
Thomas Abraham0dfb3b42011-10-24 11:48:21 +0200978 ucon_mask = info->clksel_mask;
979 if (info->type == PORT_S3C2440)
980 ucon_mask |= S3C2440_UCON0_DIVMASK;
981
982 ucon &= ucon_mask;
983 wr_regl(port, S3C2410_UCON, ucon | cfg->ucon);
984
985 /* reset both fifos */
986 wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
987 wr_regl(port, S3C2410_UFCON, cfg->ufcon);
988
989 /* some delay is required after fifo reset */
990 udelay(1);
Ben Dooksb4975492008-07-03 12:32:51 +0100991}
992
Ben Dooks30555472008-10-21 14:06:36 +0100993
994#ifdef CONFIG_CPU_FREQ
995
996static int s3c24xx_serial_cpufreq_transition(struct notifier_block *nb,
997 unsigned long val, void *data)
998{
999 struct s3c24xx_uart_port *port;
1000 struct uart_port *uport;
1001
1002 port = container_of(nb, struct s3c24xx_uart_port, freq_transition);
1003 uport = &port->port;
1004
1005 /* check to see if port is enabled */
1006
1007 if (port->pm_level != 0)
1008 return 0;
1009
1010 /* try and work out if the baudrate is changing, we can detect
1011 * a change in rate, but we do not have support for detecting
1012 * a disturbance in the clock-rate over the change.
1013 */
1014
1015 if (IS_ERR(port->clk))
1016 goto exit;
1017
1018 if (port->baudclk_rate == clk_get_rate(port->clk))
1019 goto exit;
1020
1021 if (val == CPUFREQ_PRECHANGE) {
1022 /* we should really shut the port down whilst the
1023 * frequency change is in progress. */
1024
1025 } else if (val == CPUFREQ_POSTCHANGE) {
1026 struct ktermios *termios;
1027 struct tty_struct *tty;
1028
Alan Coxebd2c8f2009-09-19 13:13:28 -07001029 if (uport->state == NULL)
Ben Dooks30555472008-10-21 14:06:36 +01001030 goto exit;
Ben Dooks30555472008-10-21 14:06:36 +01001031
Alan Coxebd2c8f2009-09-19 13:13:28 -07001032 tty = uport->state->port.tty;
Ben Dooks30555472008-10-21 14:06:36 +01001033
Ben Dooks7de40c22008-12-14 23:11:02 +00001034 if (tty == NULL)
Ben Dooks30555472008-10-21 14:06:36 +01001035 goto exit;
Ben Dooks30555472008-10-21 14:06:36 +01001036
1037 termios = tty->termios;
1038
1039 if (termios == NULL) {
1040 printk(KERN_WARNING "%s: no termios?\n", __func__);
1041 goto exit;
1042 }
1043
1044 s3c24xx_serial_set_termios(uport, termios, NULL);
1045 }
1046
1047 exit:
1048 return 0;
1049}
1050
1051static inline int s3c24xx_serial_cpufreq_register(struct s3c24xx_uart_port *port)
1052{
1053 port->freq_transition.notifier_call = s3c24xx_serial_cpufreq_transition;
1054
1055 return cpufreq_register_notifier(&port->freq_transition,
1056 CPUFREQ_TRANSITION_NOTIFIER);
1057}
1058
1059static inline void s3c24xx_serial_cpufreq_deregister(struct s3c24xx_uart_port *port)
1060{
1061 cpufreq_unregister_notifier(&port->freq_transition,
1062 CPUFREQ_TRANSITION_NOTIFIER);
1063}
1064
1065#else
1066static inline int s3c24xx_serial_cpufreq_register(struct s3c24xx_uart_port *port)
1067{
1068 return 0;
1069}
1070
1071static inline void s3c24xx_serial_cpufreq_deregister(struct s3c24xx_uart_port *port)
1072{
1073}
1074#endif
1075
Ben Dooksb4975492008-07-03 12:32:51 +01001076/* s3c24xx_serial_init_port
1077 *
1078 * initialise a single serial port from the platform device given
1079 */
1080
1081static int s3c24xx_serial_init_port(struct s3c24xx_uart_port *ourport,
1082 struct s3c24xx_uart_info *info,
1083 struct platform_device *platdev)
1084{
1085 struct uart_port *port = &ourport->port;
Thomas Abraham4d84e972011-10-24 11:47:25 +02001086 struct s3c2410_uartcfg *cfg = platdev->dev.platform_data;
Ben Dooksb4975492008-07-03 12:32:51 +01001087 struct resource *res;
1088 int ret;
1089
1090 dbg("s3c24xx_serial_init_port: port=%p, platdev=%p\n", port, platdev);
1091
1092 if (platdev == NULL)
1093 return -ENODEV;
1094
Ben Dooksb4975492008-07-03 12:32:51 +01001095 if (port->mapbase != 0)
1096 return 0;
1097
Thomas Abraham4d84e972011-10-24 11:47:25 +02001098 /*
1099 * If platform data is supplied, keep a copy of the location of
1100 * platform data in the driver's private data.
1101 */
1102 if (cfg)
1103 ourport->cfg = cfg;
1104
Ben Dooksbdd49152008-11-03 19:51:42 +00001105 if (cfg->hwport > CONFIG_SERIAL_SAMSUNG_UARTS) {
1106 printk(KERN_ERR "%s: port %d bigger than %d\n", __func__,
1107 cfg->hwport, CONFIG_SERIAL_SAMSUNG_UARTS);
1108 return -ERANGE;
1109 }
Ben Dooksb4975492008-07-03 12:32:51 +01001110
1111 /* setup info for port */
1112 port->dev = &platdev->dev;
1113 ourport->info = info;
1114
Thomas Abraham88bb4ea2011-08-10 15:51:19 +05301115 /* Startup sequence is different for s3c64xx and higher SoC's */
1116 if (s3c24xx_serial_has_interrupt_mask(port))
1117 s3c24xx_serial_ops.startup = s3c64xx_serial_startup;
1118
Ben Dooksb4975492008-07-03 12:32:51 +01001119 /* copy the info in from provided structure */
1120 ourport->port.fifosize = info->fifosize;
1121
1122 dbg("s3c24xx_serial_init_port: %p (hw %d)...\n", port, cfg->hwport);
1123
1124 port->uartclk = 1;
1125
1126 if (cfg->uart_flags & UPF_CONS_FLOW) {
1127 dbg("s3c24xx_serial_init_port: enabling flow control\n");
1128 port->flags |= UPF_CONS_FLOW;
1129 }
1130
1131 /* sort our the physical and virtual addresses for each UART */
1132
1133 res = platform_get_resource(platdev, IORESOURCE_MEM, 0);
1134 if (res == NULL) {
1135 printk(KERN_ERR "failed to find memory resource for uart\n");
1136 return -EINVAL;
1137 }
1138
1139 dbg("resource %p (%lx..%lx)\n", res, res->start, res->end);
1140
Ben Dooksb690ace2008-10-21 14:07:03 +01001141 port->mapbase = res->start;
Kukjin Kim2555e662010-09-01 15:13:44 +09001142 port->membase = S3C_VA_UART + (res->start & 0xfffff);
Ben Dooksb4975492008-07-03 12:32:51 +01001143 ret = platform_get_irq(platdev, 0);
1144 if (ret < 0)
1145 port->irq = 0;
Ben Dooksb73c2892008-10-21 14:07:04 +01001146 else {
Ben Dooksb4975492008-07-03 12:32:51 +01001147 port->irq = ret;
Ben Dooksb73c2892008-10-21 14:07:04 +01001148 ourport->rx_irq = ret;
1149 ourport->tx_irq = ret + 1;
1150 }
1151
1152 ret = platform_get_irq(platdev, 1);
1153 if (ret > 0)
1154 ourport->tx_irq = ret;
Ben Dooksb4975492008-07-03 12:32:51 +01001155
1156 ourport->clk = clk_get(&platdev->dev, "uart");
1157
Thomas Abraham88bb4ea2011-08-10 15:51:19 +05301158 /* Keep all interrupts masked and cleared */
1159 if (s3c24xx_serial_has_interrupt_mask(port)) {
1160 wr_regl(port, S3C64XX_UINTM, 0xf);
1161 wr_regl(port, S3C64XX_UINTP, 0xf);
1162 wr_regl(port, S3C64XX_UINTSP, 0xf);
1163 }
1164
Ben Dooksb73c2892008-10-21 14:07:04 +01001165 dbg("port: map=%08x, mem=%08x, irq=%d (%d,%d), clock=%ld\n",
1166 port->mapbase, port->membase, port->irq,
1167 ourport->rx_irq, ourport->tx_irq, port->uartclk);
Ben Dooksb4975492008-07-03 12:32:51 +01001168
1169 /* reset the fifos (and setup the uart) */
1170 s3c24xx_serial_resetport(port, cfg);
1171 return 0;
1172}
1173
1174static ssize_t s3c24xx_serial_show_clksrc(struct device *dev,
1175 struct device_attribute *attr,
1176 char *buf)
1177{
1178 struct uart_port *port = s3c24xx_dev_to_port(dev);
1179 struct s3c24xx_uart_port *ourport = to_ourport(port);
1180
Thomas Abraham5f5a7a52011-10-24 11:47:46 +02001181 return snprintf(buf, PAGE_SIZE, "* %s\n", ourport->baudclk->name);
Ben Dooksb4975492008-07-03 12:32:51 +01001182}
1183
1184static DEVICE_ATTR(clock_source, S_IRUGO, s3c24xx_serial_show_clksrc, NULL);
1185
1186/* Device driver serial port probe */
1187
1188static int probe_index;
1189
1190int s3c24xx_serial_probe(struct platform_device *dev,
1191 struct s3c24xx_uart_info *info)
1192{
1193 struct s3c24xx_uart_port *ourport;
1194 int ret;
1195
1196 dbg("s3c24xx_serial_probe(%p, %p) %d\n", dev, info, probe_index);
1197
1198 ourport = &s3c24xx_serial_ports[probe_index];
1199 probe_index++;
1200
1201 dbg("%s: initialising port %p...\n", __func__, ourport);
1202
1203 ret = s3c24xx_serial_init_port(ourport, info, dev);
1204 if (ret < 0)
1205 goto probe_err;
1206
1207 dbg("%s: adding port\n", __func__);
1208 uart_add_one_port(&s3c24xx_uart_drv, &ourport->port);
1209 platform_set_drvdata(dev, &ourport->port);
1210
1211 ret = device_create_file(&dev->dev, &dev_attr_clock_source);
1212 if (ret < 0)
1213 printk(KERN_ERR "%s: failed to add clksrc attr.\n", __func__);
1214
Ben Dooks30555472008-10-21 14:06:36 +01001215 ret = s3c24xx_serial_cpufreq_register(ourport);
1216 if (ret < 0)
1217 dev_err(&dev->dev, "failed to add cpufreq notifier\n");
1218
Ben Dooksb4975492008-07-03 12:32:51 +01001219 return 0;
1220
1221 probe_err:
1222 return ret;
1223}
1224
1225EXPORT_SYMBOL_GPL(s3c24xx_serial_probe);
1226
Peter Korsgaard90ceb962009-06-22 18:42:49 +01001227int __devexit s3c24xx_serial_remove(struct platform_device *dev)
Ben Dooksb4975492008-07-03 12:32:51 +01001228{
1229 struct uart_port *port = s3c24xx_dev_to_port(&dev->dev);
1230
1231 if (port) {
Ben Dooks30555472008-10-21 14:06:36 +01001232 s3c24xx_serial_cpufreq_deregister(to_ourport(port));
Ben Dooksb4975492008-07-03 12:32:51 +01001233 device_remove_file(&dev->dev, &dev_attr_clock_source);
1234 uart_remove_one_port(&s3c24xx_uart_drv, port);
1235 }
1236
1237 return 0;
1238}
1239
1240EXPORT_SYMBOL_GPL(s3c24xx_serial_remove);
1241
1242/* UART power management code */
MyungJoo Hamaef7fe52011-06-29 15:28:24 +09001243#ifdef CONFIG_PM_SLEEP
1244static int s3c24xx_serial_suspend(struct device *dev)
Ben Dooksb4975492008-07-03 12:32:51 +01001245{
MyungJoo Hamaef7fe52011-06-29 15:28:24 +09001246 struct uart_port *port = s3c24xx_dev_to_port(dev);
Ben Dooksb4975492008-07-03 12:32:51 +01001247
1248 if (port)
1249 uart_suspend_port(&s3c24xx_uart_drv, port);
1250
1251 return 0;
1252}
1253
MyungJoo Hamaef7fe52011-06-29 15:28:24 +09001254static int s3c24xx_serial_resume(struct device *dev)
Ben Dooksb4975492008-07-03 12:32:51 +01001255{
MyungJoo Hamaef7fe52011-06-29 15:28:24 +09001256 struct uart_port *port = s3c24xx_dev_to_port(dev);
Ben Dooksb4975492008-07-03 12:32:51 +01001257 struct s3c24xx_uart_port *ourport = to_ourport(port);
1258
1259 if (port) {
1260 clk_enable(ourport->clk);
1261 s3c24xx_serial_resetport(port, s3c24xx_port_to_cfg(port));
1262 clk_disable(ourport->clk);
1263
1264 uart_resume_port(&s3c24xx_uart_drv, port);
1265 }
1266
1267 return 0;
1268}
MyungJoo Hamaef7fe52011-06-29 15:28:24 +09001269
1270static const struct dev_pm_ops s3c24xx_serial_pm_ops = {
1271 .suspend = s3c24xx_serial_suspend,
1272 .resume = s3c24xx_serial_resume,
1273};
Kukjin Kimb882fc12011-07-28 08:50:38 +09001274#define SERIAL_SAMSUNG_PM_OPS (&s3c24xx_serial_pm_ops)
1275
MyungJoo Hamaef7fe52011-06-29 15:28:24 +09001276#else /* !CONFIG_PM_SLEEP */
Kukjin Kimb882fc12011-07-28 08:50:38 +09001277
1278#define SERIAL_SAMSUNG_PM_OPS NULL
MyungJoo Hamaef7fe52011-06-29 15:28:24 +09001279#endif /* CONFIG_PM_SLEEP */
Ben Dooksb4975492008-07-03 12:32:51 +01001280
1281int s3c24xx_serial_init(struct platform_driver *drv,
1282 struct s3c24xx_uart_info *info)
1283{
1284 dbg("s3c24xx_serial_init(%p,%p)\n", drv, info);
Kukjin Kimb882fc12011-07-28 08:50:38 +09001285
1286 drv->driver.pm = SERIAL_SAMSUNG_PM_OPS;
Ben Dooksb4975492008-07-03 12:32:51 +01001287
1288 return platform_driver_register(drv);
1289}
1290
1291EXPORT_SYMBOL_GPL(s3c24xx_serial_init);
1292
1293/* module initialisation code */
1294
1295static int __init s3c24xx_serial_modinit(void)
1296{
1297 int ret;
1298
1299 ret = uart_register_driver(&s3c24xx_uart_drv);
1300 if (ret < 0) {
1301 printk(KERN_ERR "failed to register UART driver\n");
1302 return -1;
1303 }
1304
1305 return 0;
1306}
1307
1308static void __exit s3c24xx_serial_modexit(void)
1309{
1310 uart_unregister_driver(&s3c24xx_uart_drv);
1311}
1312
1313module_init(s3c24xx_serial_modinit);
1314module_exit(s3c24xx_serial_modexit);
1315
1316/* Console code */
1317
1318#ifdef CONFIG_SERIAL_SAMSUNG_CONSOLE
1319
1320static struct uart_port *cons_uart;
1321
1322static int
1323s3c24xx_serial_console_txrdy(struct uart_port *port, unsigned int ufcon)
1324{
1325 struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
1326 unsigned long ufstat, utrstat;
1327
1328 if (ufcon & S3C2410_UFCON_FIFOMODE) {
Uwe Kleine-König9ddc5b62010-01-20 17:02:24 +01001329 /* fifo mode - check amount of data in fifo registers... */
Ben Dooksb4975492008-07-03 12:32:51 +01001330
1331 ufstat = rd_regl(port, S3C2410_UFSTAT);
1332 return (ufstat & info->tx_fifofull) ? 0 : 1;
1333 }
1334
1335 /* in non-fifo mode, we go and use the tx buffer empty */
1336
1337 utrstat = rd_regl(port, S3C2410_UTRSTAT);
1338 return (utrstat & S3C2410_UTRSTAT_TXE) ? 1 : 0;
1339}
1340
1341static void
1342s3c24xx_serial_console_putchar(struct uart_port *port, int ch)
1343{
1344 unsigned int ufcon = rd_regl(cons_uart, S3C2410_UFCON);
1345 while (!s3c24xx_serial_console_txrdy(port, ufcon))
1346 barrier();
1347 wr_regb(cons_uart, S3C2410_UTXH, ch);
1348}
1349
1350static void
1351s3c24xx_serial_console_write(struct console *co, const char *s,
1352 unsigned int count)
1353{
1354 uart_console_write(cons_uart, s, count, s3c24xx_serial_console_putchar);
1355}
1356
1357static void __init
1358s3c24xx_serial_get_options(struct uart_port *port, int *baud,
1359 int *parity, int *bits)
1360{
Ben Dooksb4975492008-07-03 12:32:51 +01001361 struct clk *clk;
1362 unsigned int ulcon;
1363 unsigned int ucon;
1364 unsigned int ubrdiv;
1365 unsigned long rate;
Thomas Abraham5f5a7a52011-10-24 11:47:46 +02001366 unsigned int clk_sel;
1367 char clk_name[MAX_CLK_NAME_LENGTH];
Ben Dooksb4975492008-07-03 12:32:51 +01001368
1369 ulcon = rd_regl(port, S3C2410_ULCON);
1370 ucon = rd_regl(port, S3C2410_UCON);
1371 ubrdiv = rd_regl(port, S3C2410_UBRDIV);
1372
1373 dbg("s3c24xx_serial_get_options: port=%p\n"
1374 "registers: ulcon=%08x, ucon=%08x, ubdriv=%08x\n",
1375 port, ulcon, ucon, ubrdiv);
1376
1377 if ((ucon & 0xf) != 0) {
1378 /* consider the serial port configured if the tx/rx mode set */
1379
1380 switch (ulcon & S3C2410_LCON_CSMASK) {
1381 case S3C2410_LCON_CS5:
1382 *bits = 5;
1383 break;
1384 case S3C2410_LCON_CS6:
1385 *bits = 6;
1386 break;
1387 case S3C2410_LCON_CS7:
1388 *bits = 7;
1389 break;
1390 default:
1391 case S3C2410_LCON_CS8:
1392 *bits = 8;
1393 break;
1394 }
1395
1396 switch (ulcon & S3C2410_LCON_PMASK) {
1397 case S3C2410_LCON_PEVEN:
1398 *parity = 'e';
1399 break;
1400
1401 case S3C2410_LCON_PODD:
1402 *parity = 'o';
1403 break;
1404
1405 case S3C2410_LCON_PNONE:
1406 default:
1407 *parity = 'n';
1408 }
1409
1410 /* now calculate the baud rate */
1411
Thomas Abraham5f5a7a52011-10-24 11:47:46 +02001412 clk_sel = s3c24xx_serial_getsource(port);
1413 sprintf(clk_name, "clk_uart_baud%d", clk_sel);
Ben Dooksb4975492008-07-03 12:32:51 +01001414
Thomas Abraham5f5a7a52011-10-24 11:47:46 +02001415 clk = clk_get(port->dev, clk_name);
Ben Dooksb4975492008-07-03 12:32:51 +01001416 if (!IS_ERR(clk) && clk != NULL)
Thomas Abraham5f5a7a52011-10-24 11:47:46 +02001417 rate = clk_get_rate(clk);
Ben Dooksb4975492008-07-03 12:32:51 +01001418 else
1419 rate = 1;
1420
1421
1422 *baud = rate / (16 * (ubrdiv + 1));
1423 dbg("calculated baud %d\n", *baud);
1424 }
1425
1426}
1427
1428/* s3c24xx_serial_init_ports
1429 *
1430 * initialise the serial ports from the machine provided initialisation
1431 * data.
1432*/
1433
Thomas Abraham51fe5222010-01-14 15:05:38 +09001434static int s3c24xx_serial_init_ports(struct s3c24xx_uart_info **info)
Ben Dooksb4975492008-07-03 12:32:51 +01001435{
1436 struct s3c24xx_uart_port *ptr = s3c24xx_serial_ports;
1437 struct platform_device **platdev_ptr;
1438 int i;
1439
1440 dbg("s3c24xx_serial_init_ports: initialising ports...\n");
1441
1442 platdev_ptr = s3c24xx_uart_devs;
1443
Ben Dooks03d5e772008-11-03 09:21:23 +00001444 for (i = 0; i < CONFIG_SERIAL_SAMSUNG_UARTS; i++, ptr++, platdev_ptr++) {
Thomas Abraham51fe5222010-01-14 15:05:38 +09001445 s3c24xx_serial_init_port(ptr, info[i], *platdev_ptr);
Ben Dooksb4975492008-07-03 12:32:51 +01001446 }
1447
1448 return 0;
1449}
1450
1451static int __init
1452s3c24xx_serial_console_setup(struct console *co, char *options)
1453{
1454 struct uart_port *port;
1455 int baud = 9600;
1456 int bits = 8;
1457 int parity = 'n';
1458 int flow = 'n';
1459
1460 dbg("s3c24xx_serial_console_setup: co=%p (%d), %s\n",
1461 co, co->index, options);
1462
1463 /* is this a valid port */
1464
Ben Dooks03d5e772008-11-03 09:21:23 +00001465 if (co->index == -1 || co->index >= CONFIG_SERIAL_SAMSUNG_UARTS)
Ben Dooksb4975492008-07-03 12:32:51 +01001466 co->index = 0;
1467
1468 port = &s3c24xx_serial_ports[co->index].port;
1469
1470 /* is the port configured? */
1471
Thomas Abrahamee430f12011-06-14 19:12:26 +09001472 if (port->mapbase == 0x0)
1473 return -ENODEV;
Ben Dooksb4975492008-07-03 12:32:51 +01001474
1475 cons_uart = port;
1476
1477 dbg("s3c24xx_serial_console_setup: port=%p (%d)\n", port, co->index);
1478
1479 /*
1480 * Check whether an invalid uart number has been specified, and
1481 * if so, search for the first available port that does have
1482 * console support.
1483 */
1484 if (options)
1485 uart_parse_options(options, &baud, &parity, &bits, &flow);
1486 else
1487 s3c24xx_serial_get_options(port, &baud, &parity, &bits);
1488
1489 dbg("s3c24xx_serial_console_setup: baud %d\n", baud);
1490
1491 return uart_set_options(port, co, baud, parity, bits, flow);
1492}
1493
1494/* s3c24xx_serial_initconsole
1495 *
1496 * initialise the console from one of the uart drivers
1497*/
1498
1499static struct console s3c24xx_serial_console = {
1500 .name = S3C24XX_SERIAL_NAME,
1501 .device = uart_console_device,
1502 .flags = CON_PRINTBUFFER,
1503 .index = -1,
1504 .write = s3c24xx_serial_console_write,
Thomas Abraham5822a5d2011-06-14 19:12:26 +09001505 .setup = s3c24xx_serial_console_setup,
1506 .data = &s3c24xx_uart_drv,
Ben Dooksb4975492008-07-03 12:32:51 +01001507};
1508
1509int s3c24xx_serial_initconsole(struct platform_driver *drv,
Thomas Abraham51fe5222010-01-14 15:05:38 +09001510 struct s3c24xx_uart_info **info)
Ben Dooksb4975492008-07-03 12:32:51 +01001511
1512{
1513 struct platform_device *dev = s3c24xx_uart_devs[0];
1514
1515 dbg("s3c24xx_serial_initconsole\n");
1516
1517 /* select driver based on the cpu */
1518
1519 if (dev == NULL) {
1520 printk(KERN_ERR "s3c24xx: no devices for console init\n");
1521 return 0;
1522 }
1523
1524 if (strcmp(dev->name, drv->driver.name) != 0)
1525 return 0;
1526
1527 s3c24xx_serial_console.data = &s3c24xx_uart_drv;
1528 s3c24xx_serial_init_ports(info);
1529
1530 register_console(&s3c24xx_serial_console);
1531 return 0;
1532}
1533
1534#endif /* CONFIG_SERIAL_SAMSUNG_CONSOLE */
1535
1536MODULE_DESCRIPTION("Samsung SoC Serial port driver");
1537MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
1538MODULE_LICENSE("GPL v2");