diff options
author | Piet Delaney <piet.delaney@gmail.com> | 2016-03-14 00:54:15 -0400 |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2016-03-17 17:16:12 -0400 |
commit | 2c684d892bb2ee31cc48f4a8b91e86a0f15e82f9 (patch) | |
tree | 00746213fa1fbbeae7ba77f8278298d8fd9a398c | |
parent | c91e02bd9702f2c00c6a6dc82dec1b2d5bb9f039 (diff) |
xtensa: add Three Core HiFi-2 MX Variant.
This variant has coherent cache, is equipped with interrupt distributor
and is capable of running SMP linux.
Signed-off-by: Piet Delaney <piet.delaney@gmail.com>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
3 files changed, 705 insertions, 0 deletions
diff --git a/arch/xtensa/variants/test_mmuhifi_c3/include/variant/core.h b/arch/xtensa/variants/test_mmuhifi_c3/include/variant/core.h new file mode 100644 index 000000000000..7c5d3a22da12 --- /dev/null +++ b/arch/xtensa/variants/test_mmuhifi_c3/include/variant/core.h | |||
@@ -0,0 +1,383 @@ | |||
1 | /* | ||
2 | * Xtensa processor core configuration information. | ||
3 | * | ||
4 | * This file is subject to the terms and conditions of version 2.1 of the GNU | ||
5 | * Lesser General Public License as published by the Free Software Foundation. | ||
6 | * | ||
7 | * Copyright (c) 1999-2009 Tensilica Inc. | ||
8 | */ | ||
9 | |||
10 | #ifndef _XTENSA_CORE_CONFIGURATION_H | ||
11 | #define _XTENSA_CORE_CONFIGURATION_H | ||
12 | |||
13 | |||
14 | /**************************************************************************** | ||
15 | Parameters Useful for Any Code, USER or PRIVILEGED | ||
16 | ****************************************************************************/ | ||
17 | |||
18 | /* | ||
19 | * Note: Macros of the form XCHAL_HAVE_*** have a value of 1 if the option is | ||
20 | * configured, and a value of 0 otherwise. These macros are always defined. | ||
21 | */ | ||
22 | |||
23 | |||
24 | /*---------------------------------------------------------------------- | ||
25 | ISA | ||
26 | ----------------------------------------------------------------------*/ | ||
27 | |||
28 | #define XCHAL_HAVE_BE 0 /* big-endian byte ordering */ | ||
29 | #define XCHAL_HAVE_WINDOWED 1 /* windowed registers option */ | ||
30 | #define XCHAL_NUM_AREGS 32 /* num of physical addr regs */ | ||
31 | #define XCHAL_NUM_AREGS_LOG2 5 /* log2(XCHAL_NUM_AREGS) */ | ||
32 | #define XCHAL_MAX_INSTRUCTION_SIZE 8 /* max instr bytes (3..8) */ | ||
33 | #define XCHAL_HAVE_DEBUG 1 /* debug option */ | ||
34 | #define XCHAL_HAVE_DENSITY 1 /* 16-bit instructions */ | ||
35 | #define XCHAL_HAVE_LOOPS 1 /* zero-overhead loops */ | ||
36 | #define XCHAL_HAVE_NSA 1 /* NSA/NSAU instructions */ | ||
37 | #define XCHAL_HAVE_MINMAX 1 /* MIN/MAX instructions */ | ||
38 | #define XCHAL_HAVE_SEXT 1 /* SEXT instruction */ | ||
39 | #define XCHAL_HAVE_CLAMPS 1 /* CLAMPS instruction */ | ||
40 | #define XCHAL_HAVE_MUL16 1 /* MUL16S/MUL16U instructions */ | ||
41 | #define XCHAL_HAVE_MUL32 1 /* MULL instruction */ | ||
42 | #define XCHAL_HAVE_MUL32_HIGH 0 /* MULUH/MULSH instructions */ | ||
43 | #define XCHAL_HAVE_DIV32 0 /* QUOS/QUOU/REMS/REMU instructions */ | ||
44 | #define XCHAL_HAVE_L32R 1 /* L32R instruction */ | ||
45 | #define XCHAL_HAVE_ABSOLUTE_LITERALS 1 /* non-PC-rel (extended) L32R */ | ||
46 | #define XCHAL_HAVE_CONST16 0 /* CONST16 instruction */ | ||
47 | #define XCHAL_HAVE_ADDX 1 /* ADDX#/SUBX# instructions */ | ||
48 | #define XCHAL_HAVE_WIDE_BRANCHES 0 /* B*.W18 or B*.W15 instr's */ | ||
49 | #define XCHAL_HAVE_PREDICTED_BRANCHES 0 /* B[EQ/EQZ/NE/NEZ]T instr's */ | ||
50 | #define XCHAL_HAVE_CALL4AND12 1 /* (obsolete option) */ | ||
51 | #define XCHAL_HAVE_ABS 1 /* ABS instruction */ | ||
52 | /*#define XCHAL_HAVE_POPC 0*/ /* POPC instruction */ | ||
53 | /*#define XCHAL_HAVE_CRC 0*/ /* CRC instruction */ | ||
54 | #define XCHAL_HAVE_RELEASE_SYNC 1 /* L32AI/S32RI instructions */ | ||
55 | #define XCHAL_HAVE_S32C1I 1 /* S32C1I instruction */ | ||
56 | #define XCHAL_HAVE_SPECULATION 0 /* speculation */ | ||
57 | #define XCHAL_HAVE_FULL_RESET 1 /* all regs/state reset */ | ||
58 | #define XCHAL_NUM_CONTEXTS 1 /* */ | ||
59 | #define XCHAL_NUM_MISC_REGS 2 /* num of scratch regs (0..4) */ | ||
60 | #define XCHAL_HAVE_TAP_MASTER 0 /* JTAG TAP control instr's */ | ||
61 | #define XCHAL_HAVE_PRID 1 /* processor ID register */ | ||
62 | #define XCHAL_HAVE_EXTERN_REGS 1 /* WER/RER instructions */ | ||
63 | #define XCHAL_HAVE_MP_INTERRUPTS 1 /* interrupt distributor port */ | ||
64 | #define XCHAL_HAVE_MP_RUNSTALL 1 /* core RunStall control port */ | ||
65 | #define XCHAL_HAVE_THREADPTR 1 /* THREADPTR register */ | ||
66 | #define XCHAL_HAVE_BOOLEANS 1 /* boolean registers */ | ||
67 | #define XCHAL_HAVE_CP 1 /* CPENABLE reg (coprocessor) */ | ||
68 | #define XCHAL_CP_MAXCFG 2 /* max allowed cp id plus one */ | ||
69 | #define XCHAL_HAVE_MAC16 0 /* MAC16 package */ | ||
70 | #define XCHAL_HAVE_VECTORFPU2005 0 /* vector floating-point pkg */ | ||
71 | #define XCHAL_HAVE_FP 0 /* floating point pkg */ | ||
72 | #define XCHAL_HAVE_DFP 0 /* double precision FP pkg */ | ||
73 | #define XCHAL_HAVE_DFP_accel 0 /* double precision FP acceleration pkg */ | ||
74 | #define XCHAL_HAVE_VECTRA1 0 /* Vectra I pkg */ | ||
75 | #define XCHAL_HAVE_VECTRALX 0 /* Vectra LX pkg */ | ||
76 | #define XCHAL_HAVE_HIFIPRO 0 /* HiFiPro Audio Engine pkg */ | ||
77 | #define XCHAL_HAVE_HIFI2 1 /* HiFi2 Audio Engine pkg */ | ||
78 | #define XCHAL_HAVE_CONNXD2 0 /* ConnX D2 pkg */ | ||
79 | |||
80 | |||
81 | /*---------------------------------------------------------------------- | ||
82 | MISC | ||
83 | ----------------------------------------------------------------------*/ | ||
84 | |||
85 | #define XCHAL_NUM_WRITEBUFFER_ENTRIES 8 /* size of write buffer */ | ||
86 | #define XCHAL_INST_FETCH_WIDTH 8 /* instr-fetch width in bytes */ | ||
87 | #define XCHAL_DATA_WIDTH 8 /* data width in bytes */ | ||
88 | /* In T1050, applies to selected core load and store instructions (see ISA): */ | ||
89 | #define XCHAL_UNALIGNED_LOAD_EXCEPTION 1 /* unaligned loads cause exc. */ | ||
90 | #define XCHAL_UNALIGNED_STORE_EXCEPTION 1 /* unaligned stores cause exc.*/ | ||
91 | #define XCHAL_UNALIGNED_LOAD_HW 0 /* unaligned loads work in hw */ | ||
92 | #define XCHAL_UNALIGNED_STORE_HW 0 /* unaligned stores work in hw*/ | ||
93 | |||
94 | #define XCHAL_SW_VERSION 800000 /* sw version of this header */ | ||
95 | |||
96 | #define XCHAL_CORE_ID "test_mmuhifi_c3" /* alphanum core name | ||
97 | (CoreID) set in the Xtensa | ||
98 | Processor Generator */ | ||
99 | |||
100 | #define XCHAL_CORE_DESCRIPTION "test_mmuhifi_c3" | ||
101 | #define XCHAL_BUILD_UNIQUE_ID 0x00005A6A /* 22-bit sw build ID */ | ||
102 | |||
103 | /* | ||
104 | * These definitions describe the hardware targeted by this software. | ||
105 | */ | ||
106 | #define XCHAL_HW_CONFIGID0 0xC1B3CBFE /* ConfigID hi 32 bits*/ | ||
107 | #define XCHAL_HW_CONFIGID1 0x10405A6A /* ConfigID lo 32 bits*/ | ||
108 | #define XCHAL_HW_VERSION_NAME "LX3.0.0" /* full version name */ | ||
109 | #define XCHAL_HW_VERSION_MAJOR 2300 /* major ver# of targeted hw */ | ||
110 | #define XCHAL_HW_VERSION_MINOR 0 /* minor ver# of targeted hw */ | ||
111 | #define XCHAL_HW_VERSION 230000 /* major*100+minor */ | ||
112 | #define XCHAL_HW_REL_LX3 1 | ||
113 | #define XCHAL_HW_REL_LX3_0 1 | ||
114 | #define XCHAL_HW_REL_LX3_0_0 1 | ||
115 | #define XCHAL_HW_CONFIGID_RELIABLE 1 | ||
116 | /* If software targets a *range* of hardware versions, these are the bounds: */ | ||
117 | #define XCHAL_HW_MIN_VERSION_MAJOR 2300 /* major v of earliest tgt hw */ | ||
118 | #define XCHAL_HW_MIN_VERSION_MINOR 0 /* minor v of earliest tgt hw */ | ||
119 | #define XCHAL_HW_MIN_VERSION 230000 /* earliest targeted hw */ | ||
120 | #define XCHAL_HW_MAX_VERSION_MAJOR 2300 /* major v of latest tgt hw */ | ||
121 | #define XCHAL_HW_MAX_VERSION_MINOR 0 /* minor v of latest tgt hw */ | ||
122 | #define XCHAL_HW_MAX_VERSION 230000 /* latest targeted hw */ | ||
123 | |||
124 | |||
125 | /*---------------------------------------------------------------------- | ||
126 | CACHE | ||
127 | ----------------------------------------------------------------------*/ | ||
128 | |||
129 | #define XCHAL_ICACHE_LINESIZE 32 /* I-cache line size in bytes */ | ||
130 | #define XCHAL_DCACHE_LINESIZE 32 /* D-cache line size in bytes */ | ||
131 | #define XCHAL_ICACHE_LINEWIDTH 5 /* log2(I line size in bytes) */ | ||
132 | #define XCHAL_DCACHE_LINEWIDTH 5 /* log2(D line size in bytes) */ | ||
133 | |||
134 | #define XCHAL_ICACHE_SIZE 16384 /* I-cache size in bytes or 0 */ | ||
135 | #define XCHAL_DCACHE_SIZE 16384 /* D-cache size in bytes or 0 */ | ||
136 | |||
137 | #define XCHAL_DCACHE_IS_WRITEBACK 1 /* writeback feature */ | ||
138 | #define XCHAL_DCACHE_IS_COHERENT 1 /* MP coherence feature */ | ||
139 | |||
140 | |||
141 | |||
142 | |||
143 | /**************************************************************************** | ||
144 | Parameters Useful for PRIVILEGED (Supervisory or Non-Virtualized) Code | ||
145 | ****************************************************************************/ | ||
146 | |||
147 | |||
148 | #ifndef XTENSA_HAL_NON_PRIVILEGED_ONLY | ||
149 | |||
150 | /*---------------------------------------------------------------------- | ||
151 | CACHE | ||
152 | ----------------------------------------------------------------------*/ | ||
153 | |||
154 | #define XCHAL_HAVE_PIF 1 /* any outbound PIF present */ | ||
155 | |||
156 | /* If present, cache size in bytes == (ways * 2^(linewidth + setwidth)). */ | ||
157 | |||
158 | /* Number of cache sets in log2(lines per way): */ | ||
159 | #define XCHAL_ICACHE_SETWIDTH 8 | ||
160 | #define XCHAL_DCACHE_SETWIDTH 8 | ||
161 | |||
162 | /* Cache set associativity (number of ways): */ | ||
163 | #define XCHAL_ICACHE_WAYS 2 | ||
164 | #define XCHAL_DCACHE_WAYS 2 | ||
165 | |||
166 | /* Cache features: */ | ||
167 | #define XCHAL_ICACHE_LINE_LOCKABLE 0 | ||
168 | #define XCHAL_DCACHE_LINE_LOCKABLE 0 | ||
169 | #define XCHAL_ICACHE_ECC_PARITY 0 | ||
170 | #define XCHAL_DCACHE_ECC_PARITY 0 | ||
171 | |||
172 | /* Cache access size in bytes (affects operation of SICW instruction): */ | ||
173 | #define XCHAL_ICACHE_ACCESS_SIZE 8 | ||
174 | #define XCHAL_DCACHE_ACCESS_SIZE 8 | ||
175 | |||
176 | /* Number of encoded cache attr bits (see <xtensa/hal.h> for decoded bits): */ | ||
177 | #define XCHAL_CA_BITS 4 | ||
178 | |||
179 | |||
180 | /*---------------------------------------------------------------------- | ||
181 | INTERNAL I/D RAM/ROMs and XLMI | ||
182 | ----------------------------------------------------------------------*/ | ||
183 | |||
184 | #define XCHAL_NUM_INSTROM 0 /* number of core instr. ROMs */ | ||
185 | #define XCHAL_NUM_INSTRAM 0 /* number of core instr. RAMs */ | ||
186 | #define XCHAL_NUM_DATAROM 0 /* number of core data ROMs */ | ||
187 | #define XCHAL_NUM_DATARAM 0 /* number of core data RAMs */ | ||
188 | #define XCHAL_NUM_URAM 0 /* number of core unified RAMs*/ | ||
189 | #define XCHAL_NUM_XLMI 0 /* number of core XLMI ports */ | ||
190 | |||
191 | |||
192 | /*---------------------------------------------------------------------- | ||
193 | INTERRUPTS and TIMERS | ||
194 | ----------------------------------------------------------------------*/ | ||
195 | |||
196 | #define XCHAL_HAVE_INTERRUPTS 1 /* interrupt option */ | ||
197 | #define XCHAL_HAVE_HIGHPRI_INTERRUPTS 1 /* med/high-pri. interrupts */ | ||
198 | #define XCHAL_HAVE_NMI 0 /* non-maskable interrupt */ | ||
199 | #define XCHAL_HAVE_CCOUNT 1 /* CCOUNT reg. (timer option) */ | ||
200 | #define XCHAL_NUM_TIMERS 2 /* number of CCOMPAREn regs */ | ||
201 | #define XCHAL_NUM_INTERRUPTS 12 /* number of interrupts */ | ||
202 | #define XCHAL_NUM_INTERRUPTS_LOG2 4 /* ceil(log2(NUM_INTERRUPTS)) */ | ||
203 | #define XCHAL_NUM_EXTINTERRUPTS 9 /* num of external interrupts */ | ||
204 | #define XCHAL_NUM_INTLEVELS 2 /* number of interrupt levels | ||
205 | (not including level zero) */ | ||
206 | #define XCHAL_EXCM_LEVEL 1 /* level masked by PS.EXCM */ | ||
207 | /* (always 1 in XEA1; levels 2 .. EXCM_LEVEL are "medium priority") */ | ||
208 | |||
209 | /* Masks of interrupts at each interrupt level: */ | ||
210 | #define XCHAL_INTLEVEL1_MASK 0x00000FFF | ||
211 | #define XCHAL_INTLEVEL2_MASK 0x00000000 | ||
212 | #define XCHAL_INTLEVEL3_MASK 0x00000000 | ||
213 | #define XCHAL_INTLEVEL4_MASK 0x00000000 | ||
214 | #define XCHAL_INTLEVEL5_MASK 0x00000000 | ||
215 | #define XCHAL_INTLEVEL6_MASK 0x00000000 | ||
216 | #define XCHAL_INTLEVEL7_MASK 0x00000000 | ||
217 | |||
218 | /* Masks of interrupts at each range 1..n of interrupt levels: */ | ||
219 | #define XCHAL_INTLEVEL1_ANDBELOW_MASK 0x00000FFF | ||
220 | #define XCHAL_INTLEVEL2_ANDBELOW_MASK 0x00000FFF | ||
221 | #define XCHAL_INTLEVEL3_ANDBELOW_MASK 0x00000FFF | ||
222 | #define XCHAL_INTLEVEL4_ANDBELOW_MASK 0x00000FFF | ||
223 | #define XCHAL_INTLEVEL5_ANDBELOW_MASK 0x00000FFF | ||
224 | #define XCHAL_INTLEVEL6_ANDBELOW_MASK 0x00000FFF | ||
225 | #define XCHAL_INTLEVEL7_ANDBELOW_MASK 0x00000FFF | ||
226 | |||
227 | /* Level of each interrupt: */ | ||
228 | #define XCHAL_INT0_LEVEL 1 | ||
229 | #define XCHAL_INT1_LEVEL 1 | ||
230 | #define XCHAL_INT2_LEVEL 1 | ||
231 | #define XCHAL_INT3_LEVEL 1 | ||
232 | #define XCHAL_INT4_LEVEL 1 | ||
233 | #define XCHAL_INT5_LEVEL 1 | ||
234 | #define XCHAL_INT6_LEVEL 1 | ||
235 | #define XCHAL_INT7_LEVEL 1 | ||
236 | #define XCHAL_INT8_LEVEL 1 | ||
237 | #define XCHAL_INT9_LEVEL 1 | ||
238 | #define XCHAL_INT10_LEVEL 1 | ||
239 | #define XCHAL_INT11_LEVEL 1 | ||
240 | #define XCHAL_DEBUGLEVEL 2 /* debug interrupt level */ | ||
241 | #define XCHAL_HAVE_DEBUG_EXTERN_INT 1 /* OCD external db interrupt */ | ||
242 | |||
243 | /* Type of each interrupt: */ | ||
244 | #define XCHAL_INT0_TYPE XTHAL_INTTYPE_EXTERN_LEVEL | ||
245 | #define XCHAL_INT1_TYPE XTHAL_INTTYPE_EXTERN_LEVEL | ||
246 | #define XCHAL_INT2_TYPE XTHAL_INTTYPE_EXTERN_EDGE | ||
247 | #define XCHAL_INT3_TYPE XTHAL_INTTYPE_EXTERN_LEVEL | ||
248 | #define XCHAL_INT4_TYPE XTHAL_INTTYPE_EXTERN_LEVEL | ||
249 | #define XCHAL_INT5_TYPE XTHAL_INTTYPE_EXTERN_LEVEL | ||
250 | #define XCHAL_INT6_TYPE XTHAL_INTTYPE_TIMER | ||
251 | #define XCHAL_INT7_TYPE XTHAL_INTTYPE_SOFTWARE | ||
252 | #define XCHAL_INT8_TYPE XTHAL_INTTYPE_TIMER | ||
253 | #define XCHAL_INT9_TYPE XTHAL_INTTYPE_EXTERN_LEVEL | ||
254 | #define XCHAL_INT10_TYPE XTHAL_INTTYPE_EXTERN_LEVEL | ||
255 | #define XCHAL_INT11_TYPE XTHAL_INTTYPE_EXTERN_LEVEL | ||
256 | |||
257 | /* Masks of interrupts for each type of interrupt: */ | ||
258 | #define XCHAL_INTTYPE_MASK_UNCONFIGURED 0xFFFFF000 | ||
259 | #define XCHAL_INTTYPE_MASK_SOFTWARE 0x00000080 | ||
260 | #define XCHAL_INTTYPE_MASK_EXTERN_EDGE 0x00000004 | ||
261 | #define XCHAL_INTTYPE_MASK_EXTERN_LEVEL 0x00000E3B | ||
262 | #define XCHAL_INTTYPE_MASK_TIMER 0x00000140 | ||
263 | #define XCHAL_INTTYPE_MASK_NMI 0x00000000 | ||
264 | #define XCHAL_INTTYPE_MASK_WRITE_ERROR 0x00000000 | ||
265 | |||
266 | /* Interrupt numbers assigned to specific interrupt sources: */ | ||
267 | #define XCHAL_TIMER0_INTERRUPT 6 /* CCOMPARE0 */ | ||
268 | #define XCHAL_TIMER1_INTERRUPT 8 /* CCOMPARE1 */ | ||
269 | #define XCHAL_TIMER2_INTERRUPT XTHAL_TIMER_UNCONFIGURED | ||
270 | #define XCHAL_TIMER3_INTERRUPT XTHAL_TIMER_UNCONFIGURED | ||
271 | |||
272 | /* Interrupt numbers for levels at which only one interrupt is configured: */ | ||
273 | /* (There are many interrupts each at level(s) 1.) */ | ||
274 | |||
275 | |||
276 | /* | ||
277 | * External interrupt vectors/levels. | ||
278 | * These macros describe how Xtensa processor interrupt numbers | ||
279 | * (as numbered internally, eg. in INTERRUPT and INTENABLE registers) | ||
280 | * map to external BInterrupt<n> pins, for those interrupts | ||
281 | * configured as external (level-triggered, edge-triggered, or NMI). | ||
282 | * See the Xtensa processor databook for more details. | ||
283 | */ | ||
284 | |||
285 | /* Core interrupt numbers mapped to each EXTERNAL interrupt number: */ | ||
286 | #define XCHAL_EXTINT0_NUM 0 /* (intlevel 1) */ | ||
287 | #define XCHAL_EXTINT1_NUM 1 /* (intlevel 1) */ | ||
288 | #define XCHAL_EXTINT2_NUM 2 /* (intlevel 1) */ | ||
289 | #define XCHAL_EXTINT3_NUM 3 /* (intlevel 1) */ | ||
290 | #define XCHAL_EXTINT4_NUM 4 /* (intlevel 1) */ | ||
291 | #define XCHAL_EXTINT5_NUM 5 /* (intlevel 1) */ | ||
292 | #define XCHAL_EXTINT6_NUM 9 /* (intlevel 1) */ | ||
293 | #define XCHAL_EXTINT7_NUM 10 /* (intlevel 1) */ | ||
294 | #define XCHAL_EXTINT8_NUM 11 /* (intlevel 1) */ | ||
295 | |||
296 | |||
297 | /*---------------------------------------------------------------------- | ||
298 | EXCEPTIONS and VECTORS | ||
299 | ----------------------------------------------------------------------*/ | ||
300 | |||
301 | #define XCHAL_XEA_VERSION 2 /* Xtensa Exception Architecture | ||
302 | number: 1 == XEA1 (old) | ||
303 | 2 == XEA2 (new) | ||
304 | 0 == XEAX (extern) */ | ||
305 | #define XCHAL_HAVE_XEA1 0 /* Exception Architecture 1 */ | ||
306 | #define XCHAL_HAVE_XEA2 1 /* Exception Architecture 2 */ | ||
307 | #define XCHAL_HAVE_XEAX 0 /* External Exception Arch. */ | ||
308 | #define XCHAL_HAVE_EXCEPTIONS 1 /* exception option */ | ||
309 | #define XCHAL_HAVE_MEM_ECC_PARITY 0 /* local memory ECC/parity */ | ||
310 | #define XCHAL_HAVE_VECTOR_SELECT 1 /* relocatable vectors */ | ||
311 | #define XCHAL_HAVE_VECBASE 1 /* relocatable vectors */ | ||
312 | #define XCHAL_VECBASE_RESET_VADDR 0xD0000000 /* VECBASE reset value */ | ||
313 | #define XCHAL_VECBASE_RESET_PADDR 0x00000000 | ||
314 | #define XCHAL_RESET_VECBASE_OVERLAP 0 | ||
315 | |||
316 | #define XCHAL_RESET_VECTOR0_VADDR 0xFE000000 | ||
317 | #define XCHAL_RESET_VECTOR0_PADDR 0xFE000000 | ||
318 | #define XCHAL_RESET_VECTOR1_VADDR 0xD8000500 | ||
319 | #define XCHAL_RESET_VECTOR1_PADDR 0x00000500 | ||
320 | #define XCHAL_RESET_VECTOR_VADDR 0xFE000000 | ||
321 | #define XCHAL_RESET_VECTOR_PADDR 0xFE000000 | ||
322 | #define XCHAL_USER_VECOFS 0x00000340 | ||
323 | #define XCHAL_USER_VECTOR_VADDR 0xD0000340 | ||
324 | #define XCHAL_USER_VECTOR_PADDR 0x00000340 | ||
325 | #define XCHAL_KERNEL_VECOFS 0x00000300 | ||
326 | #define XCHAL_KERNEL_VECTOR_VADDR 0xD0000300 | ||
327 | #define XCHAL_KERNEL_VECTOR_PADDR 0x00000300 | ||
328 | #define XCHAL_DOUBLEEXC_VECOFS 0x000003C0 | ||
329 | #define XCHAL_DOUBLEEXC_VECTOR_VADDR 0xD00003C0 | ||
330 | #define XCHAL_DOUBLEEXC_VECTOR_PADDR 0x000003C0 | ||
331 | #define XCHAL_WINDOW_OF4_VECOFS 0x00000000 | ||
332 | #define XCHAL_WINDOW_UF4_VECOFS 0x00000040 | ||
333 | #define XCHAL_WINDOW_OF8_VECOFS 0x00000080 | ||
334 | #define XCHAL_WINDOW_UF8_VECOFS 0x000000C0 | ||
335 | #define XCHAL_WINDOW_OF12_VECOFS 0x00000100 | ||
336 | #define XCHAL_WINDOW_UF12_VECOFS 0x00000140 | ||
337 | #define XCHAL_WINDOW_VECTORS_VADDR 0xD0000000 | ||
338 | #define XCHAL_WINDOW_VECTORS_PADDR 0x00000000 | ||
339 | #define XCHAL_INTLEVEL2_VECOFS 0x00000280 | ||
340 | #define XCHAL_INTLEVEL2_VECTOR_VADDR 0xD0000280 | ||
341 | #define XCHAL_INTLEVEL2_VECTOR_PADDR 0x00000280 | ||
342 | #define XCHAL_DEBUG_VECOFS XCHAL_INTLEVEL2_VECOFS | ||
343 | #define XCHAL_DEBUG_VECTOR_VADDR XCHAL_INTLEVEL2_VECTOR_VADDR | ||
344 | #define XCHAL_DEBUG_VECTOR_PADDR XCHAL_INTLEVEL2_VECTOR_PADDR | ||
345 | |||
346 | |||
347 | /*---------------------------------------------------------------------- | ||
348 | DEBUG | ||
349 | ----------------------------------------------------------------------*/ | ||
350 | |||
351 | #define XCHAL_HAVE_OCD 1 /* OnChipDebug option */ | ||
352 | #define XCHAL_NUM_IBREAK 0 /* number of IBREAKn regs */ | ||
353 | #define XCHAL_NUM_DBREAK 0 /* number of DBREAKn regs */ | ||
354 | #define XCHAL_HAVE_OCD_DIR_ARRAY 0 /* faster OCD option */ | ||
355 | |||
356 | |||
357 | /*---------------------------------------------------------------------- | ||
358 | MMU | ||
359 | ----------------------------------------------------------------------*/ | ||
360 | |||
361 | /* See core-matmap.h header file for more details. */ | ||
362 | |||
363 | #define XCHAL_HAVE_TLBS 1 /* inverse of HAVE_CACHEATTR */ | ||
364 | #define XCHAL_HAVE_SPANNING_WAY 0 /* one way maps I+D 4GB vaddr */ | ||
365 | #define XCHAL_HAVE_IDENTITY_MAP 0 /* vaddr == paddr always */ | ||
366 | #define XCHAL_HAVE_CACHEATTR 0 /* CACHEATTR register present */ | ||
367 | #define XCHAL_HAVE_MIMIC_CACHEATTR 0 /* region protection */ | ||
368 | #define XCHAL_HAVE_XLT_CACHEATTR 0 /* region prot. w/translation */ | ||
369 | #define XCHAL_HAVE_PTP_MMU 1 /* full MMU (with page table | ||
370 | [autorefill] and protection) | ||
371 | usable for an MMU-based OS */ | ||
372 | /* If none of the above last 4 are set, it's a custom TLB configuration. */ | ||
373 | #define XCHAL_ITLB_ARF_ENTRIES_LOG2 2 /* log2(autorefill way size) */ | ||
374 | #define XCHAL_DTLB_ARF_ENTRIES_LOG2 2 /* log2(autorefill way size) */ | ||
375 | |||
376 | #define XCHAL_MMU_ASID_BITS 8 /* number of bits in ASIDs */ | ||
377 | #define XCHAL_MMU_RINGS 4 /* number of rings (1..4) */ | ||
378 | #define XCHAL_MMU_RING_BITS 2 /* num of bits in RING field */ | ||
379 | |||
380 | #endif /* !XTENSA_HAL_NON_PRIVILEGED_ONLY */ | ||
381 | |||
382 | |||
383 | #endif /* _XTENSA_CORE_CONFIGURATION_H */ | ||
diff --git a/arch/xtensa/variants/test_mmuhifi_c3/include/variant/tie-asm.h b/arch/xtensa/variants/test_mmuhifi_c3/include/variant/tie-asm.h new file mode 100644 index 000000000000..6e9d69caf7e6 --- /dev/null +++ b/arch/xtensa/variants/test_mmuhifi_c3/include/variant/tie-asm.h | |||
@@ -0,0 +1,182 @@ | |||
1 | /* | ||
2 | * This header file contains assembly-language definitions (assembly | ||
3 | * macros, etc.) for this specific Xtensa processor's TIE extensions | ||
4 | * and options. It is customized to this Xtensa processor configuration. | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of version 2.1 of the GNU | ||
7 | * Lesser General Public License as published by the Free Software Foundation. | ||
8 | * | ||
9 | * Copyright (C) 1999-2009 Tensilica Inc. | ||
10 | */ | ||
11 | |||
12 | #ifndef _XTENSA_CORE_TIE_ASM_H | ||
13 | #define _XTENSA_CORE_TIE_ASM_H | ||
14 | |||
15 | /* Selection parameter values for save-area save/restore macros: */ | ||
16 | /* Option vs. TIE: */ | ||
17 | #define XTHAL_SAS_TIE 0x0001 /* custom extension or coprocessor */ | ||
18 | #define XTHAL_SAS_OPT 0x0002 /* optional (and not a coprocessor) */ | ||
19 | /* Whether used automatically by compiler: */ | ||
20 | #define XTHAL_SAS_NOCC 0x0004 /* not used by compiler w/o special opts/code */ | ||
21 | #define XTHAL_SAS_CC 0x0008 /* used by compiler without special opts/code */ | ||
22 | /* ABI handling across function calls: */ | ||
23 | #define XTHAL_SAS_CALR 0x0010 /* caller-saved */ | ||
24 | #define XTHAL_SAS_CALE 0x0020 /* callee-saved */ | ||
25 | #define XTHAL_SAS_GLOB 0x0040 /* global across function calls (in thread) */ | ||
26 | /* Misc */ | ||
27 | #define XTHAL_SAS_ALL 0xFFFF /* include all default NCP contents */ | ||
28 | |||
29 | |||
30 | |||
31 | /* Macro to save all non-coprocessor (extra) custom TIE and optional state | ||
32 | * (not including zero-overhead loop registers). | ||
33 | * Save area ptr (clobbered): ptr (8 byte aligned) | ||
34 | * Scratch regs (clobbered): at1..at4 (only first XCHAL_NCP_NUM_ATMPS needed) | ||
35 | */ | ||
36 | .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL | ||
37 | xchal_sa_start \continue, \ofs | ||
38 | .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select | ||
39 | xchal_sa_align \ptr, 0, 1024-4, 4, 4 | ||
40 | rsr \at1, BR // boolean option | ||
41 | s32i \at1, \ptr, .Lxchal_ofs_ + 0 | ||
42 | .set .Lxchal_ofs_, .Lxchal_ofs_ + 4 | ||
43 | .endif | ||
44 | .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select | ||
45 | xchal_sa_align \ptr, 0, 1024-4, 4, 4 | ||
46 | rsr \at1, SCOMPARE1 // conditional store option | ||
47 | s32i \at1, \ptr, .Lxchal_ofs_ + 0 | ||
48 | .set .Lxchal_ofs_, .Lxchal_ofs_ + 4 | ||
49 | .endif | ||
50 | .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~\select | ||
51 | xchal_sa_align \ptr, 0, 1024-4, 4, 4 | ||
52 | rur \at1, THREADPTR // threadptr option | ||
53 | s32i \at1, \ptr, .Lxchal_ofs_ + 0 | ||
54 | .set .Lxchal_ofs_, .Lxchal_ofs_ + 4 | ||
55 | .endif | ||
56 | .endm // xchal_ncp_store | ||
57 | |||
58 | /* Macro to save all non-coprocessor (extra) custom TIE and optional state | ||
59 | * (not including zero-overhead loop registers). | ||
60 | * Save area ptr (clobbered): ptr (8 byte aligned) | ||
61 | * Scratch regs (clobbered): at1..at4 (only first XCHAL_NCP_NUM_ATMPS needed) | ||
62 | */ | ||
63 | .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL | ||
64 | xchal_sa_start \continue, \ofs | ||
65 | .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select | ||
66 | xchal_sa_align \ptr, 0, 1024-4, 4, 4 | ||
67 | l32i \at1, \ptr, .Lxchal_ofs_ + 0 | ||
68 | wsr \at1, BR // boolean option | ||
69 | .set .Lxchal_ofs_, .Lxchal_ofs_ + 4 | ||
70 | .endif | ||
71 | .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select | ||
72 | xchal_sa_align \ptr, 0, 1024-4, 4, 4 | ||
73 | l32i \at1, \ptr, .Lxchal_ofs_ + 0 | ||
74 | wsr \at1, SCOMPARE1 // conditional store option | ||
75 | .set .Lxchal_ofs_, .Lxchal_ofs_ + 4 | ||
76 | .endif | ||
77 | .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~\select | ||
78 | xchal_sa_align \ptr, 0, 1024-4, 4, 4 | ||
79 | l32i \at1, \ptr, .Lxchal_ofs_ + 0 | ||
80 | wur \at1, THREADPTR // threadptr option | ||
81 | .set .Lxchal_ofs_, .Lxchal_ofs_ + 4 | ||
82 | .endif | ||
83 | .endm // xchal_ncp_load | ||
84 | |||
85 | |||
86 | |||
87 | #define XCHAL_NCP_NUM_ATMPS 1 | ||
88 | |||
89 | |||
90 | |||
91 | /* Macro to save the state of TIE coprocessor AudioEngineLX. | ||
92 | * Save area ptr (clobbered): ptr (8 byte aligned) | ||
93 | * Scratch regs (clobbered): at1..at4 (only first XCHAL_CP1_NUM_ATMPS needed) | ||
94 | */ | ||
95 | #define xchal_cp_AudioEngineLX_store xchal_cp1_store | ||
96 | /* #define xchal_cp_AudioEngineLX_store_a2 xchal_cp1_store a2 a3 a4 a5 a6 */ | ||
97 | .macro xchal_cp1_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL | ||
98 | xchal_sa_start \continue, \ofs | ||
99 | .ifeq (XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select | ||
100 | xchal_sa_align \ptr, 0, 0, 1, 8 | ||
101 | rur240 \at1 // AE_OVF_SAR | ||
102 | s32i \at1, \ptr, 0 | ||
103 | rur241 \at1 // AE_BITHEAD | ||
104 | s32i \at1, \ptr, 4 | ||
105 | rur242 \at1 // AE_TS_FTS_BU_BP | ||
106 | s32i \at1, \ptr, 8 | ||
107 | rur243 \at1 // AE_SD_NO | ||
108 | s32i \at1, \ptr, 12 | ||
109 | AE_SP24X2S.I aep0, \ptr, 16 | ||
110 | AE_SP24X2S.I aep1, \ptr, 24 | ||
111 | AE_SP24X2S.I aep2, \ptr, 32 | ||
112 | AE_SP24X2S.I aep3, \ptr, 40 | ||
113 | AE_SP24X2S.I aep4, \ptr, 48 | ||
114 | AE_SP24X2S.I aep5, \ptr, 56 | ||
115 | addi \ptr, \ptr, 64 | ||
116 | AE_SP24X2S.I aep6, \ptr, 0 | ||
117 | AE_SP24X2S.I aep7, \ptr, 8 | ||
118 | AE_SQ56S.I aeq0, \ptr, 16 | ||
119 | AE_SQ56S.I aeq1, \ptr, 24 | ||
120 | AE_SQ56S.I aeq2, \ptr, 32 | ||
121 | AE_SQ56S.I aeq3, \ptr, 40 | ||
122 | .set .Lxchal_pofs_, .Lxchal_pofs_ + 64 | ||
123 | .set .Lxchal_ofs_, .Lxchal_ofs_ + 112 | ||
124 | .endif | ||
125 | .endm // xchal_cp1_store | ||
126 | |||
127 | /* Macro to restore the state of TIE coprocessor AudioEngineLX. | ||
128 | * Save area ptr (clobbered): ptr (8 byte aligned) | ||
129 | * Scratch regs (clobbered): at1..at4 (only first XCHAL_CP1_NUM_ATMPS needed) | ||
130 | */ | ||
131 | #define xchal_cp_AudioEngineLX_load xchal_cp1_load | ||
132 | /* #define xchal_cp_AudioEngineLX_load_a2 xchal_cp1_load a2 a3 a4 a5 a6 */ | ||
133 | .macro xchal_cp1_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL | ||
134 | xchal_sa_start \continue, \ofs | ||
135 | .ifeq (XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select | ||
136 | xchal_sa_align \ptr, 0, 0, 1, 8 | ||
137 | l32i \at1, \ptr, 0 | ||
138 | wur240 \at1 // AE_OVF_SAR | ||
139 | l32i \at1, \ptr, 4 | ||
140 | wur241 \at1 // AE_BITHEAD | ||
141 | l32i \at1, \ptr, 8 | ||
142 | wur242 \at1 // AE_TS_FTS_BU_BP | ||
143 | l32i \at1, \ptr, 12 | ||
144 | wur243 \at1 // AE_SD_NO | ||
145 | addi \ptr, \ptr, 80 | ||
146 | AE_LQ56.I aeq0, \ptr, 0 | ||
147 | AE_LQ56.I aeq1, \ptr, 8 | ||
148 | AE_LQ56.I aeq2, \ptr, 16 | ||
149 | AE_LQ56.I aeq3, \ptr, 24 | ||
150 | AE_LP24X2.I aep0, \ptr, -64 | ||
151 | AE_LP24X2.I aep1, \ptr, -56 | ||
152 | AE_LP24X2.I aep2, \ptr, -48 | ||
153 | AE_LP24X2.I aep3, \ptr, -40 | ||
154 | AE_LP24X2.I aep4, \ptr, -32 | ||
155 | AE_LP24X2.I aep5, \ptr, -24 | ||
156 | AE_LP24X2.I aep6, \ptr, -16 | ||
157 | AE_LP24X2.I aep7, \ptr, -8 | ||
158 | .set .Lxchal_pofs_, .Lxchal_pofs_ + 80 | ||
159 | .set .Lxchal_ofs_, .Lxchal_ofs_ + 112 | ||
160 | .endif | ||
161 | .endm // xchal_cp1_load | ||
162 | |||
163 | #define XCHAL_CP1_NUM_ATMPS 1 | ||
164 | #define XCHAL_SA_NUM_ATMPS 1 | ||
165 | |||
166 | /* Empty macros for unconfigured coprocessors: */ | ||
167 | .macro xchal_cp0_store p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
168 | .macro xchal_cp0_load p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
169 | .macro xchal_cp2_store p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
170 | .macro xchal_cp2_load p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
171 | .macro xchal_cp3_store p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
172 | .macro xchal_cp3_load p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
173 | .macro xchal_cp4_store p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
174 | .macro xchal_cp4_load p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
175 | .macro xchal_cp5_store p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
176 | .macro xchal_cp5_load p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
177 | .macro xchal_cp6_store p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
178 | .macro xchal_cp6_load p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
179 | .macro xchal_cp7_store p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
180 | .macro xchal_cp7_load p a b c d continue=0 ofs=-1 select=-1 ; .endm | ||
181 | |||
182 | #endif /*_XTENSA_CORE_TIE_ASM_H*/ | ||
diff --git a/arch/xtensa/variants/test_mmuhifi_c3/include/variant/tie.h b/arch/xtensa/variants/test_mmuhifi_c3/include/variant/tie.h new file mode 100644 index 000000000000..fb1f5f004c92 --- /dev/null +++ b/arch/xtensa/variants/test_mmuhifi_c3/include/variant/tie.h | |||
@@ -0,0 +1,140 @@ | |||
1 | /* | ||
2 | * This header file describes this specific Xtensa processor's TIE extensions | ||
3 | * that extend basic Xtensa core functionality. It is customized to this | ||
4 | * Xtensa processor configuration. | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of version 2.1 of the GNU | ||
7 | * Lesser General Public License as published by the Free Software Foundation. | ||
8 | * | ||
9 | * Copyright (C) 1999-2009 Tensilica Inc. | ||
10 | */ | ||
11 | |||
12 | #ifndef _XTENSA_CORE_TIE_H | ||
13 | #define _XTENSA_CORE_TIE_H | ||
14 | |||
15 | #define XCHAL_CP_NUM 1 /* number of coprocessors */ | ||
16 | #define XCHAL_CP_MAX 2 /* max CP ID + 1 (0 if none) */ | ||
17 | #define XCHAL_CP_MASK 0x02 /* bitmask of all CPs by ID */ | ||
18 | #define XCHAL_CP_PORT_MASK 0x00 /* bitmask of only port CPs */ | ||
19 | |||
20 | /* Basic parameters of each coprocessor: */ | ||
21 | #define XCHAL_CP1_NAME "AudioEngineLX" | ||
22 | #define XCHAL_CP1_IDENT AudioEngineLX | ||
23 | #define XCHAL_CP1_SA_SIZE 112 /* size of state save area */ | ||
24 | #define XCHAL_CP1_SA_ALIGN 8 /* min alignment of save area */ | ||
25 | #define XCHAL_CP_ID_AUDIOENGINELX 1 /* coprocessor ID (0..7) */ | ||
26 | |||
27 | /* Filler info for unassigned coprocessors, to simplify arrays etc: */ | ||
28 | #define XCHAL_CP0_SA_SIZE 0 | ||
29 | #define XCHAL_CP0_SA_ALIGN 1 | ||
30 | #define XCHAL_CP2_SA_SIZE 0 | ||
31 | #define XCHAL_CP2_SA_ALIGN 1 | ||
32 | #define XCHAL_CP3_SA_SIZE 0 | ||
33 | #define XCHAL_CP3_SA_ALIGN 1 | ||
34 | #define XCHAL_CP4_SA_SIZE 0 | ||
35 | #define XCHAL_CP4_SA_ALIGN 1 | ||
36 | #define XCHAL_CP5_SA_SIZE 0 | ||
37 | #define XCHAL_CP5_SA_ALIGN 1 | ||
38 | #define XCHAL_CP6_SA_SIZE 0 | ||
39 | #define XCHAL_CP6_SA_ALIGN 1 | ||
40 | #define XCHAL_CP7_SA_SIZE 0 | ||
41 | #define XCHAL_CP7_SA_ALIGN 1 | ||
42 | |||
43 | /* Save area for non-coprocessor optional and custom (TIE) state: */ | ||
44 | #define XCHAL_NCP_SA_SIZE 12 | ||
45 | #define XCHAL_NCP_SA_ALIGN 4 | ||
46 | |||
47 | /* Total save area for optional and custom state (NCP + CPn): */ | ||
48 | #define XCHAL_TOTAL_SA_SIZE 128 /* with 16-byte align padding */ | ||
49 | #define XCHAL_TOTAL_SA_ALIGN 8 /* actual minimum alignment */ | ||
50 | |||
51 | /* | ||
52 | * Detailed contents of save areas. | ||
53 | * NOTE: caller must define the XCHAL_SA_REG macro (not defined here) | ||
54 | * before expanding the XCHAL_xxx_SA_LIST() macros. | ||
55 | * | ||
56 | * XCHAL_SA_REG(s,ccused,abikind,kind,opt,name,galign,align,asize, | ||
57 | * dbnum,base,regnum,bitsz,gapsz,reset,x...) | ||
58 | * | ||
59 | * s = passed from XCHAL_*_LIST(s), eg. to select how to expand | ||
60 | * ccused = set if used by compiler without special options or code | ||
61 | * abikind = 0 (caller-saved), 1 (callee-saved), or 2 (thread-global) | ||
62 | * kind = 0 (special reg), 1 (TIE user reg), or 2 (TIE regfile reg) | ||
63 | * opt = 0 (custom TIE extension or coprocessor), or 1 (optional reg) | ||
64 | * name = lowercase reg name (no quotes) | ||
65 | * galign = group byte alignment (power of 2) (galign >= align) | ||
66 | * align = register byte alignment (power of 2) | ||
67 | * asize = allocated size in bytes (asize*8 == bitsz + gapsz + padsz) | ||
68 | * (not including any pad bytes required to galign this or next reg) | ||
69 | * dbnum = unique target number f/debug (see <xtensa-libdb-macros.h>) | ||
70 | * base = reg shortname w/o index (or sr=special, ur=TIE user reg) | ||
71 | * regnum = reg index in regfile, or special/TIE-user reg number | ||
72 | * bitsz = number of significant bits (regfile width, or ur/sr mask bits) | ||
73 | * gapsz = intervening bits, if bitsz bits not stored contiguously | ||
74 | * (padsz = pad bits at end [TIE regfile] or at msbits [ur,sr] of asize) | ||
75 | * reset = register reset value (or 0 if undefined at reset) | ||
76 | * x = reserved for future use (0 until then) | ||
77 | * | ||
78 | * To filter out certain registers, e.g. to expand only the non-global | ||
79 | * registers used by the compiler, you can do something like this: | ||
80 | * | ||
81 | * #define XCHAL_SA_REG(s,ccused,p...) SELCC##ccused(p) | ||
82 | * #define SELCC0(p...) | ||
83 | * #define SELCC1(abikind,p...) SELAK##abikind(p) | ||
84 | * #define SELAK0(p...) REG(p) | ||
85 | * #define SELAK1(p...) REG(p) | ||
86 | * #define SELAK2(p...) | ||
87 | * #define REG(kind,tie,name,galn,aln,asz,csz,dbnum,base,rnum,bsz,rst,x...) \ | ||
88 | * ...what you want to expand... | ||
89 | */ | ||
90 | |||
91 | #define XCHAL_NCP_SA_NUM 3 | ||
92 | #define XCHAL_NCP_SA_LIST(s) \ | ||
93 | XCHAL_SA_REG(s,0,0,0,1, br, 4, 4, 4,0x0204, sr,4 , 16,0,0,0) \ | ||
94 | XCHAL_SA_REG(s,0,0,0,1, scompare1, 4, 4, 4,0x020C, sr,12 , 32,0,0,0) \ | ||
95 | XCHAL_SA_REG(s,1,2,1,1, threadptr, 4, 4, 4,0x03E7, ur,231, 32,0,0,0) | ||
96 | |||
97 | #define XCHAL_CP0_SA_NUM 0 | ||
98 | #define XCHAL_CP0_SA_LIST(s) /* empty */ | ||
99 | |||
100 | #define XCHAL_CP1_SA_NUM 16 | ||
101 | #define XCHAL_CP1_SA_LIST(s) \ | ||
102 | XCHAL_SA_REG(s,0,0,1,0, ae_ovf_sar, 8, 4, 4,0x03F0, ur,240, 7,0,0,0) \ | ||
103 | XCHAL_SA_REG(s,0,0,1,0, ae_bithead, 4, 4, 4,0x03F1, ur,241, 32,0,0,0) \ | ||
104 | XCHAL_SA_REG(s,0,0,1,0,ae_ts_fts_bu_bp, 4, 4, 4,0x03F2, ur,242, 16,0,0,0) \ | ||
105 | XCHAL_SA_REG(s,0,0,1,0, ae_sd_no, 4, 4, 4,0x03F3, ur,243, 28,0,0,0) \ | ||
106 | XCHAL_SA_REG(s,0,0,2,0, aep0, 8, 8, 8,0x0060, aep,0 , 48,0,0,0) \ | ||
107 | XCHAL_SA_REG(s,0,0,2,0, aep1, 8, 8, 8,0x0061, aep,1 , 48,0,0,0) \ | ||
108 | XCHAL_SA_REG(s,0,0,2,0, aep2, 8, 8, 8,0x0062, aep,2 , 48,0,0,0) \ | ||
109 | XCHAL_SA_REG(s,0,0,2,0, aep3, 8, 8, 8,0x0063, aep,3 , 48,0,0,0) \ | ||
110 | XCHAL_SA_REG(s,0,0,2,0, aep4, 8, 8, 8,0x0064, aep,4 , 48,0,0,0) \ | ||
111 | XCHAL_SA_REG(s,0,0,2,0, aep5, 8, 8, 8,0x0065, aep,5 , 48,0,0,0) \ | ||
112 | XCHAL_SA_REG(s,0,0,2,0, aep6, 8, 8, 8,0x0066, aep,6 , 48,0,0,0) \ | ||
113 | XCHAL_SA_REG(s,0,0,2,0, aep7, 8, 8, 8,0x0067, aep,7 , 48,0,0,0) \ | ||
114 | XCHAL_SA_REG(s,0,0,2,0, aeq0, 8, 8, 8,0x0068, aeq,0 , 56,0,0,0) \ | ||
115 | XCHAL_SA_REG(s,0,0,2,0, aeq1, 8, 8, 8,0x0069, aeq,1 , 56,0,0,0) \ | ||
116 | XCHAL_SA_REG(s,0,0,2,0, aeq2, 8, 8, 8,0x006A, aeq,2 , 56,0,0,0) \ | ||
117 | XCHAL_SA_REG(s,0,0,2,0, aeq3, 8, 8, 8,0x006B, aeq,3 , 56,0,0,0) | ||
118 | |||
119 | #define XCHAL_CP2_SA_NUM 0 | ||
120 | #define XCHAL_CP2_SA_LIST(s) /* empty */ | ||
121 | |||
122 | #define XCHAL_CP3_SA_NUM 0 | ||
123 | #define XCHAL_CP3_SA_LIST(s) /* empty */ | ||
124 | |||
125 | #define XCHAL_CP4_SA_NUM 0 | ||
126 | #define XCHAL_CP4_SA_LIST(s) /* empty */ | ||
127 | |||
128 | #define XCHAL_CP5_SA_NUM 0 | ||
129 | #define XCHAL_CP5_SA_LIST(s) /* empty */ | ||
130 | |||
131 | #define XCHAL_CP6_SA_NUM 0 | ||
132 | #define XCHAL_CP6_SA_LIST(s) /* empty */ | ||
133 | |||
134 | #define XCHAL_CP7_SA_NUM 0 | ||
135 | #define XCHAL_CP7_SA_LIST(s) /* empty */ | ||
136 | |||
137 | /* Byte length of instruction from its first nibble (op0 field), per FLIX. */ | ||
138 | #define XCHAL_OP0_FORMAT_LENGTHS 3,3,3,3,3,3,3,3,2,2,2,2,2,2,3,8 | ||
139 | |||
140 | #endif /*_XTENSA_CORE_TIE_H*/ | ||