2 * drivers/gpio/devres.c - managed gpio resources
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2
6 * as published by the Free Software Foundation.
8 * You should have received a copy of the GNU General Public License
9 * along with this program; if not, write to the Free Software
10 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
12 * This file is based on kernel/irq/devres.c
14 * Copyright (c) 2011 John Crispin <blogic@openwrt.org>
17 #include <linux/module.h>
18 #include <linux/gpio.h>
19 #include <linux/device.h>
20 #include <linux/gfp.h>
22 static void devm_gpio_release(struct device
*dev
, void *res
)
29 static int devm_gpio_match(struct device
*dev
, void *res
, void *data
)
31 unsigned *this = res
, *gpio
= data
;
33 return *this == *gpio
;
37 * devm_gpio_request - request a gpio for a managed device
38 * @dev: device to request the gpio for
39 * @gpio: gpio to allocate
40 * @label: the name of the requested gpio
42 * Except for the extra @dev argument, this function takes the
43 * same arguments and performs the same function as
44 * gpio_request(). GPIOs requested with this function will be
45 * automatically freed on driver detach.
47 * If an GPIO allocated with this function needs to be freed
48 * separately, devm_gpio_free() must be used.
51 int devm_gpio_request(struct device
*dev
, unsigned gpio
, const char *label
)
56 dr
= devres_alloc(devm_gpio_release
, sizeof(unsigned), GFP_KERNEL
);
60 rc
= gpio_request(gpio
, label
);
71 EXPORT_SYMBOL(devm_gpio_request
);
74 * devm_gpio_free - free an interrupt
75 * @dev: device to free gpio for
78 * Except for the extra @dev argument, this function takes the
79 * same arguments and performs the same function as gpio_free().
80 * This function instead of gpio_free() should be used to manually
81 * free GPIOs allocated with devm_gpio_request().
83 void devm_gpio_free(struct device
*dev
, unsigned int gpio
)
86 WARN_ON(devres_destroy(dev
, devm_gpio_release
, devm_gpio_match
,
90 EXPORT_SYMBOL(devm_gpio_free
);