ioremap.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * arch/sh/mm/ioremap.c
  3. *
  4. * (C) Copyright 1995 1996 Linus Torvalds
  5. * (C) Copyright 2005 - 2010 Paul Mundt
  6. *
  7. * Re-map IO memory to kernel address space so that we can access it.
  8. * This is needed for high PCI addresses that aren't mapped in the
  9. * 640k-1MB IO memory area on PC's
  10. *
  11. * This file is subject to the terms and conditions of the GNU General
  12. * Public License. See the file "COPYING" in the main directory of this
  13. * archive for more details.
  14. */
  15. #include <linux/vmalloc.h>
  16. #include <linux/module.h>
  17. #include <linux/mm.h>
  18. #include <linux/pci.h>
  19. #include <linux/io.h>
  20. #include <asm/page.h>
  21. #include <asm/pgalloc.h>
  22. #include <asm/addrspace.h>
  23. #include <asm/cacheflush.h>
  24. #include <asm/tlbflush.h>
  25. #include <asm/mmu.h>
  26. /*
  27. * Remap an arbitrary physical address space into the kernel virtual
  28. * address space. Needed when the kernel wants to access high addresses
  29. * directly.
  30. *
  31. * NOTE! We need to allow non-page-aligned mappings too: we will obviously
  32. * have to convert them into an offset in a page-aligned mapping, but the
  33. * caller shouldn't need to know that small detail.
  34. */
  35. void __iomem * __init_refok
  36. __ioremap_caller(unsigned long phys_addr, unsigned long size,
  37. pgprot_t pgprot, void *caller)
  38. {
  39. struct vm_struct *area;
  40. unsigned long offset, last_addr, addr, orig_addr;
  41. /* Don't allow wraparound or zero size */
  42. last_addr = phys_addr + size - 1;
  43. if (!size || last_addr < phys_addr)
  44. return NULL;
  45. /*
  46. * Mappings have to be page-aligned
  47. */
  48. offset = phys_addr & ~PAGE_MASK;
  49. phys_addr &= PAGE_MASK;
  50. size = PAGE_ALIGN(last_addr+1) - phys_addr;
  51. /*
  52. * If we can't yet use the regular approach, go the fixmap route.
  53. */
  54. if (!mem_init_done)
  55. return ioremap_fixed(phys_addr, offset, size, pgprot);
  56. /*
  57. * Ok, go for it..
  58. */
  59. area = get_vm_area_caller(size, VM_IOREMAP, caller);
  60. if (!area)
  61. return NULL;
  62. area->phys_addr = phys_addr;
  63. orig_addr = addr = (unsigned long)area->addr;
  64. #ifdef CONFIG_PMB
  65. /*
  66. * First try to remap through the PMB once a valid VMA has been
  67. * established. Smaller allocations (or the rest of the size
  68. * remaining after a PMB mapping due to the size not being
  69. * perfectly aligned on a PMB size boundary) are then mapped
  70. * through the UTLB using conventional page tables.
  71. *
  72. * PMB entries are all pre-faulted.
  73. */
  74. if (unlikely(phys_addr >= P1SEG)) {
  75. unsigned long mapped;
  76. mapped = pmb_remap(addr, phys_addr, size, pgprot);
  77. if (likely(mapped)) {
  78. addr += mapped;
  79. phys_addr += mapped;
  80. size -= mapped;
  81. }
  82. }
  83. #endif
  84. if (likely(size))
  85. if (ioremap_page_range(addr, addr + size, phys_addr, pgprot)) {
  86. vunmap((void *)orig_addr);
  87. return NULL;
  88. }
  89. return (void __iomem *)(offset + (char *)orig_addr);
  90. }
  91. EXPORT_SYMBOL(__ioremap_caller);
  92. /*
  93. * Simple checks for non-translatable mappings.
  94. */
  95. static inline int iomapping_nontranslatable(unsigned long offset)
  96. {
  97. #ifdef CONFIG_29BIT
  98. /*
  99. * In 29-bit mode this includes the fixed P1/P2 areas, as well as
  100. * parts of P3.
  101. */
  102. if (PXSEG(offset) < P3SEG || offset >= P3_ADDR_MAX)
  103. return 1;
  104. #endif
  105. return 0;
  106. }
  107. void __iounmap(void __iomem *addr)
  108. {
  109. unsigned long vaddr = (unsigned long __force)addr;
  110. struct vm_struct *p;
  111. /*
  112. * Nothing to do if there is no translatable mapping.
  113. */
  114. if (iomapping_nontranslatable(vaddr))
  115. return;
  116. /*
  117. * There's no VMA if it's from an early fixed mapping.
  118. */
  119. if (iounmap_fixed(addr) == 0)
  120. return;
  121. #ifdef CONFIG_PMB
  122. /*
  123. * Purge any PMB entries that may have been established for this
  124. * mapping, then proceed with conventional VMA teardown.
  125. *
  126. * XXX: Note that due to the way that remove_vm_area() does
  127. * matching of the resultant VMA, we aren't able to fast-forward
  128. * the address past the PMB space until the end of the VMA where
  129. * the page tables reside. As such, unmap_vm_area() will be
  130. * forced to linearly scan over the area until it finds the page
  131. * tables where PTEs that need to be unmapped actually reside,
  132. * which is far from optimal. Perhaps we need to use a separate
  133. * VMA for the PMB mappings?
  134. * -- PFM.
  135. */
  136. pmb_unmap(vaddr);
  137. #endif
  138. p = remove_vm_area((void *)(vaddr & PAGE_MASK));
  139. if (!p) {
  140. printk(KERN_ERR "%s: bad address %p\n", __func__, addr);
  141. return;
  142. }
  143. kfree(p);
  144. }
  145. EXPORT_SYMBOL(__iounmap);