blob: 9d591cd74fc221293fa1d647f530c0e29120dbe4 [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>
77#include <asm/asm-offsets.h>
78
79/* Helpful Macros */
Michal Simek7db29dd2009-05-26 16:30:22 +020080#ifndef CONFIG_MMU
Michal Simekc4df4bc2009-03-27 14:25:13 +010081#define EX_HANDLER_STACK_SIZ (4*19)
Michal Simek7db29dd2009-05-26 16:30:22 +020082#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +010083#define NUM_TO_REG(num) r ## num
84
Michal Simek7db29dd2009-05-26 16:30:22 +020085#ifdef CONFIG_MMU
86/* FIXME you can't change first load of MSR because there is
87 * hardcoded jump bri 4 */
88 #define RESTORE_STATE \
89 lwi r3, r1, PT_R3; \
90 lwi r4, r1, PT_R4; \
91 lwi r5, r1, PT_R5; \
92 lwi r6, r1, PT_R6; \
93 lwi r11, r1, PT_R11; \
94 lwi r31, r1, PT_R31; \
95 lwi r1, r0, TOPHYS(r0_ram + 0);
96#endif /* CONFIG_MMU */
97
Michal Simekc4df4bc2009-03-27 14:25:13 +010098#define LWREG_NOP \
99 bri ex_handler_unhandled; \
100 nop;
101
102#define SWREG_NOP \
103 bri ex_handler_unhandled; \
104 nop;
105
106/* FIXME this is weird - for noMMU kernel is not possible to use brid
107 * instruction which can shorten executed time
108 */
109
110/* r3 is the source */
111#define R3_TO_LWREG_V(regnum) \
112 swi r3, r1, 4 * regnum; \
113 bri ex_handler_done;
114
115/* r3 is the source */
116#define R3_TO_LWREG(regnum) \
117 or NUM_TO_REG (regnum), r0, r3; \
118 bri ex_handler_done;
119
120/* r3 is the target */
121#define SWREG_TO_R3_V(regnum) \
122 lwi r3, r1, 4 * regnum; \
123 bri ex_sw_tail;
124
125/* r3 is the target */
126#define SWREG_TO_R3(regnum) \
127 or r3, r0, NUM_TO_REG (regnum); \
128 bri ex_sw_tail;
129
Michal Simek7db29dd2009-05-26 16:30:22 +0200130#ifdef CONFIG_MMU
131 #define R3_TO_LWREG_VM_V(regnum) \
132 brid ex_lw_end_vm; \
133 swi r3, r7, 4 * regnum;
134
135 #define R3_TO_LWREG_VM(regnum) \
136 brid ex_lw_end_vm; \
137 or NUM_TO_REG (regnum), r0, r3;
138
139 #define SWREG_TO_R3_VM_V(regnum) \
140 brid ex_sw_tail_vm; \
141 lwi r3, r7, 4 * regnum;
142
143 #define SWREG_TO_R3_VM(regnum) \
144 brid ex_sw_tail_vm; \
145 or r3, r0, NUM_TO_REG (regnum);
146
147 /* Shift right instruction depending on available configuration */
148 #if CONFIG_XILINX_MICROBLAZE0_USE_BARREL > 0
149 #define BSRLI(rD, rA, imm) \
150 bsrli rD, rA, imm
151 #elif CONFIG_XILINX_MICROBLAZE0_USE_DIV > 0
152 #define BSRLI(rD, rA, imm) \
153 ori rD, r0, (1 << imm); \
154 idivu rD, rD, rA
155 #else
156 #define BSRLI(rD, rA, imm) BSRLI ## imm (rD, rA)
157 /* Only the used shift constants defined here - add more if needed */
158 #define BSRLI2(rD, rA) \
159 srl rD, rA; /* << 1 */ \
160 srl rD, rD; /* << 2 */
161 #define BSRLI10(rD, rA) \
162 srl rD, rA; /* << 1 */ \
163 srl rD, rD; /* << 2 */ \
164 srl rD, rD; /* << 3 */ \
165 srl rD, rD; /* << 4 */ \
166 srl rD, rD; /* << 5 */ \
167 srl rD, rD; /* << 6 */ \
168 srl rD, rD; /* << 7 */ \
169 srl rD, rD; /* << 8 */ \
170 srl rD, rD; /* << 9 */ \
171 srl rD, rD /* << 10 */
172 #define BSRLI20(rD, rA) \
173 BSRLI10(rD, rA); \
174 BSRLI10(rD, rD)
175 #endif
176#endif /* CONFIG_MMU */
177
Michal Simekc4df4bc2009-03-27 14:25:13 +0100178.extern other_exception_handler /* Defined in exception.c */
179
180/*
181 * hw_exception_handler - Handler for exceptions
182 *
183 * Exception handler notes:
184 * - Handles all exceptions
185 * - Does not handle unaligned exceptions during load into r17, r1, r0.
186 * - Does not handle unaligned exceptions during store from r17 (cannot be
187 * done) and r1 (slows down common case)
188 *
189 * Relevant register structures
190 *
191 * EAR - |----|----|----|----|----|----|----|----|
192 * - < ## 32 bit faulting address ## >
193 *
194 * ESR - |----|----|----|----|----| - | - |-----|-----|
195 * - W S REG EXC
196 *
197 *
198 * STACK FRAME STRUCTURE (for NO_MMU)
199 * ---------------------------------
200 *
201 * +-------------+ + 0
202 * | MSR |
203 * +-------------+ + 4
204 * | r1 |
205 * | . |
206 * | . |
207 * | . |
208 * | . |
209 * | r18 |
210 * +-------------+ + 76
211 * | . |
212 * | . |
213 *
214 * NO_MMU kernel use the same r0_ram pointed space - look to vmlinux.lds.S
215 * which is used for storing register values - old style was, that value were
216 * stored in stack but in case of failure you lost information about register.
217 * Currently you can see register value in memory in specific place.
218 * In compare to with previous solution the speed should be the same.
219 *
220 * MMU exception handler has different handling compare to no MMU kernel.
221 * Exception handler use jump table for directing of what happen. For MMU kernel
222 * is this approach better because MMU relate exception are handled by asm code
223 * in this file. In compare to with MMU expect of unaligned exception
224 * is everything handled by C code.
225 */
226
227/*
228 * every of these handlers is entered having R3/4/5/6/11/current saved on stack
229 * and clobbered so care should be taken to restore them if someone is going to
230 * return from exception
231 */
232
233/* wrappers to restore state before coming to entry.S */
234
Michal Simek7db29dd2009-05-26 16:30:22 +0200235#ifdef CONFIG_MMU
236.section .rodata
237.align 4
238_MB_HW_ExceptionVectorTable:
239/* 0 - Undefined */
240 .long TOPHYS(ex_handler_unhandled)
241/* 1 - Unaligned data access exception */
242 .long TOPHYS(handle_unaligned_ex)
243/* 2 - Illegal op-code exception */
244 .long TOPHYS(full_exception_trapw)
245/* 3 - Instruction bus error exception */
246 .long TOPHYS(full_exception_trapw)
247/* 4 - Data bus error exception */
248 .long TOPHYS(full_exception_trapw)
249/* 5 - Divide by zero exception */
250 .long TOPHYS(full_exception_trapw)
251/* 6 - Floating point unit exception */
252 .long TOPHYS(full_exception_trapw)
253/* 7 - Privileged instruction exception */
254 .long TOPHYS(full_exception_trapw)
255/* 8 - 15 - Undefined */
256 .long TOPHYS(ex_handler_unhandled)
257 .long TOPHYS(ex_handler_unhandled)
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/* 16 - Data storage exception */
265 .long TOPHYS(handle_data_storage_exception)
266/* 17 - Instruction storage exception */
267 .long TOPHYS(handle_instruction_storage_exception)
268/* 18 - Data TLB miss exception */
269 .long TOPHYS(handle_data_tlb_miss_exception)
270/* 19 - Instruction TLB miss exception */
271 .long TOPHYS(handle_instruction_tlb_miss_exception)
272/* 20 - 31 - Undefined */
273 .long TOPHYS(ex_handler_unhandled)
274 .long TOPHYS(ex_handler_unhandled)
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#endif
286
Michal Simekc4df4bc2009-03-27 14:25:13 +0100287.global _hw_exception_handler
288.section .text
289.align 4
290.ent _hw_exception_handler
291_hw_exception_handler:
Michal Simek7db29dd2009-05-26 16:30:22 +0200292#ifndef CONFIG_MMU
Michal Simekc4df4bc2009-03-27 14:25:13 +0100293 addik r1, r1, -(EX_HANDLER_STACK_SIZ); /* Create stack frame */
Michal Simek7db29dd2009-05-26 16:30:22 +0200294#else
295 swi r1, r0, TOPHYS(r0_ram + 0); /* GET_SP */
296 /* Save date to kernel memory. Here is the problem
297 * when you came from user space */
298 ori r1, r0, TOPHYS(r0_ram + 28);
299#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100300 swi r3, r1, PT_R3
301 swi r4, r1, PT_R4
302 swi r5, r1, PT_R5
303 swi r6, r1, PT_R6
304
Michal Simek7db29dd2009-05-26 16:30:22 +0200305#ifdef CONFIG_MMU
306 swi r11, r1, PT_R11
307 swi r31, r1, PT_R31
308 lwi r31, r0, TOPHYS(PER_CPU(CURRENT_SAVE)) /* get saved current */
309#endif
310
Michal Simekc4df4bc2009-03-27 14:25:13 +0100311 mfs r3, resr
312 nop
Michal Simek7db29dd2009-05-26 16:30:22 +0200313 mfs r4, rear;
314 nop
Michal Simekc4df4bc2009-03-27 14:25:13 +0100315
Michal Simek7db29dd2009-05-26 16:30:22 +0200316#ifndef CONFIG_MMU
Michal Simekc4df4bc2009-03-27 14:25:13 +0100317 andi r5, r3, 0x1000; /* Check ESR[DS] */
318 beqi r5, not_in_delay_slot; /* Branch if ESR[DS] not set */
319 mfs r17, rbtr; /* ESR[DS] set - return address in BTR */
320 nop
321not_in_delay_slot:
322 swi r17, r1, PT_R17
Michal Simek7db29dd2009-05-26 16:30:22 +0200323#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100324
325 andi r5, r3, 0x1F; /* Extract ESR[EXC] */
326
Michal Simek7db29dd2009-05-26 16:30:22 +0200327#ifdef CONFIG_MMU
328 /* Calculate exception vector offset = r5 << 2 */
329 addk r6, r5, r5; /* << 1 */
330 addk r6, r6, r6; /* << 2 */
331
332/* counting which exception happen */
333 lwi r5, r0, 0x200 + TOPHYS(r0_ram)
334 addi r5, r5, 1
335 swi r5, r0, 0x200 + TOPHYS(r0_ram)
336 lwi r5, r6, 0x200 + TOPHYS(r0_ram)
337 addi r5, r5, 1
338 swi r5, r6, 0x200 + TOPHYS(r0_ram)
339/* end */
340 /* Load the HW Exception vector */
341 lwi r6, r6, TOPHYS(_MB_HW_ExceptionVectorTable)
342 bra r6
343
344full_exception_trapw:
345 RESTORE_STATE
346 bri full_exception_trap
347#else
Michal Simekc4df4bc2009-03-27 14:25:13 +0100348 /* Exceptions enabled here. This will allow nested exceptions */
349 mfs r6, rmsr;
350 nop
351 swi r6, r1, 0; /* RMSR_OFFSET */
352 ori r6, r6, 0x100; /* Turn ON the EE bit */
353 andi r6, r6, ~2; /* Disable interrupts */
354 mts rmsr, r6;
355 nop
356
357 xori r6, r5, 1; /* 00001 = Unaligned Exception */
358 /* Jump to unalignment exception handler */
359 beqi r6, handle_unaligned_ex;
360
361handle_other_ex: /* Handle Other exceptions here */
362 /* Save other volatiles before we make procedure calls below */
363 swi r7, r1, PT_R7
364 swi r8, r1, PT_R8
365 swi r9, r1, PT_R9
366 swi r10, r1, PT_R10
367 swi r11, r1, PT_R11
368 swi r12, r1, PT_R12
369 swi r14, r1, PT_R14
370 swi r15, r1, PT_R15
371 swi r18, r1, PT_R18
372
373 or r5, r1, r0
374 andi r6, r3, 0x1F; /* Load ESR[EC] */
375 lwi r7, r0, PER_CPU(KM) /* MS: saving current kernel mode to regs */
376 swi r7, r1, PT_MODE
377 mfs r7, rfsr
378 nop
379 addk r8, r17, r0; /* Load exception address */
380 bralid r15, full_exception; /* Branch to the handler */
381 nop;
382
383 /*
384 * Trigger execution of the signal handler by enabling
385 * interrupts and calling an invalid syscall.
386 */
387 mfs r5, rmsr;
388 nop
389 ori r5, r5, 2;
390 mts rmsr, r5; /* enable interrupt */
391 nop
392 addi r12, r0, __NR_syscalls;
393 brki r14, 0x08;
394 mfs r5, rmsr; /* disable interrupt */
395 nop
396 andi r5, r5, ~2;
397 mts rmsr, r5;
398 nop
399
400 lwi r7, r1, PT_R7
401 lwi r8, r1, PT_R8
402 lwi r9, r1, PT_R9
403 lwi r10, r1, PT_R10
404 lwi r11, r1, PT_R11
405 lwi r12, r1, PT_R12
406 lwi r14, r1, PT_R14
407 lwi r15, r1, PT_R15
408 lwi r18, r1, PT_R18
409
410 bri ex_handler_done; /* Complete exception handling */
Michal Simek7db29dd2009-05-26 16:30:22 +0200411#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100412
413/* 0x01 - Unaligned data access exception
414 * This occurs when a word access is not aligned on a word boundary,
415 * or when a 16-bit access is not aligned on a 16-bit boundary.
416 * This handler perform the access, and returns, except for MMU when
417 * the unaligned address is last on a 4k page or the physical address is
418 * not found in the page table, in which case unaligned_data_trap is called.
419 */
420handle_unaligned_ex:
421 /* Working registers already saved: R3, R4, R5, R6
422 * R3 = ESR
Michal Simek7db29dd2009-05-26 16:30:22 +0200423 * R4 = EAR
Michal Simekc4df4bc2009-03-27 14:25:13 +0100424 */
Michal Simek7db29dd2009-05-26 16:30:22 +0200425#ifdef CONFIG_MMU
426 andi r6, r3, 0x1000 /* Check ESR[DS] */
427 beqi r6, _no_delayslot /* Branch if ESR[DS] not set */
428 mfs r17, rbtr; /* ESR[DS] set - return address in BTR */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100429 nop
Michal Simek7db29dd2009-05-26 16:30:22 +0200430_no_delayslot:
431#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100432
Michal Simek7db29dd2009-05-26 16:30:22 +0200433#ifdef CONFIG_MMU
434 /* Check if unaligned address is last on a 4k page */
435 andi r5, r4, 0xffc
436 xori r5, r5, 0xffc
437 bnei r5, _unaligned_ex2
438 _unaligned_ex1:
439 RESTORE_STATE;
440/* Another page must be accessed or physical address not in page table */
441 bri unaligned_data_trap
442
443 _unaligned_ex2:
444#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100445 andi r6, r3, 0x3E0; /* Mask and extract the register operand */
446 srl r6, r6; /* r6 >> 5 */
447 srl r6, r6;
448 srl r6, r6;
449 srl r6, r6;
450 srl r6, r6;
451 /* Store the register operand in a temporary location */
452 sbi r6, r0, TOPHYS(ex_reg_op);
Michal Simek7db29dd2009-05-26 16:30:22 +0200453#ifdef CONFIG_MMU
454 /* Get physical address */
455 /* If we are faulting a kernel address, we have to use the
456 * kernel page tables.
457 */
458 ori r5, r0, CONFIG_KERNEL_START
459 cmpu r5, r4, r5
460 bgti r5, _unaligned_ex3
461 ori r5, r0, swapper_pg_dir
462 bri _unaligned_ex4
463
464 /* Get the PGD for the current thread. */
465_unaligned_ex3: /* user thread */
466 addi r5 ,CURRENT_TASK, TOPHYS(0); /* get current task address */
467 lwi r5, r5, TASK_THREAD + PGDIR
468_unaligned_ex4:
469 tophys(r5,r5)
470 BSRLI(r6,r4,20) /* Create L1 (pgdir/pmd) address */
471 andi r6, r6, 0xffc
472/* Assume pgdir aligned on 4K boundary, no need for "andi r5,r5,0xfffff003" */
473 or r5, r5, r6
474 lwi r6, r5, 0 /* Get L1 entry */
475 andi r5, r6, 0xfffff000 /* Extract L2 (pte) base address. */
476 beqi r5, _unaligned_ex1 /* Bail if no table */
477
478 tophys(r5,r5)
479 BSRLI(r6,r4,10) /* Compute PTE address */
480 andi r6, r6, 0xffc
481 andi r5, r5, 0xfffff003
482 or r5, r5, r6
483 lwi r5, r5, 0 /* Get Linux PTE */
484
485 andi r6, r5, _PAGE_PRESENT
486 beqi r6, _unaligned_ex1 /* Bail if no page */
487
488 andi r5, r5, 0xfffff000 /* Extract RPN */
489 andi r4, r4, 0x00000fff /* Extract offset */
490 or r4, r4, r5 /* Create physical address */
491#endif /* CONFIG_MMU */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100492
493 andi r6, r3, 0x400; /* Extract ESR[S] */
494 bnei r6, ex_sw;
495ex_lw:
496 andi r6, r3, 0x800; /* Extract ESR[W] */
497 beqi r6, ex_lhw;
498 lbui r5, r4, 0; /* Exception address in r4 */
499 /* Load a word, byte-by-byte from destination address
500 and save it in tmp space */
501 sbi r5, r0, TOPHYS(ex_tmp_data_loc_0);
502 lbui r5, r4, 1;
503 sbi r5, r0, TOPHYS(ex_tmp_data_loc_1);
504 lbui r5, r4, 2;
505 sbi r5, r0, TOPHYS(ex_tmp_data_loc_2);
506 lbui r5, r4, 3;
507 sbi r5, r0, TOPHYS(ex_tmp_data_loc_3);
508 /* Get the destination register value into r3 */
509 lwi r3, r0, TOPHYS(ex_tmp_data_loc_0);
510 bri ex_lw_tail;
511ex_lhw:
512 lbui r5, r4, 0; /* Exception address in r4 */
513 /* Load a half-word, byte-by-byte from destination
514 address and save it in tmp space */
515 sbi r5, r0, TOPHYS(ex_tmp_data_loc_0);
516 lbui r5, r4, 1;
517 sbi r5, r0, TOPHYS(ex_tmp_data_loc_1);
518 /* Get the destination register value into r3 */
519 lhui r3, r0, TOPHYS(ex_tmp_data_loc_0);
520ex_lw_tail:
521 /* Get the destination register number into r5 */
522 lbui r5, r0, TOPHYS(ex_reg_op);
523 /* Form load_word jump table offset (lw_table + (8 * regnum)) */
524 la r6, r0, TOPHYS(lw_table);
525 addk r5, r5, r5;
526 addk r5, r5, r5;
527 addk r5, r5, r5;
528 addk r5, r5, r6;
529 bra r5;
530ex_lw_end: /* Exception handling of load word, ends */
531ex_sw:
532 /* Get the destination register number into r5 */
533 lbui r5, r0, TOPHYS(ex_reg_op);
534 /* Form store_word jump table offset (sw_table + (8 * regnum)) */
535 la r6, r0, TOPHYS(sw_table);
536 add r5, r5, r5;
537 add r5, r5, r5;
538 add r5, r5, r5;
539 add r5, r5, r6;
540 bra r5;
541ex_sw_tail:
542 mfs r6, resr;
543 nop
544 andi r6, r6, 0x800; /* Extract ESR[W] */
545 beqi r6, ex_shw;
546 /* Get the word - delay slot */
547 swi r3, r0, TOPHYS(ex_tmp_data_loc_0);
548 /* Store the word, byte-by-byte into destination address */
549 lbui r3, r0, TOPHYS(ex_tmp_data_loc_0);
550 sbi r3, r4, 0;
551 lbui r3, r0, TOPHYS(ex_tmp_data_loc_1);
552 sbi r3, r4, 1;
553 lbui r3, r0, TOPHYS(ex_tmp_data_loc_2);
554 sbi r3, r4, 2;
555 lbui r3, r0, TOPHYS(ex_tmp_data_loc_3);
556 sbi r3, r4, 3;
557 bri ex_handler_done;
558
559ex_shw:
560 /* Store the lower half-word, byte-by-byte into destination address */
561 swi r3, r0, TOPHYS(ex_tmp_data_loc_0);
562 lbui r3, r0, TOPHYS(ex_tmp_data_loc_2);
563 sbi r3, r4, 0;
564 lbui r3, r0, TOPHYS(ex_tmp_data_loc_3);
565 sbi r3, r4, 1;
566ex_sw_end: /* Exception handling of store word, ends. */
567
568ex_handler_done:
Michal Simek7db29dd2009-05-26 16:30:22 +0200569#ifndef CONFIG_MMU
Michal Simekc4df4bc2009-03-27 14:25:13 +0100570 lwi r5, r1, 0 /* RMSR */
571 mts rmsr, r5
572 nop
573 lwi r3, r1, PT_R3
574 lwi r4, r1, PT_R4
575 lwi r5, r1, PT_R5
576 lwi r6, r1, PT_R6
577 lwi r17, r1, PT_R17
578
579 rted r17, 0
580 addik r1, r1, (EX_HANDLER_STACK_SIZ); /* Restore stack frame */
Michal Simek7db29dd2009-05-26 16:30:22 +0200581#else
582 RESTORE_STATE;
583 rted r17, 0
584 nop
585#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100586
Michal Simek7db29dd2009-05-26 16:30:22 +0200587#ifdef CONFIG_MMU
588 /* Exception vector entry code. This code runs with address translation
589 * turned off (i.e. using physical addresses). */
590
591 /* Exception vectors. */
592
593 /* 0x10 - Data Storage Exception
594 * This happens for just a few reasons. U0 set (but we don't do that),
595 * or zone protection fault (user violation, write to protected page).
596 * If this is just an update of modified status, we do that quickly
597 * and exit. Otherwise, we call heavyweight functions to do the work.
598 */
599 handle_data_storage_exception:
600 /* Working registers already saved: R3, R4, R5, R6
601 * R3 = ESR
602 */
603 mfs r11, rpid
604 nop
605 bri 4
606 mfs r3, rear /* Get faulting address */
607 nop
608 /* If we are faulting a kernel address, we have to use the
609 * kernel page tables.
610 */
611 ori r4, r0, CONFIG_KERNEL_START
612 cmpu r4, r3, r4
613 bgti r4, ex3
614 /* First, check if it was a zone fault (which means a user
615 * tried to access a kernel or read-protected page - always
616 * a SEGV). All other faults here must be stores, so no
617 * need to check ESR_S as well. */
618 mfs r4, resr
619 nop
620 andi r4, r4, 0x800 /* ESR_Z - zone protection */
621 bnei r4, ex2
622
623 ori r4, r0, swapper_pg_dir
624 mts rpid, r0 /* TLB will have 0 TID */
625 nop
626 bri ex4
627
628 /* Get the PGD for the current thread. */
629 ex3:
630 /* First, check if it was a zone fault (which means a user
631 * tried to access a kernel or read-protected page - always
632 * a SEGV). All other faults here must be stores, so no
633 * need to check ESR_S as well. */
634 mfs r4, resr
635 nop
636 andi r4, r4, 0x800 /* ESR_Z */
637 bnei r4, ex2
638 /* get current task address */
639 addi r4 ,CURRENT_TASK, TOPHYS(0);
640 lwi r4, r4, TASK_THREAD+PGDIR
641 ex4:
642 tophys(r4,r4)
643 BSRLI(r5,r3,20) /* Create L1 (pgdir/pmd) address */
644 andi r5, r5, 0xffc
645/* Assume pgdir aligned on 4K boundary, no need for "andi r4,r4,0xfffff003" */
646 or r4, r4, r5
647 lwi r4, r4, 0 /* Get L1 entry */
648 andi r5, r4, 0xfffff000 /* Extract L2 (pte) base address */
649 beqi r5, ex2 /* Bail if no table */
650
651 tophys(r5,r5)
652 BSRLI(r6,r3,10) /* Compute PTE address */
653 andi r6, r6, 0xffc
654 andi r5, r5, 0xfffff003
655 or r5, r5, r6
656 lwi r4, r5, 0 /* Get Linux PTE */
657
658 andi r6, r4, _PAGE_RW /* Is it writeable? */
659 beqi r6, ex2 /* Bail if not */
660
661 /* Update 'changed' */
662 ori r4, r4, _PAGE_DIRTY|_PAGE_ACCESSED|_PAGE_HWWRITE
663 swi r4, r5, 0 /* Update Linux page table */
664
665 /* Most of the Linux PTE is ready to load into the TLB LO.
666 * We set ZSEL, where only the LS-bit determines user access.
667 * We set execute, because we don't have the granularity to
668 * properly set this at the page level (Linux problem).
669 * If shared is set, we cause a zero PID->TID load.
670 * Many of these bits are software only. Bits we don't set
671 * here we (properly should) assume have the appropriate value.
672 */
673 andni r4, r4, 0x0ce2 /* Make sure 20, 21 are zero */
674 ori r4, r4, _PAGE_HWEXEC /* make it executable */
675
676 /* find the TLB index that caused the fault. It has to be here*/
677 mts rtlbsx, r3
678 nop
679 mfs r5, rtlbx /* DEBUG: TBD */
680 nop
681 mts rtlblo, r4 /* Load TLB LO */
682 nop
683 /* Will sync shadow TLBs */
684
685 /* Done...restore registers and get out of here. */
686 mts rpid, r11
687 nop
688 bri 4
689
690 RESTORE_STATE;
691 rted r17, 0
692 nop
693 ex2:
694 /* The bailout. Restore registers to pre-exception conditions
695 * and call the heavyweights to help us out. */
696 mts rpid, r11
697 nop
698 bri 4
699 RESTORE_STATE;
700 bri page_fault_data_trap
701
702
703 /* 0x11 - Instruction Storage Exception
704 * This is caused by a fetch from non-execute or guarded pages. */
705 handle_instruction_storage_exception:
706 /* Working registers already saved: R3, R4, R5, R6
707 * R3 = ESR
708 */
709
710 mfs r3, rear /* Get faulting address */
711 nop
712 RESTORE_STATE;
713 bri page_fault_instr_trap
714
715 /* 0x12 - Data TLB Miss Exception
716 * As the name implies, translation is not in the MMU, so search the
717 * page tables and fix it. The only purpose of this function is to
718 * load TLB entries from the page table if they exist.
719 */
720 handle_data_tlb_miss_exception:
721 /* Working registers already saved: R3, R4, R5, R6
722 * R3 = ESR
723 */
724 mfs r11, rpid
725 nop
726 bri 4
727 mfs r3, rear /* Get faulting address */
728 nop
729
730 /* If we are faulting a kernel address, we have to use the
731 * kernel page tables. */
732 ori r4, r0, CONFIG_KERNEL_START
733 cmpu r4, r3, r4
734 bgti r4, ex5
735 ori r4, r0, swapper_pg_dir
736 mts rpid, r0 /* TLB will have 0 TID */
737 nop
738 bri ex6
739
740 /* Get the PGD for the current thread. */
741 ex5:
742 /* get current task address */
743 addi r4 ,CURRENT_TASK, TOPHYS(0);
744 lwi r4, r4, TASK_THREAD+PGDIR
745 ex6:
746 tophys(r4,r4)
747 BSRLI(r5,r3,20) /* Create L1 (pgdir/pmd) address */
748 andi r5, r5, 0xffc
749/* Assume pgdir aligned on 4K boundary, no need for "andi r4,r4,0xfffff003" */
750 or r4, r4, r5
751 lwi r4, r4, 0 /* Get L1 entry */
752 andi r5, r4, 0xfffff000 /* Extract L2 (pte) base address */
753 beqi r5, ex7 /* Bail if no table */
754
755 tophys(r5,r5)
756 BSRLI(r6,r3,10) /* Compute PTE address */
757 andi r6, r6, 0xffc
758 andi r5, r5, 0xfffff003
759 or r5, r5, r6
760 lwi r4, r5, 0 /* Get Linux PTE */
761
762 andi r6, r4, _PAGE_PRESENT
763 beqi r6, ex7
764
765 ori r4, r4, _PAGE_ACCESSED
766 swi r4, r5, 0
767
768 /* Most of the Linux PTE is ready to load into the TLB LO.
769 * We set ZSEL, where only the LS-bit determines user access.
770 * We set execute, because we don't have the granularity to
771 * properly set this at the page level (Linux problem).
772 * If shared is set, we cause a zero PID->TID load.
773 * Many of these bits are software only. Bits we don't set
774 * here we (properly should) assume have the appropriate value.
775 */
776 andni r4, r4, 0x0ce2 /* Make sure 20, 21 are zero */
777
778 bri finish_tlb_load
779 ex7:
780 /* The bailout. Restore registers to pre-exception conditions
781 * and call the heavyweights to help us out.
782 */
783 mts rpid, r11
784 nop
785 bri 4
786 RESTORE_STATE;
787 bri page_fault_data_trap
788
789 /* 0x13 - Instruction TLB Miss Exception
790 * Nearly the same as above, except we get our information from
791 * different registers and bailout to a different point.
792 */
793 handle_instruction_tlb_miss_exception:
794 /* Working registers already saved: R3, R4, R5, R6
795 * R3 = ESR
796 */
797 mfs r11, rpid
798 nop
799 bri 4
800 mfs r3, rear /* Get faulting address */
801 nop
802
803 /* If we are faulting a kernel address, we have to use the
804 * kernel page tables.
805 */
806 ori r4, r0, CONFIG_KERNEL_START
807 cmpu r4, r3, r4
808 bgti r4, ex8
809 ori r4, r0, swapper_pg_dir
810 mts rpid, r0 /* TLB will have 0 TID */
811 nop
812 bri ex9
813
814 /* Get the PGD for the current thread. */
815 ex8:
816 /* get current task address */
817 addi r4 ,CURRENT_TASK, TOPHYS(0);
818 lwi r4, r4, TASK_THREAD+PGDIR
819 ex9:
820 tophys(r4,r4)
821 BSRLI(r5,r3,20) /* Create L1 (pgdir/pmd) address */
822 andi r5, r5, 0xffc
823/* Assume pgdir aligned on 4K boundary, no need for "andi r4,r4,0xfffff003" */
824 or r4, r4, r5
825 lwi r4, r4, 0 /* Get L1 entry */
826 andi r5, r4, 0xfffff000 /* Extract L2 (pte) base address */
827 beqi r5, ex10 /* Bail if no table */
828
829 tophys(r5,r5)
830 BSRLI(r6,r3,10) /* Compute PTE address */
831 andi r6, r6, 0xffc
832 andi r5, r5, 0xfffff003
833 or r5, r5, r6
834 lwi r4, r5, 0 /* Get Linux PTE */
835
836 andi r6, r4, _PAGE_PRESENT
837 beqi r6, ex7
838
839 ori r4, r4, _PAGE_ACCESSED
840 swi r4, r5, 0
841
842 /* Most of the Linux PTE is ready to load into the TLB LO.
843 * We set ZSEL, where only the LS-bit determines user access.
844 * We set execute, because we don't have the granularity to
845 * properly set this at the page level (Linux problem).
846 * If shared is set, we cause a zero PID->TID load.
847 * Many of these bits are software only. Bits we don't set
848 * here we (properly should) assume have the appropriate value.
849 */
850 andni r4, r4, 0x0ce2 /* Make sure 20, 21 are zero */
851
852 bri finish_tlb_load
853 ex10:
854 /* The bailout. Restore registers to pre-exception conditions
855 * and call the heavyweights to help us out.
856 */
857 mts rpid, r11
858 nop
859 bri 4
860 RESTORE_STATE;
861 bri page_fault_instr_trap
862
863/* Both the instruction and data TLB miss get to this point to load the TLB.
864 * r3 - EA of fault
865 * r4 - TLB LO (info from Linux PTE)
866 * r5, r6 - available to use
867 * PID - loaded with proper value when we get here
868 * Upon exit, we reload everything and RFI.
869 * A common place to load the TLB.
870 */
871 tlb_index:
872 .long 1 /* MS: storing last used tlb index */
873 finish_tlb_load:
874 /* MS: load the last used TLB index. */
875 lwi r5, r0, TOPHYS(tlb_index)
876 addik r5, r5, 1 /* MS: inc tlb_index -> use next one */
877
878/* MS: FIXME this is potential fault, because this is mask not count */
879 andi r5, r5, (MICROBLAZE_TLB_SIZE-1)
880 ori r6, r0, 1
881 cmp r31, r5, r6
882 blti r31, sem
883 addik r5, r6, 1
884 sem:
885 /* MS: save back current TLB index */
886 swi r5, r0, TOPHYS(tlb_index)
887
888 ori r4, r4, _PAGE_HWEXEC /* make it executable */
889 mts rtlbx, r5 /* MS: save current TLB */
890 nop
891 mts rtlblo, r4 /* MS: save to TLB LO */
892 nop
893
894 /* Create EPN. This is the faulting address plus a static
895 * set of bits. These are size, valid, E, U0, and ensure
896 * bits 20 and 21 are zero.
897 */
898 andi r3, r3, 0xfffff000
899 ori r3, r3, 0x0c0
900 mts rtlbhi, r3 /* Load TLB HI */
901 nop
902
903 /* Done...restore registers and get out of here. */
904 ex12:
905 mts rpid, r11
906 nop
907 bri 4
908 RESTORE_STATE;
909 rted r17, 0
910 nop
911
912 /* extern void giveup_fpu(struct task_struct *prev)
913 *
914 * The MicroBlaze processor may have an FPU, so this should not just
915 * return: TBD.
916 */
917 .globl giveup_fpu;
918 .align 4;
919 giveup_fpu:
920 bralid r15,0 /* TBD */
921 nop
922
923 /* At present, this routine just hangs. - extern void abort(void) */
924 .globl abort;
925 .align 4;
926 abort:
927 br r0
928
929 .globl set_context;
930 .align 4;
931 set_context:
932 mts rpid, r5 /* Shadow TLBs are automatically */
933 nop
934 bri 4 /* flushed by changing PID */
935 rtsd r15,8
936 nop
937
938#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100939.end _hw_exception_handler
940
Michal Simek7db29dd2009-05-26 16:30:22 +0200941#ifdef CONFIG_MMU
942/* Unaligned data access exception last on a 4k page for MMU.
943 * When this is called, we are in virtual mode with exceptions enabled
944 * and registers 1-13,15,17,18 saved.
945 *
946 * R3 = ESR
947 * R4 = EAR
948 * R7 = pointer to saved registers (struct pt_regs *regs)
949 *
950 * This handler perform the access, and returns via ret_from_exc.
951 */
952.global _unaligned_data_exception
953.ent _unaligned_data_exception
954_unaligned_data_exception:
955 andi r8, r3, 0x3E0; /* Mask and extract the register operand */
956 BSRLI(r8,r8,2); /* r8 >> 2 = register operand * 8 */
957 andi r6, r3, 0x400; /* Extract ESR[S] */
958 bneid r6, ex_sw_vm;
959 andi r6, r3, 0x800; /* Extract ESR[W] - delay slot */
960ex_lw_vm:
961 beqid r6, ex_lhw_vm;
962 lbui r5, r4, 0; /* Exception address in r4 - delay slot */
963/* Load a word, byte-by-byte from destination address and save it in tmp space*/
964 la r6, r0, ex_tmp_data_loc_0;
965 sbi r5, r6, 0;
966 lbui r5, r4, 1;
967 sbi r5, r6, 1;
968 lbui r5, r4, 2;
969 sbi r5, r6, 2;
970 lbui r5, r4, 3;
971 sbi r5, r6, 3;
972 brid ex_lw_tail_vm;
973/* Get the destination register value into r3 - delay slot */
974 lwi r3, r6, 0;
975ex_lhw_vm:
976 /* Load a half-word, byte-by-byte from destination address and
977 * save it in tmp space */
978 la r6, r0, ex_tmp_data_loc_0;
979 sbi r5, r6, 0;
980 lbui r5, r4, 1;
981 sbi r5, r6, 1;
982 lhui r3, r6, 0; /* Get the destination register value into r3 */
983ex_lw_tail_vm:
984 /* Form load_word jump table offset (lw_table_vm + (8 * regnum)) */
985 addik r5, r8, lw_table_vm;
986 bra r5;
987ex_lw_end_vm: /* Exception handling of load word, ends */
988 brai ret_from_exc;
989ex_sw_vm:
990/* Form store_word jump table offset (sw_table_vm + (8 * regnum)) */
991 addik r5, r8, sw_table_vm;
992 bra r5;
993ex_sw_tail_vm:
994 la r5, r0, ex_tmp_data_loc_0;
995 beqid r6, ex_shw_vm;
996 swi r3, r5, 0; /* Get the word - delay slot */
997 /* Store the word, byte-by-byte into destination address */
998 lbui r3, r5, 0;
999 sbi r3, r4, 0;
1000 lbui r3, r5, 1;
1001 sbi r3, r4, 1;
1002 lbui r3, r5, 2;
1003 sbi r3, r4, 2;
1004 lbui r3, r5, 3;
1005 brid ret_from_exc;
1006 sbi r3, r4, 3; /* Delay slot */
1007ex_shw_vm:
1008 /* Store the lower half-word, byte-by-byte into destination address */
1009 lbui r3, r5, 2;
1010 sbi r3, r4, 0;
1011 lbui r3, r5, 3;
1012 brid ret_from_exc;
1013 sbi r3, r4, 1; /* Delay slot */
1014ex_sw_end_vm: /* Exception handling of store word, ends. */
1015.end _unaligned_data_exception
1016#endif /* CONFIG_MMU */
1017
Michal Simekc4df4bc2009-03-27 14:25:13 +01001018ex_handler_unhandled:
1019/* FIXME add handle function for unhandled exception - dump register */
1020 bri 0
1021
Michal Simek7db29dd2009-05-26 16:30:22 +02001022/*
1023 * hw_exception_handler Jump Table
1024 * - Contains code snippets for each register that caused the unalign exception
1025 * - Hence exception handler is NOT self-modifying
1026 * - Separate table for load exceptions and store exceptions.
1027 * - Each table is of size: (8 * 32) = 256 bytes
1028 */
1029
Michal Simekc4df4bc2009-03-27 14:25:13 +01001030.section .text
1031.align 4
1032lw_table:
1033lw_r0: R3_TO_LWREG (0);
1034lw_r1: LWREG_NOP;
1035lw_r2: R3_TO_LWREG (2);
1036lw_r3: R3_TO_LWREG_V (3);
1037lw_r4: R3_TO_LWREG_V (4);
1038lw_r5: R3_TO_LWREG_V (5);
1039lw_r6: R3_TO_LWREG_V (6);
1040lw_r7: R3_TO_LWREG (7);
1041lw_r8: R3_TO_LWREG (8);
1042lw_r9: R3_TO_LWREG (9);
1043lw_r10: R3_TO_LWREG (10);
1044lw_r11: R3_TO_LWREG (11);
1045lw_r12: R3_TO_LWREG (12);
1046lw_r13: R3_TO_LWREG (13);
1047lw_r14: R3_TO_LWREG (14);
1048lw_r15: R3_TO_LWREG (15);
1049lw_r16: R3_TO_LWREG (16);
1050lw_r17: LWREG_NOP;
1051lw_r18: R3_TO_LWREG (18);
1052lw_r19: R3_TO_LWREG (19);
1053lw_r20: R3_TO_LWREG (20);
1054lw_r21: R3_TO_LWREG (21);
1055lw_r22: R3_TO_LWREG (22);
1056lw_r23: R3_TO_LWREG (23);
1057lw_r24: R3_TO_LWREG (24);
1058lw_r25: R3_TO_LWREG (25);
1059lw_r26: R3_TO_LWREG (26);
1060lw_r27: R3_TO_LWREG (27);
1061lw_r28: R3_TO_LWREG (28);
1062lw_r29: R3_TO_LWREG (29);
1063lw_r30: R3_TO_LWREG (30);
Michal Simek7db29dd2009-05-26 16:30:22 +02001064#ifdef CONFIG_MMU
1065lw_r31: R3_TO_LWREG_V (31);
1066#else
Michal Simekc4df4bc2009-03-27 14:25:13 +01001067lw_r31: R3_TO_LWREG (31);
Michal Simek7db29dd2009-05-26 16:30:22 +02001068#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +01001069
1070sw_table:
1071sw_r0: SWREG_TO_R3 (0);
1072sw_r1: SWREG_NOP;
1073sw_r2: SWREG_TO_R3 (2);
1074sw_r3: SWREG_TO_R3_V (3);
1075sw_r4: SWREG_TO_R3_V (4);
1076sw_r5: SWREG_TO_R3_V (5);
1077sw_r6: SWREG_TO_R3_V (6);
1078sw_r7: SWREG_TO_R3 (7);
1079sw_r8: SWREG_TO_R3 (8);
1080sw_r9: SWREG_TO_R3 (9);
1081sw_r10: SWREG_TO_R3 (10);
1082sw_r11: SWREG_TO_R3 (11);
1083sw_r12: SWREG_TO_R3 (12);
1084sw_r13: SWREG_TO_R3 (13);
1085sw_r14: SWREG_TO_R3 (14);
1086sw_r15: SWREG_TO_R3 (15);
1087sw_r16: SWREG_TO_R3 (16);
1088sw_r17: SWREG_NOP;
1089sw_r18: SWREG_TO_R3 (18);
1090sw_r19: SWREG_TO_R3 (19);
1091sw_r20: SWREG_TO_R3 (20);
1092sw_r21: SWREG_TO_R3 (21);
1093sw_r22: SWREG_TO_R3 (22);
1094sw_r23: SWREG_TO_R3 (23);
1095sw_r24: SWREG_TO_R3 (24);
1096sw_r25: SWREG_TO_R3 (25);
1097sw_r26: SWREG_TO_R3 (26);
1098sw_r27: SWREG_TO_R3 (27);
1099sw_r28: SWREG_TO_R3 (28);
1100sw_r29: SWREG_TO_R3 (29);
1101sw_r30: SWREG_TO_R3 (30);
Michal Simek7db29dd2009-05-26 16:30:22 +02001102#ifdef CONFIG_MMU
1103sw_r31: SWREG_TO_R3_V (31);
1104#else
Michal Simekc4df4bc2009-03-27 14:25:13 +01001105sw_r31: SWREG_TO_R3 (31);
Michal Simek7db29dd2009-05-26 16:30:22 +02001106#endif
1107
1108#ifdef CONFIG_MMU
1109lw_table_vm:
1110lw_r0_vm: R3_TO_LWREG_VM (0);
1111lw_r1_vm: R3_TO_LWREG_VM_V (1);
1112lw_r2_vm: R3_TO_LWREG_VM_V (2);
1113lw_r3_vm: R3_TO_LWREG_VM_V (3);
1114lw_r4_vm: R3_TO_LWREG_VM_V (4);
1115lw_r5_vm: R3_TO_LWREG_VM_V (5);
1116lw_r6_vm: R3_TO_LWREG_VM_V (6);
1117lw_r7_vm: R3_TO_LWREG_VM_V (7);
1118lw_r8_vm: R3_TO_LWREG_VM_V (8);
1119lw_r9_vm: R3_TO_LWREG_VM_V (9);
1120lw_r10_vm: R3_TO_LWREG_VM_V (10);
1121lw_r11_vm: R3_TO_LWREG_VM_V (11);
1122lw_r12_vm: R3_TO_LWREG_VM_V (12);
1123lw_r13_vm: R3_TO_LWREG_VM_V (13);
1124lw_r14_vm: R3_TO_LWREG_VM (14);
1125lw_r15_vm: R3_TO_LWREG_VM_V (15);
1126lw_r16_vm: R3_TO_LWREG_VM (16);
1127lw_r17_vm: R3_TO_LWREG_VM_V (17);
1128lw_r18_vm: R3_TO_LWREG_VM_V (18);
1129lw_r19_vm: R3_TO_LWREG_VM (19);
1130lw_r20_vm: R3_TO_LWREG_VM (20);
1131lw_r21_vm: R3_TO_LWREG_VM (21);
1132lw_r22_vm: R3_TO_LWREG_VM (22);
1133lw_r23_vm: R3_TO_LWREG_VM (23);
1134lw_r24_vm: R3_TO_LWREG_VM (24);
1135lw_r25_vm: R3_TO_LWREG_VM (25);
1136lw_r26_vm: R3_TO_LWREG_VM (26);
1137lw_r27_vm: R3_TO_LWREG_VM (27);
1138lw_r28_vm: R3_TO_LWREG_VM (28);
1139lw_r29_vm: R3_TO_LWREG_VM (29);
1140lw_r30_vm: R3_TO_LWREG_VM (30);
1141lw_r31_vm: R3_TO_LWREG_VM_V (31);
1142
1143sw_table_vm:
1144sw_r0_vm: SWREG_TO_R3_VM (0);
1145sw_r1_vm: SWREG_TO_R3_VM_V (1);
1146sw_r2_vm: SWREG_TO_R3_VM_V (2);
1147sw_r3_vm: SWREG_TO_R3_VM_V (3);
1148sw_r4_vm: SWREG_TO_R3_VM_V (4);
1149sw_r5_vm: SWREG_TO_R3_VM_V (5);
1150sw_r6_vm: SWREG_TO_R3_VM_V (6);
1151sw_r7_vm: SWREG_TO_R3_VM_V (7);
1152sw_r8_vm: SWREG_TO_R3_VM_V (8);
1153sw_r9_vm: SWREG_TO_R3_VM_V (9);
1154sw_r10_vm: SWREG_TO_R3_VM_V (10);
1155sw_r11_vm: SWREG_TO_R3_VM_V (11);
1156sw_r12_vm: SWREG_TO_R3_VM_V (12);
1157sw_r13_vm: SWREG_TO_R3_VM_V (13);
1158sw_r14_vm: SWREG_TO_R3_VM (14);
1159sw_r15_vm: SWREG_TO_R3_VM_V (15);
1160sw_r16_vm: SWREG_TO_R3_VM (16);
1161sw_r17_vm: SWREG_TO_R3_VM_V (17);
1162sw_r18_vm: SWREG_TO_R3_VM_V (18);
1163sw_r19_vm: SWREG_TO_R3_VM (19);
1164sw_r20_vm: SWREG_TO_R3_VM (20);
1165sw_r21_vm: SWREG_TO_R3_VM (21);
1166sw_r22_vm: SWREG_TO_R3_VM (22);
1167sw_r23_vm: SWREG_TO_R3_VM (23);
1168sw_r24_vm: SWREG_TO_R3_VM (24);
1169sw_r25_vm: SWREG_TO_R3_VM (25);
1170sw_r26_vm: SWREG_TO_R3_VM (26);
1171sw_r27_vm: SWREG_TO_R3_VM (27);
1172sw_r28_vm: SWREG_TO_R3_VM (28);
1173sw_r29_vm: SWREG_TO_R3_VM (29);
1174sw_r30_vm: SWREG_TO_R3_VM (30);
1175sw_r31_vm: SWREG_TO_R3_VM_V (31);
1176#endif /* CONFIG_MMU */
Michal Simekc4df4bc2009-03-27 14:25:13 +01001177
1178/* Temporary data structures used in the handler */
1179.section .data
1180.align 4
1181ex_tmp_data_loc_0:
1182 .byte 0
1183ex_tmp_data_loc_1:
1184 .byte 0
1185ex_tmp_data_loc_2:
1186 .byte 0
1187ex_tmp_data_loc_3:
1188 .byte 0
1189ex_reg_op:
1190 .byte 0