The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/include/asm-mips64/mmu_context.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * Switch a MMU context.
    3  *
    4  * This file is subject to the terms and conditions of the GNU General Public
    5  * License.  See the file "COPYING" in the main directory of this archive
    6  * for more details.
    7  *
    8  * Copyright (C) 1996, 1997, 1998, 1999 by Ralf Baechle
    9  * Copyright (C) 1999 Silicon Graphics, Inc.
   10  */
   11 #ifndef _ASM_MMU_CONTEXT_H
   12 #define _ASM_MMU_CONTEXT_H
   13 
   14 #include <linux/config.h>
   15 #include <linux/slab.h>
   16 #include <asm/pgalloc.h>
   17 #include <asm/pgtable.h>
   18 
   19 /*
   20  * For the fast tlb miss handlers, we currently keep a per cpu array
   21  * of pointers to the current pgd for each processor. Also, the proc.
   22  * id is stuffed into the context register. This should be changed to
   23  * use the processor id via current->processor, where current is stored
   24  * in watchhi/lo. The context register should be used to contiguously
   25  * map the page tables.
   26  */
   27 #define TLBMISS_HANDLER_SETUP_PGD(pgd) \
   28         pgd_current[smp_processor_id()] = (unsigned long)(pgd)
   29 #define TLBMISS_HANDLER_SETUP() \
   30         write_c0_context(((long)(&pgd_current[smp_processor_id()])) << 23); \
   31         TLBMISS_HANDLER_SETUP_PGD(swapper_pg_dir)
   32 extern unsigned long pgd_current[];
   33 
   34 #define cpu_context(cpu, mm)    ((mm)->context[cpu])
   35 #define cpu_asid(cpu, mm)       (cpu_context((cpu), (mm)) & ASID_MASK)
   36 #define asid_cache(cpu)         (cpu_data[cpu].asid_cache)
   37 
   38 #define ASID_INC        0x1
   39 #define ASID_MASK       0xff
   40 
   41 static inline void enter_lazy_tlb(struct mm_struct *mm, struct task_struct *tsk, unsigned cpu)
   42 {
   43 }
   44 
   45 /*
   46  *  All unused by hardware upper bits will be considered
   47  *  as a software asid extension.
   48  */
   49 #define ASID_VERSION_MASK  ((unsigned long)~(ASID_MASK|(ASID_MASK-1)))
   50 #define ASID_FIRST_VERSION ((unsigned long)(~ASID_VERSION_MASK) + 1)
   51 
   52 static inline void
   53 get_new_mmu_context(struct mm_struct *mm, unsigned long cpu)
   54 {
   55         unsigned long asid = asid_cache(cpu);
   56 
   57         if (! ((asid += ASID_INC) & ASID_MASK) ) {
   58                 flush_icache_all();
   59                 local_flush_tlb_all();  /* start new asid cycle */
   60                 if (!asid)              /* fix version if needed */
   61                         asid = ASID_FIRST_VERSION;
   62         }
   63         cpu_context(cpu, mm) = asid_cache(cpu) = asid;
   64 }
   65 
   66 /*
   67  * Initialize the context related info for a new mm_struct
   68  * instance.
   69  */
   70 static inline int
   71 init_new_context(struct task_struct *tsk, struct mm_struct *mm)
   72 {
   73         int i;
   74 
   75         for (i = 0; i < smp_num_cpus; i++)
   76                 cpu_context(i, mm) = 0;
   77         return 0;
   78 }
   79 
   80 static inline void switch_mm(struct mm_struct *prev, struct mm_struct *next,
   81                              struct task_struct *tsk, unsigned cpu)
   82 {
   83         unsigned long flags;
   84 
   85         local_irq_save(flags);
   86 
   87         /* Check if our ASID is of an older version and thus invalid */
   88         if ((cpu_context(cpu, next) ^ asid_cache(cpu)) & ASID_VERSION_MASK)
   89                 get_new_mmu_context(next, cpu);
   90 
   91         write_c0_entryhi(cpu_context(cpu, next));
   92         TLBMISS_HANDLER_SETUP_PGD(next->pgd);
   93 
   94         /*
   95          * Mark current->active_mm as not "active" anymore.
   96          * We don't want to mislead possible IPI tlb flush routines.
   97          */
   98         clear_bit(cpu, &prev->cpu_vm_mask);
   99         set_bit(cpu, &next->cpu_vm_mask);
  100 
  101         local_irq_restore(flags);
  102 }
  103 
  104 /*
  105  * Destroy context related info for an mm_struct that is about
  106  * to be put to rest.
  107  */
  108 static inline void destroy_context(struct mm_struct *mm)
  109 {
  110 }
  111 
  112 /*
  113  * After we have set current->mm to a new value, this activates
  114  * the context for the new mm so we see the new mappings.
  115  */
  116 static inline void
  117 activate_mm(struct mm_struct *prev, struct mm_struct *next)
  118 {
  119         unsigned long flags;
  120         int cpu = smp_processor_id();
  121 
  122         local_irq_save(flags);
  123 
  124         /* Unconditionally get a new ASID.  */
  125         get_new_mmu_context(next, cpu);
  126 
  127         write_c0_entryhi(cpu_context(cpu, next));
  128         TLBMISS_HANDLER_SETUP_PGD(next->pgd);
  129 
  130         /* mark mmu ownership change */ 
  131         clear_bit(cpu, &prev->cpu_vm_mask);
  132         set_bit(cpu, &next->cpu_vm_mask);
  133 
  134         local_irq_restore(flags);
  135 }
  136 
  137 /*
  138  * If mm is currently active_mm, we can't really drop it.  Instead,
  139  * we will get a new one for it.
  140  */
  141 static inline void
  142 drop_mmu_context(struct mm_struct *mm, unsigned cpu)
  143 {
  144         unsigned long flags;
  145 
  146         local_irq_save(flags);
  147 
  148         if (test_bit(cpu, &mm->cpu_vm_mask))  {
  149                 get_new_mmu_context(mm, cpu);
  150                 write_c0_entryhi(cpu_asid(cpu, mm));
  151         } else {
  152                 /* will get a new context next time */
  153                 cpu_context(cpu, mm) = 0;
  154         }
  155 
  156         local_irq_restore(flags);
  157 }
  158 
  159 #endif /* _ASM_MMU_CONTEXT_H */

Cache object: 03059d1b0d2d3925b3d74a2b46505d41


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.