gpio_mmio32.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright (c) 2016 Linaro Ltd.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_MMIO32_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_MMIO32_H_
  8. #include <device.h>
  9. #include <drivers/gpio.h>
  10. #include <zephyr/types.h>
  11. extern const struct gpio_driver_api gpio_mmio32_api;
  12. struct gpio_mmio32_config {
  13. /* gpio_driver_config needs to be first */
  14. struct gpio_driver_config common;
  15. volatile uint32_t *reg;
  16. uint32_t mask;
  17. };
  18. struct gpio_mmio32_context {
  19. /* gpio_driver_data needs to be first */
  20. struct gpio_driver_data common;
  21. const struct gpio_mmio32_config *config;
  22. };
  23. int gpio_mmio32_init(const struct device *dev);
  24. #ifdef CONFIG_GPIO_MMIO32
  25. /**
  26. * Create a device object for accessing a simple 32-bit i/o register using the
  27. * same APIs as GPIO drivers.
  28. *
  29. * @param node_id The devicetree node identifier.
  30. * @param _address The address of the 32-bit i/o register the device will
  31. * provide access to.
  32. * @param _mask Mask of bits in the register that it is valid to access.
  33. * E.g. 0xffffffffu to allow access to all of them.
  34. *
  35. */
  36. #define GPIO_MMIO32_INIT(node_id, _address, _mask) \
  37. static struct gpio_mmio32_context _CONCAT(Z_DEVICE_DT_DEV_NAME(node_id), _ctx); \
  38. \
  39. static const struct gpio_mmio32_config _CONCAT(Z_DEVICE_DT_DEV_NAME(node_id), _cfg) = { \
  40. .common = { \
  41. .port_pin_mask = _mask, \
  42. }, \
  43. .reg = (volatile uint32_t *)_address, \
  44. .mask = _mask, \
  45. }; \
  46. \
  47. DEVICE_DT_DEFINE(node_id, \
  48. &gpio_mmio32_init, \
  49. NULL, \
  50. &_CONCAT(Z_DEVICE_DT_DEV_NAME(node_id), _ctx), \
  51. &_CONCAT(Z_DEVICE_DT_DEV_NAME(node_id), _cfg), \
  52. PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEVICE, \
  53. &gpio_mmio32_api)
  54. #else /* CONFIG_GPIO_MMIO32 */
  55. /* Null definition for when support not configured into kernel */
  56. #define GPIO_MMIO32_INIT(node_id, _address, _mask)
  57. #endif
  58. #endif /* ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_MMIO32_H_ */