gpio_utils.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Copyright (c) 2016 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file Header where utility code can be found for GPIO drivers
  8. */
  9. #ifndef ZEPHYR_DRIVERS_GPIO_GPIO_UTILS_H_
  10. #define ZEPHYR_DRIVERS_GPIO_GPIO_UTILS_H_
  11. #define GPIO_PORT_PIN_MASK_FROM_NGPIOS(ngpios) \
  12. ((gpio_port_pins_t)(((uint64_t)1 << (ngpios)) - 1U))
  13. #define GPIO_PORT_PIN_MASK_FROM_DT_NODE(node_id) \
  14. GPIO_PORT_PIN_MASK_FROM_NGPIOS(DT_PROP(node_id, ngpios))
  15. #define GPIO_PORT_PIN_MASK_FROM_DT_INST(inst) \
  16. GPIO_PORT_PIN_MASK_FROM_NGPIOS(DT_INST_PROP(inst, ngpios))
  17. /**
  18. * @brief Generic function to insert or remove a callback from a callback list
  19. *
  20. * @param callbacks A pointer to the original list of callbacks (can be NULL)
  21. * @param callback A pointer of the callback to insert or remove from the list
  22. * @param set A boolean indicating insertion or removal of the callback
  23. *
  24. * @return 0 on success, negative errno otherwise.
  25. */
  26. static inline int gpio_manage_callback(sys_slist_t *callbacks,
  27. struct gpio_callback *callback,
  28. bool set)
  29. {
  30. __ASSERT(callback, "No callback!");
  31. __ASSERT(callback->handler, "No callback handler!");
  32. if (!sys_slist_is_empty(callbacks)) {
  33. if (!sys_slist_find_and_remove(callbacks, &callback->node)) {
  34. if (!set) {
  35. return -EINVAL;
  36. }
  37. }
  38. }
  39. if (set) {
  40. sys_slist_prepend(callbacks, &callback->node);
  41. }
  42. return 0;
  43. }
  44. /**
  45. * @brief Generic function to go through and fire callback from a callback list
  46. *
  47. * @param list A pointer on the gpio callback list
  48. * @param port A pointer on the gpio driver instance
  49. * @param pins The actual pin mask that triggered the interrupt
  50. */
  51. static inline void gpio_fire_callbacks(sys_slist_t *list,
  52. const struct device *port,
  53. uint32_t pins)
  54. {
  55. struct gpio_callback *cb, *tmp;
  56. SYS_SLIST_FOR_EACH_CONTAINER_SAFE(list, cb, tmp, node) {
  57. if (cb->pin_mask & pins) {
  58. __ASSERT(cb->handler, "No callback handler!");
  59. cb->handler(port, cb, cb->pin_mask & pins);
  60. }
  61. }
  62. }
  63. #endif /* ZEPHYR_DRIVERS_GPIO_GPIO_UTILS_H_ */