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

嵌入式Linux

开发平台:

Unix_Linux

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