2 * arch/sh/mm/tlb-pteaex.c
4 * TLB operations for SH-X3 CPUs featuring PTE ASID Extensions.
6 * Copyright (C) 2009 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/kernel.h>
15 #include <asm/mmu_context.h>
16 #include <asm/cacheflush.h>
18 void __update_tlb(struct vm_area_struct
*vma
, unsigned long address
, pte_t pte
)
20 unsigned long flags
, pteval
, vpn
;
23 * Handle debugger faulting in for debugee.
25 if (vma
&& current
->active_mm
!= vma
->vm_mm
)
28 local_irq_save(flags
);
30 /* Set PTEH register */
31 vpn
= address
& MMU_VPN_MASK
;
32 __raw_writel(vpn
, MMU_PTEH
);
35 __raw_writel(get_asid(), MMU_PTEAEX
);
39 /* Set PTEA register */
42 * For the extended mode TLB this is trivial, only the ESZ and
43 * EPR bits need to be written out to PTEA, with the remainder of
44 * the protection bits (with the exception of the compat-mode SZ
45 * and PR bits, which are cleared) being written out in PTEL.
47 __raw_writel(pte
.pte_high
, MMU_PTEA
);
50 /* Set PTEL register */
51 pteval
&= _PAGE_FLAGS_HARDWARE_MASK
; /* drop software flags */
52 #ifdef CONFIG_CACHE_WRITETHROUGH
55 /* conveniently, we want all the software flags to be 0 anyway */
56 __raw_writel(pteval
, MMU_PTEL
);
59 asm volatile("ldtlb": /* no output */ : /* no input */ : "memory");
60 local_irq_restore(flags
);
64 * While SH-X2 extended TLB mode splits out the memory-mapped I/UTLB
65 * data arrays, SH-X3 cores with PTEAEX split out the memory-mapped
66 * address arrays. In compat mode the second array is inaccessible, while
67 * in extended mode, the legacy 8-bit ASID field in address array 1 has
68 * undefined behaviour.
70 void local_flush_tlb_one(unsigned long asid
, unsigned long page
)
73 __raw_writel(page
, MMU_UTLB_ADDRESS_ARRAY
| MMU_PAGE_ASSOC_BIT
);
74 __raw_writel(asid
, MMU_UTLB_ADDRESS_ARRAY2
| MMU_PAGE_ASSOC_BIT
);
75 __raw_writel(page
, MMU_ITLB_ADDRESS_ARRAY
| MMU_PAGE_ASSOC_BIT
);
76 __raw_writel(asid
, MMU_ITLB_ADDRESS_ARRAY2
| MMU_PAGE_ASSOC_BIT
);
80 void local_flush_tlb_all(void)
82 unsigned long flags
, status
;
88 local_irq_save(flags
);
91 status
= __raw_readl(MMUCR
);
92 status
= ((status
& MMUCR_URB
) >> MMUCR_URB_SHIFT
);
95 status
= MMUCR_URB_NENTRIES
;
97 for (i
= 0; i
< status
; i
++)
98 __raw_writel(0x0, MMU_UTLB_ADDRESS_ARRAY
| (i
<< 8));
100 for (i
= 0; i
< 4; i
++)
101 __raw_writel(0x0, MMU_ITLB_ADDRESS_ARRAY
| (i
<< 8));
105 local_irq_restore(flags
);