blob: 267711b5cb4d7f0644577473dfdb002331c3a524 [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>
Stephen Rothwellc401b042008-05-23 16:32:54 +100021#include <linux/of_platform.h>
Benjamin Krill5886188d2009-01-07 10:32:38 +010022#include <linux/nwpserial.h>
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040023#include <linux/clk.h>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010024
Ishizaki Koue34b9c92007-05-31 19:33:04 +100025struct of_serial_info {
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040026 struct clk *clk;
Ishizaki Koue34b9c92007-05-31 19:33:04 +100027 int type;
28 int line;
29};
30
Dan Williamsbf03f652012-04-10 14:10:53 -070031#ifdef CONFIG_ARCH_TEGRA
32void tegra_serial_handle_break(struct uart_port *p)
33{
34 unsigned int status, tmout = 10000;
35
36 do {
37 status = p->serial_in(p, UART_LSR);
38 if (status & (UART_LSR_FIFOE | UART_LSR_BRK_ERROR_BITS))
39 status = p->serial_in(p, UART_RX);
40 else
41 break;
42 if (--tmout == 0)
43 break;
44 udelay(1);
45 } while (1);
46}
Stephen Warrenf26402e2013-01-31 12:01:53 -070047#else
48static inline void tegra_serial_handle_break(struct uart_port *port)
49{
50}
Dan Williamsbf03f652012-04-10 14:10:53 -070051#endif
52
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010053/*
54 * Fill a struct uart_port for a given device node
55 */
Bill Pemberton9671f092012-11-19 13:21:50 -050056static int of_platform_serial_setup(struct platform_device *ofdev,
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040057 int type, struct uart_port *port,
58 struct of_serial_info *info)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010059{
60 struct resource resource;
Grant Likely61c7a082010-04-13 16:12:29 -070061 struct device_node *np = ofdev->dev.of_node;
Grant Likelyb84e7732011-06-30 12:39:12 -060062 u32 clk, spd, prop;
63 int ret;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010064
65 memset(port, 0, sizeof *port);
Grant Likelyb84e7732011-06-30 12:39:12 -060066 if (of_property_read_u32(np, "clock-frequency", &clk)) {
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040067
68 /* Get clk rate through clk driver if present */
69 info->clk = clk_get(&ofdev->dev, NULL);
Wei Yongjun76cc4382012-11-01 13:27:34 +080070 if (IS_ERR(info->clk)) {
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040071 dev_warn(&ofdev->dev,
72 "clk or clock-frequency not defined\n");
Wei Yongjun76cc4382012-11-01 13:27:34 +080073 return PTR_ERR(info->clk);
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040074 }
75
76 clk_prepare_enable(info->clk);
77 clk = clk_get_rate(info->clk);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010078 }
Grant Likelyb84e7732011-06-30 12:39:12 -060079 /* If current-speed was set, then try not to change it. */
80 if (of_property_read_u32(np, "current-speed", &spd) == 0)
81 port->custom_divisor = clk / (16 * spd);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010082
83 ret = of_address_to_resource(np, 0, &resource);
84 if (ret) {
85 dev_warn(&ofdev->dev, "invalid address\n");
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040086 goto out;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010087 }
88
89 spin_lock_init(&port->lock);
90 port->mapbase = resource.start;
John Linnb912b5e2008-04-03 10:22:19 +110091
92 /* Check for shifted address mapping */
Grant Likelyb84e7732011-06-30 12:39:12 -060093 if (of_property_read_u32(np, "reg-offset", &prop) == 0)
94 port->mapbase += prop;
John Linnb912b5e2008-04-03 10:22:19 +110095
96 /* Check for registers offset within the devices address range */
Grant Likelyb84e7732011-06-30 12:39:12 -060097 if (of_property_read_u32(np, "reg-shift", &prop) == 0)
98 port->regshift = prop;
John Linnb912b5e2008-04-03 10:22:19 +110099
Heikki Krogerus9f1ca062013-03-25 13:34:45 +0200100 /* Check for fifo size */
101 if (of_property_read_u32(np, "fifo-size", &prop) == 0)
102 port->fifosize = prop;
103
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100104 port->irq = irq_of_parse_and_map(np, 0);
105 port->iotype = UPIO_MEM;
Grant Likelyb84e7732011-06-30 12:39:12 -0600106 if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
107 switch (prop) {
Jamie Iles74237342011-06-27 13:32:34 +0100108 case 1:
109 port->iotype = UPIO_MEM;
110 break;
111 case 4:
112 port->iotype = UPIO_MEM32;
113 break;
114 default:
Grant Likelyb84e7732011-06-30 12:39:12 -0600115 dev_warn(&ofdev->dev, "unsupported reg-io-width (%d)\n",
116 prop);
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400117 ret = -EINVAL;
118 goto out;
Jamie Iles74237342011-06-27 13:32:34 +0100119 }
120 }
121
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100122 port->type = type;
Grant Likelyb84e7732011-06-30 12:39:12 -0600123 port->uartclk = clk;
David Gibsonabb4a232007-05-06 14:48:49 -0700124 port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP
Dave Mitchelleedacbf2009-06-09 13:39:47 +0000125 | UPF_FIXED_PORT | UPF_FIXED_TYPE;
Gabor Juhosfde8be22012-07-17 17:08:31 +0100126
127 if (of_find_property(np, "no-loopback-test", NULL))
128 port->flags |= UPF_SKIP_TEST;
129
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100130 port->dev = &ofdev->dev;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100131
Dan Williamsbf03f652012-04-10 14:10:53 -0700132 if (type == PORT_TEGRA)
133 port->handle_break = tegra_serial_handle_break;
134
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100135 return 0;
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400136out:
137 if (info->clk)
138 clk_disable_unprepare(info->clk);
139 return ret;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100140}
141
142/*
143 * Try to register a serial port
144 */
Grant Likelyb1608d62011-05-18 11:19:24 -0600145static struct of_device_id of_platform_serial_table[];
Bill Pemberton9671f092012-11-19 13:21:50 -0500146static int of_platform_serial_probe(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100147{
Grant Likelyb1608d62011-05-18 11:19:24 -0600148 const struct of_device_id *match;
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000149 struct of_serial_info *info;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100150 struct uart_port port;
151 int port_type;
152 int ret;
153
Grant Likelyb1608d62011-05-18 11:19:24 -0600154 match = of_match_device(of_platform_serial_table, &ofdev->dev);
155 if (!match)
Grant Likely793218d2011-02-22 21:10:26 -0700156 return -EINVAL;
157
Grant Likely61c7a082010-04-13 16:12:29 -0700158 if (of_find_property(ofdev->dev.of_node, "used-by-rtas", NULL))
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100159 return -EBUSY;
160
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000161 info = kmalloc(sizeof(*info), GFP_KERNEL);
162 if (info == NULL)
163 return -ENOMEM;
164
Grant Likelyb1608d62011-05-18 11:19:24 -0600165 port_type = (unsigned long)match->data;
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400166 ret = of_platform_serial_setup(ofdev, port_type, &port, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100167 if (ret)
168 goto out;
169
170 switch (port_type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100171#ifdef CONFIG_SERIAL_8250
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100172 case PORT_8250 ... PORT_MAX_8250:
Alan Coxce7240e2012-07-17 17:06:20 +0100173 {
174 /* For now the of bindings don't support the extra
175 8250 specific bits */
176 struct uart_8250_port port8250;
177 memset(&port8250, 0, sizeof(port8250));
178 port8250.port = port;
179 ret = serial8250_register_8250_port(&port8250);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100180 break;
Alan Coxce7240e2012-07-17 17:06:20 +0100181 }
Benjamin Krill5886188d2009-01-07 10:32:38 +0100182#endif
183#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
184 case PORT_NWPSERIAL:
185 ret = nwpserial_register_port(&port);
186 break;
187#endif
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100188 default:
189 /* need to add code for these */
Ishizaki Kou1558f9b2007-05-31 19:30:33 +1000190 case PORT_UNKNOWN:
191 dev_info(&ofdev->dev, "Unknown serial port found, ignored\n");
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100192 ret = -ENODEV;
193 break;
194 }
195 if (ret < 0)
196 goto out;
197
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000198 info->type = port_type;
199 info->line = ret;
Greg Kroah-Hartman3cf62a52009-05-04 12:40:54 -0700200 dev_set_drvdata(&ofdev->dev, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100201 return 0;
202out:
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000203 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100204 irq_dispose_mapping(port.irq);
205 return ret;
206}
207
208/*
209 * Release a line
210 */
Grant Likely2dc11582010-08-06 09:25:50 -0600211static int of_platform_serial_remove(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100212{
Greg Kroah-Hartman3cf62a52009-05-04 12:40:54 -0700213 struct of_serial_info *info = dev_get_drvdata(&ofdev->dev);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000214 switch (info->type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100215#ifdef CONFIG_SERIAL_8250
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000216 case PORT_8250 ... PORT_MAX_8250:
217 serial8250_unregister_port(info->line);
218 break;
Benjamin Krill5886188d2009-01-07 10:32:38 +0100219#endif
220#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
221 case PORT_NWPSERIAL:
222 nwpserial_unregister_port(info->line);
223 break;
224#endif
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000225 default:
226 /* need to add code for these */
227 break;
228 }
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400229
230 if (info->clk)
231 clk_disable_unprepare(info->clk);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000232 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100233 return 0;
234}
235
236/*
237 * A few common types, add more as needed.
238 */
Bill Pembertonde88b342012-11-19 13:24:32 -0500239static struct of_device_id of_platform_serial_table[] = {
Grant Likely8c6e9112011-02-22 19:12:21 -0700240 { .compatible = "ns8250", .data = (void *)PORT_8250, },
241 { .compatible = "ns16450", .data = (void *)PORT_16450, },
242 { .compatible = "ns16550a", .data = (void *)PORT_16550A, },
243 { .compatible = "ns16550", .data = (void *)PORT_16550, },
244 { .compatible = "ns16750", .data = (void *)PORT_16750, },
245 { .compatible = "ns16850", .data = (void *)PORT_16850, },
Grant Likely2e39e5b2011-07-05 23:42:36 -0600246 { .compatible = "nvidia,tegra20-uart", .data = (void *)PORT_TEGRA, },
Roland Stiggee4305f02012-06-11 21:57:14 +0200247 { .compatible = "nxp,lpc3220-uart", .data = (void *)PORT_LPC3220, },
Ley Foon Tane06c93c2013-03-07 10:28:37 +0800248 { .compatible = "altr,16550-FIFO32",
249 .data = (void *)PORT_ALTR_16550_F32, },
250 { .compatible = "altr,16550-FIFO64",
251 .data = (void *)PORT_ALTR_16550_F64, },
252 { .compatible = "altr,16550-FIFO128",
253 .data = (void *)PORT_ALTR_16550_F128, },
Benjamin Krill5886188d2009-01-07 10:32:38 +0100254#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
Grant Likely8c6e9112011-02-22 19:12:21 -0700255 { .compatible = "ibm,qpace-nwp-serial",
256 .data = (void *)PORT_NWPSERIAL, },
Benjamin Krill5886188d2009-01-07 10:32:38 +0100257#endif
Grant Likely8c6e9112011-02-22 19:12:21 -0700258 { .type = "serial", .data = (void *)PORT_UNKNOWN, },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100259 { /* end of list */ },
260};
261
Grant Likely793218d2011-02-22 21:10:26 -0700262static struct platform_driver of_platform_serial_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700263 .driver = {
264 .name = "of_serial",
265 .owner = THIS_MODULE,
266 .of_match_table = of_platform_serial_table,
267 },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100268 .probe = of_platform_serial_probe,
269 .remove = of_platform_serial_remove,
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100270};
271
Grant Likely940ab882011-10-05 11:29:49 -0600272module_platform_driver(of_platform_serial_driver);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100273
274MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
275MODULE_LICENSE("GPL");
276MODULE_DESCRIPTION("Serial Port driver for Open Firmware platform devices");