kmap.c 1.2 KB

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