mmu_context.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: %F% %I% %G% %U% %#%
  3.  */
  4. /*
  5.  * This file contains the routines for handling the MMU on those
  6.  * PowerPC implementations where the MMU substantially follows the
  7.  * architecture specification.  This includes the 6xx, 7xx, 7xxx,
  8.  * 8260, and POWER3 implementations but excludes the 8xx and 4xx.
  9.  * Although the iSeries hardware does comply with the architecture
  10.  * specification, the need to work through the hypervisor makes
  11.  * things sufficiently different that it is handled elsewhere.
  12.  *  -- paulus
  13.  * 
  14.  *  Derived from arch/ppc/mm/init.c:
  15.  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
  16.  *
  17.  *  Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
  18.  *  and Cort Dougan (PReP) (cort@cs.nmt.edu)
  19.  *    Copyright (C) 1996 Paul Mackerras
  20.  *  Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk).
  21.  *
  22.  *  Derived from "arch/i386/mm/init.c"
  23.  *    Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
  24.  *
  25.  *  This program is free software; you can redistribute it and/or
  26.  *  modify it under the terms of the GNU General Public License
  27.  *  as published by the Free Software Foundation; either version
  28.  *  2 of the License, or (at your option) any later version.
  29.  *
  30.  */
  31. #include <linux/config.h>
  32. #include <linux/mm.h>
  33. #include <linux/init.h>
  34. #include <asm/mmu_context.h>
  35. mm_context_t next_mmu_context;
  36. unsigned long context_map[LAST_CONTEXT / BITS_PER_LONG + 1];
  37. #ifdef FEW_CONTEXTS
  38. atomic_t nr_free_contexts;
  39. struct mm_struct *context_mm[LAST_CONTEXT+1];
  40. void steal_context(void);
  41. #endif /* FEW_CONTEXTS */
  42. /*
  43.  * Initialize the context management stuff.
  44.  */
  45. void __init mmu_context_init(void)
  46. {
  47. /*
  48.  * Some processors have too few contexts to reserve one for
  49.  * init_mm, and require using context 0 for a normal task.
  50.  * Other processors reserve the use of context zero for the kernel.
  51.  * This code assumes FIRST_CONTEXT < 32.
  52.  */
  53. context_map[0] = (1 << FIRST_CONTEXT) - 1;
  54. next_mmu_context = FIRST_CONTEXT;
  55. #ifdef FEW_CONTEXTS
  56. atomic_set(&nr_free_contexts, LAST_CONTEXT - FIRST_CONTEXT + 1);
  57. #endif /* FEW_CONTEXTS */
  58. }
  59. #ifdef FEW_CONTEXTS
  60. /*
  61.  * Steal a context from a task that has one at the moment.
  62.  * This is only used on 8xx and 4xx and we presently assume that
  63.  * they don't do SMP.  If they do then this will have to check
  64.  * whether the MM we steal is in use.
  65.  * We also assume that this is only used on systems that don't
  66.  * use an MMU hash table - this is true for 8xx and 4xx.
  67.  * This isn't an LRU system, it just frees up each context in
  68.  * turn (sort-of pseudo-random replacement :).  This would be the
  69.  * place to implement an LRU scheme if anyone was motivated to do it.
  70.  *  -- paulus
  71.  */
  72. void steal_context(void)
  73. {
  74. struct mm_struct *mm;
  75. /* free up context `next_mmu_context' */
  76. /* if we shouldn't free context 0, don't... */
  77. if (next_mmu_context < FIRST_CONTEXT)
  78. next_mmu_context = FIRST_CONTEXT;
  79. mm = context_mm[next_mmu_context];
  80. flush_tlb_mm(mm);
  81. destroy_context(mm);
  82. }
  83. #endif /* FEW_CONTEXTS */