2 * Exception handling for Microblaze
4 * Rewriten interrupt handling
6 * Copyright (C) 2008-2009 Michal Simek <monstr@monstr.eu>
7 * Copyright (C) 2008-2009 PetaLogix
9 * uClinux customisation (C) 2005 John Williams
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>
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
32 * Copyright (C) 2004 Xilinx, Inc.
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.
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
48 * Microblaze HW Exception Handler
49 * - Non self-modifying exception handler for the following exception conditions
51 * - Instruction bus error
53 * - Illegal instruction opcode
56 * - 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)
62 * Note we disable interrupts during exception handling, otherwise we will
63 * possibly get multiple re-entrancy if interrupt handles themselves cause
67 #include <asm/exceptions.h>
68 #include <asm/unistd.h>
71 #include <asm/entry.h>
72 #include <asm/current.h>
73 #include <linux/linkage.h>
76 #include <asm/pgtable.h>
77 #include <asm/signal.h>
78 #include <asm/registers.h>
79 #include <asm/asm-offsets.h>
84 #define NUM_TO_REG(num) r ## num
87 #define RESTORE_STATE \
95 lwi r11, r1, PT_R11; \
96 lwi r31, r1, PT_R31; \
98 #endif /* CONFIG_MMU */
101 bri ex_handler_unhandled; \
105 bri ex_handler_unhandled; \
108 /* FIXME this is weird - for noMMU kernel is not possible to use brid
109 * instruction which can shorten executed time
112 /* r3 is the source */
113 #define R3_TO_LWREG_V(regnum) \
114 swi r3, r1, 4 * regnum; \
117 /* r3 is the source */
118 #define R3_TO_LWREG(regnum) \
119 or NUM_TO_REG (regnum), r0, r3; \
122 /* r3 is the target */
123 #define SWREG_TO_R3_V(regnum) \
124 lwi r3, r1, 4 * regnum; \
127 /* r3 is the target */
128 #define SWREG_TO_R3(regnum) \
129 or r3, r0, NUM_TO_REG (regnum); \
133 #define R3_TO_LWREG_VM_V(regnum) \
135 swi r3, r7, 4 * regnum;
137 #define R3_TO_LWREG_VM(regnum) \
139 or NUM_TO_REG (regnum), r0, r3;
141 #define SWREG_TO_R3_VM_V(regnum) \
142 brid ex_sw_tail_vm; \
143 lwi r3, r7, 4 * regnum;
145 #define SWREG_TO_R3_VM(regnum) \
146 brid ex_sw_tail_vm; \
147 or r3, r0, NUM_TO_REG (regnum);
149 /* Shift right instruction depending on available configuration */
150 #if CONFIG_XILINX_MICROBLAZE0_USE_BARREL > 0
151 #define BSRLI(rD, rA, imm) \
154 #define BSRLI(rD, rA, imm) BSRLI ## imm (rD, rA)
155 /* Only the used shift constants defined here - add more if needed */
156 #define BSRLI2(rD, rA) \
157 srl rD, rA; /* << 1 */ \
158 srl rD, rD; /* << 2 */
159 #define BSRLI10(rD, rA) \
160 srl rD, rA; /* << 1 */ \
161 srl rD, rD; /* << 2 */ \
162 srl rD, rD; /* << 3 */ \
163 srl rD, rD; /* << 4 */ \
164 srl rD, rD; /* << 5 */ \
165 srl rD, rD; /* << 6 */ \
166 srl rD, rD; /* << 7 */ \
167 srl rD, rD; /* << 8 */ \
168 srl rD, rD; /* << 9 */ \
169 srl rD, rD /* << 10 */
170 #define BSRLI20(rD, rA) \
174 #endif /* CONFIG_MMU */
176 .extern other_exception_handler /* Defined in exception.c */
179 * hw_exception_handler - Handler for exceptions
181 * Exception handler notes:
182 * - Handles all exceptions
183 * - Does not handle unaligned exceptions during load into r17, r1, r0.
184 * - Does not handle unaligned exceptions during store from r17 (cannot be
185 * done) and r1 (slows down common case)
187 * Relevant register structures
189 * EAR - |----|----|----|----|----|----|----|----|
190 * - < ## 32 bit faulting address ## >
192 * ESR - |----|----|----|----|----| - | - |-----|-----|
196 * STACK FRAME STRUCTURE (for NO_MMU)
197 * ---------------------------------
199 * +-------------+ + 0
201 * +-------------+ + 4
208 * +-------------+ + 76
212 * MMU kernel uses the same 'pt_pool_space' pointed space
213 * which is used for storing register values - noMMu style was, that values were
214 * stored in stack but in case of failure you lost information about register.
215 * Currently you can see register value in memory in specific place.
216 * In compare to with previous solution the speed should be the same.
218 * MMU exception handler has different handling compare to no MMU kernel.
219 * Exception handler use jump table for directing of what happen. For MMU kernel
220 * is this approach better because MMU relate exception are handled by asm code
221 * in this file. In compare to with MMU expect of unaligned exception
222 * is everything handled by C code.
226 * every of these handlers is entered having R3/4/5/6/11/current saved on stack
227 * and clobbered so care should be taken to restore them if someone is going to
228 * return from exception
231 /* wrappers to restore state before coming to entry.S */
239 /* Create space for exception counting. */
241 .global exception_debug_table
243 exception_debug_table:
244 /* Look at exception vector table. There is 32 exceptions * word size */
250 _MB_HW_ExceptionVectorTable:
252 .long TOPHYS(ex_handler_unhandled)
253 /* 1 - Unaligned data access exception */
254 .long TOPHYS(handle_unaligned_ex)
255 /* 2 - Illegal op-code exception */
256 .long TOPHYS(full_exception_trapw)
257 /* 3 - Instruction bus error exception */
258 .long TOPHYS(full_exception_trapw)
259 /* 4 - Data bus error exception */
260 .long TOPHYS(full_exception_trapw)
261 /* 5 - Divide by zero exception */
262 .long TOPHYS(full_exception_trapw)
263 /* 6 - Floating point unit exception */
264 .long TOPHYS(full_exception_trapw)
265 /* 7 - Privileged instruction exception */
266 .long TOPHYS(full_exception_trapw)
267 /* 8 - 15 - Undefined */
268 .long TOPHYS(ex_handler_unhandled)
269 .long TOPHYS(ex_handler_unhandled)
270 .long TOPHYS(ex_handler_unhandled)
271 .long TOPHYS(ex_handler_unhandled)
272 .long TOPHYS(ex_handler_unhandled)
273 .long TOPHYS(ex_handler_unhandled)
274 .long TOPHYS(ex_handler_unhandled)
275 .long TOPHYS(ex_handler_unhandled)
276 /* 16 - Data storage exception */
277 .long TOPHYS(handle_data_storage_exception)
278 /* 17 - Instruction storage exception */
279 .long TOPHYS(handle_instruction_storage_exception)
280 /* 18 - Data TLB miss exception */
281 .long TOPHYS(handle_data_tlb_miss_exception)
282 /* 19 - Instruction TLB miss exception */
283 .long TOPHYS(handle_instruction_tlb_miss_exception)
284 /* 20 - 31 - Undefined */
285 .long TOPHYS(ex_handler_unhandled)
286 .long TOPHYS(ex_handler_unhandled)
287 .long TOPHYS(ex_handler_unhandled)
288 .long TOPHYS(ex_handler_unhandled)
289 .long TOPHYS(ex_handler_unhandled)
290 .long TOPHYS(ex_handler_unhandled)
291 .long TOPHYS(ex_handler_unhandled)
292 .long TOPHYS(ex_handler_unhandled)
293 .long TOPHYS(ex_handler_unhandled)
294 .long TOPHYS(ex_handler_unhandled)
295 .long TOPHYS(ex_handler_unhandled)
296 .long TOPHYS(ex_handler_unhandled)
299 .global _hw_exception_handler
302 .ent _hw_exception_handler
303 _hw_exception_handler:
305 addik r1, r1, -(EX_HANDLER_STACK_SIZ); /* Create stack frame */
307 swi r1, r0, TOPHYS(pt_pool_space + PT_R1); /* GET_SP */
308 /* Save date to kernel memory. Here is the problem
309 * when you came from user space */
310 ori r1, r0, TOPHYS(pt_pool_space);
320 lwi r31, r0, TOPHYS(PER_CPU(CURRENT_SAVE)) /* get saved current */
332 andi r5, r4, 0x1000; /* Check ESR[DS] */
333 beqi r5, not_in_delay_slot; /* Branch if ESR[DS] not set */
334 mfs r17, rbtr; /* ESR[DS] set - return address in BTR */
340 andi r5, r4, 0x1F; /* Extract ESR[EXC] */
343 /* Calculate exception vector offset = r5 << 2 */
344 addk r6, r5, r5; /* << 1 */
345 addk r6, r6, r6; /* << 2 */
348 /* counting which exception happen */
349 lwi r5, r0, TOPHYS(exception_debug_table)
351 swi r5, r0, TOPHYS(exception_debug_table)
352 lwi r5, r6, TOPHYS(exception_debug_table)
354 swi r5, r6, TOPHYS(exception_debug_table)
357 /* Load the HW Exception vector */
358 lwi r6, r6, TOPHYS(_MB_HW_ExceptionVectorTable)
361 full_exception_trapw:
363 bri full_exception_trap
365 /* Exceptions enabled here. This will allow nested exceptions */
368 swi r6, r1, 0; /* RMSR_OFFSET */
369 ori r6, r6, 0x100; /* Turn ON the EE bit */
370 andi r6, r6, ~2; /* Disable interrupts */
374 xori r6, r5, 1; /* 00001 = Unaligned Exception */
375 /* Jump to unalignment exception handler */
376 beqi r6, handle_unaligned_ex;
378 handle_other_ex: /* Handle Other exceptions here */
379 /* Save other volatiles before we make procedure calls below */
391 andi r6, r4, 0x1F; /* Load ESR[EC] */
392 lwi r7, r0, PER_CPU(KM) /* MS: saving current kernel mode to regs */
396 addk r8, r17, r0; /* Load exception address */
397 bralid r15, full_exception; /* Branch to the handler */
399 mts rfsr, r0; /* Clear sticky fsr */
403 * Trigger execution of the signal handler by enabling
404 * interrupts and calling an invalid syscall.
409 mts rmsr, r5; /* enable interrupt */
411 addi r12, r0, __NR_syscalls;
413 mfs r5, rmsr; /* disable interrupt */
429 bri ex_handler_done; /* Complete exception handling */
432 /* 0x01 - Unaligned data access exception
433 * This occurs when a word access is not aligned on a word boundary,
434 * or when a 16-bit access is not aligned on a 16-bit boundary.
435 * This handler perform the access, and returns, except for MMU when
436 * the unaligned address is last on a 4k page or the physical address is
437 * not found in the page table, in which case unaligned_data_trap is called.
440 /* Working registers already saved: R3, R4, R5, R6
445 andi r6, r4, 0x1000 /* Check ESR[DS] */
446 beqi r6, _no_delayslot /* Branch if ESR[DS] not set */
447 mfs r17, rbtr; /* ESR[DS] set - return address in BTR */
450 /* jump to high level unaligned handler */
452 bri unaligned_data_trap
454 andi r6, r4, 0x3E0; /* Mask and extract the register operand */
455 srl r6, r6; /* r6 >> 5 */
460 /* Store the register operand in a temporary location */
461 sbi r6, r0, TOPHYS(ex_reg_op);
463 andi r6, r4, 0x400; /* Extract ESR[S] */
466 andi r6, r4, 0x800; /* Extract ESR[W] */
468 lbui r5, r3, 0; /* Exception address in r3 */
469 /* Load a word, byte-by-byte from destination address
470 and save it in tmp space */
471 sbi r5, r0, TOPHYS(ex_tmp_data_loc_0);
473 sbi r5, r0, TOPHYS(ex_tmp_data_loc_1);
475 sbi r5, r0, TOPHYS(ex_tmp_data_loc_2);
477 sbi r5, r0, TOPHYS(ex_tmp_data_loc_3);
478 /* Get the destination register value into r4 */
479 lwi r4, r0, TOPHYS(ex_tmp_data_loc_0);
482 lbui r5, r3, 0; /* Exception address in r3 */
483 /* Load a half-word, byte-by-byte from destination
484 address and save it in tmp space */
485 sbi r5, r0, TOPHYS(ex_tmp_data_loc_0);
487 sbi r5, r0, TOPHYS(ex_tmp_data_loc_1);
488 /* Get the destination register value into r4 */
489 lhui r4, r0, TOPHYS(ex_tmp_data_loc_0);
491 /* Get the destination register number into r5 */
492 lbui r5, r0, TOPHYS(ex_reg_op);
493 /* Form load_word jump table offset (lw_table + (8 * regnum)) */
494 addik r6, r0, TOPHYS(lw_table);
500 ex_lw_end: /* Exception handling of load word, ends */
502 /* Get the destination register number into r5 */
503 lbui r5, r0, TOPHYS(ex_reg_op);
504 /* Form store_word jump table offset (sw_table + (8 * regnum)) */
505 addik r6, r0, TOPHYS(sw_table);
514 andi r6, r6, 0x800; /* Extract ESR[W] */
516 /* Get the word - delay slot */
517 swi r4, r0, TOPHYS(ex_tmp_data_loc_0);
518 /* Store the word, byte-by-byte into destination address */
519 lbui r4, r0, TOPHYS(ex_tmp_data_loc_0);
521 lbui r4, r0, TOPHYS(ex_tmp_data_loc_1);
523 lbui r4, r0, TOPHYS(ex_tmp_data_loc_2);
525 lbui r4, r0, TOPHYS(ex_tmp_data_loc_3);
530 /* Store the lower half-word, byte-by-byte into destination address */
531 swi r4, r0, TOPHYS(ex_tmp_data_loc_0);
532 lbui r4, r0, TOPHYS(ex_tmp_data_loc_2);
534 lbui r4, r0, TOPHYS(ex_tmp_data_loc_3);
536 ex_sw_end: /* Exception handling of store word, ends. */
540 lwi r5, r1, 0 /* RMSR */
550 addik r1, r1, (EX_HANDLER_STACK_SIZ); /* Restore stack frame */
558 /* Exception vector entry code. This code runs with address translation
559 * turned off (i.e. using physical addresses). */
561 /* Exception vectors. */
563 /* 0x10 - Data Storage Exception
564 * This happens for just a few reasons. U0 set (but we don't do that),
565 * or zone protection fault (user violation, write to protected page).
566 * If this is just an update of modified status, we do that quickly
567 * and exit. Otherwise, we call heavyweight functions to do the work.
569 handle_data_storage_exception:
570 /* Working registers already saved: R3, R4, R5, R6
575 /* If we are faulting a kernel address, we have to use the
576 * kernel page tables.
578 ori r5, r0, CONFIG_KERNEL_START
581 /* First, check if it was a zone fault (which means a user
582 * tried to access a kernel or read-protected page - always
583 * a SEGV). All other faults here must be stores, so no
584 * need to check ESR_S as well. */
585 andi r4, r4, ESR_DIZ /* ESR_Z - zone protection */
588 ori r4, r0, swapper_pg_dir
589 mts rpid, r0 /* TLB will have 0 TID */
593 /* Get the PGD for the current thread. */
595 /* First, check if it was a zone fault (which means a user
596 * tried to access a kernel or read-protected page - always
597 * a SEGV). All other faults here must be stores, so no
598 * need to check ESR_S as well. */
599 andi r4, r4, ESR_DIZ /* ESR_Z */
601 /* get current task address */
602 addi r4 ,CURRENT_TASK, TOPHYS(0);
603 lwi r4, r4, TASK_THREAD+PGDIR
606 /* Create L1 (pgdir/pmd) address */
607 BSRLI(r5,r3, PGDIR_SHIFT - 2)
608 andi r5, r5, PAGE_SIZE - 4
609 /* Assume pgdir aligned on 4K boundary, no need for "andi r4,r4,0xfffff003" */
611 lwi r4, r4, 0 /* Get L1 entry */
612 andi r5, r4, PAGE_MASK /* Extract L2 (pte) base address */
613 beqi r5, ex2 /* Bail if no table */
616 BSRLI(r6,r3,PTE_SHIFT) /* Compute PTE address */
617 andi r6, r6, PAGE_SIZE - 4
619 lwi r4, r5, 0 /* Get Linux PTE */
621 andi r6, r4, _PAGE_RW /* Is it writeable? */
622 beqi r6, ex2 /* Bail if not */
624 /* Update 'changed' */
625 ori r4, r4, _PAGE_DIRTY|_PAGE_ACCESSED|_PAGE_HWWRITE
626 swi r4, r5, 0 /* Update Linux page table */
628 /* Most of the Linux PTE is ready to load into the TLB LO.
629 * We set ZSEL, where only the LS-bit determines user access.
630 * We set execute, because we don't have the granularity to
631 * properly set this at the page level (Linux problem).
632 * If shared is set, we cause a zero PID->TID load.
633 * Many of these bits are software only. Bits we don't set
634 * here we (properly should) assume have the appropriate value.
636 /* Ignore memory coherent, just LSB on ZSEL is used + EX/WR */
637 andi r4, r4, PAGE_MASK | TLB_EX | TLB_WR | \
638 TLB_ZSEL(1) | TLB_ATTR_MASK
639 ori r4, r4, _PAGE_HWEXEC /* make it executable */
641 /* find the TLB index that caused the fault. It has to be here*/
644 mfs r5, rtlbx /* DEBUG: TBD */
646 mts rtlblo, r4 /* Load TLB LO */
648 /* Will sync shadow TLBs */
650 /* Done...restore registers and get out of here. */
659 /* The bailout. Restore registers to pre-exception conditions
660 * and call the heavyweights to help us out. */
665 bri page_fault_data_trap
668 /* 0x11 - Instruction Storage Exception
669 * This is caused by a fetch from non-execute or guarded pages. */
670 handle_instruction_storage_exception:
671 /* Working registers already saved: R3, R4, R5, R6
676 bri page_fault_instr_trap
678 /* 0x12 - Data TLB Miss Exception
679 * As the name implies, translation is not in the MMU, so search the
680 * page tables and fix it. The only purpose of this function is to
681 * load TLB entries from the page table if they exist.
683 handle_data_tlb_miss_exception:
684 /* Working registers already saved: R3, R4, R5, R6
690 /* If we are faulting a kernel address, we have to use the
691 * kernel page tables. */
692 ori r6, r0, CONFIG_KERNEL_START
695 ori r4, r0, swapper_pg_dir
696 mts rpid, r0 /* TLB will have 0 TID */
700 /* Get the PGD for the current thread. */
702 /* get current task address */
703 addi r4 ,CURRENT_TASK, TOPHYS(0);
704 lwi r4, r4, TASK_THREAD+PGDIR
707 /* Create L1 (pgdir/pmd) address */
708 BSRLI(r5,r3, PGDIR_SHIFT - 2)
709 andi r5, r5, PAGE_SIZE - 4
710 /* Assume pgdir aligned on 4K boundary, no need for "andi r4,r4,0xfffff003" */
712 lwi r4, r4, 0 /* Get L1 entry */
713 andi r5, r4, PAGE_MASK /* Extract L2 (pte) base address */
714 beqi r5, ex7 /* Bail if no table */
717 BSRLI(r6,r3,PTE_SHIFT) /* Compute PTE address */
718 andi r6, r6, PAGE_SIZE - 4
720 lwi r4, r5, 0 /* Get Linux PTE */
722 andi r6, r4, _PAGE_PRESENT
725 ori r4, r4, _PAGE_ACCESSED
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.
737 andi r4, r4, PAGE_MASK | TLB_EX | TLB_WR | \
738 TLB_ZSEL(1) | TLB_ATTR_MASK
740 /* The bailout. Restore registers to pre-exception conditions
741 * and call the heavyweights to help us out.
747 bri page_fault_data_trap
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.
753 handle_instruction_tlb_miss_exception:
754 /* Working registers already saved: R3, R4, R5, R6
760 /* If we are faulting a kernel address, we have to use the
761 * kernel page tables.
763 ori r4, r0, CONFIG_KERNEL_START
766 ori r4, r0, swapper_pg_dir
767 mts rpid, r0 /* TLB will have 0 TID */
771 /* Get the PGD for the current thread. */
773 /* get current task address */
774 addi r4 ,CURRENT_TASK, TOPHYS(0);
775 lwi r4, r4, TASK_THREAD+PGDIR
778 /* Create L1 (pgdir/pmd) address */
779 BSRLI(r5,r3, PGDIR_SHIFT - 2)
780 andi r5, r5, PAGE_SIZE - 4
781 /* Assume pgdir aligned on 4K boundary, no need for "andi r4,r4,0xfffff003" */
783 lwi r4, r4, 0 /* Get L1 entry */
784 andi r5, r4, PAGE_MASK /* Extract L2 (pte) base address */
785 beqi r5, ex10 /* Bail if no table */
788 BSRLI(r6,r3,PTE_SHIFT) /* Compute PTE address */
789 andi r6, r6, PAGE_SIZE - 4
791 lwi r4, r5, 0 /* Get Linux PTE */
793 andi r6, r4, _PAGE_PRESENT
796 ori r4, r4, _PAGE_ACCESSED
799 /* Most of the Linux PTE is ready to load into the TLB LO.
800 * We set ZSEL, where only the LS-bit determines user access.
801 * We set execute, because we don't have the granularity to
802 * properly set this at the page level (Linux problem).
803 * If shared is set, we cause a zero PID->TID load.
804 * Many of these bits are software only. Bits we don't set
805 * here we (properly should) assume have the appropriate value.
808 andi r4, r4, PAGE_MASK | TLB_EX | TLB_WR | \
809 TLB_ZSEL(1) | TLB_ATTR_MASK
811 /* The bailout. Restore registers to pre-exception conditions
812 * and call the heavyweights to help us out.
818 bri page_fault_instr_trap
820 /* Both the instruction and data TLB miss get to this point to load the TLB.
822 * r4 - TLB LO (info from Linux PTE)
823 * r5, r6 - available to use
824 * PID - loaded with proper value when we get here
825 * Upon exit, we reload everything and RFI.
826 * A common place to load the TLB.
832 .long MICROBLAZE_TLB_SKIP
834 /* MS: storing last used tlb index */
835 .long MICROBLAZE_TLB_SIZE/2
838 /* MS: load the last used TLB index. */
839 lwi r5, r0, TOPHYS(tlb_index)
840 addik r5, r5, 1 /* MS: inc tlb_index -> use next one */
842 /* MS: FIXME this is potential fault, because this is mask not count */
843 andi r5, r5, MICROBLAZE_TLB_SIZE - 1
847 lwi r5, r0, TOPHYS(tlb_skip)
849 /* MS: save back current TLB index */
850 swi r5, r0, TOPHYS(tlb_index)
852 ori r4, r4, _PAGE_HWEXEC /* make it executable */
853 mts rtlbx, r5 /* MS: save current TLB */
855 mts rtlblo, r4 /* MS: save to TLB LO */
858 /* Create EPN. This is the faulting address plus a static
859 * set of bits. These are size, valid, E, U0, and ensure
860 * bits 20 and 21 are zero.
862 andi r3, r3, PAGE_MASK
863 #ifdef CONFIG_MICROBLAZE_64K_PAGES
864 ori r3, r3, TLB_VALID | TLB_PAGESZ(PAGESZ_64K)
865 #elif CONFIG_MICROBLAZE_16K_PAGES
866 ori r3, r3, TLB_VALID | TLB_PAGESZ(PAGESZ_16K)
868 ori r3, r3, TLB_VALID | TLB_PAGESZ(PAGESZ_4K)
870 mts rtlbhi, r3 /* Load TLB HI */
873 /* Done...restore registers and get out of here. */
881 /* extern void giveup_fpu(struct task_struct *prev)
883 * The MicroBlaze processor may have an FPU, so this should not just
889 bralid r15,0 /* TBD */
892 /* At present, this routine just hangs. - extern void abort(void) */
901 mts rpid, r5 /* Shadow TLBs are automatically */
903 bri 4 /* flushed by changing PID */
908 .end _hw_exception_handler
911 /* Unaligned data access exception last on a 4k page for MMU.
912 * When this is called, we are in virtual mode with exceptions enabled
913 * and registers 1-13,15,17,18 saved.
917 * R7 = pointer to saved registers (struct pt_regs *regs)
919 * This handler perform the access, and returns via ret_from_exc.
921 .global _unaligned_data_exception
922 .ent _unaligned_data_exception
923 _unaligned_data_exception:
924 andi r8, r3, 0x3E0; /* Mask and extract the register operand */
925 BSRLI(r8,r8,2); /* r8 >> 2 = register operand * 8 */
926 andi r6, r3, 0x400; /* Extract ESR[S] */
928 andi r6, r3, 0x800; /* Extract ESR[W] - delay slot */
931 load1: lbui r5, r4, 0; /* Exception address in r4 - delay slot */
932 /* Load a word, byte-by-byte from destination address and save it in tmp space*/
933 addik r6, r0, ex_tmp_data_loc_0;
935 load2: lbui r5, r4, 1;
937 load3: lbui r5, r4, 2;
939 load4: lbui r5, r4, 3;
942 /* Get the destination register value into r3 - delay slot */
945 /* Load a half-word, byte-by-byte from destination address and
946 * save it in tmp space */
947 addik r6, r0, ex_tmp_data_loc_0;
949 load5: lbui r5, r4, 1;
951 lhui r3, r6, 0; /* Get the destination register value into r3 */
953 /* Form load_word jump table offset (lw_table_vm + (8 * regnum)) */
954 addik r5, r8, lw_table_vm;
956 ex_lw_end_vm: /* Exception handling of load word, ends */
959 /* Form store_word jump table offset (sw_table_vm + (8 * regnum)) */
960 addik r5, r8, sw_table_vm;
963 addik r5, r0, ex_tmp_data_loc_0;
965 swi r3, r5, 0; /* Get the word - delay slot */
966 /* Store the word, byte-by-byte into destination address */
968 store1: sbi r3, r4, 0;
970 store2: sbi r3, r4, 1;
972 store3: sbi r3, r4, 2;
975 store4: sbi r3, r4, 3; /* Delay slot */
977 /* Store the lower half-word, byte-by-byte into destination address */
978 #ifdef __MICROBLAZEEL__
980 store5: sbi r3, r4, 0;
983 store6: sbi r3, r4, 1; /* Delay slot */
986 store5: sbi r3, r4, 0;
989 store6: sbi r3, r4, 1; /* Delay slot */
992 ex_sw_end_vm: /* Exception handling of store word, ends. */
994 /* We have to prevent cases that get/put_user macros get unaligned pointer
995 * to bad page area. We have to find out which origin instruction caused it
996 * and called fixup for that origin instruction not instruction in unaligned
999 ori r5, r7, 0 /* setup pointer to pt_regs */
1000 lwi r6, r7, PT_PC; /* faulting address is one instruction above */
1001 addik r6, r6, -4 /* for finding proper fixup */
1002 swi r6, r7, PT_PC; /* a save back it to PT_PC */
1003 addik r7, r0, SIGSEGV
1004 /* call bad_page_fault for finding aligned fixup, fixup address is saved
1005 * in PT_PC which is used as return address from exception */
1006 addik r15, r0, ret_from_exc-8 /* setup return address */
1010 /* We prevent all load/store because it could failed any attempt to access */
1011 .section __ex_table,"a";
1012 .word load1,ex_unaligned_fixup;
1013 .word load2,ex_unaligned_fixup;
1014 .word load3,ex_unaligned_fixup;
1015 .word load4,ex_unaligned_fixup;
1016 .word load5,ex_unaligned_fixup;
1017 .word store1,ex_unaligned_fixup;
1018 .word store2,ex_unaligned_fixup;
1019 .word store3,ex_unaligned_fixup;
1020 .word store4,ex_unaligned_fixup;
1021 .word store5,ex_unaligned_fixup;
1022 .word store6,ex_unaligned_fixup;
1024 .end _unaligned_data_exception
1025 #endif /* CONFIG_MMU */
1027 .global ex_handler_unhandled
1028 ex_handler_unhandled:
1029 /* FIXME add handle function for unhandled exception - dump register */
1033 * hw_exception_handler Jump Table
1034 * - Contains code snippets for each register that caused the unalign exception
1035 * - Hence exception handler is NOT self-modifying
1036 * - Separate table for load exceptions and store exceptions.
1037 * - Each table is of size: (8 * 32) = 256 bytes
1043 lw_r0: R3_TO_LWREG (0);
1045 lw_r2: R3_TO_LWREG (2);
1046 lw_r3: R3_TO_LWREG_V (3);
1047 lw_r4: R3_TO_LWREG_V (4);
1048 lw_r5: R3_TO_LWREG_V (5);
1049 lw_r6: R3_TO_LWREG_V (6);
1050 lw_r7: R3_TO_LWREG (7);
1051 lw_r8: R3_TO_LWREG (8);
1052 lw_r9: R3_TO_LWREG (9);
1053 lw_r10: R3_TO_LWREG (10);
1054 lw_r11: R3_TO_LWREG (11);
1055 lw_r12: R3_TO_LWREG (12);
1056 lw_r13: R3_TO_LWREG (13);
1057 lw_r14: R3_TO_LWREG (14);
1058 lw_r15: R3_TO_LWREG (15);
1059 lw_r16: R3_TO_LWREG (16);
1061 lw_r18: R3_TO_LWREG (18);
1062 lw_r19: R3_TO_LWREG (19);
1063 lw_r20: R3_TO_LWREG (20);
1064 lw_r21: R3_TO_LWREG (21);
1065 lw_r22: R3_TO_LWREG (22);
1066 lw_r23: R3_TO_LWREG (23);
1067 lw_r24: R3_TO_LWREG (24);
1068 lw_r25: R3_TO_LWREG (25);
1069 lw_r26: R3_TO_LWREG (26);
1070 lw_r27: R3_TO_LWREG (27);
1071 lw_r28: R3_TO_LWREG (28);
1072 lw_r29: R3_TO_LWREG (29);
1073 lw_r30: R3_TO_LWREG (30);
1075 lw_r31: R3_TO_LWREG_V (31);
1077 lw_r31: R3_TO_LWREG (31);
1081 sw_r0: SWREG_TO_R3 (0);
1083 sw_r2: SWREG_TO_R3 (2);
1084 sw_r3: SWREG_TO_R3_V (3);
1085 sw_r4: SWREG_TO_R3_V (4);
1086 sw_r5: SWREG_TO_R3_V (5);
1087 sw_r6: SWREG_TO_R3_V (6);
1088 sw_r7: SWREG_TO_R3 (7);
1089 sw_r8: SWREG_TO_R3 (8);
1090 sw_r9: SWREG_TO_R3 (9);
1091 sw_r10: SWREG_TO_R3 (10);
1092 sw_r11: SWREG_TO_R3 (11);
1093 sw_r12: SWREG_TO_R3 (12);
1094 sw_r13: SWREG_TO_R3 (13);
1095 sw_r14: SWREG_TO_R3 (14);
1096 sw_r15: SWREG_TO_R3 (15);
1097 sw_r16: SWREG_TO_R3 (16);
1099 sw_r18: SWREG_TO_R3 (18);
1100 sw_r19: SWREG_TO_R3 (19);
1101 sw_r20: SWREG_TO_R3 (20);
1102 sw_r21: SWREG_TO_R3 (21);
1103 sw_r22: SWREG_TO_R3 (22);
1104 sw_r23: SWREG_TO_R3 (23);
1105 sw_r24: SWREG_TO_R3 (24);
1106 sw_r25: SWREG_TO_R3 (25);
1107 sw_r26: SWREG_TO_R3 (26);
1108 sw_r27: SWREG_TO_R3 (27);
1109 sw_r28: SWREG_TO_R3 (28);
1110 sw_r29: SWREG_TO_R3 (29);
1111 sw_r30: SWREG_TO_R3 (30);
1113 sw_r31: SWREG_TO_R3_V (31);
1115 sw_r31: SWREG_TO_R3 (31);
1120 lw_r0_vm: R3_TO_LWREG_VM (0);
1121 lw_r1_vm: R3_TO_LWREG_VM_V (1);
1122 lw_r2_vm: R3_TO_LWREG_VM_V (2);
1123 lw_r3_vm: R3_TO_LWREG_VM_V (3);
1124 lw_r4_vm: R3_TO_LWREG_VM_V (4);
1125 lw_r5_vm: R3_TO_LWREG_VM_V (5);
1126 lw_r6_vm: R3_TO_LWREG_VM_V (6);
1127 lw_r7_vm: R3_TO_LWREG_VM_V (7);
1128 lw_r8_vm: R3_TO_LWREG_VM_V (8);
1129 lw_r9_vm: R3_TO_LWREG_VM_V (9);
1130 lw_r10_vm: R3_TO_LWREG_VM_V (10);
1131 lw_r11_vm: R3_TO_LWREG_VM_V (11);
1132 lw_r12_vm: R3_TO_LWREG_VM_V (12);
1133 lw_r13_vm: R3_TO_LWREG_VM_V (13);
1134 lw_r14_vm: R3_TO_LWREG_VM_V (14);
1135 lw_r15_vm: R3_TO_LWREG_VM_V (15);
1136 lw_r16_vm: R3_TO_LWREG_VM_V (16);
1137 lw_r17_vm: R3_TO_LWREG_VM_V (17);
1138 lw_r18_vm: R3_TO_LWREG_VM_V (18);
1139 lw_r19_vm: R3_TO_LWREG_VM_V (19);
1140 lw_r20_vm: R3_TO_LWREG_VM_V (20);
1141 lw_r21_vm: R3_TO_LWREG_VM_V (21);
1142 lw_r22_vm: R3_TO_LWREG_VM_V (22);
1143 lw_r23_vm: R3_TO_LWREG_VM_V (23);
1144 lw_r24_vm: R3_TO_LWREG_VM_V (24);
1145 lw_r25_vm: R3_TO_LWREG_VM_V (25);
1146 lw_r26_vm: R3_TO_LWREG_VM_V (26);
1147 lw_r27_vm: R3_TO_LWREG_VM_V (27);
1148 lw_r28_vm: R3_TO_LWREG_VM_V (28);
1149 lw_r29_vm: R3_TO_LWREG_VM_V (29);
1150 lw_r30_vm: R3_TO_LWREG_VM_V (30);
1151 lw_r31_vm: R3_TO_LWREG_VM_V (31);
1154 sw_r0_vm: SWREG_TO_R3_VM (0);
1155 sw_r1_vm: SWREG_TO_R3_VM_V (1);
1156 sw_r2_vm: SWREG_TO_R3_VM_V (2);
1157 sw_r3_vm: SWREG_TO_R3_VM_V (3);
1158 sw_r4_vm: SWREG_TO_R3_VM_V (4);
1159 sw_r5_vm: SWREG_TO_R3_VM_V (5);
1160 sw_r6_vm: SWREG_TO_R3_VM_V (6);
1161 sw_r7_vm: SWREG_TO_R3_VM_V (7);
1162 sw_r8_vm: SWREG_TO_R3_VM_V (8);
1163 sw_r9_vm: SWREG_TO_R3_VM_V (9);
1164 sw_r10_vm: SWREG_TO_R3_VM_V (10);
1165 sw_r11_vm: SWREG_TO_R3_VM_V (11);
1166 sw_r12_vm: SWREG_TO_R3_VM_V (12);
1167 sw_r13_vm: SWREG_TO_R3_VM_V (13);
1168 sw_r14_vm: SWREG_TO_R3_VM_V (14);
1169 sw_r15_vm: SWREG_TO_R3_VM_V (15);
1170 sw_r16_vm: SWREG_TO_R3_VM_V (16);
1171 sw_r17_vm: SWREG_TO_R3_VM_V (17);
1172 sw_r18_vm: SWREG_TO_R3_VM_V (18);
1173 sw_r19_vm: SWREG_TO_R3_VM_V (19);
1174 sw_r20_vm: SWREG_TO_R3_VM_V (20);
1175 sw_r21_vm: SWREG_TO_R3_VM_V (21);
1176 sw_r22_vm: SWREG_TO_R3_VM_V (22);
1177 sw_r23_vm: SWREG_TO_R3_VM_V (23);
1178 sw_r24_vm: SWREG_TO_R3_VM_V (24);
1179 sw_r25_vm: SWREG_TO_R3_VM_V (25);
1180 sw_r26_vm: SWREG_TO_R3_VM_V (26);
1181 sw_r27_vm: SWREG_TO_R3_VM_V (27);
1182 sw_r28_vm: SWREG_TO_R3_VM_V (28);
1183 sw_r29_vm: SWREG_TO_R3_VM_V (29);
1184 sw_r30_vm: SWREG_TO_R3_VM_V (30);
1185 sw_r31_vm: SWREG_TO_R3_VM_V (31);
1186 #endif /* CONFIG_MMU */
1188 /* Temporary data structures used in the handler */