gpiolib.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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. struct acpi_device;
  17. /**
  18. * struct acpi_gpio_info - ACPI GPIO specific information
  19. * @gpioint: if %true this GPIO is of type GpioInt otherwise type is GpioIo
  20. * @active_low: in case of @gpioint, the pin is active low
  21. */
  22. struct acpi_gpio_info {
  23. bool gpioint;
  24. bool active_low;
  25. };
  26. /* gpio suffixes used for ACPI and device tree lookup */
  27. static __maybe_unused const char * const gpio_suffixes[] = { "gpios", "gpio" };
  28. #ifdef CONFIG_ACPI
  29. void acpi_gpiochip_add(struct gpio_chip *chip);
  30. void acpi_gpiochip_remove(struct gpio_chip *chip);
  31. void acpi_gpiochip_request_interrupts(struct gpio_chip *chip);
  32. void acpi_gpiochip_free_interrupts(struct gpio_chip *chip);
  33. struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
  34. const char *propname, int index,
  35. struct acpi_gpio_info *info);
  36. struct gpio_desc *acpi_node_get_gpiod(struct fwnode_handle *fwnode,
  37. const char *propname, int index,
  38. struct acpi_gpio_info *info);
  39. int acpi_gpio_count(struct device *dev, const char *con_id);
  40. #else
  41. static inline void acpi_gpiochip_add(struct gpio_chip *chip) { }
  42. static inline void acpi_gpiochip_remove(struct gpio_chip *chip) { }
  43. static inline void
  44. acpi_gpiochip_request_interrupts(struct gpio_chip *chip) { }
  45. static inline void
  46. acpi_gpiochip_free_interrupts(struct gpio_chip *chip) { }
  47. static inline struct gpio_desc *
  48. acpi_get_gpiod_by_index(struct acpi_device *adev, const char *propname,
  49. int index, struct acpi_gpio_info *info)
  50. {
  51. return ERR_PTR(-ENOSYS);
  52. }
  53. static inline struct gpio_desc *
  54. acpi_node_get_gpiod(struct fwnode_handle *fwnode, const char *propname,
  55. int index, struct acpi_gpio_info *info)
  56. {
  57. return ERR_PTR(-ENXIO);
  58. }
  59. static inline int acpi_gpio_count(struct device *dev, const char *con_id)
  60. {
  61. return -ENODEV;
  62. }
  63. #endif
  64. struct gpio_desc *of_get_named_gpiod_flags(struct device_node *np,
  65. const char *list_name, int index, enum of_gpio_flags *flags);
  66. struct gpio_desc *gpiochip_get_desc(struct gpio_chip *chip, u16 hwnum);
  67. extern struct spinlock gpio_lock;
  68. extern struct list_head gpio_chips;
  69. struct gpio_desc {
  70. struct gpio_chip *chip;
  71. unsigned long flags;
  72. /* flag symbols are bit numbers */
  73. #define FLAG_REQUESTED 0
  74. #define FLAG_IS_OUT 1
  75. #define FLAG_EXPORT 2 /* protected by sysfs_lock */
  76. #define FLAG_SYSFS 3 /* exported via /sys/class/gpio/control */
  77. #define FLAG_ACTIVE_LOW 6 /* value has active low */
  78. #define FLAG_OPEN_DRAIN 7 /* Gpio is open drain type */
  79. #define FLAG_OPEN_SOURCE 8 /* Gpio is open source type */
  80. #define FLAG_USED_AS_IRQ 9 /* GPIO is connected to an IRQ */
  81. #define FLAG_IS_HOGGED 11 /* GPIO is hogged */
  82. /* Connection label */
  83. const char *label;
  84. /* Name of the GPIO */
  85. const char *name;
  86. };
  87. int gpiod_request(struct gpio_desc *desc, const char *label);
  88. void gpiod_free(struct gpio_desc *desc);
  89. int gpiod_hog(struct gpio_desc *desc, const char *name,
  90. unsigned long lflags, enum gpiod_flags dflags);
  91. /*
  92. * Return the GPIO number of the passed descriptor relative to its chip
  93. */
  94. static int __maybe_unused gpio_chip_hwgpio(const struct gpio_desc *desc)
  95. {
  96. return desc - &desc->chip->desc[0];
  97. }
  98. /* With descriptor prefix */
  99. #define gpiod_emerg(desc, fmt, ...) \
  100. pr_emerg("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
  101. ##__VA_ARGS__)
  102. #define gpiod_crit(desc, fmt, ...) \
  103. pr_crit("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
  104. ##__VA_ARGS__)
  105. #define gpiod_err(desc, fmt, ...) \
  106. pr_err("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
  107. ##__VA_ARGS__)
  108. #define gpiod_warn(desc, fmt, ...) \
  109. pr_warn("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
  110. ##__VA_ARGS__)
  111. #define gpiod_info(desc, fmt, ...) \
  112. pr_info("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?", \
  113. ##__VA_ARGS__)
  114. #define gpiod_dbg(desc, fmt, ...) \
  115. pr_debug("gpio-%d (%s): " fmt, desc_to_gpio(desc), desc->label ? : "?",\
  116. ##__VA_ARGS__)
  117. /* With chip prefix */
  118. #define chip_emerg(chip, fmt, ...) \
  119. pr_emerg("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
  120. #define chip_crit(chip, fmt, ...) \
  121. pr_crit("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
  122. #define chip_err(chip, fmt, ...) \
  123. pr_err("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
  124. #define chip_warn(chip, fmt, ...) \
  125. pr_warn("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
  126. #define chip_info(chip, fmt, ...) \
  127. pr_info("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
  128. #define chip_dbg(chip, fmt, ...) \
  129. pr_debug("GPIO chip %s: " fmt, chip->label, ##__VA_ARGS__)
  130. #ifdef CONFIG_GPIO_SYSFS
  131. int gpiochip_sysfs_register(struct gpio_chip *chip);
  132. void gpiochip_sysfs_unregister(struct gpio_chip *chip);
  133. #else
  134. static inline int gpiochip_sysfs_register(struct gpio_chip *chip)
  135. {
  136. return 0;
  137. }
  138. static inline void gpiochip_sysfs_unregister(struct gpio_chip *chip)
  139. {
  140. }
  141. #endif /* CONFIG_GPIO_SYSFS */
  142. #endif /* GPIOLIB_H */