kmap.c 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* kmap.c: ioremapping handlers
  2. *
  3. * Copyright (C) 2003-5 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. * - Derived from arch/m68k/mm/kmap.c
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. */
  12. #include <linux/config.h>
  13. #include <linux/mm.h>
  14. #include <linux/kernel.h>
  15. #include <linux/string.h>
  16. #include <linux/types.h>
  17. #include <linux/vmalloc.h>
  18. #include <asm/setup.h>
  19. #include <asm/segment.h>
  20. #include <asm/page.h>
  21. #include <asm/pgalloc.h>
  22. #include <asm/io.h>
  23. #include <asm/system.h>
  24. #undef DEBUG
  25. /*****************************************************************************/
  26. /*
  27. * Map some physical address range into the kernel address space.
  28. */
  29. void *__ioremap(unsigned long physaddr, unsigned long size, int cacheflag)
  30. {
  31. return (void *)physaddr;
  32. }
  33. /*
  34. * Unmap a ioremap()ed region again
  35. */
  36. void iounmap(void *addr)
  37. {
  38. }
  39. /*
  40. * __iounmap unmaps nearly everything, so be careful
  41. * it doesn't free currently pointer/page tables anymore but it
  42. * wans't used anyway and might be added later.
  43. */
  44. void __iounmap(void *addr, unsigned long size)
  45. {
  46. }
  47. /*
  48. * Set new cache mode for some kernel address space.
  49. * The caller must push data for that range itself, if such data may already
  50. * be in the cache.
  51. */
  52. void kernel_set_cachemode(void *addr, unsigned long size, int cmode)
  53. {
  54. }