2 * Driver for Samsung S3C6400 and S3C6410 SoC onboard UARTs.
4 * Copyright 2008 Openmoko, Inc.
5 * Copyright 2008 Simtec Electronics
6 * Ben Dooks <ben@simtec.co.uk>
7 * http://armlinux.simtec.co.uk/
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/module.h>
15 #include <linux/ioport.h>
17 #include <linux/platform_device.h>
18 #include <linux/init.h>
19 #include <linux/serial_core.h>
20 #include <linux/serial.h>
23 #include <mach/hardware.h>
25 #include <plat/regs-serial.h>
29 static int s3c6400_serial_setsource(struct uart_port
*port
,
30 struct s3c24xx_uart_clksrc
*clk
)
32 unsigned long ucon
= rd_regl(port
, S3C2410_UCON
);
34 if (strcmp(clk
->name
, "uclk0") == 0) {
35 ucon
&= ~S3C6400_UCON_CLKMASK
;
36 ucon
|= S3C6400_UCON_UCLK0
;
37 } else if (strcmp(clk
->name
, "uclk1") == 0)
38 ucon
|= S3C6400_UCON_UCLK1
;
39 else if (strcmp(clk
->name
, "pclk") == 0) {
40 /* See notes about transitioning from UCLK to PCLK */
41 ucon
&= ~S3C6400_UCON_UCLK0
;
43 printk(KERN_ERR
"unknown clock source %s\n", clk
->name
);
47 wr_regl(port
, S3C2410_UCON
, ucon
);
52 static int s3c6400_serial_getsource(struct uart_port
*port
,
53 struct s3c24xx_uart_clksrc
*clk
)
55 u32 ucon
= rd_regl(port
, S3C2410_UCON
);
59 switch (ucon
& S3C6400_UCON_CLKMASK
) {
60 case S3C6400_UCON_UCLK0
:
64 case S3C6400_UCON_UCLK1
:
68 case S3C6400_UCON_PCLK
:
69 case S3C6400_UCON_PCLK2
:
77 static int s3c6400_serial_resetport(struct uart_port
*port
,
78 struct s3c2410_uartcfg
*cfg
)
80 unsigned long ucon
= rd_regl(port
, S3C2410_UCON
);
82 dbg("s3c6400_serial_resetport: port=%p (%08lx), cfg=%p\n",
83 port
, port
->mapbase
, cfg
);
85 /* ensure we don't change the clock settings... */
87 ucon
&= S3C6400_UCON_CLKMASK
;
89 wr_regl(port
, S3C2410_UCON
, ucon
| cfg
->ucon
);
90 wr_regl(port
, S3C2410_ULCON
, cfg
->ulcon
);
92 /* reset both fifos */
94 wr_regl(port
, S3C2410_UFCON
, cfg
->ufcon
| S3C2410_UFCON_RESETBOTH
);
95 wr_regl(port
, S3C2410_UFCON
, cfg
->ufcon
);
100 static struct s3c24xx_uart_info s3c6400_uart_inf
= {
101 .name
= "Samsung S3C6400 UART",
102 .type
= PORT_S3C6400
,
105 .rx_fifomask
= S3C2440_UFSTAT_RXMASK
,
106 .rx_fifoshift
= S3C2440_UFSTAT_RXSHIFT
,
107 .rx_fifofull
= S3C2440_UFSTAT_RXFULL
,
108 .tx_fifofull
= S3C2440_UFSTAT_TXFULL
,
109 .tx_fifomask
= S3C2440_UFSTAT_TXMASK
,
110 .tx_fifoshift
= S3C2440_UFSTAT_TXSHIFT
,
111 .get_clksrc
= s3c6400_serial_getsource
,
112 .set_clksrc
= s3c6400_serial_setsource
,
113 .reset_port
= s3c6400_serial_resetport
,
116 /* device management */
118 static int s3c6400_serial_probe(struct platform_device
*dev
)
120 dbg("s3c6400_serial_probe: dev=%p\n", dev
);
121 return s3c24xx_serial_probe(dev
, &s3c6400_uart_inf
);
124 static struct platform_driver s3c6400_serial_driver
= {
125 .probe
= s3c6400_serial_probe
,
126 .remove
= __devexit_p(s3c24xx_serial_remove
),
128 .name
= "s3c6400-uart",
129 .owner
= THIS_MODULE
,
133 static int __init
s3c6400_serial_init(void)
135 return s3c24xx_serial_init(&s3c6400_serial_driver
, &s3c6400_uart_inf
);
138 static void __exit
s3c6400_serial_exit(void)
140 platform_driver_unregister(&s3c6400_serial_driver
);
143 module_init(s3c6400_serial_init
);
144 module_exit(s3c6400_serial_exit
);
146 MODULE_DESCRIPTION("Samsung S3C6400,S3C6410 SoC Serial port driver");
147 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
148 MODULE_LICENSE("GPL v2");
149 MODULE_ALIAS("platform:s3c6400-uart");