Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 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 | |
Grant Likely | 2e13cba | 2010-07-05 16:11:55 -0600 | [diff] [blame] | 14 | #include <linux/device.h> |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 15 | #include <linux/errno.h> |
Grant Likely | 2e13cba | 2010-07-05 16:11:55 -0600 | [diff] [blame] | 16 | #include <linux/module.h> |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 17 | #include <linux/io.h> |
| 18 | #include <linux/of.h> |
Grant Likely | 2e13cba | 2010-07-05 16:11:55 -0600 | [diff] [blame] | 19 | #include <linux/of_address.h> |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 20 | #include <linux/of_gpio.h> |
Grant Likely | 2e13cba | 2010-07-05 16:11:55 -0600 | [diff] [blame] | 21 | #include <linux/slab.h> |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 22 | |
| 23 | /** |
John Bonesio | a6b0919 | 2011-06-27 16:49:57 -0700 | [diff] [blame] | 24 | * of_get_named_gpio_flags() - Get a GPIO number and flags to use with GPIO API |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 25 | * @np: device node to get GPIO from |
John Bonesio | a6b0919 | 2011-06-27 16:49:57 -0700 | [diff] [blame] | 26 | * @propname: property name containing gpio specifier(s) |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 27 | * @index: index of the GPIO |
Anton Vorontsov | b908b53 | 2008-12-01 06:30:04 +0000 | [diff] [blame] | 28 | * @flags: a flags pointer to fill in |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 29 | * |
| 30 | * Returns GPIO number to use with Linux generic GPIO API, or one of the errno |
Anton Vorontsov | b908b53 | 2008-12-01 06:30:04 +0000 | [diff] [blame] | 31 | * value on the error condition. If @flags is not NULL the function also fills |
| 32 | * in flags for the GPIO. |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 33 | */ |
John Bonesio | a6b0919 | 2011-06-27 16:49:57 -0700 | [diff] [blame] | 34 | int of_get_named_gpio_flags(struct device_node *np, const char *propname, |
| 35 | int index, enum of_gpio_flags *flags) |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 36 | { |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 37 | int ret; |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 38 | struct gpio_chip *gc; |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 39 | struct of_phandle_args gpiospec; |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 40 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 41 | ret = of_parse_phandle_with_args(np, propname, "#gpio-cells", index, |
| 42 | &gpiospec); |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 43 | if (ret) { |
| 44 | pr_debug("%s: can't parse gpios property\n", __func__); |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 45 | goto err0; |
| 46 | } |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 47 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 48 | gc = of_node_to_gpiochip(gpiospec.np); |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 49 | if (!gc) { |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 50 | pr_debug("%s: gpio controller %s isn't registered\n", |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 51 | np->full_name, gpiospec.np->full_name); |
Roland Stigge | bc841ce | 2012-06-28 00:32:14 +0200 | [diff] [blame] | 52 | ret = -EPROBE_DEFER; |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 53 | goto err1; |
| 54 | } |
| 55 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 56 | if (gpiospec.args_count != gc->of_gpio_n_cells) { |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 57 | pr_debug("%s: wrong #gpio-cells for %s\n", |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 58 | np->full_name, gpiospec.np->full_name); |
Anton Vorontsov | 64b60e0 | 2008-10-10 04:43:17 +0000 | [diff] [blame] | 59 | ret = -EINVAL; |
| 60 | goto err1; |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 61 | } |
| 62 | |
Anton Vorontsov | b908b53 | 2008-12-01 06:30:04 +0000 | [diff] [blame] | 63 | /* .xlate might decide to not fill in the flags, so clear it. */ |
| 64 | if (flags) |
| 65 | *flags = 0; |
| 66 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 67 | ret = gc->of_xlate(gc, &gpiospec, flags); |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 68 | if (ret < 0) |
| 69 | goto err1; |
| 70 | |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 71 | ret += gc->base; |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 72 | err1: |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 73 | of_node_put(gpiospec.np); |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 74 | err0: |
| 75 | pr_debug("%s exited with status %d\n", __func__, ret); |
| 76 | return ret; |
| 77 | } |
John Bonesio | a6b0919 | 2011-06-27 16:49:57 -0700 | [diff] [blame] | 78 | EXPORT_SYMBOL(of_get_named_gpio_flags); |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 79 | |
| 80 | /** |
Jean-Christophe PLAGNIOL-VILLARD | ff64abe | 2012-02-02 16:20:01 +0100 | [diff] [blame] | 81 | * of_gpio_named_count - Count GPIOs for a device |
Anton Vorontsov | 7498209 | 2008-12-05 08:15:54 +0000 | [diff] [blame] | 82 | * @np: device node to count GPIOs for |
Jean-Christophe PLAGNIOL-VILLARD | ff64abe | 2012-02-02 16:20:01 +0100 | [diff] [blame] | 83 | * @propname: property name containing gpio specifier(s) |
Anton Vorontsov | 7498209 | 2008-12-05 08:15:54 +0000 | [diff] [blame] | 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 | */ |
Jean-Christophe PLAGNIOL-VILLARD | ff64abe | 2012-02-02 16:20:01 +0100 | [diff] [blame] | 97 | unsigned int of_gpio_named_count(struct device_node *np, const char* propname) |
Anton Vorontsov | 7498209 | 2008-12-05 08:15:54 +0000 | [diff] [blame] | 98 | { |
| 99 | unsigned int cnt = 0; |
| 100 | |
| 101 | do { |
| 102 | int ret; |
| 103 | |
Jean-Christophe PLAGNIOL-VILLARD | ff64abe | 2012-02-02 16:20:01 +0100 | [diff] [blame] | 104 | ret = of_parse_phandle_with_args(np, propname, "#gpio-cells", |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 105 | cnt, NULL); |
Anton Vorontsov | 7498209 | 2008-12-05 08:15:54 +0000 | [diff] [blame] | 106 | /* A hole in the gpios = <> counts anyway. */ |
| 107 | if (ret < 0 && ret != -EEXIST) |
| 108 | break; |
| 109 | } while (++cnt); |
| 110 | |
| 111 | return cnt; |
| 112 | } |
Jean-Christophe PLAGNIOL-VILLARD | ff64abe | 2012-02-02 16:20:01 +0100 | [diff] [blame] | 113 | EXPORT_SYMBOL(of_gpio_named_count); |
Anton Vorontsov | 7498209 | 2008-12-05 08:15:54 +0000 | [diff] [blame] | 114 | |
| 115 | /** |
Anton Vorontsov | b908b53 | 2008-12-01 06:30:04 +0000 | [diff] [blame] | 116 | * of_gpio_simple_xlate - translate gpio_spec to the GPIO number and flags |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 117 | * @gc: pointer to the gpio_chip structure |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 118 | * @np: device node of the GPIO chip |
| 119 | * @gpio_spec: gpio specifier as found in the device tree |
Anton Vorontsov | b908b53 | 2008-12-01 06:30:04 +0000 | [diff] [blame] | 120 | * @flags: a flags pointer to fill in |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 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 | */ |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 126 | int of_gpio_simple_xlate(struct gpio_chip *gc, |
| 127 | const struct of_phandle_args *gpiospec, u32 *flags) |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 128 | { |
Anton Vorontsov | b908b53 | 2008-12-01 06:30:04 +0000 | [diff] [blame] | 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 | */ |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 135 | if (gc->of_gpio_n_cells < 2) { |
Anton Vorontsov | b908b53 | 2008-12-01 06:30:04 +0000 | [diff] [blame] | 136 | WARN_ON(1); |
| 137 | return -EINVAL; |
| 138 | } |
| 139 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 140 | if (WARN_ON(gpiospec->args_count < gc->of_gpio_n_cells)) |
| 141 | return -EINVAL; |
| 142 | |
Roland Stigge | 6270d83 | 2012-04-04 02:02:58 +0200 | [diff] [blame] | 143 | if (gpiospec->args[0] >= gc->ngpio) |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 144 | return -EINVAL; |
| 145 | |
Anton Vorontsov | b908b53 | 2008-12-01 06:30:04 +0000 | [diff] [blame] | 146 | if (flags) |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 147 | *flags = gpiospec->args[1]; |
Anton Vorontsov | b908b53 | 2008-12-01 06:30:04 +0000 | [diff] [blame] | 148 | |
Grant Likely | 15c9a0a | 2011-12-12 09:25:57 -0700 | [diff] [blame] | 149 | return gpiospec->args[0]; |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 150 | } |
Jamie Iles | 3038bbd | 2011-07-28 16:25:41 +0100 | [diff] [blame] | 151 | EXPORT_SYMBOL(of_gpio_simple_xlate); |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 152 | |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 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 |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 162 | * - of_gpio_n_cells |
| 163 | * - of_xlate callback (optional) |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 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 | */ |
| 172 | int of_mm_gpiochip_add(struct device_node *np, |
| 173 | struct of_mm_gpio_chip *mm_gc) |
| 174 | { |
| 175 | int ret = -ENOMEM; |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 176 | struct gpio_chip *gc = &mm_gc->gc; |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 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 | |
Anton Vorontsov | 2145115 | 2008-04-30 00:05:24 +1000 | [diff] [blame] | 186 | gc->base = -1; |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 187 | |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 188 | if (mm_gc->save_regs) |
| 189 | mm_gc->save_regs(mm_gc); |
| 190 | |
Anton Vorontsov | a19e3da | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 191 | mm_gc->gc.of_node = np; |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 192 | |
| 193 | ret = gpiochip_add(gc); |
| 194 | if (ret) |
| 195 | goto err2; |
| 196 | |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 197 | return 0; |
| 198 | err2: |
Anton Vorontsov | 863fbf4 | 2008-04-11 23:06:45 +1000 | [diff] [blame] | 199 | iounmap(mm_gc->regs); |
| 200 | err1: |
| 201 | kfree(gc->label); |
| 202 | err0: |
| 203 | pr_err("%s: GPIO chip registration failed with status %d\n", |
| 204 | np->full_name, ret); |
| 205 | return ret; |
| 206 | } |
| 207 | EXPORT_SYMBOL(of_mm_gpiochip_add); |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 208 | |
Anton Vorontsov | 391c970 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 209 | void 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 | |
| 225 | void of_gpiochip_remove(struct gpio_chip *chip) |
| 226 | { |
| 227 | if (chip->of_node) |
| 228 | of_node_put(chip->of_node); |
| 229 | } |
| 230 | |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 231 | /* Private function for resolving node pointer to gpio_chip */ |
Grant Likely | 6e2cf65 | 2012-03-02 15:56:03 -0700 | [diff] [blame] | 232 | static int of_gpiochip_is_match(struct gpio_chip *chip, const void *data) |
Grant Likely | 594fa26 | 2010-06-08 07:48:16 -0600 | [diff] [blame] | 233 | { |
| 234 | return chip->of_node == data; |
| 235 | } |
| 236 | |
| 237 | struct gpio_chip *of_node_to_gpiochip(struct device_node *np) |
| 238 | { |
| 239 | return gpiochip_find(np, of_gpiochip_is_match); |
| 240 | } |