blob: 17da8af36aa1a674b3d5a680540c3b2c5057c5de [file] [log] [blame]
Greg Kroah-Hartmane3b3d0f2017-11-06 18:11:51 +01001// SPDX-License-Identifier: GPL-2.0+
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +01002/*
3 * Serial Port driver for Open Firmware platform devices
4 *
5 * Copyright (C) 2006 Arnd Bergmann <arnd@arndb.de>, IBM Corp.
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +01006 */
Jingchang Lu8ad3b132014-11-11 15:09:05 +08007#include <linux/console.h>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +01008#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Dan Williamsbf03f652012-04-10 14:10:53 -070010#include <linux/delay.h>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010011#include <linux/serial_core.h>
Dan Williamsbf03f652012-04-10 14:10:53 -070012#include <linux/serial_reg.h>
Grant Likelyf1ca09b2010-08-16 23:44:49 -060013#include <linux/of_address.h>
Rob Herring73930a82010-11-17 17:50:23 -060014#include <linux/of_irq.h>
Stephen Rothwellc401b042008-05-23 16:32:54 +100015#include <linux/of_platform.h>
Franklin S Cooper Jra2d23eda2017-08-16 15:55:36 -050016#include <linux/pm_runtime.h>
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040017#include <linux/clk.h>
Joel Stanleye2860e12017-05-29 19:27:52 +093018#include <linux/reset.h>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010019
Peter Ujfalusic93a5992015-12-18 15:00:49 +020020#include "8250.h"
Heikki Krogerusb0b8c842013-03-25 15:51:15 +020021
Ishizaki Koue34b9c92007-05-31 19:33:04 +100022struct of_serial_info {
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040023 struct clk *clk;
Joel Stanleye2860e12017-05-29 19:27:52 +093024 struct reset_control *rst;
Ishizaki Koue34b9c92007-05-31 19:33:04 +100025 int type;
26 int line;
27};
28
Dan Williamsbf03f652012-04-10 14:10:53 -070029#ifdef CONFIG_ARCH_TEGRA
Thierry Reding28264eb62016-04-28 14:47:24 +020030static void tegra_serial_handle_break(struct uart_port *p)
Dan Williamsbf03f652012-04-10 14:10:53 -070031{
32 unsigned int status, tmout = 10000;
33
34 do {
35 status = p->serial_in(p, UART_LSR);
36 if (status & (UART_LSR_FIFOE | UART_LSR_BRK_ERROR_BITS))
37 status = p->serial_in(p, UART_RX);
38 else
39 break;
40 if (--tmout == 0)
41 break;
42 udelay(1);
43 } while (1);
44}
Stephen Warrenf26402e2013-01-31 12:01:53 -070045#else
46static inline void tegra_serial_handle_break(struct uart_port *port)
47{
48}
Dan Williamsbf03f652012-04-10 14:10:53 -070049#endif
50
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010051/*
52 * Fill a struct uart_port for a given device node
53 */
Bill Pemberton9671f092012-11-19 13:21:50 -050054static int of_platform_serial_setup(struct platform_device *ofdev,
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040055 int type, struct uart_port *port,
56 struct of_serial_info *info)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010057{
58 struct resource resource;
Grant Likely61c7a082010-04-13 16:12:29 -070059 struct device_node *np = ofdev->dev.of_node;
Grant Likelyb84e7732011-06-30 12:39:12 -060060 u32 clk, spd, prop;
John Garrya27d93822018-08-30 17:08:50 +080061 int ret, irq;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010062
63 memset(port, 0, sizeof *port);
Franklin S Cooper Jra2d23eda2017-08-16 15:55:36 -050064
65 pm_runtime_enable(&ofdev->dev);
66 pm_runtime_get_sync(&ofdev->dev);
67
Grant Likelyb84e7732011-06-30 12:39:12 -060068 if (of_property_read_u32(np, "clock-frequency", &clk)) {
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040069
70 /* Get clk rate through clk driver if present */
Masahiro Yamada3a63d222015-05-25 14:57:43 +090071 info->clk = devm_clk_get(&ofdev->dev, NULL);
Wei Yongjun76cc4382012-11-01 13:27:34 +080072 if (IS_ERR(info->clk)) {
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040073 dev_warn(&ofdev->dev,
74 "clk or clock-frequency not defined\n");
Franklin S Cooper Jra2d23eda2017-08-16 15:55:36 -050075 ret = PTR_ERR(info->clk);
76 goto err_pmruntime;
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040077 }
78
Masahiro Yamada6f0c3092015-05-25 15:03:32 +090079 ret = clk_prepare_enable(info->clk);
80 if (ret < 0)
Franklin S Cooper Jra2d23eda2017-08-16 15:55:36 -050081 goto err_pmruntime;
Masahiro Yamada6f0c3092015-05-25 15:03:32 +090082
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -040083 clk = clk_get_rate(info->clk);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010084 }
Grant Likelyb84e7732011-06-30 12:39:12 -060085 /* If current-speed was set, then try not to change it. */
86 if (of_property_read_u32(np, "current-speed", &spd) == 0)
87 port->custom_divisor = clk / (16 * spd);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010088
89 ret = of_address_to_resource(np, 0, &resource);
90 if (ret) {
91 dev_warn(&ofdev->dev, "invalid address\n");
Alexey Khoroshilovfa9ba3ac2017-07-19 11:32:37 +030092 goto err_unprepare;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010093 }
94
John Garryaa959472018-04-27 18:36:06 +080095 port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_FIXED_PORT |
96 UPF_FIXED_TYPE;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010097 spin_lock_init(&port->lock);
John Linnb912b5e2008-04-03 10:22:19 +110098
John Garryaa959472018-04-27 18:36:06 +080099 if (resource_type(&resource) == IORESOURCE_IO) {
100 port->iotype = UPIO_PORT;
101 port->iobase = resource.start;
102 } else {
103 port->mapbase = resource.start;
104 port->mapsize = resource_size(&resource);
105
106 /* Check for shifted address mapping */
107 if (of_property_read_u32(np, "reg-offset", &prop) == 0)
108 port->mapbase += prop;
109
110 port->iotype = UPIO_MEM;
111 if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
112 switch (prop) {
113 case 1:
114 port->iotype = UPIO_MEM;
115 break;
116 case 2:
117 port->iotype = UPIO_MEM16;
118 break;
119 case 4:
120 port->iotype = of_device_is_big_endian(np) ?
121 UPIO_MEM32BE : UPIO_MEM32;
122 break;
123 default:
124 dev_warn(&ofdev->dev, "unsupported reg-io-width (%d)\n",
125 prop);
126 ret = -EINVAL;
Alexander Sverdlinb29330d822018-07-13 16:58:54 +0200127 goto err_unprepare;
John Garryaa959472018-04-27 18:36:06 +0800128 }
129 }
130 port->flags |= UPF_IOREMAP;
131 }
John Linnb912b5e2008-04-03 10:22:19 +1100132
133 /* Check for registers offset within the devices address range */
Grant Likelyb84e7732011-06-30 12:39:12 -0600134 if (of_property_read_u32(np, "reg-shift", &prop) == 0)
135 port->regshift = prop;
John Linnb912b5e2008-04-03 10:22:19 +1100136
Heikki Krogerus9f1ca062013-03-25 13:34:45 +0200137 /* Check for fifo size */
138 if (of_property_read_u32(np, "fifo-size", &prop) == 0)
139 port->fifosize = prop;
140
Lucas Stach3239fd32014-12-05 20:21:57 +0100141 /* Check for a fixed line number */
142 ret = of_alias_get_id(np, "serial");
143 if (ret >= 0)
144 port->line = ret;
145
John Garrya27d93822018-08-30 17:08:50 +0800146 irq = of_irq_get(np, 0);
147 if (irq < 0) {
148 if (irq == -EPROBE_DEFER) {
149 ret = -EPROBE_DEFER;
150 goto err_unprepare;
151 }
152 /* IRQ support not mandatory */
153 irq = 0;
Alexander Sverdlinc58caaa2018-07-13 17:01:19 +0200154 }
Jamie Iles74237342011-06-27 13:32:34 +0100155
John Garrya27d93822018-08-30 17:08:50 +0800156 port->irq = irq;
157
Joel Stanleye2860e12017-05-29 19:27:52 +0930158 info->rst = devm_reset_control_get_optional_shared(&ofdev->dev, NULL);
Masahiro Yamadab9820a32017-12-27 14:21:05 +0900159 if (IS_ERR(info->rst)) {
160 ret = PTR_ERR(info->rst);
John Garrya27d93822018-08-30 17:08:50 +0800161 goto err_unprepare;
Masahiro Yamadab9820a32017-12-27 14:21:05 +0900162 }
163
Joel Stanleye2860e12017-05-29 19:27:52 +0930164 ret = reset_control_deassert(info->rst);
165 if (ret)
John Garrya27d93822018-08-30 17:08:50 +0800166 goto err_unprepare;
Joel Stanleye2860e12017-05-29 19:27:52 +0930167
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100168 port->type = type;
Grant Likelyb84e7732011-06-30 12:39:12 -0600169 port->uartclk = clk;
Kurt Kanzenbach54e53b22018-03-16 12:31:58 +0100170 port->irqflags |= IRQF_SHARED;
Gabor Juhosfde8be22012-07-17 17:08:31 +0100171
Sergei Shtylyov5c98e9c2017-08-20 19:51:55 +0300172 if (of_property_read_bool(np, "no-loopback-test"))
Gabor Juhosfde8be22012-07-17 17:08:31 +0100173 port->flags |= UPF_SKIP_TEST;
174
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100175 port->dev = &ofdev->dev;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100176
John Crispin9b8777e2014-10-16 21:48:21 +0200177 switch (type) {
178 case PORT_TEGRA:
Dan Williamsbf03f652012-04-10 14:10:53 -0700179 port->handle_break = tegra_serial_handle_break;
John Crispin9b8777e2014-10-16 21:48:21 +0200180 break;
181
182 case PORT_RT2880:
183 port->iotype = UPIO_AU;
184 break;
185 }
Dan Williamsbf03f652012-04-10 14:10:53 -0700186
Scott Woodd43b54d2015-10-07 17:31:21 -0500187 if (IS_ENABLED(CONFIG_SERIAL_8250_FSL) &&
188 (of_device_is_compatible(np, "fsl,ns16550") ||
189 of_device_is_compatible(np, "fsl,16550-FIFO64")))
190 port->handle_irq = fsl8250_handle_irq;
191
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100192 return 0;
Alexey Khoroshilovfa9ba3ac2017-07-19 11:32:37 +0300193err_unprepare:
Franklin S Cooper Jra2d23eda2017-08-16 15:55:36 -0500194 clk_disable_unprepare(info->clk);
195err_pmruntime:
196 pm_runtime_put_sync(&ofdev->dev);
197 pm_runtime_disable(&ofdev->dev);
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400198 return ret;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100199}
200
201/*
202 * Try to register a serial port
203 */
Fabian Fredericked0bb232015-03-16 20:17:11 +0100204static const struct of_device_id of_platform_serial_table[];
Bill Pemberton9671f092012-11-19 13:21:50 -0500205static int of_platform_serial_probe(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100206{
Grant Likelyb1608d62011-05-18 11:19:24 -0600207 const struct of_device_id *match;
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000208 struct of_serial_info *info;
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100209 struct uart_8250_port port8250;
210 u32 tx_threshold;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100211 int port_type;
212 int ret;
213
Grant Likelyb1608d62011-05-18 11:19:24 -0600214 match = of_match_device(of_platform_serial_table, &ofdev->dev);
215 if (!match)
Grant Likely793218d2011-02-22 21:10:26 -0700216 return -EINVAL;
217
Sergei Shtylyov5c98e9c2017-08-20 19:51:55 +0300218 if (of_property_read_bool(ofdev->dev.of_node, "used-by-rtas"))
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100219 return -EBUSY;
220
Jingchang Lu7e12e672014-10-21 16:50:21 +0800221 info = kzalloc(sizeof(*info), GFP_KERNEL);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000222 if (info == NULL)
223 return -ENOMEM;
224
Grant Likelyb1608d62011-05-18 11:19:24 -0600225 port_type = (unsigned long)match->data;
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100226 memset(&port8250, 0, sizeof(port8250));
227 ret = of_platform_serial_setup(ofdev, port_type, &port8250.port, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100228 if (ret)
Alexey Khoroshilovfa9ba3ac2017-07-19 11:32:37 +0300229 goto err_free;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100230
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100231 if (port8250.port.fifosize)
232 port8250.capabilities = UART_CAP_FIFO;
Heikki Krogerusb0b8c842013-03-25 15:51:15 +0200233
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100234 /* Check for TX FIFO threshold & set tx_loadsz */
235 if ((of_property_read_u32(ofdev->dev.of_node, "tx-threshold",
236 &tx_threshold) == 0) &&
237 (tx_threshold < port8250.port.fifosize))
238 port8250.tx_loadsz = port8250.port.fifosize - tx_threshold;
Heikki Krogerusb0b8c842013-03-25 15:51:15 +0200239
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100240 if (of_property_read_bool(ofdev->dev.of_node, "auto-flow-control"))
241 port8250.capabilities |= UART_CAP_AFE;
Thor Thayerffea0432016-09-22 14:56:15 -0500242
Darwin Dingel6d7f6772018-12-10 11:29:09 +1300243 if (of_property_read_u32(ofdev->dev.of_node,
244 "overrun-throttle-ms",
245 &port8250.overrun_backoff_time_ms) != 0)
246 port8250.overrun_backoff_time_ms = 0;
247
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100248 ret = serial8250_register_8250_port(&port8250);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100249 if (ret < 0)
Alexey Khoroshilovfa9ba3ac2017-07-19 11:32:37 +0300250 goto err_dispose;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100251
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000252 info->type = port_type;
253 info->line = ret;
Jingoo Han696faed2013-05-23 19:39:36 +0900254 platform_set_drvdata(ofdev, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100255 return 0;
Alexey Khoroshilovfa9ba3ac2017-07-19 11:32:37 +0300256err_dispose:
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100257 irq_dispose_mapping(port8250.port.irq);
Franklin S Cooper Jra2d23eda2017-08-16 15:55:36 -0500258 pm_runtime_put_sync(&ofdev->dev);
259 pm_runtime_disable(&ofdev->dev);
260 clk_disable_unprepare(info->clk);
Alexey Khoroshilovfa9ba3ac2017-07-19 11:32:37 +0300261err_free:
262 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100263 return ret;
264}
265
266/*
267 * Release a line
268 */
Grant Likely2dc11582010-08-06 09:25:50 -0600269static int of_platform_serial_remove(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100270{
Jingoo Han696faed2013-05-23 19:39:36 +0900271 struct of_serial_info *info = platform_get_drvdata(ofdev);
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100272
273 serial8250_unregister_port(info->line);
Murali Karicheri0bbeb3c2012-10-22 11:58:01 -0400274
Joel Stanleye2860e12017-05-29 19:27:52 +0930275 reset_control_assert(info->rst);
Franklin S Cooper Jra2d23eda2017-08-16 15:55:36 -0500276 pm_runtime_put_sync(&ofdev->dev);
277 pm_runtime_disable(&ofdev->dev);
278 clk_disable_unprepare(info->clk);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000279 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100280 return 0;
281}
282
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800283#ifdef CONFIG_PM_SLEEP
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100284static int of_serial_suspend(struct device *dev)
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800285{
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100286 struct of_serial_info *info = dev_get_drvdata(dev);
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800287 struct uart_8250_port *port8250 = serial8250_get_port(info->line);
288 struct uart_port *port = &port8250->port;
289
290 serial8250_suspend_port(info->line);
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100291
Franklin S Cooper Jra2d23eda2017-08-16 15:55:36 -0500292 if (!uart_console(port) || console_suspend_enabled) {
293 pm_runtime_put_sync(dev);
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800294 clk_disable_unprepare(info->clk);
Franklin S Cooper Jra2d23eda2017-08-16 15:55:36 -0500295 }
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800296 return 0;
297}
298
299static int of_serial_resume(struct device *dev)
300{
301 struct of_serial_info *info = dev_get_drvdata(dev);
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100302 struct uart_8250_port *port8250 = serial8250_get_port(info->line);
303 struct uart_port *port = &port8250->port;
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800304
Franklin S Cooper Jra2d23eda2017-08-16 15:55:36 -0500305 if (!uart_console(port) || console_suspend_enabled) {
306 pm_runtime_get_sync(dev);
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100307 clk_prepare_enable(info->clk);
Franklin S Cooper Jra2d23eda2017-08-16 15:55:36 -0500308 }
Arnd Bergmannaa42db42017-01-25 23:19:01 +0100309
310 serial8250_resume_port(info->line);
Jingchang Lu8ad3b132014-11-11 15:09:05 +0800311
312 return 0;
313}
314#endif
315static SIMPLE_DEV_PM_OPS(of_serial_pm_ops, of_serial_suspend, of_serial_resume);
316
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100317/*
318 * A few common types, add more as needed.
319 */
Fabian Fredericked0bb232015-03-16 20:17:11 +0100320static const struct of_device_id of_platform_serial_table[] = {
Grant Likely8c6e9112011-02-22 19:12:21 -0700321 { .compatible = "ns8250", .data = (void *)PORT_8250, },
322 { .compatible = "ns16450", .data = (void *)PORT_16450, },
323 { .compatible = "ns16550a", .data = (void *)PORT_16550A, },
324 { .compatible = "ns16550", .data = (void *)PORT_16550, },
325 { .compatible = "ns16750", .data = (void *)PORT_16750, },
326 { .compatible = "ns16850", .data = (void *)PORT_16850, },
Grant Likely2e39e5b2011-07-05 23:42:36 -0600327 { .compatible = "nvidia,tegra20-uart", .data = (void *)PORT_TEGRA, },
Roland Stiggee4305f02012-06-11 21:57:14 +0200328 { .compatible = "nxp,lpc3220-uart", .data = (void *)PORT_LPC3220, },
John Crispin9b8777e2014-10-16 21:48:21 +0200329 { .compatible = "ralink,rt2880-uart", .data = (void *)PORT_RT2880, },
Linus Walleij3a503652019-01-27 02:04:04 +0100330 { .compatible = "intel,xscale-uart", .data = (void *)PORT_XSCALE, },
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, },
Sean Wang1c16ae62017-08-21 01:17:56 +0800337 { .compatible = "mediatek,mtk-btif",
338 .data = (void *)PORT_MTK_BTIF, },
Rob Herring6ad991b2015-01-26 22:50:08 -0600339 { .compatible = "mrvl,mmp-uart",
340 .data = (void *)PORT_XSCALE, },
David Lechnera2d6a982017-01-05 12:54:18 -0600341 { .compatible = "ti,da830-uart", .data = (void *)PORT_DA830, },
Joel Stanleyf597fbc2018-03-05 22:17:38 +1030342 { .compatible = "nuvoton,npcm750-uart", .data = (void *)PORT_NPCM, },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100343 { /* end of list */ },
344};
Luis de Bethencourt8d58db12015-09-18 20:03:43 +0200345MODULE_DEVICE_TABLE(of, of_platform_serial_table);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100346
Grant Likely793218d2011-02-22 21:10:26 -0700347static struct platform_driver of_platform_serial_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700348 .driver = {
349 .name = "of_serial",
Grant Likely40182942010-04-13 16:13:02 -0700350 .of_match_table = of_platform_serial_table,
Wang Dongsheng434ba162016-01-21 15:59:53 +0800351 .pm = &of_serial_pm_ops,
Grant Likely40182942010-04-13 16:13:02 -0700352 },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100353 .probe = of_platform_serial_probe,
354 .remove = of_platform_serial_remove,
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100355};
356
Grant Likely940ab882011-10-05 11:29:49 -0600357module_platform_driver(of_platform_serial_driver);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100358
359MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
360MODULE_LICENSE("GPL");
361MODULE_DESCRIPTION("Serial Port driver for Open Firmware platform devices");