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

嵌入式Linux

开发平台:

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/sgialib.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_mm)(struct mm_struct *mm);
  25. void (*_flush_cache_range)(struct mm_struct *mm, unsigned long start,
  26.                            unsigned long end);
  27. void (*_flush_cache_page)(struct vm_area_struct *vma, unsigned long page);
  28. void (*_flush_page_to_ram)(struct page * page);
  29. /* MIPS specific cache operations */
  30. void (*_flush_cache_sigtramp)(unsigned long addr);
  31. void (*_flush_cache_l2)(void);
  32. void (*_flush_cache_l1)(void);
  33. /* DMA cache operations. */
  34. void (*_dma_cache_wback_inv)(unsigned long start, unsigned long size);
  35. void (*_dma_cache_wback)(unsigned long start, unsigned long size);
  36. void (*_dma_cache_inv)(unsigned long start, unsigned long size);
  37. /* TLB operations. */
  38. void (*_flush_tlb_all)(void);
  39. void (*_flush_tlb_mm)(struct mm_struct *mm);
  40. void (*_flush_tlb_range)(struct mm_struct *mm, unsigned long start,
  41. unsigned long end);
  42. void (*_flush_tlb_page)(struct vm_area_struct *vma, unsigned long page);
  43. /* Miscellaneous. */
  44. void (*update_mmu_cache)(struct vm_area_struct * vma,
  45.  unsigned long address, pte_t pte);
  46. void (*_show_regs)(struct pt_regs *);
  47. extern void ld_mmu_r4xx0(void);
  48. extern void ld_mmu_andes(void);
  49. void __init load_mmu(void)
  50. {
  51. switch(mips_cputype) {
  52. #if defined (CONFIG_CPU_R4300)
  53.     || defined (CONFIG_CPU_R4X00)
  54.     || defined (CONFIG_CPU_R5000)
  55.     || defined (CONFIG_CPU_NEVADA)
  56. case CPU_R4000PC:
  57. case CPU_R4000SC:
  58. case CPU_R4000MC:
  59. case CPU_R4200:
  60. case CPU_R4300:
  61. case CPU_R4400PC:
  62. case CPU_R4400SC:
  63. case CPU_R4400MC:
  64. case CPU_R4600:
  65. case CPU_R4640:
  66. case CPU_R4650:
  67. case CPU_R4700:
  68. case CPU_R5000:
  69. case CPU_R5000A:
  70. case CPU_NEVADA:
  71. printk("Loading R4000 MMU routines.n");
  72. ld_mmu_r4xx0();
  73. break;
  74. #endif
  75. #if defined (CONFIG_CPU_R10000)
  76. case CPU_R10000:
  77. printk("Loading R10000 MMU routines.n");
  78. ld_mmu_andes();
  79. break;
  80. #endif
  81. default:
  82. /* XXX We need an generic routine in the MIPS port
  83.  * XXX to jabber stuff onto the screen on all machines
  84.  * XXX before the console is setup.  The ARCS prom
  85.  * XXX routines look good for this, but only the SGI
  86.  * XXX code has a full library for that at this time.
  87.  */
  88. panic("Yeee, unsupported mmu/cache architecture or "
  89.       "wrong compiletime kernel configuration.");
  90. }
  91. }