syscon.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*
  2. * Copyright (c) 2021 Carlo Caione <ccaione@baylibre.com>
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public SYSCON driver APIs
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_SYSCON_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_SYSCON_H_
  12. /**
  13. * @brief SYSCON Interface
  14. * @defgroup syscon_interface SYSCON Interface
  15. * @ingroup io_interfaces
  16. * @{
  17. */
  18. #include <zephyr/types.h>
  19. #include <device.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /**
  24. * API template to get the base address of the syscon region.
  25. *
  26. * @see syscon_get_base
  27. */
  28. typedef int (*syscon_api_get_base)(const struct device *dev, uintptr_t *addr);
  29. /**
  30. * API template to read a single register.
  31. *
  32. * @see syscon_read_reg
  33. */
  34. typedef int (*syscon_api_read_reg)(const struct device *dev, uint16_t reg, uint32_t *val);
  35. /**
  36. * API template to write a single register.
  37. *
  38. * @see syscon_write_reg
  39. */
  40. typedef int (*syscon_api_write_reg)(const struct device *dev, uint16_t reg, uint32_t val);
  41. /**
  42. * API template to get the size of the syscon register.
  43. *
  44. * @see syscon_get_size
  45. */
  46. typedef int (*syscon_api_get_size)(const struct device *dev, size_t *size);
  47. /**
  48. * @brief System Control (syscon) register driver API
  49. */
  50. __subsystem struct syscon_driver_api {
  51. syscon_api_read_reg read;
  52. syscon_api_write_reg write;
  53. syscon_api_get_base get_base;
  54. syscon_api_get_size get_size;
  55. };
  56. /**
  57. * @brief Get the syscon base address
  58. *
  59. * @param dev The device to get the register size for.
  60. * @param addr Where to write the base address.
  61. * @return 0 When addr was written to.
  62. */
  63. __syscall int syscon_get_base(const struct device *dev, uintptr_t *addr);
  64. static inline int z_impl_syscon_get_base(const struct device *dev, uintptr_t *addr)
  65. {
  66. const struct syscon_driver_api *api = (const struct syscon_driver_api *)dev->api;
  67. if (api == NULL) {
  68. return -ENOTSUP;
  69. }
  70. return api->get_base(dev, addr);
  71. }
  72. /**
  73. * @brief Read from syscon register
  74. *
  75. * This function reads from a specific register in the syscon area
  76. *
  77. * @param dev The device to get the register size for.
  78. * @param reg The register offset
  79. * @param val The returned value read from the syscon register
  80. *
  81. * @return 0 on success, negative on error
  82. */
  83. __syscall int syscon_read_reg(const struct device *dev, uint16_t reg, uint32_t *val);
  84. static inline int z_impl_syscon_read_reg(const struct device *dev, uint16_t reg, uint32_t *val)
  85. {
  86. const struct syscon_driver_api *api = (const struct syscon_driver_api *)dev->api;
  87. if (api == NULL) {
  88. return -ENOTSUP;
  89. }
  90. return api->read(dev, reg, val);
  91. }
  92. /**
  93. * @brief Write to syscon register
  94. *
  95. * This function writes to a specific register in the syscon area
  96. *
  97. * @param dev The device to get the register size for.
  98. * @param reg The register offset
  99. * @param val The value to be written in the register
  100. *
  101. * @return 0 on success, negative on error
  102. */
  103. __syscall int syscon_write_reg(const struct device *dev, uint16_t reg, uint32_t val);
  104. static inline int z_impl_syscon_write_reg(const struct device *dev, uint16_t reg, uint32_t val)
  105. {
  106. const struct syscon_driver_api *api = (const struct syscon_driver_api *)dev->api;
  107. if (api == NULL) {
  108. return -ENOTSUP;
  109. }
  110. return api->write(dev, reg, val);
  111. }
  112. /**
  113. * Get the size of the syscon register in bytes.
  114. *
  115. * @param dev The device to get the register size for.
  116. * @param size Pointer to write the size to.
  117. * @return 0 for success.
  118. */
  119. __syscall int syscon_get_size(const struct device *dev, size_t *size);
  120. static inline int z_impl_syscon_get_size(const struct device *dev, size_t *size)
  121. {
  122. const struct syscon_driver_api *api = (const struct syscon_driver_api *)dev->api;
  123. return api->get_size(dev, size);
  124. }
  125. /**
  126. * @}
  127. */
  128. #ifdef __cplusplus
  129. }
  130. #endif
  131. #include <syscalls/syscon.h>
  132. #endif /* ZEPHYR_INCLUDE_DRIVERS_SYSCON_H_ */