Ben Dooks | 05a7896 | 2008-05-22 16:36:45 +0100 | [diff] [blame] | 1 | /* linux/drivers/serial/s3c2410.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * |
Ben Dooks | b497549 | 2008-07-03 12:32:51 +0100 | [diff] [blame] | 3 | * Driver for Samsung S3C2410 SoC onboard UARTs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Ben Dooks | b497549 | 2008-07-03 12:32:51 +0100 | [diff] [blame] | 5 | * Ben Dooks, Copyright (c) 2003-2005,2008 Simtec Electronics |
Ben Dooks | 05a7896 | 2008-05-22 16:36:45 +0100 | [diff] [blame] | 6 | * http://armlinux.simtec.co.uk/ |
Ben Dooks | 8fe059d | 2008-05-23 11:48:00 +0100 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/module.h> |
| 14 | #include <linux/ioport.h> |
Ben Dooks | b497549 | 2008-07-03 12:32:51 +0100 | [diff] [blame] | 15 | #include <linux/io.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 16 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/serial_core.h> |
| 19 | #include <linux/serial.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <asm/irq.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 22 | #include <mach/hardware.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Ben Dooks | a2b7ba9 | 2008-10-07 22:26:09 +0100 | [diff] [blame] | 24 | #include <plat/regs-serial.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 25 | #include <mach/regs-gpio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Ben Dooks | b497549 | 2008-07-03 12:32:51 +0100 | [diff] [blame] | 27 | #include "samsung.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | static int s3c2410_serial_setsource(struct uart_port *port, |
| 30 | struct s3c24xx_uart_clksrc *clk) |
| 31 | { |
| 32 | unsigned long ucon = rd_regl(port, S3C2410_UCON); |
| 33 | |
| 34 | if (strcmp(clk->name, "uclk") == 0) |
| 35 | ucon |= S3C2410_UCON_UCLK; |
| 36 | else |
| 37 | ucon &= ~S3C2410_UCON_UCLK; |
| 38 | |
| 39 | wr_regl(port, S3C2410_UCON, ucon); |
| 40 | return 0; |
| 41 | } |
| 42 | |
| 43 | static int s3c2410_serial_getsource(struct uart_port *port, |
| 44 | struct s3c24xx_uart_clksrc *clk) |
| 45 | { |
| 46 | unsigned long ucon = rd_regl(port, S3C2410_UCON); |
| 47 | |
| 48 | clk->divisor = 1; |
| 49 | clk->name = (ucon & S3C2410_UCON_UCLK) ? "uclk" : "pclk"; |
| 50 | |
| 51 | return 0; |
| 52 | } |
| 53 | |
| 54 | static int s3c2410_serial_resetport(struct uart_port *port, |
| 55 | struct s3c2410_uartcfg *cfg) |
| 56 | { |
| 57 | dbg("s3c2410_serial_resetport: port=%p (%08lx), cfg=%p\n", |
| 58 | port, port->mapbase, cfg); |
| 59 | |
| 60 | wr_regl(port, S3C2410_UCON, cfg->ucon); |
| 61 | wr_regl(port, S3C2410_ULCON, cfg->ulcon); |
| 62 | |
| 63 | /* reset both fifos */ |
| 64 | |
| 65 | wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH); |
| 66 | wr_regl(port, S3C2410_UFCON, cfg->ufcon); |
| 67 | |
| 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | static struct s3c24xx_uart_info s3c2410_uart_inf = { |
| 72 | .name = "Samsung S3C2410 UART", |
| 73 | .type = PORT_S3C2410, |
| 74 | .fifosize = 16, |
| 75 | .rx_fifomask = S3C2410_UFSTAT_RXMASK, |
| 76 | .rx_fifoshift = S3C2410_UFSTAT_RXSHIFT, |
| 77 | .rx_fifofull = S3C2410_UFSTAT_RXFULL, |
| 78 | .tx_fifofull = S3C2410_UFSTAT_TXFULL, |
| 79 | .tx_fifomask = S3C2410_UFSTAT_TXMASK, |
| 80 | .tx_fifoshift = S3C2410_UFSTAT_TXSHIFT, |
| 81 | .get_clksrc = s3c2410_serial_getsource, |
| 82 | .set_clksrc = s3c2410_serial_setsource, |
| 83 | .reset_port = s3c2410_serial_resetport, |
| 84 | }; |
| 85 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 86 | static int s3c2410_serial_probe(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { |
| 88 | return s3c24xx_serial_probe(dev, &s3c2410_uart_inf); |
| 89 | } |
| 90 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 91 | static struct platform_driver s3c2410_serial_drv = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | .probe = s3c2410_serial_probe, |
| 93 | .remove = s3c24xx_serial_remove, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 94 | .driver = { |
| 95 | .name = "s3c2410-uart", |
| 96 | .owner = THIS_MODULE, |
| 97 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | }; |
| 99 | |
Ben Dooks | b497549 | 2008-07-03 12:32:51 +0100 | [diff] [blame] | 100 | s3c24xx_console_init(&s3c2410_serial_drv, &s3c2410_uart_inf); |
| 101 | |
| 102 | static int __init s3c2410_serial_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | { |
| 104 | return s3c24xx_serial_init(&s3c2410_serial_drv, &s3c2410_uart_inf); |
| 105 | } |
| 106 | |
Ben Dooks | b497549 | 2008-07-03 12:32:51 +0100 | [diff] [blame] | 107 | static void __exit s3c2410_serial_exit(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 109 | platform_driver_unregister(&s3c2410_serial_drv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Ben Dooks | b497549 | 2008-07-03 12:32:51 +0100 | [diff] [blame] | 112 | module_init(s3c2410_serial_init); |
| 113 | module_exit(s3c2410_serial_exit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
Ben Dooks | 8fe059d | 2008-05-23 11:48:00 +0100 | [diff] [blame] | 115 | MODULE_LICENSE("GPL v2"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>"); |
Ben Dooks | b497549 | 2008-07-03 12:32:51 +0100 | [diff] [blame] | 117 | MODULE_DESCRIPTION("Samsung S3C2410 SoC Serial port driver"); |
Kay Sievers | e169c13 | 2008-04-15 14:34:35 -0700 | [diff] [blame] | 118 | MODULE_ALIAS("platform:s3c2410-uart"); |