blob: 712b02cd89b4cd0dcc6ba7637a499712791890c1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
TsiChung Liew0ee47d42010-03-11 22:12:53 -06002/*
3 * ColdFire cache
4 *
Alison Wangfdc2fb12012-10-18 19:25:51 +00005 * Copyright 2004-2012 Freescale Semiconductor, Inc.
TsiChung Liew0ee47d42010-03-11 22:12:53 -06006 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
TsiChung Liew0ee47d42010-03-11 22:12:53 -06007 */
8
9#ifndef __CACHE_H
10#define __CACHE_H
11
Tom Rini2a526c32023-12-14 13:16:51 -050012#include <config.h>
13
TsiChung Liew0ee47d42010-03-11 22:12:53 -060014#if defined(CONFIG_MCF520x) || defined(CONFIG_MCF523x) || \
Tom Rini1cd175e2021-07-12 12:42:14 -040015 defined(CONFIG_MCF52x2)
Tom Rini364d0022023-01-10 11:19:45 -050016#define CFG_CF_V2
TsiChung Liew0ee47d42010-03-11 22:12:53 -060017#endif
18
angelo@sysam.itbb4ba2c2015-02-12 01:40:00 +010019#if defined(CONFIG_MCF530x) || defined(CONFIG_MCF532x) || \
20 defined(CONFIG_MCF5301x)
Tom Rini364d0022023-01-10 11:19:45 -050021#define CFG_CF_V3
TsiChung Liew0ee47d42010-03-11 22:12:53 -060022#endif
23
Tom Rini3d59ab72021-07-12 12:42:13 -040024#if defined(CONFIG_MCF5441x)
Tom Rini364d0022023-01-10 11:19:45 -050025#define CFG_CF_V4E /* Four Extra ACRn */
TsiChung Liew0ee47d42010-03-11 22:12:53 -060026#endif
TsiChung Liew0ee47d42010-03-11 22:12:53 -060027
28/* ***** CACR ***** */
29/* V2 Core */
Tom Rini364d0022023-01-10 11:19:45 -050030#ifdef CFG_CF_V2
TsiChung Liew0ee47d42010-03-11 22:12:53 -060031
32#define CF_CACR_CENB (1 << 31)
33#define CF_CACR_CPD (1 << 28)
34#define CF_CACR_CFRZ (1 << 27)
35#define CF_CACR_CEIB (1 << 10)
36#define CF_CACR_DCM (1 << 9)
37#define CF_CACR_DBWE (1 << 8)
38
39#if defined(CONFIG_MCF5249) || defined(CONFIG_MCF5253)
40#define CF_CACR_DWP (1 << 6)
41#else
42#define CF_CACR_CINV (1 << 24)
43#define CF_CACR_DISI (1 << 23)
44#define CF_CACR_DISD (1 << 22)
45#define CF_CACR_INVI (1 << 21)
46#define CF_CACR_INVD (1 << 20)
47#define CF_CACR_DWP (1 << 5)
48#define CF_CACR_EUSP (1 << 4)
49#endif /* CONFIG_MCF5249 || CONFIG_MCF5253 */
50
Tom Rini364d0022023-01-10 11:19:45 -050051#endif /* CFG_CF_V2 */
TsiChung Liew0ee47d42010-03-11 22:12:53 -060052
53/* V3 Core */
Tom Rini364d0022023-01-10 11:19:45 -050054#ifdef CFG_CF_V3
TsiChung Liew0ee47d42010-03-11 22:12:53 -060055
56#define CF_CACR_EC (1 << 31)
57#define CF_CACR_ESB (1 << 29)
58#define CF_CACR_DPI (1 << 28)
59#define CF_CACR_HLCK (1 << 27)
60#define CF_CACR_CINVA (1 << 24)
61#define CF_CACR_DNFB (1 << 10)
62#define CF_CACR_DCM_UNMASK 0xFFFFFCFF
63#define CF_CACR_DCM_WT (0 << 8)
64#define CF_CACR_DCM_CB (1 << 8)
65#define CF_CACR_DCM_P (2 << 8)
66#define CF_CACR_DCM_IP (3 << 8)
67#define CF_CACR_DW (1 << 5)
68#define CF_CACR_EUSP (1 << 4)
69
Tom Rini364d0022023-01-10 11:19:45 -050070#endif /* CFG_CF_V3 */
TsiChung Liew0ee47d42010-03-11 22:12:53 -060071
72/* V4 Core */
Tom Rini364d0022023-01-10 11:19:45 -050073#if defined(CONFIG_CF_V4) || defined(CFG_CF_V4E)
TsiChung Liew0ee47d42010-03-11 22:12:53 -060074
75#define CF_CACR_DEC (1 << 31)
76#define CF_CACR_DW (1 << 30)
77#define CF_CACR_DESB (1 << 29)
78#define CF_CACR_DDPI (1 << 28)
79#define CF_CACR_DHLCK (1 << 27)
80#define CF_CACR_DDCM_UNMASK (0xF9FFFFFF)
81#define CF_CACR_DDCM_WT (0 << 25)
82#define CF_CACR_DDCM_CB (1 << 25)
83#define CF_CACR_DDCM_P (2 << 25)
84#define CF_CACR_DDCM_IP (3 << 25)
85#define CF_CACR_DCINVA (1 << 24)
86
87#define CF_CACR_DDSP (1 << 23)
88#define CF_CACR_BEC (1 << 19)
89#define CF_CACR_BCINVA (1 << 18)
90#define CF_CACR_IEC (1 << 15)
91#define CF_CACR_DNFB (1 << 13)
92#define CF_CACR_IDPI (1 << 12)
93#define CF_CACR_IHLCK (1 << 11)
94#define CF_CACR_IDCM (1 << 10)
95#define CF_CACR_ICINVA (1 << 8)
96#define CF_CACR_IDSP (1 << 7)
97#define CF_CACR_EUSP (1 << 5)
98
Alison Wangfdc2fb12012-10-18 19:25:51 +000099#if defined(CONFIG_MCF5445x) || defined(CONFIG_MCF5441x)
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600100#define CF_CACR_IVO (1 << 20)
101#define CF_CACR_SPA (1 << 14)
102#else
103#define CF_CACR_DF (1 << 4)
104#endif
105
106#endif /* CONFIG_CF_V4 */
107
108/* ***** ACR ***** */
109#define CF_ACR_ADR_UNMASK (0x00FFFFFF)
110#define CF_ACR_ADR(x) ((x & 0xFF) << 24)
111#define CF_ACR_ADRMSK_UNMASK (0xFF00FFFF)
112#define CF_ACR_ADRMSK(x) ((x & 0xFF) << 16)
113#define CF_ACR_EN (1 << 15)
114#define CF_ACR_SM_UNMASK (0xFFFF9FFF)
115#define CF_ACR_SM_UM (0 << 13)
116#define CF_ACR_SM_SM (1 << 13)
117#define CF_ACR_SM_ALL (3 << 13)
118#define CF_ACR_WP (1 << 2)
119
120/* V2 Core */
Tom Rini364d0022023-01-10 11:19:45 -0500121#ifdef CFG_CF_V2
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600122#define CF_ACR_CM (1 << 6)
123#define CF_ACR_BWE (1 << 5)
124#else
125/* V3 & V4 */
126#define CF_ACR_CM_UNMASK (0xFFFFFF9F)
127#define CF_ACR_CM_WT (0 << 5)
128#define CF_ACR_CM_CB (1 << 5)
129#define CF_ACR_CM_P (2 << 5)
130#define CF_ACR_CM_IP (3 << 5)
Tom Rini364d0022023-01-10 11:19:45 -0500131#endif /* CFG_CF_V2 */
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600132
133/* V4 Core */
Tom Rini364d0022023-01-10 11:19:45 -0500134#if defined(CONFIG_CF_V4) || defined(CFG_CF_V4E)
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600135#define CF_ACR_AMM (1 << 10)
136#define CF_ACR_SP (1 << 3)
137#endif /* CONFIG_CF_V4 */
138
Tom Rini6a5dccc2022-11-16 13:10:41 -0500139#ifndef CFG_SYS_CACHE_ICACR
140#define CFG_SYS_CACHE_ICACR 0
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600141#endif
142
Tom Rini6a5dccc2022-11-16 13:10:41 -0500143#ifndef CFG_SYS_CACHE_DCACR
144#ifdef CFG_SYS_CACHE_ICACR
145#define CFG_SYS_CACHE_DCACR CFG_SYS_CACHE_ICACR
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600146#else
Tom Rini6a5dccc2022-11-16 13:10:41 -0500147#define CFG_SYS_CACHE_DCACR 0
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600148#endif
149#endif
150
Tom Rini6a5dccc2022-11-16 13:10:41 -0500151#ifndef CFG_SYS_CACHE_ACR0
152#define CFG_SYS_CACHE_ACR0 0
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600153#endif
154
Tom Rini6a5dccc2022-11-16 13:10:41 -0500155#ifndef CFG_SYS_CACHE_ACR1
156#define CFG_SYS_CACHE_ACR1 0
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600157#endif
158
Tom Rini6a5dccc2022-11-16 13:10:41 -0500159#ifndef CFG_SYS_CACHE_ACR2
160#define CFG_SYS_CACHE_ACR2 0
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600161#endif
162
Tom Rini364d0022023-01-10 11:19:45 -0500163#ifndef CFG_SYS_CACHE_ACR3
164#define CFG_SYS_CACHE_ACR3 0
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600165#endif
166
Tom Rini364d0022023-01-10 11:19:45 -0500167#ifndef CFG_SYS_CACHE_ACR4
168#define CFG_SYS_CACHE_ACR4 0
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600169#endif
170
Tom Rini364d0022023-01-10 11:19:45 -0500171#ifndef CFG_SYS_CACHE_ACR5
172#define CFG_SYS_CACHE_ACR5 0
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600173#endif
174
Tom Rini364d0022023-01-10 11:19:45 -0500175#ifndef CFG_SYS_CACHE_ACR6
176#define CFG_SYS_CACHE_ACR6 0
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600177#endif
178
Tom Rini364d0022023-01-10 11:19:45 -0500179#ifndef CFG_SYS_CACHE_ACR7
180#define CFG_SYS_CACHE_ACR7 0
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600181#endif
182
183#define CF_ADDRMASK(x) (((x > 0x10) ? ((x >> 4) - 1) : (x)) << 16)
184
185#ifndef __ASSEMBLY__ /* put C only stuff in this section */
186
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600187void dcache_invalid(void);
188
189#endif
190
Anton Staaffe7d4f92011-10-17 16:46:04 -0700191/*
192 * m68k uses 16 byte L1 data cache line sizes. Use this for DMA buffer
193 * alignment unless the board configuration has specified a new value.
194 */
195#ifdef CONFIG_SYS_CACHELINE_SIZE
196#define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE
197#else
198#define ARCH_DMA_MINALIGN 16
199#endif
200
TsiChung Liew0ee47d42010-03-11 22:12:53 -0600201#endif /* __CACHE_H */