mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
1001502545
While converting CONFIG_SYS_[DI]CACHE_OFF to Kconfig, there are instances where these configuration items are conditional on SPL. This commit adds SPL variants of these configuration items, uses CONFIG_IS_ENABLED(), and updates the configurations as required. Acked-by: Alexey Brodkin <abrodkin@synopsys.com> Signed-off-by: Trevor Woerner <trevor@toganlabs.com> [trini: Make the default depend on the setting for full U-Boot, update more zynq hardware] Signed-off-by: Tom Rini <trini@konsulko.com>
46 lines
852 B
C
46 lines
852 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* 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>
|
|
|
|
#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
|
|
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
|