/**************************************************************************** * include/nuttx/cache.h * * Copyright (C) 2019 Pinecone Inc. All rights reserved. * Author: Xiang Xiao * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. 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. * 3. Neither the name NuttX nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * * 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 OWNER 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. * ****************************************************************************/ #ifndef __INCLUDE_NUTTX_CACHE_H #define __INCLUDE_NUTTX_CACHE_H #ifndef __ASSEMBLY__ /**************************************************************************** * Included Files ****************************************************************************/ #include #include #include /**************************************************************************** * Pre-processor Definitions ****************************************************************************/ #ifdef __cplusplus #define EXTERN extern "C" extern "C" { #else #define EXTERN extern #endif /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * Name: up_enable_icache * * Description: * Enable the I-Cache * * Input Parameters: * None * * Returned Value: * None * * Caution: * The writable global variables aren't initialized yet. * ****************************************************************************/ #ifdef CONFIG_ARCH_ICACHE void up_enable_icache(void); #else static inline void up_enable_icache(void) { } #endif /**************************************************************************** * Name: up_disable_icache * * Description: * Disable the I-Cache * * Input Parameters: * None * * Returned Value: * None * ****************************************************************************/ #ifdef CONFIG_ARCH_ICACHE void up_disable_icache(void); #else static inline void up_disable_icache(void) { } #endif /**************************************************************************** * Name: up_invalidate_icache * * Description: * Invalidate the instruction cache within the specified region. * * Input Parameters: * start - virtual start address of region * end - virtual end address of region + 1 * * Returned Value: * None * ****************************************************************************/ #ifdef CONFIG_ARCH_ICACHE void up_invalidate_icache(uintptr_t start, uintptr_t end); #else static inline void up_invalidate_icache(uintptr_t start, uintptr_t end) { } #endif /**************************************************************************** * Name: up_invalidate_icache_all * * Description: * Invalidate the entire contents of I cache. * * Input Parameters: * None * * Returned Value: * None * ****************************************************************************/ #ifdef CONFIG_ARCH_ICACHE void up_invalidate_icache_all(void); #else static inline void up_invalidate_icache_all(void) { } #endif /**************************************************************************** * Name: up_enable_dcache * * Description: * Enable the D-Cache * * Input Parameters: * None * * Returned Value: * None * * Caution: * The writable global variables aren't initialized yet. * ****************************************************************************/ #ifdef CONFIG_ARCH_DCACHE void up_enable_dcache(void); #else static inline void up_enable_dcache(void) { } #endif /**************************************************************************** * Name: up_disable_dcache * * Description: * Disable the D-Cache * * Input Parameters: * None * * Returned Value: * None * ****************************************************************************/ #ifdef CONFIG_ARCH_DCACHE void up_disable_dcache(void); #else static inline void up_disable_dcache(void) { } #endif /**************************************************************************** * Name: up_invalidate_dcache * * Description: * Invalidate the data cache within the specified region; we will be * performing a DMA operation in this region and we want to purge old data * in the cache. * * Input Parameters: * start - virtual start address of region * end - virtual end address of region + 1 * * Returned Value: * None * ****************************************************************************/ #ifdef CONFIG_ARCH_DCACHE void up_invalidate_dcache(uintptr_t start, uintptr_t end); #else static inline void up_invalidate_dcache(uintptr_t start, uintptr_t end) { } #endif /**************************************************************************** * Name: up_invalidate_dcache_all * * Description: * Invalidate the entire contents of D cache. * * Input Parameters: * None * * Returned Value: * None * ****************************************************************************/ #ifdef CONFIG_ARCH_DCACHE void up_invalidate_dcache_all(void); #else static inline void up_invalidate_dcache_all(void) { } #endif /**************************************************************************** * Name: up_clean_dcache * * Description: * Clean the data cache within the specified region by flushing the * contents of the data cache to memory. * * Input Parameters: * start - virtual start address of region * end - virtual end address of region + 1 * * Returned Value: * None * ****************************************************************************/ #ifdef CONFIG_ARCH_DCACHE void up_clean_dcache(uintptr_t start, uintptr_t end); #else static inline void up_clean_dcache(uintptr_t start, uintptr_t end) { } #endif /**************************************************************************** * Name: up_clean_dcache_all * * Description: * Clean the entire data cache within the specified region by flushing the * contents of the data cache to memory. * * Input Parameters: * None * * Returned Value: * None * ****************************************************************************/ #ifdef CONFIG_ARCH_DCACHE void up_clean_dcache_all(void); #else static inline void up_clean_dcache_all(void) { } #endif /**************************************************************************** * Name: up_flush_dcache * * Description: * Flush the data cache within the specified region by cleaning and * invalidating the D cache. * * Input Parameters: * start - virtual start address of region * end - virtual end address of region + 1 * * Returned Value: * None * ****************************************************************************/ #ifdef CONFIG_ARCH_DCACHE void up_flush_dcache(uintptr_t start, uintptr_t end); #else static inline void up_flush_dcache(uintptr_t start, uintptr_t end) { } #endif /**************************************************************************** * Name: up_flush_dcache_all * * Description: * Flush the entire data cache by cleaning and invalidating the D cache. * * Input Parameters: * None * * Returned Value: * None * ****************************************************************************/ #ifdef CONFIG_ARCH_DCACHE void up_flush_dcache_all(void); #else static inline void up_flush_dcache_all(void) { } #endif /**************************************************************************** * Name: up_coherent_dcache * * Description: * Ensure that the I and D caches are coherent within specified region * by cleaning the D cache (i.e., flushing the D cache contents to memory * and invalidating the I cache. This is typically used when code has been * written to a memory region, and will be executed. * * Input Parameters: * addr - virtual start address of region * len - Size of the address region in bytes * * Returned Value: * None * ****************************************************************************/ #ifdef CONFIG_ARCH_ICACHE void up_coherent_dcache(uintptr_t addr, size_t len); #else static inline void up_coherent_dcache(uintptr_t addr, size_t len) { } #endif #undef EXTERN #ifdef __cplusplus } #endif #endif /* __ASSEMBLY__ */ #endif /* __INCLUDE_NUTTX_CACHE_H */