fpga.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * Copyright (c) 2021 Antmicro <www.antmicro.com>
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_FPGA_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_FPGA_H_
  8. #include <zephyr/types.h>
  9. #include <sys/util.h>
  10. #include <device.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. enum FPGA_status {
  15. /* Inactive is when the FPGA cannot accept the bitstream
  16. * and will not be programmed correctly
  17. */
  18. FPGA_STATUS_INACTIVE,
  19. /* Active is when the FPGA can accept the bitstream and
  20. * can be programmed correctly
  21. */
  22. FPGA_STATUS_ACTIVE
  23. };
  24. typedef enum FPGA_status (*fpga_api_get_status)(const struct device *dev);
  25. typedef int (*fpga_api_load)(const struct device *dev, uint32_t *image_ptr,
  26. uint32_t img_size);
  27. typedef int (*fpga_api_reset)(const struct device *dev);
  28. typedef int (*fpga_api_on)(const struct device *dev);
  29. typedef int (*fpga_api_off)(const struct device *dev);
  30. typedef const char *(*fpga_api_get_info)(const struct device *dev);
  31. __subsystem struct fpga_driver_api {
  32. fpga_api_get_status get_status;
  33. fpga_api_reset reset;
  34. fpga_api_load load;
  35. fpga_api_on on;
  36. fpga_api_off off;
  37. fpga_api_get_info get_info;
  38. };
  39. /**
  40. * @brief Read the status of FPGA.
  41. *
  42. * @param dev FPGA device structure.
  43. *
  44. * @retval 0 if the FPGA is in ACTIVE state.
  45. * @retval 1 if the FPGA is in INACTIVE state.
  46. */
  47. static inline enum FPGA_status fpga_get_status(const struct device *dev)
  48. {
  49. const struct fpga_driver_api *api =
  50. (const struct fpga_driver_api *)dev->api;
  51. return api->get_status(dev);
  52. }
  53. /**
  54. * @brief Reset the FPGA.
  55. *
  56. * @param dev FPGA device structure.
  57. *
  58. * @retval 0 if successful.
  59. * @retval Failed Otherwise.
  60. */
  61. static inline int fpga_reset(const struct device *dev)
  62. {
  63. const struct fpga_driver_api *api =
  64. (const struct fpga_driver_api *)dev->api;
  65. return api->reset(dev);
  66. }
  67. /**
  68. * @brief Load the bitstream and program the FPGA
  69. *
  70. * @param dev FPGA device structure.
  71. * @param image_ptr Pointer to bitstream.
  72. * @param img_size Bitstream size in bytes.
  73. *
  74. * @retval 0 if successful.
  75. * @retval Failed Otherwise.
  76. */
  77. static inline int fpga_load(const struct device *dev, uint32_t *image_ptr,
  78. uint32_t img_size)
  79. {
  80. const struct fpga_driver_api *api =
  81. (const struct fpga_driver_api *)dev->api;
  82. return api->load(dev, image_ptr, img_size);
  83. }
  84. /**
  85. * @brief Turns on the FPGA.
  86. *
  87. * @param dev FPGA device structure.
  88. *
  89. * @retval 0 if successful.
  90. * @retval negative errno code on failure.
  91. */
  92. static inline int fpga_on(const struct device *dev)
  93. {
  94. const struct fpga_driver_api *api =
  95. (const struct fpga_driver_api *)dev->api;
  96. if (api->on == NULL) {
  97. return -ENOTSUP;
  98. }
  99. return api->on(dev);
  100. }
  101. /**
  102. * @brief Returns information about the FPGA.
  103. *
  104. * @param dev FPGA device structure.
  105. *
  106. * @return String containing information.
  107. */
  108. static inline const char *fpga_get_info(const struct device *dev)
  109. {
  110. const struct fpga_driver_api *api =
  111. (const struct fpga_driver_api *)dev->api;
  112. return api->get_info(dev);
  113. }
  114. /**
  115. * @brief Turns off the FPGA.
  116. *
  117. * @param dev FPGA device structure.
  118. *
  119. * @retval 0 if successful.
  120. * @retval negative errno code on failure.
  121. */
  122. static inline int fpga_off(const struct device *dev)
  123. {
  124. const struct fpga_driver_api *api =
  125. (const struct fpga_driver_api *)dev->api;
  126. if (api->off == NULL) {
  127. return -ENOTSUP;
  128. }
  129. return api->off(dev);
  130. }
  131. #ifdef __cplusplus
  132. }
  133. #endif
  134. #endif /* ZEPHYR_INCLUDE_DRIVERS_FPGA_H_ */