162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 262306a36Sopenharmony_ci * 362306a36Sopenharmony_ci * include/asm-sh/cpu-sh4/cache.h 462306a36Sopenharmony_ci * 562306a36Sopenharmony_ci * Copyright (C) 1999 Niibe Yutaka 662306a36Sopenharmony_ci */ 762306a36Sopenharmony_ci#ifndef __ASM_CPU_SH4_CACHE_H 862306a36Sopenharmony_ci#define __ASM_CPU_SH4_CACHE_H 962306a36Sopenharmony_ci 1062306a36Sopenharmony_ci#define L1_CACHE_SHIFT 5 1162306a36Sopenharmony_ci 1262306a36Sopenharmony_ci#define SH_CACHE_VALID 1 1362306a36Sopenharmony_ci#define SH_CACHE_UPDATED 2 1462306a36Sopenharmony_ci#define SH_CACHE_COMBINED 4 1562306a36Sopenharmony_ci#define SH_CACHE_ASSOC 8 1662306a36Sopenharmony_ci 1762306a36Sopenharmony_ci#define SH_CCR 0xff00001c /* Address of Cache Control Register */ 1862306a36Sopenharmony_ci#define CCR_CACHE_OCE 0x0001 /* Operand Cache Enable */ 1962306a36Sopenharmony_ci#define CCR_CACHE_WT 0x0002 /* Write-Through (for P0,U0,P3) (else writeback)*/ 2062306a36Sopenharmony_ci#define CCR_CACHE_CB 0x0004 /* Copy-Back (for P1) (else writethrough) */ 2162306a36Sopenharmony_ci#define CCR_CACHE_OCI 0x0008 /* OC Invalidate */ 2262306a36Sopenharmony_ci#define CCR_CACHE_ORA 0x0020 /* OC RAM Mode */ 2362306a36Sopenharmony_ci#define CCR_CACHE_OIX 0x0080 /* OC Index Enable */ 2462306a36Sopenharmony_ci#define CCR_CACHE_ICE 0x0100 /* Instruction Cache Enable */ 2562306a36Sopenharmony_ci#define CCR_CACHE_ICI 0x0800 /* IC Invalidate */ 2662306a36Sopenharmony_ci#define CCR_CACHE_IIX 0x8000 /* IC Index Enable */ 2762306a36Sopenharmony_ci#ifndef CONFIG_CPU_SH4A 2862306a36Sopenharmony_ci#define CCR_CACHE_EMODE 0x80000000 /* EMODE Enable */ 2962306a36Sopenharmony_ci#endif 3062306a36Sopenharmony_ci 3162306a36Sopenharmony_ci/* Default CCR setup: 8k+16k-byte cache,P1-wb,enable */ 3262306a36Sopenharmony_ci#define CCR_CACHE_ENABLE (CCR_CACHE_OCE|CCR_CACHE_ICE) 3362306a36Sopenharmony_ci#define CCR_CACHE_INVALIDATE (CCR_CACHE_OCI|CCR_CACHE_ICI) 3462306a36Sopenharmony_ci 3562306a36Sopenharmony_ci#define CACHE_IC_ADDRESS_ARRAY 0xf0000000 3662306a36Sopenharmony_ci#define CACHE_OC_ADDRESS_ARRAY 0xf4000000 3762306a36Sopenharmony_ci 3862306a36Sopenharmony_ci#define RAMCR 0xFF000074 3962306a36Sopenharmony_ci 4062306a36Sopenharmony_ci#endif /* __ASM_CPU_SH4_CACHE_H */ 4162306a36Sopenharmony_ci 42