gpiolib.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Internal GPIO functions.
  3. *
  4. * Copyright (C) 2013, Intel Corporation
  5. * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #ifndef GPIOLIB_H
  12. #define GPIOLIB_H
  13. #include <linux/err.h>
  14. #include <linux/device.h>
  15. enum of_gpio_flags;
  16. /**
  17. * struct acpi_gpio_info - ACPI GPIO specific information
  18. * @gpioint: if %true this GPIO is of type GpioInt otherwise type is GpioIo
  19. * @active_low: in case of @gpioint, the pin is active low
  20. */
  21. struct acpi_gpio_info {
  22. bool gpioint;
  23. bool active_low;
  24. };
  25. #ifdef CONFIG_ACPI
  26. void acpi_gpiochip_add(struct gpio_chip *chip);
  27. void acpi_gpiochip_remove(struct gpio_chip *chip);
  28. struct gpio_desc *acpi_get_gpiod_by_index(struct device *dev, int index,
  29. struct acpi_gpio_info *info);
  30. #else
  31. static inline void acpi_gpiochip_add(struct gpio_chip *chip) { }
  32. static inline void acpi_gpiochip_remove(struct gpio_chip *chip) { }
  33. static inline struct gpio_desc *
  34. acpi_get_gpiod_by_index(struct device *dev, int index,
  35. struct acpi_gpio_info *info)
  36. {
  37. return ERR_PTR(-ENOSYS);
  38. }
  39. #endif
  40. int gpiochip_request_own_desc(struct gpio_desc *desc, const char *label);
  41. void gpiochip_free_own_desc(struct gpio_desc *desc);
  42. struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
  43. const char *list_name, int index, enum of_gpio_flags *flags);
  44. #endif /* GPIOLIB_H */