cache.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Copyright (c) 2015 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_CACHE_H_
  7. #define ZEPHYR_INCLUDE_CACHE_H_
  8. #include <kernel.h>
  9. #include <kernel_structs.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /**
  14. * Common operations for the caches
  15. *
  16. * WB means write-back and intends to transfer dirty cache lines to memory in a
  17. * copy-back cache policy. May be a no-op in write-back cache policy.
  18. *
  19. * INVD means invalidate and will mark cache lines as not valid. A future
  20. * access to the associated address is guaranteed to generate a memory fetch.
  21. */
  22. #define K_CACHE_WB BIT(0)
  23. #define K_CACHE_INVD BIT(1)
  24. #define K_CACHE_WB_INVD (K_CACHE_WB | K_CACHE_INVD)
  25. #if defined(CONFIG_HAS_EXTERNAL_CACHE)
  26. /* Driver interface mirrored in include/drivers/cache.h */
  27. /* Enable d-cache */
  28. extern void cache_data_enable(void);
  29. /* Disable d-cache */
  30. extern void cache_data_disable(void);
  31. /* Enable i-cache */
  32. extern void cache_instr_enable(void);
  33. /* Disable i-cache */
  34. extern void cache_instr_disable(void);
  35. /* Write-back / Invalidate / Write-back + Invalidate all d-cache */
  36. extern int cache_data_all(int op);
  37. /* Write-back / Invalidate / Write-back + Invalidate d-cache lines */
  38. extern int cache_data_range(void *addr, size_t size, int op);
  39. /* Write-back / Invalidate / Write-back + Invalidate all i-cache */
  40. extern int cache_instr_all(int op);
  41. /* Write-back / Invalidate / Write-back + Invalidate i-cache lines */
  42. extern int cache_instr_range(void *addr, size_t size, int op);
  43. #else
  44. /* Hooks into arch code */
  45. #define cache_data_enable arch_dcache_enable
  46. #define cache_data_disable arch_dcache_disable
  47. #define cache_instr_enable arch_icache_enable
  48. #define cache_instr_disable arch_icache_disable
  49. #define cache_data_all(op) arch_dcache_all(op)
  50. #define cache_data_range(addr, size, op) arch_dcache_range(addr, size, op)
  51. #define cache_instr_all(op) arch_icache_all(op)
  52. #define cache_instr_range(addr, size, op) arch_icache_range(addr, size, op)
  53. #define cache_data_line_size_get arch_dcache_line_size_get
  54. #define cache_instr_line_size_get arch_icache_line_size_get
  55. #endif
  56. __syscall int sys_cache_data_all(int op);
  57. static inline int z_impl_sys_cache_data_all(int op)
  58. {
  59. #if defined(CONFIG_CACHE_MANAGEMENT)
  60. return cache_data_all(op);
  61. #endif
  62. ARG_UNUSED(op);
  63. return -ENOTSUP;
  64. }
  65. __syscall int sys_cache_data_range(void *addr, size_t size, int op);
  66. static inline int z_impl_sys_cache_data_range(void *addr, size_t size, int op)
  67. {
  68. #if defined(CONFIG_CACHE_MANAGEMENT)
  69. return cache_data_range(addr, size, op);
  70. #endif
  71. ARG_UNUSED(addr);
  72. ARG_UNUSED(size);
  73. ARG_UNUSED(op);
  74. return -ENOTSUP;
  75. }
  76. __syscall int sys_cache_instr_all(int op);
  77. static inline int z_impl_sys_cache_instr_all(int op)
  78. {
  79. #if defined(CONFIG_CACHE_MANAGEMENT)
  80. return cache_instr_all(op);
  81. #endif
  82. ARG_UNUSED(op);
  83. return -ENOTSUP;
  84. }
  85. __syscall int sys_cache_instr_range(void *addr, size_t size, int op);
  86. static inline int z_impl_sys_cache_instr_range(void *addr, size_t size, int op)
  87. {
  88. #if defined(CONFIG_CACHE_MANAGEMENT)
  89. return cache_instr_range(addr, size, op);
  90. #endif
  91. ARG_UNUSED(addr);
  92. ARG_UNUSED(size);
  93. ARG_UNUSED(op);
  94. return -ENOTSUP;
  95. }
  96. #ifdef CONFIG_LIBMETAL
  97. static inline void sys_cache_flush(void *addr, size_t size)
  98. {
  99. sys_cache_data_range(addr, size, K_CACHE_WB);
  100. }
  101. #endif
  102. #define CPU DT_PATH(cpus, cpu_0)
  103. /**
  104. *
  105. * @brief Get the d-cache line size.
  106. *
  107. * The API is provided to get the d-cache line size.
  108. *
  109. * @return size of the d-cache line or 0 if the d-cache is not enabled.
  110. */
  111. static inline size_t sys_cache_data_line_size_get(void)
  112. {
  113. #ifdef CONFIG_DCACHE_LINE_SIZE_DETECT
  114. return cache_data_line_size_get();
  115. #elif (CONFIG_DCACHE_LINE_SIZE != 0)
  116. return CONFIG_DCACHE_LINE_SIZE;
  117. #else
  118. return DT_PROP_OR(CPU, d_cache_line_size, 0);
  119. #endif
  120. }
  121. /*
  122. *
  123. * @brief Get the i-cache line size.
  124. *
  125. * The API is provided to get the i-cache line size.
  126. *
  127. * @return size of the i-cache line or 0 if the i-cache is not enabled.
  128. */
  129. static inline size_t sys_cache_instr_line_size_get(void)
  130. {
  131. #ifdef CONFIG_ICACHE_LINE_SIZE_DETECT
  132. return cache_instr_line_size_get();
  133. #elif (CONFIG_ICACHE_LINE_SIZE != 0)
  134. return CONFIG_ICACHE_LINE_SIZE;
  135. #else
  136. return DT_PROP_OR(CPU, i_cache_line_size, 0);
  137. #endif
  138. }
  139. #include <syscalls/cache.h>
  140. #ifdef __cplusplus
  141. }
  142. #endif
  143. #endif /* ZEPHYR_INCLUDE_CACHE_H_ */