123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406 |
- /*
- * The Clear BSD License
- * Copyright 2016-2017 NXP
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are permitted (subject to the limitations in the disclaimer below) provided
- * that the following conditions are met:
- *
- * o Redistributions of source code must retain the above copyright notice, this list
- * of conditions and the following disclaimer.
- *
- * o Redistributions in binary form must reproduce the above copyright notice, this
- * list of conditions and the following disclaimer in the documentation and/or
- * other materials provided with the distribution.
- *
- * o Neither the name of the copyright holder nor the names of its
- * contributors may be used to endorse or promote products derived from this
- * software without specific prior written permission.
- *
- * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY THIS LICENSE.
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
- * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
- * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include "fsl_cache.h"
- /*******************************************************************************
- * Definitions
- ******************************************************************************/
- /* Component ID definition, used by tools. */
- #ifndef FSL_COMPONENT_ID
- #define FSL_COMPONENT_ID "platform.drivers.cache_lmem"
- #endif
- #define L1CACHE_ONEWAYSIZE_BYTE (4096U) /*!< Cache size is 4K-bytes one way. */
- #define L1CACHE_CODEBUSADDR_BOUNDARY (0x1FFFFFFF) /*!< The processor code bus address boundary. */
- /*******************************************************************************
- * Code
- ******************************************************************************/
- #if (FSL_FEATURE_SOC_LMEM_COUNT == 1)
- void L1CACHE_EnableCodeCache(void)
- {
- /* First, invalidate the entire cache. */
- L1CACHE_InvalidateCodeCache();
- /* Now enable the cache. */
- LMEM->PCCCR |= LMEM_PCCCR_ENCACHE_MASK;
- }
- void L1CACHE_DisableCodeCache(void)
- {
- /* First, push any modified contents. */
- L1CACHE_CleanCodeCache();
- /* Now disable the cache. */
- LMEM->PCCCR &= ~LMEM_PCCCR_ENCACHE_MASK;
- }
- void L1CACHE_InvalidateCodeCache(void)
- {
- /* Enables the processor code bus to invalidate all lines in both ways.
- and Initiate the processor code bus code cache command. */
- LMEM->PCCCR |= LMEM_PCCCR_INVW0_MASK | LMEM_PCCCR_INVW1_MASK | LMEM_PCCCR_GO_MASK;
- /* Wait until the cache command completes. */
- while (LMEM->PCCCR & LMEM_PCCCR_GO_MASK)
- {
- }
- /* As a precaution clear the bits to avoid inadvertently re-running this command. */
- LMEM->PCCCR &= ~(LMEM_PCCCR_INVW0_MASK | LMEM_PCCCR_INVW1_MASK);
- }
- void L1CACHE_InvalidateCodeCacheByRange(uint32_t address, uint32_t size_byte)
- {
- uint32_t endAddr = address + size_byte;
- uint32_t pccReg = 0;
- /* Align address to cache line size. */
- uint32_t startAddr = address & ~(L1CODEBUSCACHE_LINESIZE_BYTE - 1U);
- while (startAddr < endAddr)
- {
- /* Set the invalidate by line command and use the physical address. */
- pccReg = (LMEM->PCCLCR & ~LMEM_PCCLCR_LCMD_MASK) | LMEM_PCCLCR_LCMD(1) | LMEM_PCCLCR_LADSEL_MASK;
- LMEM->PCCLCR = pccReg;
- /* Set the address and initiate the command. */
- LMEM->PCCSAR = (startAddr & LMEM_PCCSAR_PHYADDR_MASK) | LMEM_PCCSAR_LGO_MASK;
- /* Wait until the cache command completes. */
- while (LMEM->PCCSAR & LMEM_PCCSAR_LGO_MASK)
- {
- }
- startAddr += L1CODEBUSCACHE_LINESIZE_BYTE;
- }
- }
- void L1CACHE_CleanCodeCache(void)
- {
- /* Enable the processor code bus to push all modified lines. */
- LMEM->PCCCR |= LMEM_PCCCR_PUSHW0_MASK | LMEM_PCCCR_PUSHW1_MASK | LMEM_PCCCR_GO_MASK;
- /* Wait until the cache command completes. */
- while (LMEM->PCCCR & LMEM_PCCCR_GO_MASK)
- {
- }
- /* As a precaution clear the bits to avoid inadvertently re-running this command. */
- LMEM->PCCCR &= ~(LMEM_PCCCR_PUSHW0_MASK | LMEM_PCCCR_PUSHW1_MASK);
- }
- void L1CACHE_CleanCodeCacheByRange(uint32_t address, uint32_t size_byte)
- {
- uint32_t endAddr = address + size_byte;
- uint32_t pccReg = 0;
- /* Align address to cache line size. */
- uint32_t startAddr = address & ~(L1CODEBUSCACHE_LINESIZE_BYTE - 1U);
- while (startAddr < endAddr)
- {
- /* Set the push by line command. */
- pccReg = (LMEM->PCCLCR & ~LMEM_PCCLCR_LCMD_MASK) | LMEM_PCCLCR_LCMD(2) | LMEM_PCCLCR_LADSEL_MASK;
- LMEM->PCCLCR = pccReg;
- /* Set the address and initiate the command. */
- LMEM->PCCSAR = (startAddr & LMEM_PCCSAR_PHYADDR_MASK) | LMEM_PCCSAR_LGO_MASK;
- /* Wait until the cache command completes. */
- while (LMEM->PCCSAR & LMEM_PCCSAR_LGO_MASK)
- {
- }
- startAddr += L1CODEBUSCACHE_LINESIZE_BYTE;
- }
- }
- void L1CACHE_CleanInvalidateCodeCache(void)
- {
- /* Push and invalidate all. */
- LMEM->PCCCR |= LMEM_PCCCR_PUSHW0_MASK | LMEM_PCCCR_PUSHW1_MASK | LMEM_PCCCR_INVW0_MASK | LMEM_PCCCR_INVW1_MASK |
- LMEM_PCCCR_GO_MASK;
- /* Wait until the cache command completes. */
- while (LMEM->PCCCR & LMEM_PCCCR_GO_MASK)
- {
- }
- /* As a precaution clear the bits to avoid inadvertently re-running this command. */
- LMEM->PCCCR &= ~(LMEM_PCCCR_PUSHW0_MASK | LMEM_PCCCR_PUSHW1_MASK | LMEM_PCCCR_INVW0_MASK | LMEM_PCCCR_INVW1_MASK);
- }
- void L1CACHE_CleanInvalidateCodeCacheByRange(uint32_t address, uint32_t size_byte)
- {
- uint32_t endAddr = address + size_byte;
- uint32_t pccReg = 0;
- /* Align address to cache line size. */
- uint32_t startAddr = address & ~(L1CODEBUSCACHE_LINESIZE_BYTE - 1U);
- while (startAddr < endAddr)
- {
- /* Set the push by line command. */
- pccReg = (LMEM->PCCLCR & ~LMEM_PCCLCR_LCMD_MASK) | LMEM_PCCLCR_LCMD(3) | LMEM_PCCLCR_LADSEL_MASK;
- LMEM->PCCLCR = pccReg;
- /* Set the address and initiate the command. */
- LMEM->PCCSAR = (startAddr & LMEM_PCCSAR_PHYADDR_MASK) | LMEM_PCCSAR_LGO_MASK;
- /* Wait until the cache command completes. */
- while (LMEM->PCCSAR & LMEM_PCCSAR_LGO_MASK)
- {
- }
- startAddr += L1CODEBUSCACHE_LINESIZE_BYTE;
- }
- }
- #if defined(FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE) && FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE
- void L1CACHE_EnableSystemCache(void)
- {
- /* First, invalidate the entire cache. */
- L1CACHE_InvalidateSystemCache();
- /* Now enable the cache. */
- LMEM->PSCCR |= LMEM_PSCCR_ENCACHE_MASK;
- }
- void L1CACHE_DisableSystemCache(void)
- {
- /* First, push any modified contents. */
- L1CACHE_CleanSystemCache();
- /* Now disable the cache. */
- LMEM->PSCCR &= ~LMEM_PSCCR_ENCACHE_MASK;
- }
- void L1CACHE_InvalidateSystemCache(void)
- {
- /* Enables the processor system bus to invalidate all lines in both ways.
- and Initiate the processor system bus cache command. */
- LMEM->PSCCR |= LMEM_PSCCR_INVW0_MASK | LMEM_PSCCR_INVW1_MASK | LMEM_PSCCR_GO_MASK;
- /* Wait until the cache command completes */
- while (LMEM->PSCCR & LMEM_PSCCR_GO_MASK)
- {
- }
- /* As a precaution clear the bits to avoid inadvertently re-running this command. */
- LMEM->PSCCR &= ~(LMEM_PSCCR_INVW0_MASK | LMEM_PSCCR_INVW1_MASK);
- }
- void L1CACHE_InvalidateSystemCacheByRange(uint32_t address, uint32_t size_byte)
- {
- uint32_t endAddr = address + size_byte;
- uint32_t pscReg = 0;
- uint32_t startAddr = address & ~(L1SYSTEMBUSCACHE_LINESIZE_BYTE - 1U); /* Align address to cache line size */
- while (startAddr < endAddr)
- {
- /* Set the invalidate by line command and use the physical address. */
- pscReg = (LMEM->PSCLCR & ~LMEM_PSCLCR_LCMD_MASK) | LMEM_PSCLCR_LCMD(1) | LMEM_PSCLCR_LADSEL_MASK;
- LMEM->PSCLCR = pscReg;
- /* Set the address and initiate the command. */
- LMEM->PSCSAR = (startAddr & LMEM_PSCSAR_PHYADDR_MASK) | LMEM_PSCSAR_LGO_MASK;
- /* Wait until the cache command completes. */
- while (LMEM->PSCSAR & LMEM_PSCSAR_LGO_MASK)
- {
- }
- startAddr += L1SYSTEMBUSCACHE_LINESIZE_BYTE;
- }
- }
- void L1CACHE_CleanSystemCache(void)
- {
- /* Enable the processor system bus to push all modified lines. */
- LMEM->PSCCR |= LMEM_PSCCR_PUSHW0_MASK | LMEM_PSCCR_PUSHW1_MASK | LMEM_PSCCR_GO_MASK;
- /* Wait until the cache command completes. */
- while (LMEM->PSCCR & LMEM_PSCCR_GO_MASK)
- {
- }
- /* As a precaution clear the bits to avoid inadvertently re-running this command. */
- LMEM->PSCCR &= ~(LMEM_PSCCR_PUSHW0_MASK | LMEM_PSCCR_PUSHW1_MASK);
- }
- void L1CACHE_CleanSystemCacheByRange(uint32_t address, uint32_t size_byte)
- {
- uint32_t endAddr = address + size_byte;
- uint32_t pscReg = 0;
- uint32_t startAddr = address & ~(L1SYSTEMBUSCACHE_LINESIZE_BYTE - 1U); /* Align address to cache line size. */
- while (startAddr < endAddr)
- {
- /* Set the push by line command. */
- pscReg = (LMEM->PSCLCR & ~LMEM_PSCLCR_LCMD_MASK) | LMEM_PSCLCR_LCMD(2) | LMEM_PSCLCR_LADSEL_MASK;
- LMEM->PSCLCR = pscReg;
- /* Set the address and initiate the command. */
- LMEM->PSCSAR = (startAddr & LMEM_PSCSAR_PHYADDR_MASK) | LMEM_PSCSAR_LGO_MASK;
- /* Wait until the cache command completes. */
- while (LMEM->PSCSAR & LMEM_PSCSAR_LGO_MASK)
- {
- }
- startAddr += L1SYSTEMBUSCACHE_LINESIZE_BYTE;
- }
- }
- void L1CACHE_CleanInvalidateSystemCache(void)
- {
- /* Push and invalidate all. */
- LMEM->PSCCR |= LMEM_PSCCR_PUSHW0_MASK | LMEM_PSCCR_PUSHW1_MASK | LMEM_PSCCR_INVW0_MASK | LMEM_PSCCR_INVW1_MASK |
- LMEM_PSCCR_GO_MASK;
- /* Wait until the cache command completes. */
- while (LMEM->PSCCR & LMEM_PSCCR_GO_MASK)
- {
- }
- /* As a precaution clear the bits to avoid inadvertently re-running this command. */
- LMEM->PSCCR &= ~(LMEM_PSCCR_PUSHW0_MASK | LMEM_PSCCR_PUSHW1_MASK | LMEM_PSCCR_INVW0_MASK | LMEM_PSCCR_INVW1_MASK);
- }
- void L1CACHE_CleanInvalidateSystemCacheByRange(uint32_t address, uint32_t size_byte)
- {
- uint32_t endAddr = address + size_byte;
- uint32_t pscReg = 0;
- uint32_t startAddr = address & ~(L1SYSTEMBUSCACHE_LINESIZE_BYTE - 1U); /* Align address to cache line size. */
- while (startAddr < endAddr)
- {
- /* Set the push by line command. */
- pscReg = (LMEM->PSCLCR & ~LMEM_PSCLCR_LCMD_MASK) | LMEM_PSCLCR_LCMD(3) | LMEM_PSCLCR_LADSEL_MASK;
- LMEM->PSCLCR = pscReg;
- /* Set the address and initiate the command. */
- LMEM->PSCSAR = (startAddr & LMEM_PSCSAR_PHYADDR_MASK) | LMEM_PSCSAR_LGO_MASK;
- /* Wait until the cache command completes. */
- while (LMEM->PSCSAR & LMEM_PSCSAR_LGO_MASK)
- {
- }
- startAddr += L1SYSTEMBUSCACHE_LINESIZE_BYTE;
- }
- }
- #endif /* FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE */
- #endif /* FSL_FEATURE_SOC_LMEM_COUNT == 1 */
- void L1CACHE_InvalidateICacheByRange(uint32_t address, uint32_t size_byte)
- {
- #if (FSL_FEATURE_SOC_LMEM_COUNT == 1)
- uint32_t endAddr = address + size_byte;
- uint32_t size = size_byte;
- if (endAddr <= L1CACHE_CODEBUSADDR_BOUNDARY)
- {
- L1CACHE_InvalidateCodeCacheByRange(address, size);
- }
- else if (address <= L1CACHE_CODEBUSADDR_BOUNDARY)
- {
- size = L1CACHE_CODEBUSADDR_BOUNDARY - address;
- L1CACHE_InvalidateCodeCacheByRange(address, size);
- #if defined(FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE) && FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE
- size = size_byte - size;
- L1CACHE_InvalidateSystemCacheByRange((L1CACHE_CODEBUSADDR_BOUNDARY + 1), size);
- #endif /* FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE */
- }
- else
- {
- #if defined(FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE) && FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE
- L1CACHE_InvalidateSystemCacheByRange(address, size);
- #endif /* FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE */
- }
- #endif /* FSL_FEATURE_SOC_LMEM_COUNT == 1 */
- }
- void L1CACHE_CleanDCacheByRange(uint32_t address, uint32_t size_byte)
- {
- #if (FSL_FEATURE_SOC_LMEM_COUNT == 1)
- uint32_t endAddr = address + size_byte;
- uint32_t size = size_byte;
- if (endAddr <= L1CACHE_CODEBUSADDR_BOUNDARY)
- {
- L1CACHE_CleanCodeCacheByRange(address, size);
- }
- else if (address <= L1CACHE_CODEBUSADDR_BOUNDARY)
- {
- size = L1CACHE_CODEBUSADDR_BOUNDARY - address;
- L1CACHE_CleanCodeCacheByRange(address, size);
- #if defined(FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE) && FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE
- size = size_byte - size;
- L1CACHE_CleanSystemCacheByRange((L1CACHE_CODEBUSADDR_BOUNDARY + 1), size);
- #endif /* FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE */
- }
- else
- {
- #if defined(FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE) && FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE
- L1CACHE_CleanSystemCacheByRange(address, size);
- #endif /* FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE */
- }
- #endif /* FSL_FEATURE_SOC_LMEM_COUNT == 1 */
- }
- void L1CACHE_CleanInvalidateDCacheByRange(uint32_t address, uint32_t size_byte)
- {
- #if (FSL_FEATURE_SOC_LMEM_COUNT == 1)
- uint32_t endAddr = address + size_byte;
- uint32_t size = size_byte;
- if (endAddr <= L1CACHE_CODEBUSADDR_BOUNDARY)
- {
- L1CACHE_CleanInvalidateCodeCacheByRange(address, size);
- }
- else if (address <= L1CACHE_CODEBUSADDR_BOUNDARY)
- {
- size = L1CACHE_CODEBUSADDR_BOUNDARY - address;
- L1CACHE_CleanInvalidateCodeCacheByRange(address, size);
- #if defined(FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE) && FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE
- size = size_byte - size;
- L1CACHE_CleanInvalidateSystemCacheByRange((L1CACHE_CODEBUSADDR_BOUNDARY + 1), size);
- #endif /* FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE */
- }
- else
- {
- #if defined(FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE) && FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE
- L1CACHE_CleanInvalidateSystemCacheByRange(address, size);
- #endif /* FSL_FEATURE_LMEM_HAS_SYSTEMBUS_CACHE */
- }
- #endif /* FSL_FEATURE_SOC_LMEM_COUNT == 1 */
- }
|