ioremap.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * arch/x86_64/mm/ioremap.c
  3.  *
  4.  * Re-map IO memory to kernel address space so that we can access it.
  5.  * This is needed for high PCI addresses that aren't mapped in the
  6.  * 640k-1MB IO memory area on PC's
  7.  *
  8.  * (C) Copyright 1995 1996 Linus Torvalds
  9.  */
  10. #include <linux/vmalloc.h>
  11. #include <asm/io.h>
  12. #include <asm/pgalloc.h>
  13. static inline void remap_area_pte(pte_t * pte, unsigned long address, unsigned long size,
  14. unsigned long phys_addr, unsigned long flags)
  15. {
  16. unsigned long end;
  17. address &= ~PMD_MASK;
  18. end = address + size;
  19. if (end > PMD_SIZE)
  20. end = PMD_SIZE;
  21. if (address >= end)
  22. BUG();
  23. do {
  24. if (!pte_none(*pte)) {
  25. printk("remap_area_pte: page already existsn");
  26. BUG();
  27. }
  28. set_pte(pte, mk_pte_phys(phys_addr, __pgprot(_PAGE_PRESENT | _PAGE_RW |
  29. _PAGE_GLOBAL | _PAGE_DIRTY | _PAGE_ACCESSED | flags)));
  30. address += PAGE_SIZE;
  31. phys_addr += PAGE_SIZE;
  32. pte++;
  33. } while (address && (address < end));
  34. }
  35. static inline int remap_area_pmd(pmd_t * pmd, unsigned long address, unsigned long size,
  36. unsigned long phys_addr, unsigned long flags)
  37. {
  38. unsigned long end;
  39. address &= ~PGDIR_MASK;
  40. end = address + size;
  41. if (end > PGDIR_SIZE)
  42. end = PGDIR_SIZE;
  43. phys_addr -= address;
  44. if (address >= end)
  45. BUG();
  46. do {
  47. pte_t * pte = pte_alloc(&init_mm, pmd, address);
  48. if (!pte)
  49. return -ENOMEM;
  50. remap_area_pte(pte, address, end - address, address + phys_addr, flags);
  51. address = (address + PMD_SIZE) & PMD_MASK;
  52. pmd++;
  53. } while (address && (address < end));
  54. return 0;
  55. }
  56. static int remap_area_pages(unsigned long address, unsigned long phys_addr,
  57.  unsigned long size, unsigned long flags)
  58. {
  59. int error;
  60. pgd_t * dir;
  61. unsigned long end = address + size;
  62. phys_addr -= address;
  63. dir = pgd_offset_k(address);
  64. flush_cache_all();
  65. if (address >= end)
  66. BUG();
  67. spin_lock(&init_mm.page_table_lock);
  68. do {
  69. pmd_t *pmd;
  70. pmd = pmd_alloc(&init_mm, dir, address);
  71. error = -ENOMEM;
  72. if (!pmd)
  73. break;
  74. if (remap_area_pmd(pmd, address, end - address,
  75.  phys_addr + address, flags))
  76. break;
  77. error = 0;
  78. address = (address + PGDIR_SIZE) & PGDIR_MASK;
  79. dir++;
  80. } while (address && (address < end));
  81. spin_unlock(&init_mm.page_table_lock);
  82. flush_tlb_all();
  83. return error;
  84. }
  85. /*
  86.  * Generic mapping function (not visible outside):
  87.  */
  88. /*
  89.  * Remap an arbitrary physical address space into the kernel virtual
  90.  * address space. Needed when the kernel wants to access high addresses
  91.  * directly.
  92.  *
  93.  * NOTE! We need to allow non-page-aligned mappings too: we will obviously
  94.  * have to convert them into an offset in a page-aligned mapping, but the
  95.  * caller shouldn't need to know that small detail.
  96.  */
  97. void * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flags)
  98. {
  99. void * addr;
  100. struct vm_struct * area;
  101. unsigned long offset, last_addr;
  102. /* Don't allow wraparound or zero size */
  103. last_addr = phys_addr + size - 1;
  104. if (!size || last_addr < phys_addr)
  105. return NULL;
  106. /*
  107.  * Don't remap the low PCI/ISA area, it's always mapped..
  108.  */
  109. if (phys_addr >= 0xA0000 && last_addr < 0x100000)
  110. return phys_to_virt(phys_addr);
  111. /*
  112.  * Don't allow anybody to remap normal RAM that we're using..
  113.  */
  114. if (phys_addr < virt_to_phys(high_memory)) {
  115. char *t_addr, *t_end;
  116. struct page *page;
  117. t_addr = __va(phys_addr);
  118. t_end = t_addr + (size - 1);
  119.    
  120. #ifndef CONFIG_DISCONTIGMEM
  121. for(page = virt_to_page(t_addr); page <= virt_to_page(t_end); page++)
  122. if(!PageReserved(page))
  123. return NULL;
  124. #endif
  125. }
  126. /*
  127.  * Mappings have to be page-aligned
  128.  */
  129. offset = phys_addr & ~PAGE_MASK;
  130. phys_addr &= PAGE_MASK;
  131. size = PAGE_ALIGN(last_addr) - phys_addr;
  132. /*
  133.  * Ok, go for it..
  134.  */
  135. area = get_vm_area(size, VM_IOREMAP);
  136. if (!area)
  137. return NULL;
  138. addr = area->addr;
  139. if (remap_area_pages(VMALLOC_VMADDR(addr), phys_addr, size, flags)) {
  140. vfree(addr);
  141. return NULL;
  142. }
  143. return (void *) (offset + (char *)addr);
  144. }
  145. void iounmap(void *addr)
  146. {
  147. if (addr > high_memory)
  148. return vfree((void *) (PAGE_MASK & (unsigned long) addr));
  149. }