kmap.c 1.2 KB

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