2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-09-19 10:17:55 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Samsung Electronics
|
|
|
|
* Minkyu Kang <mk7.kang@samsung.com>
|
|
|
|
* Robert Baldyga <r.baldyga@samsung.com>
|
|
|
|
*
|
|
|
|
* based on arch/arm/cpu/armv7/omap3/cache.S
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:37 +00:00
|
|
|
#include <cpu_func.h>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <asm/cache.h>
|
2014-09-19 10:17:55 +00:00
|
|
|
|
2019-05-03 13:41:00 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
|
2014-09-19 10:17:55 +00:00
|
|
|
void enable_caches(void)
|
|
|
|
{
|
|
|
|
dcache_enable();
|
|
|
|
}
|
|
|
|
|
|
|
|
void disable_caches(void)
|
|
|
|
{
|
|
|
|
dcache_disable();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CONFIG_SYS_L2CACHE_OFF
|
|
|
|
void v7_outer_cache_enable(void)
|
|
|
|
{
|
|
|
|
__asm(
|
|
|
|
"push {r0, r1, r2, lr}\n\t"
|
|
|
|
"mrc 15, 0, r3, cr1, cr0, 1\n\t"
|
|
|
|
"orr r3, r3, #2\n\t"
|
|
|
|
"mcr 15, 0, r3, cr1, cr0, 1\n\t"
|
|
|
|
"pop {r1, r2, r3, pc}"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void v7_outer_cache_disable(void)
|
|
|
|
{
|
|
|
|
__asm(
|
|
|
|
"push {r0, r1, r2, lr}\n\t"
|
|
|
|
"mrc 15, 0, r3, cr1, cr0, 1\n\t"
|
|
|
|
"bic r3, r3, #2\n\t"
|
|
|
|
"mcr 15, 0, r3, cr1, cr0, 1\n\t"
|
|
|
|
"pop {r1, r2, r3, pc}"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
#endif
|