2018-11-07 01:34:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
2023-02-06 08:10:49 +00:00
|
|
|
* Copyright (C) 2023 Andes Technology Corporation
|
2018-11-07 01:34:06 +00:00
|
|
|
* Rick Chen, Andes Technology Corporation <rick@andestech.com>
|
|
|
|
*/
|
|
|
|
|
2023-02-06 08:10:49 +00:00
|
|
|
#include <asm/csr.h>
|
|
|
|
#include <asm/asm.h>
|
2018-11-07 01:34:06 +00:00
|
|
|
#include <common.h>
|
2023-02-06 08:10:49 +00:00
|
|
|
#include <cache.h>
|
2019-11-14 19:57:37 +00:00
|
|
|
#include <cpu_func.h>
|
2019-08-28 10:46:09 +00:00
|
|
|
#include <dm.h>
|
|
|
|
#include <dm/uclass-internal.h>
|
2023-02-06 08:10:49 +00:00
|
|
|
#include <asm/arch-andes/csr.h>
|
2019-11-14 05:52:25 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_V5L2_CACHE
|
2023-02-06 08:10:49 +00:00
|
|
|
void enable_caches(void)
|
2019-11-14 05:52:25 +00:00
|
|
|
{
|
2023-02-06 08:10:49 +00:00
|
|
|
struct udevice *dev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = uclass_get_device_by_driver(UCLASS_CACHE,
|
|
|
|
DM_DRIVER_GET(v5l2_cache),
|
|
|
|
&dev);
|
|
|
|
if (ret) {
|
|
|
|
log_debug("Cannot enable v5l2 cache\n");
|
|
|
|
} else {
|
|
|
|
ret = cache_enable(dev);
|
|
|
|
if (ret)
|
|
|
|
log_debug("v5l2 cache enable failed\n");
|
|
|
|
}
|
2019-11-14 05:52:25 +00:00
|
|
|
}
|
|
|
|
|
2023-02-06 08:10:49 +00:00
|
|
|
static void cache_ops(int (*ops)(struct udevice *dev))
|
2019-11-14 05:52:25 +00:00
|
|
|
{
|
|
|
|
struct udevice *dev = NULL;
|
|
|
|
|
|
|
|
uclass_find_first_device(UCLASS_CACHE, &dev);
|
|
|
|
|
|
|
|
if (dev)
|
2023-02-06 08:10:49 +00:00
|
|
|
ops(dev);
|
2019-11-14 05:52:25 +00:00
|
|
|
}
|
|
|
|
#endif
|
2018-11-07 01:34:06 +00:00
|
|
|
|
2019-01-04 00:37:29 +00:00
|
|
|
void flush_dcache_all(void)
|
|
|
|
{
|
2020-03-14 13:42:28 +00:00
|
|
|
#if CONFIG_IS_ENABLED(RISCV_MMODE)
|
2023-02-06 08:10:49 +00:00
|
|
|
csr_write(CSR_MCCTLCOMMAND, CCTL_L1D_WBINVAL_ALL);
|
2019-11-14 05:52:25 +00:00
|
|
|
#endif
|
2019-01-04 00:37:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void flush_dcache_range(unsigned long start, unsigned long end)
|
|
|
|
{
|
|
|
|
flush_dcache_all();
|
|
|
|
}
|
|
|
|
|
|
|
|
void invalidate_dcache_range(unsigned long start, unsigned long end)
|
|
|
|
{
|
|
|
|
flush_dcache_all();
|
|
|
|
}
|
|
|
|
|
2018-11-07 01:34:06 +00:00
|
|
|
void icache_enable(void)
|
|
|
|
{
|
2023-02-06 08:10:49 +00:00
|
|
|
#if CONFIG_IS_ENABLED(RISCV_MMODE)
|
|
|
|
asm volatile("csrsi %0, 0x1" :: "i"(CSR_MCACHE_CTL));
|
|
|
|
#endif
|
2018-11-07 01:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void icache_disable(void)
|
|
|
|
{
|
2023-02-06 08:10:49 +00:00
|
|
|
#if CONFIG_IS_ENABLED(RISCV_MMODE)
|
|
|
|
asm volatile("csrci %0, 0x1" :: "i"(CSR_MCACHE_CTL));
|
|
|
|
#endif
|
2018-11-07 01:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void dcache_enable(void)
|
|
|
|
{
|
2023-02-06 08:10:49 +00:00
|
|
|
#if CONFIG_IS_ENABLED(RISCV_MMODE)
|
|
|
|
asm volatile("csrsi %0, 0x2" :: "i"(CSR_MCACHE_CTL));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_V5L2_CACHE
|
|
|
|
cache_ops(cache_enable);
|
|
|
|
#endif
|
2018-11-07 01:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void dcache_disable(void)
|
|
|
|
{
|
2023-02-06 08:10:49 +00:00
|
|
|
#if CONFIG_IS_ENABLED(RISCV_MMODE)
|
|
|
|
asm volatile("csrci %0, 0x2" :: "i"(CSR_MCACHE_CTL));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_V5L2_CACHE
|
|
|
|
cache_ops(cache_disable);
|
|
|
|
#endif
|
2018-11-07 01:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int icache_status(void)
|
|
|
|
{
|
2023-02-06 08:10:49 +00:00
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
#if CONFIG_IS_ENABLED(RISCV_MMODE)
|
|
|
|
asm volatile (
|
|
|
|
"csrr t1, %1\n\t"
|
|
|
|
"andi %0, t1, 0x01\n\t"
|
|
|
|
: "=r" (ret)
|
|
|
|
: "i"(CSR_MCACHE_CTL)
|
|
|
|
: "memory"
|
|
|
|
);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return !!ret;
|
2018-11-07 01:34:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int dcache_status(void)
|
|
|
|
{
|
2023-02-06 08:10:49 +00:00
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
#if CONFIG_IS_ENABLED(RISCV_MMODE)
|
|
|
|
asm volatile (
|
|
|
|
"csrr t1, %1\n\t"
|
|
|
|
"andi %0, t1, 0x02\n\t"
|
|
|
|
: "=r" (ret)
|
|
|
|
: "i" (CSR_MCACHE_CTL)
|
|
|
|
: "memory"
|
|
|
|
);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return !!ret;
|
2018-11-07 01:34:06 +00:00
|
|
|
}
|