mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 06:44:00 -04:00
Refactor line hogging code by moving the parts duplicated in gpiolib-acpi-core.c and gpiolib-of.c into gpiolib.c, leaving just the OF-specific bits in the latter. This makes fwnode the primary API for setting up hogs and allows to use software nodes in addition to ACPI and OF nodes. Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com> Reviewed-by: Linus Walleij <linusw@kernel.org> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://patch.msgid.link/20260309-gpio-hog-fwnode-v2-2-4e61f3dbf06a@oss.qualcomm.com Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
62 lines
1.6 KiB
C
62 lines
1.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef GPIOLIB_OF_H
|
|
#define GPIOLIB_OF_H
|
|
|
|
#include <linux/err.h>
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/notifier.h>
|
|
|
|
struct device_node;
|
|
struct fwnode_handle;
|
|
struct fwnode_reference_args;
|
|
|
|
struct gpio_chip;
|
|
struct gpio_desc;
|
|
struct gpio_device;
|
|
|
|
#ifdef CONFIG_OF_GPIO
|
|
struct gpio_desc *of_find_gpio(struct device_node *np,
|
|
const char *con_id,
|
|
unsigned int idx,
|
|
unsigned long *lookupflags);
|
|
int of_gpiochip_add(struct gpio_chip *gc);
|
|
void of_gpiochip_remove(struct gpio_chip *gc);
|
|
bool of_gpiochip_instance_match(struct gpio_chip *gc, unsigned int index);
|
|
int of_gpio_count(const struct fwnode_handle *fwnode, const char *con_id);
|
|
int of_gpiochip_get_lflags(struct gpio_chip *chip,
|
|
struct fwnode_reference_args *gpiospec,
|
|
unsigned long *lflags);
|
|
#else
|
|
static inline struct gpio_desc *of_find_gpio(struct device_node *np,
|
|
const char *con_id,
|
|
unsigned int idx,
|
|
unsigned long *lookupflags)
|
|
{
|
|
return ERR_PTR(-ENOENT);
|
|
}
|
|
static inline int of_gpiochip_add(struct gpio_chip *gc) { return 0; }
|
|
static inline void of_gpiochip_remove(struct gpio_chip *gc) { }
|
|
static inline bool of_gpiochip_instance_match(struct gpio_chip *gc,
|
|
unsigned int index)
|
|
{
|
|
return false;
|
|
}
|
|
static inline int of_gpio_count(const struct fwnode_handle *fwnode,
|
|
const char *con_id)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline int of_gpiochip_get_lflags(struct gpio_chip *chip,
|
|
struct fwnode_reference_args *gpiospec,
|
|
unsigned long *lflags)
|
|
{
|
|
return -ENOENT;
|
|
}
|
|
#endif /* CONFIG_OF_GPIO */
|
|
|
|
extern struct notifier_block gpio_of_notifier;
|
|
|
|
#endif /* GPIOLIB_OF_H */
|