GPIOs are not only provided by raw register accesses but also by I2C devices. Add a slice to a gpio chip so that a gpio user can check if the slice is acquired before using it in a poller. Signed-off-by: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> --- drivers/gpio/gpiolib.c | 11 +++++++++++ include/gpio.h | 15 +++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index bcfdd5a0dd..5bc261a010 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c @@ -172,6 +172,16 @@ int gpio_request(unsigned gpio, const char *label) return gpiodesc_request(desc, label); } +bool gpio_slice_acquired(unsigned gpio) +{ + struct gpio_desc *desc = gpio_to_desc(gpio); + + if (!desc) + return false; + + return slice_acquired(&desc->chip->slice); +} + static void gpiodesc_free(struct gpio_desc *desc) { if (!desc->requested) @@ -1013,6 +1023,7 @@ int gpiochip_add(struct gpio_chip *chip) return -ENOSPC; } + slice_init(&chip->slice, dev_name(chip->dev)); list_add_tail(&chip->list, &chip_list); diff --git a/include/gpio.h b/include/gpio.h index 9951532084..adc1eb39ac 100644 --- a/include/gpio.h +++ b/include/gpio.h @@ -2,6 +2,7 @@ #ifndef __GPIO_H #define __GPIO_H +#include <slice.h> #include <linux/types.h> #include <linux/list.h> #include <linux/iopoll.h> @@ -156,6 +157,12 @@ static inline int gpio_array_to_id(const struct gpio *array, size_t num, u32 *va { return -EINVAL; } + +static inline bool gpio_slice_acquired(unsigned gpio) +{ + return false; +} + #else int gpio_request(unsigned gpio, const char *label); int gpio_find_by_name(const char *name); @@ -165,6 +172,7 @@ int gpio_request_one(unsigned gpio, unsigned long flags, const char *label); int gpio_request_array(const struct gpio *array, size_t num); void gpio_free_array(const struct gpio *array, size_t num); int gpio_array_to_id(const struct gpio *array, size_t num, u32 *val); +bool gpio_slice_acquired(unsigned gpio); #endif struct gpio_chip; @@ -213,9 +221,16 @@ struct gpio_chip { struct gpio_ops *ops; + struct slice slice; + struct list_head list; }; +static inline struct slice *gpiochip_slice(struct gpio_chip *chip) +{ + return &chip->slice; +} + int gpiochip_add(struct gpio_chip *chip); void gpiochip_remove(struct gpio_chip *chip); -- 2.39.2