upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
846 B
48 lines
846 B
10 years ago
|
/*
|
||
|
* 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
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
|
||
|
#ifndef CONFIG_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
|