]> git.karo-electronics.de Git - linux-beck.git/commitdiff
sh64: Migrate to __update_tlb() API.
authorPaul Mundt <lethal@linux-sh.org>
Mon, 14 May 2012 06:52:28 +0000 (15:52 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Mon, 14 May 2012 06:52:28 +0000 (15:52 +0900)
Now that we have a method for finding out if we're handling an ITLB fault
or not without passing it all the way down the chain, it's possible to
use the __update_tlb() interface in place of a special __do_tlb_refill().

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/mm/tlb-sh5.c
arch/sh/mm/tlbex_64.c
arch/sh/mm/tlbflush_64.c

index f27dbe1c15992ed3f5f74a431de1ceea710c29c6..3aea25dc431ae27e24547e3e8b2c9f455790e4f8 100644 (file)
@@ -182,3 +182,43 @@ void tlb_unwire_entry(void)
 
        local_irq_restore(flags);
 }
+
+void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte)
+{
+       unsigned long long ptel;
+       unsigned long long pteh=0;
+       struct tlb_info *tlbp;
+       unsigned long long next;
+       unsigned int fault_code = get_thread_fault_code();
+
+       /* Get PTEL first */
+       ptel = pte.pte_low;
+
+       /*
+        * Set PTEH register
+        */
+       pteh = neff_sign_extend(address & MMU_VPN_MASK);
+
+       /* Set the ASID. */
+       pteh |= get_asid() << PTEH_ASID_SHIFT;
+       pteh |= PTEH_VALID;
+
+       /* Set PTEL register, set_pte has performed the sign extension */
+       ptel &= _PAGE_FLAGS_HARDWARE_MASK; /* drop software flags */
+
+       if (fault_code & FAULT_CODE_ITLB)
+               tlbp = &cpu_data->itlb;
+       else
+               tlbp = &cpu_data->dtlb;
+
+       next = tlbp->next;
+       __flush_tlb_slot(next);
+       asm volatile ("putcfg %0,1,%2\n\n\t"
+                     "putcfg %0,0,%1\n"
+                     :  : "r" (next), "r" (pteh), "r" (ptel) );
+
+       next += TLB_STEP;
+       if (next > tlbp->last)
+               next = tlbp->first;
+       tlbp->next = next;
+}
index d15b9946650863a0228c6ea9094b2da0d825ff3a..98b64278f8c7b5fc7684d1801d41170820f4bf7b 100644 (file)
 #include <asm/uaccess.h>
 #include <asm/pgalloc.h>
 #include <asm/mmu_context.h>
-#include <cpu/registers.h>
-
-/* Callable from fault.c, so not static */
-inline void __do_tlb_refill(unsigned long address,
-                            unsigned long long is_text_not_data, pte_t *pte)
-{
-       unsigned long long ptel;
-       unsigned long long pteh=0;
-       struct tlb_info *tlbp;
-       unsigned long long next;
-
-       /* Get PTEL first */
-       ptel = pte_val(*pte);
-
-       /*
-        * Set PTEH register
-        */
-       pteh = neff_sign_extend(address & MMU_VPN_MASK);
-
-       /* Set the ASID. */
-       pteh |= get_asid() << PTEH_ASID_SHIFT;
-       pteh |= PTEH_VALID;
-
-       /* Set PTEL register, set_pte has performed the sign extension */
-       ptel &= _PAGE_FLAGS_HARDWARE_MASK; /* drop software flags */
-
-       tlbp = is_text_not_data ? &(cpu_data->itlb) : &(cpu_data->dtlb);
-       next = tlbp->next;
-       __flush_tlb_slot(next);
-       asm volatile ("putcfg %0,1,%2\n\n\t"
-                     "putcfg %0,0,%1\n"
-                     :  : "r" (next), "r" (pteh), "r" (ptel) );
-
-       next += TLB_STEP;
-       if (next > tlbp->last) next = tlbp->first;
-       tlbp->next = next;
-
-}
 
 static int handle_vmalloc_fault(struct mm_struct *mm,
                                unsigned long protection_flags,
-                                unsigned long long textaccess,
                                unsigned long address)
 {
        pgd_t *dir;
        pud_t *pud;
        pmd_t *pmd;
-       static pte_t *pte;
+       pte_t *pte;
        pte_t entry;
 
        dir = pgd_offset_k(address);
@@ -106,14 +67,13 @@ static int handle_vmalloc_fault(struct mm_struct *mm,
        if ((pte_val(entry) & protection_flags) != protection_flags)
                return 0;
 
-        __do_tlb_refill(address, textaccess, pte);
+       update_mmu_cache(NULL, address, pte);
 
        return 1;
 }
 
 static int handle_tlbmiss(struct mm_struct *mm,
                          unsigned long long protection_flags,
-                         unsigned long long textaccess,
                          unsigned long address)
 {
        pgd_t *dir;
@@ -165,7 +125,7 @@ static int handle_tlbmiss(struct mm_struct *mm,
        if ((pte_val(entry) & protection_flags) != protection_flags)
                return 0;
 
-        __do_tlb_refill(address, textaccess, pte);
+       update_mmu_cache(NULL, address, pte);
 
        return 1;
 }
@@ -210,7 +170,6 @@ asmlinkage int do_fast_page_fault(unsigned long long ssr_md,
 {
        struct task_struct *tsk;
        struct mm_struct *mm;
-       unsigned long long textaccess;
        unsigned long long protection_flags;
        unsigned long long index;
        unsigned long long expevt4;
@@ -229,8 +188,11 @@ asmlinkage int do_fast_page_fault(unsigned long long ssr_md,
         * that PRU is set when it needs to be. */
        index = expevt4 ^ (expevt4 >> 5);
        index &= 7;
+
        protection_flags = expevt_lookup_table.protection_flags[index];
-       textaccess       = expevt_lookup_table.is_text_access[index];
+
+       if (expevt_lookup_table.is_text_access[index])
+               set_thread_fault_code(FAULT_CODE_ITLB);
 
        /* SIM
         * Note this is now called with interrupts still disabled
@@ -252,11 +214,10 @@ asmlinkage int do_fast_page_fault(unsigned long long ssr_md,
                         * Process-contexts can never have this address
                         * range mapped
                         */
-                       if (handle_vmalloc_fault(mm, protection_flags,
-                                                textaccess, address))
+                       if (handle_vmalloc_fault(mm, protection_flags, address))
                                return 1;
        } else if (!in_interrupt() && mm) {
-               if (handle_tlbmiss(mm, protection_flags, textaccess, address))
+               if (handle_tlbmiss(mm, protection_flags, address))
                        return 1;
        }
 
index 908167bdfc040a4445edf12b9a4fcce9d90c938e..f33fdd2558e8ef74a56b2693e454e976f7c8cdbc 100644 (file)
@@ -170,7 +170,3 @@ void __flush_tlb_global(void)
 {
        flush_tlb_all();
 }
-
-void __update_tlb(struct vm_area_struct *vma, unsigned long address, pte_t pte)
-{
-}