blob: 137381e649e5bec1c2ac5bf616bc9da6e813772a [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 */
Jingchang Lu8ad3b132014-11-11 15:09:05 +080012#include <linux/console.h>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010013#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>
Dan Williamsbf03f652012-04-10 14:10:53 -070017#include <linux/serial_reg.h>
Grant Likelyf1ca09b2010-08-16 23:44:49 -060018#include <linux/of_address.h>
Rob Herring73930a82010-11-17 17:50:23 -060019#include <linux/of_irq.h>
Stephen Rothwellc401b042008-05-23 16:32:54 +100020#include <linux/of_platform.h>
Benjamin Krill5886188d2009-01-07 10:32:38 +010021#include <linux/nwpserial.h>
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040022#include <linux/clk.h>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010023
Heikki Krogerusb0b8c842013-03-25 15:51:15 +020024#include "8250/8250.h"
25
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}
Stephen Warrenf26402e2013-01-31 12:01:53 -070048#else
49static inline void tegra_serial_handle_break(struct uart_port *port)
50{
51}
Dan Williamsbf03f652012-04-10 14:10:53 -070052#endif
53
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010054/*
55 * Fill a struct uart_port for a given device node
56 */
Bill Pemberton9671f092012-11-19 13:21:50 -050057static int of_platform_serial_setup(struct platform_device *ofdev,
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040058 int type, struct uart_port *port,
59 struct of_serial_info *info)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010060{
61 struct resource resource;
Grant Likely61c7a082010-04-13 16:12:29 -070062 struct device_node *np = ofdev->dev.of_node;
Grant Likelyb84e7732011-06-30 12:39:12 -060063 u32 clk, spd, prop;
64 int ret;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010065
66 memset(port, 0, sizeof *port);
Grant Likelyb84e7732011-06-30 12:39:12 -060067 if (of_property_read_u32(np, "clock-frequency", &clk)) {
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040068
69 /* Get clk rate through clk driver if present */
70 info->clk = clk_get(&ofdev->dev, NULL);
Wei Yongjun76cc4382012-11-01 13:27:34 +080071 if (IS_ERR(info->clk)) {
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040072 dev_warn(&ofdev->dev,
73 "clk or clock-frequency not defined\n");
Wei Yongjun76cc4382012-11-01 13:27:34 +080074 return PTR_ERR(info->clk);
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040075 }
76
77 clk_prepare_enable(info->clk);
78 clk = clk_get_rate(info->clk);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010079 }
Grant Likelyb84e7732011-06-30 12:39:12 -060080 /* If current-speed was set, then try not to change it. */
81 if (of_property_read_u32(np, "current-speed", &spd) == 0)
82 port->custom_divisor = clk / (16 * spd);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010083
84 ret = of_address_to_resource(np, 0, &resource);
85 if (ret) {
86 dev_warn(&ofdev->dev, "invalid address\n");
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040087 goto out;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010088 }
89
90 spin_lock_init(&port->lock);
91 port->mapbase = resource.start;
Mans Rullgard07876912015-03-08 14:30:05 +000092 port->mapsize = resource_size(&resource);
John Linnb912b5e2008-04-03 10:22:19 +110093
94 /* Check for shifted address mapping */
Grant Likelyb84e7732011-06-30 12:39:12 -060095 if (of_property_read_u32(np, "reg-offset", &prop) == 0)
96 port->mapbase += prop;
John Linnb912b5e2008-04-03 10:22:19 +110097
98 /* Check for registers offset within the devices address range */
Grant Likelyb84e7732011-06-30 12:39:12 -060099 if (of_property_read_u32(np, "reg-shift", &prop) == 0)
100 port->regshift = prop;
John Linnb912b5e2008-04-03 10:22:19 +1100101
Heikki Krogerus9f1ca062013-03-25 13:34:45 +0200102 /* Check for fifo size */
103 if (of_property_read_u32(np, "fifo-size", &prop) == 0)
104 port->fifosize = prop;
105
Lucas Stach3239fd32014-12-05 20:21:57 +0100106 /* Check for a fixed line number */
107 ret = of_alias_get_id(np, "serial");
108 if (ret >= 0)
109 port->line = ret;
110
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100111 port->irq = irq_of_parse_and_map(np, 0);
112 port->iotype = UPIO_MEM;
Grant Likelyb84e7732011-06-30 12:39:12 -0600113 if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
114 switch (prop) {
Jamie Iles74237342011-06-27 13:32:34 +0100115 case 1:
116 port->iotype = UPIO_MEM;
117 break;
118 case 4:
Kevin Cernekeeebc5e202015-04-09 13:05:18 -0700119 port->iotype = of_device_is_big_endian(np) ?
120 UPIO_MEM32BE : UPIO_MEM32;
Jamie Iles74237342011-06-27 13:32:34 +0100121 break;
122 default:
Grant Likelyb84e7732011-06-30 12:39:12 -0600123 dev_warn(&ofdev->dev, "unsupported reg-io-width (%d)\n",
124 prop);
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400125 ret = -EINVAL;
126 goto out;
Jamie Iles74237342011-06-27 13:32:34 +0100127 }
128 }
129
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100130 port->type = type;
Grant Likelyb84e7732011-06-30 12:39:12 -0600131 port->uartclk = clk;
David Gibsonabb4a232007-05-06 14:48:49 -0700132 port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP
Dave Mitchelleedacbf2009-06-09 13:39:47 +0000133 | UPF_FIXED_PORT | UPF_FIXED_TYPE;
Gabor Juhosfde8be22012-07-17 17:08:31 +0100134
135 if (of_find_property(np, "no-loopback-test", NULL))
136 port->flags |= UPF_SKIP_TEST;
137
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100138 port->dev = &ofdev->dev;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100139
John Crispin9b8777e2014-10-16 21:48:21 +0200140 switch (type) {
141 case PORT_TEGRA:
Dan Williamsbf03f652012-04-10 14:10:53 -0700142 port->handle_break = tegra_serial_handle_break;
John Crispin9b8777e2014-10-16 21:48:21 +0200143 break;
144
145 case PORT_RT2880:
146 port->iotype = UPIO_AU;
147 break;
148 }
Dan Williamsbf03f652012-04-10 14:10:53 -0700149
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100150 return 0;
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400151out:
152 if (info->clk)
153 clk_disable_unprepare(info->clk);
154 return ret;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100155}
156
157/*
158 * Try to register a serial port
159 */
Fabian Fredericked0bb232015-03-16 20:17:11 +0100160static const struct of_device_id of_platform_serial_table[];
Bill Pemberton9671f092012-11-19 13:21:50 -0500161static int of_platform_serial_probe(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100162{
Grant Likelyb1608d62011-05-18 11:19:24 -0600163 const struct of_device_id *match;
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000164 struct of_serial_info *info;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100165 struct uart_port port;
166 int port_type;
167 int ret;
168
Grant Likelyb1608d62011-05-18 11:19:24 -0600169 match = of_match_device(of_platform_serial_table, &ofdev->dev);
170 if (!match)
Grant Likely793218d2011-02-22 21:10:26 -0700171 return -EINVAL;
172
Grant Likely61c7a082010-04-13 16:12:29 -0700173 if (of_find_property(ofdev->dev.of_node, "used-by-rtas", NULL))
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100174 return -EBUSY;
175
Jingchang Lu7e12e672014-10-21 16:50:21 +0800176 info = kzalloc(sizeof(*info), GFP_KERNEL);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000177 if (info == NULL)
178 return -ENOMEM;
179
Grant Likelyb1608d62011-05-18 11:19:24 -0600180 port_type = (unsigned long)match->data;
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400181 ret = of_platform_serial_setup(ofdev, port_type, &port, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100182 if (ret)
183 goto out;
184
185 switch (port_type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100186#ifdef CONFIG_SERIAL_8250
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100187 case PORT_8250 ... PORT_MAX_8250:
Alan Coxce7240e2012-07-17 17:06:20 +0100188 {
Alan Coxce7240e2012-07-17 17:06:20 +0100189 struct uart_8250_port port8250;
190 memset(&port8250, 0, sizeof(port8250));
Stephen Chivers7fa21dd2014-05-14 08:04:39 +1000191 port.type = port_type;
Alan Coxce7240e2012-07-17 17:06:20 +0100192 port8250.port = port;
Heikki Krogerusb0b8c842013-03-25 15:51:15 +0200193
194 if (port.fifosize)
195 port8250.capabilities = UART_CAP_FIFO;
196
197 if (of_property_read_bool(ofdev->dev.of_node,
198 "auto-flow-control"))
199 port8250.capabilities |= UART_CAP_AFE;
200
Alan Coxce7240e2012-07-17 17:06:20 +0100201 ret = serial8250_register_8250_port(&port8250);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100202 break;
Alan Coxce7240e2012-07-17 17:06:20 +0100203 }
Benjamin Krill5886188d2009-01-07 10:32:38 +0100204#endif
205#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
206 case PORT_NWPSERIAL:
207 ret = nwpserial_register_port(&port);
208 break;
209#endif
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100210 default:
211 /* need to add code for these */
Ishizaki Kou1558f9b2007-05-31 19:30:33 +1000212 case PORT_UNKNOWN:
213 dev_info(&ofdev->dev, "Unknown serial port found, ignored\n");
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100214 ret = -ENODEV;
215 break;
216 }
217 if (ret < 0)
218 goto out;
219
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000220 info->type = port_type;
221 info->line = ret;
Jingoo Han696faed2013-05-23 19:39:36 +0900222 platform_set_drvdata(ofdev, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100223 return 0;
224out:
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000225 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100226 irq_dispose_mapping(port.irq);
227 return ret;
228}
229
230/*
231 * Release a line
232 */
Grant Likely2dc11582010-08-06 09:25:50 -0600233static int of_platform_serial_remove(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100234{
Jingoo Han696faed2013-05-23 19:39:36 +0900235 struct of_serial_info *info = platform_get_drvdata(ofdev);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000236 switch (info->type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100237#ifdef CONFIG_SERIAL_8250
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000238 case PORT_8250 ... PORT_MAX_8250:
239 serial8250_unregister_port(info->line);
240 break;
Benjamin Krill5886188d2009-01-07 10:32:38 +0100241#endif
242#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
243 case PORT_NWPSERIAL:
244 nwpserial_unregister_port(info->line);
245 break;
246#endif
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000247 default:
248 /* need to add code for these */
249 break;
250 }
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400251
252 if (info->clk)
253 clk_disable_unprepare(info->clk);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000254 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100255 return 0;
256}
257
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800258#ifdef CONFIG_PM_SLEEP
259#ifdef CONFIG_SERIAL_8250
260static void of_serial_suspend_8250(struct of_serial_info *info)
261{
262 struct uart_8250_port *port8250 = serial8250_get_port(info->line);
263 struct uart_port *port = &port8250->port;
264
265 serial8250_suspend_port(info->line);
266 if (info->clk && (!uart_console(port) || console_suspend_enabled))
267 clk_disable_unprepare(info->clk);
268}
269
270static void of_serial_resume_8250(struct of_serial_info *info)
271{
272 struct uart_8250_port *port8250 = serial8250_get_port(info->line);
273 struct uart_port *port = &port8250->port;
274
275 if (info->clk && (!uart_console(port) || console_suspend_enabled))
276 clk_prepare_enable(info->clk);
277
278 serial8250_resume_port(info->line);
279}
280#else
281static inline void of_serial_suspend_8250(struct of_serial_info *info)
282{
283}
284
285static inline void of_serial_resume_8250(struct of_serial_info *info)
286{
287}
288#endif
289
290static int of_serial_suspend(struct device *dev)
291{
292 struct of_serial_info *info = dev_get_drvdata(dev);
293
294 switch (info->type) {
295 case PORT_8250 ... PORT_MAX_8250:
296 of_serial_suspend_8250(info);
297 break;
298 default:
299 break;
300 }
301
302 return 0;
303}
304
305static int of_serial_resume(struct device *dev)
306{
307 struct of_serial_info *info = dev_get_drvdata(dev);
308
309 switch (info->type) {
310 case PORT_8250 ... PORT_MAX_8250:
311 of_serial_resume_8250(info);
312 break;
313 default:
314 break;
315 }
316
317 return 0;
318}
319#endif
320static SIMPLE_DEV_PM_OPS(of_serial_pm_ops, of_serial_suspend, of_serial_resume);
321
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100322/*
323 * A few common types, add more as needed.
324 */
Fabian Fredericked0bb232015-03-16 20:17:11 +0100325static const struct of_device_id of_platform_serial_table[] = {
Grant Likely8c6e9112011-02-22 19:12:21 -0700326 { .compatible = "ns8250", .data = (void *)PORT_8250, },
327 { .compatible = "ns16450", .data = (void *)PORT_16450, },
328 { .compatible = "ns16550a", .data = (void *)PORT_16550A, },
329 { .compatible = "ns16550", .data = (void *)PORT_16550, },
330 { .compatible = "ns16750", .data = (void *)PORT_16750, },
331 { .compatible = "ns16850", .data = (void *)PORT_16850, },
Grant Likely2e39e5b2011-07-05 23:42:36 -0600332 { .compatible = "nvidia,tegra20-uart", .data = (void *)PORT_TEGRA, },
Roland Stiggee4305f02012-06-11 21:57:14 +0200333 { .compatible = "nxp,lpc3220-uart", .data = (void *)PORT_LPC3220, },
John Crispin9b8777e2014-10-16 21:48:21 +0200334 { .compatible = "ralink,rt2880-uart", .data = (void *)PORT_RT2880, },
Ley Foon Tane06c93c2013-03-07 10:28:37 +0800335 { .compatible = "altr,16550-FIFO32",
336 .data = (void *)PORT_ALTR_16550_F32, },
337 { .compatible = "altr,16550-FIFO64",
338 .data = (void *)PORT_ALTR_16550_F64, },
339 { .compatible = "altr,16550-FIFO128",
340 .data = (void *)PORT_ALTR_16550_F128, },
Rob Herring6ad991b2015-01-26 22:50:08 -0600341 { .compatible = "mrvl,mmp-uart",
342 .data = (void *)PORT_XSCALE, },
343 { .compatible = "mrvl,pxa-uart",
344 .data = (void *)PORT_XSCALE, },
Benjamin Krill5886188d2009-01-07 10:32:38 +0100345#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
Grant Likely8c6e9112011-02-22 19:12:21 -0700346 { .compatible = "ibm,qpace-nwp-serial",
347 .data = (void *)PORT_NWPSERIAL, },
Benjamin Krill5886188d2009-01-07 10:32:38 +0100348#endif
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100349 { /* end of list */ },
350};
351
Grant Likely793218d2011-02-22 21:10:26 -0700352static struct platform_driver of_platform_serial_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700353 .driver = {
354 .name = "of_serial",
Grant Likely40182942010-04-13 16:13:02 -0700355 .of_match_table = of_platform_serial_table,
356 },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100357 .probe = of_platform_serial_probe,
358 .remove = of_platform_serial_remove,
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100359};
360
Grant Likely940ab882011-10-05 11:29:49 -0600361module_platform_driver(of_platform_serial_driver);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100362
363MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
364MODULE_LICENSE("GPL");
365MODULE_DESCRIPTION("Serial Port driver for Open Firmware platform devices");