ioremap-nommu.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * linux/arch/m32r/mm/ioremap-nommu.c
  3. *
  4. * Copyright (c) 2001, 2002 Hiroyuki Kondo
  5. *
  6. * Taken from mips version.
  7. * (C) Copyright 1995 1996 Linus Torvalds
  8. * (C) Copyright 2001 Ralf Baechle
  9. */
  10. /*
  11. * This file is subject to the terms and conditions of the GNU General Public
  12. * License. See the file "COPYING" in the main directory of this archive
  13. * for more details.
  14. *
  15. */
  16. #include <linux/module.h>
  17. #include <asm/addrspace.h>
  18. #include <asm/byteorder.h>
  19. #include <linux/vmalloc.h>
  20. #include <asm/io.h>
  21. #include <asm/pgalloc.h>
  22. #include <asm/cacheflush.h>
  23. #include <asm/tlbflush.h>
  24. /*
  25. * Remap an arbitrary physical address space into the kernel virtual
  26. * address space. Needed when the kernel wants to access high addresses
  27. * directly.
  28. *
  29. * NOTE! We need to allow non-page-aligned mappings too: we will obviously
  30. * have to convert them into an offset in a page-aligned mapping, but the
  31. * caller shouldn't need to know that small detail.
  32. */
  33. #define IS_LOW512(addr) (!((unsigned long)(addr) & ~0x1fffffffUL))
  34. void __iomem *
  35. __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flags)
  36. {
  37. return (void *)phys_addr;
  38. }
  39. #define IS_KSEG1(addr) (((unsigned long)(addr) & ~0x1fffffffUL) == KSEG1)
  40. void iounmap(volatile void __iomem *addr)
  41. {
  42. }