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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: loadmmu.c,v 1.56 2000/02/08 20:24:21 davem Exp $
  2.  * loadmmu.c:  This code loads up all the mm function pointers once the
  3.  *             machine type has been determined.  It also sets the static
  4.  *             mmu values such as PAGE_NONE, etc.
  5.  *
  6.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  7.  * Copyright (C) 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  8.  */
  9. #include <linux/kernel.h>
  10. #include <linux/mm.h>
  11. #include <linux/init.h>
  12. #include <asm/system.h>
  13. #include <asm/page.h>
  14. #include <asm/pgtable.h>
  15. #include <asm/a.out.h>
  16. #include <asm/mmu_context.h>
  17. #include <asm/oplib.h>
  18. struct ctx_list *ctx_list_pool;
  19. struct ctx_list ctx_free;
  20. struct ctx_list ctx_used;
  21. unsigned int pg_iobits;
  22. extern void ld_mmu_sun4c(void);
  23. extern void ld_mmu_srmmu(void);
  24. extern void ioport_init(void);
  25. void __init load_mmu(void)
  26. {
  27. switch(sparc_cpu_model) {
  28. case sun4c:
  29. case sun4:
  30. ld_mmu_sun4c();
  31. break;
  32. case sun4m:
  33. case sun4d:
  34. ld_mmu_srmmu();
  35. break;
  36. default:
  37. prom_printf("load_mmu: %d unsupportedn", (int)sparc_cpu_model);
  38. prom_halt();
  39. }
  40. btfixup();
  41. ioport_init();
  42. }