2  * linux/drivers/serial/s3c2410.c
 
   4  * Driver for onboard UARTs on the Samsung S3C24XX
 
   6  * Based on drivers/char/serial.c and drivers/char/21285.c
 
   8  * Ben Dooks, (c) 2003-2005 Simtec Electronics
 
   9  *      http://www.simtec.co.uk/products/SWLINUX/
 
  13  * 22-Jul-2004  BJD  Finished off device rewrite
 
  15  * 21-Jul-2004  BJD  Thanks to <herbet@13thfloor.at> for pointing out
 
  16  *                   problems with baud rate and loss of IR settings. Update
 
  17  *                   to add configuration via platform_device structure
 
  19  * 28-Sep-2004  BJD  Re-write for the following items
 
  20  *                   - S3C2410 and S3C2440 serial support
 
  21  *                   - Power Management support
 
  22  *                   - Fix console via IrDA devices
 
  23  *                   - SysReq (Herbert Pötzl)
 
  24  *                   - Break character handling (Herbert Pötzl)
 
  25  *                   - spin-lock initialisation (Dimitry Andric)
 
  26  *                   - added clock control
 
  27  *                   - updated init code to use platform_device info
 
  29  * 06-Mar-2005  BJD  Add s3c2440 fclk clock source
 
  31  * 09-Mar-2005  BJD  Add s3c2400 support
 
  33  * 10-Mar-2005  LCVR Changed S3C2410_VA_UART to S3C24XX_VA_UART
 
  36 /* Note on 2440 fclk clock source handling
 
  38  * Whilst it is possible to use the fclk as clock source, the method
 
  39  * of properly switching too/from this is currently un-implemented, so
 
  40  * whichever way is configured at startup is the one that will be used.
 
  43 /* Hote on 2410 error handling
 
  45  * The s3c2410 manual has a love/hate affair with the contents of the
 
  46  * UERSTAT register in the UART blocks, and keeps marking some of the
 
  47  * error bits as reserved. Having checked with the s3c2410x01,
 
  48  * it copes with BREAKs properly, so I am happy to ignore the RESERVED
 
  49  * feature from the latter versions of the manual.
 
  51  * If it becomes aparrent that latter versions of the 2410 remove these
 
  52  * bits, then action will have to be taken to differentiate the versions
 
  53  * and change the policy on BREAK
 
  58 #include <linux/config.h>
 
  60 #if defined(CONFIG_SERIAL_S3C2410_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
 
  64 #include <linux/module.h>
 
  65 #include <linux/ioport.h>
 
  66 #include <linux/platform_device.h>
 
  67 #include <linux/init.h>
 
  68 #include <linux/sysrq.h>
 
  69 #include <linux/console.h>
 
  70 #include <linux/tty.h>
 
  71 #include <linux/tty_flip.h>
 
  72 #include <linux/serial_core.h>
 
  73 #include <linux/serial.h>
 
  74 #include <linux/delay.h>
 
  75 #include <linux/clk.h>
 
  80 #include <asm/hardware.h>
 
  82 #include <asm/arch/regs-serial.h>
 
  83 #include <asm/arch/regs-gpio.h>
 
  87 struct s3c24xx_uart_info {
 
  90         unsigned int            fifosize;
 
  91         unsigned long           rx_fifomask;
 
  92         unsigned long           rx_fifoshift;
 
  93         unsigned long           rx_fifofull;
 
  94         unsigned long           tx_fifomask;
 
  95         unsigned long           tx_fifoshift;
 
  96         unsigned long           tx_fifofull;
 
  98         /* clock source control */
 
 100         int (*get_clksrc)(struct uart_port *, struct s3c24xx_uart_clksrc *clk);
 
 101         int (*set_clksrc)(struct uart_port *, struct s3c24xx_uart_clksrc *clk);
 
 104         int (*reset_port)(struct uart_port *, struct s3c2410_uartcfg *);
 
 107 struct s3c24xx_uart_port {
 
 108         unsigned char                   rx_claimed;
 
 109         unsigned char                   tx_claimed;
 
 111         struct s3c24xx_uart_info        *info;
 
 112         struct s3c24xx_uart_clksrc      *clksrc;
 
 115         struct uart_port                port;
 
 119 /* configuration defines */
 
 123 /* send debug to the low-level output routines */
 
 125 extern void printascii(const char *);
 
 128 s3c24xx_serial_dbg(const char *fmt, ...)
 
 134         vsprintf(buff, fmt, va);
 
 140 #define dbg(x...) s3c24xx_serial_dbg(x)
 
 143 #define dbg(x...) printk(KERN_DEBUG "s3c24xx: ");
 
 146 #define dbg(x...) do {} while(0)
 
 149 /* UART name and device definitions */
 
 151 #define S3C24XX_SERIAL_NAME     "ttySAC"
 
 152 #define S3C24XX_SERIAL_DEVFS    "tts/"
 
 153 #define S3C24XX_SERIAL_MAJOR    204
 
 154 #define S3C24XX_SERIAL_MINOR    64
 
 157 /* conversion functions */
 
 159 #define s3c24xx_dev_to_port(__dev) (struct uart_port *)dev_get_drvdata(__dev)
 
 160 #define s3c24xx_dev_to_cfg(__dev) (struct s3c2410_uartcfg *)((__dev)->platform_data)
 
 162 /* we can support 3 uarts, but not always use them */
 
 164 #ifdef CONFIG_CPU_S3C2400
 
 170 /* port irq numbers */
 
 172 #define TX_IRQ(port) ((port)->irq + 1)
 
 173 #define RX_IRQ(port) ((port)->irq)
 
 175 /* register access controls */
 
 177 #define portaddr(port, reg) ((port)->membase + (reg))
 
 179 #define rd_regb(port, reg) (__raw_readb(portaddr(port, reg)))
 
 180 #define rd_regl(port, reg) (__raw_readl(portaddr(port, reg)))
 
 182 #define wr_regb(port, reg, val) \
 
 183   do { __raw_writeb(val, portaddr(port, reg)); } while(0)
 
 185 #define wr_regl(port, reg, val) \
 
 186   do { __raw_writel(val, portaddr(port, reg)); } while(0)
 
 188 /* macros to change one thing to another */
 
 190 #define tx_enabled(port) ((port)->unused[0])
 
 191 #define rx_enabled(port) ((port)->unused[1])
 
 193 /* flag to ignore all characters comming in */
 
 194 #define RXSTAT_DUMMY_READ (0x10000000)
 
 196 static inline struct s3c24xx_uart_port *to_ourport(struct uart_port *port)
 
 198         return container_of(port, struct s3c24xx_uart_port, port);
 
 201 /* translate a port to the device name */
 
 203 static inline const char *s3c24xx_serial_portname(struct uart_port *port)
 
 205         return to_platform_device(port->dev)->name;
 
 208 static int s3c24xx_serial_txempty_nofifo(struct uart_port *port)
 
 210         return (rd_regl(port, S3C2410_UTRSTAT) & S3C2410_UTRSTAT_TXE);
 
 213 static void s3c24xx_serial_rx_enable(struct uart_port *port)
 
 216         unsigned int ucon, ufcon;
 
 219         spin_lock_irqsave(&port->lock, flags);
 
 221         while (--count && !s3c24xx_serial_txempty_nofifo(port))
 
 224         ufcon = rd_regl(port, S3C2410_UFCON);
 
 225         ufcon |= S3C2410_UFCON_RESETRX;
 
 226         wr_regl(port, S3C2410_UFCON, ufcon);
 
 228         ucon = rd_regl(port, S3C2410_UCON);
 
 229         ucon |= S3C2410_UCON_RXIRQMODE;
 
 230         wr_regl(port, S3C2410_UCON, ucon);
 
 232         rx_enabled(port) = 1;
 
 233         spin_unlock_irqrestore(&port->lock, flags);
 
 236 static void s3c24xx_serial_rx_disable(struct uart_port *port)
 
 241         spin_lock_irqsave(&port->lock, flags);
 
 243         ucon = rd_regl(port, S3C2410_UCON);
 
 244         ucon &= ~S3C2410_UCON_RXIRQMODE;
 
 245         wr_regl(port, S3C2410_UCON, ucon);
 
 247         rx_enabled(port) = 0;
 
 248         spin_unlock_irqrestore(&port->lock, flags);
 
 251 static void s3c24xx_serial_stop_tx(struct uart_port *port)
 
 253         if (tx_enabled(port)) {
 
 254                 disable_irq(TX_IRQ(port));
 
 255                 tx_enabled(port) = 0;
 
 256                 if (port->flags & UPF_CONS_FLOW)
 
 257                         s3c24xx_serial_rx_enable(port);
 
 261 static void s3c24xx_serial_start_tx(struct uart_port *port)
 
 263         if (!tx_enabled(port)) {
 
 264                 if (port->flags & UPF_CONS_FLOW)
 
 265                         s3c24xx_serial_rx_disable(port);
 
 267                 enable_irq(TX_IRQ(port));
 
 268                 tx_enabled(port) = 1;
 
 273 static void s3c24xx_serial_stop_rx(struct uart_port *port)
 
 275         if (rx_enabled(port)) {
 
 276                 dbg("s3c24xx_serial_stop_rx: port=%p\n", port);
 
 277                 disable_irq(RX_IRQ(port));
 
 278                 rx_enabled(port) = 0;
 
 282 static void s3c24xx_serial_enable_ms(struct uart_port *port)
 
 286 static inline struct s3c24xx_uart_info *s3c24xx_port_to_info(struct uart_port *port)
 
 288         return to_ourport(port)->info;
 
 291 static inline struct s3c2410_uartcfg *s3c24xx_port_to_cfg(struct uart_port *port)
 
 293         if (port->dev == NULL)
 
 296         return (struct s3c2410_uartcfg *)port->dev->platform_data;
 
 299 static int s3c24xx_serial_rx_fifocnt(struct s3c24xx_uart_port *ourport,
 
 300                                      unsigned long ufstat)
 
 302         struct s3c24xx_uart_info *info = ourport->info;
 
 304         if (ufstat & info->rx_fifofull)
 
 305                 return info->fifosize;
 
 307         return (ufstat & info->rx_fifomask) >> info->rx_fifoshift;
 
 311 /* ? - where has parity gone?? */
 
 312 #define S3C2410_UERSTAT_PARITY (0x1000)
 
 315 s3c24xx_serial_rx_chars(int irq, void *dev_id, struct pt_regs *regs)
 
 317         struct s3c24xx_uart_port *ourport = dev_id;
 
 318         struct uart_port *port = &ourport->port;
 
 319         struct tty_struct *tty = port->info->tty;
 
 320         unsigned int ufcon, ch, flag, ufstat, uerstat;
 
 323         while (max_count-- > 0) {
 
 324                 ufcon = rd_regl(port, S3C2410_UFCON);
 
 325                 ufstat = rd_regl(port, S3C2410_UFSTAT);
 
 327                 if (s3c24xx_serial_rx_fifocnt(ourport, ufstat) == 0)
 
 330                 uerstat = rd_regl(port, S3C2410_UERSTAT);
 
 331                 ch = rd_regb(port, S3C2410_URXH);
 
 333                 if (port->flags & UPF_CONS_FLOW) {
 
 334                         int txe = s3c24xx_serial_txempty_nofifo(port);
 
 336                         if (rx_enabled(port)) {
 
 338                                         rx_enabled(port) = 0;
 
 343                                         ufcon |= S3C2410_UFCON_RESETRX;
 
 344                                         wr_regl(port, S3C2410_UFCON, ufcon);
 
 345                                         rx_enabled(port) = 1;
 
 352                 /* insert the character into the buffer */
 
 357                 if (unlikely(uerstat & S3C2410_UERSTAT_ANY)) {
 
 358                         dbg("rxerr: port ch=0x%02x, rxs=0x%08x\n",
 
 361                         /* check for break */
 
 362                         if (uerstat & S3C2410_UERSTAT_BREAK) {
 
 365                                 if (uart_handle_break(port))
 
 369                         if (uerstat & S3C2410_UERSTAT_FRAME)
 
 370                                 port->icount.frame++;
 
 371                         if (uerstat & S3C2410_UERSTAT_OVERRUN)
 
 372                                 port->icount.overrun++;
 
 374                         uerstat &= port->read_status_mask;
 
 376                         if (uerstat & S3C2410_UERSTAT_BREAK)
 
 378                         else if (uerstat & S3C2410_UERSTAT_PARITY)
 
 380                         else if (uerstat & ( S3C2410_UERSTAT_FRAME | S3C2410_UERSTAT_OVERRUN))
 
 384                 if (uart_handle_sysrq_char(port, ch, regs))
 
 387                 uart_insert_char(port, uerstat, S3C2410_UERSTAT_OVERRUN, ch, flag);
 
 392         tty_flip_buffer_push(tty);
 
 398 static irqreturn_t s3c24xx_serial_tx_chars(int irq, void *id, struct pt_regs *regs)
 
 400         struct s3c24xx_uart_port *ourport = id;
 
 401         struct uart_port *port = &ourport->port;
 
 402         struct circ_buf *xmit = &port->info->xmit;
 
 406                 wr_regb(port, S3C2410_UTXH, port->x_char);
 
 412         /* if there isnt anything more to transmit, or the uart is now
 
 413          * stopped, disable the uart and exit
 
 416         if (uart_circ_empty(xmit) || uart_tx_stopped(port)) {
 
 417                 s3c24xx_serial_stop_tx(port);
 
 421         /* try and drain the buffer... */
 
 423         while (!uart_circ_empty(xmit) && count-- > 0) {
 
 424                 if (rd_regl(port, S3C2410_UFSTAT) & ourport->info->tx_fifofull)
 
 427                 wr_regb(port, S3C2410_UTXH, xmit->buf[xmit->tail]);
 
 428                 xmit->tail = (xmit->tail + 1) & (UART_XMIT_SIZE - 1);
 
 432         if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
 
 433                 uart_write_wakeup(port);
 
 435         if (uart_circ_empty(xmit))
 
 436                 s3c24xx_serial_stop_tx(port);
 
 442 static unsigned int s3c24xx_serial_tx_empty(struct uart_port *port)
 
 444         struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
 
 445         unsigned long ufstat = rd_regl(port, S3C2410_UFSTAT);
 
 446         unsigned long ufcon = rd_regl(port, S3C2410_UFCON);
 
 448         if (ufcon & S3C2410_UFCON_FIFOMODE) {
 
 449                 if ((ufstat & info->tx_fifomask) != 0 ||
 
 450                     (ufstat & info->tx_fifofull))
 
 456         return s3c24xx_serial_txempty_nofifo(port);
 
 459 /* no modem control lines */
 
 460 static unsigned int s3c24xx_serial_get_mctrl(struct uart_port *port)
 
 462         unsigned int umstat = rd_regb(port,S3C2410_UMSTAT);
 
 464         if (umstat & S3C2410_UMSTAT_CTS)
 
 465                 return TIOCM_CAR | TIOCM_DSR | TIOCM_CTS;
 
 467                 return TIOCM_CAR | TIOCM_DSR;
 
 470 static void s3c24xx_serial_set_mctrl(struct uart_port *port, unsigned int mctrl)
 
 472         /* todo - possibly remove AFC and do manual CTS */
 
 475 static void s3c24xx_serial_break_ctl(struct uart_port *port, int break_state)
 
 480         spin_lock_irqsave(&port->lock, flags);
 
 482         ucon = rd_regl(port, S3C2410_UCON);
 
 485                 ucon |= S3C2410_UCON_SBREAK;
 
 487                 ucon &= ~S3C2410_UCON_SBREAK;
 
 489         wr_regl(port, S3C2410_UCON, ucon);
 
 491         spin_unlock_irqrestore(&port->lock, flags);
 
 494 static void s3c24xx_serial_shutdown(struct uart_port *port)
 
 496         struct s3c24xx_uart_port *ourport = to_ourport(port);
 
 498         if (ourport->tx_claimed) {
 
 499                 free_irq(TX_IRQ(port), ourport);
 
 500                 tx_enabled(port) = 0;
 
 501                 ourport->tx_claimed = 0;
 
 504         if (ourport->rx_claimed) {
 
 505                 free_irq(RX_IRQ(port), ourport);
 
 506                 ourport->rx_claimed = 0;
 
 507                 rx_enabled(port) = 0;
 
 512 static int s3c24xx_serial_startup(struct uart_port *port)
 
 514         struct s3c24xx_uart_port *ourport = to_ourport(port);
 
 517         dbg("s3c24xx_serial_startup: port=%p (%08lx,%p)\n",
 
 518             port->mapbase, port->membase);
 
 520         rx_enabled(port) = 1;
 
 522         ret = request_irq(RX_IRQ(port),
 
 523                           s3c24xx_serial_rx_chars, 0,
 
 524                           s3c24xx_serial_portname(port), ourport);
 
 527                 printk(KERN_ERR "cannot get irq %d\n", RX_IRQ(port));
 
 531         ourport->rx_claimed = 1;
 
 533         dbg("requesting tx irq...\n");
 
 535         tx_enabled(port) = 1;
 
 537         ret = request_irq(TX_IRQ(port),
 
 538                           s3c24xx_serial_tx_chars, 0,
 
 539                           s3c24xx_serial_portname(port), ourport);
 
 542                 printk(KERN_ERR "cannot get irq %d\n", TX_IRQ(port));
 
 546         ourport->tx_claimed = 1;
 
 548         dbg("s3c24xx_serial_startup ok\n");
 
 550         /* the port reset code should have done the correct
 
 551          * register setup for the port controls */
 
 556         s3c24xx_serial_shutdown(port);
 
 560 /* power power management control */
 
 562 static void s3c24xx_serial_pm(struct uart_port *port, unsigned int level,
 
 565         struct s3c24xx_uart_port *ourport = to_ourport(port);
 
 569                 if (!IS_ERR(ourport->baudclk) && ourport->baudclk != NULL)
 
 570                         clk_disable(ourport->baudclk);
 
 572                 clk_disable(ourport->clk);
 
 576                 clk_enable(ourport->clk);
 
 578                 if (!IS_ERR(ourport->baudclk) && ourport->baudclk != NULL)
 
 579                         clk_enable(ourport->baudclk);
 
 583                 printk(KERN_ERR "s3c24xx_serial: unknown pm %d\n", level);
 
 587 /* baud rate calculation
 
 589  * The UARTs on the S3C2410/S3C2440 can take their clocks from a number
 
 590  * of different sources, including the peripheral clock ("pclk") and an
 
 591  * external clock ("uclk"). The S3C2440 also adds the core clock ("fclk")
 
 592  * with a programmable extra divisor.
 
 594  * The following code goes through the clock sources, and calculates the
 
 595  * baud clocks (and the resultant actual baud rates) and then tries to
 
 596  * pick the closest one and select that.
 
 603 static struct s3c24xx_uart_clksrc tmp_clksrc = {
 
 611 s3c24xx_serial_getsource(struct uart_port *port, struct s3c24xx_uart_clksrc *c)
 
 613         struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
 
 615         return (info->get_clksrc)(port, c);
 
 619 s3c24xx_serial_setsource(struct uart_port *port, struct s3c24xx_uart_clksrc *c)
 
 621         struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
 
 623         return (info->set_clksrc)(port, c);
 
 627         struct s3c24xx_uart_clksrc      *clksrc;
 
 633 static int s3c24xx_serial_calcbaud(struct baud_calc *calc,
 
 634                                    struct uart_port *port,
 
 635                                    struct s3c24xx_uart_clksrc *clksrc,
 
 640         calc->src = clk_get(port->dev, clksrc->name);
 
 641         if (calc->src == NULL || IS_ERR(calc->src))
 
 644         rate = clk_get_rate(calc->src);
 
 645         rate /= clksrc->divisor;
 
 647         calc->clksrc = clksrc;
 
 648         calc->quot = (rate + (8 * baud)) / (16 * baud);
 
 649         calc->calc = (rate / (calc->quot * 16));
 
 655 static unsigned int s3c24xx_serial_getclk(struct uart_port *port,
 
 656                                           struct s3c24xx_uart_clksrc **clksrc,
 
 660         struct s3c2410_uartcfg *cfg = s3c24xx_port_to_cfg(port);
 
 661         struct s3c24xx_uart_clksrc *clkp;
 
 662         struct baud_calc res[MAX_CLKS];
 
 663         struct baud_calc *resptr, *best, *sptr;
 
 669         if (cfg->clocks_size < 2) {
 
 670                 if (cfg->clocks_size == 0)
 
 673                 /* check to see if we're sourcing fclk, and if so we're
 
 674                  * going to have to update the clock source
 
 677                 if (strcmp(clkp->name, "fclk") == 0) {
 
 678                         struct s3c24xx_uart_clksrc src;
 
 680                         s3c24xx_serial_getsource(port, &src);
 
 682                         /* check that the port already using fclk, and if
 
 683                          * not, then re-select fclk
 
 686                         if (strcmp(src.name, clkp->name) == 0) {
 
 687                                 s3c24xx_serial_setsource(port, clkp);
 
 688                                 s3c24xx_serial_getsource(port, &src);
 
 691                         clkp->divisor = src.divisor;
 
 694                 s3c24xx_serial_calcbaud(res, port, clkp, baud);
 
 700                 for (i = 0; i < cfg->clocks_size; i++, clkp++) {
 
 701                         if (s3c24xx_serial_calcbaud(resptr, port, clkp, baud))
 
 706         /* ok, we now need to select the best clock we found */
 
 709                 unsigned int deviation = (1<<30)|((1<<30)-1);
 
 712                 for (sptr = res; sptr < resptr; sptr++) {
 
 714                                "found clk %p (%s) quot %d, calc %d\n",
 
 715                                sptr->clksrc, sptr->clksrc->name,
 
 716                                sptr->quot, sptr->calc);
 
 718                         calc_deviation = baud - sptr->calc;
 
 719                         if (calc_deviation < 0)
 
 720                                 calc_deviation = -calc_deviation;
 
 722                         if (calc_deviation < deviation) {
 
 724                                 deviation = calc_deviation;
 
 728                 printk(KERN_DEBUG "best %p (deviation %d)\n", best, deviation);
 
 731         printk(KERN_DEBUG "selected clock %p (%s) quot %d, calc %d\n",
 
 732                best->clksrc, best->clksrc->name, best->quot, best->calc);
 
 734         /* store results to pass back */
 
 736         *clksrc = best->clksrc;
 
 742 static void s3c24xx_serial_set_termios(struct uart_port *port,
 
 743                                        struct termios *termios,
 
 746         struct s3c2410_uartcfg *cfg = s3c24xx_port_to_cfg(port);
 
 747         struct s3c24xx_uart_port *ourport = to_ourport(port);
 
 748         struct s3c24xx_uart_clksrc *clksrc = NULL;
 
 749         struct clk *clk = NULL;
 
 751         unsigned int baud, quot;
 
 756          * We don't support modem control lines.
 
 758         termios->c_cflag &= ~(HUPCL | CMSPAR);
 
 759         termios->c_cflag |= CLOCAL;
 
 762          * Ask the core to calculate the divisor for us.
 
 765         baud = uart_get_baud_rate(port, termios, old, 0, 115200*8);
 
 767         if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
 
 768                 quot = port->custom_divisor;
 
 770                 quot = s3c24xx_serial_getclk(port, &clksrc, &clk, baud);
 
 772         /* check to see if we need  to change clock source */
 
 774         if (ourport->clksrc != clksrc || ourport->baudclk != clk) {
 
 775                 s3c24xx_serial_setsource(port, clksrc);
 
 777                 if (ourport->baudclk != NULL && !IS_ERR(ourport->baudclk)) {
 
 778                         clk_disable(ourport->baudclk);
 
 779                         ourport->baudclk  = NULL;
 
 784                 ourport->clksrc = clksrc;
 
 785                 ourport->baudclk = clk;
 
 788         switch (termios->c_cflag & CSIZE) {
 
 790                 dbg("config: 5bits/char\n");
 
 791                 ulcon = S3C2410_LCON_CS5;
 
 794                 dbg("config: 6bits/char\n");
 
 795                 ulcon = S3C2410_LCON_CS6;
 
 798                 dbg("config: 7bits/char\n");
 
 799                 ulcon = S3C2410_LCON_CS7;
 
 803                 dbg("config: 8bits/char\n");
 
 804                 ulcon = S3C2410_LCON_CS8;
 
 808         /* preserve original lcon IR settings */
 
 809         ulcon |= (cfg->ulcon & S3C2410_LCON_IRM);
 
 811         if (termios->c_cflag & CSTOPB)
 
 812                 ulcon |= S3C2410_LCON_STOPB;
 
 814         umcon = (termios->c_cflag & CRTSCTS) ? S3C2410_UMCOM_AFC : 0;
 
 816         if (termios->c_cflag & PARENB) {
 
 817                 if (termios->c_cflag & PARODD)
 
 818                         ulcon |= S3C2410_LCON_PODD;
 
 820                         ulcon |= S3C2410_LCON_PEVEN;
 
 822                 ulcon |= S3C2410_LCON_PNONE;
 
 825         spin_lock_irqsave(&port->lock, flags);
 
 827         dbg("setting ulcon to %08x, brddiv to %d\n", ulcon, quot);
 
 829         wr_regl(port, S3C2410_ULCON, ulcon);
 
 830         wr_regl(port, S3C2410_UBRDIV, quot);
 
 831         wr_regl(port, S3C2410_UMCON, umcon);
 
 833         dbg("uart: ulcon = 0x%08x, ucon = 0x%08x, ufcon = 0x%08x\n",
 
 834             rd_regl(port, S3C2410_ULCON),
 
 835             rd_regl(port, S3C2410_UCON),
 
 836             rd_regl(port, S3C2410_UFCON));
 
 839          * Update the per-port timeout.
 
 841         uart_update_timeout(port, termios->c_cflag, baud);
 
 844          * Which character status flags are we interested in?
 
 846         port->read_status_mask = S3C2410_UERSTAT_OVERRUN;
 
 847         if (termios->c_iflag & INPCK)
 
 848                 port->read_status_mask |= S3C2410_UERSTAT_FRAME | S3C2410_UERSTAT_PARITY;
 
 851          * Which character status flags should we ignore?
 
 853         port->ignore_status_mask = 0;
 
 854         if (termios->c_iflag & IGNPAR)
 
 855                 port->ignore_status_mask |= S3C2410_UERSTAT_OVERRUN;
 
 856         if (termios->c_iflag & IGNBRK && termios->c_iflag & IGNPAR)
 
 857                 port->ignore_status_mask |= S3C2410_UERSTAT_FRAME;
 
 860          * Ignore all characters if CREAD is not set.
 
 862         if ((termios->c_cflag & CREAD) == 0)
 
 863                 port->ignore_status_mask |= RXSTAT_DUMMY_READ;
 
 865         spin_unlock_irqrestore(&port->lock, flags);
 
 868 static const char *s3c24xx_serial_type(struct uart_port *port)
 
 870         switch (port->type) {
 
 882 #define MAP_SIZE (0x100)
 
 884 static void s3c24xx_serial_release_port(struct uart_port *port)
 
 886         release_mem_region(port->mapbase, MAP_SIZE);
 
 889 static int s3c24xx_serial_request_port(struct uart_port *port)
 
 891         const char *name = s3c24xx_serial_portname(port);
 
 892         return request_mem_region(port->mapbase, MAP_SIZE, name) ? 0 : -EBUSY;
 
 895 static void s3c24xx_serial_config_port(struct uart_port *port, int flags)
 
 897         struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
 
 899         if (flags & UART_CONFIG_TYPE &&
 
 900             s3c24xx_serial_request_port(port) == 0)
 
 901                 port->type = info->type;
 
 905  * verify the new serial_struct (for TIOCSSERIAL).
 
 908 s3c24xx_serial_verify_port(struct uart_port *port, struct serial_struct *ser)
 
 910         struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
 
 912         if (ser->type != PORT_UNKNOWN && ser->type != info->type)
 
 919 #ifdef CONFIG_SERIAL_S3C2410_CONSOLE
 
 921 static struct console s3c24xx_serial_console;
 
 923 #define S3C24XX_SERIAL_CONSOLE &s3c24xx_serial_console
 
 925 #define S3C24XX_SERIAL_CONSOLE NULL
 
 928 static struct uart_ops s3c24xx_serial_ops = {
 
 929         .pm             = s3c24xx_serial_pm,
 
 930         .tx_empty       = s3c24xx_serial_tx_empty,
 
 931         .get_mctrl      = s3c24xx_serial_get_mctrl,
 
 932         .set_mctrl      = s3c24xx_serial_set_mctrl,
 
 933         .stop_tx        = s3c24xx_serial_stop_tx,
 
 934         .start_tx       = s3c24xx_serial_start_tx,
 
 935         .stop_rx        = s3c24xx_serial_stop_rx,
 
 936         .enable_ms      = s3c24xx_serial_enable_ms,
 
 937         .break_ctl      = s3c24xx_serial_break_ctl,
 
 938         .startup        = s3c24xx_serial_startup,
 
 939         .shutdown       = s3c24xx_serial_shutdown,
 
 940         .set_termios    = s3c24xx_serial_set_termios,
 
 941         .type           = s3c24xx_serial_type,
 
 942         .release_port   = s3c24xx_serial_release_port,
 
 943         .request_port   = s3c24xx_serial_request_port,
 
 944         .config_port    = s3c24xx_serial_config_port,
 
 945         .verify_port    = s3c24xx_serial_verify_port,
 
 949 static struct uart_driver s3c24xx_uart_drv = {
 
 950         .owner          = THIS_MODULE,
 
 951         .dev_name       = "s3c2410_serial",
 
 953         .cons           = S3C24XX_SERIAL_CONSOLE,
 
 954         .driver_name    = S3C24XX_SERIAL_NAME,
 
 955         .devfs_name     = S3C24XX_SERIAL_DEVFS,
 
 956         .major          = S3C24XX_SERIAL_MAJOR,
 
 957         .minor          = S3C24XX_SERIAL_MINOR,
 
 960 static struct s3c24xx_uart_port s3c24xx_serial_ports[NR_PORTS] = {
 
 963                         .lock           = SPIN_LOCK_UNLOCKED,
 
 965                         .irq            = IRQ_S3CUART_RX0,
 
 968                         .ops            = &s3c24xx_serial_ops,
 
 969                         .flags          = UPF_BOOT_AUTOCONF,
 
 975                         .lock           = SPIN_LOCK_UNLOCKED,
 
 977                         .irq            = IRQ_S3CUART_RX1,
 
 980                         .ops            = &s3c24xx_serial_ops,
 
 981                         .flags          = UPF_BOOT_AUTOCONF,
 
 989                         .lock           = SPIN_LOCK_UNLOCKED,
 
 991                         .irq            = IRQ_S3CUART_RX2,
 
 994                         .ops            = &s3c24xx_serial_ops,
 
 995                         .flags          = UPF_BOOT_AUTOCONF,
 
1002 /* s3c24xx_serial_resetport
 
1004  * wrapper to call the specific reset for this port (reset the fifos
 
1008 static inline int s3c24xx_serial_resetport(struct uart_port * port,
 
1009                                            struct s3c2410_uartcfg *cfg)
 
1011         struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
 
1013         return (info->reset_port)(port, cfg);
 
1016 /* s3c24xx_serial_init_port
 
1018  * initialise a single serial port from the platform device given
 
1021 static int s3c24xx_serial_init_port(struct s3c24xx_uart_port *ourport,
 
1022                                     struct s3c24xx_uart_info *info,
 
1023                                     struct platform_device *platdev)
 
1025         struct uart_port *port = &ourport->port;
 
1026         struct s3c2410_uartcfg *cfg;
 
1027         struct resource *res;
 
1029         dbg("s3c24xx_serial_init_port: port=%p, platdev=%p\n", port, platdev);
 
1031         if (platdev == NULL)
 
1034         cfg = s3c24xx_dev_to_cfg(&platdev->dev);
 
1036         if (port->mapbase != 0)
 
1039         if (cfg->hwport > 3)
 
1042         /* setup info for port */
 
1043         port->dev       = &platdev->dev;
 
1044         ourport->info   = info;
 
1046         /* copy the info in from provided structure */
 
1047         ourport->port.fifosize = info->fifosize;
 
1049         dbg("s3c24xx_serial_init_port: %p (hw %d)...\n", port, cfg->hwport);
 
1053         if (cfg->uart_flags & UPF_CONS_FLOW) {
 
1054                 dbg("s3c24xx_serial_init_port: enabling flow control\n");
 
1055                 port->flags |= UPF_CONS_FLOW;
 
1058         /* sort our the physical and virtual addresses for each UART */
 
1060         res = platform_get_resource(platdev, IORESOURCE_MEM, 0);
 
1062                 printk(KERN_ERR "failed to find memory resource for uart\n");
 
1066         dbg("resource %p (%lx..%lx)\n", res, res->start, res->end);
 
1068         port->mapbase   = res->start;
 
1069         port->membase   = S3C24XX_VA_UART + (res->start - S3C24XX_PA_UART);
 
1070         port->irq       = platform_get_irq(platdev, 0);
 
1074         ourport->clk    = clk_get(&platdev->dev, "uart");
 
1076         dbg("port: map=%08x, mem=%08x, irq=%d, clock=%ld\n",
 
1077             port->mapbase, port->membase, port->irq, port->uartclk);
 
1079         /* reset the fifos (and setup the uart) */
 
1080         s3c24xx_serial_resetport(port, cfg);
 
1084 /* Device driver serial port probe */
 
1086 static int probe_index = 0;
 
1088 static int s3c24xx_serial_probe(struct platform_device *dev,
 
1089                                 struct s3c24xx_uart_info *info)
 
1091         struct s3c24xx_uart_port *ourport;
 
1094         dbg("s3c24xx_serial_probe(%p, %p) %d\n", dev, info, probe_index);
 
1096         ourport = &s3c24xx_serial_ports[probe_index];
 
1099         dbg("%s: initialising port %p...\n", __FUNCTION__, ourport);
 
1101         ret = s3c24xx_serial_init_port(ourport, info, dev);
 
1105         dbg("%s: adding port\n", __FUNCTION__);
 
1106         uart_add_one_port(&s3c24xx_uart_drv, &ourport->port);
 
1107         platform_set_drvdata(dev, &ourport->port);
 
1115 static int s3c24xx_serial_remove(struct platform_device *dev)
 
1117         struct uart_port *port = s3c24xx_dev_to_port(&dev->dev);
 
1120                 uart_remove_one_port(&s3c24xx_uart_drv, port);
 
1125 /* UART power management code */
 
1129 static int s3c24xx_serial_suspend(struct platform_device *dev, pm_message_t state)
 
1131         struct uart_port *port = s3c24xx_dev_to_port(&dev->dev);
 
1134                 uart_suspend_port(&s3c24xx_uart_drv, port);
 
1139 static int s3c24xx_serial_resume(struct platform_device *dev)
 
1141         struct uart_port *port = s3c24xx_dev_to_port(&dev->dev);
 
1142         struct s3c24xx_uart_port *ourport = to_ourport(port);
 
1145                 clk_enable(ourport->clk);
 
1146                 s3c24xx_serial_resetport(port, s3c24xx_port_to_cfg(port));
 
1147                 clk_disable(ourport->clk);
 
1149                 uart_resume_port(&s3c24xx_uart_drv, port);
 
1156 #define s3c24xx_serial_suspend NULL
 
1157 #define s3c24xx_serial_resume  NULL
 
1160 static int s3c24xx_serial_init(struct platform_driver *drv,
 
1161                                struct s3c24xx_uart_info *info)
 
1163         dbg("s3c24xx_serial_init(%p,%p)\n", drv, info);
 
1164         return platform_driver_register(drv);
 
1168 /* now comes the code to initialise either the s3c2410 or s3c2440 serial
 
1172 /* cpu specific variations on the serial port support */
 
1174 #ifdef CONFIG_CPU_S3C2400
 
1176 static int s3c2400_serial_getsource(struct uart_port *port,
 
1177                                     struct s3c24xx_uart_clksrc *clk)
 
1185 static int s3c2400_serial_setsource(struct uart_port *port,
 
1186                                     struct s3c24xx_uart_clksrc *clk)
 
1191 static int s3c2400_serial_resetport(struct uart_port *port,
 
1192                                     struct s3c2410_uartcfg *cfg)
 
1194         dbg("s3c2400_serial_resetport: port=%p (%08lx), cfg=%p\n",
 
1195             port, port->mapbase, cfg);
 
1197         wr_regl(port, S3C2410_UCON,  cfg->ucon);
 
1198         wr_regl(port, S3C2410_ULCON, cfg->ulcon);
 
1200         /* reset both fifos */
 
1202         wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
 
1203         wr_regl(port, S3C2410_UFCON, cfg->ufcon);
 
1208 static struct s3c24xx_uart_info s3c2400_uart_inf = {
 
1209         .name           = "Samsung S3C2400 UART",
 
1210         .type           = PORT_S3C2400,
 
1212         .rx_fifomask    = S3C2410_UFSTAT_RXMASK,
 
1213         .rx_fifoshift   = S3C2410_UFSTAT_RXSHIFT,
 
1214         .rx_fifofull    = S3C2410_UFSTAT_RXFULL,
 
1215         .tx_fifofull    = S3C2410_UFSTAT_TXFULL,
 
1216         .tx_fifomask    = S3C2410_UFSTAT_TXMASK,
 
1217         .tx_fifoshift   = S3C2410_UFSTAT_TXSHIFT,
 
1218         .get_clksrc     = s3c2400_serial_getsource,
 
1219         .set_clksrc     = s3c2400_serial_setsource,
 
1220         .reset_port     = s3c2400_serial_resetport,
 
1223 static int s3c2400_serial_probe(struct platform_device *dev)
 
1225         return s3c24xx_serial_probe(dev, &s3c2400_uart_inf);
 
1228 static struct platform_driver s3c2400_serial_drv = {
 
1229         .probe          = s3c2400_serial_probe,
 
1230         .remove         = s3c24xx_serial_remove,
 
1231         .suspend        = s3c24xx_serial_suspend,
 
1232         .resume         = s3c24xx_serial_resume,
 
1234                 .name   = "s3c2400-uart",
 
1235                 .owner  = THIS_MODULE,
 
1239 static inline int s3c2400_serial_init(void)
 
1241         return s3c24xx_serial_init(&s3c2400_serial_drv, &s3c2400_uart_inf);
 
1244 static inline void s3c2400_serial_exit(void)
 
1246         platform_driver_unregister(&s3c2400_serial_drv);
 
1249 #define s3c2400_uart_inf_at &s3c2400_uart_inf
 
1252 static inline int s3c2400_serial_init(void)
 
1257 static inline void s3c2400_serial_exit(void)
 
1261 #define s3c2400_uart_inf_at NULL
 
1263 #endif /* CONFIG_CPU_S3C2400 */
 
1265 /* S3C2410 support */
 
1267 #ifdef CONFIG_CPU_S3C2410
 
1269 static int s3c2410_serial_setsource(struct uart_port *port,
 
1270                                     struct s3c24xx_uart_clksrc *clk)
 
1272         unsigned long ucon = rd_regl(port, S3C2410_UCON);
 
1274         if (strcmp(clk->name, "uclk") == 0)
 
1275                 ucon |= S3C2410_UCON_UCLK;
 
1277                 ucon &= ~S3C2410_UCON_UCLK;
 
1279         wr_regl(port, S3C2410_UCON, ucon);
 
1283 static int s3c2410_serial_getsource(struct uart_port *port,
 
1284                                     struct s3c24xx_uart_clksrc *clk)
 
1286         unsigned long ucon = rd_regl(port, S3C2410_UCON);
 
1289         clk->name = (ucon & S3C2410_UCON_UCLK) ? "uclk" : "pclk";
 
1294 static int s3c2410_serial_resetport(struct uart_port *port,
 
1295                                     struct s3c2410_uartcfg *cfg)
 
1297         dbg("s3c2410_serial_resetport: port=%p (%08lx), cfg=%p\n",
 
1298             port, port->mapbase, cfg);
 
1300         wr_regl(port, S3C2410_UCON,  cfg->ucon);
 
1301         wr_regl(port, S3C2410_ULCON, cfg->ulcon);
 
1303         /* reset both fifos */
 
1305         wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
 
1306         wr_regl(port, S3C2410_UFCON, cfg->ufcon);
 
1311 static struct s3c24xx_uart_info s3c2410_uart_inf = {
 
1312         .name           = "Samsung S3C2410 UART",
 
1313         .type           = PORT_S3C2410,
 
1315         .rx_fifomask    = S3C2410_UFSTAT_RXMASK,
 
1316         .rx_fifoshift   = S3C2410_UFSTAT_RXSHIFT,
 
1317         .rx_fifofull    = S3C2410_UFSTAT_RXFULL,
 
1318         .tx_fifofull    = S3C2410_UFSTAT_TXFULL,
 
1319         .tx_fifomask    = S3C2410_UFSTAT_TXMASK,
 
1320         .tx_fifoshift   = S3C2410_UFSTAT_TXSHIFT,
 
1321         .get_clksrc     = s3c2410_serial_getsource,
 
1322         .set_clksrc     = s3c2410_serial_setsource,
 
1323         .reset_port     = s3c2410_serial_resetport,
 
1326 /* device management */
 
1328 static int s3c2410_serial_probe(struct platform_device *dev)
 
1330         return s3c24xx_serial_probe(dev, &s3c2410_uart_inf);
 
1333 static struct platform_driver s3c2410_serial_drv = {
 
1334         .probe          = s3c2410_serial_probe,
 
1335         .remove         = s3c24xx_serial_remove,
 
1336         .suspend        = s3c24xx_serial_suspend,
 
1337         .resume         = s3c24xx_serial_resume,
 
1339                 .name   = "s3c2410-uart",
 
1340                 .owner  = THIS_MODULE,
 
1344 static inline int s3c2410_serial_init(void)
 
1346         return s3c24xx_serial_init(&s3c2410_serial_drv, &s3c2410_uart_inf);
 
1349 static inline void s3c2410_serial_exit(void)
 
1351         platform_driver_unregister(&s3c2410_serial_drv);
 
1354 #define s3c2410_uart_inf_at &s3c2410_uart_inf
 
1357 static inline int s3c2410_serial_init(void)
 
1362 static inline void s3c2410_serial_exit(void)
 
1366 #define s3c2410_uart_inf_at NULL
 
1368 #endif /* CONFIG_CPU_S3C2410 */
 
1370 #if defined(CONFIG_CPU_S3C2440) || defined(CONFIG_CPU_S3C2442)
 
1372 static int s3c2440_serial_setsource(struct uart_port *port,
 
1373                                      struct s3c24xx_uart_clksrc *clk)
 
1375         unsigned long ucon = rd_regl(port, S3C2410_UCON);
 
1377         // todo - proper fclk<>nonfclk switch //
 
1379         ucon &= ~S3C2440_UCON_CLKMASK;
 
1381         if (strcmp(clk->name, "uclk") == 0)
 
1382                 ucon |= S3C2440_UCON_UCLK;
 
1383         else if (strcmp(clk->name, "pclk") == 0)
 
1384                 ucon |= S3C2440_UCON_PCLK;
 
1385         else if (strcmp(clk->name, "fclk") == 0)
 
1386                 ucon |= S3C2440_UCON_FCLK;
 
1388                 printk(KERN_ERR "unknown clock source %s\n", clk->name);
 
1392         wr_regl(port, S3C2410_UCON, ucon);
 
1397 static int s3c2440_serial_getsource(struct uart_port *port,
 
1398                                     struct s3c24xx_uart_clksrc *clk)
 
1400         unsigned long ucon = rd_regl(port, S3C2410_UCON);
 
1401         unsigned long ucon0, ucon1, ucon2;
 
1403         switch (ucon & S3C2440_UCON_CLKMASK) {
 
1404         case S3C2440_UCON_UCLK:
 
1409         case S3C2440_UCON_PCLK:
 
1410         case S3C2440_UCON_PCLK2:
 
1415         case S3C2440_UCON_FCLK:
 
1416                 /* the fun of calculating the uart divisors on
 
1419                 ucon0 = __raw_readl(S3C24XX_VA_UART0 + S3C2410_UCON);
 
1420                 ucon1 = __raw_readl(S3C24XX_VA_UART1 + S3C2410_UCON);
 
1421                 ucon2 = __raw_readl(S3C24XX_VA_UART2 + S3C2410_UCON);
 
1423                 printk("ucons: %08lx, %08lx, %08lx\n", ucon0, ucon1, ucon2);
 
1425                 ucon0 &= S3C2440_UCON0_DIVMASK;
 
1426                 ucon1 &= S3C2440_UCON1_DIVMASK;
 
1427                 ucon2 &= S3C2440_UCON2_DIVMASK;
 
1430                         clk->divisor = ucon0 >> S3C2440_UCON_DIVSHIFT;
 
1432                 } else if (ucon1 != 0) {
 
1433                         clk->divisor = ucon1 >> S3C2440_UCON_DIVSHIFT;
 
1435                 } else if (ucon2 != 0) {
 
1436                         clk->divisor = ucon2 >> S3C2440_UCON_DIVSHIFT;
 
1439                         /* manual calims 44, seems to be 9 */
 
1450 static int s3c2440_serial_resetport(struct uart_port *port,
 
1451                                     struct s3c2410_uartcfg *cfg)
 
1453         unsigned long ucon = rd_regl(port, S3C2410_UCON);
 
1455         dbg("s3c2440_serial_resetport: port=%p (%08lx), cfg=%p\n",
 
1456             port, port->mapbase, cfg);
 
1458         /* ensure we don't change the clock settings... */
 
1460         ucon &= (S3C2440_UCON0_DIVMASK | (3<<10));
 
1462         wr_regl(port, S3C2410_UCON,  ucon | cfg->ucon);
 
1463         wr_regl(port, S3C2410_ULCON, cfg->ulcon);
 
1465         /* reset both fifos */
 
1467         wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
 
1468         wr_regl(port, S3C2410_UFCON, cfg->ufcon);
 
1473 static struct s3c24xx_uart_info s3c2440_uart_inf = {
 
1474         .name           = "Samsung S3C2440 UART",
 
1475         .type           = PORT_S3C2440,
 
1477         .rx_fifomask    = S3C2440_UFSTAT_RXMASK,
 
1478         .rx_fifoshift   = S3C2440_UFSTAT_RXSHIFT,
 
1479         .rx_fifofull    = S3C2440_UFSTAT_RXFULL,
 
1480         .tx_fifofull    = S3C2440_UFSTAT_TXFULL,
 
1481         .tx_fifomask    = S3C2440_UFSTAT_TXMASK,
 
1482         .tx_fifoshift   = S3C2440_UFSTAT_TXSHIFT,
 
1483         .get_clksrc     = s3c2440_serial_getsource,
 
1484         .set_clksrc     = s3c2440_serial_setsource,
 
1485         .reset_port     = s3c2440_serial_resetport,
 
1488 /* device management */
 
1490 static int s3c2440_serial_probe(struct platform_device *dev)
 
1492         dbg("s3c2440_serial_probe: dev=%p\n", dev);
 
1493         return s3c24xx_serial_probe(dev, &s3c2440_uart_inf);
 
1496 static struct platform_driver s3c2440_serial_drv = {
 
1497         .probe          = s3c2440_serial_probe,
 
1498         .remove         = s3c24xx_serial_remove,
 
1499         .suspend        = s3c24xx_serial_suspend,
 
1500         .resume         = s3c24xx_serial_resume,
 
1502                 .name   = "s3c2440-uart",
 
1503                 .owner  = THIS_MODULE,
 
1508 static inline int s3c2440_serial_init(void)
 
1510         return s3c24xx_serial_init(&s3c2440_serial_drv, &s3c2440_uart_inf);
 
1513 static inline void s3c2440_serial_exit(void)
 
1515         platform_driver_unregister(&s3c2440_serial_drv);
 
1518 #define s3c2440_uart_inf_at &s3c2440_uart_inf
 
1521 static inline int s3c2440_serial_init(void)
 
1526 static inline void s3c2440_serial_exit(void)
 
1530 #define s3c2440_uart_inf_at NULL
 
1531 #endif /* CONFIG_CPU_S3C2440 */
 
1533 #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
 
1535 static int s3c2412_serial_setsource(struct uart_port *port,
 
1536                                      struct s3c24xx_uart_clksrc *clk)
 
1538         unsigned long ucon = rd_regl(port, S3C2410_UCON);
 
1540         ucon &= ~S3C2412_UCON_CLKMASK;
 
1542         if (strcmp(clk->name, "uclk") == 0)
 
1543                 ucon |= S3C2440_UCON_UCLK;
 
1544         else if (strcmp(clk->name, "pclk") == 0)
 
1545                 ucon |= S3C2440_UCON_PCLK;
 
1546         else if (strcmp(clk->name, "usysclk") == 0)
 
1547                 ucon |= S3C2412_UCON_USYSCLK;
 
1549                 printk(KERN_ERR "unknown clock source %s\n", clk->name);
 
1553         wr_regl(port, S3C2410_UCON, ucon);
 
1558 static int s3c2412_serial_getsource(struct uart_port *port,
 
1559                                     struct s3c24xx_uart_clksrc *clk)
 
1561         unsigned long ucon = rd_regl(port, S3C2410_UCON);
 
1563         switch (ucon & S3C2412_UCON_CLKMASK) {
 
1564         case S3C2412_UCON_UCLK:
 
1569         case S3C2412_UCON_PCLK:
 
1570         case S3C2412_UCON_PCLK2:
 
1575         case S3C2412_UCON_USYSCLK:
 
1577                 clk->name = "usysclk";
 
1584 static int s3c2412_serial_resetport(struct uart_port *port,
 
1585                                     struct s3c2410_uartcfg *cfg)
 
1587         unsigned long ucon = rd_regl(port, S3C2410_UCON);
 
1589         dbg("%s: port=%p (%08lx), cfg=%p\n",
 
1590             __FUNCTION__, port, port->mapbase, cfg);
 
1592         /* ensure we don't change the clock settings... */
 
1594         ucon &= S3C2412_UCON_CLKMASK;
 
1596         wr_regl(port, S3C2410_UCON,  ucon | cfg->ucon);
 
1597         wr_regl(port, S3C2410_ULCON, cfg->ulcon);
 
1599         /* reset both fifos */
 
1601         wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
 
1602         wr_regl(port, S3C2410_UFCON, cfg->ufcon);
 
1607 static struct s3c24xx_uart_info s3c2412_uart_inf = {
 
1608         .name           = "Samsung S3C2412 UART",
 
1609         .type           = PORT_S3C2412,
 
1611         .rx_fifomask    = S3C2440_UFSTAT_RXMASK,
 
1612         .rx_fifoshift   = S3C2440_UFSTAT_RXSHIFT,
 
1613         .rx_fifofull    = S3C2440_UFSTAT_RXFULL,
 
1614         .tx_fifofull    = S3C2440_UFSTAT_TXFULL,
 
1615         .tx_fifomask    = S3C2440_UFSTAT_TXMASK,
 
1616         .tx_fifoshift   = S3C2440_UFSTAT_TXSHIFT,
 
1617         .get_clksrc     = s3c2412_serial_getsource,
 
1618         .set_clksrc     = s3c2412_serial_setsource,
 
1619         .reset_port     = s3c2412_serial_resetport,
 
1622 /* device management */
 
1624 static int s3c2412_serial_probe(struct platform_device *dev)
 
1626         dbg("s3c2440_serial_probe: dev=%p\n", dev);
 
1627         return s3c24xx_serial_probe(dev, &s3c2440_uart_inf);
 
1630 static struct platform_driver s3c2412_serial_drv = {
 
1631         .probe          = s3c2412_serial_probe,
 
1632         .remove         = s3c24xx_serial_remove,
 
1633         .suspend        = s3c24xx_serial_suspend,
 
1634         .resume         = s3c24xx_serial_resume,
 
1636                 .name   = "s3c2412-uart",
 
1637                 .owner  = THIS_MODULE,
 
1642 static inline int s3c2412_serial_init(void)
 
1644         return s3c24xx_serial_init(&s3c2412_serial_drv, &s3c2412_uart_inf);
 
1647 static inline void s3c2412_serial_exit(void)
 
1649         platform_driver_unregister(&s3c2412_serial_drv);
 
1652 #define s3c2412_uart_inf_at &s3c2412_uart_inf
 
1655 static inline int s3c2412_serial_init(void)
 
1660 static inline void s3c2412_serial_exit(void)
 
1664 #define s3c2412_uart_inf_at NULL
 
1665 #endif /* CONFIG_CPU_S3C2440 */
 
1668 /* module initialisation code */
 
1670 static int __init s3c24xx_serial_modinit(void)
 
1674         ret = uart_register_driver(&s3c24xx_uart_drv);
 
1676                 printk(KERN_ERR "failed to register UART driver\n");
 
1680         s3c2400_serial_init();
 
1681         s3c2410_serial_init();
 
1682         s3c2412_serial_init();
 
1683         s3c2440_serial_init();
 
1688 static void __exit s3c24xx_serial_modexit(void)
 
1690         s3c2400_serial_exit();
 
1691         s3c2410_serial_exit();
 
1692         s3c2412_serial_exit();
 
1693         s3c2440_serial_exit();
 
1695         uart_unregister_driver(&s3c24xx_uart_drv);
 
1699 module_init(s3c24xx_serial_modinit);
 
1700 module_exit(s3c24xx_serial_modexit);
 
1704 #ifdef CONFIG_SERIAL_S3C2410_CONSOLE
 
1706 static struct uart_port *cons_uart;
 
1709 s3c24xx_serial_console_txrdy(struct uart_port *port, unsigned int ufcon)
 
1711         struct s3c24xx_uart_info *info = s3c24xx_port_to_info(port);
 
1712         unsigned long ufstat, utrstat;
 
1714         if (ufcon & S3C2410_UFCON_FIFOMODE) {
 
1715                 /* fifo mode - check ammount of data in fifo registers... */
 
1717                 ufstat = rd_regl(port, S3C2410_UFSTAT);
 
1718                 return (ufstat & info->tx_fifofull) ? 0 : 1;
 
1721         /* in non-fifo mode, we go and use the tx buffer empty */
 
1723         utrstat = rd_regl(port, S3C2410_UTRSTAT);
 
1724         return (utrstat & S3C2410_UTRSTAT_TXE) ? 1 : 0;
 
1728 s3c24xx_serial_console_putchar(struct uart_port *port, int ch)
 
1730         unsigned int ufcon = rd_regl(cons_uart, S3C2410_UFCON);
 
1731         while (!s3c24xx_serial_console_txrdy(port, ufcon))
 
1733         wr_regb(cons_uart, S3C2410_UTXH, ch);
 
1737 s3c24xx_serial_console_write(struct console *co, const char *s,
 
1740         uart_console_write(cons_uart, s, count, s3c24xx_serial_console_putchar);
 
1744 s3c24xx_serial_get_options(struct uart_port *port, int *baud,
 
1745                            int *parity, int *bits)
 
1747         struct s3c24xx_uart_clksrc clksrc;
 
1751         unsigned int ubrdiv;
 
1754         ulcon  = rd_regl(port, S3C2410_ULCON);
 
1755         ucon   = rd_regl(port, S3C2410_UCON);
 
1756         ubrdiv = rd_regl(port, S3C2410_UBRDIV);
 
1758         dbg("s3c24xx_serial_get_options: port=%p\n"
 
1759             "registers: ulcon=%08x, ucon=%08x, ubdriv=%08x\n",
 
1760             port, ulcon, ucon, ubrdiv);
 
1762         if ((ucon & 0xf) != 0) {
 
1763                 /* consider the serial port configured if the tx/rx mode set */
 
1765                 switch (ulcon & S3C2410_LCON_CSMASK) {
 
1766                 case S3C2410_LCON_CS5:
 
1769                 case S3C2410_LCON_CS6:
 
1772                 case S3C2410_LCON_CS7:
 
1776                 case S3C2410_LCON_CS8:
 
1781                 switch (ulcon & S3C2410_LCON_PMASK) {
 
1782                 case S3C2410_LCON_PEVEN:
 
1786                 case S3C2410_LCON_PODD:
 
1790                 case S3C2410_LCON_PNONE:
 
1795                 /* now calculate the baud rate */
 
1797                 s3c24xx_serial_getsource(port, &clksrc);
 
1799                 clk = clk_get(port->dev, clksrc.name);
 
1800                 if (!IS_ERR(clk) && clk != NULL)
 
1801                         rate = clk_get_rate(clk) / clksrc.divisor;
 
1806                 *baud = rate / ( 16 * (ubrdiv + 1));
 
1807                 dbg("calculated baud %d\n", *baud);
 
1812 /* s3c24xx_serial_init_ports
 
1814  * initialise the serial ports from the machine provided initialisation
 
1818 static int s3c24xx_serial_init_ports(struct s3c24xx_uart_info *info)
 
1820         struct s3c24xx_uart_port *ptr = s3c24xx_serial_ports;
 
1821         struct platform_device **platdev_ptr;
 
1824         dbg("s3c24xx_serial_init_ports: initialising ports...\n");
 
1826         platdev_ptr = s3c24xx_uart_devs;
 
1828         for (i = 0; i < NR_PORTS; i++, ptr++, platdev_ptr++) {
 
1829                 s3c24xx_serial_init_port(ptr, info, *platdev_ptr);
 
1836 s3c24xx_serial_console_setup(struct console *co, char *options)
 
1838         struct uart_port *port;
 
1844         dbg("s3c24xx_serial_console_setup: co=%p (%d), %s\n",
 
1845             co, co->index, options);
 
1847         /* is this a valid port */
 
1849         if (co->index == -1 || co->index >= NR_PORTS)
 
1852         port = &s3c24xx_serial_ports[co->index].port;
 
1854         /* is the port configured? */
 
1856         if (port->mapbase == 0x0) {
 
1858                 port = &s3c24xx_serial_ports[co->index].port;
 
1863         dbg("s3c24xx_serial_console_setup: port=%p (%d)\n", port, co->index);
 
1866          * Check whether an invalid uart number has been specified, and
 
1867          * if so, search for the first available port that does have
 
1871                 uart_parse_options(options, &baud, &parity, &bits, &flow);
 
1873                 s3c24xx_serial_get_options(port, &baud, &parity, &bits);
 
1875         dbg("s3c24xx_serial_console_setup: baud %d\n", baud);
 
1877         return uart_set_options(port, co, baud, parity, bits, flow);
 
1880 /* s3c24xx_serial_initconsole
 
1882  * initialise the console from one of the uart drivers
 
1885 static struct console s3c24xx_serial_console =
 
1887         .name           = S3C24XX_SERIAL_NAME,
 
1888         .device         = uart_console_device,
 
1889         .flags          = CON_PRINTBUFFER,
 
1891         .write          = s3c24xx_serial_console_write,
 
1892         .setup          = s3c24xx_serial_console_setup
 
1895 static int s3c24xx_serial_initconsole(void)
 
1897         struct s3c24xx_uart_info *info;
 
1898         struct platform_device *dev = s3c24xx_uart_devs[0];
 
1900         dbg("s3c24xx_serial_initconsole\n");
 
1902         /* select driver based on the cpu */
 
1905                 printk(KERN_ERR "s3c24xx: no devices for console init\n");
 
1909         if (strcmp(dev->name, "s3c2400-uart") == 0) {
 
1910                 info = s3c2400_uart_inf_at;
 
1911         } else if (strcmp(dev->name, "s3c2410-uart") == 0) {
 
1912                 info = s3c2410_uart_inf_at;
 
1913         } else if (strcmp(dev->name, "s3c2440-uart") == 0) {
 
1914                 info = s3c2440_uart_inf_at;
 
1915         } else if (strcmp(dev->name, "s3c2412-uart") == 0) {
 
1916                 info = s3c2412_uart_inf_at;
 
1918                 printk(KERN_ERR "s3c24xx: no driver for %s\n", dev->name);
 
1923                 printk(KERN_ERR "s3c24xx: no driver for console\n");
 
1927         s3c24xx_serial_console.data = &s3c24xx_uart_drv;
 
1928         s3c24xx_serial_init_ports(info);
 
1930         register_console(&s3c24xx_serial_console);
 
1934 console_initcall(s3c24xx_serial_initconsole);
 
1936 #endif /* CONFIG_SERIAL_S3C2410_CONSOLE */
 
1938 MODULE_LICENSE("GPL");
 
1939 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
 
1940 MODULE_DESCRIPTION("Samsung S3C2410/S3C2440/S3C2412 Serial port driver");