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>
|
2020-05-10 17:39:56 +00:00
|
|
|
#include <asm/cache.h>
|
2022-05-31 18:14:31 +00:00
|
|
|
#include <asm/cpuinfo.h>
|
|
|
|
#include <asm/global_data.h>
|
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2007-03-11 12:42:58 +00:00
|
|
|
|
2022-05-31 18:14:28 +00:00
|
|
|
static void __invalidate_icache(ulong addr, ulong size)
|
|
|
|
{
|
|
|
|
if (CONFIG_IS_ENABLED(XILINX_MICROBLAZE0_USE_WIC)) {
|
2022-05-31 18:14:31 +00:00
|
|
|
for (int i = 0; i < size;
|
|
|
|
i += gd_cpuinfo()->icache_line_length) {
|
2022-05-31 18:14:28 +00:00
|
|
|
asm volatile (
|
|
|
|
"wic %0, r0;"
|
|
|
|
"nop;"
|
|
|
|
:
|
|
|
|
: "r" (addr + i)
|
|
|
|
: "memory");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-31 18:14:30 +00:00
|
|
|
void invalidate_icache_all(void)
|
|
|
|
{
|
2022-05-31 18:14:31 +00:00
|
|
|
__invalidate_icache(0, gd_cpuinfo()->icache_size);
|
2022-05-31 18:14:30 +00:00
|
|
|
}
|
|
|
|
|
2022-05-31 18:14:28 +00:00
|
|
|
static void __flush_dcache(ulong addr, ulong size)
|
|
|
|
{
|
|
|
|
if (CONFIG_IS_ENABLED(XILINX_MICROBLAZE0_USE_WDC)) {
|
2022-05-31 18:14:31 +00:00
|
|
|
for (int i = 0; i < size;
|
|
|
|
i += gd_cpuinfo()->dcache_line_length) {
|
2022-05-31 18:14:28 +00:00
|
|
|
asm volatile (
|
|
|
|
"wdc.flush %0, r0;"
|
|
|
|
"nop;"
|
|
|
|
:
|
|
|
|
: "r" (addr + i)
|
|
|
|
: "memory");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-31 18:14:32 +00:00
|
|
|
void flush_dcache_range(unsigned long start, unsigned long end)
|
|
|
|
{
|
|
|
|
if (start >= end) {
|
|
|
|
debug("Invalid dcache range - start: 0x%08lx end: 0x%08lx\n",
|
|
|
|
start, end);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
__flush_dcache(start, end - start);
|
|
|
|
}
|
|
|
|
|
2022-05-31 18:14:30 +00:00
|
|
|
void flush_dcache_all(void)
|
|
|
|
{
|
2022-05-31 18:14:31 +00:00
|
|
|
__flush_dcache(0, gd_cpuinfo()->dcache_size);
|
2022-05-31 18:14:30 +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)
|
|
|
|
{
|
2022-05-31 18:14:30 +00:00
|
|
|
invalidate_icache_all();
|
2022-05-31 18:14:28 +00:00
|
|
|
|
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)
|
|
|
|
{
|
2022-05-31 18:14:30 +00:00
|
|
|
flush_dcache_all();
|
2022-05-31 18:14:26 +00:00
|
|
|
|
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
|
|
|
{
|
2022-05-31 18:14:28 +00:00
|
|
|
__invalidate_icache(addr, size);
|
|
|
|
__flush_dcache(addr, size);
|
2010-04-16 10:56:33 +00:00
|
|
|
}
|
2022-05-31 18:14:30 +00:00
|
|
|
|
|
|
|
void flush_cache_all(void)
|
|
|
|
{
|
|
|
|
invalidate_icache_all();
|
|
|
|
flush_dcache_all();
|
|
|
|
}
|