1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/bitops.h>
3 #include <linux/device.h>
4 #include <linux/errno.h>
5 #include <linux/export.h>
8 #include <linux/gpio/consumer.h>
9 #include <linux/gpio/driver.h>
11 #include <linux/gpio.h>
16 * **DEPRECATED** This function is deprecated and must not be used in new code.
18 void gpio_free(unsigned gpio
)
20 gpiod_free(gpio_to_desc(gpio
));
22 EXPORT_SYMBOL_GPL(gpio_free
);
25 * gpio_request_one - request a single GPIO with initial configuration
26 * @gpio: the GPIO number
27 * @flags: GPIO configuration as specified by GPIOF_*
28 * @label: a literal description string of this GPIO
30 * **DEPRECATED** This function is deprecated and must not be used in new code.
33 * 0 on success, or negative errno on failure.
35 int gpio_request_one(unsigned gpio
, unsigned long flags
, const char *label
)
37 struct gpio_desc
*desc
;
40 /* Compatibility: assume unavailable "valid" GPIOs will appear later */
41 desc
= gpio_to_desc(gpio
);
45 err
= gpiod_request(desc
, label
);
50 err
= gpiod_direction_input(desc
);
52 err
= gpiod_direction_output_raw(desc
, !!(flags
& GPIOF_OUT_INIT_HIGH
));
63 EXPORT_SYMBOL_GPL(gpio_request_one
);
66 * **DEPRECATED** This function is deprecated and must not be used in new code.
68 int gpio_request(unsigned gpio
, const char *label
)
70 struct gpio_desc
*desc
;
72 /* Compatibility: assume unavailable "valid" GPIOs will appear later */
73 desc
= gpio_to_desc(gpio
);
77 return gpiod_request(desc
, label
);
79 EXPORT_SYMBOL_GPL(gpio_request
);
81 static void devm_gpio_release(struct device
*dev
, void *res
)
89 * devm_gpio_request - request a GPIO for a managed device
90 * @dev: device to request the GPIO for
91 * @gpio: GPIO to allocate
92 * @label: the name of the requested GPIO
94 * Except for the extra @dev argument, this function takes the
95 * same arguments and performs the same function as gpio_request().
96 * GPIOs requested with this function will be automatically freed
99 * **DEPRECATED** This function is deprecated and must not be used in new code.
102 * 0 on success, or negative errno on failure.
104 int devm_gpio_request(struct device
*dev
, unsigned gpio
, const char *label
)
109 dr
= devres_alloc(devm_gpio_release
, sizeof(unsigned), GFP_KERNEL
);
113 rc
= gpio_request(gpio
, label
);
124 EXPORT_SYMBOL_GPL(devm_gpio_request
);
127 * devm_gpio_request_one - request a single GPIO with initial setup
128 * @dev: device to request for
129 * @gpio: the GPIO number
130 * @flags: GPIO configuration as specified by GPIOF_*
131 * @label: a literal description string of this GPIO
133 * **DEPRECATED** This function is deprecated and must not be used in new code.
136 * 0 on success, or negative errno on failure.
138 int devm_gpio_request_one(struct device
*dev
, unsigned gpio
,
139 unsigned long flags
, const char *label
)
144 dr
= devres_alloc(devm_gpio_release
, sizeof(unsigned), GFP_KERNEL
);
148 rc
= gpio_request_one(gpio
, flags
, label
);
159 EXPORT_SYMBOL_GPL(devm_gpio_request_one
);