1 |
27 |
unneback |
#ifndef CYGONCE_HAL_VAR_ARCH_H
|
2 |
|
|
#define CYGONCE_HAL_VAR_ARCH_H
|
3 |
|
|
|
4 |
|
|
//==========================================================================
|
5 |
|
|
//
|
6 |
|
|
// var_arch.h
|
7 |
|
|
//
|
8 |
|
|
// Architecture specific abstractions
|
9 |
|
|
//
|
10 |
|
|
//==========================================================================
|
11 |
|
|
//####ECOSGPLCOPYRIGHTBEGIN####
|
12 |
|
|
// -------------------------------------------
|
13 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
14 |
|
|
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
|
15 |
|
|
//
|
16 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
17 |
|
|
// the terms of the GNU General Public License as published by the Free
|
18 |
|
|
// Software Foundation; either version 2 or (at your option) any later version.
|
19 |
|
|
//
|
20 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
|
21 |
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
22 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
23 |
|
|
// for more details.
|
24 |
|
|
//
|
25 |
|
|
// You should have received a copy of the GNU General Public License along
|
26 |
|
|
// with eCos; if not, write to the Free Software Foundation, Inc.,
|
27 |
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
28 |
|
|
//
|
29 |
|
|
// As a special exception, if other files instantiate templates or use macros
|
30 |
|
|
// or inline functions from this file, or you compile this file and link it
|
31 |
|
|
// with other works to produce a work based on this file, this file does not
|
32 |
|
|
// by itself cause the resulting work to be covered by the GNU General Public
|
33 |
|
|
// License. However the source code for this file must still be made available
|
34 |
|
|
// in accordance with section (3) of the GNU General Public License.
|
35 |
|
|
//
|
36 |
|
|
// This exception does not invalidate any other reasons why a work based on
|
37 |
|
|
// this file might be covered by the GNU General Public License.
|
38 |
|
|
//
|
39 |
|
|
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
|
40 |
|
|
// at http://sources.redhat.com/ecos/ecos-license/
|
41 |
|
|
// -------------------------------------------
|
42 |
|
|
//####ECOSGPLCOPYRIGHTEND####
|
43 |
|
|
//==========================================================================
|
44 |
|
|
//#####DESCRIPTIONBEGIN####
|
45 |
|
|
//
|
46 |
|
|
// Author(s): nickg
|
47 |
|
|
// Contributors: nickg, dmoseley
|
48 |
|
|
// Date: 1999-02-17
|
49 |
|
|
// Purpose: Define architecture abstractions
|
50 |
|
|
// Description: This file contains any extra or modified definitions for
|
51 |
|
|
// this variant of the architecture.
|
52 |
|
|
// Usage: #include <cyg/hal/var_arch.h>
|
53 |
|
|
//
|
54 |
|
|
//####DESCRIPTIONEND####
|
55 |
|
|
//
|
56 |
|
|
//==========================================================================
|
57 |
|
|
|
58 |
|
|
#ifndef __ASSEMBLER__
|
59 |
|
|
#include <pkgconf/hal.h>
|
60 |
|
|
#include <cyg/infra/cyg_type.h>
|
61 |
|
|
#endif
|
62 |
|
|
|
63 |
|
|
//--------------------------------------------------------------------------
|
64 |
|
|
// Define macros for accessing CP0 registers
|
65 |
|
|
|
66 |
|
|
#define HAL_GET_CP0_REGISTER_32( _regval_, _cp0_regno_, _cp0_regsel_ ) \
|
67 |
|
|
{ \
|
68 |
|
|
cyg_uint32 tmp; \
|
69 |
|
|
asm volatile ("mfc0 %0,$%1,%2\nnop\n" \
|
70 |
|
|
: "=r" (tmp) \
|
71 |
|
|
: "i" (_cp0_regno_), "i" (_cp0_regsel_) ); \
|
72 |
|
|
_regval_ = tmp; \
|
73 |
|
|
}
|
74 |
|
|
|
75 |
|
|
#define HAL_SET_CP0_REGISTER_32( _regval_, _cp0_regno_, _cp0_regsel_ ) \
|
76 |
|
|
{ \
|
77 |
|
|
cyg_uint32 tmp = _regval_; \
|
78 |
|
|
asm volatile ("mtc0 %1,$%2,%3\nnop\n" \
|
79 |
|
|
: "=r" (tmp) \
|
80 |
|
|
: "r" (tmp), "i" (_cp0_regno_), "i" (_cp0_regsel_) ); \
|
81 |
|
|
}
|
82 |
|
|
|
83 |
|
|
#define HAL_GET_CP0_REGISTER_64( _regval_, _cp0_regno_, _cp0_regsel_ ) \
|
84 |
|
|
HAL_GET_CP0_REGISTER_32( _regval_, _cp0_regno_, _cp0_regsel_ )
|
85 |
|
|
#define HAL_SET_CP0_REGISTER_64( _regval_, _cp0_regno_, _cp0_regsel_ ) \
|
86 |
|
|
HAL_SET_CP0_REGISTER_32( _regval_, _cp0_regno_, _cp0_regsel_ )
|
87 |
|
|
|
88 |
|
|
//--------------------------------------------------------------------------
|
89 |
|
|
|
90 |
|
|
#ifdef CYGARC_HAL_COMMON_EXPORT_CPU_MACROS
|
91 |
|
|
/* System Control Coprocessor (CP0) exception processing registers */
|
92 |
|
|
/* These supplement the definitions in mips-regs.h */
|
93 |
|
|
#define C0_INDEX $0 /* Index into TLB Array - 4Kc core */
|
94 |
|
|
#define C0_RANDOM $1 /* Randomly generated index into TLB Array - 4Kc core */
|
95 |
|
|
#define C0_ENTRYLO0 $2 /* Low-order portion of the TLB entry for even-numbered virtual pages - 4Kc core */
|
96 |
|
|
#define C0_ENTRYLO1 $3 /* Low-order portion of the TLB entry for odd-numbered virtual pages - 4Kc core */
|
97 |
|
|
#define CO_PAGEMASK $5 /* Pointer to page table entry in memory - 4Kc core */
|
98 |
|
|
#define C0_WIRED $6 /* Number of fixed TLB entries - 4Kc core */
|
99 |
|
|
#define C0_ENTRYHI $10 /* High-order portion of the TLB entry - 4Kc core */
|
100 |
|
|
#define C0_PRId $15 /* Processor Identification and Revision */
|
101 |
|
|
#define C0_CONFIG $16 /* Configuration Register */
|
102 |
|
|
#define C0_LLADDR $17 /* Load linked address */
|
103 |
|
|
#define C0_LLADDR $17 /* Load linked address */
|
104 |
|
|
#define C0_DEBUG $23 /* Debug control and exception status */
|
105 |
|
|
#define C0_DEPC $24 /* Program counter at last debug exception */
|
106 |
|
|
#define C0_TAGLO $28 /* Low-order portion of cache tag interface */
|
107 |
|
|
#define C0_TAGHI $29 /* High-order portion of cache tag interface (not implemented in 4K cores */
|
108 |
|
|
#define C0_DESAVE $31 /* Debug handler scratch pad register */
|
109 |
|
|
|
110 |
|
|
/* Coprocessor Register selector field */
|
111 |
|
|
#define C0_SELECTOR_0 0x0
|
112 |
|
|
#define C0_SELECTOR_1 0x1
|
113 |
|
|
|
114 |
|
|
/* Status register fields */
|
115 |
|
|
#define SR_RP 0x08000000 /* Enter reduced-power mode */
|
116 |
|
|
#define SR_NMI 0x00080000 /* Reset vector called through assertion of the NMI signal */
|
117 |
|
|
|
118 |
|
|
/* Cause register fields */
|
119 |
|
|
#define CAUSE_IV 0x00800000 /* Interrupt vector to use -- Bit=0 -> offset=0x180;
|
120 |
|
|
Bit=1 -> offset=0x200; */
|
121 |
|
|
#define CAUSE_WP 0x00400000 /* Watch exception deferred due to either Status[EXL] or Status[ERL] */
|
122 |
|
|
#define CAUSE_MIPS32IP7 CAUSE_IP8 /* The MIPS32 architecture refers to these bits using a 0 base, */
|
123 |
|
|
#define CAUSE_MIPS32IP6 CAUSE_IP7 /* but the generic mips-regs.h refers to them with a 1 base */
|
124 |
|
|
#define CAUSE_MIPS32IP5 CAUSE_IP6
|
125 |
|
|
#define CAUSE_MIPS32IP4 CAUSE_IP5
|
126 |
|
|
#define CAUSE_MIPS32IP3 CAUSE_IP4
|
127 |
|
|
#define CAUSE_MIPS32IP2 CAUSE_IP3
|
128 |
|
|
#define CAUSE_MIPS32IP1 CAUSE_IP2
|
129 |
|
|
#define CAUSE_MIPS32IP0 CAUSE_IP1
|
130 |
|
|
|
131 |
|
|
#define CAUSE_MIPS32HW5 CAUSE_MIPS32IP1
|
132 |
|
|
#define CAUSE_MIPS32HW4 CAUSE_MIPS32IP1
|
133 |
|
|
#define CAUSE_MIPS32HW3 CAUSE_MIPS32IP1
|
134 |
|
|
#define CAUSE_MIPS32HW2 CAUSE_MIPS32IP1
|
135 |
|
|
#define CAUSE_MIPS32HW1 CAUSE_MIPS32IP1
|
136 |
|
|
#define CAUSE_MIPS32HW0 CAUSE_MIPS32IP1
|
137 |
|
|
#define CAUSE_MIPS32SW1 CAUSE_MIPS32IP1
|
138 |
|
|
#define CAUSE_MIPS32SW0 CAUSE_MIPS32IP0
|
139 |
|
|
|
140 |
|
|
/* Exception Codes */
|
141 |
|
|
#define EXC_WATCH 23 /* Reference to the Watch address */
|
142 |
|
|
#define EXC_MCHECK 24 /* Machine Check */
|
143 |
|
|
|
144 |
|
|
/* Processor Identification fields */
|
145 |
|
|
#define PRId_COMPANY_ID_MASK 0x00FF0000 /* Which company manufactured this chip */
|
146 |
|
|
#define PRId_COMPANY_MIPS_TECHNOLOGIES 0x00010000
|
147 |
|
|
#define PRId_PROCESSOR_ID_MASK 0x0000FF00 /* Which processor is this */
|
148 |
|
|
#define PRId_PROCESSOR_4Kc 0x00008000
|
149 |
|
|
#define PRId_PROCESSOR_4Kp_4Km 0x00008300
|
150 |
|
|
#define PRId_REVISION 0x000000FF /* Which revision is this */
|
151 |
|
|
|
152 |
|
|
/* Config register fields */
|
153 |
|
|
#define CONFIG_M 0x80000000 /* Hardwired to '1' to indicate presence of Config1 register */
|
154 |
|
|
#define CONFIG_K23 0x70000000 /* Controls cacheability of kseg2 and kseg3 in BAT */
|
155 |
|
|
#define CONFIG_KU 0x0E000000 /* Controls cacheability of ksegu in BAT */
|
156 |
|
|
#define CONFIG_MDU 0x00100000 /* MDU Type: 0 == Fast Multiplier Array; 1 == Iterative */
|
157 |
|
|
#define CONFIG_MM 0x00060000 /* Merge mode */
|
158 |
|
|
#define CONFIG_BM 0x00010000 /* Burst mode: 0 == Sequential; 1 == SubBlock */
|
159 |
|
|
#define CONFIG_BE 0x00008000 /* Endian mode: 0 == Little Endian; 1 == Big Endian */
|
160 |
|
|
#define CONFIG_AT 0x00006000 /* Architecture Type */
|
161 |
|
|
#define CONFIG_AR 0x00001C00 /* Architecture Revision */
|
162 |
|
|
#define CONFIG_MT 0x00000380 /* MMU Type */
|
163 |
|
|
#define CONFIG_K0 0x00000007 /* kseg0 coherency algorithm */
|
164 |
|
|
|
165 |
|
|
/* KSEG cache control codes */
|
166 |
|
|
#define CONFIG_KSEG2_3_CACHEABLE 0x30000000 /* KSeg2 and KSeg3 are cacheable/noncoherent/write-through/no write-allocate */
|
167 |
|
|
#define CONFIG_KSEG2_3_UNCACHEABLE 0x20000000 /* KSeg2 and KSeg3 are cacheable/noncoherent/write-through/no write-allocate */
|
168 |
|
|
#define CONFIG_KSEGU_CACHEABLE 0x06000000 /* KSegu is cacheable/noncoherent/write-through/no write-allocate */
|
169 |
|
|
#define CONFIG_KSEGU_UNCACHEABLE 0x04000000 /* KSegu is cacheable/noncoherent/write-through/no write-allocate */
|
170 |
|
|
#define CONFIG_KSEG0_CACHEABLE 0x00000003 /* KSeg0 is cacheable/noncoherent/write-through/no write-allocate */
|
171 |
|
|
#define CONFIG_KSEG0_UNCACHEABLE 0x00000002 /* KSeg0 is cacheable/noncoherent/write-through/no write-allocate */
|
172 |
|
|
|
173 |
|
|
/* Merge mode control codes */
|
174 |
|
|
#define CONFIG_NO_MERGING 0x00000000
|
175 |
|
|
#define CONFIG_SYSAD_VALID_MERGING 0x00200000
|
176 |
|
|
#define CONFIG_FULL_MERGING 0x00400000
|
177 |
|
|
|
178 |
|
|
/* Architecture Type codes */
|
179 |
|
|
#define CONFIG_AT_MIPS32 0x00000000
|
180 |
|
|
|
181 |
|
|
/* Architecture Revision codes */
|
182 |
|
|
#define CONFIG_AR_REVISION_1 0x00000000
|
183 |
|
|
|
184 |
|
|
/* MMU Type codes */
|
185 |
|
|
#define CONFIG_MMU_TYPE_STANDARD_TLB 0x00000080
|
186 |
|
|
#define CONFIG_MMU_TYPE_FIXED 0x00000180
|
187 |
|
|
|
188 |
|
|
/* Config1 register fields */
|
189 |
|
|
#define CONFIG1_MMU_SIZE_MASK 0x7E000000 /* Number of entries in the TLB minus 1 */
|
190 |
|
|
#define CONFIG1_IS 0x01C00000 /* Number of instruction cache sets per way */
|
191 |
|
|
#define CONFIG1_IL 0x00380000 /* Instruction cache line size */
|
192 |
|
|
#define CONFIG1_IA 0x00030000 /* Level of Instruction cache associativity */
|
193 |
|
|
#define CONFIG1_DS 0x0000E000 /* Number of data cache sets per way */
|
194 |
|
|
#define CONFIG1_DL 0x00001C00 /* Data cache line size */
|
195 |
|
|
#define CONFIG1_DA 0x00000380 /* Level of Data cache associativity */
|
196 |
|
|
#define CONFIG1_PC 0x00000010 /* Performance Counter registers implemented */
|
197 |
|
|
#define CONFIG1_WR 0x00000008 /* Watch registers implemented */
|
198 |
|
|
#define CONFIG1_CA 0x00000004 /* Code compression implemented */
|
199 |
|
|
#define CONFIG1_EP 0x00000002 /* EJTAG implemented */
|
200 |
|
|
#define CONFIG1_FP 0x00000001 /* FPU implemented */
|
201 |
|
|
|
202 |
|
|
/* Instruction cache sets-per-way codes */
|
203 |
|
|
#define CONFIG1_ICACHE_64_SETS_PER_WAY 0x00000000
|
204 |
|
|
#define CONFIG1_ICACHE_128_SETS_PER_WAY 0x00400000
|
205 |
|
|
#define CONFIG1_ICACHE_256_SETS_PER_WAY 0x00800000
|
206 |
|
|
|
207 |
|
|
/* Instruction cache line size codes */
|
208 |
|
|
#define CONFIG1_ICACHE_NOT_PRESET 0x00000000
|
209 |
|
|
#define CONFIG1_ICACHE_LINE_SIZE_16_BYTES 0x00180000
|
210 |
|
|
|
211 |
|
|
/* Instruction cache associativity codes */
|
212 |
|
|
#define CONFIG1_ICACHE_DIRECT_MAPPED 0x00000000
|
213 |
|
|
#define CONFIG1_ICACHE_2_WAY 0x00010000
|
214 |
|
|
#define CONFIG1_ICACHE_3_WAY 0x00020000
|
215 |
|
|
#define CONFIG1_ICACHE_4_WAY 0x00030000
|
216 |
|
|
|
217 |
|
|
/* Data cache sets-per-way codes */
|
218 |
|
|
#define CONFIG1_DCACHE_64_SETS_PER_WAY 0x00000000
|
219 |
|
|
#define CONFIG1_DCACHE_128_SETS_PER_WAY 0x00002000
|
220 |
|
|
#define CONFIG1_DCACHE_256_SETS_PER_WAY 0x00004000
|
221 |
|
|
|
222 |
|
|
/* Data cache line size codes */
|
223 |
|
|
#define CONFIG1_DCACHE_NOT_PRESET 0x00000000
|
224 |
|
|
#define CONFIG1_DCACHE_LINE_SIZE_16_BYTES 0x00000C00
|
225 |
|
|
|
226 |
|
|
/* Data cache associativity codes */
|
227 |
|
|
#define CONFIG1_DCACHE_DIRECT_MAPPED 0x00000000
|
228 |
|
|
#define CONFIG1_DCACHE_2_WAY 0x00000080
|
229 |
|
|
#define CONFIG1_DCACHE_3_WAY 0x00000100
|
230 |
|
|
#define CONFIG1_DCACHE_4_WAY 0x00000180
|
231 |
|
|
|
232 |
|
|
#endif // ifdef CYGARC_HAL_COMMON_EXPORT_CPU_MACROS
|
233 |
|
|
|
234 |
|
|
//--------------------------------------------------------------------------
|
235 |
|
|
#endif // CYGONCE_HAL_VAR_ARCH_H
|
236 |
|
|
// End of var_arch.h
|