14 lines
225 B
C
14 lines
225 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* include/asm/cache.h
|
|
*/
|
|
#ifndef _ASM_SW64_CACHE_H
|
|
#define _ASM_SW64_CACHE_H
|
|
|
|
#define L1_CACHE_BYTES 128
|
|
#define L1_CACHE_SHIFT 7
|
|
|
|
#define SMP_CACHE_BYTES L1_CACHE_BYTES
|
|
|
|
#endif
|