]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
of/gpio: stop using device_node data pointer to find gpio_chip
authorGrant Likely <grant.likely@secretlab.ca>
Tue, 8 Jun 2010 13:48:16 +0000 (07:48 -0600)
committerGrant Likely <grant.likely@secretlab.ca>
Mon, 5 Jul 2010 22:14:30 +0000 (16:14 -0600)
Currently the kernel uses the struct device_node.data pointer to resolve
a struct gpio_chip pointer from a device tree node.  However, the .data
member doesn't provide any type checking and there aren't any rules
enforced on what it should be used for.  There's no guarantee that the
data stored in it actually points to an gpio_chip pointer.

Instead of relying on the .data pointer, this patch modifies the code
to add a lookup function which scans through the registered gpio_chips
and returns the gpio_chip that has a pointer to the specified
device_node.

Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
CC: Andrew Morton <akpm@linux-foundation.org>
CC: Anton Vorontsov <avorontsov@ru.mvista.com>
CC: Grant Likely <grant.likely@secretlab.ca>
CC: David Brownell <dbrownell@users.sourceforge.net>
CC: Bill Gatliff <bgat@billgatliff.com>
CC: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
CC: Benjamin Herrenschmidt <benh@kernel.crashing.org>
CC: Jean Delvare <khali@linux-fr.org>
CC: linux-kernel@vger.kernel.org
CC: devicetree-discuss@lists.ozlabs.org
arch/microblaze/kernel/reset.c
arch/powerpc/platforms/52xx/mpc52xx_gpt.c
arch/powerpc/platforms/83xx/mcu_mpc8349emitx.c
arch/powerpc/sysdev/qe_lib/gpio.c
drivers/gpio/gpiolib.c
drivers/of/gpio.c
include/asm-generic/gpio.h
include/linux/of_gpio.h

index 5476d3caf04525cbb0815797e76faee68988df14..bd8ccab5ceff407287d3114d444ac467812a225f 100644 (file)
@@ -39,7 +39,7 @@ static int of_reset_gpio_handle(void)
                goto err0;
        }
 
-       gc = gpio->data;
+       gc = of_node_to_gpiochip(gpio);
        if (!gc) {
                pr_debug("%s: gpio controller %s isn't registered\n",
                         root->full_name, gpio->full_name);
index 3f2ee47f1d0173c53f219098cbb4555847a8c817..6e82bd27132cccd85488de3825244e2ab3fb96e9 100644 (file)
@@ -350,6 +350,7 @@ mpc52xx_gpt_gpio_setup(struct mpc52xx_gpt_priv *gpt, struct device_node *node)
        gpt->gc.base = -1;
        gpt->gc.of_gpio_n_cells = 2;
        gpt->gc.of_xlate = of_gpio_simple_xlate;
+       gpt->gc.of_node = node;
        of_node_get(node);
 
        /* Setup external pin in GPIO mode */
index e49f4bd2f9917c3c897fca38ee2265003943d3f6..f0dbace6185a2b44095a0b5e889f245d8a858926 100644 (file)
@@ -35,7 +35,6 @@
 
 struct mcu {
        struct mutex lock;
-       struct device_node *np;
        struct i2c_client *client;
        struct gpio_chip gc;
        u8 reg_ctrl;
@@ -79,7 +78,6 @@ static int mcu_gpiochip_add(struct mcu *mcu)
 {
        struct device_node *np;
        struct gpio_chip *gc = &mcu->gc;
-       int ret;
 
        np = of_find_compatible_node(NULL, NULL, "fsl,mcu-mpc8349emitx");
        if (!np)
@@ -94,29 +92,14 @@ static int mcu_gpiochip_add(struct mcu *mcu)
        gc->direction_output = mcu_gpio_dir_out;
        gc->of_gpio_n_cells = 2;
        gc->of_xlate = of_gpio_simple_xlate;
+       gc->of_node = np;
 
-       mcu->np = np;
-
-       /*
-        * We don't want to lose the node, its ->data and ->full_name...
-        * So, if succeeded, we don't put the node here.
-        */
-       ret = gpiochip_add(gc);
-       if (ret)
-               of_node_put(np);
-       return ret;
+       return gpiochip_add(gc);
 }
 
 static int mcu_gpiochip_remove(struct mcu *mcu)
 {
-       int ret;
-
-       ret = gpiochip_remove(&mcu->gc);
-       if (ret)
-               return ret;
-       of_node_put(mcu->np);
-
-       return 0;
+       return gpiochip_remove(&mcu->gc);
 }
 
 static int __devinit mcu_probe(struct i2c_client *client,
index 194478c2f4b4ef4651d8693070cb19eff3deca67..32e9440010a1dfc05407427b37da1928328dea2e 100644 (file)
@@ -167,7 +167,7 @@ struct qe_pin *qe_pin_request(struct device_node *np, int index)
                goto err1;
        }
 
-       gc = gpio_np->data;
+       gc = of_node_to_gpiochip(gpio_np);
        if (!gc) {
                pr_debug("%s: gpio controller %s isn't registered\n",
                         np->full_name, gpio_np->full_name);
index 713ca0e37f23c991a4472fa75dea11dbb25547c3..73fd328f6fe422b25d42ce6277aff125a0f6dba3 100644 (file)
@@ -1153,6 +1153,38 @@ int gpiochip_remove(struct gpio_chip *chip)
 }
 EXPORT_SYMBOL_GPL(gpiochip_remove);
 
+/**
+ * gpiochip_find() - iterator for locating a specific gpio_chip
+ * @data: data to pass to match function
+ * @callback: Callback function to check gpio_chip
+ *
+ * Similar to bus_find_device.  It returns a reference to a gpio_chip as
+ * determined by a user supplied @match callback.  The callback should return
+ * 0 if the device doesn't match and non-zero if it does.  If the callback is
+ * non-zero, this function will return to the caller and not iterate over any
+ * more gpio_chips.
+ */
+struct gpio_chip *gpiochip_find(void *data,
+                               int (*match)(struct gpio_chip *chip, void *data))
+{
+       struct gpio_chip *chip = NULL;
+       unsigned long flags;
+       int i;
+
+       spin_lock_irqsave(&gpio_lock, flags);
+       for (i = 0; i < ARCH_NR_GPIOS; i++) {
+               if (!gpio_desc[i].chip)
+                       continue;
+
+               if (match(gpio_desc[i].chip, data)) {
+                       chip = gpio_desc[i].chip;
+                       break;
+               }
+       }
+       spin_unlock_irqrestore(&gpio_lock, flags);
+
+       return chip;
+}
 
 /* These "optional" allocation calls help prevent drivers from stomping
  * on each other, and help provide better diagnostics in debugfs.
index fde53a3a45a38adf5decd8a478a70b27682f0b79..c8618d3282cf2860f15f7cee016f476fd0ec6625 100644 (file)
@@ -46,7 +46,7 @@ int of_get_gpio_flags(struct device_node *np, int index,
                goto err0;
        }
 
-       gc = gpio_np->data;
+       gc = of_node_to_gpiochip(gpio_np);
        if (!gc) {
                pr_debug("%s: gpio controller %s isn't registered\n",
                         np->full_name, gpio_np->full_name);
@@ -193,7 +193,6 @@ int of_mm_gpiochip_add(struct device_node *np,
        if (mm_gc->save_regs)
                mm_gc->save_regs(mm_gc);
 
-       np->data = &mm_gc->gc;
        mm_gc->gc.of_node = np;
 
        ret = gpiochip_add(gc);
@@ -207,7 +206,6 @@ int of_mm_gpiochip_add(struct device_node *np,
                 np->full_name, gc->base);
        return 0;
 err2:
-       np->data = NULL;
        iounmap(mm_gc->regs);
 err1:
        kfree(gc->label);
@@ -217,3 +215,14 @@ err0:
        return ret;
 }
 EXPORT_SYMBOL(of_mm_gpiochip_add);
+
+/* Private function for resolving node pointer to gpio_chip */
+static int of_gpiochip_is_match(struct gpio_chip *chip, void *data)
+{
+       return chip->of_node == data;
+}
+
+struct gpio_chip *of_node_to_gpiochip(struct device_node *np)
+{
+       return gpiochip_find(np, of_gpiochip_is_match);
+}
index af2544ef0b59fe7512b4764f2a8460aeb2504012..c7376bf80b0604bf8f8b9394989178d6de45ecc2 100644 (file)
@@ -127,6 +127,9 @@ extern int __must_check gpiochip_reserve(int start, int ngpio);
 /* add/remove chips */
 extern int gpiochip_add(struct gpio_chip *chip);
 extern int __must_check gpiochip_remove(struct gpio_chip *chip);
+extern struct gpio_chip *gpiochip_find(void *data,
+                                       int (*match)(struct gpio_chip *chip,
+                                                    void *data));
 
 
 /* Always use the library code for GPIO management calls,
index 460d6810c5eb06d01cc9963e0c59acde9f974e72..1020587efed19f6662ee5384e41b8dc72555ef61 100644 (file)
@@ -54,6 +54,9 @@ extern int of_mm_gpiochip_add(struct device_node *np,
                              struct of_mm_gpio_chip *mm_gc);
 extern int of_gpio_simple_xlate(struct gpio_chip *gc, struct device_node *np,
                                const void *gpio_spec, u32 *flags);
+
+extern struct gpio_chip *of_node_to_gpiochip(struct device_node *np);
+
 #else /* CONFIG_OF_GPIO */
 
 /* Drivers may not strictly depend on the GPIO support, so let them link. */