aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/Kconfig12
-rw-r--r--drivers/of/Makefile2
-rw-r--r--drivers/of/address.c1
-rw-r--r--drivers/of/base.c41
-rw-r--r--drivers/of/gpio.c240
-rw-r--r--drivers/of/of_i2c.c16
-rw-r--r--drivers/of/of_mdio.c2
-rw-r--r--drivers/of/of_spi.c99
8 files changed, 59 insertions, 354 deletions
diff --git a/drivers/of/Kconfig b/drivers/of/Kconfig
index 8e84ce9765a9..dfba3e64d595 100644
--- a/drivers/of/Kconfig
+++ b/drivers/of/Kconfig
@@ -51,12 +51,6 @@ config OF_IRQ
51config OF_DEVICE 51config OF_DEVICE
52 def_bool y 52 def_bool y
53 53
54config OF_GPIO
55 def_bool y
56 depends on GPIOLIB && !SPARC
57 help
58 OpenFirmware GPIO accessors
59
60config OF_I2C 54config OF_I2C
61 def_tristate I2C 55 def_tristate I2C
62 depends on I2C && !SPARC 56 depends on I2C && !SPARC
@@ -67,12 +61,6 @@ config OF_NET
67 depends on NETDEVICES 61 depends on NETDEVICES
68 def_bool y 62 def_bool y
69 63
70config OF_SPI
71 def_tristate SPI
72 depends on SPI && !SPARC
73 help
74 OpenFirmware SPI accessors
75
76config OF_MDIO 64config OF_MDIO
77 def_tristate PHYLIB 65 def_tristate PHYLIB
78 depends on PHYLIB 66 depends on PHYLIB
diff --git a/drivers/of/Makefile b/drivers/of/Makefile
index aa90e602c8a7..e027f444d10c 100644
--- a/drivers/of/Makefile
+++ b/drivers/of/Makefile
@@ -4,10 +4,8 @@ obj-$(CONFIG_OF_PROMTREE) += pdt.o
4obj-$(CONFIG_OF_ADDRESS) += address.o 4obj-$(CONFIG_OF_ADDRESS) += address.o
5obj-$(CONFIG_OF_IRQ) += irq.o 5obj-$(CONFIG_OF_IRQ) += irq.o
6obj-$(CONFIG_OF_DEVICE) += device.o platform.o 6obj-$(CONFIG_OF_DEVICE) += device.o platform.o
7obj-$(CONFIG_OF_GPIO) += gpio.o
8obj-$(CONFIG_OF_I2C) += of_i2c.o 7obj-$(CONFIG_OF_I2C) += of_i2c.o
9obj-$(CONFIG_OF_NET) += of_net.o 8obj-$(CONFIG_OF_NET) += of_net.o
10obj-$(CONFIG_OF_SPI) += of_spi.o
11obj-$(CONFIG_OF_SELFTEST) += selftest.o 9obj-$(CONFIG_OF_SELFTEST) += selftest.o
12obj-$(CONFIG_OF_MDIO) += of_mdio.o 10obj-$(CONFIG_OF_MDIO) += of_mdio.o
13obj-$(CONFIG_OF_PCI) += of_pci.o 11obj-$(CONFIG_OF_PCI) += of_pci.o
diff --git a/drivers/of/address.c b/drivers/of/address.c
index 66d96f14c274..7e262a6124c5 100644
--- a/drivers/of/address.c
+++ b/drivers/of/address.c
@@ -1,4 +1,5 @@
1 1
2#include <linux/device.h>
2#include <linux/io.h> 3#include <linux/io.h>
3#include <linux/ioport.h> 4#include <linux/ioport.h>
4#include <linux/module.h> 5#include <linux/module.h>
diff --git a/drivers/of/base.c b/drivers/of/base.c
index 580644986945..d9bfd49b1935 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -1260,3 +1260,44 @@ int of_alias_get_id(struct device_node *np, const char *stem)
1260 return id; 1260 return id;
1261} 1261}
1262EXPORT_SYMBOL_GPL(of_alias_get_id); 1262EXPORT_SYMBOL_GPL(of_alias_get_id);
1263
1264const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
1265 u32 *pu)
1266{
1267 const void *curv = cur;
1268
1269 if (!prop)
1270 return NULL;
1271
1272 if (!cur) {
1273 curv = prop->value;
1274 goto out_val;
1275 }
1276
1277 curv += sizeof(*cur);
1278 if (curv >= prop->value + prop->length)
1279 return NULL;
1280
1281out_val:
1282 *pu = be32_to_cpup(curv);
1283 return curv;
1284}
1285EXPORT_SYMBOL_GPL(of_prop_next_u32);
1286
1287const char *of_prop_next_string(struct property *prop, const char *cur)
1288{
1289 const void *curv = cur;
1290
1291 if (!prop)
1292 return NULL;
1293
1294 if (!cur)
1295 return prop->value;
1296
1297 curv += strlen(cur) + 1;
1298 if (curv >= prop->value + prop->length)
1299 return NULL;
1300
1301 return curv;
1302}
1303EXPORT_SYMBOL_GPL(of_prop_next_string);
diff --git a/drivers/of/gpio.c b/drivers/of/gpio.c
deleted file mode 100644
index bf984b6dc477..000000000000
--- a/drivers/of/gpio.c
+++ /dev/null
@@ -1,240 +0,0 @@
1/*
2 * OF helpers for the GPIO API
3 *
4 * Copyright (c) 2007-2008 MontaVista Software, Inc.
5 *
6 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <linux/device.h>
15#include <linux/errno.h>
16#include <linux/module.h>
17#include <linux/io.h>
18#include <linux/of.h>
19#include <linux/of_address.h>
20#include <linux/of_gpio.h>
21#include <linux/slab.h>
22
23/**
24 * of_get_named_gpio_flags() - Get a GPIO number and flags to use with GPIO API
25 * @np: device node to get GPIO from
26 * @propname: property name containing gpio specifier(s)
27 * @index: index of the GPIO
28 * @flags: a flags pointer to fill in
29 *
30 * Returns GPIO number to use with Linux generic GPIO API, or one of the errno
31 * value on the error condition. If @flags is not NULL the function also fills
32 * in flags for the GPIO.
33 */
34int of_get_named_gpio_flags(struct device_node *np, const char *propname,
35 int index, enum of_gpio_flags *flags)
36{
37 int ret;
38 struct gpio_chip *gc;
39 struct of_phandle_args gpiospec;
40
41 ret = of_parse_phandle_with_args(np, propname, "#gpio-cells", index,
42 &gpiospec);
43 if (ret) {
44 pr_debug("%s: can't parse gpios property\n", __func__);
45 goto err0;
46 }
47
48 gc = of_node_to_gpiochip(gpiospec.np);
49 if (!gc) {
50 pr_debug("%s: gpio controller %s isn't registered\n",
51 np->full_name, gpiospec.np->full_name);
52 ret = -ENODEV;
53 goto err1;
54 }
55
56 if (gpiospec.args_count != gc->of_gpio_n_cells) {
57 pr_debug("%s: wrong #gpio-cells for %s\n",
58 np->full_name, gpiospec.np->full_name);
59 ret = -EINVAL;
60 goto err1;
61 }
62
63 /* .xlate might decide to not fill in the flags, so clear it. */
64 if (flags)
65 *flags = 0;
66
67 ret = gc->of_xlate(gc, &gpiospec, flags);
68 if (ret < 0)
69 goto err1;
70
71 ret += gc->base;
72err1:
73 of_node_put(gpiospec.np);
74err0:
75 pr_debug("%s exited with status %d\n", __func__, ret);
76 return ret;
77}
78EXPORT_SYMBOL(of_get_named_gpio_flags);
79
80/**
81 * of_gpio_named_count - Count GPIOs for a device
82 * @np: device node to count GPIOs for
83 * @propname: property name containing gpio specifier(s)
84 *
85 * The function returns the count of GPIOs specified for a node.
86 *
87 * Note that the empty GPIO specifiers counts too. For example,
88 *
89 * gpios = <0
90 * &pio1 1 2
91 * 0
92 * &pio2 3 4>;
93 *
94 * defines four GPIOs (so this function will return 4), two of which
95 * are not specified.
96 */
97unsigned int of_gpio_named_count(struct device_node *np, const char* propname)
98{
99 unsigned int cnt = 0;
100
101 do {
102 int ret;
103
104 ret = of_parse_phandle_with_args(np, propname, "#gpio-cells",
105 cnt, NULL);
106 /* A hole in the gpios = <> counts anyway. */
107 if (ret < 0 && ret != -EEXIST)
108 break;
109 } while (++cnt);
110
111 return cnt;
112}
113EXPORT_SYMBOL(of_gpio_named_count);
114
115/**
116 * of_gpio_simple_xlate - translate gpio_spec to the GPIO number and flags
117 * @gc: pointer to the gpio_chip structure
118 * @np: device node of the GPIO chip
119 * @gpio_spec: gpio specifier as found in the device tree
120 * @flags: a flags pointer to fill in
121 *
122 * This is simple translation function, suitable for the most 1:1 mapped
123 * gpio chips. This function performs only one sanity check: whether gpio
124 * is less than ngpios (that is specified in the gpio_chip).
125 */
126int of_gpio_simple_xlate(struct gpio_chip *gc,
127 const struct of_phandle_args *gpiospec, u32 *flags)
128{
129 /*
130 * We're discouraging gpio_cells < 2, since that way you'll have to
131 * write your own xlate function (that will have to retrive the GPIO
132 * number and the flags from a single gpio cell -- this is possible,
133 * but not recommended).
134 */
135 if (gc->of_gpio_n_cells < 2) {
136 WARN_ON(1);
137 return -EINVAL;
138 }
139
140 if (WARN_ON(gpiospec->args_count < gc->of_gpio_n_cells))
141 return -EINVAL;
142
143 if (gpiospec->args[0] >= gc->ngpio)
144 return -EINVAL;
145
146 if (flags)
147 *flags = gpiospec->args[1];
148
149 return gpiospec->args[0];
150}
151EXPORT_SYMBOL(of_gpio_simple_xlate);
152
153/**
154 * of_mm_gpiochip_add - Add memory mapped GPIO chip (bank)
155 * @np: device node of the GPIO chip
156 * @mm_gc: pointer to the of_mm_gpio_chip allocated structure
157 *
158 * To use this function you should allocate and fill mm_gc with:
159 *
160 * 1) In the gpio_chip structure:
161 * - all the callbacks
162 * - of_gpio_n_cells
163 * - of_xlate callback (optional)
164 *
165 * 3) In the of_mm_gpio_chip structure:
166 * - save_regs callback (optional)
167 *
168 * If succeeded, this function will map bank's memory and will
169 * do all necessary work for you. Then you'll able to use .regs
170 * to manage GPIOs from the callbacks.
171 */
172int of_mm_gpiochip_add(struct device_node *np,
173 struct of_mm_gpio_chip *mm_gc)
174{
175 int ret = -ENOMEM;
176 struct gpio_chip *gc = &mm_gc->gc;
177
178 gc->label = kstrdup(np->full_name, GFP_KERNEL);
179 if (!gc->label)
180 goto err0;
181
182 mm_gc->regs = of_iomap(np, 0);
183 if (!mm_gc->regs)
184 goto err1;
185
186 gc->base = -1;
187
188 if (mm_gc->save_regs)
189 mm_gc->save_regs(mm_gc);
190
191 mm_gc->gc.of_node = np;
192
193 ret = gpiochip_add(gc);
194 if (ret)
195 goto err2;
196
197 return 0;
198err2:
199 iounmap(mm_gc->regs);
200err1:
201 kfree(gc->label);
202err0:
203 pr_err("%s: GPIO chip registration failed with status %d\n",
204 np->full_name, ret);
205 return ret;
206}
207EXPORT_SYMBOL(of_mm_gpiochip_add);
208
209void of_gpiochip_add(struct gpio_chip *chip)
210{
211 if ((!chip->of_node) && (chip->dev))
212 chip->of_node = chip->dev->of_node;
213
214 if (!chip->of_node)
215 return;
216
217 if (!chip->of_xlate) {
218 chip->of_gpio_n_cells = 2;
219 chip->of_xlate = of_gpio_simple_xlate;
220 }
221
222 of_node_get(chip->of_node);
223}
224
225void of_gpiochip_remove(struct gpio_chip *chip)
226{
227 if (chip->of_node)
228 of_node_put(chip->of_node);
229}
230
231/* Private function for resolving node pointer to gpio_chip */
232static int of_gpiochip_is_match(struct gpio_chip *chip, const void *data)
233{
234 return chip->of_node == data;
235}
236
237struct gpio_chip *of_node_to_gpiochip(struct device_node *np)
238{
239 return gpiochip_find(np, of_gpiochip_is_match);
240}
diff --git a/drivers/of/of_i2c.c b/drivers/of/of_i2c.c
index f37fbeb66a44..1e173f357674 100644
--- a/drivers/of/of_i2c.c
+++ b/drivers/of/of_i2c.c
@@ -90,8 +90,22 @@ struct i2c_client *of_find_i2c_device_by_node(struct device_node *node)
90 if (!dev) 90 if (!dev)
91 return NULL; 91 return NULL;
92 92
93 return to_i2c_client(dev); 93 return i2c_verify_client(dev);
94} 94}
95EXPORT_SYMBOL(of_find_i2c_device_by_node); 95EXPORT_SYMBOL(of_find_i2c_device_by_node);
96 96
97/* must call put_device() when done with returned i2c_adapter device */
98struct i2c_adapter *of_find_i2c_adapter_by_node(struct device_node *node)
99{
100 struct device *dev;
101
102 dev = bus_find_device(&i2c_bus_type, NULL, node,
103 of_dev_node_match);
104 if (!dev)
105 return NULL;
106
107 return i2c_verify_adapter(dev);
108}
109EXPORT_SYMBOL(of_find_i2c_adapter_by_node);
110
97MODULE_LICENSE("GPL"); 111MODULE_LICENSE("GPL");
diff --git a/drivers/of/of_mdio.c b/drivers/of/of_mdio.c
index 483c0adcad87..2574abde8d99 100644
--- a/drivers/of/of_mdio.c
+++ b/drivers/of/of_mdio.c
@@ -45,6 +45,8 @@ int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
45 for (i=0; i<PHY_MAX_ADDR; i++) 45 for (i=0; i<PHY_MAX_ADDR; i++)
46 mdio->irq[i] = PHY_POLL; 46 mdio->irq[i] = PHY_POLL;
47 47
48 mdio->dev.of_node = np;
49
48 /* Register the MDIO bus */ 50 /* Register the MDIO bus */
49 rc = mdiobus_register(mdio); 51 rc = mdiobus_register(mdio);
50 if (rc) 52 if (rc)
diff --git a/drivers/of/of_spi.c b/drivers/of/of_spi.c
deleted file mode 100644
index 6dbc074e4876..000000000000
--- a/drivers/of/of_spi.c
+++ /dev/null
@@ -1,99 +0,0 @@
1/*
2 * SPI OF support routines
3 * Copyright (C) 2008 Secret Lab Technologies Ltd.
4 *
5 * Support routines for deriving SPI device attachments from the device
6 * tree.
7 */
8
9#include <linux/module.h>
10#include <linux/of.h>
11#include <linux/device.h>
12#include <linux/spi/spi.h>
13#include <linux/of_irq.h>
14#include <linux/of_spi.h>
15
16/**
17 * of_register_spi_devices - Register child devices onto the SPI bus
18 * @master: Pointer to spi_master device
19 *
20 * Registers an spi_device for each child node of master node which has a 'reg'
21 * property.
22 */
23void of_register_spi_devices(struct spi_master *master)
24{
25 struct spi_device *spi;
26 struct device_node *nc;
27 const __be32 *prop;
28 int rc;
29 int len;
30
31 if (!master->dev.of_node)
32 return;
33
34 for_each_child_of_node(master->dev.of_node, nc) {
35 /* Alloc an spi_device */
36 spi = spi_alloc_device(master);
37 if (!spi) {
38 dev_err(&master->dev, "spi_device alloc error for %s\n",
39 nc->full_name);
40 spi_dev_put(spi);
41 continue;
42 }
43
44 /* Select device driver */
45 if (of_modalias_node(nc, spi->modalias,
46 sizeof(spi->modalias)) < 0) {
47 dev_err(&master->dev, "cannot find modalias for %s\n",
48 nc->full_name);
49 spi_dev_put(spi);
50 continue;
51 }
52
53 /* Device address */
54 prop = of_get_property(nc, "reg", &len);
55 if (!prop || len < sizeof(*prop)) {
56 dev_err(&master->dev, "%s has no 'reg' property\n",
57 nc->full_name);
58 spi_dev_put(spi);
59 continue;
60 }
61 spi->chip_select = be32_to_cpup(prop);
62
63 /* Mode (clock phase/polarity/etc.) */
64 if (of_find_property(nc, "spi-cpha", NULL))
65 spi->mode |= SPI_CPHA;
66 if (of_find_property(nc, "spi-cpol", NULL))
67 spi->mode |= SPI_CPOL;
68 if (of_find_property(nc, "spi-cs-high", NULL))
69 spi->mode |= SPI_CS_HIGH;
70
71 /* Device speed */
72 prop = of_get_property(nc, "spi-max-frequency", &len);
73 if (!prop || len < sizeof(*prop)) {
74 dev_err(&master->dev, "%s has no 'spi-max-frequency' property\n",
75 nc->full_name);
76 spi_dev_put(spi);
77 continue;
78 }
79 spi->max_speed_hz = be32_to_cpup(prop);
80
81 /* IRQ */
82 spi->irq = irq_of_parse_and_map(nc, 0);
83
84 /* Store a pointer to the node in the device structure */
85 of_node_get(nc);
86 spi->dev.of_node = nc;
87
88 /* Register the new device */
89 request_module(spi->modalias);
90 rc = spi_add_device(spi);
91 if (rc) {
92 dev_err(&master->dev, "spi_device register error %s\n",
93 nc->full_name);
94 spi_dev_put(spi);
95 }
96
97 }
98}
99EXPORT_SYMBOL(of_register_spi_devices);