blob: 17849dcb9adc7e0e5090231192eef1778faeb8bb [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 */
12#include <linux/init.h>
13#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010015#include <linux/serial_core.h>
16#include <linux/serial_8250.h>
Grant Likelyf1ca09b2010-08-16 23:44:49 -060017#include <linux/of_address.h>
Stephen Rothwellc401b042008-05-23 16:32:54 +100018#include <linux/of_platform.h>
Benjamin Krill5886188d2009-01-07 10:32:38 +010019#include <linux/nwpserial.h>
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010020
Ishizaki Koue34b9c92007-05-31 19:33:04 +100021struct of_serial_info {
22 int type;
23 int line;
24};
25
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010026/*
27 * Fill a struct uart_port for a given device node
28 */
Grant Likely2dc11582010-08-06 09:25:50 -060029static int __devinit of_platform_serial_setup(struct platform_device *ofdev,
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010030 int type, struct uart_port *port)
31{
32 struct resource resource;
Grant Likely61c7a082010-04-13 16:12:29 -070033 struct device_node *np = ofdev->dev.of_node;
Ian Munsief14362d2010-10-01 17:06:07 +100034 const __be32 *clk, *spd;
35 const __be32 *prop;
John Linnb912b5e2008-04-03 10:22:19 +110036 int ret, prop_size;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010037
38 memset(port, 0, sizeof *port);
Stephen Rothwell40cd3a42007-05-01 13:54:02 +100039 spd = of_get_property(np, "current-speed", NULL);
40 clk = of_get_property(np, "clock-frequency", NULL);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010041 if (!clk) {
42 dev_warn(&ofdev->dev, "no clock-frequency property set\n");
43 return -ENODEV;
44 }
45
46 ret = of_address_to_resource(np, 0, &resource);
47 if (ret) {
48 dev_warn(&ofdev->dev, "invalid address\n");
49 return ret;
50 }
51
52 spin_lock_init(&port->lock);
53 port->mapbase = resource.start;
John Linnb912b5e2008-04-03 10:22:19 +110054
55 /* Check for shifted address mapping */
56 prop = of_get_property(np, "reg-offset", &prop_size);
57 if (prop && (prop_size == sizeof(u32)))
Ian Munsief14362d2010-10-01 17:06:07 +100058 port->mapbase += be32_to_cpup(prop);
John Linnb912b5e2008-04-03 10:22:19 +110059
60 /* Check for registers offset within the devices address range */
61 prop = of_get_property(np, "reg-shift", &prop_size);
62 if (prop && (prop_size == sizeof(u32)))
Ian Munsief14362d2010-10-01 17:06:07 +100063 port->regshift = be32_to_cpup(prop);
John Linnb912b5e2008-04-03 10:22:19 +110064
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010065 port->irq = irq_of_parse_and_map(np, 0);
66 port->iotype = UPIO_MEM;
67 port->type = type;
Ian Munsief14362d2010-10-01 17:06:07 +100068 port->uartclk = be32_to_cpup(clk);
David Gibsonabb4a232007-05-06 14:48:49 -070069 port->flags = UPF_SHARE_IRQ | UPF_BOOT_AUTOCONF | UPF_IOREMAP
Dave Mitchelleedacbf2009-06-09 13:39:47 +000070 | UPF_FIXED_PORT | UPF_FIXED_TYPE;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010071 port->dev = &ofdev->dev;
Stephen Neuendorffer19a74262008-04-03 03:52:13 +110072 /* If current-speed was set, then try not to change it. */
73 if (spd)
Ian Munsief14362d2010-10-01 17:06:07 +100074 port->custom_divisor = be32_to_cpup(clk) / (16 * (be32_to_cpup(spd)));
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010075
76 return 0;
77}
78
79/*
80 * Try to register a serial port
81 */
Grant Likely2dc11582010-08-06 09:25:50 -060082static int __devinit of_platform_serial_probe(struct platform_device *ofdev,
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010083 const struct of_device_id *id)
84{
Ishizaki Koue34b9c92007-05-31 19:33:04 +100085 struct of_serial_info *info;
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010086 struct uart_port port;
87 int port_type;
88 int ret;
89
Grant Likely61c7a082010-04-13 16:12:29 -070090 if (of_find_property(ofdev->dev.of_node, "used-by-rtas", NULL))
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010091 return -EBUSY;
92
Ishizaki Koue34b9c92007-05-31 19:33:04 +100093 info = kmalloc(sizeof(*info), GFP_KERNEL);
94 if (info == NULL)
95 return -ENOMEM;
96
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +010097 port_type = (unsigned long)id->data;
98 ret = of_platform_serial_setup(ofdev, port_type, &port);
99 if (ret)
100 goto out;
101
102 switch (port_type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100103#ifdef CONFIG_SERIAL_8250
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100104 case PORT_8250 ... PORT_MAX_8250:
105 ret = serial8250_register_port(&port);
106 break;
Benjamin Krill5886188d2009-01-07 10:32:38 +0100107#endif
108#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
109 case PORT_NWPSERIAL:
110 ret = nwpserial_register_port(&port);
111 break;
112#endif
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100113 default:
114 /* need to add code for these */
Ishizaki Kou1558f9b2007-05-31 19:30:33 +1000115 case PORT_UNKNOWN:
116 dev_info(&ofdev->dev, "Unknown serial port found, ignored\n");
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100117 ret = -ENODEV;
118 break;
119 }
120 if (ret < 0)
121 goto out;
122
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000123 info->type = port_type;
124 info->line = ret;
Greg Kroah-Hartman3cf62a52009-05-04 12:40:54 -0700125 dev_set_drvdata(&ofdev->dev, info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100126 return 0;
127out:
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000128 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100129 irq_dispose_mapping(port.irq);
130 return ret;
131}
132
133/*
134 * Release a line
135 */
Grant Likely2dc11582010-08-06 09:25:50 -0600136static int of_platform_serial_remove(struct platform_device *ofdev)
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100137{
Greg Kroah-Hartman3cf62a52009-05-04 12:40:54 -0700138 struct of_serial_info *info = dev_get_drvdata(&ofdev->dev);
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000139 switch (info->type) {
Benjamin Krill5886188d2009-01-07 10:32:38 +0100140#ifdef CONFIG_SERIAL_8250
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000141 case PORT_8250 ... PORT_MAX_8250:
142 serial8250_unregister_port(info->line);
143 break;
Benjamin Krill5886188d2009-01-07 10:32:38 +0100144#endif
145#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
146 case PORT_NWPSERIAL:
147 nwpserial_unregister_port(info->line);
148 break;
149#endif
Ishizaki Koue34b9c92007-05-31 19:33:04 +1000150 default:
151 /* need to add code for these */
152 break;
153 }
154 kfree(info);
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100155 return 0;
156}
157
158/*
159 * A few common types, add more as needed.
160 */
161static struct of_device_id __devinitdata of_platform_serial_table[] = {
162 { .type = "serial", .compatible = "ns8250", .data = (void *)PORT_8250, },
163 { .type = "serial", .compatible = "ns16450", .data = (void *)PORT_16450, },
Michal Simek16173c72009-11-24 10:22:41 +0000164 { .type = "serial", .compatible = "ns16550a", .data = (void *)PORT_16550A, },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100165 { .type = "serial", .compatible = "ns16550", .data = (void *)PORT_16550, },
166 { .type = "serial", .compatible = "ns16750", .data = (void *)PORT_16750, },
Matthias Fuchs0025e752009-01-15 09:43:35 +0000167 { .type = "serial", .compatible = "ns16850", .data = (void *)PORT_16850, },
Benjamin Krill5886188d2009-01-07 10:32:38 +0100168#ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL
169 { .type = "serial", .compatible = "ibm,qpace-nwp-serial",
170 .data = (void *)PORT_NWPSERIAL, },
171#endif
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100172 { .type = "serial", .data = (void *)PORT_UNKNOWN, },
173 { /* end of list */ },
174};
175
Josh Boyere84290d2008-03-10 11:43:35 -0700176static struct of_platform_driver of_platform_serial_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700177 .driver = {
178 .name = "of_serial",
179 .owner = THIS_MODULE,
180 .of_match_table = of_platform_serial_table,
181 },
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100182 .probe = of_platform_serial_probe,
183 .remove = of_platform_serial_remove,
Arnd Bergmann8d38a5b2007-02-13 21:35:38 +0100184};
185
186static int __init of_platform_serial_init(void)
187{
188 return of_register_platform_driver(&of_platform_serial_driver);
189}
190module_init(of_platform_serial_init);
191
192static void __exit of_platform_serial_exit(void)
193{
194 return of_unregister_platform_driver(&of_platform_serial_driver);
195};
196module_exit(of_platform_serial_exit);
197
198MODULE_AUTHOR("Arnd Bergmann <arnd@arndb.de>");
199MODULE_LICENSE("GPL");
200MODULE_DESCRIPTION("Serial Port driver for Open Firmware platform devices");