machine.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __LINUX_GPIO_MACHINE_H
  3. #define __LINUX_GPIO_MACHINE_H
  4. #include <linux/types.h>
  5. #include <linux/list.h>
  6. enum gpio_lookup_flags {
  7. GPIO_ACTIVE_HIGH = (0 << 0),
  8. GPIO_ACTIVE_LOW = (1 << 0),
  9. GPIO_OPEN_DRAIN = (1 << 1),
  10. GPIO_OPEN_SOURCE = (1 << 2),
  11. GPIO_PERSISTENT = (0 << 3),
  12. GPIO_TRANSITORY = (1 << 3),
  13. };
  14. /**
  15. * struct gpiod_lookup - lookup table
  16. * @chip_label: name of the chip the GPIO belongs to
  17. * @chip_hwnum: hardware number (i.e. relative to the chip) of the GPIO
  18. * @con_id: name of the GPIO from the device's point of view
  19. * @idx: index of the GPIO in case several GPIOs share the same name
  20. * @flags: mask of GPIO_* values
  21. *
  22. * gpiod_lookup is a lookup table for associating GPIOs to specific devices and
  23. * functions using platform data.
  24. */
  25. struct gpiod_lookup {
  26. const char *chip_label;
  27. u16 chip_hwnum;
  28. const char *con_id;
  29. unsigned int idx;
  30. enum gpio_lookup_flags flags;
  31. };
  32. struct gpiod_lookup_table {
  33. struct list_head list;
  34. const char *dev_id;
  35. struct gpiod_lookup table[];
  36. };
  37. /*
  38. * Simple definition of a single GPIO under a con_id
  39. */
  40. #define GPIO_LOOKUP(_chip_label, _chip_hwnum, _con_id, _flags) \
  41. GPIO_LOOKUP_IDX(_chip_label, _chip_hwnum, _con_id, 0, _flags)
  42. /*
  43. * Use this macro if you need to have several GPIOs under the same con_id.
  44. * Each GPIO needs to use a different index and can be accessed using
  45. * gpiod_get_index()
  46. */
  47. #define GPIO_LOOKUP_IDX(_chip_label, _chip_hwnum, _con_id, _idx, _flags) \
  48. { \
  49. .chip_label = _chip_label, \
  50. .chip_hwnum = _chip_hwnum, \
  51. .con_id = _con_id, \
  52. .idx = _idx, \
  53. .flags = _flags, \
  54. }
  55. #ifdef CONFIG_GPIOLIB
  56. void gpiod_add_lookup_table(struct gpiod_lookup_table *table);
  57. void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n);
  58. void gpiod_remove_lookup_table(struct gpiod_lookup_table *table);
  59. #else
  60. static inline
  61. void gpiod_add_lookup_table(struct gpiod_lookup_table *table) {}
  62. static inline
  63. void gpiod_add_lookup_tables(struct gpiod_lookup_table **tables, size_t n) {}
  64. static inline
  65. void gpiod_remove_lookup_table(struct gpiod_lookup_table *table) {}
  66. #endif
  67. #endif /* __LINUX_GPIO_MACHINE_H */