cache.h 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /*
  2. * Copyright 2021 Carlo Caione <ccaione@baylibre.com>
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_CACHE_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_CACHE_H_
  8. #include <cache.h>
  9. /**
  10. *
  11. * @brief Enable d-cache
  12. *
  13. * Enable the d-cache.
  14. *
  15. * @return N/A
  16. */
  17. void cache_data_enable(void);
  18. /**
  19. *
  20. * @brief Disable d-cache
  21. *
  22. * Disable the d-cache.
  23. *
  24. * @return N/A
  25. */
  26. void cache_data_disable(void);
  27. /**
  28. *
  29. * @brief Enable i-cache
  30. *
  31. * Enable the i-cache.
  32. *
  33. * @return N/A
  34. */
  35. void cache_instr_enable(void);
  36. /**
  37. *
  38. * @brief Disable i-cache
  39. *
  40. * Disable the i-cache.
  41. *
  42. * @return N/A
  43. */
  44. void cache_instr_disable(void);
  45. /**
  46. *
  47. * @brief Write-back / Invalidate / Write-back + Invalidate all d-cache
  48. *
  49. * Write-back, Invalidate or Write-back + Invalidate the whole d-cache.
  50. *
  51. * @param op Operation to perform (one of the K_CACHE_* operations)
  52. *
  53. * @retval 0 On success
  54. * @retval -ENOTSUP If the operation is not supported
  55. */
  56. int cache_data_all(int op);
  57. /**
  58. *
  59. * @brief Write-back / Invalidate / Write-back + Invalidate d-cache lines
  60. *
  61. * No alignment is required for either addr or size, but since
  62. * arch_dcache_range() iterates on the d-cache lines, a d-cache line alignment
  63. * for both is optimal.
  64. *
  65. * The d-cache line size is specified either via the CONFIG_DCACHE_LINE_SIZE
  66. * kconfig option or it is detected at runtime.
  67. *
  68. * @param addr The pointer to start the multi-line operation
  69. * @param size The number of bytes that are to be acted on
  70. * @param op Operation to perform (one of the K_CACHE_* operations)
  71. *
  72. * @retval 0 On success
  73. * @retval -ENOTSUP If the operation is not supported
  74. */
  75. int cache_data_range(void *addr, size_t size, int op);
  76. /**
  77. *
  78. * @brief Write-back / Invalidate / Write-back + Invalidate all i-cache
  79. *
  80. * Write-back, Invalidate or Write-back + Invalidate the whole i-cache.
  81. *
  82. * @param op Operation to perform (one of the K_CACHE_* operations)
  83. *
  84. * @retval 0 On success
  85. * @retval -ENOTSUP If the operation is not supported
  86. */
  87. int cache_instr_all(int op);
  88. /**
  89. *
  90. * @brief Write-back / Invalidate / Write-back + Invalidate i-cache lines
  91. *
  92. * No alignment is required for either addr or size, but since
  93. * arch_icache_range() iterates on the i-cache lines, an i-cache line alignment
  94. * for both is optimal.
  95. *
  96. * The i-cache line size is specified either via the CONFIG_ICACHE_LINE_SIZE
  97. * kconfig option or it is detected at runtime.
  98. *
  99. * @param addr The pointer to start the multi-line operation
  100. * @param size The number of bytes that are to be acted on
  101. * @param op Operation to perform (one of the K_CACHE_* operations)
  102. *
  103. * @retval 0 On success
  104. * @retval -ENOTSUP If the operation is not supported
  105. */
  106. int cache_instr_range(void *addr, size_t size, int op);
  107. #ifdef CONFIG_DCACHE_LINE_SIZE_DETECT
  108. /**
  109. *
  110. * @brief Get the i-cache line size.
  111. *
  112. * The API is provided to get the i-cache line size.
  113. *
  114. * @return size of the i-cache line or 0 if the i-cache is not enabled.
  115. */
  116. size_t cache_data_line_size_get(void);
  117. #endif /* CONFIG_DCACHE_LINE_SIZE_DETECT */
  118. #ifdef CONFIG_ICACHE_LINE_SIZE_DETECT
  119. /**
  120. *
  121. * @brief Get the i-cache line size.
  122. *
  123. * The API is provided to get the i-cache line size.
  124. *
  125. * @return size of the i-cache line or 0 if the i-cache is not enabled.
  126. */
  127. size_t cache_instr_line_size_get(void);
  128. #endif /* CONFIG_ICACHE_LINE_SIZE_DETECT */
  129. #endif /* ZEPHYR_INCLUDE_DRIVERS_CACHE_H_ */