gpio-utils.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * GPIO tools - utility helpers library for the GPIO tools
  4. *
  5. * Copyright (C) 2015 Linus Walleij
  6. *
  7. * Portions copied from iio_utils and lssio:
  8. * Copyright (c) 2010 Manuel Stahl <[email protected]>
  9. * Copyright (c) 2008 Jonathan Cameron
  10. * *
  11. */
  12. #ifndef _GPIO_UTILS_H_
  13. #define _GPIO_UTILS_H_
  14. #include <stdbool.h>
  15. #include <string.h>
  16. #include <linux/types.h>
  17. #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
  18. static inline int check_prefix(const char *str, const char *prefix)
  19. {
  20. return strlen(str) > strlen(prefix) &&
  21. strncmp(str, prefix, strlen(prefix)) == 0;
  22. }
  23. int gpiotools_request_line(const char *device_name,
  24. unsigned int *lines,
  25. unsigned int num_lines,
  26. struct gpio_v2_line_config *config,
  27. const char *consumer);
  28. int gpiotools_set_values(const int fd, struct gpio_v2_line_values *values);
  29. int gpiotools_get_values(const int fd, struct gpio_v2_line_values *values);
  30. int gpiotools_release_line(const int fd);
  31. int gpiotools_get(const char *device_name, unsigned int line);
  32. int gpiotools_gets(const char *device_name, unsigned int *lines,
  33. unsigned int num_lines, unsigned int *values);
  34. int gpiotools_set(const char *device_name, unsigned int line,
  35. unsigned int value);
  36. int gpiotools_sets(const char *device_name, unsigned int *lines,
  37. unsigned int num_lines, unsigned int *values);
  38. /* helper functions for gpio_v2_line_values bits */
  39. static inline void gpiotools_set_bit(__u64 *b, int n)
  40. {
  41. *b |= _BITULL(n);
  42. }
  43. static inline void gpiotools_change_bit(__u64 *b, int n)
  44. {
  45. *b ^= _BITULL(n);
  46. }
  47. static inline void gpiotools_clear_bit(__u64 *b, int n)
  48. {
  49. *b &= ~_BITULL(n);
  50. }
  51. static inline int gpiotools_test_bit(__u64 b, int n)
  52. {
  53. return !!(b & _BITULL(n));
  54. }
  55. static inline void gpiotools_assign_bit(__u64 *b, int n, bool value)
  56. {
  57. if (value)
  58. gpiotools_set_bit(b, n);
  59. else
  60. gpiotools_clear_bit(b, n);
  61. }
  62. #endif /* _GPIO_UTILS_H_ */