blob: df443b908ca305694c43d9665859c9cca11f3dde [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>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010024
Ishizaki Koue34b9c92007-05-31 19:33:04 +100025struct of_serial_info {
26 int type;
27 int line;
28};
29
Dan Williamsbf03f652012-04-10 14:10:53 -070030#ifdef CONFIG_ARCH_TEGRA
31void tegra_serial_handle_break(struct uart_port *p)
32{
33 unsigned int status, tmout = 10000;
34
35 do {
36 status = p->serial_in(p, UART_LSR);
37 if (status & (UART_LSR_FIFOE | UART_LSR_BRK_ERROR_BITS))
38 status = p->serial_in(p, UART_RX);
39 else
40 break;
41 if (--tmout == 0)
42 break;
43 udelay(1);
44 } while (1);
45}
46/* FIXME remove this export when tegra finishes conversion to open firmware */
47EXPORT_SYMBOL_GPL(tegra_serial_handle_break);
48#endif
49
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010050/*
51 * Fill a struct uart_port for a given device node
52 */
Grant Likely2dc11582010-08-06 09:25:50 -060053static int __devinit of_platform_serial_setup(struct platform_device *ofdev,
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010054 int type, struct uart_port *port)
55{
56 struct resource resource;
Grant Likely61c7a082010-04-13 16:12:29 -070057 struct device_node *np = ofdev->dev.of_node;
Grant Likelyb84e7732011-06-30 12:39:12 -060058 u32 clk, spd, prop;
59 int ret;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010060
61 memset(port, 0, sizeof *port);
Grant Likelyb84e7732011-06-30 12:39:12 -060062 if (of_property_read_u32(np, "clock-frequency", &clk)) {
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010063 dev_warn(&ofdev->dev, "no clock-frequency property set\n");
64 return -ENODEV;
65 }
Grant Likelyb84e7732011-06-30 12:39:12 -060066 /* If current-speed was set, then try not to change it. */
67 if (of_property_read_u32(np, "current-speed", &spd) == 0)
68 port->custom_divisor = clk / (16 * spd);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010069
70 ret = of_address_to_resource(np, 0, &resource);
71 if (ret) {
72 dev_warn(&ofdev->dev, "invalid address\n");
73 return ret;
74 }
75
76 spin_lock_init(&port->lock);
77 port->mapbase = resource.start;
John Linnb912b5e2008-04-03 10:22:19 +110078
79 /* Check for shifted address mapping */
Grant Likelyb84e7732011-06-30 12:39:12 -060080 if (of_property_read_u32(np, "reg-offset", &prop) == 0)
81 port->mapbase += prop;
John Linnb912b5e2008-04-03 10:22:19 +110082
83 /* Check for registers offset within the devices address range */
Grant Likelyb84e7732011-06-30 12:39:12 -060084 if (of_property_read_u32(np, "reg-shift", &prop) == 0)
85 port->regshift = prop;
John Linnb912b5e2008-04-03 10:22:19 +110086
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010087 port->irq = irq_of_parse_and_map(np, 0);
88 port->iotype = UPIO_MEM;
Grant Likelyb84e7732011-06-30 12:39:12 -060089 if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
90 switch (prop) {
Jamie Iles74237342011-06-27 13:32:34 +010091 case 1:
92 port->iotype = UPIO_MEM;
93 break;
94 case 4:
95 port->iotype = UPIO_MEM32;
96 break;
97 default:
Grant Likelyb84e7732011-06-30 12:39:12 -060098 dev_warn(&ofdev->dev, "unsupported reg-io-width (%d)\n",
99 prop);
Jamie Iles74237342011-06-27 13:32:34 +0100100 return -EINVAL;
101 }
102 }
103
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100104 port->type = type;
Grant Likelyb84e7732011-06-30 12:39:12 -0600105 port->uartclk = clk;
David Gibsonabb4a232007-05-06 14:48:49 -0700106 port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP
Dave Mitchelleedacbf2009-06-09 13:39:47 +0000107 | UPF_FIXED_PORT | UPF_FIXED_TYPE;
Gabor Juhosfde8be22012-07-17 17:08:31 +0100108
109 if (of_find_property(np, "no-loopback-test", NULL))
110 port->flags |= UPF_SKIP_TEST;
111
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100112 port->dev = &ofdev->dev;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100113
Dan Williamsbf03f652012-04-10 14:10:53 -0700114 if (type == PORT_TEGRA)
115 port->handle_break = tegra_serial_handle_break;
116
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100117 return 0;
118}
119
120/*
121 * Try to register a serial port
122 */
Grant Likelyb1608d62011-05-18 11:19:24 -0600123static struct of_device_id of_platform_serial_table[];
Grant Likely793218d2011-02-22 21:10:26 -0700124static int __devinit of_platform_serial_probe(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100125{
Grant Likelyb1608d62011-05-18 11:19:24 -0600126 const struct of_device_id *match;
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000127 struct of_serial_info *info;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100128 struct uart_port port;
129 int port_type;
130 int ret;
131
Grant Likelyb1608d62011-05-18 11:19:24 -0600132 match = of_match_device(of_platform_serial_table, &ofdev->dev);
133 if (!match)
Grant Likely793218d2011-02-22 21:10:26 -0700134 return -EINVAL;
135
Grant Likely61c7a082010-04-13 16:12:29 -0700136 if (of_find_property(ofdev->dev.of_node, "used-by-rtas", NULL))
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100137 return -EBUSY;
138
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000139 info = kmalloc(sizeof(*info), GFP_KERNEL);
140 if (info == NULL)
141 return -ENOMEM;
142
Grant Likelyb1608d62011-05-18 11:19:24 -0600143 port_type = (unsigned long)match->data;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100144 ret = of_platform_serial_setup(ofdev, port_type, &port);
145 if (ret)
146 goto out;
147
148 switch (port_type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100149#ifdef CONFIG_SERIAL_8250
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100150 case PORT_8250 ... PORT_MAX_8250:
Alan Coxce7240e2012-07-17 17:06:20 +0100151 {
152 /* For now the of bindings don't support the extra
153 8250 specific bits */
154 struct uart_8250_port port8250;
155 memset(&port8250, 0, sizeof(port8250));
156 port8250.port = port;
157 ret = serial8250_register_8250_port(&port8250);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100158 break;
Alan Coxce7240e2012-07-17 17:06:20 +0100159 }
Benjamin Krill5886188d2009-01-07 10:32:38 +0100160#endif
161#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
162 case PORT_NWPSERIAL:
163 ret = nwpserial_register_port(&port);
164 break;
165#endif
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100166 default:
167 /* need to add code for these */
Ishizaki Kou1558f9b2007-05-31 19:30:33 +1000168 case PORT_UNKNOWN:
169 dev_info(&ofdev->dev, "Unknown serial port found, ignored\n");
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100170 ret = -ENODEV;
171 break;
172 }
173 if (ret < 0)
174 goto out;
175
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000176 info->type = port_type;
177 info->line = ret;
Greg Kroah-Hartman3cf62a52009-05-04 12:40:54 -0700178 dev_set_drvdata(&ofdev->dev, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100179 return 0;
180out:
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000181 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100182 irq_dispose_mapping(port.irq);
183 return ret;
184}
185
186/*
187 * Release a line
188 */
Grant Likely2dc11582010-08-06 09:25:50 -0600189static int of_platform_serial_remove(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100190{
Greg Kroah-Hartman3cf62a52009-05-04 12:40:54 -0700191 struct of_serial_info *info = dev_get_drvdata(&ofdev->dev);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000192 switch (info->type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100193#ifdef CONFIG_SERIAL_8250
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000194 case PORT_8250 ... PORT_MAX_8250:
195 serial8250_unregister_port(info->line);
196 break;
Benjamin Krill5886188d2009-01-07 10:32:38 +0100197#endif
198#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
199 case PORT_NWPSERIAL:
200 nwpserial_unregister_port(info->line);
201 break;
202#endif
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000203 default:
204 /* need to add code for these */
205 break;
206 }
207 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100208 return 0;
209}
210
211/*
212 * A few common types, add more as needed.
213 */
214static struct of_device_id __devinitdata of_platform_serial_table[] = {
Grant Likely8c6e9112011-02-22 19:12:21 -0700215 { .compatible = "ns8250", .data = (void *)PORT_8250, },
216 { .compatible = "ns16450", .data = (void *)PORT_16450, },
217 { .compatible = "ns16550a", .data = (void *)PORT_16550A, },
218 { .compatible = "ns16550", .data = (void *)PORT_16550, },
219 { .compatible = "ns16750", .data = (void *)PORT_16750, },
220 { .compatible = "ns16850", .data = (void *)PORT_16850, },
Grant Likely2e39e5b2011-07-05 23:42:36 -0600221 { .compatible = "nvidia,tegra20-uart", .data = (void *)PORT_TEGRA, },
Roland Stiggee4305f02012-06-11 21:57:14 +0200222 { .compatible = "nxp,lpc3220-uart", .data = (void *)PORT_LPC3220, },
Benjamin Krill5886188d2009-01-07 10:32:38 +0100223#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
Grant Likely8c6e9112011-02-22 19:12:21 -0700224 { .compatible = "ibm,qpace-nwp-serial",
225 .data = (void *)PORT_NWPSERIAL, },
Benjamin Krill5886188d2009-01-07 10:32:38 +0100226#endif
Grant Likely8c6e9112011-02-22 19:12:21 -0700227 { .type = "serial", .data = (void *)PORT_UNKNOWN, },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100228 { /* end of list */ },
229};
230
Grant Likely793218d2011-02-22 21:10:26 -0700231static struct platform_driver of_platform_serial_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700232 .driver = {
233 .name = "of_serial",
234 .owner = THIS_MODULE,
235 .of_match_table = of_platform_serial_table,
236 },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100237 .probe = of_platform_serial_probe,
238 .remove = of_platform_serial_remove,
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100239};
240
Grant Likely940ab882011-10-05 11:29:49 -0600241module_platform_driver(of_platform_serial_driver);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100242
243MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
244MODULE_LICENSE("GPL");
245MODULE_DESCRIPTION("Serial Port driver for Open Firmware platform devices");