blob: 0acc2cc6e868fdefec661540d97513959e00575e [file] [log] [blame]
Linus Walleijdae5f0a2018-09-25 09:08:48 +02001/* SPDX-License-Identifier: GPL-2.0 */
John Crispin1a0703e2011-12-20 21:40:21 +01002/*
Linus Walleijdae5f0a2018-09-25 09:08:48 +02003 * devres.c - managed gpio resources
John Crispin1a0703e2011-12-20 21:40:21 +01004 * This file is based on kernel/irq/devres.c
5 *
John Crispinbaddc7c2016-12-20 19:57:55 +01006 * Copyright (c) 2011 John Crispin <john@phrozen.org>
John Crispin1a0703e2011-12-20 21:40:21 +01007 */
8
9#include <linux/module.h>
Alexandre Courbot3c2c6282013-10-20 15:14:58 -070010#include <linux/err.h>
John Crispin1a0703e2011-12-20 21:40:21 +010011#include <linux/gpio.h>
Alexandre Courbot3c2c6282013-10-20 15:14:58 -070012#include <linux/gpio/consumer.h>
John Crispin1a0703e2011-12-20 21:40:21 +010013#include <linux/device.h>
14#include <linux/gfp.h>
15
Andy Shevchenko200d0172017-01-03 19:00:20 +020016#include "gpiolib.h"
17
Alexandre Courbotbae48da2013-10-17 10:21:38 -070018static void devm_gpiod_release(struct device *dev, void *res)
19{
20 struct gpio_desc **desc = res;
21
22 gpiod_put(*desc);
23}
24
25static int devm_gpiod_match(struct device *dev, void *res, void *data)
26{
27 struct gpio_desc **this = res, **gpio = data;
28
29 return *this == *gpio;
30}
31
Rojhalat Ibrahim331758e2015-02-11 17:28:02 +010032static void devm_gpiod_release_array(struct device *dev, void *res)
33{
34 struct gpio_descs **descs = res;
35
36 gpiod_put_array(*descs);
37}
38
39static int devm_gpiod_match_array(struct device *dev, void *res, void *data)
40{
41 struct gpio_descs **this = res, **gpios = data;
42
43 return *this == *gpios;
44}
45
Alexandre Courbotbae48da2013-10-17 10:21:38 -070046/**
47 * devm_gpiod_get - Resource-managed gpiod_get()
48 * @dev: GPIO consumer
49 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +090050 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -070051 *
52 * Managed gpiod_get(). GPIO descriptors returned from this function are
53 * automatically disposed on driver detach. See gpiod_get() for detailed
54 * information about behavior and return values.
55 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +010056struct gpio_desc *__must_check devm_gpiod_get(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +090057 const char *con_id,
58 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -070059{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +090060 return devm_gpiod_get_index(dev, con_id, 0, flags);
Alexandre Courbotbae48da2013-10-17 10:21:38 -070061}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +010062EXPORT_SYMBOL(devm_gpiod_get);
Alexandre Courbotbae48da2013-10-17 10:21:38 -070063
64/**
Thierry Reding29a1f2332014-04-25 17:10:06 +020065 * devm_gpiod_get_optional - Resource-managed gpiod_get_optional()
66 * @dev: GPIO consumer
67 * @con_id: function within the GPIO consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +090068 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +020069 *
70 * Managed gpiod_get_optional(). GPIO descriptors returned from this function
71 * are automatically disposed on driver detach. See gpiod_get_optional() for
72 * detailed information about behavior and return values.
73 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +010074struct gpio_desc *__must_check devm_gpiod_get_optional(struct device *dev,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +090075 const char *con_id,
76 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +020077{
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +090078 return devm_gpiod_get_index_optional(dev, con_id, 0, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +020079}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +010080EXPORT_SYMBOL(devm_gpiod_get_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +020081
82/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -070083 * devm_gpiod_get_index - Resource-managed gpiod_get_index()
84 * @dev: GPIO consumer
85 * @con_id: function within the GPIO consumer
86 * @idx: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +090087 * @flags: optional GPIO initialization flags
Alexandre Courbotbae48da2013-10-17 10:21:38 -070088 *
89 * Managed gpiod_get_index(). GPIO descriptors returned from this function are
90 * automatically disposed on driver detach. See gpiod_get_index() for detailed
91 * information about behavior and return values.
92 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +010093struct gpio_desc *__must_check devm_gpiod_get_index(struct device *dev,
Alexandre Courbotbae48da2013-10-17 10:21:38 -070094 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +090095 unsigned int idx,
96 enum gpiod_flags flags)
Alexandre Courbotbae48da2013-10-17 10:21:38 -070097{
98 struct gpio_desc **dr;
99 struct gpio_desc *desc;
100
Linus Walleijcb28ee32018-12-06 13:43:45 +0100101 desc = gpiod_get_index(dev, con_id, idx, flags);
102 if (IS_ERR(desc))
103 return desc;
104
105 /*
106 * For non-exclusive GPIO descriptors, check if this descriptor is
107 * already under resource management by this device.
108 */
109 if (flags & GPIOD_FLAGS_BIT_NONEXCLUSIVE) {
110 struct devres *dres;
111
112 dres = devres_find(dev, devm_gpiod_release,
113 devm_gpiod_match, &desc);
114 if (dres)
115 return desc;
116 }
117
Julia Lawall0f05a3a2014-07-29 17:16:48 +0200118 dr = devres_alloc(devm_gpiod_release, sizeof(struct gpio_desc *),
Alexandre Courbotbae48da2013-10-17 10:21:38 -0700119 GFP_KERNEL);
Linus Walleijcb28ee32018-12-06 13:43:45 +0100120 if (!dr) {
121 gpiod_put(desc);
Alexandre Courbotbae48da2013-10-17 10:21:38 -0700122 return ERR_PTR(-ENOMEM);
Alexandre Courbotbae48da2013-10-17 10:21:38 -0700123 }
124
125 *dr = desc;
126 devres_add(dev, dr);
127
Alexandre Courbot5fcdb9d2013-10-20 15:14:57 -0700128 return desc;
Alexandre Courbotbae48da2013-10-17 10:21:38 -0700129}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +0100130EXPORT_SYMBOL(devm_gpiod_get_index);
Alexandre Courbotbae48da2013-10-17 10:21:38 -0700131
132/**
Linus Walleij92542ed2017-12-29 22:52:02 +0100133 * devm_gpiod_get_from_of_node() - obtain a GPIO from an OF node
134 * @dev: device for lifecycle management
135 * @node: handle of the OF node
136 * @propname: name of the DT property representing the GPIO
137 * @index: index of the GPIO to obtain for the consumer
138 * @dflags: GPIO initialization flags
139 * @label: label to attach to the requested GPIO
140 *
141 * Returns:
142 * On successful request the GPIO pin is configured in accordance with
143 * provided @dflags.
144 *
145 * In case of error an ERR_PTR() is returned.
146 */
147struct gpio_desc *devm_gpiod_get_from_of_node(struct device *dev,
148 struct device_node *node,
149 const char *propname, int index,
150 enum gpiod_flags dflags,
151 const char *label)
152{
153 struct gpio_desc **dr;
154 struct gpio_desc *desc;
155
Linus Walleijcb28ee32018-12-06 13:43:45 +0100156 desc = gpiod_get_from_of_node(node, propname, index, dflags, label);
157 if (IS_ERR(desc))
158 return desc;
159
160 /*
161 * For non-exclusive GPIO descriptors, check if this descriptor is
162 * already under resource management by this device.
163 */
164 if (dflags & GPIOD_FLAGS_BIT_NONEXCLUSIVE) {
165 struct devres *dres;
166
167 dres = devres_find(dev, devm_gpiod_release,
168 devm_gpiod_match, &desc);
169 if (dres)
170 return desc;
171 }
172
Linus Walleij92542ed2017-12-29 22:52:02 +0100173 dr = devres_alloc(devm_gpiod_release, sizeof(struct gpio_desc *),
174 GFP_KERNEL);
Linus Walleijcb28ee32018-12-06 13:43:45 +0100175 if (!dr) {
176 gpiod_put(desc);
Linus Walleij92542ed2017-12-29 22:52:02 +0100177 return ERR_PTR(-ENOMEM);
Linus Walleij92542ed2017-12-29 22:52:02 +0100178 }
179
180 *dr = desc;
181 devres_add(dev, dr);
182
183 return desc;
184}
185EXPORT_SYMBOL(devm_gpiod_get_from_of_node);
186
187/**
Boris Brezillon537b94d2017-02-02 14:53:11 +0100188 * devm_fwnode_get_index_gpiod_from_child - get a GPIO descriptor from a
189 * device's child node
Mika Westerberg40b73182014-10-21 13:33:59 +0200190 * @dev: GPIO consumer
Olliver Schinagl1feb57a2015-01-21 22:33:46 +0100191 * @con_id: function within the GPIO consumer
Boris Brezillon537b94d2017-02-02 14:53:11 +0100192 * @index: index of the GPIO to obtain in the consumer
Mika Westerberg40b73182014-10-21 13:33:59 +0200193 * @child: firmware node (child of @dev)
Andy Shevchenkoa264d102017-01-09 16:02:28 +0200194 * @flags: GPIO initialization flags
Thierry Reding2b7c8092017-07-24 16:57:24 +0200195 * @label: label to attach to the requested GPIO
Mika Westerberg40b73182014-10-21 13:33:59 +0200196 *
197 * GPIO descriptors returned from this function are automatically disposed on
198 * driver detach.
Andy Shevchenkoa264d102017-01-09 16:02:28 +0200199 *
Andy Shevchenkoff213782017-02-28 17:03:12 +0200200 * On successful request the GPIO pin is configured in accordance with
Andy Shevchenkoa264d102017-01-09 16:02:28 +0200201 * provided @flags.
Mika Westerberg40b73182014-10-21 13:33:59 +0200202 */
Boris Brezillon537b94d2017-02-02 14:53:11 +0100203struct gpio_desc *devm_fwnode_get_index_gpiod_from_child(struct device *dev,
204 const char *con_id, int index,
205 struct fwnode_handle *child,
206 enum gpiod_flags flags,
207 const char *label)
Mika Westerberg40b73182014-10-21 13:33:59 +0200208{
Olliver Schinagl1feb57a2015-01-21 22:33:46 +0100209 char prop_name[32]; /* 32 is max size of property name */
Mika Westerberg40b73182014-10-21 13:33:59 +0200210 struct gpio_desc **dr;
211 struct gpio_desc *desc;
Olliver Schinagl1feb57a2015-01-21 22:33:46 +0100212 unsigned int i;
Mika Westerberg40b73182014-10-21 13:33:59 +0200213
214 dr = devres_alloc(devm_gpiod_release, sizeof(struct gpio_desc *),
215 GFP_KERNEL);
216 if (!dr)
217 return ERR_PTR(-ENOMEM);
218
Andy Shevchenko200d0172017-01-03 19:00:20 +0200219 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
Olliver Schinagl1feb57a2015-01-21 22:33:46 +0100220 if (con_id)
221 snprintf(prop_name, sizeof(prop_name), "%s-%s",
Andy Shevchenko200d0172017-01-03 19:00:20 +0200222 con_id, gpio_suffixes[i]);
Olliver Schinagl1feb57a2015-01-21 22:33:46 +0100223 else
224 snprintf(prop_name, sizeof(prop_name), "%s",
Andy Shevchenko200d0172017-01-03 19:00:20 +0200225 gpio_suffixes[i]);
Olliver Schinagl1feb57a2015-01-21 22:33:46 +0100226
Boris Brezillon537b94d2017-02-02 14:53:11 +0100227 desc = fwnode_get_named_gpiod(child, prop_name, index, flags,
228 label);
Geert Uytterhoeven40c8eab2016-02-19 11:00:50 +0100229 if (!IS_ERR(desc) || (PTR_ERR(desc) != -ENOENT))
Olliver Schinagl1feb57a2015-01-21 22:33:46 +0100230 break;
231 }
Mika Westerberg40b73182014-10-21 13:33:59 +0200232 if (IS_ERR(desc)) {
233 devres_free(dr);
234 return desc;
235 }
236
237 *dr = desc;
238 devres_add(dev, dr);
239
240 return desc;
241}
Boris Brezillon537b94d2017-02-02 14:53:11 +0100242EXPORT_SYMBOL(devm_fwnode_get_index_gpiod_from_child);
Mika Westerberg40b73182014-10-21 13:33:59 +0200243
244/**
Thierry Reding29a1f2332014-04-25 17:10:06 +0200245 * devm_gpiod_get_index_optional - Resource-managed gpiod_get_index_optional()
246 * @dev: GPIO consumer
247 * @con_id: function within the GPIO consumer
248 * @index: index of the GPIO to obtain in the consumer
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +0900249 * @flags: optional GPIO initialization flags
Thierry Reding29a1f2332014-04-25 17:10:06 +0200250 *
251 * Managed gpiod_get_index_optional(). GPIO descriptors returned from this
252 * function are automatically disposed on driver detach. See
253 * gpiod_get_index_optional() for detailed information about behavior and
254 * return values.
255 */
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +0100256struct gpio_desc *__must_check devm_gpiod_get_index_optional(struct device *dev,
Thierry Reding29a1f2332014-04-25 17:10:06 +0200257 const char *con_id,
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +0900258 unsigned int index,
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +0100259 enum gpiod_flags flags)
Thierry Reding29a1f2332014-04-25 17:10:06 +0200260{
261 struct gpio_desc *desc;
262
Alexandre Courbot39b2bbe2014-07-25 23:38:36 +0900263 desc = devm_gpiod_get_index(dev, con_id, index, flags);
Thierry Reding29a1f2332014-04-25 17:10:06 +0200264 if (IS_ERR(desc)) {
265 if (PTR_ERR(desc) == -ENOENT)
266 return NULL;
267 }
268
269 return desc;
270}
Uwe Kleine-Königb17d1bf2015-02-11 11:52:37 +0100271EXPORT_SYMBOL(devm_gpiod_get_index_optional);
Thierry Reding29a1f2332014-04-25 17:10:06 +0200272
273/**
Rojhalat Ibrahim331758e2015-02-11 17:28:02 +0100274 * devm_gpiod_get_array - Resource-managed gpiod_get_array()
275 * @dev: GPIO consumer
276 * @con_id: function within the GPIO consumer
277 * @flags: optional GPIO initialization flags
278 *
279 * Managed gpiod_get_array(). GPIO descriptors returned from this function are
280 * automatically disposed on driver detach. See gpiod_get_array() for detailed
281 * information about behavior and return values.
282 */
283struct gpio_descs *__must_check devm_gpiod_get_array(struct device *dev,
284 const char *con_id,
285 enum gpiod_flags flags)
286{
287 struct gpio_descs **dr;
288 struct gpio_descs *descs;
289
290 dr = devres_alloc(devm_gpiod_release_array,
291 sizeof(struct gpio_descs *), GFP_KERNEL);
292 if (!dr)
293 return ERR_PTR(-ENOMEM);
294
295 descs = gpiod_get_array(dev, con_id, flags);
296 if (IS_ERR(descs)) {
297 devres_free(dr);
298 return descs;
299 }
300
301 *dr = descs;
302 devres_add(dev, dr);
303
304 return descs;
305}
306EXPORT_SYMBOL(devm_gpiod_get_array);
307
308/**
309 * devm_gpiod_get_array_optional - Resource-managed gpiod_get_array_optional()
310 * @dev: GPIO consumer
311 * @con_id: function within the GPIO consumer
312 * @flags: optional GPIO initialization flags
313 *
314 * Managed gpiod_get_array_optional(). GPIO descriptors returned from this
315 * function are automatically disposed on driver detach.
316 * See gpiod_get_array_optional() for detailed information about behavior and
317 * return values.
318 */
319struct gpio_descs *__must_check
320devm_gpiod_get_array_optional(struct device *dev, const char *con_id,
321 enum gpiod_flags flags)
322{
323 struct gpio_descs *descs;
324
325 descs = devm_gpiod_get_array(dev, con_id, flags);
326 if (IS_ERR(descs) && (PTR_ERR(descs) == -ENOENT))
327 return NULL;
328
329 return descs;
330}
331EXPORT_SYMBOL(devm_gpiod_get_array_optional);
332
333/**
Alexandre Courbotbae48da2013-10-17 10:21:38 -0700334 * devm_gpiod_put - Resource-managed gpiod_put()
Thierry Reding2b7c8092017-07-24 16:57:24 +0200335 * @dev: GPIO consumer
Alexandre Courbotbae48da2013-10-17 10:21:38 -0700336 * @desc: GPIO descriptor to dispose of
337 *
338 * Dispose of a GPIO descriptor obtained with devm_gpiod_get() or
339 * devm_gpiod_get_index(). Normally this function will not be called as the GPIO
340 * will be disposed of by the resource management code.
341 */
342void devm_gpiod_put(struct device *dev, struct gpio_desc *desc)
343{
344 WARN_ON(devres_release(dev, devm_gpiod_release, devm_gpiod_match,
345 &desc));
346}
347EXPORT_SYMBOL(devm_gpiod_put);
348
Rojhalat Ibrahim331758e2015-02-11 17:28:02 +0100349/**
Linus Walleij891ddbc2018-12-06 13:43:46 +0100350 * devm_gpiod_unhinge - Remove resource management from a gpio descriptor
351 * @dev: GPIO consumer
352 * @desc: GPIO descriptor to remove resource management from
353 *
354 * Remove resource management from a GPIO descriptor. This is needed when
355 * you want to hand over lifecycle management of a descriptor to another
356 * mechanism.
357 */
358
359void devm_gpiod_unhinge(struct device *dev, struct gpio_desc *desc)
360{
361 int ret;
362
363 if (IS_ERR_OR_NULL(desc))
364 return;
365 ret = devres_destroy(dev, devm_gpiod_release,
366 devm_gpiod_match, &desc);
367 /*
368 * If the GPIO descriptor is requested as nonexclusive, we
369 * may call this function several times on the same descriptor
370 * so it is OK if devres_destroy() returns -ENOENT.
371 */
372 if (ret == -ENOENT)
373 return;
374 /* Anything else we should warn about */
375 WARN_ON(ret);
376}
377EXPORT_SYMBOL(devm_gpiod_unhinge);
378
379/**
Rojhalat Ibrahim331758e2015-02-11 17:28:02 +0100380 * devm_gpiod_put_array - Resource-managed gpiod_put_array()
Thierry Reding2b7c8092017-07-24 16:57:24 +0200381 * @dev: GPIO consumer
Rojhalat Ibrahim331758e2015-02-11 17:28:02 +0100382 * @descs: GPIO descriptor array to dispose of
383 *
384 * Dispose of an array of GPIO descriptors obtained with devm_gpiod_get_array().
385 * Normally this function will not be called as the GPIOs will be disposed of
386 * by the resource management code.
387 */
388void devm_gpiod_put_array(struct device *dev, struct gpio_descs *descs)
389{
390 WARN_ON(devres_release(dev, devm_gpiod_release_array,
391 devm_gpiod_match_array, &descs));
392}
393EXPORT_SYMBOL(devm_gpiod_put_array);
394
Alexandre Courbotbae48da2013-10-17 10:21:38 -0700395
396
397
John Crispin1a0703e2011-12-20 21:40:21 +0100398static void devm_gpio_release(struct device *dev, void *res)
399{
400 unsigned *gpio = res;
401
402 gpio_free(*gpio);
403}
404
405static int devm_gpio_match(struct device *dev, void *res, void *data)
406{
407 unsigned *this = res, *gpio = data;
408
409 return *this == *gpio;
410}
411
412/**
Wolfram Sang713b7ef2013-06-04 17:48:36 +0200413 * devm_gpio_request - request a GPIO for a managed device
414 * @dev: device to request the GPIO for
415 * @gpio: GPIO to allocate
416 * @label: the name of the requested GPIO
John Crispin1a0703e2011-12-20 21:40:21 +0100417 *
418 * Except for the extra @dev argument, this function takes the
419 * same arguments and performs the same function as
420 * gpio_request(). GPIOs requested with this function will be
421 * automatically freed on driver detach.
422 *
423 * If an GPIO allocated with this function needs to be freed
424 * separately, devm_gpio_free() must be used.
425 */
426
427int devm_gpio_request(struct device *dev, unsigned gpio, const char *label)
428{
429 unsigned *dr;
430 int rc;
431
432 dr = devres_alloc(devm_gpio_release, sizeof(unsigned), GFP_KERNEL);
433 if (!dr)
434 return -ENOMEM;
435
436 rc = gpio_request(gpio, label);
437 if (rc) {
438 devres_free(dr);
439 return rc;
440 }
441
442 *dr = gpio;
443 devres_add(dev, dr);
444
445 return 0;
446}
447EXPORT_SYMBOL(devm_gpio_request);
448
449/**
Mark Brown09d71ff2012-05-02 12:46:46 +0100450 * devm_gpio_request_one - request a single GPIO with initial setup
451 * @dev: device to request for
452 * @gpio: the GPIO number
453 * @flags: GPIO configuration as specified by GPIOF_*
454 * @label: a literal description string of this GPIO
455 */
456int devm_gpio_request_one(struct device *dev, unsigned gpio,
457 unsigned long flags, const char *label)
458{
459 unsigned *dr;
460 int rc;
461
462 dr = devres_alloc(devm_gpio_release, sizeof(unsigned), GFP_KERNEL);
463 if (!dr)
464 return -ENOMEM;
465
466 rc = gpio_request_one(gpio, flags, label);
467 if (rc) {
468 devres_free(dr);
469 return rc;
470 }
471
472 *dr = gpio;
473 devres_add(dev, dr);
474
475 return 0;
476}
Stephen Warren3996bfc2012-06-07 17:56:09 -0600477EXPORT_SYMBOL(devm_gpio_request_one);
Mark Brown09d71ff2012-05-02 12:46:46 +0100478
479/**
Wolfram Sang713b7ef2013-06-04 17:48:36 +0200480 * devm_gpio_free - free a GPIO
481 * @dev: device to free GPIO for
482 * @gpio: GPIO to free
John Crispin1a0703e2011-12-20 21:40:21 +0100483 *
484 * Except for the extra @dev argument, this function takes the
485 * same arguments and performs the same function as gpio_free().
486 * This function instead of gpio_free() should be used to manually
487 * free GPIOs allocated with devm_gpio_request().
488 */
489void devm_gpio_free(struct device *dev, unsigned int gpio)
490{
491
Mark Browna85990b2012-05-03 18:15:14 +0100492 WARN_ON(devres_release(dev, devm_gpio_release, devm_gpio_match,
John Crispin1a0703e2011-12-20 21:40:21 +0100493 &gpio));
John Crispin1a0703e2011-12-20 21:40:21 +0100494}
495EXPORT_SYMBOL(devm_gpio_free);