summaryrefslogtreecommitdiffstats
path: root/src/arch/ppc64/include/arch/cache.h
blob: 51b0f1874c9e2f215163de2419d6fda58971fc7b (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 Power 8 */
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 */