blob: 7ce5ba0865753ccec8de904f1d1951661b25d676 [file] [log] [blame]
Kevin Hilman7c6337e2007-04-30 19:37:19 +01001/*
2 * TI DaVinci serial driver
3 *
4 * Copyright (C) 2006 Texas Instruments.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 */
21
22#include <linux/kernel.h>
23#include <linux/init.h>
24#include <linux/serial_8250.h>
25#include <linux/serial_reg.h>
26#include <linux/platform_device.h>
27#include <linux/delay.h>
28#include <linux/clk.h>
Russell Kingfced80c2008-09-06 12:10:45 +010029#include <linux/io.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010030
Russell Kinga09e64f2008-08-05 16:14:15 +010031#include <mach/serial.h>
Kevin Hilman617b9252009-04-14 08:04:26 -050032#include <mach/cputype.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010033
Kevin Hilman617b9252009-04-14 08:04:26 -050034static inline unsigned int serial_read_reg(struct plat_serial8250_port *up,
35 int offset)
Kevin Hilman7c6337e2007-04-30 19:37:19 +010036{
37 offset <<= up->regshift;
Kevin Hilman617b9252009-04-14 08:04:26 -050038 return (unsigned int)__raw_readl(IO_ADDRESS(up->mapbase) + offset);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010039}
40
Kevin Hilman617b9252009-04-14 08:04:26 -050041static inline void serial_write_reg(struct plat_serial8250_port *p, int offset,
42 int value)
Kevin Hilman7c6337e2007-04-30 19:37:19 +010043{
44 offset <<= p->regshift;
Kevin Hilman617b9252009-04-14 08:04:26 -050045 __raw_writel(value, IO_ADDRESS(p->mapbase) + offset);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010046}
47
Kevin Hilman7c6337e2007-04-30 19:37:19 +010048static void __init davinci_serial_reset(struct plat_serial8250_port *p)
49{
Kevin Hilman7c6337e2007-04-30 19:37:19 +010050 unsigned int pwremu = 0;
51
Kevin Hilman617b9252009-04-14 08:04:26 -050052 serial_write_reg(p, UART_IER, 0); /* disable all interrupts */
Kevin Hilman7c6337e2007-04-30 19:37:19 +010053
Kevin Hilman617b9252009-04-14 08:04:26 -050054 /* reset both transmitter and receiver: bits 14,13 = UTRST, URRST */
55 serial_write_reg(p, UART_DAVINCI_PWREMU, pwremu);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010056 mdelay(10);
57
58 pwremu |= (0x3 << 13);
59 pwremu |= 0x1;
Kevin Hilman617b9252009-04-14 08:04:26 -050060 serial_write_reg(p, UART_DAVINCI_PWREMU, pwremu);
61
62 if (cpu_is_davinci_dm646x())
63 serial_write_reg(p, UART_DM646X_SCR,
64 UART_DM646X_SCR_TX_WATERMARK);
65}
66
Mark A. Greer65e866a2009-03-18 12:36:08 -050067int __init davinci_serial_init(struct davinci_uart_config *info)
Kevin Hilman617b9252009-04-14 08:04:26 -050068{
69 int i;
70 char name[16];
71 struct clk *uart_clk;
Mark A. Greer65e866a2009-03-18 12:36:08 -050072 struct davinci_soc_info *soc_info = &davinci_soc_info;
73 struct device *dev = &soc_info->serial_dev->dev;
74 struct plat_serial8250_port *p = dev->platform_data;
Kevin Hilman617b9252009-04-14 08:04:26 -050075
76 /*
77 * Make sure the serial ports are muxed on at this point.
Mark A. Greer65e866a2009-03-18 12:36:08 -050078 * You have to mux them off in device drivers later on if not needed.
Kevin Hilman617b9252009-04-14 08:04:26 -050079 */
Mark A. Greer65e866a2009-03-18 12:36:08 -050080 for (i = 0; i < DAVINCI_MAX_NR_UARTS; i++, p++) {
81 if (!(info->enabled_uarts & (1 << i)))
Kevin Hilman617b9252009-04-14 08:04:26 -050082 continue;
Kevin Hilman617b9252009-04-14 08:04:26 -050083
84 sprintf(name, "uart%d", i);
85 uart_clk = clk_get(dev, name);
86 if (IS_ERR(uart_clk))
87 printk(KERN_ERR "%s:%d: failed to get UART%d clock\n",
88 __func__, __LINE__, i);
89 else {
90 clk_enable(uart_clk);
91 p->uartclk = clk_get_rate(uart_clk);
92 davinci_serial_reset(p);
93 }
94 }
Kevin Hilman7c6337e2007-04-30 19:37:19 +010095
Mark A. Greer65e866a2009-03-18 12:36:08 -050096 return platform_device_register(soc_info->serial_dev);
Kevin Hilman7c6337e2007-04-30 19:37:19 +010097}