ioremap.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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/slab.h>
  18. #include <linux/mm.h>
  19. #include <linux/pci.h>
  20. #include <linux/io.h>
  21. #include <asm/io_trapped.h>
  22. #include <asm/page.h>
  23. #include <asm/pgalloc.h>
  24. #include <asm/addrspace.h>
  25. #include <asm/cacheflush.h>
  26. #include <asm/tlbflush.h>
  27. #include <asm/mmu.h>
  28. #include "ioremap.h"
  29. /*
  30. * On 32-bit SH, we traditionally have the whole physical address space mapped
  31. * at all times (as MIPS does), so "ioremap()" and "iounmap()" do not need to do
  32. * anything but place the address in the proper segment. This is true for P1
  33. * and P2 addresses, as well as some P3 ones. However, most of the P3 addresses
  34. * and newer cores using extended addressing need to map through page tables, so
  35. * the ioremap() implementation becomes a bit more complicated.
  36. */
  37. #ifdef CONFIG_29BIT
  38. static void __iomem *
  39. __ioremap_29bit(phys_addr_t offset, unsigned long size, pgprot_t prot)
  40. {
  41. phys_addr_t last_addr = offset + size - 1;
  42. /*
  43. * For P1 and P2 space this is trivial, as everything is already
  44. * mapped. Uncached access for P1 addresses are done through P2.
  45. * In the P3 case or for addresses outside of the 29-bit space,
  46. * mapping must be done by the PMB or by using page tables.
  47. */
  48. if (likely(PXSEG(offset) < P3SEG && PXSEG(last_addr) < P3SEG)) {
  49. u64 flags = pgprot_val(prot);
  50. /*
  51. * Anything using the legacy PTEA space attributes needs
  52. * to be kicked down to page table mappings.
  53. */
  54. if (unlikely(flags & _PAGE_PCC_MASK))
  55. return NULL;
  56. if (unlikely(flags & _PAGE_CACHABLE))
  57. return (void __iomem *)P1SEGADDR(offset);
  58. return (void __iomem *)P2SEGADDR(offset);
  59. }
  60. /* P4 above the store queues are always mapped. */
  61. if (unlikely(offset >= P3_ADDR_MAX))
  62. return (void __iomem *)P4SEGADDR(offset);
  63. return NULL;
  64. }
  65. #else
  66. #define __ioremap_29bit(offset, size, prot) NULL
  67. #endif /* CONFIG_29BIT */
  68. /*
  69. * Remap an arbitrary physical address space into the kernel virtual
  70. * address space. Needed when the kernel wants to access high addresses
  71. * directly.
  72. *
  73. * NOTE! We need to allow non-page-aligned mappings too: we will obviously
  74. * have to convert them into an offset in a page-aligned mapping, but the
  75. * caller shouldn't need to know that small detail.
  76. */
  77. void __iomem * __ref
  78. __ioremap_caller(phys_addr_t phys_addr, unsigned long size,
  79. pgprot_t pgprot, void *caller)
  80. {
  81. struct vm_struct *area;
  82. unsigned long offset, last_addr, addr, orig_addr;
  83. void __iomem *mapped;
  84. mapped = __ioremap_trapped(phys_addr, size);
  85. if (mapped)
  86. return mapped;
  87. mapped = __ioremap_29bit(phys_addr, size, pgprot);
  88. if (mapped)
  89. return mapped;
  90. /* Don't allow wraparound or zero size */
  91. last_addr = phys_addr + size - 1;
  92. if (!size || last_addr < phys_addr)
  93. return NULL;
  94. /*
  95. * If we can't yet use the regular approach, go the fixmap route.
  96. */
  97. if (!mem_init_done)
  98. return ioremap_fixed(phys_addr, size, pgprot);
  99. /*
  100. * First try to remap through the PMB.
  101. * PMB entries are all pre-faulted.
  102. */
  103. mapped = pmb_remap_caller(phys_addr, size, pgprot, caller);
  104. if (mapped && !IS_ERR(mapped))
  105. return mapped;
  106. /*
  107. * Mappings have to be page-aligned
  108. */
  109. offset = phys_addr & ~PAGE_MASK;
  110. phys_addr &= PAGE_MASK;
  111. size = PAGE_ALIGN(last_addr+1) - phys_addr;
  112. /*
  113. * Ok, go for it..
  114. */
  115. area = get_vm_area_caller(size, VM_IOREMAP, caller);
  116. if (!area)
  117. return NULL;
  118. area->phys_addr = phys_addr;
  119. orig_addr = addr = (unsigned long)area->addr;
  120. if (ioremap_page_range(addr, addr + size, phys_addr, pgprot)) {
  121. vunmap((void *)orig_addr);
  122. return NULL;
  123. }
  124. return (void __iomem *)(offset + (char *)orig_addr);
  125. }
  126. EXPORT_SYMBOL(__ioremap_caller);
  127. /*
  128. * Simple checks for non-translatable mappings.
  129. */
  130. static inline int iomapping_nontranslatable(unsigned long offset)
  131. {
  132. #ifdef CONFIG_29BIT
  133. /*
  134. * In 29-bit mode this includes the fixed P1/P2 areas, as well as
  135. * parts of P3.
  136. */
  137. if (PXSEG(offset) < P3SEG || offset >= P3_ADDR_MAX)
  138. return 1;
  139. #endif
  140. return 0;
  141. }
  142. void iounmap(void __iomem *addr)
  143. {
  144. unsigned long vaddr = (unsigned long __force)addr;
  145. struct vm_struct *p;
  146. /*
  147. * Nothing to do if there is no translatable mapping.
  148. */
  149. if (iomapping_nontranslatable(vaddr))
  150. return;
  151. /*
  152. * There's no VMA if it's from an early fixed mapping.
  153. */
  154. if (iounmap_fixed(addr) == 0)
  155. return;
  156. /*
  157. * If the PMB handled it, there's nothing else to do.
  158. */
  159. if (pmb_unmap(addr) == 0)
  160. return;
  161. p = remove_vm_area((void *)(vaddr & PAGE_MASK));
  162. if (!p) {
  163. printk(KERN_ERR "%s: bad address %p\n", __func__, addr);
  164. return;
  165. }
  166. kfree(p);
  167. }
  168. EXPORT_SYMBOL(iounmap);