blob: a4f7d3dcc6e6ff8d5028e6e60de4a8281b219702 [file] [log] [blame]
David Howellsb920de12008-02-08 04:19:31 -08001/* MN10300 MMU context allocation and management
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11#include <linux/sched.h>
12#include <linux/mm.h>
13#include <asm/mmu_context.h>
14#include <asm/tlbflush.h>
15
Akira Takeuchia9bc60e2010-10-27 17:28:49 +010016#ifdef CONFIG_MN10300_TLB_USE_PIDR
David Howellsb920de12008-02-08 04:19:31 -080017/*
18 * list of the MMU contexts last allocated on each CPU
19 */
20unsigned long mmu_context_cache[NR_CPUS] = {
Akira Takeuchia9bc60e2010-10-27 17:28:49 +010021 [0 ... NR_CPUS - 1] =
22 MMU_CONTEXT_FIRST_VERSION * 2 - (1 - MMU_CONTEXT_TLBPID_LOCK_NR),
David Howellsb920de12008-02-08 04:19:31 -080023};
Akira Takeuchia9bc60e2010-10-27 17:28:49 +010024#endif /* CONFIG_MN10300_TLB_USE_PIDR */
David Howellsb920de12008-02-08 04:19:31 -080025
26/*
27 * preemptively set a TLB entry
28 */
Russell King4b3073e2009-12-18 16:40:18 +000029void update_mmu_cache(struct vm_area_struct *vma, unsigned long addr, pte_t *ptep)
David Howellsb920de12008-02-08 04:19:31 -080030{
31 unsigned long pteu, ptel, cnx, flags;
Russell King4b3073e2009-12-18 16:40:18 +000032 pte_t pte = *ptep;
David Howellsb920de12008-02-08 04:19:31 -080033
34 addr &= PAGE_MASK;
35 ptel = pte_val(pte) & ~(xPTEL_UNUSED1 | xPTEL_UNUSED2);
36
37 /* make sure the context doesn't migrate and defend against
38 * interference from vmalloc'd regions */
39 local_irq_save(flags);
40
Akira Takeuchia9bc60e2010-10-27 17:28:49 +010041 cnx = ~MMU_NO_CONTEXT;
42#ifdef CONFIG_MN10300_TLB_USE_PIDR
David Howellsb920de12008-02-08 04:19:31 -080043 cnx = mm_context(vma->vm_mm);
Akira Takeuchia9bc60e2010-10-27 17:28:49 +010044#endif
David Howellsb920de12008-02-08 04:19:31 -080045
46 if (cnx != MMU_NO_CONTEXT) {
Akira Takeuchia9bc60e2010-10-27 17:28:49 +010047 pteu = addr;
48#ifdef CONFIG_MN10300_TLB_USE_PIDR
49 pteu |= cnx & MMU_CONTEXT_TLBPID_MASK;
50#endif
David Howellsb920de12008-02-08 04:19:31 -080051 if (!(pte_val(pte) & _PAGE_NX)) {
52 IPTEU = pteu;
53 if (IPTEL & xPTEL_V)
54 IPTEL = ptel;
55 }
56 DPTEU = pteu;
57 if (DPTEL & xPTEL_V)
58 DPTEL = ptel;
59 }
60
61 local_irq_restore(flags);
62}