2 * arch/sh/mm/tlb-flush_64.c
4 * Copyright (C) 2000, 2001 Paolo Alberelli
5 * Copyright (C) 2003 Richard Curnow (/proc/tlb, bug fixes)
6 * Copyright (C) 2003 Paul Mundt
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
12 #include <linux/signal.h>
13 #include <linux/rwsem.h>
14 #include <linux/sched.h>
15 #include <linux/kernel.h>
16 #include <linux/errno.h>
17 #include <linux/string.h>
18 #include <linux/types.h>
19 #include <linux/ptrace.h>
20 #include <linux/mman.h>
22 #include <linux/smp.h>
23 #include <linux/interrupt.h>
24 #include <asm/system.h>
27 #include <asm/uaccess.h>
28 #include <asm/pgalloc.h>
29 #include <asm/mmu_context.h>
31 extern void die(const char *,struct pt_regs *,long);
33 #define PFLAG(val,flag) (( (val) & (flag) ) ? #flag : "" )
34 #define PPROT(flag) PFLAG(pgprot_val(prot),flag)
36 static inline void print_prots(pgprot_t prot)
38 printk("prot is 0x%08lx\n",pgprot_val(prot));
40 printk("%s %s %s %s %s\n",PPROT(_PAGE_SHARED),PPROT(_PAGE_READ),
41 PPROT(_PAGE_EXECUTE),PPROT(_PAGE_WRITE),PPROT(_PAGE_USER));
44 static inline void print_vma(struct vm_area_struct *vma)
46 printk("vma start 0x%08lx\n", vma->vm_start);
47 printk("vma end 0x%08lx\n", vma->vm_end);
49 print_prots(vma->vm_page_prot);
50 printk("vm_flags 0x%08lx\n", vma->vm_flags);
53 static inline void print_task(struct task_struct *tsk)
55 printk("Task pid %d\n", task_pid_nr(tsk));
58 static pte_t *lookup_pte(struct mm_struct *mm, unsigned long address)
66 dir = pgd_offset(mm, address);
70 pud = pud_offset(dir, address);
74 pmd = pmd_offset(pud, address);
78 pte = pte_offset_kernel(pmd, address);
80 if (pte_none(entry) || !pte_present(entry))
87 * This routine handles page faults. It determines the address,
88 * and the problem, and then passes it off to one of the appropriate
91 asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long writeaccess,
92 unsigned long textaccess, unsigned long address)
94 struct task_struct *tsk;
96 struct vm_area_struct * vma;
97 const struct exception_table_entry *fixup;
102 * Note this is now called with interrupts still disabled
103 * This is to cope with being called for a missing IO port
104 * address with interrupts disabled. This should be fixed as
105 * soon as we have a better 'fast path' miss handler.
107 * Plus take care how you try and debug this stuff.
108 * For example, writing debug data to a port which you
109 * have just faulted on is not going to work.
115 /* Not an IO address, so reenable interrupts */
119 * If we're in an interrupt or have no user
120 * context, we must not take the fault..
122 if (in_atomic() || !mm)
125 /* TLB misses upon some cache flushes get done under cli() */
126 down_read(&mm->mmap_sem);
128 vma = find_vma(mm, address);
133 printk("%s:%d fault, address is 0x%08x PC %016Lx textaccess %d writeaccess %d\n",
135 address,regs->pc,textaccess,writeaccess);
140 if (vma->vm_start <= address) {
144 if (!(vma->vm_flags & VM_GROWSDOWN)) {
147 printk("%s:%d fault, address is 0x%08x PC %016Lx textaccess %d writeaccess %d\n",
149 address,regs->pc,textaccess,writeaccess);
156 if (expand_stack(vma, address)) {
159 printk("%s:%d fault, address is 0x%08x PC %016Lx textaccess %d writeaccess %d\n",
161 address,regs->pc,textaccess,writeaccess);
167 * Ok, we have a good vm_area for this memory access, so
172 if (!(vma->vm_flags & VM_EXEC))
176 if (!(vma->vm_flags & VM_WRITE))
179 if (!(vma->vm_flags & VM_READ))
185 * If for any reason at all we couldn't handle the fault,
186 * make sure we exit gracefully rather than endlessly redo
190 fault = handle_mm_fault(mm, vma, address, writeaccess);
191 if (unlikely(fault & VM_FAULT_ERROR)) {
192 if (fault & VM_FAULT_OOM)
194 else if (fault & VM_FAULT_SIGBUS)
198 if (fault & VM_FAULT_MAJOR)
203 /* If we get here, the page fault has been handled. Do the TLB refill
204 now from the newly-setup PTE, to avoid having to fault again right
205 away on the same instruction. */
206 pte = lookup_pte (mm, address);
208 /* From empirical evidence, we can get here, due to
209 !pte_present(pte). (e.g. if a swap-in occurs, and the page
210 is swapped back out again before the process that wanted it
211 gets rescheduled?) */
215 __do_tlb_refill(address, textaccess, pte);
219 up_read(&mm->mmap_sem);
223 * Something tried to access memory that isn't in our memory map..
224 * Fix it, but check if it's kernel or user first..
228 printk("fault:bad area\n");
230 up_read(&mm->mmap_sem);
232 if (user_mode(regs)) {
236 /* This is really to help debug faults when starting
237 * usermode, so only need a few */
239 printk("user mode bad_area address=%08lx pid=%d (%s) pc=%08lx\n",
240 address, task_pid_nr(current), current->comm,
241 (unsigned long) regs->pc);
246 if (is_global_init(tsk)) {
247 panic("INIT had user mode bad_area\n");
249 tsk->thread.address = address;
250 tsk->thread.error_code = writeaccess;
251 info.si_signo = SIGSEGV;
253 info.si_addr = (void *) address;
254 force_sig_info(SIGSEGV, &info, tsk);
260 printk("fault:No context\n");
262 /* Are we prepared to handle this kernel fault? */
263 fixup = search_exception_tables(regs->pc);
265 regs->pc = fixup->fixup;
270 * Oops. The kernel tried to access some bad page. We'll have to
271 * terminate things with extreme prejudice.
274 if (address < PAGE_SIZE)
275 printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference");
277 printk(KERN_ALERT "Unable to handle kernel paging request");
278 printk(" at virtual address %08lx\n", address);
279 printk(KERN_ALERT "pc = %08Lx%08Lx\n", regs->pc >> 32, regs->pc & 0xffffffff);
280 die("Oops", regs, writeaccess);
284 * We ran out of memory, or some other thing happened to us that made
285 * us unable to handle the page fault gracefully.
288 if (is_global_init(current)) {
289 panic("INIT out of memory\n");
293 printk("fault:Out of memory\n");
294 up_read(&mm->mmap_sem);
295 if (is_global_init(current)) {
297 down_read(&mm->mmap_sem);
300 printk("VM: killing process %s\n", tsk->comm);
302 do_group_exit(SIGKILL);
306 printk("fault:Do sigbus\n");
307 up_read(&mm->mmap_sem);
310 * Send a sigbus, regardless of whether we were in kernel
313 tsk->thread.address = address;
314 tsk->thread.error_code = writeaccess;
315 tsk->thread.trap_no = 14;
316 force_sig(SIGBUS, tsk);
318 /* Kernel mode? Handle exceptions or die */
319 if (!user_mode(regs))
323 void update_mmu_cache(struct vm_area_struct * vma,
324 unsigned long address, pte_t pte)
327 * This appears to get called once for every pte entry that gets
328 * established => I don't think it's efficient to try refilling the
329 * TLBs with the pages - some may not get accessed even. Also, for
330 * executable pages, it is impossible to determine reliably here which
331 * TLB they should be mapped into (or both even).
333 * So, just do nothing here and handle faults on demand. In the
334 * TLBMISS handling case, the refill is now done anyway after the pte
335 * has been fixed up, so that deals with most useful cases.
339 void local_flush_tlb_one(unsigned long asid, unsigned long page)
341 unsigned long long match, pteh=0, lpage;
345 * Sign-extend based on neff.
347 lpage = (page & NEFF_SIGN) ? (page | NEFF_MASK) : page;
348 match = (asid << PTEH_ASID_SHIFT) | PTEH_VALID;
351 for_each_itlb_entry(tlb) {
352 asm volatile ("getcfg %1, 0, %0"
357 __flush_tlb_slot(tlb);
362 for_each_dtlb_entry(tlb) {
363 asm volatile ("getcfg %1, 0, %0"
368 __flush_tlb_slot(tlb);
375 void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long page)
381 local_irq_save(flags);
382 local_flush_tlb_one(get_asid(), page);
383 local_irq_restore(flags);
387 void local_flush_tlb_range(struct vm_area_struct *vma, unsigned long start,
391 unsigned long long match, pteh=0, pteh_epn, pteh_low;
393 unsigned int cpu = smp_processor_id();
394 struct mm_struct *mm;
397 if (cpu_context(cpu, mm) == NO_CONTEXT)
400 local_irq_save(flags);
405 match = (cpu_asid(cpu, mm) << PTEH_ASID_SHIFT) | PTEH_VALID;
408 for_each_itlb_entry(tlb) {
409 asm volatile ("getcfg %1, 0, %0"
413 pteh_epn = pteh & PAGE_MASK;
414 pteh_low = pteh & ~PAGE_MASK;
416 if (pteh_low == match && pteh_epn >= start && pteh_epn <= end)
417 __flush_tlb_slot(tlb);
421 for_each_dtlb_entry(tlb) {
422 asm volatile ("getcfg %1, 0, %0"
426 pteh_epn = pteh & PAGE_MASK;
427 pteh_low = pteh & ~PAGE_MASK;
429 if (pteh_low == match && pteh_epn >= start && pteh_epn <= end)
430 __flush_tlb_slot(tlb);
433 local_irq_restore(flags);
436 void local_flush_tlb_mm(struct mm_struct *mm)
439 unsigned int cpu = smp_processor_id();
441 if (cpu_context(cpu, mm) == NO_CONTEXT)
444 local_irq_save(flags);
446 cpu_context(cpu, mm) = NO_CONTEXT;
447 if (mm == current->mm)
448 activate_context(mm, cpu);
450 local_irq_restore(flags);
453 void local_flush_tlb_all(void)
455 /* Invalidate all, including shared pages, excluding fixed TLBs */
456 unsigned long flags, tlb;
458 local_irq_save(flags);
460 /* Flush each ITLB entry */
461 for_each_itlb_entry(tlb)
462 __flush_tlb_slot(tlb);
464 /* Flush each DTLB entry */
465 for_each_dtlb_entry(tlb)
466 __flush_tlb_slot(tlb);
468 local_irq_restore(flags);
471 void local_flush_tlb_kernel_range(unsigned long start, unsigned long end)
473 /* FIXME: Optimize this later.. */