]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/arm/trap-v4.c
aw_pwm: remove the busy bit check
[FreeBSD/FreeBSD.git] / sys / arm / arm / trap-v4.c
1 /*      $NetBSD: fault.c,v 1.45 2003/11/20 14:44:36 scw Exp $   */
2
3 /*-
4  * Copyright 2004 Olivier Houchard
5  * Copyright 2003 Wasabi Systems, Inc.
6  * All rights reserved.
7  *
8  * Written by Steve C. Woodford for Wasabi Systems, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed for the NetBSD Project by
21  *      Wasabi Systems, Inc.
22  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
23  *    or promote products derived from this software without specific prior
24  *    written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  * POSSIBILITY OF SUCH DAMAGE.
37  */
38 /*-
39  * Copyright (c) 1994-1997 Mark Brinicombe.
40  * Copyright (c) 1994 Brini.
41  * All rights reserved.
42  *
43  * This code is derived from software written for Brini by Mark Brinicombe
44  *
45  * Redistribution and use in source and binary forms, with or without
46  * modification, are permitted provided that the following conditions
47  * are met:
48  * 1. Redistributions of source code must retain the above copyright
49  *    notice, this list of conditions and the following disclaimer.
50  * 2. Redistributions in binary form must reproduce the above copyright
51  *    notice, this list of conditions and the following disclaimer in the
52  *    documentation and/or other materials provided with the distribution.
53  * 3. All advertising materials mentioning features or use of this software
54  *    must display the following acknowledgement:
55  *      This product includes software developed by Brini.
56  * 4. The name of the company nor the name of the author may be used to
57  *    endorse or promote products derived from this software without specific
58  *    prior written permission.
59  *
60  * THIS SOFTWARE IS PROVIDED BY BRINI ``AS IS'' AND ANY EXPRESS OR IMPLIED
61  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
62  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
63  * IN NO EVENT SHALL BRINI OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
64  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
65  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
66  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
67  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
68  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
69  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
70  * SUCH DAMAGE.
71  *
72  * RiscBSD kernel project
73  *
74  * fault.c
75  *
76  * Fault handlers
77  *
78  * Created      : 28/11/94
79  */
80
81 #include <sys/cdefs.h>
82 __FBSDID("$FreeBSD$");
83
84 #include <sys/param.h>
85 #include <sys/systm.h>
86 #include <sys/proc.h>
87 #include <sys/lock.h>
88 #include <sys/mutex.h>
89 #include <sys/signalvar.h>
90 #include <sys/vmmeter.h>
91
92 #include <vm/vm.h>
93 #include <vm/pmap.h>
94 #include <vm/vm_kern.h>
95 #include <vm/vm_map.h>
96 #include <vm/vm_extern.h>
97 #include <vm/vm_param.h>
98
99 #include <machine/cpu.h>
100 #include <machine/frame.h>
101 #include <machine/machdep.h>
102 #include <machine/pcb.h>
103
104 #ifdef KDB
105 #include <sys/kdb.h>
106 #endif
107
108 #ifdef KDTRACE_HOOKS
109 #include <sys/dtrace_bsd.h>
110 #endif
111
112 #define ReadWord(a)     (*((volatile unsigned int *)(a)))
113
114 #ifdef DEBUG
115 int last_fault_code;    /* For the benefit of pmap_fault_fixup() */
116 #endif
117
118 struct ksig {
119         int signb;
120         u_long code;
121 };
122 struct data_abort {
123         int (*func)(struct trapframe *, u_int, u_int, struct thread *,
124             struct ksig *);
125         const char *desc;
126 };
127
128 static int dab_fatal(struct trapframe *, u_int, u_int, struct thread *,
129     struct ksig *);
130 static int dab_align(struct trapframe *, u_int, u_int, struct thread *,
131     struct ksig *);
132 static int dab_buserr(struct trapframe *, u_int, u_int, struct thread *,
133     struct ksig *);
134 static void prefetch_abort_handler(struct trapframe *);
135
136 static const struct data_abort data_aborts[] = {
137         {dab_fatal,     "Vector Exception"},
138         {dab_align,     "Alignment Fault 1"},
139         {dab_fatal,     "Terminal Exception"},
140         {dab_align,     "Alignment Fault 3"},
141         {dab_buserr,    "External Linefetch Abort (S)"},
142         {NULL,          "Translation Fault (S)"},
143         {dab_buserr,    "External Linefetch Abort (P)"},
144         {NULL,          "Translation Fault (P)"},
145         {dab_buserr,    "External Non-Linefetch Abort (S)"},
146         {NULL,          "Domain Fault (S)"},
147         {dab_buserr,    "External Non-Linefetch Abort (P)"},
148         {NULL,          "Domain Fault (P)"},
149         {dab_buserr,    "External Translation Abort (L1)"},
150         {NULL,          "Permission Fault (S)"},
151         {dab_buserr,    "External Translation Abort (L2)"},
152         {NULL,          "Permission Fault (P)"}
153 };
154
155 /* Determine if a fault came from user mode */
156 #define TRAP_USERMODE(tf)       ((tf->tf_spsr & PSR_MODE) == PSR_USR32_MODE)
157
158 /* Determine if 'x' is a permission fault */
159 #define IS_PERMISSION_FAULT(x)                                  \
160         (((1 << ((x) & FAULT_TYPE_MASK)) &                      \
161           ((1 << FAULT_PERM_P) | (1 << FAULT_PERM_S))) != 0)
162
163 static __inline void
164 call_trapsignal(struct thread *td, int sig, u_long code)
165 {
166         ksiginfo_t ksi;
167
168         ksiginfo_init_trap(&ksi);
169         ksi.ksi_signo = sig;
170         ksi.ksi_code = (int)code;
171         trapsignal(td, &ksi);
172 }
173
174 void
175 abort_handler(struct trapframe *tf, int type)
176 {
177         struct vm_map *map;
178         struct pcb *pcb;
179         struct thread *td;
180         u_int user, far, fsr;
181         vm_prot_t ftype;
182         void *onfault;
183         vm_offset_t va;
184         int error = 0, signo, ucode;
185         struct ksig ksig;
186         struct proc *p;
187
188         if (type == 1)
189                 return (prefetch_abort_handler(tf));
190
191         /* Grab FAR/FSR before enabling interrupts */
192         far = cp15_dfar_get();
193         fsr = cp15_dfsr_get();
194 #if 0
195         printf("data abort: fault address=%p (from pc=%p lr=%p)\n",
196                (void*)far, (void*)tf->tf_pc, (void*)tf->tf_svc_lr);
197 #endif
198
199         /* Update vmmeter statistics */
200 #if 0
201         vmexp.traps++;
202 #endif
203
204         td = curthread;
205         p = td->td_proc;
206
207         VM_CNT_INC(v_trap);
208         /* Data abort came from user mode? */
209         user = TRAP_USERMODE(tf);
210
211         if (user) {
212                 td->td_pticks = 0;
213                 td->td_frame = tf;
214                 if (td->td_cowgen != td->td_proc->p_cowgen)
215                         thread_cow_update(td);
216         }
217         /* Grab the current pcb */
218         pcb = td->td_pcb;
219         /* Re-enable interrupts if they were enabled previously */
220         if (td->td_md.md_spinlock_count == 0) {
221                 if (__predict_true(tf->tf_spsr & PSR_I) == 0)
222                         enable_interrupts(PSR_I);
223                 if (__predict_true(tf->tf_spsr & PSR_F) == 0)
224                         enable_interrupts(PSR_F);
225         }
226
227         /* Invoke the appropriate handler, if necessary */
228         if (__predict_false(data_aborts[fsr & FAULT_TYPE_MASK].func != NULL)) {
229                 if ((data_aborts[fsr & FAULT_TYPE_MASK].func)(tf, fsr, far,
230                     td, &ksig)) {
231                         signo = ksig.signb;
232                         ucode = ksig.code;
233                         goto do_trapsignal;
234                 }
235                 goto out;
236         }
237
238         /*
239          * At this point, we're dealing with one of the following data aborts:
240          *
241          *  FAULT_TRANS_S  - Translation -- Section
242          *  FAULT_TRANS_P  - Translation -- Page
243          *  FAULT_DOMAIN_S - Domain -- Section
244          *  FAULT_DOMAIN_P - Domain -- Page
245          *  FAULT_PERM_S   - Permission -- Section
246          *  FAULT_PERM_P   - Permission -- Page
247          *
248          * These are the main virtual memory-related faults signalled by
249          * the MMU.
250          */
251
252         /*
253          * Make sure the Program Counter is sane. We could fall foul of
254          * someone executing Thumb code, in which case the PC might not
255          * be word-aligned. This would cause a kernel alignment fault
256          * further down if we have to decode the current instruction.
257          * XXX: It would be nice to be able to support Thumb at some point.
258          */
259         if (__predict_false((tf->tf_pc & 3) != 0)) {
260                 if (user) {
261                         /*
262                          * Give the user an illegal instruction signal.
263                          */
264                         /* Deliver a SIGILL to the process */
265                         signo = SIGILL;
266                         ucode = 0;
267                         goto do_trapsignal;
268                 }
269
270                 /*
271                  * The kernel never executes Thumb code.
272                  */
273                 printf("\ndata_abort_fault: Misaligned Kernel-mode "
274                     "Program Counter\n");
275                 dab_fatal(tf, fsr, far, td, &ksig);
276         }
277
278         va = trunc_page((vm_offset_t)far);
279
280         /*
281          * It is only a kernel address space fault iff:
282          *      1. user == 0  and
283          *      2. pcb_onfault not set or
284          *      3. pcb_onfault set and not LDRT/LDRBT/STRT/STRBT instruction.
285          */
286         if (user == 0 && (va >= VM_MIN_KERNEL_ADDRESS ||
287             (va < VM_MIN_ADDRESS && vector_page == ARM_VECTORS_LOW)) &&
288             __predict_true((pcb->pcb_onfault == NULL ||
289              (ReadWord(tf->tf_pc) & 0x05200000) != 0x04200000))) {
290                 map = kernel_map;
291
292                 /* Was the fault due to the FPE/IPKDB ? */
293                 if (__predict_false((tf->tf_spsr & PSR_MODE)==PSR_UND32_MODE)) {
294                         /*
295                          * Force exit via userret()
296                          * This is necessary as the FPE is an extension to
297                          * userland that actually runs in a priveledged mode
298                          * but uses USR mode permissions for its accesses.
299                          */
300                         user = 1;
301                         signo = SIGSEGV;
302                         ucode = 0;
303                         goto do_trapsignal;
304                 }
305         } else {
306                 map = &td->td_proc->p_vmspace->vm_map;
307         }
308
309         /*
310          * We need to know whether the page should be mapped as R or R/W.
311          * On armv4, the fault status register does not indicate whether
312          * the access was a read or write.  We know that a permission fault
313          * can only be the result of a write to a read-only location, so we
314          * can deal with those quickly.  Otherwise we need to disassemble
315          * the faulting instruction to determine if it was a write.
316          */
317         if (IS_PERMISSION_FAULT(fsr))
318                 ftype = VM_PROT_WRITE;
319         else {
320                 u_int insn = ReadWord(tf->tf_pc);
321
322                 if (((insn & 0x0c100000) == 0x04000000) ||      /* STR/STRB */
323                     ((insn & 0x0e1000b0) == 0x000000b0) ||      /* STRH/STRD */
324                     ((insn & 0x0a100000) == 0x08000000)) {      /* STM/CDT */
325                         ftype = VM_PROT_WRITE;
326                 } else {
327                         if ((insn & 0x0fb00ff0) == 0x01000090)  /* SWP */
328                                 ftype = VM_PROT_READ | VM_PROT_WRITE;
329                         else
330                                 ftype = VM_PROT_READ;
331                 }
332         }
333
334         /*
335          * See if the fault is as a result of ref/mod emulation,
336          * or domain mismatch.
337          */
338 #ifdef DEBUG
339         last_fault_code = fsr;
340 #endif
341         if (td->td_critnest != 0 || WITNESS_CHECK(WARN_SLEEPOK | WARN_GIANTOK,
342             NULL, "Kernel page fault") != 0)
343                 goto fatal_pagefault;
344
345         if (pmap_fault_fixup(vmspace_pmap(td->td_proc->p_vmspace), va, ftype,
346             user)) {
347                 goto out;
348         }
349
350         onfault = pcb->pcb_onfault;
351         pcb->pcb_onfault = NULL;
352         error = vm_fault_trap(map, va, ftype, VM_FAULT_NORMAL, &signo, &ucode);
353         pcb->pcb_onfault = onfault;
354         if (__predict_true(error == KERN_SUCCESS))
355                 goto out;
356 fatal_pagefault:
357         if (user == 0) {
358                 if (pcb->pcb_onfault) {
359                         tf->tf_r0 = error;
360                         tf->tf_pc = (register_t)(intptr_t) pcb->pcb_onfault;
361                         return;
362                 }
363
364                 printf("\nvm_fault(%p, %x, %x, 0) -> %x\n", map, va, ftype,
365                     error);
366                 dab_fatal(tf, fsr, far, td, &ksig);
367         }
368
369 do_trapsignal:
370         call_trapsignal(td, signo, ucode);
371 out:
372         /* If returning to user mode, make sure to invoke userret() */
373         if (user)
374                 userret(td, tf);
375 }
376
377 /*
378  * dab_fatal() handles the following data aborts:
379  *
380  *  FAULT_WRTBUF_0 - Vector Exception
381  *  FAULT_WRTBUF_1 - Terminal Exception
382  *
383  * We should never see these on a properly functioning system.
384  *
385  * This function is also called by the other handlers if they
386  * detect a fatal problem.
387  *
388  * Note: If 'l' is NULL, we assume we're dealing with a prefetch abort.
389  */
390 static int
391 dab_fatal(struct trapframe *tf, u_int fsr, u_int far, struct thread *td,
392     struct ksig *ksig)
393 {
394         const char *mode;
395 #ifdef KDB
396         bool handled;
397 #endif
398
399 #ifdef KDB
400         if (kdb_active) {
401                 kdb_reenter();
402                 return (0);
403         }
404 #endif
405 #ifdef KDTRACE_HOOKS
406         if (!TRAP_USERMODE(tf)) {
407                 if (dtrace_trap_func != NULL && (*dtrace_trap_func)(tf, far & FAULT_TYPE_MASK))
408                         return (0);
409         }
410 #endif
411
412         mode = TRAP_USERMODE(tf) ? "user" : "kernel";
413
414         disable_interrupts(PSR_I|PSR_F);
415         if (td != NULL) {
416                 printf("Fatal %s mode data abort: '%s'\n", mode,
417                     data_aborts[fsr & FAULT_TYPE_MASK].desc);
418                 printf("trapframe: %p\nFSR=%08x, FAR=", tf, fsr);
419                 if ((fsr & FAULT_IMPRECISE) == 0)
420                         printf("%08x, ", far);
421                 else
422                         printf("Invalid,  ");
423                 printf("spsr=%08x\n", tf->tf_spsr);
424         } else {
425                 printf("Fatal %s mode prefetch abort at 0x%08x\n",
426                     mode, tf->tf_pc);
427                 printf("trapframe: %p, spsr=%08x\n", tf, tf->tf_spsr);
428         }
429
430         printf("r0 =%08x, r1 =%08x, r2 =%08x, r3 =%08x\n",
431             tf->tf_r0, tf->tf_r1, tf->tf_r2, tf->tf_r3);
432         printf("r4 =%08x, r5 =%08x, r6 =%08x, r7 =%08x\n",
433             tf->tf_r4, tf->tf_r5, tf->tf_r6, tf->tf_r7);
434         printf("r8 =%08x, r9 =%08x, r10=%08x, r11=%08x\n",
435             tf->tf_r8, tf->tf_r9, tf->tf_r10, tf->tf_r11);
436         printf("r12=%08x, ", tf->tf_r12);
437
438         if (TRAP_USERMODE(tf))
439                 printf("usp=%08x, ulr=%08x",
440                     tf->tf_usr_sp, tf->tf_usr_lr);
441         else
442                 printf("ssp=%08x, slr=%08x",
443                     tf->tf_svc_sp, tf->tf_svc_lr);
444         printf(", pc =%08x\n\n", tf->tf_pc);
445
446 #ifdef KDB
447         if (debugger_on_trap) {
448                 kdb_why = KDB_WHY_TRAP;
449                 handled = kdb_trap(fsr, 0, tf);
450                 kdb_why = KDB_WHY_UNSET;
451                 if (handled)
452                         return (0);
453         }
454 #endif
455         panic("Fatal abort");
456         /*NOTREACHED*/
457 }
458
459 /*
460  * dab_align() handles the following data aborts:
461  *
462  *  FAULT_ALIGN_0 - Alignment fault
463  *  FAULT_ALIGN_1 - Alignment fault
464  *
465  * These faults are fatal if they happen in kernel mode. Otherwise, we
466  * deliver a bus error to the process.
467  */
468 static int
469 dab_align(struct trapframe *tf, u_int fsr, u_int far, struct thread *td,
470     struct ksig *ksig)
471 {
472
473         /* Alignment faults are always fatal if they occur in kernel mode */
474         if (!TRAP_USERMODE(tf)) {
475                 if (!td || !td->td_pcb->pcb_onfault)
476                         dab_fatal(tf, fsr, far, td, ksig);
477                 tf->tf_r0 = EFAULT;
478                 tf->tf_pc = (int)td->td_pcb->pcb_onfault;
479                 return (0);
480         }
481
482         /* pcb_onfault *must* be NULL at this point */
483
484         /* Deliver a bus error signal to the process */
485         ksig->code = 0;
486         ksig->signb = SIGBUS;
487         td->td_frame = tf;
488
489         return (1);
490 }
491
492 /*
493  * dab_buserr() handles the following data aborts:
494  *
495  *  FAULT_BUSERR_0 - External Abort on Linefetch -- Section
496  *  FAULT_BUSERR_1 - External Abort on Linefetch -- Page
497  *  FAULT_BUSERR_2 - External Abort on Non-linefetch -- Section
498  *  FAULT_BUSERR_3 - External Abort on Non-linefetch -- Page
499  *  FAULT_BUSTRNL1 - External abort on Translation -- Level 1
500  *  FAULT_BUSTRNL2 - External abort on Translation -- Level 2
501  *
502  * If pcb_onfault is set, flag the fault and return to the handler.
503  * If the fault occurred in user mode, give the process a SIGBUS.
504  *
505  * Note: On XScale, FAULT_BUSERR_0, FAULT_BUSERR_1, and FAULT_BUSERR_2
506  * can be flagged as imprecise in the FSR. This causes a real headache
507  * since some of the machine state is lost. In this case, tf->tf_pc
508  * may not actually point to the offending instruction. In fact, if
509  * we've taken a double abort fault, it generally points somewhere near
510  * the top of "data_abort_entry" in exception.S.
511  *
512  * In all other cases, these data aborts are considered fatal.
513  */
514 static int
515 dab_buserr(struct trapframe *tf, u_int fsr, u_int far, struct thread *td,
516     struct ksig *ksig)
517 {
518         struct pcb *pcb = td->td_pcb;
519
520 #ifdef __XSCALE__
521         if ((fsr & FAULT_IMPRECISE) != 0 &&
522             (tf->tf_spsr & PSR_MODE) == PSR_ABT32_MODE) {
523                 /*
524                  * Oops, an imprecise, double abort fault. We've lost the
525                  * r14_abt/spsr_abt values corresponding to the original
526                  * abort, and the spsr saved in the trapframe indicates
527                  * ABT mode.
528                  */
529                 tf->tf_spsr &= ~PSR_MODE;
530
531                 /*
532                  * We use a simple heuristic to determine if the double abort
533                  * happened as a result of a kernel or user mode access.
534                  * If the current trapframe is at the top of the kernel stack,
535                  * the fault _must_ have come from user mode.
536                  */
537                 if (tf != ((struct trapframe *)pcb->pcb_regs.sf_sp) - 1) {
538                         /*
539                          * Kernel mode. We're either about to die a
540                          * spectacular death, or pcb_onfault will come
541                          * to our rescue. Either way, the current value
542                          * of tf->tf_pc is irrelevant.
543                          */
544                         tf->tf_spsr |= PSR_SVC32_MODE;
545                         if (pcb->pcb_onfault == NULL)
546                                 printf("\nKernel mode double abort!\n");
547                 } else {
548                         /*
549                          * User mode. We've lost the program counter at the
550                          * time of the fault (not that it was accurate anyway;
551                          * it's not called an imprecise fault for nothing).
552                          * About all we can do is copy r14_usr to tf_pc and
553                          * hope for the best. The process is about to get a
554                          * SIGBUS, so it's probably history anyway.
555                          */
556                         tf->tf_spsr |= PSR_USR32_MODE;
557                         tf->tf_pc = tf->tf_usr_lr;
558                 }
559         }
560
561         /* FAR is invalid for imprecise exceptions */
562         if ((fsr & FAULT_IMPRECISE) != 0)
563                 far = 0;
564 #endif /* __XSCALE__ */
565
566         if (pcb->pcb_onfault) {
567                 tf->tf_r0 = EFAULT;
568                 tf->tf_pc = (register_t)(intptr_t) pcb->pcb_onfault;
569                 return (0);
570         }
571
572         /*
573          * At this point, if the fault happened in kernel mode, we're toast
574          */
575         if (!TRAP_USERMODE(tf))
576                 dab_fatal(tf, fsr, far, td, ksig);
577
578         /* Deliver a bus error signal to the process */
579         ksig->signb = SIGBUS;
580         ksig->code = 0;
581         td->td_frame = tf;
582
583         return (1);
584 }
585
586 /*
587  * void prefetch_abort_handler(struct trapframe *tf)
588  *
589  * Abort handler called when instruction execution occurs at
590  * a non existent or restricted (access permissions) memory page.
591  * If the address is invalid and we were in SVC mode then panic as
592  * the kernel should never prefetch abort.
593  * If the address is invalid and the page is mapped then the user process
594  * does no have read permission so send it a signal.
595  * Otherwise fault the page in and try again.
596  */
597 static void
598 prefetch_abort_handler(struct trapframe *tf)
599 {
600         struct thread *td;
601         struct proc * p;
602         struct vm_map *map;
603         vm_offset_t fault_pc, va;
604         int error = 0, signo, ucode;
605         struct ksig ksig;
606
607 #if 0
608         /* Update vmmeter statistics */
609         uvmexp.traps++;
610 #endif
611 #if 0
612         printf("prefetch abort handler: %p %p\n", (void*)tf->tf_pc,
613             (void*)tf->tf_usr_lr);
614 #endif
615
616         td = curthread;
617         p = td->td_proc;
618         VM_CNT_INC(v_trap);
619
620         if (TRAP_USERMODE(tf)) {
621                 td->td_frame = tf;
622                 if (td->td_cowgen != td->td_proc->p_cowgen)
623                         thread_cow_update(td);
624         }
625         fault_pc = tf->tf_pc;
626         if (td->td_md.md_spinlock_count == 0) {
627                 if (__predict_true(tf->tf_spsr & PSR_I) == 0)
628                         enable_interrupts(PSR_I);
629                 if (__predict_true(tf->tf_spsr & PSR_F) == 0)
630                         enable_interrupts(PSR_F);
631         }
632
633         /* Prefetch aborts cannot happen in kernel mode */
634         if (__predict_false(!TRAP_USERMODE(tf)))
635                 dab_fatal(tf, 0, tf->tf_pc, NULL, &ksig);
636         td->td_pticks = 0;
637
638         /* Ok validate the address, can only execute in USER space */
639         if (__predict_false(fault_pc >= VM_MAXUSER_ADDRESS ||
640             (fault_pc < VM_MIN_ADDRESS && vector_page == ARM_VECTORS_LOW))) {
641                 signo = SIGSEGV;
642                 ucode = 0;
643                 goto do_trapsignal;
644         }
645
646         map = &td->td_proc->p_vmspace->vm_map;
647         va = trunc_page(fault_pc);
648
649         /*
650          * See if the pmap can handle this fault on its own...
651          */
652 #ifdef DEBUG
653         last_fault_code = -1;
654 #endif
655         if (pmap_fault_fixup(map->pmap, va, VM_PROT_READ, 1))
656                 goto out;
657
658         error = vm_fault_trap(map, va, VM_PROT_READ | VM_PROT_EXECUTE,
659             VM_FAULT_NORMAL, &signo, &ucode);
660         if (__predict_true(error == KERN_SUCCESS))
661                 goto out;
662
663 do_trapsignal:
664         call_trapsignal(td, signo, ucode);
665
666 out:
667         userret(td, tf);
668
669 }
670
671 extern int badaddr_read_1(const uint8_t *, uint8_t *);
672 extern int badaddr_read_2(const uint16_t *, uint16_t *);
673 extern int badaddr_read_4(const uint32_t *, uint32_t *);
674 /*
675  * Tentatively read an 8, 16, or 32-bit value from 'addr'.
676  * If the read succeeds, the value is written to 'rptr' and zero is returned.
677  * Else, return EFAULT.
678  */
679 int
680 badaddr_read(void *addr, size_t size, void *rptr)
681 {
682         union {
683                 uint8_t v1;
684                 uint16_t v2;
685                 uint32_t v4;
686         } u;
687         int rv;
688
689         cpu_drain_writebuf();
690
691         /* Read from the test address. */
692         switch (size) {
693         case sizeof(uint8_t):
694                 rv = badaddr_read_1(addr, &u.v1);
695                 if (rv == 0 && rptr)
696                         *(uint8_t *) rptr = u.v1;
697                 break;
698
699         case sizeof(uint16_t):
700                 rv = badaddr_read_2(addr, &u.v2);
701                 if (rv == 0 && rptr)
702                         *(uint16_t *) rptr = u.v2;
703                 break;
704
705         case sizeof(uint32_t):
706                 rv = badaddr_read_4(addr, &u.v4);
707                 if (rv == 0 && rptr)
708                         *(uint32_t *) rptr = u.v4;
709                 break;
710
711         default:
712                 panic("badaddr: invalid size (%lu)", (u_long) size);
713         }
714
715         /* Return EFAULT if the address was invalid, else zero */
716         return (rv);
717 }