blob: 533ccfe770945581597efd04051672a64fca8491 [file] [log] [blame]
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +01001/*
2 * Serial Port driver for Open Firmware platform devices
3 *
4 * Copyright (C) 2006 Arnd Bergmann <arnd@arndb.de>, IBM Corp.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12#include <linux/init.h>
13#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Dan Williamsbf03f652012-04-10 14:10:53 -070015#include <linux/delay.h>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010016#include <linux/serial_core.h>
17#include <linux/serial_8250.h>
Dan Williamsbf03f652012-04-10 14:10:53 -070018#include <linux/serial_reg.h>
Grant Likelyf1ca09b2010-08-16 23:44:49 -060019#include <linux/of_address.h>
Rob Herring73930a82010-11-17 17:50:23 -060020#include <linux/of_irq.h>
Dan Williamsbf03f652012-04-10 14:10:53 -070021#include <linux/of_serial.h>
Stephen Rothwellc401b042008-05-23 16:32:54 +100022#include <linux/of_platform.h>
Benjamin Krill5886188d2009-01-07 10:32:38 +010023#include <linux/nwpserial.h>
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040024#include <linux/clk.h>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010025
Ishizaki Koue34b9c92007-05-31 19:33:04 +100026struct of_serial_info {
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040027 struct clk *clk;
Ishizaki Koue34b9c92007-05-31 19:33:04 +100028 int type;
29 int line;
30};
31
Dan Williamsbf03f652012-04-10 14:10:53 -070032#ifdef CONFIG_ARCH_TEGRA
33void tegra_serial_handle_break(struct uart_port *p)
34{
35 unsigned int status, tmout = 10000;
36
37 do {
38 status = p->serial_in(p, UART_LSR);
39 if (status & (UART_LSR_FIFOE | UART_LSR_BRK_ERROR_BITS))
40 status = p->serial_in(p, UART_RX);
41 else
42 break;
43 if (--tmout == 0)
44 break;
45 udelay(1);
46 } while (1);
47}
48/* FIXME remove this export when tegra finishes conversion to open firmware */
49EXPORT_SYMBOL_GPL(tegra_serial_handle_break);
50#endif
51
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010052/*
53 * Fill a struct uart_port for a given device node
54 */
Grant Likely2dc11582010-08-06 09:25:50 -060055static int __devinit of_platform_serial_setup(struct platform_device *ofdev,
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040056 int type, struct uart_port *port,
57 struct of_serial_info *info)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010058{
59 struct resource resource;
Grant Likely61c7a082010-04-13 16:12:29 -070060 struct device_node *np = ofdev->dev.of_node;
Grant Likelyb84e7732011-06-30 12:39:12 -060061 u32 clk, spd, prop;
62 int ret;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010063
64 memset(port, 0, sizeof *port);
Grant Likelyb84e7732011-06-30 12:39:12 -060065 if (of_property_read_u32(np, "clock-frequency", &clk)) {
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040066
67 /* Get clk rate through clk driver if present */
68 info->clk = clk_get(&ofdev->dev, NULL);
69 if (info->clk == NULL) {
70 dev_warn(&ofdev->dev,
71 "clk or clock-frequency not defined\n");
72 return -ENODEV;
73 }
74
75 clk_prepare_enable(info->clk);
76 clk = clk_get_rate(info->clk);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010077 }
Grant Likelyb84e7732011-06-30 12:39:12 -060078 /* If current-speed was set, then try not to change it. */
79 if (of_property_read_u32(np, "current-speed", &spd) == 0)
80 port->custom_divisor = clk / (16 * spd);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010081
82 ret = of_address_to_resource(np, 0, &resource);
83 if (ret) {
84 dev_warn(&ofdev->dev, "invalid address\n");
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040085 goto out;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010086 }
87
88 spin_lock_init(&port->lock);
89 port->mapbase = resource.start;
John Linnb912b5e2008-04-03 10:22:19 +110090
91 /* Check for shifted address mapping */
Grant Likelyb84e7732011-06-30 12:39:12 -060092 if (of_property_read_u32(np, "reg-offset", &prop) == 0)
93 port->mapbase += prop;
John Linnb912b5e2008-04-03 10:22:19 +110094
95 /* Check for registers offset within the devices address range */
Grant Likelyb84e7732011-06-30 12:39:12 -060096 if (of_property_read_u32(np, "reg-shift", &prop) == 0)
97 port->regshift = prop;
John Linnb912b5e2008-04-03 10:22:19 +110098
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010099 port->irq = irq_of_parse_and_map(np, 0);
100 port->iotype = UPIO_MEM;
Grant Likelyb84e7732011-06-30 12:39:12 -0600101 if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
102 switch (prop) {
Jamie Iles74237342011-06-27 13:32:34 +0100103 case 1:
104 port->iotype = UPIO_MEM;
105 break;
106 case 4:
107 port->iotype = UPIO_MEM32;
108 break;
109 default:
Grant Likelyb84e7732011-06-30 12:39:12 -0600110 dev_warn(&ofdev->dev, "unsupported reg-io-width (%d)\n",
111 prop);
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400112 ret = -EINVAL;
113 goto out;
Jamie Iles74237342011-06-27 13:32:34 +0100114 }
115 }
116
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100117 port->type = type;
Grant Likelyb84e7732011-06-30 12:39:12 -0600118 port->uartclk = clk;
David Gibsonabb4a232007-05-06 14:48:49 -0700119 port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP
Dave Mitchelleedacbf2009-06-09 13:39:47 +0000120 | UPF_FIXED_PORT | UPF_FIXED_TYPE;
Gabor Juhosfde8be22012-07-17 17:08:31 +0100121
122 if (of_find_property(np, "no-loopback-test", NULL))
123 port->flags |= UPF_SKIP_TEST;
124
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100125 port->dev = &ofdev->dev;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100126
Dan Williamsbf03f652012-04-10 14:10:53 -0700127 if (type == PORT_TEGRA)
128 port->handle_break = tegra_serial_handle_break;
129
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100130 return 0;
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400131out:
132 if (info->clk)
133 clk_disable_unprepare(info->clk);
134 return ret;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100135}
136
137/*
138 * Try to register a serial port
139 */
Grant Likelyb1608d62011-05-18 11:19:24 -0600140static struct of_device_id of_platform_serial_table[];
Grant Likely793218d2011-02-22 21:10:26 -0700141static int __devinit of_platform_serial_probe(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100142{
Grant Likelyb1608d62011-05-18 11:19:24 -0600143 const struct of_device_id *match;
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000144 struct of_serial_info *info;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100145 struct uart_port port;
146 int port_type;
147 int ret;
148
Grant Likelyb1608d62011-05-18 11:19:24 -0600149 match = of_match_device(of_platform_serial_table, &ofdev->dev);
150 if (!match)
Grant Likely793218d2011-02-22 21:10:26 -0700151 return -EINVAL;
152
Grant Likely61c7a082010-04-13 16:12:29 -0700153 if (of_find_property(ofdev->dev.of_node, "used-by-rtas", NULL))
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100154 return -EBUSY;
155
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000156 info = kmalloc(sizeof(*info), GFP_KERNEL);
157 if (info == NULL)
158 return -ENOMEM;
159
Grant Likelyb1608d62011-05-18 11:19:24 -0600160 port_type = (unsigned long)match->data;
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400161 ret = of_platform_serial_setup(ofdev, port_type, &port, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100162 if (ret)
163 goto out;
164
165 switch (port_type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100166#ifdef CONFIG_SERIAL_8250
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100167 case PORT_8250 ... PORT_MAX_8250:
Alan Coxce7240e2012-07-17 17:06:20 +0100168 {
169 /* For now the of bindings don't support the extra
170 8250 specific bits */
171 struct uart_8250_port port8250;
172 memset(&port8250, 0, sizeof(port8250));
173 port8250.port = port;
174 ret = serial8250_register_8250_port(&port8250);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100175 break;
Alan Coxce7240e2012-07-17 17:06:20 +0100176 }
Benjamin Krill5886188d2009-01-07 10:32:38 +0100177#endif
178#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
179 case PORT_NWPSERIAL:
180 ret = nwpserial_register_port(&port);
181 break;
182#endif
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100183 default:
184 /* need to add code for these */
Ishizaki Kou1558f9b2007-05-31 19:30:33 +1000185 case PORT_UNKNOWN:
186 dev_info(&ofdev->dev, "Unknown serial port found, ignored\n");
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100187 ret = -ENODEV;
188 break;
189 }
190 if (ret < 0)
191 goto out;
192
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000193 info->type = port_type;
194 info->line = ret;
Greg Kroah-Hartman3cf62a52009-05-04 12:40:54 -0700195 dev_set_drvdata(&ofdev->dev, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100196 return 0;
197out:
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000198 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100199 irq_dispose_mapping(port.irq);
200 return ret;
201}
202
203/*
204 * Release a line
205 */
Grant Likely2dc11582010-08-06 09:25:50 -0600206static int of_platform_serial_remove(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100207{
Greg Kroah-Hartman3cf62a52009-05-04 12:40:54 -0700208 struct of_serial_info *info = dev_get_drvdata(&ofdev->dev);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000209 switch (info->type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100210#ifdef CONFIG_SERIAL_8250
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000211 case PORT_8250 ... PORT_MAX_8250:
212 serial8250_unregister_port(info->line);
213 break;
Benjamin Krill5886188d2009-01-07 10:32:38 +0100214#endif
215#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
216 case PORT_NWPSERIAL:
217 nwpserial_unregister_port(info->line);
218 break;
219#endif
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000220 default:
221 /* need to add code for these */
222 break;
223 }
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400224
225 if (info->clk)
226 clk_disable_unprepare(info->clk);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000227 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100228 return 0;
229}
230
231/*
232 * A few common types, add more as needed.
233 */
234static struct of_device_id __devinitdata of_platform_serial_table[] = {
Grant Likely8c6e9112011-02-22 19:12:21 -0700235 { .compatible = "ns8250", .data = (void *)PORT_8250, },
236 { .compatible = "ns16450", .data = (void *)PORT_16450, },
237 { .compatible = "ns16550a", .data = (void *)PORT_16550A, },
238 { .compatible = "ns16550", .data = (void *)PORT_16550, },
239 { .compatible = "ns16750", .data = (void *)PORT_16750, },
240 { .compatible = "ns16850", .data = (void *)PORT_16850, },
Grant Likely2e39e5b2011-07-05 23:42:36 -0600241 { .compatible = "nvidia,tegra20-uart", .data = (void *)PORT_TEGRA, },
Roland Stiggee4305f02012-06-11 21:57:14 +0200242 { .compatible = "nxp,lpc3220-uart", .data = (void *)PORT_LPC3220, },
Benjamin Krill5886188d2009-01-07 10:32:38 +0100243#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
Grant Likely8c6e9112011-02-22 19:12:21 -0700244 { .compatible = "ibm,qpace-nwp-serial",
245 .data = (void *)PORT_NWPSERIAL, },
Benjamin Krill5886188d2009-01-07 10:32:38 +0100246#endif
Grant Likely8c6e9112011-02-22 19:12:21 -0700247 { .type = "serial", .data = (void *)PORT_UNKNOWN, },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100248 { /* end of list */ },
249};
250
Grant Likely793218d2011-02-22 21:10:26 -0700251static struct platform_driver of_platform_serial_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700252 .driver = {
253 .name = "of_serial",
254 .owner = THIS_MODULE,
255 .of_match_table = of_platform_serial_table,
256 },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100257 .probe = of_platform_serial_probe,
258 .remove = of_platform_serial_remove,
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100259};
260
Grant Likely940ab882011-10-05 11:29:49 -0600261module_platform_driver(of_platform_serial_driver);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100262
263MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
264MODULE_LICENSE("GPL");
265MODULE_DESCRIPTION("Serial Port driver for Open Firmware platform devices");