2008-05-22 15:36:45 +00:00
|
|
|
/* linux/drivers/serial/s3c2410.c
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2008-07-03 11:32:51 +00:00
|
|
|
* Driver for Samsung S3C2410 SoC onboard UARTs.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2008-07-03 11:32:51 +00:00
|
|
|
* Ben Dooks, Copyright (c) 2003-2005,2008 Simtec Electronics
|
2008-05-22 15:36:45 +00:00
|
|
|
* http://armlinux.simtec.co.uk/
|
2008-05-23 10:48:00 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
|
2008-07-03 11:32:51 +00:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/ioport.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/serial_core.h>
|
|
|
|
#include <linux/serial.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-07-03 11:32:51 +00:00
|
|
|
#include <asm/irq.h>
|
2008-08-05 15:14:15 +00:00
|
|
|
#include <mach/hardware.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-07-03 11:32:51 +00:00
|
|
|
#include <asm/plat-s3c/regs-serial.h>
|
2008-08-05 15:14:15 +00:00
|
|
|
#include <mach/regs-gpio.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-07-03 11:32:51 +00:00
|
|
|
#include "samsung.h"
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static int s3c2410_serial_setsource(struct uart_port *port,
|
|
|
|
struct s3c24xx_uart_clksrc *clk)
|
|
|
|
{
|
|
|
|
unsigned long ucon = rd_regl(port, S3C2410_UCON);
|
|
|
|
|
|
|
|
if (strcmp(clk->name, "uclk") == 0)
|
|
|
|
ucon |= S3C2410_UCON_UCLK;
|
|
|
|
else
|
|
|
|
ucon &= ~S3C2410_UCON_UCLK;
|
|
|
|
|
|
|
|
wr_regl(port, S3C2410_UCON, ucon);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int s3c2410_serial_getsource(struct uart_port *port,
|
|
|
|
struct s3c24xx_uart_clksrc *clk)
|
|
|
|
{
|
|
|
|
unsigned long ucon = rd_regl(port, S3C2410_UCON);
|
|
|
|
|
|
|
|
clk->divisor = 1;
|
|
|
|
clk->name = (ucon & S3C2410_UCON_UCLK) ? "uclk" : "pclk";
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int s3c2410_serial_resetport(struct uart_port *port,
|
|
|
|
struct s3c2410_uartcfg *cfg)
|
|
|
|
{
|
|
|
|
dbg("s3c2410_serial_resetport: port=%p (%08lx), cfg=%p\n",
|
|
|
|
port, port->mapbase, cfg);
|
|
|
|
|
|
|
|
wr_regl(port, S3C2410_UCON, cfg->ucon);
|
|
|
|
wr_regl(port, S3C2410_ULCON, cfg->ulcon);
|
|
|
|
|
|
|
|
/* reset both fifos */
|
|
|
|
|
|
|
|
wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
|
|
|
|
wr_regl(port, S3C2410_UFCON, cfg->ufcon);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct s3c24xx_uart_info s3c2410_uart_inf = {
|
|
|
|
.name = "Samsung S3C2410 UART",
|
|
|
|
.type = PORT_S3C2410,
|
|
|
|
.fifosize = 16,
|
|
|
|
.rx_fifomask = S3C2410_UFSTAT_RXMASK,
|
|
|
|
.rx_fifoshift = S3C2410_UFSTAT_RXSHIFT,
|
|
|
|
.rx_fifofull = S3C2410_UFSTAT_RXFULL,
|
|
|
|
.tx_fifofull = S3C2410_UFSTAT_TXFULL,
|
|
|
|
.tx_fifomask = S3C2410_UFSTAT_TXMASK,
|
|
|
|
.tx_fifoshift = S3C2410_UFSTAT_TXSHIFT,
|
|
|
|
.get_clksrc = s3c2410_serial_getsource,
|
|
|
|
.set_clksrc = s3c2410_serial_setsource,
|
|
|
|
.reset_port = s3c2410_serial_resetport,
|
|
|
|
};
|
|
|
|
|
2005-11-09 22:32:44 +00:00
|
|
|
static int s3c2410_serial_probe(struct platform_device *dev)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
return s3c24xx_serial_probe(dev, &s3c2410_uart_inf);
|
|
|
|
}
|
|
|
|
|
2005-11-09 22:32:44 +00:00
|
|
|
static struct platform_driver s3c2410_serial_drv = {
|
2005-04-16 22:20:36 +00:00
|
|
|
.probe = s3c2410_serial_probe,
|
|
|
|
.remove = s3c24xx_serial_remove,
|
2005-11-09 22:32:44 +00:00
|
|
|
.driver = {
|
|
|
|
.name = "s3c2410-uart",
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
},
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
2008-07-03 11:32:51 +00:00
|
|
|
s3c24xx_console_init(&s3c2410_serial_drv, &s3c2410_uart_inf);
|
|
|
|
|
|
|
|
static int __init s3c2410_serial_init(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
return s3c24xx_serial_init(&s3c2410_serial_drv, &s3c2410_uart_inf);
|
|
|
|
}
|
|
|
|
|
2008-07-03 11:32:51 +00:00
|
|
|
static void __exit s3c2410_serial_exit(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2005-11-09 22:32:44 +00:00
|
|
|
platform_driver_unregister(&s3c2410_serial_drv);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-07-03 11:32:51 +00:00
|
|
|
module_init(s3c2410_serial_init);
|
|
|
|
module_exit(s3c2410_serial_exit);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-05-23 10:48:00 +00:00
|
|
|
MODULE_LICENSE("GPL v2");
|
2005-04-16 22:20:36 +00:00
|
|
|
MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
|
2008-07-03 11:32:51 +00:00
|
|
|
MODULE_DESCRIPTION("Samsung S3C2410 SoC Serial port driver");
|
2008-04-15 21:34:35 +00:00
|
|
|
MODULE_ALIAS("platform:s3c2410-uart");
|