Home
last modified time | relevance | path

Searched refs:LMEM_CACHE_LINE_SIZE (Results 1 – 3 of 3) sorted by relevance

/hal_nxp-2.7.6/mcux/drivers/kinetis/
Dfsl_lmem_cache.c190 address = address & ~(LMEM_CACHE_LINE_SIZE - 1U); in LMEM_CodeCacheInvalidateMultiLines()
201 address = address + LMEM_CACHE_LINE_SIZE; in LMEM_CodeCacheInvalidateMultiLines()
261 address = address & ~(LMEM_CACHE_LINE_SIZE - 1U); in LMEM_CodeCachePushMultiLines()
273 address = address + LMEM_CACHE_LINE_SIZE; in LMEM_CodeCachePushMultiLines()
331 address = address & ~(LMEM_CACHE_LINE_SIZE - 1U); in LMEM_CodeCacheClearMultiLines()
343 address = address + LMEM_CACHE_LINE_SIZE; in LMEM_CodeCacheClearMultiLines()
546 …tempAddress = tempAddress & ~(LMEM_CACHE_LINE_SIZE - 1U); /* Align address to cache line … in LMEM_SystemCacheInvalidateMultiLines()
558 tempAddress = tempAddress + LMEM_CACHE_LINE_SIZE; in LMEM_SystemCacheInvalidateMultiLines()
618 …tempAddress = tempAddress & ~(LMEM_CACHE_LINE_SIZE - 1U); /* Align address to cache line … in LMEM_SystemCachePushMultiLines()
630 tempAddress = tempAddress + LMEM_CACHE_LINE_SIZE; in LMEM_SystemCachePushMultiLines()
[all …]
Dfsl_lmem_cache.h28 #define LMEM_CACHE_LINE_SIZE (0x10U) /*!< Cache line is 16-bytes. */ macro
/hal_nxp-2.7.6/imx/drivers/
Dlmem.c36 #define LMEM_CACHE_LINE_SIZE 32 macro
127 address = (void *) ((uint32_t)address & ~(LMEM_CACHE_LINE_SIZE - 1)); in LMEM_FlushSystemCacheLines()
131 address = (void *) ((uint32_t)address + LMEM_CACHE_LINE_SIZE); in LMEM_FlushSystemCacheLines()
184 address = (void *)((uint32_t)address & ~(LMEM_CACHE_LINE_SIZE - 1)); in LMEM_InvalidateSystemCacheLines()
189 address = (void *)((uint32_t)address + LMEM_CACHE_LINE_SIZE); in LMEM_InvalidateSystemCacheLines()
278 address = (void *) ((uint32_t)address & ~(LMEM_CACHE_LINE_SIZE - 1)); in LMEM_FlushCodeCacheLines()
282 address = (void *)((uint32_t)address + LMEM_CACHE_LINE_SIZE); in LMEM_FlushCodeCacheLines()
335 address = (void *)((uint32_t)address & ~(LMEM_CACHE_LINE_SIZE - 1)); in LMEM_InvalidateCodeCacheLines()
340 address = (void *)((uint32_t)address + LMEM_CACHE_LINE_SIZE); in LMEM_InvalidateCodeCacheLines()