summaryrefslogtreecommitdiffstats
path: root/src/arch/riscv/include/arch/cache.h
blob: 0f3bc8be1fbfa9de45e4ebbd0233df9ff4ce833e (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: BSD-3-Clause */

#ifndef ARCH_CACHE_H
#define ARCH_CACHE_H

/* TODO: implement these API stubs once caching is available on RISC-V */
static inline void dcache_clean_all(void) {}
static inline void dcache_invalidate_all(void) {}
static inline void dcache_clean_invalidate_all(void) {}

#endif /* ARCH_CACHE_H */