Revert "serial: of-serial: add PM suspend/resume support"
[linux-2.6-block.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/module.h>
13 #include <linux/slab.h>
14 #include <linux/delay.h>
15 #include <linux/serial_core.h>
16 #include <linux/serial_reg.h>
17 #include <linux/of_address.h>
18 #include <linux/of_irq.h>
19 #include <linux/of_platform.h>
20 #include <linux/nwpserial.h>
21 #include <linux/clk.h>
22
23 #include "8250/8250.h"
24
25 struct of_serial_info {
26         struct clk *clk;
27         int type;
28         int line;
29 };
30
31 #ifdef CONFIG_ARCH_TEGRA
32 void tegra_serial_handle_break(struct uart_port *p)
33 {
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 }
47 #else
48 static inline void tegra_serial_handle_break(struct uart_port *port)
49 {
50 }
51 #endif
52
53 /*
54  * Fill a struct uart_port for a given device node
55  */
56 static int of_platform_serial_setup(struct platform_device *ofdev,
57                         int type, struct uart_port *port,
58                         struct of_serial_info *info)
59 {
60         struct resource resource;
61         struct device_node *np = ofdev->dev.of_node;
62         u32 clk, spd, prop;
63         int ret;
64
65         memset(port, 0, sizeof *port);
66         if (of_property_read_u32(np, "clock-frequency", &clk)) {
67
68                 /* Get clk rate through clk driver if present */
69                 info->clk = clk_get(&ofdev->dev, NULL);
70                 if (IS_ERR(info->clk)) {
71                         dev_warn(&ofdev->dev,
72                                 "clk or clock-frequency not defined\n");
73                         return PTR_ERR(info->clk);
74                 }
75
76                 clk_prepare_enable(info->clk);
77                 clk = clk_get_rate(info->clk);
78         }
79         /* If current-speed was set, then try not to change it. */
80         if (of_property_read_u32(np, "current-speed", &spd) == 0)
81                 port->custom_divisor = clk / (16 * spd);
82
83         ret = of_address_to_resource(np, 0, &resource);
84         if (ret) {
85                 dev_warn(&ofdev->dev, "invalid address\n");
86                 goto out;
87         }
88
89         spin_lock_init(&port->lock);
90         port->mapbase = resource.start;
91
92         /* Check for shifted address mapping */
93         if (of_property_read_u32(np, "reg-offset", &prop) == 0)
94                 port->mapbase += prop;
95
96         /* Check for registers offset within the devices address range */
97         if (of_property_read_u32(np, "reg-shift", &prop) == 0)
98                 port->regshift = prop;
99
100         /* Check for fifo size */
101         if (of_property_read_u32(np, "fifo-size", &prop) == 0)
102                 port->fifosize = prop;
103
104         port->irq = irq_of_parse_and_map(np, 0);
105         port->iotype = UPIO_MEM;
106         if (of_property_read_u32(np, "reg-io-width", &prop) == 0) {
107                 switch (prop) {
108                 case 1:
109                         port->iotype = UPIO_MEM;
110                         break;
111                 case 4:
112                         port->iotype = UPIO_MEM32;
113                         break;
114                 default:
115                         dev_warn(&ofdev->dev, "unsupported reg-io-width (%d)\n",
116                                  prop);
117                         ret = -EINVAL;
118                         goto out;
119                 }
120         }
121
122         port->type = type;
123         port->uartclk = clk;
124         port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP
125                 | UPF_FIXED_PORT | UPF_FIXED_TYPE;
126
127         if (of_find_property(np, "no-loopback-test", NULL))
128                 port->flags |= UPF_SKIP_TEST;
129
130         port->dev = &ofdev->dev;
131
132         switch (type) {
133         case PORT_TEGRA:
134                 port->handle_break = tegra_serial_handle_break;
135                 break;
136
137         case PORT_RT2880:
138                 port->iotype = UPIO_AU;
139                 break;
140         }
141
142         return 0;
143 out:
144         if (info->clk)
145                 clk_disable_unprepare(info->clk);
146         return ret;
147 }
148
149 /*
150  * Try to register a serial port
151  */
152 static struct of_device_id of_platform_serial_table[];
153 static int of_platform_serial_probe(struct platform_device *ofdev)
154 {
155         const struct of_device_id *match;
156         struct of_serial_info *info;
157         struct uart_port port;
158         int port_type;
159         int ret;
160
161         match = of_match_device(of_platform_serial_table, &ofdev->dev);
162         if (!match)
163                 return -EINVAL;
164
165         if (of_find_property(ofdev->dev.of_node, "used-by-rtas", NULL))
166                 return -EBUSY;
167
168         info = kzalloc(sizeof(*info), GFP_KERNEL);
169         if (info == NULL)
170                 return -ENOMEM;
171
172         port_type = (unsigned long)match->data;
173         ret = of_platform_serial_setup(ofdev, port_type, &port, info);
174         if (ret)
175                 goto out;
176
177         switch (port_type) {
178 #ifdef CONFIG_SERIAL_8250
179         case PORT_8250 ... PORT_MAX_8250:
180         {
181                 struct uart_8250_port port8250;
182                 memset(&port8250, 0, sizeof(port8250));
183                 port.type = port_type;
184                 port8250.port = port;
185
186                 if (port.fifosize)
187                         port8250.capabilities = UART_CAP_FIFO;
188
189                 if (of_property_read_bool(ofdev->dev.of_node,
190                                           "auto-flow-control"))
191                         port8250.capabilities |= UART_CAP_AFE;
192
193                 ret = serial8250_register_8250_port(&port8250);
194                 break;
195         }
196 #endif
197 #ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
198         case PORT_NWPSERIAL:
199                 ret = nwpserial_register_port(&port);
200                 break;
201 #endif
202         default:
203                 /* need to add code for these */
204         case PORT_UNKNOWN:
205                 dev_info(&ofdev->dev, "Unknown serial port found, ignored\n");
206                 ret = -ENODEV;
207                 break;
208         }
209         if (ret < 0)
210                 goto out;
211
212         info->type = port_type;
213         info->line = ret;
214         platform_set_drvdata(ofdev, info);
215         return 0;
216 out:
217         kfree(info);
218         irq_dispose_mapping(port.irq);
219         return ret;
220 }
221
222 /*
223  * Release a line
224  */
225 static int of_platform_serial_remove(struct platform_device *ofdev)
226 {
227         struct of_serial_info *info = platform_get_drvdata(ofdev);
228         switch (info->type) {
229 #ifdef CONFIG_SERIAL_8250
230         case PORT_8250 ... PORT_MAX_8250:
231                 serial8250_unregister_port(info->line);
232                 break;
233 #endif
234 #ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
235         case PORT_NWPSERIAL:
236                 nwpserial_unregister_port(info->line);
237                 break;
238 #endif
239         default:
240                 /* need to add code for these */
241                 break;
242         }
243
244         if (info->clk)
245                 clk_disable_unprepare(info->clk);
246         kfree(info);
247         return 0;
248 }
249
250 /*
251  * A few common types, add more as needed.
252  */
253 static struct of_device_id of_platform_serial_table[] = {
254         { .compatible = "ns8250",   .data = (void *)PORT_8250, },
255         { .compatible = "ns16450",  .data = (void *)PORT_16450, },
256         { .compatible = "ns16550a", .data = (void *)PORT_16550A, },
257         { .compatible = "ns16550",  .data = (void *)PORT_16550, },
258         { .compatible = "ns16750",  .data = (void *)PORT_16750, },
259         { .compatible = "ns16850",  .data = (void *)PORT_16850, },
260         { .compatible = "nvidia,tegra20-uart", .data = (void *)PORT_TEGRA, },
261         { .compatible = "nxp,lpc3220-uart", .data = (void *)PORT_LPC3220, },
262         { .compatible = "ralink,rt2880-uart", .data = (void *)PORT_RT2880, },
263         { .compatible = "altr,16550-FIFO32",
264                 .data = (void *)PORT_ALTR_16550_F32, },
265         { .compatible = "altr,16550-FIFO64",
266                 .data = (void *)PORT_ALTR_16550_F64, },
267         { .compatible = "altr,16550-FIFO128",
268                 .data = (void *)PORT_ALTR_16550_F128, },
269 #ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
270         { .compatible = "ibm,qpace-nwp-serial",
271                 .data = (void *)PORT_NWPSERIAL, },
272 #endif
273         { .type = "serial",         .data = (void *)PORT_UNKNOWN, },
274         { /* end of list */ },
275 };
276
277 static struct platform_driver of_platform_serial_driver = {
278         .driver = {
279                 .name = "of_serial",
280                 .owner = THIS_MODULE,
281                 .of_match_table = of_platform_serial_table,
282         },
283         .probe = of_platform_serial_probe,
284         .remove = of_platform_serial_remove,
285 };
286
287 module_platform_driver(of_platform_serial_driver);
288
289 MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
290 MODULE_LICENSE("GPL");
291 MODULE_DESCRIPTION("Serial Port driver for Open Firmware platform devices");