mirror of
https://github.com/revyos/th1520-vendor-uboot.git
synced 2026-07-16 05:06:29 +02:00
54 lines
659 B
C
54 lines
659 B
C
/*
|
|
* Copyright (C) 2017-2020 Alibaba Group Holding Limited
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <cpu_func.h>
|
|
|
|
void invalidate_icache_all(void)
|
|
{
|
|
}
|
|
|
|
__weak void flush_dcache_all(void)
|
|
{
|
|
}
|
|
|
|
void invalidate_icache_range(unsigned long start, unsigned long end)
|
|
{
|
|
invalidate_icache_all();
|
|
}
|
|
|
|
void cache_flush(void)
|
|
{
|
|
invalidate_icache_all();
|
|
flush_dcache_all();
|
|
}
|
|
|
|
__weak void icache_enable(void)
|
|
{
|
|
}
|
|
|
|
__weak void icache_disable(void)
|
|
{
|
|
}
|
|
|
|
__weak int icache_status(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
__weak void dcache_enable(void)
|
|
{
|
|
}
|
|
|
|
__weak void dcache_disable(void)
|
|
{
|
|
}
|
|
|
|
__weak int dcache_status(void)
|
|
{
|
|
return 0;
|
|
}
|