blob: fbb719c89a6114d801cfbf62922def461a7a6a47 [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;
John Linnb912b5e2008-04-03 10:22:19 +110092
93 /* Check for shifted address mapping */
Grant Likelyb84e7732011-06-30 12:39:12 -060094 if (of_property_read_u32(np, "reg-offset", &prop) == 0)
95 port->mapbase += prop;
John Linnb912b5e2008-04-03 10:22:19 +110096
97 /* Check for registers offset within the devices address range */
Grant Likelyb84e7732011-06-30 12:39:12 -060098 if (of_property_read_u32(np, "reg-shift", &prop) == 0)
99 port->regshift = prop;
John Linnb912b5e2008-04-03 10:22:19 +1100100
Heikki Krogerus9f1ca062013-03-25 13:34:45 +0200101 /* Check for fifo size */
102 if (of_property_read_u32(np, "fifo-size", &prop) == 0)
103 port->fifosize = prop;
104
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100105 port->irq = irq_of_parse_and_map(np, 0);
106 port->iotype = UPIO_MEM;
Grant Likelyb84e7732011-06-30 12:39:12 -0600107 if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
108 switch (prop) {
Jamie Iles74237342011-06-27 13:32:34 +0100109 case 1:
110 port->iotype = UPIO_MEM;
111 break;
112 case 4:
113 port->iotype = UPIO_MEM32;
114 break;
115 default:
Grant Likelyb84e7732011-06-30 12:39:12 -0600116 dev_warn(&ofdev->dev, "unsupported reg-io-width (%d)\n",
117 prop);
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400118 ret = -EINVAL;
119 goto out;
Jamie Iles74237342011-06-27 13:32:34 +0100120 }
121 }
122
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100123 port->type = type;
Grant Likelyb84e7732011-06-30 12:39:12 -0600124 port->uartclk = clk;
David Gibsonabb4a232007-05-06 14:48:49 -0700125 port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP
Dave Mitchelleedacbf2009-06-09 13:39:47 +0000126 | UPF_FIXED_PORT | UPF_FIXED_TYPE;
Gabor Juhosfde8be22012-07-17 17:08:31 +0100127
128 if (of_find_property(np, "no-loopback-test", NULL))
129 port->flags |= UPF_SKIP_TEST;
130
Rob Herring6d01bb92015-01-26 22:50:07 -0600131 ret = of_alias_get_id(np, "serial");
132 if (ret >= 0)
133 port->line = ret;
134
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100135 port->dev = &ofdev->dev;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100136
John Crispin9b8777e2014-10-16 21:48:21 +0200137 switch (type) {
138 case PORT_TEGRA:
Dan Williamsbf03f652012-04-10 14:10:53 -0700139 port->handle_break = tegra_serial_handle_break;
John Crispin9b8777e2014-10-16 21:48:21 +0200140 break;
141
142 case PORT_RT2880:
143 port->iotype = UPIO_AU;
144 break;
145 }
Dan Williamsbf03f652012-04-10 14:10:53 -0700146
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100147 return 0;
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400148out:
149 if (info->clk)
150 clk_disable_unprepare(info->clk);
151 return ret;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100152}
153
154/*
155 * Try to register a serial port
156 */
Grant Likelyb1608d62011-05-18 11:19:24 -0600157static struct of_device_id of_platform_serial_table[];
Bill Pemberton9671f092012-11-19 13:21:50 -0500158static int of_platform_serial_probe(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100159{
Grant Likelyb1608d62011-05-18 11:19:24 -0600160 const struct of_device_id *match;
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000161 struct of_serial_info *info;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100162 struct uart_port port;
163 int port_type;
164 int ret;
165
Grant Likelyb1608d62011-05-18 11:19:24 -0600166 match = of_match_device(of_platform_serial_table, &ofdev->dev);
167 if (!match)
Grant Likely793218d2011-02-22 21:10:26 -0700168 return -EINVAL;
169
Grant Likely61c7a082010-04-13 16:12:29 -0700170 if (of_find_property(ofdev->dev.of_node, "used-by-rtas", NULL))
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100171 return -EBUSY;
172
Jingchang Lu7e12e672014-10-21 16:50:21 +0800173 info = kzalloc(sizeof(*info), GFP_KERNEL);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000174 if (info == NULL)
175 return -ENOMEM;
176
Grant Likelyb1608d62011-05-18 11:19:24 -0600177 port_type = (unsigned long)match->data;
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400178 ret = of_platform_serial_setup(ofdev, port_type, &port, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100179 if (ret)
180 goto out;
181
182 switch (port_type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100183#ifdef CONFIG_SERIAL_8250
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100184 case PORT_8250 ... PORT_MAX_8250:
Alan Coxce7240e2012-07-17 17:06:20 +0100185 {
Alan Coxce7240e2012-07-17 17:06:20 +0100186 struct uart_8250_port port8250;
187 memset(&port8250, 0, sizeof(port8250));
Stephen Chivers7fa21dd2014-05-14 08:04:39 +1000188 port.type = port_type;
Alan Coxce7240e2012-07-17 17:06:20 +0100189 port8250.port = port;
Heikki Krogerusb0b8c842013-03-25 15:51:15 +0200190
191 if (port.fifosize)
192 port8250.capabilities = UART_CAP_FIFO;
193
194 if (of_property_read_bool(ofdev->dev.of_node,
195 "auto-flow-control"))
196 port8250.capabilities |= UART_CAP_AFE;
197
Alan Coxce7240e2012-07-17 17:06:20 +0100198 ret = serial8250_register_8250_port(&port8250);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100199 break;
Alan Coxce7240e2012-07-17 17:06:20 +0100200 }
Benjamin Krill5886188d2009-01-07 10:32:38 +0100201#endif
202#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
203 case PORT_NWPSERIAL:
204 ret = nwpserial_register_port(&port);
205 break;
206#endif
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100207 default:
208 /* need to add code for these */
Ishizaki Kou1558f9b2007-05-31 19:30:33 +1000209 case PORT_UNKNOWN:
210 dev_info(&ofdev->dev, "Unknown serial port found, ignored\n");
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100211 ret = -ENODEV;
212 break;
213 }
214 if (ret < 0)
215 goto out;
216
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000217 info->type = port_type;
218 info->line = ret;
Jingoo Han696faed2013-05-23 19:39:36 +0900219 platform_set_drvdata(ofdev, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100220 return 0;
221out:
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000222 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100223 irq_dispose_mapping(port.irq);
224 return ret;
225}
226
227/*
228 * Release a line
229 */
Grant Likely2dc11582010-08-06 09:25:50 -0600230static int of_platform_serial_remove(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100231{
Jingoo Han696faed2013-05-23 19:39:36 +0900232 struct of_serial_info *info = platform_get_drvdata(ofdev);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000233 switch (info->type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100234#ifdef CONFIG_SERIAL_8250
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000235 case PORT_8250 ... PORT_MAX_8250:
236 serial8250_unregister_port(info->line);
237 break;
Benjamin Krill5886188d2009-01-07 10:32:38 +0100238#endif
239#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
240 case PORT_NWPSERIAL:
241 nwpserial_unregister_port(info->line);
242 break;
243#endif
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000244 default:
245 /* need to add code for these */
246 break;
247 }
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400248
249 if (info->clk)
250 clk_disable_unprepare(info->clk);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000251 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100252 return 0;
253}
254
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800255#ifdef CONFIG_PM_SLEEP
256#ifdef CONFIG_SERIAL_8250
257static void of_serial_suspend_8250(struct of_serial_info *info)
258{
259 struct uart_8250_port *port8250 = serial8250_get_port(info->line);
260 struct uart_port *port = &port8250->port;
261
262 serial8250_suspend_port(info->line);
263 if (info->clk && (!uart_console(port) || console_suspend_enabled))
264 clk_disable_unprepare(info->clk);
265}
266
267static void of_serial_resume_8250(struct of_serial_info *info)
268{
269 struct uart_8250_port *port8250 = serial8250_get_port(info->line);
270 struct uart_port *port = &port8250->port;
271
272 if (info->clk && (!uart_console(port) || console_suspend_enabled))
273 clk_prepare_enable(info->clk);
274
275 serial8250_resume_port(info->line);
276}
277#else
278static inline void of_serial_suspend_8250(struct of_serial_info *info)
279{
280}
281
282static inline void of_serial_resume_8250(struct of_serial_info *info)
283{
284}
285#endif
286
287static int of_serial_suspend(struct device *dev)
288{
289 struct of_serial_info *info = dev_get_drvdata(dev);
290
291 switch (info->type) {
292 case PORT_8250 ... PORT_MAX_8250:
293 of_serial_suspend_8250(info);
294 break;
295 default:
296 break;
297 }
298
299 return 0;
300}
301
302static int of_serial_resume(struct device *dev)
303{
304 struct of_serial_info *info = dev_get_drvdata(dev);
305
306 switch (info->type) {
307 case PORT_8250 ... PORT_MAX_8250:
308 of_serial_resume_8250(info);
309 break;
310 default:
311 break;
312 }
313
314 return 0;
315}
316#endif
317static SIMPLE_DEV_PM_OPS(of_serial_pm_ops, of_serial_suspend, of_serial_resume);
318
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100319/*
320 * A few common types, add more as needed.
321 */
Bill Pembertonde88b342012-11-19 13:24:32 -0500322static struct of_device_id of_platform_serial_table[] = {
Grant Likely8c6e9112011-02-22 19:12:21 -0700323 { .compatible = "ns8250", .data = (void *)PORT_8250, },
324 { .compatible = "ns16450", .data = (void *)PORT_16450, },
325 { .compatible = "ns16550a", .data = (void *)PORT_16550A, },
326 { .compatible = "ns16550", .data = (void *)PORT_16550, },
327 { .compatible = "ns16750", .data = (void *)PORT_16750, },
328 { .compatible = "ns16850", .data = (void *)PORT_16850, },
Grant Likely2e39e5b2011-07-05 23:42:36 -0600329 { .compatible = "nvidia,tegra20-uart", .data = (void *)PORT_TEGRA, },
Roland Stiggee4305f02012-06-11 21:57:14 +0200330 { .compatible = "nxp,lpc3220-uart", .data = (void *)PORT_LPC3220, },
John Crispin9b8777e2014-10-16 21:48:21 +0200331 { .compatible = "ralink,rt2880-uart", .data = (void *)PORT_RT2880, },
Ley Foon Tane06c93c2013-03-07 10:28:37 +0800332 { .compatible = "altr,16550-FIFO32",
333 .data = (void *)PORT_ALTR_16550_F32, },
334 { .compatible = "altr,16550-FIFO64",
335 .data = (void *)PORT_ALTR_16550_F64, },
336 { .compatible = "altr,16550-FIFO128",
337 .data = (void *)PORT_ALTR_16550_F128, },
Rob Herring6ad991b2015-01-26 22:50:08 -0600338 { .compatible = "mrvl,mmp-uart",
339 .data = (void *)PORT_XSCALE, },
340 { .compatible = "mrvl,pxa-uart",
341 .data = (void *)PORT_XSCALE, },
Benjamin Krill5886188d2009-01-07 10:32:38 +0100342#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
Grant Likely8c6e9112011-02-22 19:12:21 -0700343 { .compatible = "ibm,qpace-nwp-serial",
344 .data = (void *)PORT_NWPSERIAL, },
Benjamin Krill5886188d2009-01-07 10:32:38 +0100345#endif
Grant Likely8c6e9112011-02-22 19:12:21 -0700346 { .type = "serial", .data = (void *)PORT_UNKNOWN, },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100347 { /* end of list */ },
348};
349
Grant Likely793218d2011-02-22 21:10:26 -0700350static struct platform_driver of_platform_serial_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700351 .driver = {
352 .name = "of_serial",
Grant Likely40182942010-04-13 16:13:02 -0700353 .of_match_table = of_platform_serial_table,
354 },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100355 .probe = of_platform_serial_probe,
356 .remove = of_platform_serial_remove,
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100357};
358
Grant Likely940ab882011-10-05 11:29:49 -0600359module_platform_driver(of_platform_serial_driver);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100360
361MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
362MODULE_LICENSE("GPL");
363MODULE_DESCRIPTION("Serial Port driver for Open Firmware platform devices");