blob: df52f528604c55c883a9f0f993a6a51dcf3bca81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
|
/* $OpenBSD: m88110.h,v 1.24 2011/03/23 16:54:36 pirofti Exp $ */
#ifndef _MACHINE_M88110_H_
#define _MACHINE_M88110_H_
/*
* 88110 CMMU definitions
*/
#define CMMU_ICMD_INV_ITIC 0x001 /* Invalidate Inst Cache & TIC */
#define CMMU_ICMD_INV_TIC 0x002 /* Invalidate TIC */
#define CMMU_ICMD_INV_LINE 0x005 /* Invalidate Inst Cache Line */
#define CMMU_ICMD_PRB_SUPR 0x008 /* MMU Probe Supervisor */
#define CMMU_ICMD_PRB_USER 0x009 /* MMU Probe User */
#define CMMU_ICMD_INV_SATC 0x00a /* Invalidate All Supervisor ATCs */
#define CMMU_ICMD_INV_UATC 0x00b /* Invalidate All User ATCs */
#define CMMU_ICTL_DID 0x8000 /* Double instruction disable */
#define CMMU_ICTL_PREN 0x4000 /* Branch Prediction Enable */
#define CMMU_ICTL_FRZ0 0x0100 /* Inst Cache Freeze Bank 0 */
#define CMMU_ICTL_FRZ1 0x0080 /* Inst Cache Freeze Bank 1 */
#define CMMU_ICTL_HTEN 0x0040 /* Hardware Table Search Enable */
#define CMMU_ICTL_MEN 0x0020 /* Inst MMU Enable */
#define CMMU_ICTL_BEN 0x0004 /* TIC Cache Enable */
#define CMMU_ICTL_CEN 0x0001 /* Inst Cache Enable */
#define CMMU_ISR_TBE 0x200000 /* Table Search Bus Error */
#define CMMU_ISR_SI 0x100000 /* Segment Fault*/
#define CMMU_ISR_PI 0x080000 /* Page Fault */
#define CMMU_ISR_SP 0x040000 /* Supervisor Protection Violation */
#define CMMU_ISR_PH 0x000800 /* PATC Hit */
#define CMMU_ISR_BH 0x000400 /* BATC Hit */
#define CMMU_ISR_SU 0x000200 /* Supervisor Bit */
#define CMMU_ISR_BE 0x000001 /* Bus Error */
#define CMMU_DCMD_WB_PG 0x000 /* Flush Data Cache Page (sync) */
#define CMMU_DCMD_INV_ALL 0x001 /* Invalidate Data Cache All */
#define CMMU_DCMD_WB_ALL 0x002 /* Flush Data Cache All (sync) */
#define CMMU_DCMD_WBINV_ALL 0x003 /* Flush Data Cache All (sync + inv) */
#define CMMU_DCMD_WBINV_PG 0x004 /* Flush Data Cache Page (sync + inv) */
#define CMMU_DCMD_INV_LINE 0x005 /* Invalidate Data Cache Line */
#define CMMU_DCMD_WB_LINE 0x006 /* Flush Data Cache Line (sync) */
#define CMMU_DCMD_WBINV_LINE 0x007 /* Flush Data Cache Line (sync + inv) */
#define CMMU_DCMD_PRB_SUPR 0x008 /* MMU Probe Supervisor */
#define CMMU_DCMD_PRB_USER 0x009 /* MMU Probe User */
#define CMMU_DCMD_INV_SATC 0x00a /* Invalidate All Supervisor ATCs */
#define CMMU_DCMD_INV_UATC 0x00b /* Invalidate All User ATCs */
#define CMMU_DCTL_RSVD7 0x40000 /* Reserved */
#define CMMU_DCTL_RSVD6 0x20000 /* Reserved */
#define CMMU_DCTL_RSVD5 0x10000 /* Reserved */
#define CMMU_DCTL_RSVD4 0x8000 /* Reserved */
#define CMMU_DCTL_RSVD3 0x4000 /* Reserved */
#define CMMU_DCTL_XMEM 0x2000 /* store -> load sequence */
#define CMMU_DCTL_DEN 0x1000 /* Decoupled Cache Access Enable */
#define CMMU_DCTL_FWT 0x0800 /* Force Write Through */
#define CMMU_DCTL_BPEN1 0x0400 /* Break Point Enable 1 */
#define CMMU_DCTL_BPEN0 0x0200 /* Break Point Enable 0 */
#define CMMU_DCTL_FRZ0 0x0100 /* Data Cache Freeze Bank 0 */
#define CMMU_DCTL_FRZ1 0x0080 /* Data Cache Freeze Bank 1 */
#define CMMU_DCTL_HTEN 0x0040 /* Hardware Table Search Enable */
#define CMMU_DCTL_MEN 0x0020 /* Data MMU Enable */
#define CMMU_DCTL_RSVD2 0x0010 /* Reserved */
#define CMMU_DCTL_ADS 0x0008 /* Allocate Disable */
#define CMMU_DCTL_RSVD1 0x0004 /* Reserved */
#define CMMU_DCTL_SEN 0x0002 /* Data Cache Snoop Enable */
#define CMMU_DCTL_CEN 0x0001 /* Data Cache Enable */
#define CMMU_DSR_TBE 0x200000 /* Table Search Bus Error */
#define CMMU_DSR_SI 0x100000 /* Segment Fault */
#define CMMU_DSR_PI 0x080000 /* Page Fault */
#define CMMU_DSR_SP 0x040000 /* Supervisor Protection Violation */
#define CMMU_DSR_WE 0x020000 /* Write Protection Violation */
#define CMMU_DSR_BPE 0x010000 /* Break Point Exception */
#define CMMU_DSR_PH 0x000800 /* PATC Hit */
#define CMMU_DSR_BH 0x000400 /* BATC Hit */
#define CMMU_DSR_SU 0x000200 /* Supervisor Bit */
#define CMMU_DSR_RW 0x000100 /* Read Bit */
#define CMMU_DSR_CP 0x000004 /* Copyback Error */
#define CMMU_DSR_WA 0x000002 /* Write-Allocate Bus Error */
#define CMMU_DSR_BE 0x000001 /* Bus Error */
/* definitions for use of the BATC */
#define BATC_512K (0x00 << BATC_BLKSHIFT)
#define BATC_1M (0x01 << BATC_BLKSHIFT)
#define BATC_2M (0x03 << BATC_BLKSHIFT)
#define BATC_4M (0x07 << BATC_BLKSHIFT)
#define BATC_8M (0x0f << BATC_BLKSHIFT)
#define BATC_16M (0x1f << BATC_BLKSHIFT)
#define BATC_32M (0x3f << BATC_BLKSHIFT)
#define BATC_64M (0x7f << BATC_BLKSHIFT)
/*
* Cache line information
*/
#define MC88110_CACHE_SHIFT 5
#define MC88110_CACHE_LINE (1 << MC88110_CACHE_SHIFT)
#ifndef _LOCORE
void set_icmd(u_int value);
void set_ictl(u_int value);
void set_isar(u_int value);
void set_isap(u_int value);
void set_iuap(u_int value);
void set_iir(u_int value);
void set_ibp(u_int value);
void set_ippu(u_int value);
void set_ippl(u_int value);
void set_isr(u_int value);
void set_dcmd(u_int value);
void set_dctl(u_int value);
void set_dsar(u_int value);
void set_dsap(u_int value);
void set_duap(u_int value);
void set_dir(u_int value);
void set_dbp(u_int value);
void set_dppu(u_int value);
void set_dppl(u_int value);
void set_dsr(u_int value);
u_int get_ictl(void);
u_int get_dctl(void);
/*
* The following inlines expect their address to be line-aligned for line
* operations, and page aligned for page operations.
*/
static __inline__ void
mc88110_wb_data_line(paddr_t x)
{
set_dsar(x);
set_dcmd(CMMU_DCMD_WB_LINE);
}
static __inline__ void
mc88110_wb_data_page(paddr_t x)
{
set_dsar(x);
set_dcmd(CMMU_DCMD_WB_PG);
}
static __inline__ void
mc88110_wb_data(void)
{
set_dcmd(CMMU_DCMD_WB_ALL);
}
static __inline__ void
mc88110_inval_data_line(paddr_t x)
{
set_dsar(x);
set_dcmd(CMMU_DCMD_INV_LINE);
}
static __inline__ void
mc88110_inval_data(void)
{
set_dcmd(CMMU_DCMD_INV_ALL);
}
static __inline__ void
mc88110_wbinv_data_line(paddr_t x)
{
set_dsar(x);
set_dcmd(CMMU_DCMD_WBINV_LINE);
}
static __inline__ void
mc88110_wbinv_data_page(paddr_t x)
{
set_dsar(x);
set_dcmd(CMMU_DCMD_WBINV_PG);
}
static __inline__ void
mc88110_wbinv_data(void)
{
set_dcmd(CMMU_DCMD_WBINV_ALL);
}
static __inline__ void
mc88110_inval_inst_line(paddr_t x)
{
set_isar(x);
set_icmd(CMMU_ICMD_INV_LINE);
}
static __inline__ void
mc88110_inval_inst(void)
{
set_icmd(CMMU_ICMD_INV_ITIC);
}
/* skip one instruction */
static __inline__ void
m88110_skip_insn(struct trapframe *frame)
{
if (frame->tf_exip & 1)
frame->tf_exip = frame->tf_enip;
else
frame->tf_exip += 4;
}
#endif /* _LOCORE */
#endif /* _MACHINE_M88110_H_ */
|