blob: 6651bb437db231b8df5bb2c77b88c444e60a2daf [file] [log] [blame]
Michal Simekc4df4bc2009-03-27 14:25:13 +01001/*
2 * Exception handling for Microblaze
3 *
4 * Rewriten interrupt handling
5 *
6 * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
7 * Copyright (C) 2008-2009 PetaLogix
8 *
9 * uClinux customisation (C) 2005 John Williams
10 *
11 * MMU code derived from arch/ppc/kernel/head_4xx.S:
12 * Copyright (C) 1995-1996 Gary Thomas <gdt@linuxppc.org>
13 * Initial PowerPC version.
14 * Copyright (C) 1996 Cort Dougan <cort@cs.nmt.edu>
15 * Rewritten for PReP
16 * Copyright (C) 1996 Paul Mackerras <paulus@cs.anu.edu.au>
17 * Low-level exception handers, MMU support, and rewrite.
18 * Copyright (C) 1997 Dan Malek <dmalek@jlc.net>
19 * PowerPC 8xx modifications.
20 * Copyright (C) 1998-1999 TiVo, Inc.
21 * PowerPC 403GCX modifications.
22 * Copyright (C) 1999 Grant Erickson <grant@lcse.umn.edu>
23 * PowerPC 403GCX/405GP modifications.
24 * Copyright 2000 MontaVista Software Inc.
25 * PPC405 modifications
26 * PowerPC 403GCX/405GP modifications.
27 * Author: MontaVista Software, Inc.
28 * frank_rowand@mvista.com or source@mvista.com
29 * debbie_chu@mvista.com
30 *
31 * Original code
32 * Copyright (C) 2004 Xilinx, Inc.
33 *
34 * This program is free software; you can redistribute it and/or modify it
35 * under the terms of the GNU General Public License version 2 as published
36 * by the Free Software Foundation.
37 */
38
39/*
40 * Here are the handlers which don't require enabling translation
41 * and calling other kernel code thus we can keep their design very simple
42 * and do all processing in real mode. All what they need is a valid current
43 * (that is an issue for the CONFIG_REGISTER_TASK_PTR case)
44 * This handlers use r3,r4,r5,r6 and optionally r[current] to work therefore
45 * these registers are saved/restored
46 * The handlers which require translation are in entry.S --KAA
47 *
48 * Microblaze HW Exception Handler
49 * - Non self-modifying exception handler for the following exception conditions
50 * - Unalignment
51 * - Instruction bus error
52 * - Data bus error
53 * - Illegal instruction opcode
54 * - Divide-by-zero
55 *
Michal Simek7db29dd2009-05-26 16:30:22 +020056 * - Privileged instruction exception (MMU)
57 * - Data storage exception (MMU)
58 * - Instruction storage exception (MMU)
59 * - Data TLB miss exception (MMU)
60 * - Instruction TLB miss exception (MMU)
61 *
Michal Simekc4df4bc2009-03-27 14:25:13 +010062 * Note we disable interrupts during exception handling, otherwise we will
63 * possibly get multiple re-entrancy if interrupt handles themselves cause
64 * exceptions. JW
65 */
66
67#include <asm/exceptions.h>
68#include <asm/unistd.h>
69#include <asm/page.h>
70
71#include <asm/entry.h>
72#include <asm/current.h>
73#include <linux/linkage.h>
74
75#include <asm/mmu.h>
76#include <asm/pgtable.h>
Michal Simek3863dbc2009-07-21 12:48:01 +020077#include <asm/signal.h>
Michal Simekc4df4bc2009-03-27 14:25:13 +010078#include <asm/asm-offsets.h>
79
80/* Helpful Macros */
Michal Simek7db29dd2009-05-26 16:30:22 +020081#ifndef CONFIG_MMU
Michal Simekc4df4bc2009-03-27 14:25:13 +010082#define EX_HANDLER_STACK_SIZ (4*19)
Michal Simek7db29dd2009-05-26 16:30:22 +020083#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +010084#define NUM_TO_REG(num) r ## num
85
Michal Simek7db29dd2009-05-26 16:30:22 +020086#ifdef CONFIG_MMU
Michal Simek7db29dd2009-05-26 16:30:22 +020087 #define RESTORE_STATE \
Michal Simekac854ff2009-09-17 17:37:33 +020088 lwi r5, r1, 0; \
89 mts rmsr, r5; \
90 nop; \
Michal Simek7db29dd2009-05-26 16:30:22 +020091 lwi r3, r1, PT_R3; \
92 lwi r4, r1, PT_R4; \
93 lwi r5, r1, PT_R5; \
94 lwi r6, r1, PT_R6; \
95 lwi r11, r1, PT_R11; \
96 lwi r31, r1, PT_R31; \
97 lwi r1, r0, TOPHYS(r0_ram + 0);
98#endif /* CONFIG_MMU */
99
Michal Simekc4df4bc2009-03-27 14:25:13 +0100100#define LWREG_NOP \
101 bri ex_handler_unhandled; \
102 nop;
103
104#define SWREG_NOP \
105 bri ex_handler_unhandled; \
106 nop;
107
108/* FIXME this is weird - for noMMU kernel is not possible to use brid
109 * instruction which can shorten executed time
110 */
111
112/* r3 is the source */
113#define R3_TO_LWREG_V(regnum) \
114 swi r3, r1, 4 * regnum; \
115 bri ex_handler_done;
116
117/* r3 is the source */
118#define R3_TO_LWREG(regnum) \
119 or NUM_TO_REG (regnum), r0, r3; \
120 bri ex_handler_done;
121
122/* r3 is the target */
123#define SWREG_TO_R3_V(regnum) \
124 lwi r3, r1, 4 * regnum; \
125 bri ex_sw_tail;
126
127/* r3 is the target */
128#define SWREG_TO_R3(regnum) \
129 or r3, r0, NUM_TO_REG (regnum); \
130 bri ex_sw_tail;
131
Michal Simek7db29dd2009-05-26 16:30:22 +0200132#ifdef CONFIG_MMU
133 #define R3_TO_LWREG_VM_V(regnum) \
134 brid ex_lw_end_vm; \
135 swi r3, r7, 4 * regnum;
136
137 #define R3_TO_LWREG_VM(regnum) \
138 brid ex_lw_end_vm; \
139 or NUM_TO_REG (regnum), r0, r3;
140
141 #define SWREG_TO_R3_VM_V(regnum) \
142 brid ex_sw_tail_vm; \
143 lwi r3, r7, 4 * regnum;
144
145 #define SWREG_TO_R3_VM(regnum) \
146 brid ex_sw_tail_vm; \
147 or r3, r0, NUM_TO_REG (regnum);
148
149 /* Shift right instruction depending on available configuration */
150 #if CONFIG_XILINX_MICROBLAZE0_USE_BARREL > 0
151 #define BSRLI(rD, rA, imm) \
152 bsrli rD, rA, imm
153 #elif CONFIG_XILINX_MICROBLAZE0_USE_DIV > 0
154 #define BSRLI(rD, rA, imm) \
155 ori rD, r0, (1 << imm); \
156 idivu rD, rD, rA
157 #else
158 #define BSRLI(rD, rA, imm) BSRLI ## imm (rD, rA)
159 /* Only the used shift constants defined here - add more if needed */
160 #define BSRLI2(rD, rA) \
161 srl rD, rA; /* << 1 */ \
162 srl rD, rD; /* << 2 */
163 #define BSRLI10(rD, rA) \
164 srl rD, rA; /* << 1 */ \
165 srl rD, rD; /* << 2 */ \
166 srl rD, rD; /* << 3 */ \
167 srl rD, rD; /* << 4 */ \
168 srl rD, rD; /* << 5 */ \
169 srl rD, rD; /* << 6 */ \
170 srl rD, rD; /* << 7 */ \
171 srl rD, rD; /* << 8 */ \
172 srl rD, rD; /* << 9 */ \
173 srl rD, rD /* << 10 */
174 #define BSRLI20(rD, rA) \
175 BSRLI10(rD, rA); \
176 BSRLI10(rD, rD)
177 #endif
178#endif /* CONFIG_MMU */
179
Michal Simekc4df4bc2009-03-27 14:25:13 +0100180.extern other_exception_handler /* Defined in exception.c */
181
182/*
183 * hw_exception_handler - Handler for exceptions
184 *
185 * Exception handler notes:
186 * - Handles all exceptions
187 * - Does not handle unaligned exceptions during load into r17, r1, r0.
188 * - Does not handle unaligned exceptions during store from r17 (cannot be
189 * done) and r1 (slows down common case)
190 *
191 * Relevant register structures
192 *
193 * EAR - |----|----|----|----|----|----|----|----|
194 * - < ## 32 bit faulting address ## >
195 *
196 * ESR - |----|----|----|----|----| - | - |-----|-----|
197 * - W S REG EXC
198 *
199 *
200 * STACK FRAME STRUCTURE (for NO_MMU)
201 * ---------------------------------
202 *
203 * +-------------+ + 0
204 * | MSR |
205 * +-------------+ + 4
206 * | r1 |
207 * | . |
208 * | . |
209 * | . |
210 * | . |
211 * | r18 |
212 * +-------------+ + 76
213 * | . |
214 * | . |
215 *
216 * NO_MMU kernel use the same r0_ram pointed space - look to vmlinux.lds.S
217 * which is used for storing register values - old style was, that value were
218 * stored in stack but in case of failure you lost information about register.
219 * Currently you can see register value in memory in specific place.
220 * In compare to with previous solution the speed should be the same.
221 *
222 * MMU exception handler has different handling compare to no MMU kernel.
223 * Exception handler use jump table for directing of what happen. For MMU kernel
224 * is this approach better because MMU relate exception are handled by asm code
225 * in this file. In compare to with MMU expect of unaligned exception
226 * is everything handled by C code.
227 */
228
229/*
230 * every of these handlers is entered having R3/4/5/6/11/current saved on stack
231 * and clobbered so care should be taken to restore them if someone is going to
232 * return from exception
233 */
234
235/* wrappers to restore state before coming to entry.S */
236
Michal Simek7db29dd2009-05-26 16:30:22 +0200237#ifdef CONFIG_MMU
238.section .rodata
239.align 4
240_MB_HW_ExceptionVectorTable:
241/* 0 - Undefined */
242 .long TOPHYS(ex_handler_unhandled)
243/* 1 - Unaligned data access exception */
244 .long TOPHYS(handle_unaligned_ex)
245/* 2 - Illegal op-code exception */
246 .long TOPHYS(full_exception_trapw)
247/* 3 - Instruction bus error exception */
248 .long TOPHYS(full_exception_trapw)
249/* 4 - Data bus error exception */
250 .long TOPHYS(full_exception_trapw)
251/* 5 - Divide by zero exception */
252 .long TOPHYS(full_exception_trapw)
253/* 6 - Floating point unit exception */
254 .long TOPHYS(full_exception_trapw)
255/* 7 - Privileged instruction exception */
256 .long TOPHYS(full_exception_trapw)
257/* 8 - 15 - Undefined */
258 .long TOPHYS(ex_handler_unhandled)
259 .long TOPHYS(ex_handler_unhandled)
260 .long TOPHYS(ex_handler_unhandled)
261 .long TOPHYS(ex_handler_unhandled)
262 .long TOPHYS(ex_handler_unhandled)
263 .long TOPHYS(ex_handler_unhandled)
264 .long TOPHYS(ex_handler_unhandled)
265 .long TOPHYS(ex_handler_unhandled)
266/* 16 - Data storage exception */
267 .long TOPHYS(handle_data_storage_exception)
268/* 17 - Instruction storage exception */
269 .long TOPHYS(handle_instruction_storage_exception)
270/* 18 - Data TLB miss exception */
271 .long TOPHYS(handle_data_tlb_miss_exception)
272/* 19 - Instruction TLB miss exception */
273 .long TOPHYS(handle_instruction_tlb_miss_exception)
274/* 20 - 31 - Undefined */
275 .long TOPHYS(ex_handler_unhandled)
276 .long TOPHYS(ex_handler_unhandled)
277 .long TOPHYS(ex_handler_unhandled)
278 .long TOPHYS(ex_handler_unhandled)
279 .long TOPHYS(ex_handler_unhandled)
280 .long TOPHYS(ex_handler_unhandled)
281 .long TOPHYS(ex_handler_unhandled)
282 .long TOPHYS(ex_handler_unhandled)
283 .long TOPHYS(ex_handler_unhandled)
284 .long TOPHYS(ex_handler_unhandled)
285 .long TOPHYS(ex_handler_unhandled)
286 .long TOPHYS(ex_handler_unhandled)
287#endif
288
Michal Simekc4df4bc2009-03-27 14:25:13 +0100289.global _hw_exception_handler
290.section .text
291.align 4
292.ent _hw_exception_handler
293_hw_exception_handler:
Michal Simek7db29dd2009-05-26 16:30:22 +0200294#ifndef CONFIG_MMU
Michal Simekc4df4bc2009-03-27 14:25:13 +0100295 addik r1, r1, -(EX_HANDLER_STACK_SIZ); /* Create stack frame */
Michal Simek7db29dd2009-05-26 16:30:22 +0200296#else
297 swi r1, r0, TOPHYS(r0_ram + 0); /* GET_SP */
298 /* Save date to kernel memory. Here is the problem
299 * when you came from user space */
300 ori r1, r0, TOPHYS(r0_ram + 28);
301#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100302 swi r3, r1, PT_R3
303 swi r4, r1, PT_R4
304 swi r5, r1, PT_R5
305 swi r6, r1, PT_R6
306
Michal Simek7db29dd2009-05-26 16:30:22 +0200307#ifdef CONFIG_MMU
308 swi r11, r1, PT_R11
309 swi r31, r1, PT_R31
310 lwi r31, r0, TOPHYS(PER_CPU(CURRENT_SAVE)) /* get saved current */
311#endif
312
Michal Simekac854ff2009-09-17 17:37:33 +0200313 mfs r5, rmsr;
314 nop
315 swi r5, r1, 0;
Michal Simekc4df4bc2009-03-27 14:25:13 +0100316 mfs r3, resr
317 nop
Michal Simek7db29dd2009-05-26 16:30:22 +0200318 mfs r4, rear;
319 nop
Michal Simekc4df4bc2009-03-27 14:25:13 +0100320
Michal Simek7db29dd2009-05-26 16:30:22 +0200321#ifndef CONFIG_MMU
Michal Simekc4df4bc2009-03-27 14:25:13 +0100322 andi r5, r3, 0x1000; /* Check ESR[DS] */
323 beqi r5, not_in_delay_slot; /* Branch if ESR[DS] not set */
324 mfs r17, rbtr; /* ESR[DS] set - return address in BTR */
325 nop
326not_in_delay_slot:
327 swi r17, r1, PT_R17
Michal Simek7db29dd2009-05-26 16:30:22 +0200328#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100329
330 andi r5, r3, 0x1F; /* Extract ESR[EXC] */
331
Michal Simek7db29dd2009-05-26 16:30:22 +0200332#ifdef CONFIG_MMU
333 /* Calculate exception vector offset = r5 << 2 */
334 addk r6, r5, r5; /* << 1 */
335 addk r6, r6, r6; /* << 2 */
336
Michal Simek708e7152010-03-18 07:23:04 +0100337#ifdef DEBUG
Michal Simek7db29dd2009-05-26 16:30:22 +0200338/* counting which exception happen */
339 lwi r5, r0, 0x200 + TOPHYS(r0_ram)
340 addi r5, r5, 1
341 swi r5, r0, 0x200 + TOPHYS(r0_ram)
342 lwi r5, r6, 0x200 + TOPHYS(r0_ram)
343 addi r5, r5, 1
344 swi r5, r6, 0x200 + TOPHYS(r0_ram)
Michal Simek708e7152010-03-18 07:23:04 +0100345#endif
Michal Simek7db29dd2009-05-26 16:30:22 +0200346/* end */
347 /* Load the HW Exception vector */
348 lwi r6, r6, TOPHYS(_MB_HW_ExceptionVectorTable)
349 bra r6
350
351full_exception_trapw:
352 RESTORE_STATE
353 bri full_exception_trap
354#else
Michal Simekc4df4bc2009-03-27 14:25:13 +0100355 /* Exceptions enabled here. This will allow nested exceptions */
356 mfs r6, rmsr;
357 nop
358 swi r6, r1, 0; /* RMSR_OFFSET */
359 ori r6, r6, 0x100; /* Turn ON the EE bit */
360 andi r6, r6, ~2; /* Disable interrupts */
361 mts rmsr, r6;
362 nop
363
364 xori r6, r5, 1; /* 00001 = Unaligned Exception */
365 /* Jump to unalignment exception handler */
366 beqi r6, handle_unaligned_ex;
367
368handle_other_ex: /* Handle Other exceptions here */
369 /* Save other volatiles before we make procedure calls below */
370 swi r7, r1, PT_R7
371 swi r8, r1, PT_R8
372 swi r9, r1, PT_R9
373 swi r10, r1, PT_R10
374 swi r11, r1, PT_R11
375 swi r12, r1, PT_R12
376 swi r14, r1, PT_R14
377 swi r15, r1, PT_R15
378 swi r18, r1, PT_R18
379
380 or r5, r1, r0
381 andi r6, r3, 0x1F; /* Load ESR[EC] */
382 lwi r7, r0, PER_CPU(KM) /* MS: saving current kernel mode to regs */
383 swi r7, r1, PT_MODE
384 mfs r7, rfsr
385 nop
386 addk r8, r17, r0; /* Load exception address */
387 bralid r15, full_exception; /* Branch to the handler */
388 nop;
Michal Simek131e4e92009-09-28 08:50:53 +0200389 mts rfsr, r0; /* Clear sticky fsr */
John Williams71b23d52009-09-15 12:29:55 +1000390 nop
Michal Simekc4df4bc2009-03-27 14:25:13 +0100391
392 /*
393 * Trigger execution of the signal handler by enabling
394 * interrupts and calling an invalid syscall.
395 */
396 mfs r5, rmsr;
397 nop
398 ori r5, r5, 2;
399 mts rmsr, r5; /* enable interrupt */
400 nop
401 addi r12, r0, __NR_syscalls;
402 brki r14, 0x08;
403 mfs r5, rmsr; /* disable interrupt */
404 nop
405 andi r5, r5, ~2;
406 mts rmsr, r5;
407 nop
408
409 lwi r7, r1, PT_R7
410 lwi r8, r1, PT_R8
411 lwi r9, r1, PT_R9
412 lwi r10, r1, PT_R10
413 lwi r11, r1, PT_R11
414 lwi r12, r1, PT_R12
415 lwi r14, r1, PT_R14
416 lwi r15, r1, PT_R15
417 lwi r18, r1, PT_R18
418
419 bri ex_handler_done; /* Complete exception handling */
Michal Simek7db29dd2009-05-26 16:30:22 +0200420#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100421
422/* 0x01 - Unaligned data access exception
423 * This occurs when a word access is not aligned on a word boundary,
424 * or when a 16-bit access is not aligned on a 16-bit boundary.
425 * This handler perform the access, and returns, except for MMU when
426 * the unaligned address is last on a 4k page or the physical address is
427 * not found in the page table, in which case unaligned_data_trap is called.
428 */
429handle_unaligned_ex:
430 /* Working registers already saved: R3, R4, R5, R6
431 * R3 = ESR
Michal Simek7db29dd2009-05-26 16:30:22 +0200432 * R4 = EAR
Michal Simekc4df4bc2009-03-27 14:25:13 +0100433 */
Michal Simek7db29dd2009-05-26 16:30:22 +0200434#ifdef CONFIG_MMU
435 andi r6, r3, 0x1000 /* Check ESR[DS] */
436 beqi r6, _no_delayslot /* Branch if ESR[DS] not set */
437 mfs r17, rbtr; /* ESR[DS] set - return address in BTR */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100438 nop
Michal Simek7db29dd2009-05-26 16:30:22 +0200439_no_delayslot:
Michal Simek3863dbc2009-07-21 12:48:01 +0200440 /* jump to high level unaligned handler */
441 RESTORE_STATE;
442 bri unaligned_data_trap
Michal Simek7db29dd2009-05-26 16:30:22 +0200443#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100444 andi r6, r3, 0x3E0; /* Mask and extract the register operand */
445 srl r6, r6; /* r6 >> 5 */
446 srl r6, r6;
447 srl r6, r6;
448 srl r6, r6;
449 srl r6, r6;
450 /* Store the register operand in a temporary location */
451 sbi r6, r0, TOPHYS(ex_reg_op);
452
453 andi r6, r3, 0x400; /* Extract ESR[S] */
454 bnei r6, ex_sw;
455ex_lw:
456 andi r6, r3, 0x800; /* Extract ESR[W] */
457 beqi r6, ex_lhw;
458 lbui r5, r4, 0; /* Exception address in r4 */
459 /* Load a word, byte-by-byte from destination address
460 and save it in tmp space */
461 sbi r5, r0, TOPHYS(ex_tmp_data_loc_0);
462 lbui r5, r4, 1;
463 sbi r5, r0, TOPHYS(ex_tmp_data_loc_1);
464 lbui r5, r4, 2;
465 sbi r5, r0, TOPHYS(ex_tmp_data_loc_2);
466 lbui r5, r4, 3;
467 sbi r5, r0, TOPHYS(ex_tmp_data_loc_3);
468 /* Get the destination register value into r3 */
469 lwi r3, r0, TOPHYS(ex_tmp_data_loc_0);
470 bri ex_lw_tail;
471ex_lhw:
472 lbui r5, r4, 0; /* Exception address in r4 */
473 /* Load a half-word, byte-by-byte from destination
474 address and save it in tmp space */
475 sbi r5, r0, TOPHYS(ex_tmp_data_loc_0);
476 lbui r5, r4, 1;
477 sbi r5, r0, TOPHYS(ex_tmp_data_loc_1);
478 /* Get the destination register value into r3 */
479 lhui r3, r0, TOPHYS(ex_tmp_data_loc_0);
480ex_lw_tail:
481 /* Get the destination register number into r5 */
482 lbui r5, r0, TOPHYS(ex_reg_op);
483 /* Form load_word jump table offset (lw_table + (8 * regnum)) */
484 la r6, r0, TOPHYS(lw_table);
485 addk r5, r5, r5;
486 addk r5, r5, r5;
487 addk r5, r5, r5;
488 addk r5, r5, r6;
489 bra r5;
490ex_lw_end: /* Exception handling of load word, ends */
491ex_sw:
492 /* Get the destination register number into r5 */
493 lbui r5, r0, TOPHYS(ex_reg_op);
494 /* Form store_word jump table offset (sw_table + (8 * regnum)) */
495 la r6, r0, TOPHYS(sw_table);
496 add r5, r5, r5;
497 add r5, r5, r5;
498 add r5, r5, r5;
499 add r5, r5, r6;
500 bra r5;
501ex_sw_tail:
502 mfs r6, resr;
503 nop
504 andi r6, r6, 0x800; /* Extract ESR[W] */
505 beqi r6, ex_shw;
506 /* Get the word - delay slot */
507 swi r3, r0, TOPHYS(ex_tmp_data_loc_0);
508 /* Store the word, byte-by-byte into destination address */
509 lbui r3, r0, TOPHYS(ex_tmp_data_loc_0);
510 sbi r3, r4, 0;
511 lbui r3, r0, TOPHYS(ex_tmp_data_loc_1);
512 sbi r3, r4, 1;
513 lbui r3, r0, TOPHYS(ex_tmp_data_loc_2);
514 sbi r3, r4, 2;
515 lbui r3, r0, TOPHYS(ex_tmp_data_loc_3);
516 sbi r3, r4, 3;
517 bri ex_handler_done;
518
519ex_shw:
520 /* Store the lower half-word, byte-by-byte into destination address */
521 swi r3, r0, TOPHYS(ex_tmp_data_loc_0);
522 lbui r3, r0, TOPHYS(ex_tmp_data_loc_2);
523 sbi r3, r4, 0;
524 lbui r3, r0, TOPHYS(ex_tmp_data_loc_3);
525 sbi r3, r4, 1;
526ex_sw_end: /* Exception handling of store word, ends. */
527
528ex_handler_done:
Michal Simek7db29dd2009-05-26 16:30:22 +0200529#ifndef CONFIG_MMU
Michal Simekc4df4bc2009-03-27 14:25:13 +0100530 lwi r5, r1, 0 /* RMSR */
531 mts rmsr, r5
532 nop
533 lwi r3, r1, PT_R3
534 lwi r4, r1, PT_R4
535 lwi r5, r1, PT_R5
536 lwi r6, r1, PT_R6
537 lwi r17, r1, PT_R17
538
539 rted r17, 0
540 addik r1, r1, (EX_HANDLER_STACK_SIZ); /* Restore stack frame */
Michal Simek7db29dd2009-05-26 16:30:22 +0200541#else
542 RESTORE_STATE;
543 rted r17, 0
544 nop
545#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100546
Michal Simek7db29dd2009-05-26 16:30:22 +0200547#ifdef CONFIG_MMU
548 /* Exception vector entry code. This code runs with address translation
549 * turned off (i.e. using physical addresses). */
550
551 /* Exception vectors. */
552
553 /* 0x10 - Data Storage Exception
554 * This happens for just a few reasons. U0 set (but we don't do that),
555 * or zone protection fault (user violation, write to protected page).
556 * If this is just an update of modified status, we do that quickly
557 * and exit. Otherwise, we call heavyweight functions to do the work.
558 */
559 handle_data_storage_exception:
560 /* Working registers already saved: R3, R4, R5, R6
561 * R3 = ESR
562 */
563 mfs r11, rpid
564 nop
565 bri 4
566 mfs r3, rear /* Get faulting address */
567 nop
568 /* If we are faulting a kernel address, we have to use the
569 * kernel page tables.
570 */
571 ori r4, r0, CONFIG_KERNEL_START
572 cmpu r4, r3, r4
573 bgti r4, ex3
574 /* First, check if it was a zone fault (which means a user
575 * tried to access a kernel or read-protected page - always
576 * a SEGV). All other faults here must be stores, so no
577 * need to check ESR_S as well. */
578 mfs r4, resr
579 nop
580 andi r4, r4, 0x800 /* ESR_Z - zone protection */
581 bnei r4, ex2
582
583 ori r4, r0, swapper_pg_dir
584 mts rpid, r0 /* TLB will have 0 TID */
585 nop
586 bri ex4
587
588 /* Get the PGD for the current thread. */
589 ex3:
590 /* First, check if it was a zone fault (which means a user
591 * tried to access a kernel or read-protected page - always
592 * a SEGV). All other faults here must be stores, so no
593 * need to check ESR_S as well. */
594 mfs r4, resr
595 nop
596 andi r4, r4, 0x800 /* ESR_Z */
597 bnei r4, ex2
598 /* get current task address */
599 addi r4 ,CURRENT_TASK, TOPHYS(0);
600 lwi r4, r4, TASK_THREAD+PGDIR
601 ex4:
602 tophys(r4,r4)
603 BSRLI(r5,r3,20) /* Create L1 (pgdir/pmd) address */
604 andi r5, r5, 0xffc
605/* Assume pgdir aligned on 4K boundary, no need for "andi r4,r4,0xfffff003" */
606 or r4, r4, r5
607 lwi r4, r4, 0 /* Get L1 entry */
608 andi r5, r4, 0xfffff000 /* Extract L2 (pte) base address */
609 beqi r5, ex2 /* Bail if no table */
610
611 tophys(r5,r5)
612 BSRLI(r6,r3,10) /* Compute PTE address */
613 andi r6, r6, 0xffc
614 andi r5, r5, 0xfffff003
615 or r5, r5, r6
616 lwi r4, r5, 0 /* Get Linux PTE */
617
618 andi r6, r4, _PAGE_RW /* Is it writeable? */
619 beqi r6, ex2 /* Bail if not */
620
621 /* Update 'changed' */
622 ori r4, r4, _PAGE_DIRTY|_PAGE_ACCESSED|_PAGE_HWWRITE
623 swi r4, r5, 0 /* Update Linux page table */
624
625 /* Most of the Linux PTE is ready to load into the TLB LO.
626 * We set ZSEL, where only the LS-bit determines user access.
627 * We set execute, because we don't have the granularity to
628 * properly set this at the page level (Linux problem).
629 * If shared is set, we cause a zero PID->TID load.
630 * Many of these bits are software only. Bits we don't set
631 * here we (properly should) assume have the appropriate value.
632 */
633 andni r4, r4, 0x0ce2 /* Make sure 20, 21 are zero */
634 ori r4, r4, _PAGE_HWEXEC /* make it executable */
635
636 /* find the TLB index that caused the fault. It has to be here*/
637 mts rtlbsx, r3
638 nop
639 mfs r5, rtlbx /* DEBUG: TBD */
640 nop
641 mts rtlblo, r4 /* Load TLB LO */
642 nop
643 /* Will sync shadow TLBs */
644
645 /* Done...restore registers and get out of here. */
646 mts rpid, r11
647 nop
648 bri 4
649
650 RESTORE_STATE;
651 rted r17, 0
652 nop
653 ex2:
654 /* The bailout. Restore registers to pre-exception conditions
655 * and call the heavyweights to help us out. */
656 mts rpid, r11
657 nop
658 bri 4
659 RESTORE_STATE;
660 bri page_fault_data_trap
661
662
663 /* 0x11 - Instruction Storage Exception
664 * This is caused by a fetch from non-execute or guarded pages. */
665 handle_instruction_storage_exception:
666 /* Working registers already saved: R3, R4, R5, R6
667 * R3 = ESR
668 */
669
670 mfs r3, rear /* Get faulting address */
671 nop
672 RESTORE_STATE;
673 bri page_fault_instr_trap
674
675 /* 0x12 - Data TLB Miss Exception
676 * As the name implies, translation is not in the MMU, so search the
677 * page tables and fix it. The only purpose of this function is to
678 * load TLB entries from the page table if they exist.
679 */
680 handle_data_tlb_miss_exception:
681 /* Working registers already saved: R3, R4, R5, R6
682 * R3 = ESR
683 */
684 mfs r11, rpid
685 nop
686 bri 4
687 mfs r3, rear /* Get faulting address */
688 nop
689
690 /* If we are faulting a kernel address, we have to use the
691 * kernel page tables. */
692 ori r4, r0, CONFIG_KERNEL_START
693 cmpu r4, r3, r4
694 bgti r4, ex5
695 ori r4, r0, swapper_pg_dir
696 mts rpid, r0 /* TLB will have 0 TID */
697 nop
698 bri ex6
699
700 /* Get the PGD for the current thread. */
701 ex5:
702 /* get current task address */
703 addi r4 ,CURRENT_TASK, TOPHYS(0);
704 lwi r4, r4, TASK_THREAD+PGDIR
705 ex6:
706 tophys(r4,r4)
707 BSRLI(r5,r3,20) /* Create L1 (pgdir/pmd) address */
708 andi r5, r5, 0xffc
709/* Assume pgdir aligned on 4K boundary, no need for "andi r4,r4,0xfffff003" */
710 or r4, r4, r5
711 lwi r4, r4, 0 /* Get L1 entry */
712 andi r5, r4, 0xfffff000 /* Extract L2 (pte) base address */
713 beqi r5, ex7 /* Bail if no table */
714
715 tophys(r5,r5)
716 BSRLI(r6,r3,10) /* Compute PTE address */
717 andi r6, r6, 0xffc
718 andi r5, r5, 0xfffff003
719 or r5, r5, r6
720 lwi r4, r5, 0 /* Get Linux PTE */
721
722 andi r6, r4, _PAGE_PRESENT
723 beqi r6, ex7
724
725 ori r4, r4, _PAGE_ACCESSED
726 swi r4, r5, 0
727
728 /* Most of the Linux PTE is ready to load into the TLB LO.
729 * We set ZSEL, where only the LS-bit determines user access.
730 * We set execute, because we don't have the granularity to
731 * properly set this at the page level (Linux problem).
732 * If shared is set, we cause a zero PID->TID load.
733 * Many of these bits are software only. Bits we don't set
734 * here we (properly should) assume have the appropriate value.
735 */
736 andni r4, r4, 0x0ce2 /* Make sure 20, 21 are zero */
737
738 bri finish_tlb_load
739 ex7:
740 /* The bailout. Restore registers to pre-exception conditions
741 * and call the heavyweights to help us out.
742 */
743 mts rpid, r11
744 nop
745 bri 4
746 RESTORE_STATE;
747 bri page_fault_data_trap
748
749 /* 0x13 - Instruction TLB Miss Exception
750 * Nearly the same as above, except we get our information from
751 * different registers and bailout to a different point.
752 */
753 handle_instruction_tlb_miss_exception:
754 /* Working registers already saved: R3, R4, R5, R6
755 * R3 = ESR
756 */
757 mfs r11, rpid
758 nop
759 bri 4
760 mfs r3, rear /* Get faulting address */
761 nop
762
763 /* If we are faulting a kernel address, we have to use the
764 * kernel page tables.
765 */
766 ori r4, r0, CONFIG_KERNEL_START
767 cmpu r4, r3, r4
768 bgti r4, ex8
769 ori r4, r0, swapper_pg_dir
770 mts rpid, r0 /* TLB will have 0 TID */
771 nop
772 bri ex9
773
774 /* Get the PGD for the current thread. */
775 ex8:
776 /* get current task address */
777 addi r4 ,CURRENT_TASK, TOPHYS(0);
778 lwi r4, r4, TASK_THREAD+PGDIR
779 ex9:
780 tophys(r4,r4)
781 BSRLI(r5,r3,20) /* Create L1 (pgdir/pmd) address */
782 andi r5, r5, 0xffc
783/* Assume pgdir aligned on 4K boundary, no need for "andi r4,r4,0xfffff003" */
784 or r4, r4, r5
785 lwi r4, r4, 0 /* Get L1 entry */
786 andi r5, r4, 0xfffff000 /* Extract L2 (pte) base address */
787 beqi r5, ex10 /* Bail if no table */
788
789 tophys(r5,r5)
790 BSRLI(r6,r3,10) /* Compute PTE address */
791 andi r6, r6, 0xffc
792 andi r5, r5, 0xfffff003
793 or r5, r5, r6
794 lwi r4, r5, 0 /* Get Linux PTE */
795
796 andi r6, r4, _PAGE_PRESENT
797 beqi r6, ex7
798
799 ori r4, r4, _PAGE_ACCESSED
800 swi r4, r5, 0
801
802 /* Most of the Linux PTE is ready to load into the TLB LO.
803 * We set ZSEL, where only the LS-bit determines user access.
804 * We set execute, because we don't have the granularity to
805 * properly set this at the page level (Linux problem).
806 * If shared is set, we cause a zero PID->TID load.
807 * Many of these bits are software only. Bits we don't set
808 * here we (properly should) assume have the appropriate value.
809 */
810 andni r4, r4, 0x0ce2 /* Make sure 20, 21 are zero */
811
812 bri finish_tlb_load
813 ex10:
814 /* The bailout. Restore registers to pre-exception conditions
815 * and call the heavyweights to help us out.
816 */
817 mts rpid, r11
818 nop
819 bri 4
820 RESTORE_STATE;
821 bri page_fault_instr_trap
822
823/* Both the instruction and data TLB miss get to this point to load the TLB.
824 * r3 - EA of fault
825 * r4 - TLB LO (info from Linux PTE)
826 * r5, r6 - available to use
827 * PID - loaded with proper value when we get here
828 * Upon exit, we reload everything and RFI.
829 * A common place to load the TLB.
830 */
831 tlb_index:
832 .long 1 /* MS: storing last used tlb index */
833 finish_tlb_load:
834 /* MS: load the last used TLB index. */
835 lwi r5, r0, TOPHYS(tlb_index)
836 addik r5, r5, 1 /* MS: inc tlb_index -> use next one */
837
838/* MS: FIXME this is potential fault, because this is mask not count */
839 andi r5, r5, (MICROBLAZE_TLB_SIZE-1)
840 ori r6, r0, 1
841 cmp r31, r5, r6
842 blti r31, sem
843 addik r5, r6, 1
844 sem:
845 /* MS: save back current TLB index */
846 swi r5, r0, TOPHYS(tlb_index)
847
848 ori r4, r4, _PAGE_HWEXEC /* make it executable */
849 mts rtlbx, r5 /* MS: save current TLB */
850 nop
851 mts rtlblo, r4 /* MS: save to TLB LO */
852 nop
853
854 /* Create EPN. This is the faulting address plus a static
855 * set of bits. These are size, valid, E, U0, and ensure
856 * bits 20 and 21 are zero.
857 */
858 andi r3, r3, 0xfffff000
859 ori r3, r3, 0x0c0
860 mts rtlbhi, r3 /* Load TLB HI */
861 nop
862
863 /* Done...restore registers and get out of here. */
864 ex12:
865 mts rpid, r11
866 nop
867 bri 4
868 RESTORE_STATE;
869 rted r17, 0
870 nop
871
872 /* extern void giveup_fpu(struct task_struct *prev)
873 *
874 * The MicroBlaze processor may have an FPU, so this should not just
875 * return: TBD.
876 */
877 .globl giveup_fpu;
878 .align 4;
879 giveup_fpu:
880 bralid r15,0 /* TBD */
881 nop
882
883 /* At present, this routine just hangs. - extern void abort(void) */
884 .globl abort;
885 .align 4;
886 abort:
887 br r0
888
889 .globl set_context;
890 .align 4;
891 set_context:
892 mts rpid, r5 /* Shadow TLBs are automatically */
893 nop
894 bri 4 /* flushed by changing PID */
895 rtsd r15,8
896 nop
897
898#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100899.end _hw_exception_handler
900
Michal Simek7db29dd2009-05-26 16:30:22 +0200901#ifdef CONFIG_MMU
902/* Unaligned data access exception last on a 4k page for MMU.
903 * When this is called, we are in virtual mode with exceptions enabled
904 * and registers 1-13,15,17,18 saved.
905 *
906 * R3 = ESR
907 * R4 = EAR
908 * R7 = pointer to saved registers (struct pt_regs *regs)
909 *
910 * This handler perform the access, and returns via ret_from_exc.
911 */
912.global _unaligned_data_exception
913.ent _unaligned_data_exception
914_unaligned_data_exception:
915 andi r8, r3, 0x3E0; /* Mask and extract the register operand */
916 BSRLI(r8,r8,2); /* r8 >> 2 = register operand * 8 */
917 andi r6, r3, 0x400; /* Extract ESR[S] */
918 bneid r6, ex_sw_vm;
919 andi r6, r3, 0x800; /* Extract ESR[W] - delay slot */
920ex_lw_vm:
921 beqid r6, ex_lhw_vm;
Michal Simek3863dbc2009-07-21 12:48:01 +0200922load1: lbui r5, r4, 0; /* Exception address in r4 - delay slot */
Michal Simek7db29dd2009-05-26 16:30:22 +0200923/* Load a word, byte-by-byte from destination address and save it in tmp space*/
924 la r6, r0, ex_tmp_data_loc_0;
925 sbi r5, r6, 0;
Michal Simek3863dbc2009-07-21 12:48:01 +0200926load2: lbui r5, r4, 1;
Michal Simek7db29dd2009-05-26 16:30:22 +0200927 sbi r5, r6, 1;
Michal Simek3863dbc2009-07-21 12:48:01 +0200928load3: lbui r5, r4, 2;
Michal Simek7db29dd2009-05-26 16:30:22 +0200929 sbi r5, r6, 2;
Michal Simek3863dbc2009-07-21 12:48:01 +0200930load4: lbui r5, r4, 3;
Michal Simek7db29dd2009-05-26 16:30:22 +0200931 sbi r5, r6, 3;
932 brid ex_lw_tail_vm;
933/* Get the destination register value into r3 - delay slot */
934 lwi r3, r6, 0;
935ex_lhw_vm:
936 /* Load a half-word, byte-by-byte from destination address and
937 * save it in tmp space */
938 la r6, r0, ex_tmp_data_loc_0;
939 sbi r5, r6, 0;
Michal Simek3863dbc2009-07-21 12:48:01 +0200940load5: lbui r5, r4, 1;
Michal Simek7db29dd2009-05-26 16:30:22 +0200941 sbi r5, r6, 1;
942 lhui r3, r6, 0; /* Get the destination register value into r3 */
943ex_lw_tail_vm:
944 /* Form load_word jump table offset (lw_table_vm + (8 * regnum)) */
945 addik r5, r8, lw_table_vm;
946 bra r5;
947ex_lw_end_vm: /* Exception handling of load word, ends */
948 brai ret_from_exc;
949ex_sw_vm:
950/* Form store_word jump table offset (sw_table_vm + (8 * regnum)) */
951 addik r5, r8, sw_table_vm;
952 bra r5;
953ex_sw_tail_vm:
954 la r5, r0, ex_tmp_data_loc_0;
955 beqid r6, ex_shw_vm;
956 swi r3, r5, 0; /* Get the word - delay slot */
957 /* Store the word, byte-by-byte into destination address */
958 lbui r3, r5, 0;
Michal Simek3863dbc2009-07-21 12:48:01 +0200959store1: sbi r3, r4, 0;
Michal Simek7db29dd2009-05-26 16:30:22 +0200960 lbui r3, r5, 1;
Michal Simek3863dbc2009-07-21 12:48:01 +0200961store2: sbi r3, r4, 1;
Michal Simek7db29dd2009-05-26 16:30:22 +0200962 lbui r3, r5, 2;
Michal Simek3863dbc2009-07-21 12:48:01 +0200963store3: sbi r3, r4, 2;
Michal Simek7db29dd2009-05-26 16:30:22 +0200964 lbui r3, r5, 3;
965 brid ret_from_exc;
Michal Simek3863dbc2009-07-21 12:48:01 +0200966store4: sbi r3, r4, 3; /* Delay slot */
Michal Simek7db29dd2009-05-26 16:30:22 +0200967ex_shw_vm:
968 /* Store the lower half-word, byte-by-byte into destination address */
969 lbui r3, r5, 2;
Michal Simek3863dbc2009-07-21 12:48:01 +0200970store5: sbi r3, r4, 0;
Michal Simek7db29dd2009-05-26 16:30:22 +0200971 lbui r3, r5, 3;
972 brid ret_from_exc;
Michal Simek3863dbc2009-07-21 12:48:01 +0200973store6: sbi r3, r4, 1; /* Delay slot */
Michal Simek7db29dd2009-05-26 16:30:22 +0200974ex_sw_end_vm: /* Exception handling of store word, ends. */
Michal Simek3863dbc2009-07-21 12:48:01 +0200975
976/* We have to prevent cases that get/put_user macros get unaligned pointer
977 * to bad page area. We have to find out which origin instruction caused it
978 * and called fixup for that origin instruction not instruction in unaligned
979 * handler */
980ex_unaligned_fixup:
981 ori r5, r7, 0 /* setup pointer to pt_regs */
982 lwi r6, r7, PT_PC; /* faulting address is one instruction above */
983 addik r6, r6, -4 /* for finding proper fixup */
984 swi r6, r7, PT_PC; /* a save back it to PT_PC */
985 addik r7, r0, SIGSEGV
986 /* call bad_page_fault for finding aligned fixup, fixup address is saved
987 * in PT_PC which is used as return address from exception */
988 la r15, r0, ret_from_exc-8 /* setup return address */
989 brid bad_page_fault
990 nop
991
992/* We prevent all load/store because it could failed any attempt to access */
993.section __ex_table,"a";
994 .word load1,ex_unaligned_fixup;
995 .word load2,ex_unaligned_fixup;
996 .word load3,ex_unaligned_fixup;
997 .word load4,ex_unaligned_fixup;
998 .word load5,ex_unaligned_fixup;
999 .word store1,ex_unaligned_fixup;
1000 .word store2,ex_unaligned_fixup;
1001 .word store3,ex_unaligned_fixup;
1002 .word store4,ex_unaligned_fixup;
1003 .word store5,ex_unaligned_fixup;
1004 .word store6,ex_unaligned_fixup;
1005.previous;
Michal Simek7db29dd2009-05-26 16:30:22 +02001006.end _unaligned_data_exception
1007#endif /* CONFIG_MMU */
1008
Michal Simekc4df4bc2009-03-27 14:25:13 +01001009ex_handler_unhandled:
1010/* FIXME add handle function for unhandled exception - dump register */
1011 bri 0
1012
Michal Simek7db29dd2009-05-26 16:30:22 +02001013/*
1014 * hw_exception_handler Jump Table
1015 * - Contains code snippets for each register that caused the unalign exception
1016 * - Hence exception handler is NOT self-modifying
1017 * - Separate table for load exceptions and store exceptions.
1018 * - Each table is of size: (8 * 32) = 256 bytes
1019 */
1020
Michal Simekc4df4bc2009-03-27 14:25:13 +01001021.section .text
1022.align 4
1023lw_table:
1024lw_r0: R3_TO_LWREG (0);
1025lw_r1: LWREG_NOP;
1026lw_r2: R3_TO_LWREG (2);
1027lw_r3: R3_TO_LWREG_V (3);
1028lw_r4: R3_TO_LWREG_V (4);
1029lw_r5: R3_TO_LWREG_V (5);
1030lw_r6: R3_TO_LWREG_V (6);
1031lw_r7: R3_TO_LWREG (7);
1032lw_r8: R3_TO_LWREG (8);
1033lw_r9: R3_TO_LWREG (9);
1034lw_r10: R3_TO_LWREG (10);
1035lw_r11: R3_TO_LWREG (11);
1036lw_r12: R3_TO_LWREG (12);
1037lw_r13: R3_TO_LWREG (13);
1038lw_r14: R3_TO_LWREG (14);
1039lw_r15: R3_TO_LWREG (15);
1040lw_r16: R3_TO_LWREG (16);
1041lw_r17: LWREG_NOP;
1042lw_r18: R3_TO_LWREG (18);
1043lw_r19: R3_TO_LWREG (19);
1044lw_r20: R3_TO_LWREG (20);
1045lw_r21: R3_TO_LWREG (21);
1046lw_r22: R3_TO_LWREG (22);
1047lw_r23: R3_TO_LWREG (23);
1048lw_r24: R3_TO_LWREG (24);
1049lw_r25: R3_TO_LWREG (25);
1050lw_r26: R3_TO_LWREG (26);
1051lw_r27: R3_TO_LWREG (27);
1052lw_r28: R3_TO_LWREG (28);
1053lw_r29: R3_TO_LWREG (29);
1054lw_r30: R3_TO_LWREG (30);
Michal Simek7db29dd2009-05-26 16:30:22 +02001055#ifdef CONFIG_MMU
1056lw_r31: R3_TO_LWREG_V (31);
1057#else
Michal Simekc4df4bc2009-03-27 14:25:13 +01001058lw_r31: R3_TO_LWREG (31);
Michal Simek7db29dd2009-05-26 16:30:22 +02001059#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +01001060
1061sw_table:
1062sw_r0: SWREG_TO_R3 (0);
1063sw_r1: SWREG_NOP;
1064sw_r2: SWREG_TO_R3 (2);
1065sw_r3: SWREG_TO_R3_V (3);
1066sw_r4: SWREG_TO_R3_V (4);
1067sw_r5: SWREG_TO_R3_V (5);
1068sw_r6: SWREG_TO_R3_V (6);
1069sw_r7: SWREG_TO_R3 (7);
1070sw_r8: SWREG_TO_R3 (8);
1071sw_r9: SWREG_TO_R3 (9);
1072sw_r10: SWREG_TO_R3 (10);
1073sw_r11: SWREG_TO_R3 (11);
1074sw_r12: SWREG_TO_R3 (12);
1075sw_r13: SWREG_TO_R3 (13);
1076sw_r14: SWREG_TO_R3 (14);
1077sw_r15: SWREG_TO_R3 (15);
1078sw_r16: SWREG_TO_R3 (16);
1079sw_r17: SWREG_NOP;
1080sw_r18: SWREG_TO_R3 (18);
1081sw_r19: SWREG_TO_R3 (19);
1082sw_r20: SWREG_TO_R3 (20);
1083sw_r21: SWREG_TO_R3 (21);
1084sw_r22: SWREG_TO_R3 (22);
1085sw_r23: SWREG_TO_R3 (23);
1086sw_r24: SWREG_TO_R3 (24);
1087sw_r25: SWREG_TO_R3 (25);
1088sw_r26: SWREG_TO_R3 (26);
1089sw_r27: SWREG_TO_R3 (27);
1090sw_r28: SWREG_TO_R3 (28);
1091sw_r29: SWREG_TO_R3 (29);
1092sw_r30: SWREG_TO_R3 (30);
Michal Simek7db29dd2009-05-26 16:30:22 +02001093#ifdef CONFIG_MMU
1094sw_r31: SWREG_TO_R3_V (31);
1095#else
Michal Simekc4df4bc2009-03-27 14:25:13 +01001096sw_r31: SWREG_TO_R3 (31);
Michal Simek7db29dd2009-05-26 16:30:22 +02001097#endif
1098
1099#ifdef CONFIG_MMU
1100lw_table_vm:
1101lw_r0_vm: R3_TO_LWREG_VM (0);
1102lw_r1_vm: R3_TO_LWREG_VM_V (1);
1103lw_r2_vm: R3_TO_LWREG_VM_V (2);
1104lw_r3_vm: R3_TO_LWREG_VM_V (3);
1105lw_r4_vm: R3_TO_LWREG_VM_V (4);
1106lw_r5_vm: R3_TO_LWREG_VM_V (5);
1107lw_r6_vm: R3_TO_LWREG_VM_V (6);
1108lw_r7_vm: R3_TO_LWREG_VM_V (7);
1109lw_r8_vm: R3_TO_LWREG_VM_V (8);
1110lw_r9_vm: R3_TO_LWREG_VM_V (9);
1111lw_r10_vm: R3_TO_LWREG_VM_V (10);
1112lw_r11_vm: R3_TO_LWREG_VM_V (11);
1113lw_r12_vm: R3_TO_LWREG_VM_V (12);
1114lw_r13_vm: R3_TO_LWREG_VM_V (13);
1115lw_r14_vm: R3_TO_LWREG_VM (14);
1116lw_r15_vm: R3_TO_LWREG_VM_V (15);
1117lw_r16_vm: R3_TO_LWREG_VM (16);
1118lw_r17_vm: R3_TO_LWREG_VM_V (17);
1119lw_r18_vm: R3_TO_LWREG_VM_V (18);
1120lw_r19_vm: R3_TO_LWREG_VM (19);
1121lw_r20_vm: R3_TO_LWREG_VM (20);
1122lw_r21_vm: R3_TO_LWREG_VM (21);
1123lw_r22_vm: R3_TO_LWREG_VM (22);
1124lw_r23_vm: R3_TO_LWREG_VM (23);
1125lw_r24_vm: R3_TO_LWREG_VM (24);
1126lw_r25_vm: R3_TO_LWREG_VM (25);
1127lw_r26_vm: R3_TO_LWREG_VM (26);
1128lw_r27_vm: R3_TO_LWREG_VM (27);
1129lw_r28_vm: R3_TO_LWREG_VM (28);
1130lw_r29_vm: R3_TO_LWREG_VM (29);
1131lw_r30_vm: R3_TO_LWREG_VM (30);
1132lw_r31_vm: R3_TO_LWREG_VM_V (31);
1133
1134sw_table_vm:
1135sw_r0_vm: SWREG_TO_R3_VM (0);
1136sw_r1_vm: SWREG_TO_R3_VM_V (1);
1137sw_r2_vm: SWREG_TO_R3_VM_V (2);
1138sw_r3_vm: SWREG_TO_R3_VM_V (3);
1139sw_r4_vm: SWREG_TO_R3_VM_V (4);
1140sw_r5_vm: SWREG_TO_R3_VM_V (5);
1141sw_r6_vm: SWREG_TO_R3_VM_V (6);
1142sw_r7_vm: SWREG_TO_R3_VM_V (7);
1143sw_r8_vm: SWREG_TO_R3_VM_V (8);
1144sw_r9_vm: SWREG_TO_R3_VM_V (9);
1145sw_r10_vm: SWREG_TO_R3_VM_V (10);
1146sw_r11_vm: SWREG_TO_R3_VM_V (11);
1147sw_r12_vm: SWREG_TO_R3_VM_V (12);
1148sw_r13_vm: SWREG_TO_R3_VM_V (13);
1149sw_r14_vm: SWREG_TO_R3_VM (14);
1150sw_r15_vm: SWREG_TO_R3_VM_V (15);
1151sw_r16_vm: SWREG_TO_R3_VM (16);
1152sw_r17_vm: SWREG_TO_R3_VM_V (17);
1153sw_r18_vm: SWREG_TO_R3_VM_V (18);
1154sw_r19_vm: SWREG_TO_R3_VM (19);
1155sw_r20_vm: SWREG_TO_R3_VM (20);
1156sw_r21_vm: SWREG_TO_R3_VM (21);
1157sw_r22_vm: SWREG_TO_R3_VM (22);
1158sw_r23_vm: SWREG_TO_R3_VM (23);
1159sw_r24_vm: SWREG_TO_R3_VM (24);
1160sw_r25_vm: SWREG_TO_R3_VM (25);
1161sw_r26_vm: SWREG_TO_R3_VM (26);
1162sw_r27_vm: SWREG_TO_R3_VM (27);
1163sw_r28_vm: SWREG_TO_R3_VM (28);
1164sw_r29_vm: SWREG_TO_R3_VM (29);
1165sw_r30_vm: SWREG_TO_R3_VM (30);
1166sw_r31_vm: SWREG_TO_R3_VM_V (31);
1167#endif /* CONFIG_MMU */
Michal Simekc4df4bc2009-03-27 14:25:13 +01001168
1169/* Temporary data structures used in the handler */
1170.section .data
1171.align 4
1172ex_tmp_data_loc_0:
1173 .byte 0
1174ex_tmp_data_loc_1:
1175 .byte 0
1176ex_tmp_data_loc_2:
1177 .byte 0
1178ex_tmp_data_loc_3:
1179 .byte 0
1180ex_reg_op:
1181 .byte 0