blob: f89dfde934a3257ca9834342bb4fc806ae69e8c9 [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>
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040021#include <linux/clk.h>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010022
Peter Ujfalusic93a5992015-12-18 15:00:49 +020023#include "8250.h"
Heikki Krogerusb0b8c842013-03-25 15:51:15 +020024
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
Thierry Reding28264eb2016-04-28 14:47:24 +020032static void tegra_serial_handle_break(struct uart_port *p)
Dan Williamsbf03f652012-04-10 14:10:53 -070033{
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 */
Masahiro Yamada3a63d222015-05-25 14:57:43 +090069 info->clk = devm_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
Masahiro Yamada6f0c3092015-05-25 15:03:32 +090076 ret = clk_prepare_enable(info->clk);
77 if (ret < 0)
78 return ret;
79
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040080 clk = clk_get_rate(info->clk);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010081 }
Grant Likelyb84e7732011-06-30 12:39:12 -060082 /* If current-speed was set, then try not to change it. */
83 if (of_property_read_u32(np, "current-speed", &spd) == 0)
84 port->custom_divisor = clk / (16 * spd);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010085
86 ret = of_address_to_resource(np, 0, &resource);
87 if (ret) {
88 dev_warn(&ofdev->dev, "invalid address\n");
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040089 goto out;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010090 }
91
92 spin_lock_init(&port->lock);
93 port->mapbase = resource.start;
Mans Rullgard07876912015-03-08 14:30:05 +000094 port->mapsize = resource_size(&resource);
John Linnb912b5e2008-04-03 10:22:19 +110095
96 /* Check for shifted address mapping */
Grant Likelyb84e7732011-06-30 12:39:12 -060097 if (of_property_read_u32(np, "reg-offset", &prop) == 0)
98 port->mapbase += prop;
John Linnb912b5e2008-04-03 10:22:19 +110099
Lubomir Rintel0cfe1162019-02-24 13:00:53 +0100100 /* Compatibility with the deprecated pxa driver and 8250_pxa drivers. */
101 if (of_device_is_compatible(np, "mrvl,mmp-uart"))
102 port->regshift = 2;
103
John Linnb912b5e2008-04-03 10:22:19 +1100104 /* Check for registers offset within the devices address range */
Grant Likelyb84e7732011-06-30 12:39:12 -0600105 if (of_property_read_u32(np, "reg-shift", &prop) == 0)
106 port->regshift = prop;
John Linnb912b5e2008-04-03 10:22:19 +1100107
Heikki Krogerus9f1ca062013-03-25 13:34:45 +0200108 /* Check for fifo size */
109 if (of_property_read_u32(np, "fifo-size", &prop) == 0)
110 port->fifosize = prop;
111
Lucas Stach3239fd32014-12-05 20:21:57 +0100112 /* Check for a fixed line number */
113 ret = of_alias_get_id(np, "serial");
114 if (ret >= 0)
115 port->line = ret;
116
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100117 port->irq = irq_of_parse_and_map(np, 0);
118 port->iotype = UPIO_MEM;
Grant Likelyb84e7732011-06-30 12:39:12 -0600119 if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
120 switch (prop) {
Jamie Iles74237342011-06-27 13:32:34 +0100121 case 1:
122 port->iotype = UPIO_MEM;
123 break;
Masahiro Yamadabd94c402015-10-28 12:46:05 +0900124 case 2:
125 port->iotype = UPIO_MEM16;
126 break;
Jamie Iles74237342011-06-27 13:32:34 +0100127 case 4:
Kevin Cernekeeebc5e202015-04-09 13:05:18 -0700128 port->iotype = of_device_is_big_endian(np) ?
129 UPIO_MEM32BE : UPIO_MEM32;
Jamie Iles74237342011-06-27 13:32:34 +0100130 break;
131 default:
Grant Likelyb84e7732011-06-30 12:39:12 -0600132 dev_warn(&ofdev->dev, "unsupported reg-io-width (%d)\n",
133 prop);
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400134 ret = -EINVAL;
135 goto out;
Jamie Iles74237342011-06-27 13:32:34 +0100136 }
137 }
138
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100139 port->type = type;
Grant Likelyb84e7732011-06-30 12:39:12 -0600140 port->uartclk = clk;
David Gibsonabb4a232007-05-06 14:48:49 -0700141 port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP
Dave Mitchelleedacbf2009-06-09 13:39:47 +0000142 | UPF_FIXED_PORT | UPF_FIXED_TYPE;
Gabor Juhosfde8be22012-07-17 17:08:31 +0100143
144 if (of_find_property(np, "no-loopback-test", NULL))
145 port->flags |= UPF_SKIP_TEST;
146
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100147 port->dev = &ofdev->dev;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100148
John Crispin9b8777e2014-10-16 21:48:21 +0200149 switch (type) {
150 case PORT_TEGRA:
Dan Williamsbf03f652012-04-10 14:10:53 -0700151 port->handle_break = tegra_serial_handle_break;
John Crispin9b8777e2014-10-16 21:48:21 +0200152 break;
153
154 case PORT_RT2880:
155 port->iotype = UPIO_AU;
156 break;
157 }
Dan Williamsbf03f652012-04-10 14:10:53 -0700158
Scott Woodd43b54d2015-10-07 17:31:21 -0500159 if (IS_ENABLED(CONFIG_SERIAL_8250_FSL) &&
160 (of_device_is_compatible(np, "fsl,ns16550") ||
161 of_device_is_compatible(np, "fsl,16550-FIFO64")))
162 port->handle_irq = fsl8250_handle_irq;
163
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100164 return 0;
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400165out:
166 if (info->clk)
167 clk_disable_unprepare(info->clk);
168 return ret;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100169}
170
171/*
172 * Try to register a serial port
173 */
Fabian Fredericked0bb232015-03-16 20:17:11 +0100174static const struct of_device_id of_platform_serial_table[];
Bill Pemberton9671f092012-11-19 13:21:50 -0500175static int of_platform_serial_probe(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100176{
Grant Likelyb1608d62011-05-18 11:19:24 -0600177 const struct of_device_id *match;
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000178 struct of_serial_info *info;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100179 struct uart_port port;
180 int port_type;
181 int ret;
182
Grant Likelyb1608d62011-05-18 11:19:24 -0600183 match = of_match_device(of_platform_serial_table, &ofdev->dev);
184 if (!match)
Grant Likely793218d2011-02-22 21:10:26 -0700185 return -EINVAL;
186
Grant Likely61c7a082010-04-13 16:12:29 -0700187 if (of_find_property(ofdev->dev.of_node, "used-by-rtas", NULL))
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100188 return -EBUSY;
189
Jingchang Lu7e12e672014-10-21 16:50:21 +0800190 info = kzalloc(sizeof(*info), GFP_KERNEL);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000191 if (info == NULL)
192 return -ENOMEM;
193
Grant Likelyb1608d62011-05-18 11:19:24 -0600194 port_type = (unsigned long)match->data;
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400195 ret = of_platform_serial_setup(ofdev, port_type, &port, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100196 if (ret)
197 goto out;
198
199 switch (port_type) {
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100200 case PORT_8250 ... PORT_MAX_8250:
Alan Coxce7240e2012-07-17 17:06:20 +0100201 {
Thor Thayerffea0432016-09-22 14:56:15 -0500202 u32 tx_threshold;
Alan Coxce7240e2012-07-17 17:06:20 +0100203 struct uart_8250_port port8250;
204 memset(&port8250, 0, sizeof(port8250));
205 port8250.port = port;
Heikki Krogerusb0b8c842013-03-25 15:51:15 +0200206
207 if (port.fifosize)
208 port8250.capabilities = UART_CAP_FIFO;
209
Thor Thayerffea0432016-09-22 14:56:15 -0500210 /* Check for TX FIFO threshold & set tx_loadsz */
211 if ((of_property_read_u32(ofdev->dev.of_node, "tx-threshold",
212 &tx_threshold) == 0) &&
213 (tx_threshold < port.fifosize))
214 port8250.tx_loadsz = port.fifosize - tx_threshold;
215
Heikki Krogerusb0b8c842013-03-25 15:51:15 +0200216 if (of_property_read_bool(ofdev->dev.of_node,
217 "auto-flow-control"))
218 port8250.capabilities |= UART_CAP_AFE;
219
Alan Coxce7240e2012-07-17 17:06:20 +0100220 ret = serial8250_register_8250_port(&port8250);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100221 break;
Alan Coxce7240e2012-07-17 17:06:20 +0100222 }
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100223 default:
224 /* need to add code for these */
Ishizaki Kou1558f9b2007-05-31 19:30:33 +1000225 case PORT_UNKNOWN:
226 dev_info(&ofdev->dev, "Unknown serial port found, ignored\n");
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100227 ret = -ENODEV;
228 break;
229 }
230 if (ret < 0)
231 goto out;
232
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000233 info->type = port_type;
234 info->line = ret;
Jingoo Han696faed2013-05-23 19:39:36 +0900235 platform_set_drvdata(ofdev, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100236 return 0;
237out:
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000238 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100239 irq_dispose_mapping(port.irq);
240 return ret;
241}
242
243/*
244 * Release a line
245 */
Grant Likely2dc11582010-08-06 09:25:50 -0600246static int of_platform_serial_remove(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100247{
Jingoo Han696faed2013-05-23 19:39:36 +0900248 struct of_serial_info *info = platform_get_drvdata(ofdev);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000249 switch (info->type) {
250 case PORT_8250 ... PORT_MAX_8250:
251 serial8250_unregister_port(info->line);
252 break;
253 default:
254 /* need to add code for these */
255 break;
256 }
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400257
258 if (info->clk)
259 clk_disable_unprepare(info->clk);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000260 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100261 return 0;
262}
263
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800264#ifdef CONFIG_PM_SLEEP
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800265static void of_serial_suspend_8250(struct of_serial_info *info)
266{
267 struct uart_8250_port *port8250 = serial8250_get_port(info->line);
268 struct uart_port *port = &port8250->port;
269
270 serial8250_suspend_port(info->line);
271 if (info->clk && (!uart_console(port) || console_suspend_enabled))
272 clk_disable_unprepare(info->clk);
273}
274
275static void of_serial_resume_8250(struct of_serial_info *info)
276{
277 struct uart_8250_port *port8250 = serial8250_get_port(info->line);
278 struct uart_port *port = &port8250->port;
279
280 if (info->clk && (!uart_console(port) || console_suspend_enabled))
281 clk_prepare_enable(info->clk);
282
283 serial8250_resume_port(info->line);
284}
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800285
286static int of_serial_suspend(struct device *dev)
287{
288 struct of_serial_info *info = dev_get_drvdata(dev);
289
290 switch (info->type) {
291 case PORT_8250 ... PORT_MAX_8250:
292 of_serial_suspend_8250(info);
293 break;
294 default:
295 break;
296 }
297
298 return 0;
299}
300
301static int of_serial_resume(struct device *dev)
302{
303 struct of_serial_info *info = dev_get_drvdata(dev);
304
305 switch (info->type) {
306 case PORT_8250 ... PORT_MAX_8250:
307 of_serial_resume_8250(info);
308 break;
309 default:
310 break;
311 }
312
313 return 0;
314}
315#endif
316static SIMPLE_DEV_PM_OPS(of_serial_pm_ops, of_serial_suspend, of_serial_resume);
317
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100318/*
319 * A few common types, add more as needed.
320 */
Fabian Fredericked0bb232015-03-16 20:17:11 +0100321static const struct of_device_id of_platform_serial_table[] = {
Grant Likely8c6e9112011-02-22 19:12:21 -0700322 { .compatible = "ns8250", .data = (void *)PORT_8250, },
323 { .compatible = "ns16450", .data = (void *)PORT_16450, },
324 { .compatible = "ns16550a", .data = (void *)PORT_16550A, },
325 { .compatible = "ns16550", .data = (void *)PORT_16550, },
326 { .compatible = "ns16750", .data = (void *)PORT_16750, },
327 { .compatible = "ns16850", .data = (void *)PORT_16850, },
Grant Likely2e39e5b2011-07-05 23:42:36 -0600328 { .compatible = "nvidia,tegra20-uart", .data = (void *)PORT_TEGRA, },
Roland Stiggee4305f02012-06-11 21:57:14 +0200329 { .compatible = "nxp,lpc3220-uart", .data = (void *)PORT_LPC3220, },
John Crispin9b8777e2014-10-16 21:48:21 +0200330 { .compatible = "ralink,rt2880-uart", .data = (void *)PORT_RT2880, },
Ley Foon Tane06c93c2013-03-07 10:28:37 +0800331 { .compatible = "altr,16550-FIFO32",
332 .data = (void *)PORT_ALTR_16550_F32, },
333 { .compatible = "altr,16550-FIFO64",
334 .data = (void *)PORT_ALTR_16550_F64, },
335 { .compatible = "altr,16550-FIFO128",
336 .data = (void *)PORT_ALTR_16550_F128, },
Rob Herring6ad991b2015-01-26 22:50:08 -0600337 { .compatible = "mrvl,mmp-uart",
338 .data = (void *)PORT_XSCALE, },
339 { .compatible = "mrvl,pxa-uart",
340 .data = (void *)PORT_XSCALE, },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100341 { /* end of list */ },
342};
Luis de Bethencourt8d58db12015-09-18 20:03:43 +0200343MODULE_DEVICE_TABLE(of, of_platform_serial_table);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100344
Grant Likely793218d2011-02-22 21:10:26 -0700345static struct platform_driver of_platform_serial_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700346 .driver = {
347 .name = "of_serial",
Grant Likely40182942010-04-13 16:13:02 -0700348 .of_match_table = of_platform_serial_table,
Wang Dongsheng434ba162016-01-21 15:59:53 +0800349 .pm = &of_serial_pm_ops,
Grant Likely40182942010-04-13 16:13:02 -0700350 },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100351 .probe = of_platform_serial_probe,
352 .remove = of_platform_serial_remove,
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100353};
354
Grant Likely940ab882011-10-05 11:29:49 -0600355module_platform_driver(of_platform_serial_driver);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100356
357MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
358MODULE_LICENSE("GPL");
359MODULE_DESCRIPTION("Serial Port driver for Open Firmware platform devices");