csl_cache.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /**
  2. * @file csl_cache.h
  3. *
  4. * @brief
  5. * This is the CACHE Auxilary Header File which exposes the various
  6. * CSL Functional Layer API's to configure the CACHE Module.
  7. *
  8. * \par
  9. * ============================================================================
  10. * @n (C) Copyright 2002, 2003, 2004, 2005, 2008, 2009, 2016 Texas Instruments, Inc.
  11. *
  12. * Redistribution and use in source and binary forms, with or without
  13. * modification, are permitted provided that the following conditions
  14. * are met:
  15. *
  16. * Redistributions of source code must retain the above copyright
  17. * notice, this list of conditions and the following disclaimer.
  18. *
  19. * Redistributions in binary form must reproduce the above copyright
  20. * notice, this list of conditions and the following disclaimer in the
  21. * documentation and/or other materials provided with the
  22. * distribution.
  23. *
  24. * Neither the name of Texas Instruments Incorporated nor the names of
  25. * its contributors may be used to endorse or promote products derived
  26. * from this software without specific prior written permission.
  27. *
  28. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  29. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  30. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  31. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  32. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  33. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  34. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  35. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  36. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  37. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  38. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  39. *
  40. */
  41. /** @defgroup CSL_CACHE_API CACHE
  42. *
  43. * @section Introduction
  44. *
  45. * @subsection xxx Overview
  46. * This page describes the Functions, Data Structures, Enumerations and Macros
  47. * within CACHE module.
  48. *
  49. * This module uses three cache architectures, Level 1 Program (L1P), Level 1
  50. * Data (L1D) and Level 2 CACHE architectures, The L1P and L1D can be
  51. * configured as 0K, 4K, 8K, 16K, or 32K CACHE size. The L2 can be configured
  52. * as 32KB, 64KB, 128KB, or 256KB CACHE size. This CACHE module supports the
  53. * Block and Global Coherence Operations.
  54. *
  55. * @subsection References
  56. * -# TMS320TCI6484 Data Sheet SPRS438 (Dec 2007)
  57. *
  58. */
  59. #ifndef CSL_CACHE_H
  60. #define CSL_CACHE_H
  61. #ifdef __cplusplus
  62. extern "C" {
  63. #endif
  64. #include <ti/csl/csl.h>
  65. #include <ti/csl/cslr_cgem.h>
  66. #include <ti/csl/soc.h>
  67. /**
  68. @defgroup CSL_CACHE_SYMBOL CACHE Symbols Defined
  69. @ingroup CSL_CACHE_API
  70. */
  71. /**
  72. @defgroup CSL_CACHE_ENUM CACHE Enumerated Data Types
  73. @ingroup CSL_CACHE_API
  74. */
  75. /**
  76. @defgroup CSL_CACHE_FUNCTION CACHE Functions
  77. @ingroup CSL_CACHE_API
  78. */
  79. /**
  80. @addtogroup CSL_CACHE_SYMBOL
  81. @{
  82. */
  83. /** L2 Line Size */
  84. #define CACHE_L2_LINESIZE ((uint32_t)128U)
  85. /** L1D Line Size */
  86. #define CACHE_L1D_LINESIZE ((uint32_t)64)
  87. /** L1P Line Size */
  88. #define CACHE_L1P_LINESIZE ((uint32_t)32)
  89. /** Handle to the CGEM Register Layer */
  90. #if defined (SOC_OMAPL137) || defined (SOC_OMAPL138)
  91. #define hCache ((CSL_CgemRegs *)CSL_INTC_0_REGS)
  92. #else
  93. #define hCache ((CSL_CgemRegs *)CSL_C66X_COREPAC_REG_BASE_ADDRESS_REGS)
  94. #endif
  95. /** Cache Round to Line size */
  96. #define CACHE_ROUND_TO_LINESIZE(CACHE,ELCNT,ELSIZE)\
  97. ( ( ( ( (ELCNT) * (ELSIZE)\
  98. + CACHE_##CACHE##_LINESIZE - 1\
  99. ) / CACHE_##CACHE##_LINESIZE\
  100. * CACHE_##CACHE##_LINESIZE\
  101. ) + (ELSIZE) - 1\
  102. ) / (ELSIZE)\
  103. )
  104. /**
  105. @}
  106. */
  107. /******************************************************************************\
  108. * global macro declarations
  109. \******************************************************************************/
  110. /** @addtogroup CSL_CACHE_ENUM
  111. @{ */
  112. /** @brief Enumeration for Cache wait flags
  113. *
  114. * This is used for specifying whether the cache operations should block till
  115. * the desired operation is complete.
  116. */
  117. typedef enum
  118. {
  119. /** No blocking, the call exits after programmation of the
  120. * control registers
  121. */
  122. CACHE_NOWAIT = 0,
  123. /** Blocking Call, the call exits after the relevant cache
  124. * status registers indicate completion. For block coherence
  125. * this waits on the Word count register to be come 0 along
  126. * with invalidating the prefetch buffer.
  127. */
  128. CACHE_WAIT = 1,
  129. /** Blocking Call, For block coherence this uses the MFENCE to
  130. * wait for completion, along with invalidating the prefetch
  131. * buffer.
  132. */
  133. CACHE_FENCE_WAIT = 2,
  134. /** Blocking Call, the call exits after the relevant cache
  135. * status registers indicate completion. For block coherence
  136. * this waits on the Word count register to be come 0.
  137. */
  138. CACHE_ONLY_WAIT = 3,
  139. /** Blocking Call, For block coherence this uses the MFENCE only to
  140. * wait for completion
  141. */
  142. CACHE_FENCE_ONLY_WAIT = 4
  143. }CACHE_Wait;
  144. /** @brief Enumeration for L1 (P or D) Sizes */
  145. typedef enum {
  146. /** No Cache */
  147. CACHE_L1_0KCACHE = 0,
  148. /** 4KB Cache */
  149. CACHE_L1_4KCACHE = 1,
  150. /** 8KB Cache */
  151. CACHE_L1_8KCACHE = 2,
  152. /** 16KB Cache */
  153. CACHE_L1_16KCACHE = 3,
  154. /** 32KB Cache */
  155. CACHE_L1_32KCACHE = 4,
  156. /** MAX Cache Size */
  157. CACHE_L1_MAXIM1 = 5,
  158. /** MAX Cache Size */
  159. CACHE_L1_MAXIM2 = 6,
  160. /** MAX Cache Size */
  161. CACHE_L1_MAXIM3 = 7
  162. } CACHE_L1Size;
  163. /** @brief Enumeration for L2 Sizes */
  164. /** For devices that have maximum caches less
  165. * than the defined values, setting a higher value
  166. * will map to maximum cache
  167. */
  168. typedef enum {
  169. /** No Cache */
  170. CACHE_0KCACHE = 0,
  171. /** 32KB Cache */
  172. CACHE_32KCACHE = 1,
  173. /** 64KB Cache */
  174. CACHE_64KCACHE = 2,
  175. /** 128KB Cache */
  176. CACHE_128KCACHE = 3,
  177. /** 256KB Cache */
  178. CACHE_256KCACHE = 4,
  179. /** 512KB Cache */
  180. CACHE_512KCACHE = 5,
  181. /* 1024KB Cache */
  182. CACHE_1024KCACHE = 6
  183. } CACHE_L2Size;
  184. /**
  185. @}
  186. */
  187. #ifdef __cplusplus
  188. }
  189. #endif
  190. #endif /*CSL_CACHE_H*/