blob: 52b9feb985150e2bfd809c2a2f9fd392f67e9175 [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 Simek91836712012-07-31 12:01:00 +020078#include <asm/registers.h>
Michal Simekc4df4bc2009-03-27 14:25:13 +010079#include <asm/asm-offsets.h>
80
Michal Simekc06b3a02011-01-31 15:07:53 +010081#undef DEBUG
82
Michal Simekc4df4bc2009-03-27 14:25:13 +010083/* Helpful Macros */
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; \
Michal Simek6e835572011-01-31 15:10:04 +010097 lwi r1, r1, PT_R1;
Michal Simek7db29dd2009-05-26 16:30:22 +020098#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
Michal Simek7db29dd2009-05-26 16:30:22 +0200153 #else
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) \
171 BSRLI10(rD, rA); \
172 BSRLI10(rD, rD)
173 #endif
174#endif /* CONFIG_MMU */
175
Michal Simekc4df4bc2009-03-27 14:25:13 +0100176.extern other_exception_handler /* Defined in exception.c */
177
178/*
179 * hw_exception_handler - Handler for exceptions
180 *
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)
186 *
187 * Relevant register structures
188 *
189 * EAR - |----|----|----|----|----|----|----|----|
190 * - < ## 32 bit faulting address ## >
191 *
192 * ESR - |----|----|----|----|----| - | - |-----|-----|
193 * - W S REG EXC
194 *
195 *
196 * STACK FRAME STRUCTURE (for NO_MMU)
197 * ---------------------------------
198 *
199 * +-------------+ + 0
200 * | MSR |
201 * +-------------+ + 4
202 * | r1 |
203 * | . |
204 * | . |
205 * | . |
206 * | . |
207 * | r18 |
208 * +-------------+ + 76
209 * | . |
210 * | . |
211 *
Michal Simek6e835572011-01-31 15:10:04 +0100212 * MMU kernel uses the same 'pt_pool_space' pointed space
213 * which is used for storing register values - noMMu style was, that values were
Michal Simekc4df4bc2009-03-27 14:25:13 +0100214 * 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.
217 *
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.
223 */
224
225/*
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
229 */
230
231/* wrappers to restore state before coming to entry.S */
Michal Simek7db29dd2009-05-26 16:30:22 +0200232#ifdef CONFIG_MMU
Michal Simek6e835572011-01-31 15:10:04 +0100233.section .data
234.align 4
235pt_pool_space:
236 .space PT_SIZE
237
Michal Simekc06b3a02011-01-31 15:07:53 +0100238#ifdef DEBUG
239/* Create space for exception counting. */
240.section .data
241.global exception_debug_table
242.align 4
243exception_debug_table:
244 /* Look at exception vector table. There is 32 exceptions * word size */
245 .space (32 * 4)
246#endif /* DEBUG */
247
Michal Simek7db29dd2009-05-26 16:30:22 +0200248.section .rodata
249.align 4
250_MB_HW_ExceptionVectorTable:
251/* 0 - Undefined */
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)
297#endif
298
Michal Simekc4df4bc2009-03-27 14:25:13 +0100299.global _hw_exception_handler
300.section .text
301.align 4
302.ent _hw_exception_handler
303_hw_exception_handler:
Michal Simek7db29dd2009-05-26 16:30:22 +0200304#ifndef CONFIG_MMU
Michal Simekc4df4bc2009-03-27 14:25:13 +0100305 addik r1, r1, -(EX_HANDLER_STACK_SIZ); /* Create stack frame */
Michal Simek7db29dd2009-05-26 16:30:22 +0200306#else
Michal Simek6e835572011-01-31 15:10:04 +0100307 swi r1, r0, TOPHYS(pt_pool_space + PT_R1); /* GET_SP */
Michal Simek7db29dd2009-05-26 16:30:22 +0200308 /* Save date to kernel memory. Here is the problem
309 * when you came from user space */
Michal Simek6e835572011-01-31 15:10:04 +0100310 ori r1, r0, TOPHYS(pt_pool_space);
Michal Simek7db29dd2009-05-26 16:30:22 +0200311#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100312 swi r3, r1, PT_R3
313 swi r4, r1, PT_R4
314 swi r5, r1, PT_R5
315 swi r6, r1, PT_R6
316
Michal Simek7db29dd2009-05-26 16:30:22 +0200317#ifdef CONFIG_MMU
318 swi r11, r1, PT_R11
319 swi r31, r1, PT_R31
320 lwi r31, r0, TOPHYS(PER_CPU(CURRENT_SAVE)) /* get saved current */
321#endif
322
Michal Simekac854ff2009-09-17 17:37:33 +0200323 mfs r5, rmsr;
324 nop
325 swi r5, r1, 0;
Michal Simekb175bcf2010-03-19 12:44:40 +0100326 mfs r4, resr
Michal Simekc4df4bc2009-03-27 14:25:13 +0100327 nop
Michal Simekb175bcf2010-03-19 12:44:40 +0100328 mfs r3, rear;
Michal Simek7db29dd2009-05-26 16:30:22 +0200329 nop
Michal Simekc4df4bc2009-03-27 14:25:13 +0100330
Michal Simek7db29dd2009-05-26 16:30:22 +0200331#ifndef CONFIG_MMU
Michal Simekb175bcf2010-03-19 12:44:40 +0100332 andi r5, r4, 0x1000; /* Check ESR[DS] */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100333 beqi r5, not_in_delay_slot; /* Branch if ESR[DS] not set */
334 mfs r17, rbtr; /* ESR[DS] set - return address in BTR */
335 nop
336not_in_delay_slot:
337 swi r17, r1, PT_R17
Michal Simek7db29dd2009-05-26 16:30:22 +0200338#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100339
Michal Simekb175bcf2010-03-19 12:44:40 +0100340 andi r5, r4, 0x1F; /* Extract ESR[EXC] */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100341
Michal Simek7db29dd2009-05-26 16:30:22 +0200342#ifdef CONFIG_MMU
343 /* Calculate exception vector offset = r5 << 2 */
344 addk r6, r5, r5; /* << 1 */
345 addk r6, r6, r6; /* << 2 */
346
Michal Simek708e7152010-03-18 07:23:04 +0100347#ifdef DEBUG
Michal Simek7db29dd2009-05-26 16:30:22 +0200348/* counting which exception happen */
Michal Simekc06b3a02011-01-31 15:07:53 +0100349 lwi r5, r0, TOPHYS(exception_debug_table)
Michal Simek7db29dd2009-05-26 16:30:22 +0200350 addi r5, r5, 1
Michal Simekc06b3a02011-01-31 15:07:53 +0100351 swi r5, r0, TOPHYS(exception_debug_table)
352 lwi r5, r6, TOPHYS(exception_debug_table)
Michal Simek7db29dd2009-05-26 16:30:22 +0200353 addi r5, r5, 1
Michal Simekc06b3a02011-01-31 15:07:53 +0100354 swi r5, r6, TOPHYS(exception_debug_table)
Michal Simek708e7152010-03-18 07:23:04 +0100355#endif
Michal Simek7db29dd2009-05-26 16:30:22 +0200356/* end */
357 /* Load the HW Exception vector */
358 lwi r6, r6, TOPHYS(_MB_HW_ExceptionVectorTable)
359 bra r6
360
361full_exception_trapw:
362 RESTORE_STATE
363 bri full_exception_trap
364#else
Michal Simekc4df4bc2009-03-27 14:25:13 +0100365 /* Exceptions enabled here. This will allow nested exceptions */
366 mfs r6, rmsr;
367 nop
368 swi r6, r1, 0; /* RMSR_OFFSET */
369 ori r6, r6, 0x100; /* Turn ON the EE bit */
370 andi r6, r6, ~2; /* Disable interrupts */
371 mts rmsr, r6;
372 nop
373
374 xori r6, r5, 1; /* 00001 = Unaligned Exception */
375 /* Jump to unalignment exception handler */
376 beqi r6, handle_unaligned_ex;
377
378handle_other_ex: /* Handle Other exceptions here */
379 /* Save other volatiles before we make procedure calls below */
380 swi r7, r1, PT_R7
381 swi r8, r1, PT_R8
382 swi r9, r1, PT_R9
383 swi r10, r1, PT_R10
384 swi r11, r1, PT_R11
385 swi r12, r1, PT_R12
386 swi r14, r1, PT_R14
387 swi r15, r1, PT_R15
388 swi r18, r1, PT_R18
389
390 or r5, r1, r0
Michal Simekb175bcf2010-03-19 12:44:40 +0100391 andi r6, r4, 0x1F; /* Load ESR[EC] */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100392 lwi r7, r0, PER_CPU(KM) /* MS: saving current kernel mode to regs */
393 swi r7, r1, PT_MODE
394 mfs r7, rfsr
395 nop
396 addk r8, r17, r0; /* Load exception address */
397 bralid r15, full_exception; /* Branch to the handler */
398 nop;
Michal Simek131e4e92009-09-28 08:50:53 +0200399 mts rfsr, r0; /* Clear sticky fsr */
John Williams71b23d52009-09-15 12:29:55 +1000400 nop
Michal Simekc4df4bc2009-03-27 14:25:13 +0100401
402 /*
403 * Trigger execution of the signal handler by enabling
404 * interrupts and calling an invalid syscall.
405 */
406 mfs r5, rmsr;
407 nop
408 ori r5, r5, 2;
409 mts rmsr, r5; /* enable interrupt */
410 nop
411 addi r12, r0, __NR_syscalls;
412 brki r14, 0x08;
413 mfs r5, rmsr; /* disable interrupt */
414 nop
415 andi r5, r5, ~2;
416 mts rmsr, r5;
417 nop
418
419 lwi r7, r1, PT_R7
420 lwi r8, r1, PT_R8
421 lwi r9, r1, PT_R9
422 lwi r10, r1, PT_R10
423 lwi r11, r1, PT_R11
424 lwi r12, r1, PT_R12
425 lwi r14, r1, PT_R14
426 lwi r15, r1, PT_R15
427 lwi r18, r1, PT_R18
428
429 bri ex_handler_done; /* Complete exception handling */
Michal Simek7db29dd2009-05-26 16:30:22 +0200430#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100431
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.
438 */
439handle_unaligned_ex:
440 /* Working registers already saved: R3, R4, R5, R6
Michal Simekb175bcf2010-03-19 12:44:40 +0100441 * R4 = ESR
442 * R3 = EAR
Michal Simekc4df4bc2009-03-27 14:25:13 +0100443 */
Michal Simek7db29dd2009-05-26 16:30:22 +0200444#ifdef CONFIG_MMU
Michal Simekb175bcf2010-03-19 12:44:40 +0100445 andi r6, r4, 0x1000 /* Check ESR[DS] */
Michal Simek7db29dd2009-05-26 16:30:22 +0200446 beqi r6, _no_delayslot /* Branch if ESR[DS] not set */
447 mfs r17, rbtr; /* ESR[DS] set - return address in BTR */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100448 nop
Michal Simek7db29dd2009-05-26 16:30:22 +0200449_no_delayslot:
Michal Simek3863dbc2009-07-21 12:48:01 +0200450 /* jump to high level unaligned handler */
451 RESTORE_STATE;
452 bri unaligned_data_trap
Michal Simek7db29dd2009-05-26 16:30:22 +0200453#endif
Michal Simekb175bcf2010-03-19 12:44:40 +0100454 andi r6, r4, 0x3E0; /* Mask and extract the register operand */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100455 srl r6, r6; /* r6 >> 5 */
456 srl r6, r6;
457 srl r6, r6;
458 srl r6, r6;
459 srl r6, r6;
460 /* Store the register operand in a temporary location */
461 sbi r6, r0, TOPHYS(ex_reg_op);
462
Michal Simekb175bcf2010-03-19 12:44:40 +0100463 andi r6, r4, 0x400; /* Extract ESR[S] */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100464 bnei r6, ex_sw;
465ex_lw:
Michal Simekb175bcf2010-03-19 12:44:40 +0100466 andi r6, r4, 0x800; /* Extract ESR[W] */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100467 beqi r6, ex_lhw;
Michal Simekb175bcf2010-03-19 12:44:40 +0100468 lbui r5, r3, 0; /* Exception address in r3 */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100469 /* 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);
Michal Simekb175bcf2010-03-19 12:44:40 +0100472 lbui r5, r3, 1;
Michal Simekc4df4bc2009-03-27 14:25:13 +0100473 sbi r5, r0, TOPHYS(ex_tmp_data_loc_1);
Michal Simekb175bcf2010-03-19 12:44:40 +0100474 lbui r5, r3, 2;
Michal Simekc4df4bc2009-03-27 14:25:13 +0100475 sbi r5, r0, TOPHYS(ex_tmp_data_loc_2);
Michal Simekb175bcf2010-03-19 12:44:40 +0100476 lbui r5, r3, 3;
Michal Simekc4df4bc2009-03-27 14:25:13 +0100477 sbi r5, r0, TOPHYS(ex_tmp_data_loc_3);
Michal Simekb175bcf2010-03-19 12:44:40 +0100478 /* Get the destination register value into r4 */
479 lwi r4, r0, TOPHYS(ex_tmp_data_loc_0);
Michal Simekc4df4bc2009-03-27 14:25:13 +0100480 bri ex_lw_tail;
481ex_lhw:
Michal Simekb175bcf2010-03-19 12:44:40 +0100482 lbui r5, r3, 0; /* Exception address in r3 */
Michal Simekc4df4bc2009-03-27 14:25:13 +0100483 /* 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);
Michal Simekb175bcf2010-03-19 12:44:40 +0100486 lbui r5, r3, 1;
Michal Simekc4df4bc2009-03-27 14:25:13 +0100487 sbi r5, r0, TOPHYS(ex_tmp_data_loc_1);
Michal Simekb175bcf2010-03-19 12:44:40 +0100488 /* Get the destination register value into r4 */
489 lhui r4, r0, TOPHYS(ex_tmp_data_loc_0);
Michal Simekc4df4bc2009-03-27 14:25:13 +0100490ex_lw_tail:
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)) */
Michal Simekcd341572011-02-01 09:00:57 +0100494 addik r6, r0, TOPHYS(lw_table);
Michal Simekc4df4bc2009-03-27 14:25:13 +0100495 addk r5, r5, r5;
496 addk r5, r5, r5;
497 addk r5, r5, r5;
498 addk r5, r5, r6;
499 bra r5;
500ex_lw_end: /* Exception handling of load word, ends */
501ex_sw:
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)) */
Michal Simekcd341572011-02-01 09:00:57 +0100505 addik r6, r0, TOPHYS(sw_table);
Michal Simekc4df4bc2009-03-27 14:25:13 +0100506 add r5, r5, r5;
507 add r5, r5, r5;
508 add r5, r5, r5;
509 add r5, r5, r6;
510 bra r5;
511ex_sw_tail:
512 mfs r6, resr;
513 nop
514 andi r6, r6, 0x800; /* Extract ESR[W] */
515 beqi r6, ex_shw;
516 /* Get the word - delay slot */
Michal Simekb175bcf2010-03-19 12:44:40 +0100517 swi r4, r0, TOPHYS(ex_tmp_data_loc_0);
Michal Simekc4df4bc2009-03-27 14:25:13 +0100518 /* Store the word, byte-by-byte into destination address */
Michal Simekb175bcf2010-03-19 12:44:40 +0100519 lbui r4, r0, TOPHYS(ex_tmp_data_loc_0);
520 sbi r4, r3, 0;
521 lbui r4, r0, TOPHYS(ex_tmp_data_loc_1);
522 sbi r4, r3, 1;
523 lbui r4, r0, TOPHYS(ex_tmp_data_loc_2);
524 sbi r4, r3, 2;
525 lbui r4, r0, TOPHYS(ex_tmp_data_loc_3);
526 sbi r4, r3, 3;
Michal Simekc4df4bc2009-03-27 14:25:13 +0100527 bri ex_handler_done;
528
529ex_shw:
530 /* Store the lower half-word, byte-by-byte into destination address */
Michal Simekb175bcf2010-03-19 12:44:40 +0100531 swi r4, r0, TOPHYS(ex_tmp_data_loc_0);
532 lbui r4, r0, TOPHYS(ex_tmp_data_loc_2);
533 sbi r4, r3, 0;
534 lbui r4, r0, TOPHYS(ex_tmp_data_loc_3);
535 sbi r4, r3, 1;
Michal Simekc4df4bc2009-03-27 14:25:13 +0100536ex_sw_end: /* Exception handling of store word, ends. */
537
538ex_handler_done:
Michal Simek7db29dd2009-05-26 16:30:22 +0200539#ifndef CONFIG_MMU
Michal Simekc4df4bc2009-03-27 14:25:13 +0100540 lwi r5, r1, 0 /* RMSR */
541 mts rmsr, r5
542 nop
543 lwi r3, r1, PT_R3
544 lwi r4, r1, PT_R4
545 lwi r5, r1, PT_R5
546 lwi r6, r1, PT_R6
547 lwi r17, r1, PT_R17
548
549 rted r17, 0
550 addik r1, r1, (EX_HANDLER_STACK_SIZ); /* Restore stack frame */
Michal Simek7db29dd2009-05-26 16:30:22 +0200551#else
552 RESTORE_STATE;
553 rted r17, 0
554 nop
555#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100556
Michal Simek7db29dd2009-05-26 16:30:22 +0200557#ifdef CONFIG_MMU
558 /* Exception vector entry code. This code runs with address translation
559 * turned off (i.e. using physical addresses). */
560
561 /* Exception vectors. */
562
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.
568 */
569 handle_data_storage_exception:
570 /* Working registers already saved: R3, R4, R5, R6
571 * R3 = ESR
572 */
573 mfs r11, rpid
574 nop
Michal Simek7db29dd2009-05-26 16:30:22 +0200575 /* If we are faulting a kernel address, we have to use the
576 * kernel page tables.
577 */
Michal Simekbd1637d2010-03-19 12:50:35 +0100578 ori r5, r0, CONFIG_KERNEL_START
579 cmpu r5, r3, r5
580 bgti r5, ex3
Michal Simek7db29dd2009-05-26 16:30:22 +0200581 /* 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. */
Michal Simek91836712012-07-31 12:01:00 +0200585 andi r4, r4, ESR_DIZ /* ESR_Z - zone protection */
Michal Simek7db29dd2009-05-26 16:30:22 +0200586 bnei r4, ex2
587
588 ori r4, r0, swapper_pg_dir
589 mts rpid, r0 /* TLB will have 0 TID */
590 nop
591 bri ex4
592
593 /* Get the PGD for the current thread. */
594 ex3:
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. */
Michal Simek91836712012-07-31 12:01:00 +0200599 andi r4, r4, ESR_DIZ /* ESR_Z */
Michal Simek7db29dd2009-05-26 16:30:22 +0200600 bnei r4, ex2
601 /* get current task address */
602 addi r4 ,CURRENT_TASK, TOPHYS(0);
603 lwi r4, r4, TASK_THREAD+PGDIR
604 ex4:
605 tophys(r4,r4)
Michal Simek9f78d3b2012-07-31 11:30:57 +0200606 /* Create L1 (pgdir/pmd) address */
607 BSRLI(r5,r3, PGDIR_SHIFT - 2)
608 andi r5, r5, PAGE_SIZE - 4
Michal Simek7db29dd2009-05-26 16:30:22 +0200609/* Assume pgdir aligned on 4K boundary, no need for "andi r4,r4,0xfffff003" */
610 or r4, r4, r5
611 lwi r4, r4, 0 /* Get L1 entry */
Michal Simek9f78d3b2012-07-31 11:30:57 +0200612 andi r5, r4, PAGE_MASK /* Extract L2 (pte) base address */
Michal Simek7db29dd2009-05-26 16:30:22 +0200613 beqi r5, ex2 /* Bail if no table */
614
615 tophys(r5,r5)
Michal Simek9f78d3b2012-07-31 11:30:57 +0200616 BSRLI(r6,r3,PTE_SHIFT) /* Compute PTE address */
617 andi r6, r6, PAGE_SIZE - 4
618 andi r5, r5, PAGE_MASK + 0x3
Michal Simek7db29dd2009-05-26 16:30:22 +0200619 or r5, r5, r6
620 lwi r4, r5, 0 /* Get Linux PTE */
621
622 andi r6, r4, _PAGE_RW /* Is it writeable? */
623 beqi r6, ex2 /* Bail if not */
624
625 /* Update 'changed' */
626 ori r4, r4, _PAGE_DIRTY|_PAGE_ACCESSED|_PAGE_HWWRITE
627 swi r4, r5, 0 /* Update Linux page table */
628
629 /* Most of the Linux PTE is ready to load into the TLB LO.
630 * We set ZSEL, where only the LS-bit determines user access.
631 * We set execute, because we don't have the granularity to
632 * properly set this at the page level (Linux problem).
633 * If shared is set, we cause a zero PID->TID load.
634 * Many of these bits are software only. Bits we don't set
635 * here we (properly should) assume have the appropriate value.
636 */
Michal Simek9f78d3b2012-07-31 11:30:57 +0200637/* Ignore memory coherent, just LSB on ZSEL is used + EX/WR */
638 andi r4, r4, PAGE_MASK | TLB_EX | TLB_WR | \
639 TLB_ZSEL(1) | TLB_ATTR_MASK
Michal Simek7db29dd2009-05-26 16:30:22 +0200640 ori r4, r4, _PAGE_HWEXEC /* make it executable */
641
642 /* find the TLB index that caused the fault. It has to be here*/
643 mts rtlbsx, r3
644 nop
645 mfs r5, rtlbx /* DEBUG: TBD */
646 nop
647 mts rtlblo, r4 /* Load TLB LO */
648 nop
649 /* Will sync shadow TLBs */
650
651 /* Done...restore registers and get out of here. */
652 mts rpid, r11
653 nop
654 bri 4
655
656 RESTORE_STATE;
657 rted r17, 0
658 nop
659 ex2:
660 /* The bailout. Restore registers to pre-exception conditions
661 * and call the heavyweights to help us out. */
662 mts rpid, r11
663 nop
664 bri 4
665 RESTORE_STATE;
666 bri page_fault_data_trap
667
668
669 /* 0x11 - Instruction Storage Exception
670 * This is caused by a fetch from non-execute or guarded pages. */
671 handle_instruction_storage_exception:
672 /* Working registers already saved: R3, R4, R5, R6
673 * R3 = ESR
674 */
675
Michal Simek7db29dd2009-05-26 16:30:22 +0200676 RESTORE_STATE;
677 bri page_fault_instr_trap
678
679 /* 0x12 - Data TLB Miss Exception
680 * As the name implies, translation is not in the MMU, so search the
681 * page tables and fix it. The only purpose of this function is to
682 * load TLB entries from the page table if they exist.
683 */
684 handle_data_tlb_miss_exception:
685 /* Working registers already saved: R3, R4, R5, R6
Michal Simek7a6bbdc2010-03-22 20:37:23 +0100686 * R3 = EAR, R4 = ESR
Michal Simek7db29dd2009-05-26 16:30:22 +0200687 */
688 mfs r11, rpid
689 nop
Michal Simek7db29dd2009-05-26 16:30:22 +0200690
691 /* If we are faulting a kernel address, we have to use the
692 * kernel page tables. */
Michal Simek7a6bbdc2010-03-22 20:37:23 +0100693 ori r6, r0, CONFIG_KERNEL_START
694 cmpu r4, r3, r6
Michal Simek7db29dd2009-05-26 16:30:22 +0200695 bgti r4, ex5
696 ori r4, r0, swapper_pg_dir
697 mts rpid, r0 /* TLB will have 0 TID */
698 nop
699 bri ex6
700
701 /* Get the PGD for the current thread. */
702 ex5:
703 /* get current task address */
704 addi r4 ,CURRENT_TASK, TOPHYS(0);
705 lwi r4, r4, TASK_THREAD+PGDIR
706 ex6:
707 tophys(r4,r4)
Michal Simek9f78d3b2012-07-31 11:30:57 +0200708 /* Create L1 (pgdir/pmd) address */
709 BSRLI(r5,r3, PGDIR_SHIFT - 2)
710 andi r5, r5, PAGE_SIZE - 4
Michal Simek7db29dd2009-05-26 16:30:22 +0200711/* Assume pgdir aligned on 4K boundary, no need for "andi r4,r4,0xfffff003" */
712 or r4, r4, r5
713 lwi r4, r4, 0 /* Get L1 entry */
Michal Simek9f78d3b2012-07-31 11:30:57 +0200714 andi r5, r4, PAGE_MASK /* Extract L2 (pte) base address */
Michal Simek7db29dd2009-05-26 16:30:22 +0200715 beqi r5, ex7 /* Bail if no table */
716
717 tophys(r5,r5)
Michal Simek9f78d3b2012-07-31 11:30:57 +0200718 BSRLI(r6,r3,PTE_SHIFT) /* Compute PTE address */
719 andi r6, r6, PAGE_SIZE - 4
720 andi r5, r5, PAGE_MASK + 0x3
Michal Simek7db29dd2009-05-26 16:30:22 +0200721 or r5, r5, r6
722 lwi r4, r5, 0 /* Get Linux PTE */
723
724 andi r6, r4, _PAGE_PRESENT
725 beqi r6, ex7
726
727 ori r4, r4, _PAGE_ACCESSED
728 swi r4, r5, 0
729
730 /* Most of the Linux PTE is ready to load into the TLB LO.
731 * We set ZSEL, where only the LS-bit determines user access.
732 * We set execute, because we don't have the granularity to
733 * properly set this at the page level (Linux problem).
734 * If shared is set, we cause a zero PID->TID load.
735 * Many of these bits are software only. Bits we don't set
736 * here we (properly should) assume have the appropriate value.
737 */
Michal Simek3765d6952010-03-22 20:43:27 +0100738 brid finish_tlb_load
Michal Simek9f78d3b2012-07-31 11:30:57 +0200739 andi r4, r4, PAGE_MASK | TLB_EX | TLB_WR | \
740 TLB_ZSEL(1) | TLB_ATTR_MASK
Michal Simek7db29dd2009-05-26 16:30:22 +0200741 ex7:
742 /* The bailout. Restore registers to pre-exception conditions
743 * and call the heavyweights to help us out.
744 */
745 mts rpid, r11
746 nop
747 bri 4
748 RESTORE_STATE;
749 bri page_fault_data_trap
750
751 /* 0x13 - Instruction TLB Miss Exception
752 * Nearly the same as above, except we get our information from
753 * different registers and bailout to a different point.
754 */
755 handle_instruction_tlb_miss_exception:
756 /* Working registers already saved: R3, R4, R5, R6
757 * R3 = ESR
758 */
759 mfs r11, rpid
760 nop
Michal Simek7db29dd2009-05-26 16:30:22 +0200761
762 /* If we are faulting a kernel address, we have to use the
763 * kernel page tables.
764 */
765 ori r4, r0, CONFIG_KERNEL_START
766 cmpu r4, r3, r4
767 bgti r4, ex8
768 ori r4, r0, swapper_pg_dir
769 mts rpid, r0 /* TLB will have 0 TID */
770 nop
771 bri ex9
772
773 /* Get the PGD for the current thread. */
774 ex8:
775 /* get current task address */
776 addi r4 ,CURRENT_TASK, TOPHYS(0);
777 lwi r4, r4, TASK_THREAD+PGDIR
778 ex9:
779 tophys(r4,r4)
Michal Simek9f78d3b2012-07-31 11:30:57 +0200780 /* Create L1 (pgdir/pmd) address */
781 BSRLI(r5,r3, PGDIR_SHIFT - 2)
782 andi r5, r5, PAGE_SIZE - 4
Michal Simek7db29dd2009-05-26 16:30:22 +0200783/* 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 */
Michal Simek9f78d3b2012-07-31 11:30:57 +0200786 andi r5, r4, PAGE_MASK /* Extract L2 (pte) base address */
Michal Simek7db29dd2009-05-26 16:30:22 +0200787 beqi r5, ex10 /* Bail if no table */
788
789 tophys(r5,r5)
Michal Simek9f78d3b2012-07-31 11:30:57 +0200790 BSRLI(r6,r3,PTE_SHIFT) /* Compute PTE address */
791 andi r6, r6, PAGE_SIZE - 4
792 andi r5, r5, PAGE_MASK + 0x3
Michal Simek7db29dd2009-05-26 16:30:22 +0200793 or r5, r5, r6
794 lwi r4, r5, 0 /* Get Linux PTE */
795
796 andi r6, r4, _PAGE_PRESENT
Michal Simek3765d6952010-03-22 20:43:27 +0100797 beqi r6, ex10
Michal Simek7db29dd2009-05-26 16:30:22 +0200798
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 */
Michal Simek3765d6952010-03-22 20:43:27 +0100810 brid finish_tlb_load
Michal Simek9f78d3b2012-07-31 11:30:57 +0200811 andi r4, r4, PAGE_MASK | TLB_EX | TLB_WR | \
812 TLB_ZSEL(1) | TLB_ATTR_MASK
Michal Simek7db29dd2009-05-26 16:30:22 +0200813 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 */
Michal Simeke02db0a2010-02-08 16:41:38 +0100831.section .data
832.align 4
833.global tlb_skip
834 tlb_skip:
835 .long MICROBLAZE_TLB_SKIP
Michal Simek7db29dd2009-05-26 16:30:22 +0200836 tlb_index:
Michal Simek1451d1d2011-04-04 15:46:03 +0200837 /* MS: storing last used tlb index */
Michal Simeke02db0a2010-02-08 16:41:38 +0100838 .long MICROBLAZE_TLB_SIZE/2
839.previous
Michal Simek7db29dd2009-05-26 16:30:22 +0200840 finish_tlb_load:
841 /* MS: load the last used TLB index. */
842 lwi r5, r0, TOPHYS(tlb_index)
843 addik r5, r5, 1 /* MS: inc tlb_index -> use next one */
844
845/* MS: FIXME this is potential fault, because this is mask not count */
Michal Simek1451d1d2011-04-04 15:46:03 +0200846 andi r5, r5, MICROBLAZE_TLB_SIZE - 1
Michal Simek7db29dd2009-05-26 16:30:22 +0200847 ori r6, r0, 1
848 cmp r31, r5, r6
Michal Simek3765d6952010-03-22 20:43:27 +0100849 blti r31, ex12
Michal Simeke02db0a2010-02-08 16:41:38 +0100850 lwi r5, r0, TOPHYS(tlb_skip)
Michal Simek3765d6952010-03-22 20:43:27 +0100851 ex12:
Michal Simek7db29dd2009-05-26 16:30:22 +0200852 /* MS: save back current TLB index */
853 swi r5, r0, TOPHYS(tlb_index)
854
855 ori r4, r4, _PAGE_HWEXEC /* make it executable */
856 mts rtlbx, r5 /* MS: save current TLB */
857 nop
858 mts rtlblo, r4 /* MS: save to TLB LO */
859 nop
860
861 /* Create EPN. This is the faulting address plus a static
862 * set of bits. These are size, valid, E, U0, and ensure
863 * bits 20 and 21 are zero.
864 */
Michal Simek9f78d3b2012-07-31 11:30:57 +0200865 andi r3, r3, PAGE_MASK
Michal Simek6e80cff2012-08-01 10:29:28 +0200866#ifdef CONFIG_MICROBLAZE_64K_PAGES
867 ori r3, r3, TLB_VALID | TLB_PAGESZ(PAGESZ_64K)
868#elif CONFIG_MICROBLAZE_16K_PAGES
869 ori r3, r3, TLB_VALID | TLB_PAGESZ(PAGESZ_16K)
870#else
Michal Simek9f78d3b2012-07-31 11:30:57 +0200871 ori r3, r3, TLB_VALID | TLB_PAGESZ(PAGESZ_4K)
Michal Simek6e80cff2012-08-01 10:29:28 +0200872#endif
Michal Simek7db29dd2009-05-26 16:30:22 +0200873 mts rtlbhi, r3 /* Load TLB HI */
874 nop
875
876 /* Done...restore registers and get out of here. */
Michal Simek7db29dd2009-05-26 16:30:22 +0200877 mts rpid, r11
878 nop
879 bri 4
880 RESTORE_STATE;
881 rted r17, 0
882 nop
883
884 /* extern void giveup_fpu(struct task_struct *prev)
885 *
886 * The MicroBlaze processor may have an FPU, so this should not just
887 * return: TBD.
888 */
889 .globl giveup_fpu;
890 .align 4;
891 giveup_fpu:
892 bralid r15,0 /* TBD */
893 nop
894
895 /* At present, this routine just hangs. - extern void abort(void) */
896 .globl abort;
897 .align 4;
898 abort:
899 br r0
900
901 .globl set_context;
902 .align 4;
903 set_context:
904 mts rpid, r5 /* Shadow TLBs are automatically */
905 nop
906 bri 4 /* flushed by changing PID */
907 rtsd r15,8
908 nop
909
910#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +0100911.end _hw_exception_handler
912
Michal Simek7db29dd2009-05-26 16:30:22 +0200913#ifdef CONFIG_MMU
914/* Unaligned data access exception last on a 4k page for MMU.
915 * When this is called, we are in virtual mode with exceptions enabled
916 * and registers 1-13,15,17,18 saved.
917 *
918 * R3 = ESR
919 * R4 = EAR
920 * R7 = pointer to saved registers (struct pt_regs *regs)
921 *
922 * This handler perform the access, and returns via ret_from_exc.
923 */
924.global _unaligned_data_exception
925.ent _unaligned_data_exception
926_unaligned_data_exception:
927 andi r8, r3, 0x3E0; /* Mask and extract the register operand */
928 BSRLI(r8,r8,2); /* r8 >> 2 = register operand * 8 */
929 andi r6, r3, 0x400; /* Extract ESR[S] */
930 bneid r6, ex_sw_vm;
931 andi r6, r3, 0x800; /* Extract ESR[W] - delay slot */
932ex_lw_vm:
933 beqid r6, ex_lhw_vm;
Michal Simek3863dbc2009-07-21 12:48:01 +0200934load1: lbui r5, r4, 0; /* Exception address in r4 - delay slot */
Michal Simek7db29dd2009-05-26 16:30:22 +0200935/* Load a word, byte-by-byte from destination address and save it in tmp space*/
Michal Simekcd341572011-02-01 09:00:57 +0100936 addik r6, r0, ex_tmp_data_loc_0;
Michal Simek7db29dd2009-05-26 16:30:22 +0200937 sbi r5, r6, 0;
Michal Simek3863dbc2009-07-21 12:48:01 +0200938load2: lbui r5, r4, 1;
Michal Simek7db29dd2009-05-26 16:30:22 +0200939 sbi r5, r6, 1;
Michal Simek3863dbc2009-07-21 12:48:01 +0200940load3: lbui r5, r4, 2;
Michal Simek7db29dd2009-05-26 16:30:22 +0200941 sbi r5, r6, 2;
Michal Simek3863dbc2009-07-21 12:48:01 +0200942load4: lbui r5, r4, 3;
Michal Simek7db29dd2009-05-26 16:30:22 +0200943 sbi r5, r6, 3;
944 brid ex_lw_tail_vm;
945/* Get the destination register value into r3 - delay slot */
946 lwi r3, r6, 0;
947ex_lhw_vm:
948 /* Load a half-word, byte-by-byte from destination address and
949 * save it in tmp space */
Michal Simekcd341572011-02-01 09:00:57 +0100950 addik r6, r0, ex_tmp_data_loc_0;
Michal Simek7db29dd2009-05-26 16:30:22 +0200951 sbi r5, r6, 0;
Michal Simek3863dbc2009-07-21 12:48:01 +0200952load5: lbui r5, r4, 1;
Michal Simek7db29dd2009-05-26 16:30:22 +0200953 sbi r5, r6, 1;
954 lhui r3, r6, 0; /* Get the destination register value into r3 */
955ex_lw_tail_vm:
956 /* Form load_word jump table offset (lw_table_vm + (8 * regnum)) */
957 addik r5, r8, lw_table_vm;
958 bra r5;
959ex_lw_end_vm: /* Exception handling of load word, ends */
960 brai ret_from_exc;
961ex_sw_vm:
962/* Form store_word jump table offset (sw_table_vm + (8 * regnum)) */
963 addik r5, r8, sw_table_vm;
964 bra r5;
965ex_sw_tail_vm:
Michal Simekcd341572011-02-01 09:00:57 +0100966 addik r5, r0, ex_tmp_data_loc_0;
Michal Simek7db29dd2009-05-26 16:30:22 +0200967 beqid r6, ex_shw_vm;
968 swi r3, r5, 0; /* Get the word - delay slot */
969 /* Store the word, byte-by-byte into destination address */
970 lbui r3, r5, 0;
Michal Simek3863dbc2009-07-21 12:48:01 +0200971store1: sbi r3, r4, 0;
Michal Simek7db29dd2009-05-26 16:30:22 +0200972 lbui r3, r5, 1;
Michal Simek3863dbc2009-07-21 12:48:01 +0200973store2: sbi r3, r4, 1;
Michal Simek7db29dd2009-05-26 16:30:22 +0200974 lbui r3, r5, 2;
Michal Simek3863dbc2009-07-21 12:48:01 +0200975store3: sbi r3, r4, 2;
Michal Simek7db29dd2009-05-26 16:30:22 +0200976 lbui r3, r5, 3;
977 brid ret_from_exc;
Michal Simek3863dbc2009-07-21 12:48:01 +0200978store4: sbi r3, r4, 3; /* Delay slot */
Michal Simek7db29dd2009-05-26 16:30:22 +0200979ex_shw_vm:
980 /* Store the lower half-word, byte-by-byte into destination address */
Michal Simeke3288f32010-12-29 14:34:46 +0100981#ifdef __MICROBLAZEEL__
982 lbui r3, r5, 0;
983store5: sbi r3, r4, 0;
984 lbui r3, r5, 1;
985 brid ret_from_exc;
986store6: sbi r3, r4, 1; /* Delay slot */
987#else
Michal Simek7db29dd2009-05-26 16:30:22 +0200988 lbui r3, r5, 2;
Michal Simek3863dbc2009-07-21 12:48:01 +0200989store5: sbi r3, r4, 0;
Michal Simek7db29dd2009-05-26 16:30:22 +0200990 lbui r3, r5, 3;
991 brid ret_from_exc;
Michal Simek3863dbc2009-07-21 12:48:01 +0200992store6: sbi r3, r4, 1; /* Delay slot */
Michal Simeke3288f32010-12-29 14:34:46 +0100993#endif
994
Michal Simek7db29dd2009-05-26 16:30:22 +0200995ex_sw_end_vm: /* Exception handling of store word, ends. */
Michal Simek3863dbc2009-07-21 12:48:01 +0200996
997/* We have to prevent cases that get/put_user macros get unaligned pointer
998 * to bad page area. We have to find out which origin instruction caused it
999 * and called fixup for that origin instruction not instruction in unaligned
1000 * handler */
1001ex_unaligned_fixup:
1002 ori r5, r7, 0 /* setup pointer to pt_regs */
1003 lwi r6, r7, PT_PC; /* faulting address is one instruction above */
1004 addik r6, r6, -4 /* for finding proper fixup */
1005 swi r6, r7, PT_PC; /* a save back it to PT_PC */
1006 addik r7, r0, SIGSEGV
1007 /* call bad_page_fault for finding aligned fixup, fixup address is saved
1008 * in PT_PC which is used as return address from exception */
Michal Simekcd341572011-02-01 09:00:57 +01001009 addik r15, r0, ret_from_exc-8 /* setup return address */
Michal Simek3863dbc2009-07-21 12:48:01 +02001010 brid bad_page_fault
1011 nop
1012
1013/* We prevent all load/store because it could failed any attempt to access */
1014.section __ex_table,"a";
1015 .word load1,ex_unaligned_fixup;
1016 .word load2,ex_unaligned_fixup;
1017 .word load3,ex_unaligned_fixup;
1018 .word load4,ex_unaligned_fixup;
1019 .word load5,ex_unaligned_fixup;
1020 .word store1,ex_unaligned_fixup;
1021 .word store2,ex_unaligned_fixup;
1022 .word store3,ex_unaligned_fixup;
1023 .word store4,ex_unaligned_fixup;
1024 .word store5,ex_unaligned_fixup;
1025 .word store6,ex_unaligned_fixup;
1026.previous;
Michal Simek7db29dd2009-05-26 16:30:22 +02001027.end _unaligned_data_exception
1028#endif /* CONFIG_MMU */
1029
Steven J. Magnanice3266c2010-04-27 12:37:54 -05001030.global ex_handler_unhandled
Michal Simekc4df4bc2009-03-27 14:25:13 +01001031ex_handler_unhandled:
1032/* FIXME add handle function for unhandled exception - dump register */
1033 bri 0
1034
Michal Simek7db29dd2009-05-26 16:30:22 +02001035/*
1036 * hw_exception_handler Jump Table
1037 * - Contains code snippets for each register that caused the unalign exception
1038 * - Hence exception handler is NOT self-modifying
1039 * - Separate table for load exceptions and store exceptions.
1040 * - Each table is of size: (8 * 32) = 256 bytes
1041 */
1042
Michal Simekc4df4bc2009-03-27 14:25:13 +01001043.section .text
1044.align 4
1045lw_table:
1046lw_r0: R3_TO_LWREG (0);
1047lw_r1: LWREG_NOP;
1048lw_r2: R3_TO_LWREG (2);
1049lw_r3: R3_TO_LWREG_V (3);
1050lw_r4: R3_TO_LWREG_V (4);
1051lw_r5: R3_TO_LWREG_V (5);
1052lw_r6: R3_TO_LWREG_V (6);
1053lw_r7: R3_TO_LWREG (7);
1054lw_r8: R3_TO_LWREG (8);
1055lw_r9: R3_TO_LWREG (9);
1056lw_r10: R3_TO_LWREG (10);
1057lw_r11: R3_TO_LWREG (11);
1058lw_r12: R3_TO_LWREG (12);
1059lw_r13: R3_TO_LWREG (13);
1060lw_r14: R3_TO_LWREG (14);
1061lw_r15: R3_TO_LWREG (15);
1062lw_r16: R3_TO_LWREG (16);
1063lw_r17: LWREG_NOP;
1064lw_r18: R3_TO_LWREG (18);
1065lw_r19: R3_TO_LWREG (19);
1066lw_r20: R3_TO_LWREG (20);
1067lw_r21: R3_TO_LWREG (21);
1068lw_r22: R3_TO_LWREG (22);
1069lw_r23: R3_TO_LWREG (23);
1070lw_r24: R3_TO_LWREG (24);
1071lw_r25: R3_TO_LWREG (25);
1072lw_r26: R3_TO_LWREG (26);
1073lw_r27: R3_TO_LWREG (27);
1074lw_r28: R3_TO_LWREG (28);
1075lw_r29: R3_TO_LWREG (29);
1076lw_r30: R3_TO_LWREG (30);
Michal Simek7db29dd2009-05-26 16:30:22 +02001077#ifdef CONFIG_MMU
1078lw_r31: R3_TO_LWREG_V (31);
1079#else
Michal Simekc4df4bc2009-03-27 14:25:13 +01001080lw_r31: R3_TO_LWREG (31);
Michal Simek7db29dd2009-05-26 16:30:22 +02001081#endif
Michal Simekc4df4bc2009-03-27 14:25:13 +01001082
1083sw_table:
1084sw_r0: SWREG_TO_R3 (0);
1085sw_r1: SWREG_NOP;
1086sw_r2: SWREG_TO_R3 (2);
1087sw_r3: SWREG_TO_R3_V (3);
1088sw_r4: SWREG_TO_R3_V (4);
1089sw_r5: SWREG_TO_R3_V (5);
1090sw_r6: SWREG_TO_R3_V (6);
1091sw_r7: SWREG_TO_R3 (7);
1092sw_r8: SWREG_TO_R3 (8);
1093sw_r9: SWREG_TO_R3 (9);
1094sw_r10: SWREG_TO_R3 (10);
1095sw_r11: SWREG_TO_R3 (11);
1096sw_r12: SWREG_TO_R3 (12);
1097sw_r13: SWREG_TO_R3 (13);
1098sw_r14: SWREG_TO_R3 (14);
1099sw_r15: SWREG_TO_R3 (15);
1100sw_r16: SWREG_TO_R3 (16);
1101sw_r17: SWREG_NOP;
1102sw_r18: SWREG_TO_R3 (18);
1103sw_r19: SWREG_TO_R3 (19);
1104sw_r20: SWREG_TO_R3 (20);
1105sw_r21: SWREG_TO_R3 (21);
1106sw_r22: SWREG_TO_R3 (22);
1107sw_r23: SWREG_TO_R3 (23);
1108sw_r24: SWREG_TO_R3 (24);
1109sw_r25: SWREG_TO_R3 (25);
1110sw_r26: SWREG_TO_R3 (26);
1111sw_r27: SWREG_TO_R3 (27);
1112sw_r28: SWREG_TO_R3 (28);
1113sw_r29: SWREG_TO_R3 (29);
1114sw_r30: SWREG_TO_R3 (30);
Michal Simek7db29dd2009-05-26 16:30:22 +02001115#ifdef CONFIG_MMU
1116sw_r31: SWREG_TO_R3_V (31);
1117#else
Michal Simekc4df4bc2009-03-27 14:25:13 +01001118sw_r31: SWREG_TO_R3 (31);
Michal Simek7db29dd2009-05-26 16:30:22 +02001119#endif
1120
1121#ifdef CONFIG_MMU
1122lw_table_vm:
1123lw_r0_vm: R3_TO_LWREG_VM (0);
1124lw_r1_vm: R3_TO_LWREG_VM_V (1);
1125lw_r2_vm: R3_TO_LWREG_VM_V (2);
1126lw_r3_vm: R3_TO_LWREG_VM_V (3);
1127lw_r4_vm: R3_TO_LWREG_VM_V (4);
1128lw_r5_vm: R3_TO_LWREG_VM_V (5);
1129lw_r6_vm: R3_TO_LWREG_VM_V (6);
1130lw_r7_vm: R3_TO_LWREG_VM_V (7);
1131lw_r8_vm: R3_TO_LWREG_VM_V (8);
1132lw_r9_vm: R3_TO_LWREG_VM_V (9);
1133lw_r10_vm: R3_TO_LWREG_VM_V (10);
1134lw_r11_vm: R3_TO_LWREG_VM_V (11);
1135lw_r12_vm: R3_TO_LWREG_VM_V (12);
1136lw_r13_vm: R3_TO_LWREG_VM_V (13);
Michal Simekc1138942011-05-20 09:02:13 +02001137lw_r14_vm: R3_TO_LWREG_VM_V (14);
Michal Simek7db29dd2009-05-26 16:30:22 +02001138lw_r15_vm: R3_TO_LWREG_VM_V (15);
Michal Simekc1138942011-05-20 09:02:13 +02001139lw_r16_vm: R3_TO_LWREG_VM_V (16);
Michal Simek7db29dd2009-05-26 16:30:22 +02001140lw_r17_vm: R3_TO_LWREG_VM_V (17);
1141lw_r18_vm: R3_TO_LWREG_VM_V (18);
Michal Simekc1138942011-05-20 09:02:13 +02001142lw_r19_vm: R3_TO_LWREG_VM_V (19);
1143lw_r20_vm: R3_TO_LWREG_VM_V (20);
1144lw_r21_vm: R3_TO_LWREG_VM_V (21);
1145lw_r22_vm: R3_TO_LWREG_VM_V (22);
1146lw_r23_vm: R3_TO_LWREG_VM_V (23);
1147lw_r24_vm: R3_TO_LWREG_VM_V (24);
1148lw_r25_vm: R3_TO_LWREG_VM_V (25);
1149lw_r26_vm: R3_TO_LWREG_VM_V (26);
1150lw_r27_vm: R3_TO_LWREG_VM_V (27);
1151lw_r28_vm: R3_TO_LWREG_VM_V (28);
1152lw_r29_vm: R3_TO_LWREG_VM_V (29);
1153lw_r30_vm: R3_TO_LWREG_VM_V (30);
Michal Simek7db29dd2009-05-26 16:30:22 +02001154lw_r31_vm: R3_TO_LWREG_VM_V (31);
1155
1156sw_table_vm:
1157sw_r0_vm: SWREG_TO_R3_VM (0);
1158sw_r1_vm: SWREG_TO_R3_VM_V (1);
1159sw_r2_vm: SWREG_TO_R3_VM_V (2);
1160sw_r3_vm: SWREG_TO_R3_VM_V (3);
1161sw_r4_vm: SWREG_TO_R3_VM_V (4);
1162sw_r5_vm: SWREG_TO_R3_VM_V (5);
1163sw_r6_vm: SWREG_TO_R3_VM_V (6);
1164sw_r7_vm: SWREG_TO_R3_VM_V (7);
1165sw_r8_vm: SWREG_TO_R3_VM_V (8);
1166sw_r9_vm: SWREG_TO_R3_VM_V (9);
1167sw_r10_vm: SWREG_TO_R3_VM_V (10);
1168sw_r11_vm: SWREG_TO_R3_VM_V (11);
1169sw_r12_vm: SWREG_TO_R3_VM_V (12);
1170sw_r13_vm: SWREG_TO_R3_VM_V (13);
Michal Simekc1138942011-05-20 09:02:13 +02001171sw_r14_vm: SWREG_TO_R3_VM_V (14);
Michal Simek7db29dd2009-05-26 16:30:22 +02001172sw_r15_vm: SWREG_TO_R3_VM_V (15);
Michal Simekc1138942011-05-20 09:02:13 +02001173sw_r16_vm: SWREG_TO_R3_VM_V (16);
Michal Simek7db29dd2009-05-26 16:30:22 +02001174sw_r17_vm: SWREG_TO_R3_VM_V (17);
1175sw_r18_vm: SWREG_TO_R3_VM_V (18);
Michal Simekc1138942011-05-20 09:02:13 +02001176sw_r19_vm: SWREG_TO_R3_VM_V (19);
1177sw_r20_vm: SWREG_TO_R3_VM_V (20);
1178sw_r21_vm: SWREG_TO_R3_VM_V (21);
1179sw_r22_vm: SWREG_TO_R3_VM_V (22);
1180sw_r23_vm: SWREG_TO_R3_VM_V (23);
1181sw_r24_vm: SWREG_TO_R3_VM_V (24);
1182sw_r25_vm: SWREG_TO_R3_VM_V (25);
1183sw_r26_vm: SWREG_TO_R3_VM_V (26);
1184sw_r27_vm: SWREG_TO_R3_VM_V (27);
1185sw_r28_vm: SWREG_TO_R3_VM_V (28);
1186sw_r29_vm: SWREG_TO_R3_VM_V (29);
1187sw_r30_vm: SWREG_TO_R3_VM_V (30);
Michal Simek7db29dd2009-05-26 16:30:22 +02001188sw_r31_vm: SWREG_TO_R3_VM_V (31);
1189#endif /* CONFIG_MMU */
Michal Simekc4df4bc2009-03-27 14:25:13 +01001190
1191/* Temporary data structures used in the handler */
1192.section .data
1193.align 4
1194ex_tmp_data_loc_0:
1195 .byte 0
1196ex_tmp_data_loc_1:
1197 .byte 0
1198ex_tmp_data_loc_2:
1199 .byte 0
1200ex_tmp_data_loc_3:
1201 .byte 0
1202ex_reg_op:
1203 .byte 0