1 #ifdef _XTENSA_HAVE_CONFIG_CORE_ISA_H
2 #include <xtensa/config/core-isa.h>
3 #else
4 
5 /*
6  * xtensa/config/core-isa.h -- HAL definitions that are dependent on Xtensa
7  *				processor CORE configuration
8  *
9  *  See <xtensa/config/core.h>, which includes this file, for more details.
10  */
11 
12 /* Xtensa processor core configuration information.
13 
14    Copyright (c) 1999-2010 Tensilica Inc.
15 
16    Permission is hereby granted, free of charge, to any person obtaining
17    a copy of this software and associated documentation files (the
18    "Software"), to deal in the Software without restriction, including
19    without limitation the rights to use, copy, modify, merge, publish,
20    distribute, sublicense, and/or sell copies of the Software, and to
21    permit persons to whom the Software is furnished to do so, subject to
22    the following conditions:
23 
24    The above copyright notice and this permission notice shall be included
25    in all copies or substantial portions of the Software.
26 
27    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
30    IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
31    CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
32    TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
33    SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
34 
35 #ifndef _XTENSA_CORE_CONFIGURATION_H
36 #define _XTENSA_CORE_CONFIGURATION_H
37 
38 
39 /****************************************************************************
40 	    Parameters Useful for Any Code, USER or PRIVILEGED
41  ****************************************************************************/
42 
43 /*
44  *  Note:  Macros of the form XCHAL_HAVE_*** have a value of 1 if the option is
45  *  configured, and a value of 0 otherwise.  These macros are always defined.
46  */
47 
48 
49 /*----------------------------------------------------------------------
50 				ISA
51   ----------------------------------------------------------------------*/
52 
53 #define XCHAL_HAVE_BE			0	/* big-endian byte ordering */
54 #define XCHAL_HAVE_WINDOWED		0	/* windowed registers option */
55 #define XCHAL_NUM_AREGS			16	/* num of physical addr regs */
56 #define XCHAL_NUM_AREGS_LOG2		4	/* log2(XCHAL_NUM_AREGS) */
57 #define XCHAL_MAX_INSTRUCTION_SIZE	3	/* max instr bytes (3..8) */
58 #define XCHAL_HAVE_DEBUG		1	/* debug option */
59 #define XCHAL_HAVE_DENSITY		1	/* 16-bit instructions */
60 #define XCHAL_HAVE_LOOPS		0	/* zero-overhead loops */
61 #define XCHAL_HAVE_NSA			1	/* NSA/NSAU instructions */
62 #define XCHAL_HAVE_MINMAX		0	/* MIN/MAX instructions */
63 #define XCHAL_HAVE_SEXT			0	/* SEXT instruction */
64 #define XCHAL_HAVE_CLAMPS		0	/* CLAMPS instruction */
65 #define XCHAL_HAVE_MUL16		1	/* MUL16S/MUL16U instructions */
66 #define XCHAL_HAVE_MUL32		1	/* MULL instruction */
67 #define XCHAL_HAVE_MUL32_HIGH		0	/* MULUH/MULSH instructions */
68 #define XCHAL_HAVE_DIV32		0	/* QUOS/QUOU/REMS/REMU instructions */
69 #define XCHAL_HAVE_L32R			1	/* L32R instruction */
70 #define XCHAL_HAVE_ABSOLUTE_LITERALS	1	/* non-PC-rel (extended) L32R */
71 #define XCHAL_HAVE_CONST16		0	/* CONST16 instruction */
72 #define XCHAL_HAVE_ADDX			1	/* ADDX#/SUBX# instructions */
73 #define XCHAL_HAVE_WIDE_BRANCHES	0	/* B*.W18 or B*.W15 instr's */
74 #define XCHAL_HAVE_PREDICTED_BRANCHES	0	/* B[EQ/EQZ/NE/NEZ]T instr's */
75 #define XCHAL_HAVE_CALL4AND12		0	/* (obsolete option) */
76 #define XCHAL_HAVE_ABS			1	/* ABS instruction */
77 /*#define XCHAL_HAVE_POPC		0*/	/* POPC instruction */
78 /*#define XCHAL_HAVE_CRC		0*/	/* CRC instruction */
79 #define XCHAL_HAVE_RELEASE_SYNC		0	/* L32AI/S32RI instructions */
80 #define XCHAL_HAVE_S32C1I		0	/* S32C1I instruction */
81 #define XCHAL_HAVE_SPECULATION		0	/* speculation */
82 #define XCHAL_HAVE_FULL_RESET		1	/* all regs/state reset */
83 #define XCHAL_NUM_CONTEXTS		1	/* */
84 #define XCHAL_NUM_MISC_REGS		0	/* num of scratch regs (0..4) */
85 #define XCHAL_HAVE_TAP_MASTER		0	/* JTAG TAP control instr's */
86 #define XCHAL_HAVE_PRID			1	/* processor ID register */
87 #define XCHAL_HAVE_EXTERN_REGS		1	/* WER/RER instructions */
88 #define XCHAL_HAVE_MP_INTERRUPTS	0	/* interrupt distributor port */
89 #define XCHAL_HAVE_MP_RUNSTALL		0	/* core RunStall control port */
90 #define XCHAL_HAVE_THREADPTR		0	/* THREADPTR register */
91 #define XCHAL_HAVE_BOOLEANS		0	/* boolean registers */
92 #define XCHAL_HAVE_CP			0	/* CPENABLE reg (coprocessor) */
93 #define XCHAL_CP_MAXCFG			0	/* max allowed cp id plus one */
94 #define XCHAL_HAVE_MAC16		0	/* MAC16 package */
95 #define XCHAL_HAVE_VECTORFPU2005	0	/* vector floating-point pkg */
96 #define XCHAL_HAVE_FP			0	/* floating point pkg */
97 #define XCHAL_HAVE_DFP			0	/* double precision FP pkg */
98 #define XCHAL_HAVE_DFP_accel		0	/* double precision FP acceleration pkg */
99 #define XCHAL_HAVE_VECTRA1		0	/* Vectra I  pkg */
100 #define XCHAL_HAVE_VECTRALX		0	/* Vectra LX pkg */
101 #define XCHAL_HAVE_HIFIPRO		0	/* HiFiPro Audio Engine pkg */
102 #define XCHAL_HAVE_HIFI2		0	/* HiFi2 Audio Engine pkg */
103 #define XCHAL_HAVE_CONNXD2		0	/* ConnX D2 pkg */
104 
105 
106 /*----------------------------------------------------------------------
107 				MISC
108   ----------------------------------------------------------------------*/
109 
110 #define XCHAL_NUM_WRITEBUFFER_ENTRIES	1	/* size of write buffer */
111 #define XCHAL_INST_FETCH_WIDTH		4	/* instr-fetch width in bytes */
112 #define XCHAL_DATA_WIDTH		4	/* data width in bytes */
113 /*  In T1050, applies to selected core load and store instructions (see ISA): */
114 #define XCHAL_UNALIGNED_LOAD_EXCEPTION	1	/* unaligned loads cause exc. */
115 #define XCHAL_UNALIGNED_STORE_EXCEPTION	1	/* unaligned stores cause exc.*/
116 #define XCHAL_UNALIGNED_LOAD_HW		0	/* unaligned loads work in hw */
117 #define XCHAL_UNALIGNED_STORE_HW	0	/* unaligned stores work in hw*/
118 
119 #define XCHAL_SW_VERSION		800001	/* sw version of this header */
120 
121 #define XCHAL_CORE_ID			"lx106"	/* alphanum core name
122 						   (CoreID) set in the Xtensa
123 						   Processor Generator */
124 
125 #define XCHAL_BUILD_UNIQUE_ID		0x0002B6F6	/* 22-bit sw build ID */
126 
127 /*
128  *  These definitions describe the hardware targeted by this software.
129  */
130 #define XCHAL_HW_CONFIGID0		0xC28CDAFA	/* ConfigID hi 32 bits*/
131 #define XCHAL_HW_CONFIGID1		0x1082B6F6	/* ConfigID lo 32 bits*/
132 #define XCHAL_HW_VERSION_NAME		"LX3.0.1"	/* full version name */
133 #define XCHAL_HW_VERSION_MAJOR		2300	/* major ver# of targeted hw */
134 #define XCHAL_HW_VERSION_MINOR		1	/* minor ver# of targeted hw */
135 #define XCHAL_HW_VERSION		230001	/* major*100+minor */
136 #define XCHAL_HW_REL_LX3		1
137 #define XCHAL_HW_REL_LX3_0		1
138 #define XCHAL_HW_REL_LX3_0_1		1
139 #define XCHAL_HW_CONFIGID_RELIABLE	1
140 /*  If software targets a *range* of hardware versions, these are the bounds: */
141 #define XCHAL_HW_MIN_VERSION_MAJOR	2300	/* major v of earliest tgt hw */
142 #define XCHAL_HW_MIN_VERSION_MINOR	1	/* minor v of earliest tgt hw */
143 #define XCHAL_HW_MIN_VERSION		230001	/* earliest targeted hw */
144 #define XCHAL_HW_MAX_VERSION_MAJOR	2300	/* major v of latest tgt hw */
145 #define XCHAL_HW_MAX_VERSION_MINOR	1	/* minor v of latest tgt hw */
146 #define XCHAL_HW_MAX_VERSION		230001	/* latest targeted hw */
147 
148 
149 /*----------------------------------------------------------------------
150 				CACHE
151   ----------------------------------------------------------------------*/
152 
153 #define XCHAL_ICACHE_LINESIZE		4	/* I-cache line size in bytes */
154 #define XCHAL_DCACHE_LINESIZE		4	/* D-cache line size in bytes */
155 #define XCHAL_ICACHE_LINEWIDTH		2	/* log2(I line size in bytes) */
156 #define XCHAL_DCACHE_LINEWIDTH		2	/* log2(D line size in bytes) */
157 
158 #define XCHAL_ICACHE_SIZE		0	/* I-cache size in bytes or 0 */
159 #define XCHAL_DCACHE_SIZE		0	/* D-cache size in bytes or 0 */
160 
161 #define XCHAL_DCACHE_IS_WRITEBACK	0	/* writeback feature */
162 #define XCHAL_DCACHE_IS_COHERENT	0	/* MP coherence feature */
163 
164 #define XCHAL_HAVE_PREFETCH		0	/* PREFCTL register */
165 
166 
167 
168 
169 /****************************************************************************
170     Parameters Useful for PRIVILEGED (Supervisory or Non-Virtualized) Code
171  ****************************************************************************/
172 
173 
174 #ifndef XTENSA_HAL_NON_PRIVILEGED_ONLY
175 
176 /*----------------------------------------------------------------------
177 				CACHE
178   ----------------------------------------------------------------------*/
179 
180 #define XCHAL_HAVE_PIF			1	/* any outbound PIF present */
181 
182 /*  If present, cache size in bytes == (ways * 2^(linewidth + setwidth)).  */
183 
184 /*  Number of cache sets in log2(lines per way):  */
185 #define XCHAL_ICACHE_SETWIDTH		0
186 #define XCHAL_DCACHE_SETWIDTH		0
187 
188 /*  Cache set associativity (number of ways):  */
189 #define XCHAL_ICACHE_WAYS		1
190 #define XCHAL_DCACHE_WAYS		1
191 
192 /*  Cache features:  */
193 #define XCHAL_ICACHE_LINE_LOCKABLE	0
194 #define XCHAL_DCACHE_LINE_LOCKABLE	0
195 #define XCHAL_ICACHE_ECC_PARITY		0
196 #define XCHAL_DCACHE_ECC_PARITY		0
197 
198 /*  Cache access size in bytes (affects operation of SICW instruction):  */
199 #define XCHAL_ICACHE_ACCESS_SIZE	1
200 #define XCHAL_DCACHE_ACCESS_SIZE	1
201 
202 /*  Number of encoded cache attr bits (see <xtensa/hal.h> for decoded bits):  */
203 #define XCHAL_CA_BITS			4
204 
205 
206 /*----------------------------------------------------------------------
207 			INTERNAL I/D RAM/ROMs and XLMI
208   ----------------------------------------------------------------------*/
209 
210 #define XCHAL_NUM_INSTROM		1	/* number of core instr. ROMs */
211 #define XCHAL_NUM_INSTRAM		2	/* number of core instr. RAMs */
212 #define XCHAL_NUM_DATAROM		1	/* number of core data ROMs */
213 #define XCHAL_NUM_DATARAM		2	/* number of core data RAMs */
214 #define XCHAL_NUM_URAM			0	/* number of core unified RAMs*/
215 #define XCHAL_NUM_XLMI			1	/* number of core XLMI ports */
216 
217 /*  Instruction ROM 0:  */
218 #define XCHAL_INSTROM0_VADDR		0x40200000
219 #define XCHAL_INSTROM0_PADDR		0x40200000
220 #define XCHAL_INSTROM0_SIZE		1048576
221 #define XCHAL_INSTROM0_ECC_PARITY	0
222 
223 /*  Instruction RAM 0:  */
224 #define XCHAL_INSTRAM0_VADDR		0x40000000
225 #define XCHAL_INSTRAM0_PADDR		0x40000000
226 #define XCHAL_INSTRAM0_SIZE		1048576
227 #define XCHAL_INSTRAM0_ECC_PARITY	0
228 
229 /*  Instruction RAM 1:  */
230 #define XCHAL_INSTRAM1_VADDR		0x40100000
231 #define XCHAL_INSTRAM1_PADDR		0x40100000
232 #define XCHAL_INSTRAM1_SIZE		1048576
233 #define XCHAL_INSTRAM1_ECC_PARITY	0
234 
235 /*  Data ROM 0:  */
236 #define XCHAL_DATAROM0_VADDR		0x3FF40000
237 #define XCHAL_DATAROM0_PADDR		0x3FF40000
238 #define XCHAL_DATAROM0_SIZE		262144
239 #define XCHAL_DATAROM0_ECC_PARITY	0
240 
241 /*  Data RAM 0:  */
242 #define XCHAL_DATARAM0_VADDR		0x3FFC0000
243 #define XCHAL_DATARAM0_PADDR		0x3FFC0000
244 #define XCHAL_DATARAM0_SIZE		262144
245 #define XCHAL_DATARAM0_ECC_PARITY	0
246 
247 /*  Data RAM 1:  */
248 #define XCHAL_DATARAM1_VADDR		0x3FF80000
249 #define XCHAL_DATARAM1_PADDR		0x3FF80000
250 #define XCHAL_DATARAM1_SIZE		262144
251 #define XCHAL_DATARAM1_ECC_PARITY	0
252 
253 /*  XLMI Port 0:  */
254 #define XCHAL_XLMI0_VADDR		0x3FF00000
255 #define XCHAL_XLMI0_PADDR		0x3FF00000
256 #define XCHAL_XLMI0_SIZE		262144
257 #define XCHAL_XLMI0_ECC_PARITY	0
258 
259 
260 /*----------------------------------------------------------------------
261 			INTERRUPTS and TIMERS
262   ----------------------------------------------------------------------*/
263 
264 #define XCHAL_HAVE_INTERRUPTS		1	/* interrupt option */
265 #define XCHAL_HAVE_HIGHPRI_INTERRUPTS	1	/* med/high-pri. interrupts */
266 #define XCHAL_HAVE_NMI			1	/* non-maskable interrupt */
267 #define XCHAL_HAVE_CCOUNT		1	/* CCOUNT reg. (timer option) */
268 #define XCHAL_NUM_TIMERS		1	/* number of CCOMPAREn regs */
269 #define XCHAL_NUM_INTERRUPTS		15	/* number of interrupts */
270 #define XCHAL_NUM_INTERRUPTS_LOG2	4	/* ceil(log2(NUM_INTERRUPTS)) */
271 #define XCHAL_NUM_EXTINTERRUPTS		13	/* num of external interrupts */
272 #define XCHAL_NUM_INTLEVELS		2	/* number of interrupt levels
273 						   (not including level zero) */
274 #define XCHAL_EXCM_LEVEL		1	/* level masked by PS.EXCM */
275 	/* (always 1 in XEA1; levels 2 .. EXCM_LEVEL are "medium priority") */
276 
277 /*  Masks of interrupts at each interrupt level:  */
278 #define XCHAL_INTLEVEL1_MASK		0x00003FFF
279 #define XCHAL_INTLEVEL2_MASK		0x00000000
280 #define XCHAL_INTLEVEL3_MASK		0x00004000
281 #define XCHAL_INTLEVEL4_MASK		0x00000000
282 #define XCHAL_INTLEVEL5_MASK		0x00000000
283 #define XCHAL_INTLEVEL6_MASK		0x00000000
284 #define XCHAL_INTLEVEL7_MASK		0x00000000
285 
286 /*  Masks of interrupts at each range 1..n of interrupt levels:  */
287 #define XCHAL_INTLEVEL1_ANDBELOW_MASK	0x00003FFF
288 #define XCHAL_INTLEVEL2_ANDBELOW_MASK	0x00003FFF
289 #define XCHAL_INTLEVEL3_ANDBELOW_MASK	0x00007FFF
290 #define XCHAL_INTLEVEL4_ANDBELOW_MASK	0x00007FFF
291 #define XCHAL_INTLEVEL5_ANDBELOW_MASK	0x00007FFF
292 #define XCHAL_INTLEVEL6_ANDBELOW_MASK	0x00007FFF
293 #define XCHAL_INTLEVEL7_ANDBELOW_MASK	0x00007FFF
294 
295 /*  Level of each interrupt:  */
296 #define XCHAL_INT0_LEVEL		1
297 #define XCHAL_INT1_LEVEL		1
298 #define XCHAL_INT2_LEVEL		1
299 #define XCHAL_INT3_LEVEL		1
300 #define XCHAL_INT4_LEVEL		1
301 #define XCHAL_INT5_LEVEL		1
302 #define XCHAL_INT6_LEVEL		1
303 #define XCHAL_INT7_LEVEL		1
304 #define XCHAL_INT8_LEVEL		1
305 #define XCHAL_INT9_LEVEL		1
306 #define XCHAL_INT10_LEVEL		1
307 #define XCHAL_INT11_LEVEL		1
308 #define XCHAL_INT12_LEVEL		1
309 #define XCHAL_INT13_LEVEL		1
310 #define XCHAL_INT14_LEVEL		3
311 #define XCHAL_DEBUGLEVEL		2	/* debug interrupt level */
312 #define XCHAL_HAVE_DEBUG_EXTERN_INT	1	/* OCD external db interrupt */
313 #define XCHAL_NMILEVEL			3	/* NMI "level" (for use with
314 						   EXCSAVE/EPS/EPC_n, RFI n) */
315 
316 /*  Type of each interrupt:  */
317 #define XCHAL_INT0_TYPE 	XTHAL_INTTYPE_EXTERN_LEVEL
318 #define XCHAL_INT1_TYPE 	XTHAL_INTTYPE_EXTERN_LEVEL
319 #define XCHAL_INT2_TYPE 	XTHAL_INTTYPE_EXTERN_LEVEL
320 #define XCHAL_INT3_TYPE 	XTHAL_INTTYPE_EXTERN_LEVEL
321 #define XCHAL_INT4_TYPE 	XTHAL_INTTYPE_EXTERN_LEVEL
322 #define XCHAL_INT5_TYPE 	XTHAL_INTTYPE_EXTERN_LEVEL
323 #define XCHAL_INT6_TYPE 	XTHAL_INTTYPE_TIMER
324 #define XCHAL_INT7_TYPE 	XTHAL_INTTYPE_SOFTWARE
325 #define XCHAL_INT8_TYPE 	XTHAL_INTTYPE_EXTERN_EDGE
326 #define XCHAL_INT9_TYPE 	XTHAL_INTTYPE_EXTERN_EDGE
327 #define XCHAL_INT10_TYPE 	XTHAL_INTTYPE_EXTERN_EDGE
328 #define XCHAL_INT11_TYPE 	XTHAL_INTTYPE_EXTERN_EDGE
329 #define XCHAL_INT12_TYPE 	XTHAL_INTTYPE_EXTERN_EDGE
330 #define XCHAL_INT13_TYPE 	XTHAL_INTTYPE_EXTERN_EDGE
331 #define XCHAL_INT14_TYPE 	XTHAL_INTTYPE_NMI
332 
333 /*  Masks of interrupts for each type of interrupt:  */
334 #define XCHAL_INTTYPE_MASK_UNCONFIGURED	0xFFFF8000
335 #define XCHAL_INTTYPE_MASK_SOFTWARE	0x00000080
336 #define XCHAL_INTTYPE_MASK_EXTERN_EDGE	0x00003F00
337 #define XCHAL_INTTYPE_MASK_EXTERN_LEVEL	0x0000003F
338 #define XCHAL_INTTYPE_MASK_TIMER	0x00000040
339 #define XCHAL_INTTYPE_MASK_NMI		0x00004000
340 #define XCHAL_INTTYPE_MASK_WRITE_ERROR	0x00000000
341 
342 /*  Interrupt numbers assigned to specific interrupt sources:  */
343 #define XCHAL_TIMER0_INTERRUPT		6	/* CCOMPARE0 */
344 #define XCHAL_TIMER1_INTERRUPT		XTHAL_TIMER_UNCONFIGURED
345 #define XCHAL_TIMER2_INTERRUPT		XTHAL_TIMER_UNCONFIGURED
346 #define XCHAL_TIMER3_INTERRUPT		XTHAL_TIMER_UNCONFIGURED
347 #define XCHAL_NMI_INTERRUPT		14	/* non-maskable interrupt */
348 
349 /*  Interrupt numbers for levels at which only one interrupt is configured:  */
350 #define XCHAL_INTLEVEL3_NUM		14
351 /*  (There are many interrupts each at level(s) 1.)  */
352 
353 
354 /*
355  *  External interrupt vectors/levels.
356  *  These macros describe how Xtensa processor interrupt numbers
357  *  (as numbered internally, eg. in INTERRUPT and INTENABLE registers)
358  *  map to external BInterrupt<n> pins, for those interrupts
359  *  configured as external (level-triggered, edge-triggered, or NMI).
360  *  See the Xtensa processor databook for more details.
361  */
362 
363 /*  Core interrupt numbers mapped to each EXTERNAL interrupt number:  */
364 #define XCHAL_EXTINT0_NUM		0	/* (intlevel 1) */
365 #define XCHAL_EXTINT1_NUM		1	/* (intlevel 1) */
366 #define XCHAL_EXTINT2_NUM		2	/* (intlevel 1) */
367 #define XCHAL_EXTINT3_NUM		3	/* (intlevel 1) */
368 #define XCHAL_EXTINT4_NUM		4	/* (intlevel 1) */
369 #define XCHAL_EXTINT5_NUM		5	/* (intlevel 1) */
370 #define XCHAL_EXTINT6_NUM		8	/* (intlevel 1) */
371 #define XCHAL_EXTINT7_NUM		9	/* (intlevel 1) */
372 #define XCHAL_EXTINT8_NUM		10	/* (intlevel 1) */
373 #define XCHAL_EXTINT9_NUM		11	/* (intlevel 1) */
374 #define XCHAL_EXTINT10_NUM		12	/* (intlevel 1) */
375 #define XCHAL_EXTINT11_NUM		13	/* (intlevel 1) */
376 #define XCHAL_EXTINT12_NUM		14	/* (intlevel 3) */
377 
378 
379 /*----------------------------------------------------------------------
380 			EXCEPTIONS and VECTORS
381   ----------------------------------------------------------------------*/
382 
383 #define XCHAL_XEA_VERSION		2	/* Xtensa Exception Architecture
384 						   number: 1 == XEA1 (old)
385 							   2 == XEA2 (new)
386 							   0 == XEAX (extern) */
387 #define XCHAL_HAVE_XEA1			0	/* Exception Architecture 1 */
388 #define XCHAL_HAVE_XEA2			1	/* Exception Architecture 2 */
389 #define XCHAL_HAVE_XEAX			0	/* External Exception Arch. */
390 #define XCHAL_HAVE_EXCEPTIONS		1	/* exception option */
391 #define XCHAL_HAVE_MEM_ECC_PARITY	0	/* local memory ECC/parity */
392 #define XCHAL_HAVE_VECTOR_SELECT	1	/* relocatable vectors */
393 #define XCHAL_HAVE_VECBASE		1	/* relocatable vectors */
394 #define XCHAL_VECBASE_RESET_VADDR	0x40000000  /* VECBASE reset value */
395 #define XCHAL_VECBASE_RESET_PADDR	0x40000000
396 #define XCHAL_RESET_VECBASE_OVERLAP	0
397 
398 #define XCHAL_RESET_VECTOR0_VADDR	0x50000000
399 #define XCHAL_RESET_VECTOR0_PADDR	0x50000000
400 #define XCHAL_RESET_VECTOR1_VADDR	0x40000080
401 #define XCHAL_RESET_VECTOR1_PADDR	0x40000080
402 #define XCHAL_RESET_VECTOR_VADDR	0x50000000
403 #define XCHAL_RESET_VECTOR_PADDR	0x50000000
404 #define XCHAL_USER_VECOFS		0x00000050
405 #define XCHAL_USER_VECTOR_VADDR		0x40000050
406 #define XCHAL_USER_VECTOR_PADDR		0x40000050
407 #define XCHAL_KERNEL_VECOFS		0x00000030
408 #define XCHAL_KERNEL_VECTOR_VADDR	0x40000030
409 #define XCHAL_KERNEL_VECTOR_PADDR	0x40000030
410 #define XCHAL_DOUBLEEXC_VECOFS		0x00000070
411 #define XCHAL_DOUBLEEXC_VECTOR_VADDR	0x40000070
412 #define XCHAL_DOUBLEEXC_VECTOR_PADDR	0x40000070
413 #define XCHAL_INTLEVEL2_VECOFS		0x00000010
414 #define XCHAL_INTLEVEL2_VECTOR_VADDR	0x40000010
415 #define XCHAL_INTLEVEL2_VECTOR_PADDR	0x40000010
416 #define XCHAL_DEBUG_VECOFS		XCHAL_INTLEVEL2_VECOFS
417 #define XCHAL_DEBUG_VECTOR_VADDR	XCHAL_INTLEVEL2_VECTOR_VADDR
418 #define XCHAL_DEBUG_VECTOR_PADDR	XCHAL_INTLEVEL2_VECTOR_PADDR
419 #define XCHAL_NMI_VECOFS		0x00000020
420 #define XCHAL_NMI_VECTOR_VADDR		0x40000020
421 #define XCHAL_NMI_VECTOR_PADDR		0x40000020
422 #define XCHAL_INTLEVEL3_VECOFS		XCHAL_NMI_VECOFS
423 #define XCHAL_INTLEVEL3_VECTOR_VADDR	XCHAL_NMI_VECTOR_VADDR
424 #define XCHAL_INTLEVEL3_VECTOR_PADDR	XCHAL_NMI_VECTOR_PADDR
425 
426 
427 /*----------------------------------------------------------------------
428 				DEBUG
429   ----------------------------------------------------------------------*/
430 
431 #define XCHAL_HAVE_OCD			1	/* OnChipDebug option */
432 #define XCHAL_NUM_IBREAK		1	/* number of IBREAKn regs */
433 #define XCHAL_NUM_DBREAK		1	/* number of DBREAKn regs */
434 #define XCHAL_HAVE_OCD_DIR_ARRAY	0	/* faster OCD option */
435 
436 
437 /*----------------------------------------------------------------------
438 				MMU
439   ----------------------------------------------------------------------*/
440 
441 /*  See core-matmap.h header file for more details.  */
442 
443 #define XCHAL_HAVE_TLBS			1	/* inverse of HAVE_CACHEATTR */
444 #define XCHAL_HAVE_SPANNING_WAY		1	/* one way maps I+D 4GB vaddr */
445 #define XCHAL_SPANNING_WAY		0	/* TLB spanning way number */
446 #define XCHAL_HAVE_IDENTITY_MAP		1	/* vaddr == paddr always */
447 #define XCHAL_HAVE_CACHEATTR		0	/* CACHEATTR register present */
448 #define XCHAL_HAVE_MIMIC_CACHEATTR	1	/* region protection */
449 #define XCHAL_HAVE_XLT_CACHEATTR	0	/* region prot. w/translation */
450 #define XCHAL_HAVE_PTP_MMU		0	/* full MMU (with page table
451 						   [autorefill] and protection)
452 						   usable for an MMU-based OS */
453 /*  If none of the above last 4 are set, it's a custom TLB configuration.  */
454 
455 #define XCHAL_MMU_ASID_BITS		0	/* number of bits in ASIDs */
456 #define XCHAL_MMU_RINGS			1	/* number of rings (1..4) */
457 #define XCHAL_MMU_RING_BITS		0	/* num of bits in RING field */
458 
459 #endif /* !XTENSA_HAL_NON_PRIVILEGED_ONLY */
460 
461 
462 #endif /* _XTENSA_CORE_CONFIGURATION_H */
463 
464 #endif
465