kmap.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * linux/arch/m68knommu/mm/kmap.c
  3. *
  4. * Copyright (C) 2000 Lineo, <davidm@snapgear.com>
  5. * Copyright (C) 2000-2002 David McCullough <davidm@snapgear.com>
  6. */
  7. #include <linux/mm.h>
  8. #include <linux/kernel.h>
  9. #include <linux/string.h>
  10. #include <linux/types.h>
  11. #include <linux/slab.h>
  12. #include <linux/vmalloc.h>
  13. #include <asm/setup.h>
  14. #include <asm/segment.h>
  15. #include <asm/page.h>
  16. #include <asm/pgalloc.h>
  17. #include <asm/io.h>
  18. #include <asm/system.h>
  19. #undef DEBUG
  20. /*
  21. * Map some physical address range into the kernel address space.
  22. */
  23. void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag)
  24. {
  25. return (void *)physaddr;
  26. }
  27. /*
  28. * Unmap a ioremap()ed region again.
  29. */
  30. void iounmap(void *addr)
  31. {
  32. }
  33. /*
  34. * __iounmap unmaps nearly everything, so be careful
  35. * it doesn't free currently pointer/page tables anymore but it
  36. * wans't used anyway and might be added later.
  37. */
  38. void __iounmap(void *addr, unsigned long size)
  39. {
  40. }
  41. /*
  42. * Set new cache mode for some kernel address space.
  43. * The caller must push data for that range itself, if such data may already
  44. * be in the cache.
  45. */
  46. void kernel_set_cachemode(void *addr, unsigned long size, int cmode)
  47. {
  48. }