14 lines
267 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
/*
* include/asm/cache.h
*/
#ifndef _ASM_SW64_CACHE_H
#define _ASM_SW64_CACHE_H
#define L1_CACHE_SHIFT 7
2026-01-29 22:25:33 +08:00
#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
2026-01-21 18:59:54 +08:00
#define SMP_CACHE_BYTES L1_CACHE_BYTES
2026-01-29 22:25:33 +08:00
#endif /* _ASM_SW64_CACHE_H */