5#ifndef ZEPHYR_INCLUDE_ARCH_XTENSA_CACHE_H_
6#define ZEPHYR_INCLUDE_ARCH_XTENSA_CACHE_H_
8#include <xtensa/config/core-isa.h>
12#include <xtensa/hal.h>
18#define Z_DCACHE_MAX (XCHAL_DCACHE_SIZE / XCHAL_DCACHE_WAYS)
21BUILD_ASSERT(Z_IS_POW2(XCHAL_DCACHE_LINESIZE));
22BUILD_ASSERT(Z_IS_POW2(Z_DCACHE_MAX));
25#if defined(CONFIG_DCACHE)
26static ALWAYS_INLINE int arch_dcache_flush_range(
void *addr,
size_t bytes)
29 size_t step = XCHAL_DCACHE_LINESIZE;
31 size_t last =
ROUND_UP(((
long)addr) + bytes, step);
34 for (line = first; bytes && line < last; line += step) {
35 __asm__
volatile(
"dhwb %0, 0" ::
"r"(line));
41static ALWAYS_INLINE int arch_dcache_flush_and_invd_range(
void *addr,
size_t bytes)
44 size_t step = XCHAL_DCACHE_LINESIZE;
46 size_t last =
ROUND_UP(((
long)addr) + bytes, step);
49 for (line = first; bytes && line < last; line += step) {
50 __asm__
volatile(
"dhwbi %0, 0" ::
"r"(line));
56static ALWAYS_INLINE int arch_dcache_invd_range(
void *addr,
size_t bytes)
59 size_t step = XCHAL_DCACHE_LINESIZE;
61 size_t last =
ROUND_UP(((
long)addr) + bytes, step);
64 for (line = first; bytes && line < last; line += step) {
65 __asm__
volatile(
"dhi %0, 0" ::
"r"(line));
74 size_t step = XCHAL_DCACHE_LINESIZE;
77 for (line = 0; line < XCHAL_DCACHE_SIZE; line += step) {
78 __asm__
volatile(
"dii %0, 0" ::
"r"(line));
87 size_t step = XCHAL_DCACHE_LINESIZE;
90 for (line = 0; line < XCHAL_DCACHE_SIZE; line += step) {
91 __asm__
volatile(
"diwb %0, 0" ::
"r"(line));
100 size_t step = XCHAL_DCACHE_LINESIZE;
103 for (line = 0; line < XCHAL_DCACHE_SIZE; line += step) {
104 __asm__
volatile(
"diwbi %0, 0" ::
"r"(line));
122#if defined(CONFIG_ICACHE)
124static size_t arch_icache_line_size_get(
void)
132 xthal_icache_all_writeback();
140 xthal_icache_all_invalidate();
150static ALWAYS_INLINE int arch_icache_flush_range(
void *addr,
size_t size)
155static ALWAYS_INLINE int arch_icache_invd_range(
void *addr,
size_t size)
158 xthal_icache_region_invalidate(addr, size);
163static ALWAYS_INLINE int arch_icache_flush_and_invd_range(
void *addr,
size_t size)
#define ALWAYS_INLINE
Definition: common.h:129
#define ROUND_UP(x, align)
Value of x rounded up to the next multiple of align.
Definition: util.h:256
#define ROUND_DOWN(x, align)
Value of x rounded down to the previous multiple of align.
Definition: util.h:263
#define ENOTSUP
Unsupported value.
Definition: errno.h:115