12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /*
- * Copyright (c) 2006-2018, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2018-05-17 ZYH first implementation
- */
- #include <rthw.h>
- #include <stm32f7xx.h>
- void rt_hw_cpu_icache_enable(void)
- {
- SCB_EnableICache();
- }
- void rt_hw_cpu_icache_disable(void)
- {
- SCB_DisableICache();
- }
- rt_base_t rt_hw_cpu_icache_status(void)
- {
- return 0;
- }
- void rt_hw_cpu_icache_ops(int ops, void *addr, int size)
- {
- UNUSED(addr);
- UNUSED(size);
- if (ops & RT_HW_CACHE_INVALIDATE)
- {
- SCB_InvalidateICache();
- }
- }
- void rt_hw_cpu_dcache_enable(void)
- {
- SCB_EnableDCache();
- }
- void rt_hw_cpu_dcache_disable(void)
- {
- SCB_DisableDCache();
- }
- rt_base_t rt_hw_cpu_dcache_status(void)
- {
- return 0;
- }
- void rt_hw_cpu_dcache_ops(int ops, void *addr, int size)
- {
- if (ops & (RT_HW_CACHE_FLUSH | RT_HW_CACHE_INVALIDATE))
- {
- SCB_CleanInvalidateDCache_by_Addr(addr, size);
- }
- else if (ops & RT_HW_CACHE_FLUSH)
- {
- SCB_CleanDCache_by_Addr(addr, size);
- }
- else if (ops & RT_HW_CACHE_INVALIDATE)
- {
- SCB_InvalidateDCache_by_Addr(addr, size);
- }
- else
- {
- RT_ASSERT(0);
- }
- }
|