blob: 4aabddb38b593f3bafca1dfd21f44ab75c2fdc4f [file] [log] [blame]
Anton Vorontsov863fbf42008-04-11 23:06:45 +10001/*
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 Likely2e13cba2010-07-05 16:11:55 -060014#include <linux/device.h>
Sachin Kamatbea4dbe2014-01-27 12:15:08 +053015#include <linux/err.h>
Anton Vorontsov863fbf42008-04-11 23:06:45 +100016#include <linux/errno.h>
Grant Likely2e13cba2010-07-05 16:11:55 -060017#include <linux/module.h>
Anton Vorontsov863fbf42008-04-11 23:06:45 +100018#include <linux/io.h>
Linus Walleij7d4defe2016-06-08 10:58:20 +020019#include <linux/io-mapping.h>
Alexandre Courbotaf8b6372013-10-17 10:21:37 -070020#include <linux/gpio/consumer.h>
Anton Vorontsov863fbf42008-04-11 23:06:45 +100021#include <linux/of.h>
Grant Likely2e13cba2010-07-05 16:11:55 -060022#include <linux/of_address.h>
Anton Vorontsov863fbf42008-04-11 23:06:45 +100023#include <linux/of_gpio.h>
Shiraz Hashimf23f1512012-10-27 15:21:36 +053024#include <linux/pinctrl/pinctrl.h>
Grant Likely2e13cba2010-07-05 16:11:55 -060025#include <linux/slab.h>
Benoit Parrotf625d462015-02-02 11:44:44 -060026#include <linux/gpio/machine.h>
Anton Vorontsov863fbf42008-04-11 23:06:45 +100027
Alexandre Courbot1bd6b602014-07-22 16:17:41 +090028#include "gpiolib.h"
Alexandre Courbotaf8b6372013-10-17 10:21:37 -070029
Dong Aisheng0df2c992012-05-25 21:36:15 +080030/* Private data structure for of_gpiochip_find_and_xlate */
Grant Likely3d0f7cf2012-05-17 13:54:40 -060031struct gg_data {
32 enum of_gpio_flags *flags;
33 struct of_phandle_args gpiospec;
34
Alexandre Courbotaf8b6372013-10-17 10:21:37 -070035 struct gpio_desc *out_gpio;
Grant Likely3d0f7cf2012-05-17 13:54:40 -060036};
37
38/* Private function for resolving node pointer to gpio_chip */
39static int of_gpiochip_find_and_xlate(struct gpio_chip *gc, void *data)
40{
41 struct gg_data *gg_data = data;
42 int ret;
43
44 if ((gc->of_node != gg_data->gpiospec.np) ||
45 (gc->of_gpio_n_cells != gg_data->gpiospec.args_count) ||
46 (!gc->of_xlate))
47 return false;
48
49 ret = gc->of_xlate(gc, &gg_data->gpiospec, gg_data->flags);
Hans Holmberg7b8792b2015-01-09 09:40:43 +010050 if (ret < 0) {
Hans Holmberg9cf75e92015-02-10 09:48:27 +010051 /* We've found a gpio chip, but the translation failed.
52 * Store translation error in out_gpio.
53 * Return false to keep looking, as more than one gpio chip
54 * could be registered per of-node.
Hans Holmberg7b8792b2015-01-09 09:40:43 +010055 */
56 gg_data->out_gpio = ERR_PTR(ret);
Hans Holmberg9cf75e92015-02-10 09:48:27 +010057 return false;
Hans Holmberg7b8792b2015-01-09 09:40:43 +010058 }
Grant Likely3d0f7cf2012-05-17 13:54:40 -060059
Linus Walleijccd97262014-04-22 14:38:21 +020060 gg_data->out_gpio = gpiochip_get_desc(gc, ret);
Grant Likely3d0f7cf2012-05-17 13:54:40 -060061 return true;
62}
63
Anton Vorontsov863fbf42008-04-11 23:06:45 +100064/**
Alexandre Courbotaf8b6372013-10-17 10:21:37 -070065 * of_get_named_gpiod_flags() - Get a GPIO descriptor and flags for GPIO API
Anton Vorontsov863fbf42008-04-11 23:06:45 +100066 * @np: device node to get GPIO from
John Bonesioa6b09192011-06-27 16:49:57 -070067 * @propname: property name containing gpio specifier(s)
Anton Vorontsov863fbf42008-04-11 23:06:45 +100068 * @index: index of the GPIO
Anton Vorontsovb908b532008-12-01 06:30:04 +000069 * @flags: a flags pointer to fill in
Anton Vorontsov863fbf42008-04-11 23:06:45 +100070 *
Alexandre Courbotaf8b6372013-10-17 10:21:37 -070071 * Returns GPIO descriptor to use with Linux GPIO API, or one of the errno
Anton Vorontsovb908b532008-12-01 06:30:04 +000072 * value on the error condition. If @flags is not NULL the function also fills
73 * in flags for the GPIO.
Anton Vorontsov863fbf42008-04-11 23:06:45 +100074 */
Alexandre Courbotaf8b6372013-10-17 10:21:37 -070075struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
76 const char *propname, int index, enum of_gpio_flags *flags)
Anton Vorontsov863fbf42008-04-11 23:06:45 +100077{
Roland Stigge4fbb0022012-06-28 00:32:14 +020078 /* Return -EPROBE_DEFER to support probe() functions to be called
79 * later when the GPIO actually becomes available
80 */
Alexandre Courbotaf8b6372013-10-17 10:21:37 -070081 struct gg_data gg_data = {
82 .flags = flags,
83 .out_gpio = ERR_PTR(-EPROBE_DEFER)
84 };
Anton Vorontsov64b60e02008-10-10 04:43:17 +000085 int ret;
Anton Vorontsov863fbf42008-04-11 23:06:45 +100086
Grant Likely3d0f7cf2012-05-17 13:54:40 -060087 /* .of_xlate might decide to not fill in the flags, so clear it. */
Anton Vorontsovb908b532008-12-01 06:30:04 +000088 if (flags)
89 *flags = 0;
90
Grant Likely3d0f7cf2012-05-17 13:54:40 -060091 ret = of_parse_phandle_with_args(np, propname, "#gpio-cells", index,
92 &gg_data.gpiospec);
93 if (ret) {
Tushar Behera85ea29a2014-07-04 15:22:09 +053094 pr_debug("%s: can't parse '%s' property of node '%s[%d]'\n",
95 __func__, propname, np->full_name, index);
Alexandre Courbotaf8b6372013-10-17 10:21:37 -070096 return ERR_PTR(ret);
Grant Likely3d0f7cf2012-05-17 13:54:40 -060097 }
Anton Vorontsov863fbf42008-04-11 23:06:45 +100098
Grant Likely3d0f7cf2012-05-17 13:54:40 -060099 gpiochip_find(&gg_data, of_gpiochip_find_and_xlate);
100
101 of_node_put(gg_data.gpiospec.np);
Tushar Behera85ea29a2014-07-04 15:22:09 +0530102 pr_debug("%s: parsed '%s' property of node '%s[%d]' - status (%d)\n",
103 __func__, propname, np->full_name, index,
Sachin Kamatbea4dbe2014-01-27 12:15:08 +0530104 PTR_ERR_OR_ZERO(gg_data.out_gpio));
Grant Likely3d0f7cf2012-05-17 13:54:40 -0600105 return gg_data.out_gpio;
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000106}
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000107
Alexandre Courbotf01d9072014-05-17 14:54:50 +0900108int of_get_named_gpio_flags(struct device_node *np, const char *list_name,
109 int index, enum of_gpio_flags *flags)
110{
111 struct gpio_desc *desc;
112
113 desc = of_get_named_gpiod_flags(np, list_name, index, flags);
114
115 if (IS_ERR(desc))
116 return PTR_ERR(desc);
117 else
118 return desc_to_gpio(desc);
119}
120EXPORT_SYMBOL(of_get_named_gpio_flags);
121
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000122/**
Markus Pargmannfd7337f2015-08-14 16:10:58 +0200123 * of_parse_own_gpio() - Get a GPIO hog descriptor, names and flags for GPIO API
Benoit Parrotf625d462015-02-02 11:44:44 -0600124 * @np: device node to get GPIO from
125 * @name: GPIO line name
126 * @lflags: gpio_lookup_flags - returned from of_find_gpio() or
Markus Pargmannfd7337f2015-08-14 16:10:58 +0200127 * of_parse_own_gpio()
Benoit Parrotf625d462015-02-02 11:44:44 -0600128 * @dflags: gpiod_flags - optional GPIO initialization flags
129 *
130 * Returns GPIO descriptor to use with Linux GPIO API, or one of the errno
131 * value on the error condition.
132 */
Markus Pargmannfd7337f2015-08-14 16:10:58 +0200133static struct gpio_desc *of_parse_own_gpio(struct device_node *np,
134 const char **name,
135 enum gpio_lookup_flags *lflags,
136 enum gpiod_flags *dflags)
Benoit Parrotf625d462015-02-02 11:44:44 -0600137{
138 struct device_node *chip_np;
139 enum of_gpio_flags xlate_flags;
Benoit Parrotf625d462015-02-02 11:44:44 -0600140 struct gg_data gg_data = {
141 .flags = &xlate_flags,
142 };
143 u32 tmp;
144 int i, ret;
145
146 chip_np = np->parent;
147 if (!chip_np)
148 return ERR_PTR(-EINVAL);
149
150 xlate_flags = 0;
151 *lflags = 0;
152 *dflags = 0;
153
154 ret = of_property_read_u32(chip_np, "#gpio-cells", &tmp);
155 if (ret)
156 return ERR_PTR(ret);
157
158 if (tmp > MAX_PHANDLE_ARGS)
159 return ERR_PTR(-EINVAL);
160
161 gg_data.gpiospec.args_count = tmp;
162 gg_data.gpiospec.np = chip_np;
163 for (i = 0; i < tmp; i++) {
164 ret = of_property_read_u32_index(np, "gpios", i,
165 &gg_data.gpiospec.args[i]);
166 if (ret)
167 return ERR_PTR(ret);
168 }
169
170 gpiochip_find(&gg_data, of_gpiochip_find_and_xlate);
171 if (!gg_data.out_gpio) {
172 if (np->parent == np)
173 return ERR_PTR(-ENXIO);
174 else
175 return ERR_PTR(-EINVAL);
176 }
177
178 if (xlate_flags & OF_GPIO_ACTIVE_LOW)
179 *lflags |= GPIO_ACTIVE_LOW;
180
181 if (of_property_read_bool(np, "input"))
182 *dflags |= GPIOD_IN;
183 else if (of_property_read_bool(np, "output-low"))
184 *dflags |= GPIOD_OUT_LOW;
185 else if (of_property_read_bool(np, "output-high"))
186 *dflags |= GPIOD_OUT_HIGH;
187 else {
188 pr_warn("GPIO line %d (%s): no hogging state specified, bailing out\n",
189 desc_to_gpio(gg_data.out_gpio), np->name);
190 return ERR_PTR(-EINVAL);
191 }
192
193 if (name && of_property_read_string(np, "line-name", name))
194 *name = np->name;
195
Masahiro Yamada39561e82015-07-14 10:01:44 +0900196 return gg_data.out_gpio;
Benoit Parrotf625d462015-02-02 11:44:44 -0600197}
198
199/**
Linus Walleijfd9c5532016-04-19 15:26:26 +0200200 * of_gpiochip_set_names() - set up the names of the lines
201 * @chip: GPIO chip whose lines should be named, if possible
202 */
203static void of_gpiochip_set_names(struct gpio_chip *gc)
204{
205 struct gpio_device *gdev = gc->gpiodev;
206 struct device_node *np = gc->of_node;
207 int i;
208 int nstrings;
209
210 nstrings = of_property_count_strings(np, "gpio-line-names");
211 if (nstrings <= 0)
212 /* Lines names not present */
213 return;
214
215 /* This is normally not what you want */
216 if (gdev->ngpio != nstrings)
217 dev_info(&gdev->dev, "gpio-line-names specifies %d line "
218 "names but there are %d lines on the chip\n",
219 nstrings, gdev->ngpio);
220
221 /*
222 * Make sure to not index beyond the end of the number of descriptors
223 * of the GPIO device.
224 */
225 for (i = 0; i < gdev->ngpio; i++) {
226 const char *name;
227 int ret;
228
229 ret = of_property_read_string_index(np,
230 "gpio-line-names",
231 i,
232 &name);
233 if (ret) {
234 if (ret != -ENODATA)
235 dev_err(&gdev->dev,
236 "unable to name line %d: %d\n",
237 i, ret);
238 break;
239 }
240 gdev->descs[i].name = name;
241 }
242}
243
244/**
Markus Pargmannfd7337f2015-08-14 16:10:58 +0200245 * of_gpiochip_scan_gpios - Scan gpio-controller for gpio definitions
Benoit Parrotf625d462015-02-02 11:44:44 -0600246 * @chip: gpio chip to act on
247 *
248 * This is only used by of_gpiochip_add to request/set GPIO initial
249 * configuration.
Laxman Dewangandfbd3792016-03-11 19:13:22 +0530250 * It retures error if it fails otherwise 0 on success.
Benoit Parrotf625d462015-02-02 11:44:44 -0600251 */
Laxman Dewangandfbd3792016-03-11 19:13:22 +0530252static int of_gpiochip_scan_gpios(struct gpio_chip *chip)
Benoit Parrotf625d462015-02-02 11:44:44 -0600253{
254 struct gpio_desc *desc = NULL;
255 struct device_node *np;
256 const char *name;
257 enum gpio_lookup_flags lflags;
258 enum gpiod_flags dflags;
Laxman Dewangandfbd3792016-03-11 19:13:22 +0530259 int ret;
Benoit Parrotf625d462015-02-02 11:44:44 -0600260
Laxman Dewangand1279d92016-03-11 19:13:20 +0530261 for_each_available_child_of_node(chip->of_node, np) {
Benoit Parrotf625d462015-02-02 11:44:44 -0600262 if (!of_property_read_bool(np, "gpio-hog"))
263 continue;
264
Markus Pargmannfd7337f2015-08-14 16:10:58 +0200265 desc = of_parse_own_gpio(np, &name, &lflags, &dflags);
Benoit Parrotf625d462015-02-02 11:44:44 -0600266 if (IS_ERR(desc))
267 continue;
268
Laxman Dewangandfbd3792016-03-11 19:13:22 +0530269 ret = gpiod_hog(desc, name, lflags, dflags);
270 if (ret < 0)
271 return ret;
Benoit Parrotf625d462015-02-02 11:44:44 -0600272 }
Laxman Dewangandfbd3792016-03-11 19:13:22 +0530273
274 return 0;
Benoit Parrotf625d462015-02-02 11:44:44 -0600275}
276
277/**
Anton Vorontsovb908b532008-12-01 06:30:04 +0000278 * of_gpio_simple_xlate - translate gpio_spec to the GPIO number and flags
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600279 * @gc: pointer to the gpio_chip structure
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000280 * @np: device node of the GPIO chip
281 * @gpio_spec: gpio specifier as found in the device tree
Anton Vorontsovb908b532008-12-01 06:30:04 +0000282 * @flags: a flags pointer to fill in
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000283 *
284 * This is simple translation function, suitable for the most 1:1 mapped
285 * gpio chips. This function performs only one sanity check: whether gpio
286 * is less than ngpios (that is specified in the gpio_chip).
287 */
Grant Likely15c9a0a2011-12-12 09:25:57 -0700288int of_gpio_simple_xlate(struct gpio_chip *gc,
289 const struct of_phandle_args *gpiospec, u32 *flags)
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000290{
Anton Vorontsovb908b532008-12-01 06:30:04 +0000291 /*
292 * We're discouraging gpio_cells < 2, since that way you'll have to
Colin Cronin20a8a962015-05-18 11:41:43 -0700293 * write your own xlate function (that will have to retrieve the GPIO
Anton Vorontsovb908b532008-12-01 06:30:04 +0000294 * number and the flags from a single gpio cell -- this is possible,
295 * but not recommended).
296 */
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600297 if (gc->of_gpio_n_cells < 2) {
Anton Vorontsovb908b532008-12-01 06:30:04 +0000298 WARN_ON(1);
299 return -EINVAL;
300 }
301
Grant Likely15c9a0a2011-12-12 09:25:57 -0700302 if (WARN_ON(gpiospec->args_count < gc->of_gpio_n_cells))
303 return -EINVAL;
304
Roland Stigge6270d832012-04-04 02:02:58 +0200305 if (gpiospec->args[0] >= gc->ngpio)
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000306 return -EINVAL;
307
Anton Vorontsovb908b532008-12-01 06:30:04 +0000308 if (flags)
Grant Likely15c9a0a2011-12-12 09:25:57 -0700309 *flags = gpiospec->args[1];
Anton Vorontsovb908b532008-12-01 06:30:04 +0000310
Grant Likely15c9a0a2011-12-12 09:25:57 -0700311 return gpiospec->args[0];
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000312}
Jamie Iles3038bbd2011-07-28 16:25:41 +0100313EXPORT_SYMBOL(of_gpio_simple_xlate);
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000314
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000315/**
Linus Walleij3208b0f2015-12-04 15:13:53 +0100316 * of_mm_gpiochip_add_data - Add memory mapped GPIO chip (bank)
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000317 * @np: device node of the GPIO chip
318 * @mm_gc: pointer to the of_mm_gpio_chip allocated structure
Linus Walleij3208b0f2015-12-04 15:13:53 +0100319 * @data: driver data to store in the struct gpio_chip
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000320 *
321 * To use this function you should allocate and fill mm_gc with:
322 *
323 * 1) In the gpio_chip structure:
324 * - all the callbacks
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600325 * - of_gpio_n_cells
326 * - of_xlate callback (optional)
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000327 *
328 * 3) In the of_mm_gpio_chip structure:
329 * - save_regs callback (optional)
330 *
331 * If succeeded, this function will map bank's memory and will
332 * do all necessary work for you. Then you'll able to use .regs
333 * to manage GPIOs from the callbacks.
334 */
Linus Walleij3208b0f2015-12-04 15:13:53 +0100335int of_mm_gpiochip_add_data(struct device_node *np,
336 struct of_mm_gpio_chip *mm_gc,
337 void *data)
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000338{
339 int ret = -ENOMEM;
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600340 struct gpio_chip *gc = &mm_gc->gc;
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000341
342 gc->label = kstrdup(np->full_name, GFP_KERNEL);
343 if (!gc->label)
344 goto err0;
345
346 mm_gc->regs = of_iomap(np, 0);
347 if (!mm_gc->regs)
348 goto err1;
349
Anton Vorontsov21451152008-04-30 00:05:24 +1000350 gc->base = -1;
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000351
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000352 if (mm_gc->save_regs)
353 mm_gc->save_regs(mm_gc);
354
Anton Vorontsova19e3da2010-06-08 07:48:16 -0600355 mm_gc->gc.of_node = np;
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000356
Linus Walleij3208b0f2015-12-04 15:13:53 +0100357 ret = gpiochip_add_data(gc, data);
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000358 if (ret)
359 goto err2;
360
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000361 return 0;
362err2:
Anton Vorontsov863fbf42008-04-11 23:06:45 +1000363 iounmap(mm_gc->regs);
364err1:
365 kfree(gc->label);
366err0:
367 pr_err("%s: GPIO chip registration failed with status %d\n",
368 np->full_name, ret);
369 return ret;
370}
Linus Walleij3208b0f2015-12-04 15:13:53 +0100371EXPORT_SYMBOL(of_mm_gpiochip_add_data);
Grant Likely594fa262010-06-08 07:48:16 -0600372
Ricardo Ribalda Delgadod621e8b2014-12-17 16:51:13 +0100373/**
374 * of_mm_gpiochip_remove - Remove memory mapped GPIO chip (bank)
375 * @mm_gc: pointer to the of_mm_gpio_chip allocated structure
376 */
377void of_mm_gpiochip_remove(struct of_mm_gpio_chip *mm_gc)
378{
379 struct gpio_chip *gc = &mm_gc->gc;
380
381 if (!mm_gc)
382 return;
383
384 gpiochip_remove(gc);
385 iounmap(mm_gc->regs);
386 kfree(gc->label);
387}
388EXPORT_SYMBOL(of_mm_gpiochip_remove);
389
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530390#ifdef CONFIG_PINCTRL
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200391static int of_gpiochip_add_pin_range(struct gpio_chip *chip)
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530392{
393 struct device_node *np = chip->of_node;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530394 struct of_phandle_args pinspec;
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100395 struct pinctrl_dev *pctldev;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530396 int index = 0, ret;
Christian Ruppert586a87e2013-10-15 15:37:54 +0200397 const char *name;
398 static const char group_names_propname[] = "gpio-ranges-group-names";
399 struct property *group_names;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530400
401 if (!np)
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200402 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530403
Christian Ruppert586a87e2013-10-15 15:37:54 +0200404 group_names = of_find_property(np, group_names_propname, NULL);
405
Haojian Zhuangad4e1a72013-02-17 19:42:48 +0800406 for (;; index++) {
Stephen Warrend9fe0032013-08-14 15:27:12 -0600407 ret = of_parse_phandle_with_fixed_args(np, "gpio-ranges", 3,
408 index, &pinspec);
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530409 if (ret)
410 break;
411
Linus Walleij1e63d7b2012-11-06 16:03:35 +0100412 pctldev = of_pinctrl_get(pinspec.np);
413 if (!pctldev)
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200414 return -EPROBE_DEFER;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530415
Christian Ruppert586a87e2013-10-15 15:37:54 +0200416 if (pinspec.args[2]) {
417 if (group_names) {
Laurent Navet72858602015-07-07 22:22:15 +0200418 of_property_read_string_index(np,
Christian Ruppert586a87e2013-10-15 15:37:54 +0200419 group_names_propname,
420 index, &name);
421 if (strlen(name)) {
422 pr_err("%s: Group name of numeric GPIO ranges must be the empty string.\n",
423 np->full_name);
424 break;
425 }
426 }
427 /* npins != 0: linear range */
428 ret = gpiochip_add_pin_range(chip,
429 pinctrl_dev_get_devname(pctldev),
430 pinspec.args[0],
431 pinspec.args[1],
432 pinspec.args[2]);
433 if (ret)
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200434 return ret;
Christian Ruppert586a87e2013-10-15 15:37:54 +0200435 } else {
436 /* npins == 0: special range */
437 if (pinspec.args[1]) {
438 pr_err("%s: Illegal gpio-range format.\n",
439 np->full_name);
440 break;
441 }
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530442
Christian Ruppert586a87e2013-10-15 15:37:54 +0200443 if (!group_names) {
444 pr_err("%s: GPIO group range requested but no %s property.\n",
445 np->full_name, group_names_propname);
446 break;
447 }
448
449 ret = of_property_read_string_index(np,
450 group_names_propname,
451 index, &name);
452 if (ret)
453 break;
454
455 if (!strlen(name)) {
456 pr_err("%s: Group name of GPIO group range cannot be the empty string.\n",
457 np->full_name);
458 break;
459 }
460
461 ret = gpiochip_add_pingroup_range(chip, pctldev,
462 pinspec.args[0], name);
463 if (ret)
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200464 return ret;
Christian Ruppert586a87e2013-10-15 15:37:54 +0200465 }
Haojian Zhuangad4e1a72013-02-17 19:42:48 +0800466 }
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200467
468 return 0;
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530469}
470
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530471#else
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200472static int of_gpiochip_add_pin_range(struct gpio_chip *chip) { return 0; }
Shiraz Hashimf23f1512012-10-27 15:21:36 +0530473#endif
474
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200475int of_gpiochip_add(struct gpio_chip *chip)
Anton Vorontsov391c9702010-06-08 07:48:17 -0600476{
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200477 int status;
478
Linus Walleij58383c782015-11-04 09:56:26 +0100479 if ((!chip->of_node) && (chip->parent))
480 chip->of_node = chip->parent->of_node;
Anton Vorontsov391c9702010-06-08 07:48:17 -0600481
482 if (!chip->of_node)
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200483 return 0;
Anton Vorontsov391c9702010-06-08 07:48:17 -0600484
485 if (!chip->of_xlate) {
486 chip->of_gpio_n_cells = 2;
487 chip->of_xlate = of_gpio_simple_xlate;
488 }
489
Tomeu Vizoso28355f82015-07-14 10:29:54 +0200490 status = of_gpiochip_add_pin_range(chip);
491 if (status)
492 return status;
493
Linus Walleijfd9c5532016-04-19 15:26:26 +0200494 /* If the chip defines names itself, these take precedence */
495 if (!chip->names)
496 of_gpiochip_set_names(chip);
497
Anton Vorontsov391c9702010-06-08 07:48:17 -0600498 of_node_get(chip->of_node);
Benoit Parrotf625d462015-02-02 11:44:44 -0600499
Laxman Dewangandfbd3792016-03-11 19:13:22 +0530500 return of_gpiochip_scan_gpios(chip);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600501}
502
503void of_gpiochip_remove(struct gpio_chip *chip)
504{
Linus Walleije93fa3f2012-11-06 15:03:47 +0100505 gpiochip_remove_pin_ranges(chip);
Julia Lawall8a691552014-08-08 12:07:51 +0200506 of_node_put(chip->of_node);
Anton Vorontsov391c9702010-06-08 07:48:17 -0600507}