2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2007-03-11 12:42:58 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007 Michal Simek
|
|
|
|
*
|
2007-09-23 22:18:46 +00:00
|
|
|
* Michal SIMEK <monstr@monstr.eu>
|
2007-03-11 12:42:58 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:37 +00:00
|
|
|
#include <cpu_func.h>
|
2007-05-07 21:58:31 +00:00
|
|
|
#include <asm/asm.h>
|
2007-03-11 12:42:58 +00:00
|
|
|
|
2019-11-14 19:57:36 +00:00
|
|
|
int dcache_status(void)
|
2007-03-11 12:42:58 +00:00
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
int mask = 0x80;
|
|
|
|
__asm__ __volatile__ ("mfs %0,rmsr"::"r" (i):"memory");
|
|
|
|
/* i&=0x80 */
|
|
|
|
__asm__ __volatile__ ("and %0,%0,%1"::"r" (i), "r" (mask):"memory");
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2019-11-14 19:57:36 +00:00
|
|
|
int icache_status(void)
|
2007-03-11 12:42:58 +00:00
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
int mask = 0x20;
|
|
|
|
__asm__ __volatile__ ("mfs %0,rmsr"::"r" (i):"memory");
|
|
|
|
/* i&=0x20 */
|
|
|
|
__asm__ __volatile__ ("and %0,%0,%1"::"r" (i), "r" (mask):"memory");
|
|
|
|
return i;
|
|
|
|
}
|
2007-05-07 17:25:08 +00:00
|
|
|
|
2019-11-14 19:57:36 +00:00
|
|
|
void icache_enable(void)
|
|
|
|
{
|
2007-05-07 21:58:31 +00:00
|
|
|
MSRSET(0x20);
|
2007-05-07 17:25:08 +00:00
|
|
|
}
|
|
|
|
|
2019-11-14 19:57:36 +00:00
|
|
|
void icache_disable(void)
|
|
|
|
{
|
2010-04-16 10:56:33 +00:00
|
|
|
/* we are not generate ICACHE size -> flush whole cache */
|
|
|
|
flush_cache(0, 32768);
|
2007-05-07 21:58:31 +00:00
|
|
|
MSRCLR(0x20);
|
2007-05-07 17:25:08 +00:00
|
|
|
}
|
|
|
|
|
2019-11-14 19:57:36 +00:00
|
|
|
void dcache_enable(void)
|
|
|
|
{
|
2007-05-07 21:58:31 +00:00
|
|
|
MSRSET(0x80);
|
2007-05-07 17:25:08 +00:00
|
|
|
}
|
|
|
|
|
2019-11-14 19:57:36 +00:00
|
|
|
void dcache_disable(void)
|
|
|
|
{
|
2010-04-16 10:56:33 +00:00
|
|
|
#ifdef XILINX_USE_DCACHE
|
|
|
|
flush_cache(0, XILINX_DCACHE_BYTE_SIZE);
|
|
|
|
#endif
|
2007-05-07 21:58:31 +00:00
|
|
|
MSRCLR(0x80);
|
2007-05-07 17:25:08 +00:00
|
|
|
}
|
2010-04-16 10:56:33 +00:00
|
|
|
|
2019-11-14 19:57:36 +00:00
|
|
|
void flush_cache(ulong addr, ulong size)
|
2010-04-16 10:56:33 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < size; i += 4)
|
|
|
|
asm volatile (
|
|
|
|
#ifdef CONFIG_ICACHE
|
|
|
|
"wic %0, r0;"
|
|
|
|
#endif
|
|
|
|
"nop;"
|
|
|
|
#ifdef CONFIG_DCACHE
|
|
|
|
"wdc.flush %0, r0;"
|
|
|
|
#endif
|
|
|
|
"nop;"
|
|
|
|
:
|
|
|
|
: "r" (addr + i)
|
|
|
|
: "memory");
|
|
|
|
}
|