ioremap.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mm/ioremap.c
  3.  *
  4.  * Re-map IO memory to kernel address space so that we can access it.
  5.  *
  6.  * (C) Copyright 1995 1996 Linus Torvalds
  7.  *
  8.  * Hacked for ARM by Phil Blundell <philb@gnu.org>
  9.  * Hacked to allow all architectures to build, and various cleanups
  10.  * by Russell King
  11.  */
  12. /*
  13.  * This allows a driver to remap an arbitrary region of bus memory into
  14.  * virtual space.  One should *only* use readl, writel, memcpy_toio and
  15.  * so on with such remapped areas.
  16.  *
  17.  * Because the ARM only has a 32-bit address space we can't address the
  18.  * whole of the (physical) PCI space at once.  PCI huge-mode addressing
  19.  * allows us to circumvent this restriction by splitting PCI space into
  20.  * two 2GB chunks and mapping only one at a time into processor memory.
  21.  * We use MMU protection domains to trap any attempt to access the bank
  22.  * that is not currently mapped.  (This isn't fully implemented yet.)
  23.  *
  24.  * DC21285 currently has a bug in that the PCI address extension
  25.  * register affects the address of any writes waiting in the outbound
  26.  * FIFO.  Unfortunately, it is not possible to tell the DC21285 to
  27.  * flush this - flushing the area causes the bus to lock.
  28.  */
  29. #include <linux/errno.h>
  30. #include <linux/mm.h>
  31. #include <linux/vmalloc.h>
  32. #include <asm/page.h>
  33. #include <asm/pgalloc.h>
  34. #include <asm/io.h>
  35. static inline void remap_area_pte(pte_t * pte, unsigned long address, unsigned long size,
  36. unsigned long phys_addr, pgprot_t pgprot)
  37. {
  38. unsigned long end;
  39. address &= ~PMD_MASK;
  40. end = address + size;
  41. if (end > PMD_SIZE)
  42. end = PMD_SIZE;
  43. if (address >= end)
  44. BUG();
  45. do {
  46. if (!pte_none(*pte)) {
  47. printk("remap_area_pte: page already existsn");
  48. BUG();
  49. }
  50. set_pte(pte, mk_pte_phys(phys_addr, pgprot));
  51. address += PAGE_SIZE;
  52. phys_addr += PAGE_SIZE;
  53. pte++;
  54. } while (address && (address < end));
  55. }
  56. static inline int remap_area_pmd(pmd_t * pmd, unsigned long address, unsigned long size,
  57. unsigned long phys_addr, unsigned long flags)
  58. {
  59. unsigned long end;
  60. pgprot_t pgprot;
  61. address &= ~PGDIR_MASK;
  62. end = address + size;
  63. if (end > PGDIR_SIZE)
  64. end = PGDIR_SIZE;
  65. phys_addr -= address;
  66. if (address >= end)
  67. BUG();
  68. pgprot = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY | L_PTE_WRITE | flags);
  69. do {
  70. pte_t * pte = pte_alloc(&init_mm, pmd, address);
  71. if (!pte)
  72. return -ENOMEM;
  73. remap_area_pte(pte, address, end - address, address + phys_addr, pgprot);
  74. address = (address + PMD_SIZE) & PMD_MASK;
  75. pmd++;
  76. } while (address && (address < end));
  77. return 0;
  78. }
  79. static int remap_area_pages(unsigned long address, unsigned long phys_addr,
  80.  unsigned long size, unsigned long flags)
  81. {
  82. int error;
  83. pgd_t * dir;
  84. unsigned long end = address + size;
  85. phys_addr -= address;
  86. dir = pgd_offset(&init_mm, address);
  87. flush_cache_all();
  88. if (address >= end)
  89. BUG();
  90. spin_lock(&init_mm.page_table_lock);
  91. do {
  92. pmd_t *pmd;
  93. pmd = pmd_alloc(&init_mm, dir, address);
  94. error = -ENOMEM;
  95. if (!pmd)
  96. break;
  97. if (remap_area_pmd(pmd, address, end - address,
  98.  phys_addr + address, flags))
  99. break;
  100. error = 0;
  101. address = (address + PGDIR_SIZE) & PGDIR_MASK;
  102. dir++;
  103. } while (address && (address < end));
  104. spin_unlock(&init_mm.page_table_lock);
  105. flush_tlb_all();
  106. return error;
  107. }
  108. /*
  109.  * Remap an arbitrary physical address space into the kernel virtual
  110.  * address space. Needed when the kernel wants to access high addresses
  111.  * directly.
  112.  *
  113.  * NOTE! We need to allow non-page-aligned mappings too: we will obviously
  114.  * have to convert them into an offset in a page-aligned mapping, but the
  115.  * caller shouldn't need to know that small detail.
  116.  *
  117.  * 'flags' are the extra L_PTE_ flags that you want to specify for this
  118.  * mapping.  See include/asm-arm/proc-armv/pgtable.h for more information.
  119.  */
  120. void * __ioremap(unsigned long phys_addr, size_t size, unsigned long flags)
  121. {
  122. void * addr;
  123. struct vm_struct * area;
  124. unsigned long offset, last_addr;
  125. /* Don't allow wraparound or zero size */
  126. last_addr = phys_addr + size - 1;
  127. if (!size || last_addr < phys_addr)
  128. return NULL;
  129. /*
  130.  * Mappings have to be page-aligned
  131.  */
  132. offset = phys_addr & ~PAGE_MASK;
  133. phys_addr &= PAGE_MASK;
  134. size = PAGE_ALIGN(last_addr) - phys_addr;
  135. /*
  136.  * Ok, go for it..
  137.  */
  138. area = get_vm_area(size, VM_IOREMAP);
  139. if (!area)
  140. return NULL;
  141. addr = area->addr;
  142. if (remap_area_pages(VMALLOC_VMADDR(addr), phys_addr, size, flags)) {
  143. vfree(addr);
  144. return NULL;
  145. }
  146. return (void *) (offset + (char *)addr);
  147. }
  148. void __iounmap(void *addr)
  149. {
  150. vfree((void *) (PAGE_MASK & (unsigned long) addr));
  151. }