4xx_mmu.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: %F% %I% %G% %U% %#%
  3.  */
  4. /*
  5.  * This file contains the routines for initializing the MMU
  6.  * on the 4xx series of chips.
  7.  *  -- paulus
  8.  * 
  9.  *  Derived from arch/ppc/mm/init.c:
  10.  *    Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
  11.  *
  12.  *  Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
  13.  *  and Cort Dougan (PReP) (cort@cs.nmt.edu)
  14.  *    Copyright (C) 1996 Paul Mackerras
  15.  *  Amiga/APUS changes by Jesper Skov (jskov@cygnus.co.uk).
  16.  *
  17.  *  Derived from "arch/i386/mm/init.c"
  18.  *    Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
  19.  *
  20.  *  This program is free software; you can redistribute it and/or
  21.  *  modify it under the terms of the GNU General Public License
  22.  *  as published by the Free Software Foundation; either version
  23.  *  2 of the License, or (at your option) any later version.
  24.  *
  25.  */
  26. #include <linux/config.h>
  27. #include <linux/signal.h>
  28. #include <linux/sched.h>
  29. #include <linux/kernel.h>
  30. #include <linux/errno.h>
  31. #include <linux/string.h>
  32. #include <linux/types.h>
  33. #include <linux/ptrace.h>
  34. #include <linux/mman.h>
  35. #include <linux/mm.h>
  36. #include <linux/swap.h>
  37. #include <linux/stddef.h>
  38. #include <linux/vmalloc.h>
  39. #include <linux/init.h>
  40. #include <linux/delay.h>
  41. #include <linux/bootmem.h>
  42. #include <linux/highmem.h>
  43. #include <asm/pgalloc.h>
  44. #include <asm/prom.h>
  45. #include <asm/io.h>
  46. #include <asm/mmu_context.h>
  47. #include <asm/pgtable.h>
  48. #include <asm/mmu.h>
  49. #include <asm/uaccess.h>
  50. #include <asm/smp.h>
  51. #include <asm/bootx.h>
  52. #include <asm/machdep.h>
  53. #include <asm/setup.h>
  54. /* Used by the 4xx TLB replacement exception handler.
  55.  * Just needed it declared someplace (and initialized to zero).
  56.  */
  57. unsigned int tlb_4xx_index;
  58. /*
  59.  * MMU_init_hw does the chip-specific initialization of the MMU hardware.
  60.  */
  61. void __init MMU_init_hw(void)
  62. {
  63. /*
  64.  * The Zone Protection Register (ZPR) defines how protection will
  65.  * be applied to every page which is a member of a given zone. At
  66.  * present, we utilize only two of the 4xx's zones.
  67.  * The zone index bits (of ZSEL) in the PTE are used for software
  68.  * indicators, except the LSB.  For user access, zone 1 is used,
  69.  * for kernel access, zone 0 is used.  We set all but zone 1
  70.  * to zero, allowing only kernel access as indicated in the PTE.
  71.  * For zone 1, we set a 01 binary (a value of 10 will not work)
  72.  * to allow user access as indicated in the PTE.  This also allows
  73.  * kernel access as indicated in the PTE.
  74.  */
  75.         mtspr(SPRN_ZPR, 0x10000000);
  76. flush_instruction_cache();
  77. /*
  78.  * Set up the real-mode cache parameters for the exception vector
  79.  * handlers (which are run in real-mode).
  80.  */
  81.         mtspr(SPRN_DCWR, 0x00000000); /* All caching is write-back */
  82.         /*
  83.  * Cache instruction and data space where the exception
  84.  * vectors and the kernel live in real-mode.
  85.  */
  86.         mtspr(SPRN_DCCR, 0x80000000); /* 128 MB of data space at 0x0. */
  87.         mtspr(SPRN_ICCR, 0x80000000); /* 128 MB of instr. space at 0x0. */
  88. }