summaryrefslogtreecommitdiffstats
path: root/src/arch/riscv/include/arch/cache.h
blob: b42ad95ea00fcdab81835c7e806a4cf553bd05f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: BSD-3-Clause */
/* This file is part of the coreboot project. */

#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 */