blob: 235c3868dacc8a2255fb8637bd398de5980672e1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mm/fault.c
3 *
4 * Copyright (C) 1995 Linus Torvalds
5 * Modifications for ARM processor (c) 1995-2004 Russell King
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/mm.h>
Russell King67306da2008-12-14 18:01:44 +000014#include <linux/hardirq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/init.h>
Nicolas Pitre25ce1dd2007-12-03 15:21:57 -050016#include <linux/kprobes.h>
Russell King33fa9b12008-09-06 11:35:55 +010017#include <linux/uaccess.h>
Nicolas Pitre252d4c22008-09-11 11:52:02 -040018#include <linux/page-flags.h>
Catalin Marinas412bb0a2009-07-24 12:37:09 +010019#include <linux/sched.h>
Russell King65cec8e2009-08-17 20:02:06 +010020#include <linux/highmem.h>
Jamie Iles7ada1892010-02-02 20:24:58 +010021#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Jamie Iles5a567d72011-10-08 11:20:42 +010023#include <asm/exception.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/pgtable.h>
David Howells9f97da72012-03-28 18:30:01 +010025#include <asm/system_misc.h>
26#include <asm/system_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/tlbflush.h>
Stepan Moskovchenko00da0742011-07-08 14:06:44 -070028#include <asm/cputype.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070029#if defined(CONFIG_ARCH_MSM_SCORPION) && !defined(CONFIG_MSM_SMP)
30#include <asm/io.h>
31#include <mach/msm_iomap.h>
32#endif
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "fault.h"
35
Pushkar Joshiabbb2662012-09-07 14:22:58 -070036#define CREATE_TRACE_POINTS
37#include <trace/events/exception.h>
38
Catalin Marinas09529f72009-07-24 12:34:55 +010039#ifdef CONFIG_MMU
Nicolas Pitre25ce1dd2007-12-03 15:21:57 -050040
41#ifdef CONFIG_KPROBES
42static inline int notify_page_fault(struct pt_regs *regs, unsigned int fsr)
43{
44 int ret = 0;
45
46 if (!user_mode(regs)) {
47 /* kprobe_running() needs smp_processor_id() */
48 preempt_disable();
49 if (kprobe_running() && kprobe_fault_handler(regs, fsr))
50 ret = 1;
51 preempt_enable();
52 }
53
54 return ret;
55}
56#else
57static inline int notify_page_fault(struct pt_regs *regs, unsigned int fsr)
58{
59 return 0;
60}
61#endif
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
64 * This is useful to dump out the page tables associated with
65 * 'addr' in mm 'mm'.
66 */
67void show_pte(struct mm_struct *mm, unsigned long addr)
68{
69 pgd_t *pgd;
70
71 if (!mm)
72 mm = &init_mm;
73
74 printk(KERN_ALERT "pgd = %p\n", mm->pgd);
75 pgd = pgd_offset(mm, addr);
Will Deacon29a38192011-02-15 14:31:37 +010076 printk(KERN_ALERT "[%08lx] *pgd=%08llx",
77 addr, (long long)pgd_val(*pgd));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 do {
Russell King516295e2010-11-21 16:27:49 +000080 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 pmd_t *pmd;
82 pte_t *pte;
83
84 if (pgd_none(*pgd))
85 break;
86
87 if (pgd_bad(*pgd)) {
88 printk("(bad)");
89 break;
90 }
91
Russell King516295e2010-11-21 16:27:49 +000092 pud = pud_offset(pgd, addr);
93 if (PTRS_PER_PUD != 1)
Catalin Marinas140d5dc2011-07-13 16:32:58 +010094 printk(", *pud=%08llx", (long long)pud_val(*pud));
Russell King516295e2010-11-21 16:27:49 +000095
96 if (pud_none(*pud))
97 break;
98
99 if (pud_bad(*pud)) {
100 printk("(bad)");
101 break;
102 }
103
104 pmd = pmd_offset(pud, addr);
Nicolas Pitreda46c792008-09-30 16:10:11 +0100105 if (PTRS_PER_PMD != 1)
Will Deacon29a38192011-02-15 14:31:37 +0100106 printk(", *pmd=%08llx", (long long)pmd_val(*pmd));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 if (pmd_none(*pmd))
109 break;
110
111 if (pmd_bad(*pmd)) {
112 printk("(bad)");
113 break;
114 }
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 /* We must not map this if we have highmem enabled */
Nicolas Pitre252d4c22008-09-11 11:52:02 -0400117 if (PageHighMem(pfn_to_page(pmd_val(*pmd) >> PAGE_SHIFT)))
118 break;
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 pte = pte_offset_map(pmd, addr);
Will Deacon29a38192011-02-15 14:31:37 +0100121 printk(", *pte=%08llx", (long long)pte_val(*pte));
Catalin Marinasf7b81562011-11-22 17:30:31 +0000122#ifndef CONFIG_ARM_LPAE
Will Deacon29a38192011-02-15 14:31:37 +0100123 printk(", *ppte=%08llx",
124 (long long)pte_val(pte[PTE_HWTABLE_PTRS]));
Catalin Marinasf7b81562011-11-22 17:30:31 +0000125#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 pte_unmap(pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 } while(0);
128
129 printk("\n");
130}
Catalin Marinas09529f72009-07-24 12:34:55 +0100131#else /* CONFIG_MMU */
132void show_pte(struct mm_struct *mm, unsigned long addr)
133{ }
134#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136/*
137 * Oops. The kernel tried to access some page that wasn't present.
138 */
139static void
140__do_kernel_fault(struct mm_struct *mm, unsigned long addr, unsigned int fsr,
141 struct pt_regs *regs)
142{
143 /*
144 * Are we prepared to handle this kernel fault?
145 */
146 if (fixup_exception(regs))
147 return;
148
149 /*
150 * No handler, we'll have to terminate things with extreme prejudice.
151 */
152 bust_spinlocks(1);
153 printk(KERN_ALERT
154 "Unable to handle kernel %s at virtual address %08lx\n",
155 (addr < PAGE_SIZE) ? "NULL pointer dereference" :
156 "paging request", addr);
157
158 show_pte(mm, addr);
159 die("Oops", regs, fsr);
160 bust_spinlocks(0);
161 do_exit(SIGKILL);
162}
163
164/*
165 * Something tried to access memory that isn't in our memory map..
166 * User mode accesses just cause a SIGSEGV
167 */
168static void
169__do_user_fault(struct task_struct *tsk, unsigned long addr,
akpm@osdl.org2d137c22005-04-16 15:23:55 -0700170 unsigned int fsr, unsigned int sig, int code,
171 struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
173 struct siginfo si;
174
Pushkar Joshiabbb2662012-09-07 14:22:58 -0700175 trace_user_fault(tsk, addr, fsr);
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#ifdef CONFIG_DEBUG_USER
Javi Merinof5274c22012-02-06 15:45:36 +0100178 if (((user_debug & UDBG_SEGV) && (sig == SIGSEGV)) ||
179 ((user_debug & UDBG_BUS) && (sig == SIGBUS))) {
akpm@osdl.org2d137c22005-04-16 15:23:55 -0700180 printk(KERN_DEBUG "%s: unhandled page fault (%d) at 0x%08lx, code 0x%03x\n",
181 tsk->comm, sig, addr, fsr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 show_pte(tsk->mm, addr);
183 show_regs(regs);
184 }
185#endif
186
187 tsk->thread.address = addr;
188 tsk->thread.error_code = fsr;
189 tsk->thread.trap_no = 14;
akpm@osdl.org2d137c22005-04-16 15:23:55 -0700190 si.si_signo = sig;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 si.si_errno = 0;
192 si.si_code = code;
193 si.si_addr = (void __user *)addr;
akpm@osdl.org2d137c22005-04-16 15:23:55 -0700194 force_sig_info(sig, &si, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
Russell Kinge5beac32006-09-27 16:13:48 +0100197void do_bad_area(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Russell Kinge5beac32006-09-27 16:13:48 +0100199 struct task_struct *tsk = current;
200 struct mm_struct *mm = tsk->active_mm;
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /*
203 * If we are in kernel mode at this point, we
204 * have no context to handle this fault with.
205 */
206 if (user_mode(regs))
akpm@osdl.org2d137c22005-04-16 15:23:55 -0700207 __do_user_fault(tsk, addr, fsr, SIGSEGV, SEGV_MAPERR, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 else
209 __do_kernel_fault(mm, addr, fsr, regs);
210}
211
Catalin Marinas09529f72009-07-24 12:34:55 +0100212#ifdef CONFIG_MMU
Nick Piggin5c72fc52007-07-20 09:21:06 +0200213#define VM_FAULT_BADMAP 0x010000
214#define VM_FAULT_BADACCESS 0x020000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Russell Kingd374bf12009-09-20 12:53:01 +0100216/*
217 * Check that the permissions on the VMA allow for the fault which occurred.
218 * If we encountered a write fault, we must have write permission, otherwise
219 * we allow any permission.
220 */
221static inline bool access_error(unsigned int fsr, struct vm_area_struct *vma)
222{
223 unsigned int mask = VM_READ | VM_WRITE | VM_EXEC;
224
225 if (fsr & FSR_WRITE)
226 mask = VM_WRITE;
Russell Kingdf297bf2009-09-20 13:18:47 +0100227 if (fsr & FSR_LNX_PF)
228 mask = VM_EXEC;
Russell Kingd374bf12009-09-20 12:53:01 +0100229
230 return vma->vm_flags & mask ? false : true;
231}
232
233static int __kprobes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234__do_page_fault(struct mm_struct *mm, unsigned long addr, unsigned int fsr,
Kautuk Consul8878a532011-11-27 17:49:50 +0100235 unsigned int flags, struct task_struct *tsk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 struct vm_area_struct *vma;
Russell Kingd374bf12009-09-20 12:53:01 +0100238 int fault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 vma = find_vma(mm, addr);
241 fault = VM_FAULT_BADMAP;
Russell Kingd374bf12009-09-20 12:53:01 +0100242 if (unlikely(!vma))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto out;
Russell Kingd374bf12009-09-20 12:53:01 +0100244 if (unlikely(vma->vm_start > addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 goto check_stack;
246
247 /*
248 * Ok, we have a good vm_area for this
249 * memory access, so we can handle it.
250 */
251good_area:
Russell Kingd374bf12009-09-20 12:53:01 +0100252 if (access_error(fsr, vma)) {
253 fault = VM_FAULT_BADACCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 goto out;
Russell Kingd374bf12009-09-20 12:53:01 +0100255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Kautuk Consul8878a532011-11-27 17:49:50 +0100257 return handle_mm_fault(mm, vma, addr & PAGE_MASK, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259check_stack:
Russell King9b61a4d2012-05-16 15:19:20 +0100260 /* Don't allow expansion below FIRST_USER_ADDRESS */
261 if (vma->vm_flags & VM_GROWSDOWN &&
262 addr >= FIRST_USER_ADDRESS && !expand_stack(vma, addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 goto good_area;
264out:
265 return fault;
266}
267
Nicolas Pitre785d3cd2007-12-03 15:27:56 -0500268static int __kprobes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269do_page_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
270{
271 struct task_struct *tsk;
272 struct mm_struct *mm;
akpm@osdl.org2d137c22005-04-16 15:23:55 -0700273 int fault, sig, code;
Kautuk Consul8878a532011-11-27 17:49:50 +0100274 int write = fsr & FSR_WRITE;
275 unsigned int flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE |
276 (write ? FAULT_FLAG_WRITE : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Nicolas Pitre25ce1dd2007-12-03 15:21:57 -0500278 if (notify_page_fault(regs, fsr))
279 return 0;
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 tsk = current;
282 mm = tsk->mm;
283
Russell King02fe2842011-06-25 11:44:06 +0100284 /* Enable interrupts if they were enabled in the parent context. */
285 if (interrupts_enabled(regs))
286 local_irq_enable();
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /*
289 * If we're in an interrupt or have no user
290 * context, we must not take the fault..
291 */
Peter Zijlstra6edaf682006-12-06 20:32:18 -0800292 if (in_atomic() || !mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 goto no_context;
294
Russell King840ff6a2005-09-20 17:52:13 +0100295 /*
296 * As per x86, we may deadlock here. However, since the kernel only
297 * validly references user space from well defined areas of the code,
298 * we can bug out early if this is from code which shouldn't.
299 */
300 if (!down_read_trylock(&mm->mmap_sem)) {
301 if (!user_mode(regs) && !search_exception_tables(regs->ARM_pc))
302 goto no_context;
Kautuk Consul8878a532011-11-27 17:49:50 +0100303retry:
Russell King840ff6a2005-09-20 17:52:13 +0100304 down_read(&mm->mmap_sem);
Russell Kingbf456992009-09-20 12:52:19 +0100305 } else {
306 /*
307 * The above down_read_trylock() might have succeeded in
308 * which case, we'll have missed the might_sleep() from
309 * down_read()
310 */
311 might_sleep();
Imre Deak1d212712009-10-05 13:40:44 +0100312#ifdef CONFIG_DEBUG_VM
313 if (!user_mode(regs) &&
314 !search_exception_tables(regs->ARM_pc))
315 goto no_context;
316#endif
Russell King840ff6a2005-09-20 17:52:13 +0100317 }
318
Kautuk Consul8878a532011-11-27 17:49:50 +0100319 fault = __do_page_fault(mm, addr, fsr, flags, tsk);
320
321 /* If we need to retry but a fatal signal is pending, handle the
322 * signal first. We do not need to release the mmap_sem because
323 * it would already be released in __lock_page_or_retry in
324 * mm/filemap.c. */
325 if ((fault & VM_FAULT_RETRY) && fatal_signal_pending(current))
326 return 0;
327
328 /*
329 * Major/minor page fault accounting is only done on the
330 * initial attempt. If we go through a retry, it is extremely
331 * likely that the page will be found in page cache at that point.
332 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200334 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS, 1, regs, addr);
Kautuk Consuldff2aa72012-04-02 18:19:49 +0100335 if (!(fault & VM_FAULT_ERROR) && flags & FAULT_FLAG_ALLOW_RETRY) {
Kautuk Consul8878a532011-11-27 17:49:50 +0100336 if (fault & VM_FAULT_MAJOR) {
337 tsk->maj_flt++;
338 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MAJ, 1,
339 regs, addr);
340 } else {
341 tsk->min_flt++;
342 perf_sw_event(PERF_COUNT_SW_PAGE_FAULTS_MIN, 1,
343 regs, addr);
344 }
345 if (fault & VM_FAULT_RETRY) {
346 /* Clear FAULT_FLAG_ALLOW_RETRY to avoid any risk
347 * of starvation. */
348 flags &= ~FAULT_FLAG_ALLOW_RETRY;
349 goto retry;
350 }
351 }
352
353 up_read(&mm->mmap_sem);
Jamie Iles7ada1892010-02-02 20:24:58 +0100354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /*
Russell Kingff2afb92005-08-04 14:17:33 +0100356 * Handle the "normal" case first - VM_FAULT_MAJOR / VM_FAULT_MINOR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 */
Nick Piggin5c72fc52007-07-20 09:21:06 +0200358 if (likely(!(fault & (VM_FAULT_ERROR | VM_FAULT_BADMAP | VM_FAULT_BADACCESS))))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
360
Russell Kingb42c6342009-09-20 12:47:40 +0100361 if (fault & VM_FAULT_OOM) {
362 /*
363 * We ran out of memory, call the OOM killer, and return to
364 * userspace (which will retry the fault, or kill us if we
365 * got oom-killed)
366 */
367 pagefault_out_of_memory();
368 return 0;
369 }
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 * If we are in kernel mode at this point, we
373 * have no context to handle this fault with.
374 */
375 if (!user_mode(regs))
376 goto no_context;
377
Nick Piggin83c54072007-07-19 01:47:05 -0700378 if (fault & VM_FAULT_SIGBUS) {
akpm@osdl.org2d137c22005-04-16 15:23:55 -0700379 /*
380 * We had some memory, but were unable to
381 * successfully fix up this page fault.
382 */
383 sig = SIGBUS;
384 code = BUS_ADRERR;
Nick Piggin83c54072007-07-19 01:47:05 -0700385 } else {
akpm@osdl.org2d137c22005-04-16 15:23:55 -0700386 /*
387 * Something tried to access memory that
388 * isn't in our memory map..
389 */
390 sig = SIGSEGV;
391 code = fault == VM_FAULT_BADACCESS ?
392 SEGV_ACCERR : SEGV_MAPERR;
akpm@osdl.org2d137c22005-04-16 15:23:55 -0700393 }
394
395 __do_user_fault(tsk, addr, fsr, sig, code, regs);
396 return 0;
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398no_context:
399 __do_kernel_fault(mm, addr, fsr, regs);
400 return 0;
401}
Catalin Marinas09529f72009-07-24 12:34:55 +0100402#else /* CONFIG_MMU */
403static int
404do_page_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
405{
406 return 0;
407}
408#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410/*
411 * First Level Translation Fault Handler
412 *
413 * We enter here because the first level page table doesn't contain
414 * a valid entry for the address.
415 *
416 * If the address is in kernel space (>= TASK_SIZE), then we are
417 * probably faulting in the vmalloc() area.
418 *
419 * If the init_task's first level page tables contains the relevant
420 * entry, we copy the it to this task. If not, we send the process
421 * a signal, fixup the exception, or oops the kernel.
422 *
423 * NOTE! We MUST NOT take any locks for this case. We may be in an
424 * interrupt or a critical region, and should only copy the information
425 * from the master page table, nothing more.
426 */
Catalin Marinas09529f72009-07-24 12:34:55 +0100427#ifdef CONFIG_MMU
Nicolas Pitre785d3cd2007-12-03 15:27:56 -0500428static int __kprobes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429do_translation_fault(unsigned long addr, unsigned int fsr,
430 struct pt_regs *regs)
431{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 unsigned int index;
433 pgd_t *pgd, *pgd_k;
Russell King516295e2010-11-21 16:27:49 +0000434 pud_t *pud, *pud_k;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 pmd_t *pmd, *pmd_k;
436
437 if (addr < TASK_SIZE)
438 return do_page_fault(addr, fsr, regs);
439
Anfei5e27fb72010-06-08 15:16:49 +0100440 if (user_mode(regs))
441 goto bad_area;
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 index = pgd_index(addr);
444
445 /*
446 * FIXME: CP15 C1 is write only on ARMv3 architectures.
447 */
448 pgd = cpu_get_pgd() + index;
449 pgd_k = init_mm.pgd + index;
450
451 if (pgd_none(*pgd_k))
452 goto bad_area;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 if (!pgd_present(*pgd))
454 set_pgd(pgd, *pgd_k);
455
Russell King516295e2010-11-21 16:27:49 +0000456 pud = pud_offset(pgd, addr);
457 pud_k = pud_offset(pgd_k, addr);
458
459 if (pud_none(*pud_k))
460 goto bad_area;
461 if (!pud_present(*pud))
462 set_pud(pud, *pud_k);
463
464 pmd = pmd_offset(pud, addr);
465 pmd_k = pmd_offset(pud_k, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Catalin Marinasf7b81562011-11-22 17:30:31 +0000467#ifdef CONFIG_ARM_LPAE
468 /*
469 * Only one hardware entry per PMD with LPAE.
470 */
471 index = 0;
472#else
Kirill A. Shutemov33a9c412010-07-22 13:20:22 +0100473 /*
474 * On ARM one Linux PGD entry contains two hardware entries (see page
475 * tables layout in pgtable.h). We normally guarantee that we always
476 * fill both L1 entries. But create_mapping() doesn't follow the rule.
477 * It can create inidividual L1 entries, so here we have to call
478 * pmd_none() check for the entry really corresponded to address, not
479 * for the first of pair.
480 */
481 index = (addr >> SECTION_SHIFT) & 1;
Catalin Marinasf7b81562011-11-22 17:30:31 +0000482#endif
Kirill A. Shutemov33a9c412010-07-22 13:20:22 +0100483 if (pmd_none(pmd_k[index]))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 goto bad_area;
485
486 copy_pmd(pmd, pmd_k);
487 return 0;
488
489bad_area:
Russell Kinge5beac32006-09-27 16:13:48 +0100490 do_bad_area(addr, fsr, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return 0;
492}
Catalin Marinas09529f72009-07-24 12:34:55 +0100493#else /* CONFIG_MMU */
494static int
495do_translation_fault(unsigned long addr, unsigned int fsr,
496 struct pt_regs *regs)
497{
498 return 0;
499}
500#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502/*
503 * Some section permission faults need to be handled gracefully.
504 * They can happen due to a __{get,put}_user during an oops.
505 */
506static int
507do_sect_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
508{
Russell Kinge5beac32006-09-27 16:13:48 +0100509 do_bad_area(addr, fsr, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return 0;
511}
512
513/*
514 * This abort handler always returns "fault".
515 */
516static int
517do_bad(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
518{
519 return 1;
520}
521
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700522#if defined(CONFIG_ARCH_MSM_SCORPION) && !defined(CONFIG_MSM_SMP)
523#define __str(x) #x
524#define MRC(x, v1, v2, v4, v5, v6) do { \
525 unsigned int __##x; \
526 asm("mrc " __str(v1) ", " __str(v2) ", %0, " __str(v4) ", " \
527 __str(v5) ", " __str(v6) "\n" \
528 : "=r" (__##x)); \
529 pr_info("%s: %s = 0x%.8x\n", __func__, #x, __##x); \
530} while(0)
531
532#define MSM_TCSR_SPARE2 (MSM_TCSR_BASE + 0x60)
533
534#endif
535
Steve Mucklef132c6c2012-06-06 18:30:57 -0700536int
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700537do_imprecise_ext(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
538{
539#if defined(CONFIG_ARCH_MSM_SCORPION) && !defined(CONFIG_MSM_SMP)
540 MRC(ADFSR, p15, 0, c5, c1, 0);
541 MRC(DFSR, p15, 0, c5, c0, 0);
542 MRC(ACTLR, p15, 0, c1, c0, 1);
543 MRC(EFSR, p15, 7, c15, c0, 1);
544 MRC(L2SR, p15, 3, c15, c1, 0);
545 MRC(L2CR0, p15, 3, c15, c0, 1);
546 MRC(L2CPUESR, p15, 3, c15, c1, 1);
547 MRC(L2CPUCR, p15, 3, c15, c0, 2);
548 MRC(SPESR, p15, 1, c9, c7, 0);
549 MRC(SPCR, p15, 0, c9, c7, 0);
550 MRC(DMACHSR, p15, 1, c11, c0, 0);
551 MRC(DMACHESR, p15, 1, c11, c0, 1);
552 MRC(DMACHCR, p15, 0, c11, c0, 2);
553
554 /* clear out EFSR and ADFSR after fault */
555 asm volatile ("mcr p15, 7, %0, c15, c0, 1\n\t"
556 "mcr p15, 0, %0, c5, c1, 0"
557 : : "r" (0));
558#endif
559#if defined(CONFIG_ARCH_MSM_SCORPION) && !defined(CONFIG_MSM_SMP)
560 pr_info("%s: TCSR_SPARE2 = 0x%.8x\n", __func__, readl(MSM_TCSR_SPARE2));
561#endif
562 return 1;
563}
564
Catalin Marinas136848d2011-11-22 17:30:28 +0000565struct fsr_info {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 int (*fn)(unsigned long addr, unsigned int fsr, struct pt_regs *regs);
567 int sig;
Russell Kingcfb08102005-06-30 11:06:49 +0100568 int code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570};
571
Catalin Marinas136848d2011-11-22 17:30:28 +0000572/* FSR definition */
Catalin Marinasf7b81562011-11-22 17:30:31 +0000573#ifdef CONFIG_ARM_LPAE
574#include "fsr-3level.c"
575#else
Catalin Marinas136848d2011-11-22 17:30:28 +0000576#include "fsr-2level.c"
Catalin Marinasf7b81562011-11-22 17:30:31 +0000577#endif
Catalin Marinas136848d2011-11-22 17:30:28 +0000578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579void __init
580hook_fault_code(int nr, int (*fn)(unsigned long, unsigned int, struct pt_regs *),
Kirill A. Shutemov6338a6a2010-07-22 13:18:19 +0100581 int sig, int code, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
Kirill A. Shutemov6338a6a2010-07-22 13:18:19 +0100583 if (nr < 0 || nr >= ARRAY_SIZE(fsr_info))
584 BUG();
585
586 fsr_info[nr].fn = fn;
587 fsr_info[nr].sig = sig;
588 fsr_info[nr].code = code;
589 fsr_info[nr].name = name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Stepan Moskovchenko00da0742011-07-08 14:06:44 -0700592#ifdef CONFIG_MSM_KRAIT_TBB_ABORT_HANDLER
593static int krait_tbb_fixup(unsigned int fsr, struct pt_regs *regs)
594{
595 int base_cond, cond = 0;
596 unsigned int p1, cpsr_z, cpsr_c, cpsr_n, cpsr_v;
597
598 if ((read_cpuid_id() & 0xFFFFFFFC) != 0x510F04D0)
599 return 0;
600
601 if (!thumb_mode(regs))
602 return 0;
603
604 /* If ITSTATE is 0, return quickly */
605 if ((regs->ARM_cpsr & PSR_IT_MASK) == 0)
606 return 0;
607
608 cpsr_n = (regs->ARM_cpsr & PSR_N_BIT) ? 1 : 0;
609 cpsr_z = (regs->ARM_cpsr & PSR_Z_BIT) ? 1 : 0;
610 cpsr_c = (regs->ARM_cpsr & PSR_C_BIT) ? 1 : 0;
611 cpsr_v = (regs->ARM_cpsr & PSR_V_BIT) ? 1 : 0;
612
613 p1 = (regs->ARM_cpsr & BIT(12)) ? 1 : 0;
614
615 base_cond = (regs->ARM_cpsr >> 13) & 0x07;
616
617 switch (base_cond) {
618 case 0x0: /* equal */
619 cond = cpsr_z;
620 break;
621
622 case 0x1: /* carry set */
623 cond = cpsr_c;
624 break;
625
626 case 0x2: /* minus / negative */
627 cond = cpsr_n;
628 break;
629
630 case 0x3: /* overflow */
631 cond = cpsr_v;
632 break;
633
634 case 0x4: /* unsigned higher */
635 cond = (cpsr_c == 1) && (cpsr_z == 0);
636 break;
637
638 case 0x5: /* signed greater / equal */
639 cond = (cpsr_n == cpsr_v);
640 break;
641
642 case 0x6: /* signed greater */
643 cond = (cpsr_z == 0) && (cpsr_n == cpsr_v);
644 break;
645
646 case 0x7: /* always */
647 cond = 1;
648 break;
649 };
650
651 if (cond == p1) {
652 pr_debug("Conditional abort fixup, PC=%08x, base=%d, cond=%d\n",
653 (unsigned int) regs->ARM_pc, base_cond, cond);
654 regs->ARM_pc += 2;
655 return 1;
656 }
657 return 0;
658}
659#endif
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661/*
662 * Dispatch a data abort to the relevant handler.
663 */
Russell King7ab3f8d2007-03-02 15:01:36 +0000664asmlinkage void __exception
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665do_DataAbort(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
666{
Russell Kingc88d6aa2009-09-20 12:41:58 +0100667 const struct fsr_info *inf = fsr_info + fsr_fs(fsr);
Russell Kingcfb08102005-06-30 11:06:49 +0100668 struct siginfo info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
Stepan Moskovchenko00da0742011-07-08 14:06:44 -0700670#ifdef CONFIG_MSM_KRAIT_TBB_ABORT_HANDLER
671 if (krait_tbb_fixup(fsr, regs))
672 return;
673#endif
674
Russell Kingdf297bf2009-09-20 13:18:47 +0100675 if (!inf->fn(addr, fsr & ~FSR_LNX_PF, regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return;
677
678 printk(KERN_ALERT "Unhandled fault: %s (0x%03x) at 0x%08lx\n",
679 inf->name, fsr, addr);
Russell Kingcfb08102005-06-30 11:06:49 +0100680
681 info.si_signo = inf->sig;
682 info.si_errno = 0;
683 info.si_code = inf->code;
684 info.si_addr = (void __user *)addr;
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700685 arm_notify_die("", regs, &info, fsr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Will Deacon3a4b5dc2010-09-03 10:39:59 +0100688void __init
689hook_ifault_code(int nr, int (*fn)(unsigned long, unsigned int, struct pt_regs *),
690 int sig, int code, const char *name)
691{
692 if (nr < 0 || nr >= ARRAY_SIZE(ifsr_info))
693 BUG();
694
695 ifsr_info[nr].fn = fn;
696 ifsr_info[nr].sig = sig;
697 ifsr_info[nr].code = code;
698 ifsr_info[nr].name = name;
699}
700
Russell King7ab3f8d2007-03-02 15:01:36 +0000701asmlinkage void __exception
Kirill A. Shutemov4fb28472009-09-25 13:39:47 +0100702do_PrefetchAbort(unsigned long addr, unsigned int ifsr, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Kirill A. Shutemovd25ef8b2009-09-25 13:40:49 +0100704 const struct fsr_info *inf = ifsr_info + fsr_fs(ifsr);
705 struct siginfo info;
706
707 if (!inf->fn(addr, ifsr | FSR_LNX_PF, regs))
708 return;
709
710 printk(KERN_ALERT "Unhandled prefetch abort: %s (0x%03x) at 0x%08lx\n",
711 inf->name, ifsr, addr);
712
713 info.si_signo = inf->sig;
714 info.si_errno = 0;
715 info.si_code = inf->code;
716 info.si_addr = (void __user *)addr;
717 arm_notify_die("", regs, &info, ifsr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
Catalin Marinasf7b81562011-11-22 17:30:31 +0000720#ifndef CONFIG_ARM_LPAE
Kirill A. Shutemov993bf4e2010-07-22 13:23:25 +0100721static int __init exceptions_init(void)
722{
723 if (cpu_architecture() >= CPU_ARCH_ARMv6) {
724 hook_fault_code(4, do_translation_fault, SIGSEGV, SEGV_MAPERR,
725 "I-cache maintenance fault");
726 }
727
Kirill A. Shutemovb8ab5392010-07-26 11:20:41 +0100728 if (cpu_architecture() >= CPU_ARCH_ARMv7) {
729 /*
730 * TODO: Access flag faults introduced in ARMv6K.
731 * Runtime check for 'K' extension is needed
732 */
733 hook_fault_code(3, do_bad, SIGSEGV, SEGV_MAPERR,
734 "section access flag fault");
735 hook_fault_code(6, do_bad, SIGSEGV, SEGV_MAPERR,
736 "section access flag fault");
737 }
738
Kirill A. Shutemov993bf4e2010-07-22 13:23:25 +0100739 return 0;
740}
741
742arch_initcall(exceptions_init);
Catalin Marinasf7b81562011-11-22 17:30:31 +0000743#endif