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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: nosrmmu.c,v 1.5 1999/11/19 04:11:54 davem Exp $
  2.  * nosrmmu.c: This file is a bunch of dummies for sun4 compiles, 
  3.  *         so that it does not need srmmu and avoid ifdefs.
  4.  *
  5.  * Copyright (C) 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  6.  */
  7. #include <linux/kernel.h>
  8. #include <linux/mm.h>
  9. #include <linux/init.h>
  10. #include <asm/mbus.h>
  11. static char shouldnothappen[] __initdata = "SUN4 kernel can only run on SUN4n";
  12. enum mbus_module srmmu_modtype;
  13. int vac_cache_size = 0;
  14. static void __init should_not_happen(void)
  15. {
  16. prom_printf(shouldnothappen);
  17. prom_halt();
  18. }
  19. void __init srmmu_frob_mem_map(unsigned long start_mem)
  20. {
  21. should_not_happen();
  22. }
  23. unsigned long __init srmmu_paging_init(unsigned long start_mem, unsigned long end_mem)
  24. {
  25. should_not_happen();
  26. return 0;
  27. }
  28. void __init ld_mmu_srmmu(void)
  29. {
  30. should_not_happen();
  31. }
  32. void srmmu_mapioaddr(unsigned long physaddr, unsigned long virt_addr, int bus_type, int rdonly)
  33. {
  34. }
  35. void srmmu_unmapioaddr(unsigned long virt_addr)
  36. {
  37. }
  38. void __init srmmu_end_memory(unsigned long memory_size, unsigned long *mem_end_p)
  39. {
  40. return 0;
  41. }
  42. __u32 iounit_map_dma_init(struct sbus_bus *sbus, int size)
  43. {
  44. return 0;
  45. }
  46. __u32 iounit_map_dma_page(__u32 vaddr, void *addr, struct sbus_bus *sbus)
  47. {
  48. return 0;
  49. }