2018-05-18 20:19:18 +08:00
|
|
|
/*
|
2018-10-16 13:00:37 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2018-05-18 20:19:18 +08:00
|
|
|
*
|
2018-10-16 13:00:37 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2018-05-18 20:19:18 +08:00
|
|
|
*
|
|
|
|
* 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);
|
|
|
|
}
|
|
|
|
}
|