]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/tty/serial/of_serial.c
tty: serial: of_serial: Fix module autoload for OF platform driver
[karo-tx-linux.git] / drivers / tty / serial / of_serial.c
1 /*
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/console.h>
13 #include <linux/module.h>
14 #include <linux/slab.h>
15 #include <linux/delay.h>
16 #include <linux/serial_core.h>
17 #include <linux/serial_reg.h>
18 #include <linux/of_address.h>
19 #include <linux/of_irq.h>
20 #include <linux/of_platform.h>
21 #include <linux/nwpserial.h>
22 #include <linux/clk.h>
23
24 #ifdef CONFIG_SERIAL_8250_MODULE
25 #define CONFIG_SERIAL_8250 CONFIG_SERIAL_8250_MODULE
26 #endif
27
28 #include "8250/8250.h"
29
30 struct of_serial_info {
31         struct clk *clk;
32         int type;
33         int line;
34 };
35
36 #ifdef CONFIG_ARCH_TEGRA
37 void tegra_serial_handle_break(struct uart_port *p)
38 {
39         unsigned int status, tmout = 10000;
40
41         do {
42                 status = p->serial_in(p, UART_LSR);
43                 if (status & (UART_LSR_FIFOE | UART_LSR_BRK_ERROR_BITS))
44                         status = p->serial_in(p, UART_RX);
45                 else
46                         break;
47                 if (--tmout == 0)
48                         break;
49                 udelay(1);
50         } while (1);
51 }
52 #else
53 static inline void tegra_serial_handle_break(struct uart_port *port)
54 {
55 }
56 #endif
57
58 /*
59  * Fill a struct uart_port for a given device node
60  */
61 static int of_platform_serial_setup(struct platform_device *ofdev,
62                         int type, struct uart_port *port,
63                         struct of_serial_info *info)
64 {
65         struct resource resource;
66         struct device_node *np = ofdev->dev.of_node;
67         u32 clk, spd, prop;
68         int ret;
69
70         memset(port, 0, sizeof *port);
71         if (of_property_read_u32(np, "clock-frequency", &clk)) {
72
73                 /* Get clk rate through clk driver if present */
74                 info->clk = devm_clk_get(&ofdev->dev, NULL);
75                 if (IS_ERR(info->clk)) {
76                         dev_warn(&ofdev->dev,
77                                 "clk or clock-frequency not defined\n");
78                         return PTR_ERR(info->clk);
79                 }
80
81                 ret = clk_prepare_enable(info->clk);
82                 if (ret < 0)
83                         return ret;
84
85                 clk = clk_get_rate(info->clk);
86         }
87         /* If current-speed was set, then try not to change it. */
88         if (of_property_read_u32(np, "current-speed", &spd) == 0)
89                 port->custom_divisor = clk / (16 * spd);
90
91         ret = of_address_to_resource(np, 0, &resource);
92         if (ret) {
93                 dev_warn(&ofdev->dev, "invalid address\n");
94                 goto out;
95         }
96
97         spin_lock_init(&port->lock);
98         port->mapbase = resource.start;
99         port->mapsize = resource_size(&resource);
100
101         /* Check for shifted address mapping */
102         if (of_property_read_u32(np, "reg-offset", &prop) == 0)
103                 port->mapbase += prop;
104
105         /* Check for registers offset within the devices address range */
106         if (of_property_read_u32(np, "reg-shift", &prop) == 0)
107                 port->regshift = prop;
108
109         /* Check for fifo size */
110         if (of_property_read_u32(np, "fifo-size", &prop) == 0)
111                 port->fifosize = prop;
112
113         /* Check for a fixed line number */
114         ret = of_alias_get_id(np, "serial");
115         if (ret >= 0)
116                 port->line = ret;
117
118         port->irq = irq_of_parse_and_map(np, 0);
119         port->iotype = UPIO_MEM;
120         if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
121                 switch (prop) {
122                 case 1:
123                         port->iotype = UPIO_MEM;
124                         break;
125                 case 4:
126                         port->iotype = of_device_is_big_endian(np) ?
127                                        UPIO_MEM32BE : UPIO_MEM32;
128                         break;
129                 default:
130                         dev_warn(&ofdev->dev, "unsupported reg-io-width (%d)\n",
131                                  prop);
132                         ret = -EINVAL;
133                         goto out;
134                 }
135         }
136
137         port->type = type;
138         port->uartclk = clk;
139         port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP
140                 | UPF_FIXED_PORT | UPF_FIXED_TYPE;
141
142         if (of_find_property(np, "no-loopback-test", NULL))
143                 port->flags |= UPF_SKIP_TEST;
144
145         port->dev = &ofdev->dev;
146
147         switch (type) {
148         case PORT_TEGRA:
149                 port->handle_break = tegra_serial_handle_break;
150                 break;
151
152         case PORT_RT2880:
153                 port->iotype = UPIO_AU;
154                 break;
155         }
156
157         return 0;
158 out:
159         if (info->clk)
160                 clk_disable_unprepare(info->clk);
161         return ret;
162 }
163
164 /*
165  * Try to register a serial port
166  */
167 static const struct of_device_id of_platform_serial_table[];
168 static int of_platform_serial_probe(struct platform_device *ofdev)
169 {
170         const struct of_device_id *match;
171         struct of_serial_info *info;
172         struct uart_port port;
173         int port_type;
174         int ret;
175
176         match = of_match_device(of_platform_serial_table, &ofdev->dev);
177         if (!match)
178                 return -EINVAL;
179
180         if (of_find_property(ofdev->dev.of_node, "used-by-rtas", NULL))
181                 return -EBUSY;
182
183         info = kzalloc(sizeof(*info), GFP_KERNEL);
184         if (info == NULL)
185                 return -ENOMEM;
186
187         port_type = (unsigned long)match->data;
188         ret = of_platform_serial_setup(ofdev, port_type, &port, info);
189         if (ret)
190                 goto out;
191
192         switch (port_type) {
193 #ifdef CONFIG_SERIAL_8250
194         case PORT_8250 ... PORT_MAX_8250:
195         {
196                 struct uart_8250_port port8250;
197                 memset(&port8250, 0, sizeof(port8250));
198                 port8250.port = port;
199
200                 if (port.fifosize)
201                         port8250.capabilities = UART_CAP_FIFO;
202
203                 if (of_property_read_bool(ofdev->dev.of_node,
204                                           "auto-flow-control"))
205                         port8250.capabilities |= UART_CAP_AFE;
206
207                 ret = serial8250_register_8250_port(&port8250);
208                 break;
209         }
210 #endif
211 #ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
212         case PORT_NWPSERIAL:
213                 ret = nwpserial_register_port(&port);
214                 break;
215 #endif
216         default:
217                 /* need to add code for these */
218         case PORT_UNKNOWN:
219                 dev_info(&ofdev->dev, "Unknown serial port found, ignored\n");
220                 ret = -ENODEV;
221                 break;
222         }
223         if (ret < 0)
224                 goto out;
225
226         info->type = port_type;
227         info->line = ret;
228         platform_set_drvdata(ofdev, info);
229         return 0;
230 out:
231         kfree(info);
232         irq_dispose_mapping(port.irq);
233         return ret;
234 }
235
236 /*
237  * Release a line
238  */
239 static int of_platform_serial_remove(struct platform_device *ofdev)
240 {
241         struct of_serial_info *info = platform_get_drvdata(ofdev);
242         switch (info->type) {
243 #ifdef CONFIG_SERIAL_8250
244         case PORT_8250 ... PORT_MAX_8250:
245                 serial8250_unregister_port(info->line);
246                 break;
247 #endif
248 #ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
249         case PORT_NWPSERIAL:
250                 nwpserial_unregister_port(info->line);
251                 break;
252 #endif
253         default:
254                 /* need to add code for these */
255                 break;
256         }
257
258         if (info->clk)
259                 clk_disable_unprepare(info->clk);
260         kfree(info);
261         return 0;
262 }
263
264 #ifdef CONFIG_PM_SLEEP
265 #ifdef CONFIG_SERIAL_8250
266 static void of_serial_suspend_8250(struct of_serial_info *info)
267 {
268         struct uart_8250_port *port8250 = serial8250_get_port(info->line);
269         struct uart_port *port = &port8250->port;
270
271         serial8250_suspend_port(info->line);
272         if (info->clk && (!uart_console(port) || console_suspend_enabled))
273                 clk_disable_unprepare(info->clk);
274 }
275
276 static void of_serial_resume_8250(struct of_serial_info *info)
277 {
278         struct uart_8250_port *port8250 = serial8250_get_port(info->line);
279         struct uart_port *port = &port8250->port;
280
281         if (info->clk && (!uart_console(port) || console_suspend_enabled))
282                 clk_prepare_enable(info->clk);
283
284         serial8250_resume_port(info->line);
285 }
286 #else
287 static inline void of_serial_suspend_8250(struct of_serial_info *info)
288 {
289 }
290
291 static inline void of_serial_resume_8250(struct of_serial_info *info)
292 {
293 }
294 #endif
295
296 static int of_serial_suspend(struct device *dev)
297 {
298         struct of_serial_info *info = dev_get_drvdata(dev);
299
300         switch (info->type) {
301         case PORT_8250 ... PORT_MAX_8250:
302                 of_serial_suspend_8250(info);
303                 break;
304         default:
305                 break;
306         }
307
308         return 0;
309 }
310
311 static int of_serial_resume(struct device *dev)
312 {
313         struct of_serial_info *info = dev_get_drvdata(dev);
314
315         switch (info->type) {
316         case PORT_8250 ... PORT_MAX_8250:
317                 of_serial_resume_8250(info);
318                 break;
319         default:
320                 break;
321         }
322
323         return 0;
324 }
325 #endif
326 static SIMPLE_DEV_PM_OPS(of_serial_pm_ops, of_serial_suspend, of_serial_resume);
327
328 /*
329  * A few common types, add more as needed.
330  */
331 static const struct of_device_id of_platform_serial_table[] = {
332         { .compatible = "ns8250",   .data = (void *)PORT_8250, },
333         { .compatible = "ns16450",  .data = (void *)PORT_16450, },
334         { .compatible = "ns16550a", .data = (void *)PORT_16550A, },
335         { .compatible = "ns16550",  .data = (void *)PORT_16550, },
336         { .compatible = "ns16750",  .data = (void *)PORT_16750, },
337         { .compatible = "ns16850",  .data = (void *)PORT_16850, },
338         { .compatible = "nvidia,tegra20-uart", .data = (void *)PORT_TEGRA, },
339         { .compatible = "nxp,lpc3220-uart", .data = (void *)PORT_LPC3220, },
340         { .compatible = "ralink,rt2880-uart", .data = (void *)PORT_RT2880, },
341         { .compatible = "altr,16550-FIFO32",
342                 .data = (void *)PORT_ALTR_16550_F32, },
343         { .compatible = "altr,16550-FIFO64",
344                 .data = (void *)PORT_ALTR_16550_F64, },
345         { .compatible = "altr,16550-FIFO128",
346                 .data = (void *)PORT_ALTR_16550_F128, },
347         { .compatible = "mrvl,mmp-uart",
348                 .data = (void *)PORT_XSCALE, },
349         { .compatible = "mrvl,pxa-uart",
350                 .data = (void *)PORT_XSCALE, },
351 #ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
352         { .compatible = "ibm,qpace-nwp-serial",
353                 .data = (void *)PORT_NWPSERIAL, },
354 #endif
355         { /* end of list */ },
356 };
357 MODULE_DEVICE_TABLE(of, of_platform_serial_table);
358
359 static struct platform_driver of_platform_serial_driver = {
360         .driver = {
361                 .name = "of_serial",
362                 .of_match_table = of_platform_serial_table,
363         },
364         .probe = of_platform_serial_probe,
365         .remove = of_platform_serial_remove,
366 };
367
368 module_platform_driver(of_platform_serial_driver);
369
370 MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
371 MODULE_LICENSE("GPL");
372 MODULE_DESCRIPTION("Serial Port driver for Open Firmware platform devices");