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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  7.  * Copyright (C) 1997, 1999 Ralf Baechle (ralf@gnu.org)
  8.  * Copyright (C) 1999 Silicon Graphics, Inc.
  9.  */
  10. #include <linux/config.h>
  11. #include <linux/init.h>
  12. #include <linux/kernel.h>
  13. #include <linux/sched.h>
  14. #include <linux/mm.h>
  15. #include <asm/page.h>
  16. #include <asm/pgtable.h>
  17. #include <asm/system.h>
  18. #include <asm/bootinfo.h>
  19. #include <asm/cpu.h>
  20. /* memory functions */
  21. void (*_clear_page)(void * page);
  22. void (*_copy_page)(void * to, void * from);
  23. /* Cache operations. */
  24. void (*_flush_cache_all)(void);
  25. void (*___flush_cache_all)(void);
  26. void (*_flush_cache_mm)(struct mm_struct *mm);
  27. void (*_flush_cache_range)(struct mm_struct *mm, unsigned long start,
  28.                            unsigned long end);
  29. void (*_flush_cache_page)(struct vm_area_struct *vma, unsigned long page);
  30. void (*_flush_cache_sigtramp)(unsigned long addr);
  31. void (*_flush_icache_range)(unsigned long start, unsigned long end);
  32. void (*_flush_icache_page)(struct vm_area_struct *vma, struct page *page);
  33. void (*_flush_page_to_ram)(struct page * page);
  34. void (*_flush_icache_all)(void);
  35. /* MIPS specific cache operations */
  36. void (*_flush_cache_l2)(void);
  37. void (*_flush_cache_l1)(void);
  38. /* DMA cache operations. */
  39. void (*_dma_cache_wback_inv)(unsigned long start, unsigned long size);
  40. void (*_dma_cache_wback)(unsigned long start, unsigned long size);
  41. void (*_dma_cache_inv)(unsigned long start, unsigned long size);
  42. /* Miscellaneous. */
  43. void (*_update_mmu_cache)(struct vm_area_struct * vma,
  44. unsigned long address, pte_t pte);
  45. extern void ld_mmu_r4xx0(void);
  46. extern void ld_mmu_andes(void);
  47. extern void ld_mmu_sb1(void);
  48. extern void sb1_tlb_init(void);
  49. extern void ld_mmu_mips64(void);
  50. extern void r4k_tlb_init(void);
  51. void __init load_mmu(void)
  52. {
  53. if (mips_cpu.options & MIPS_CPU_4KTLB) {
  54. #if defined (CONFIG_CPU_R4300)
  55.     || defined (CONFIG_CPU_R4X00)
  56.     || defined (CONFIG_CPU_R5000)
  57.     || defined (CONFIG_CPU_NEVADA)
  58. printk(KERN_INFO "Loading R4000 MMU routines.n");
  59. ld_mmu_r4xx0();
  60. #endif
  61. #if defined(CONFIG_CPU_MIPS64)
  62. printk(KERN_INFO "Loading MIPS64 MMU routines.n");
  63.                 ld_mmu_mips64();
  64. r4k_tlb_init();
  65. #endif
  66. } else switch(mips_cpu.cputype) {
  67. #ifdef CONFIG_CPU_R10000
  68. case CPU_R10000:
  69. case CPU_R12000:
  70. printk(KERN_INFO "Loading R10000 MMU routines.n");
  71. ld_mmu_andes();
  72. break;
  73. #endif
  74. #if defined CONFIG_CPU_SB1
  75. case CPU_SB1:
  76. printk(KERN_INFO "Loading SB1 MMU routines.n");
  77. ld_mmu_sb1();
  78. sb1_tlb_init();
  79. break;
  80. #endif
  81. case CPU_R8000:
  82. panic("R8000 is unsupported");
  83. break;
  84. default:
  85. /* XXX We need an generic routine in the MIPS port
  86.  * XXX to jabber stuff onto the screen on all machines
  87.  * XXX before the console is setup.  The ARCS prom
  88.  * XXX routines look good for this, but only the SGI
  89.  * XXX code has a full library for that at this time.
  90.  */
  91. panic("Yeee, unsupported mmu/cache architecture or "
  92.       "wrong compiletime kernel configuration.");
  93. }
  94. }