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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/s390/mm/ioremap.c
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Hartmut Penner (hp@de.ibm.com)
  7.  *
  8.  *  Derived from "arch/i386/mm/extable.c"
  9.  *    (C) Copyright 1995 1996 Linus Torvalds
  10.  *
  11.  * Re-map IO memory to kernel address space so that we can access it.
  12.  * This is needed for high PCI addresses that aren't mapped in the
  13.  * 640k-1MB IO memory area on PC's
  14.  */
  15. #include <linux/vmalloc.h>
  16. #include <asm/io.h>
  17. #include <asm/pgalloc.h>
  18. static inline void remap_area_pte(pte_t * pte, unsigned long address, unsigned long size,
  19.         unsigned long phys_addr, unsigned long flags)
  20. {
  21.         unsigned long end;
  22.         address &= ~PMD_MASK;
  23.         end = address + size;
  24.         if (end > PMD_SIZE)
  25.                 end = PMD_SIZE;
  26. if (address >= end)
  27. BUG();
  28.         do {
  29.                 if (!pte_none(*pte)) {
  30.                         printk("remap_area_pte: page already existsn");
  31. BUG();
  32. }
  33.                 set_pte(pte, mk_pte_phys(phys_addr,
  34.                                          __pgprot(_PAGE_PRESENT | flags)));
  35.                 address += PAGE_SIZE;
  36.                 phys_addr += PAGE_SIZE;
  37.                 pte++;
  38.         } while (address && (address < end));
  39. }
  40. static inline int remap_area_pmd(pmd_t * pmd, unsigned long address, unsigned long size,
  41.         unsigned long phys_addr, unsigned long flags)
  42. {
  43. unsigned long end;
  44. address &= ~PGDIR_MASK;
  45. end = address + size;
  46. if (end > PGDIR_SIZE)
  47. end = PGDIR_SIZE;
  48. phys_addr -= address;
  49. if (address >= end)
  50. BUG();
  51. do {
  52. pte_t * pte = pte_alloc(&init_mm, pmd, address);
  53. if (!pte)
  54. return -ENOMEM;
  55. remap_area_pte(pte, address, end - address, address + phys_addr, flags);
  56. address = (address + PMD_SIZE) & PMD_MASK;
  57. pmd++;
  58. } while (address && (address < end));
  59. return 0;
  60. }
  61. static int remap_area_pages(unsigned long address, unsigned long phys_addr,
  62.  unsigned long size, unsigned long flags)
  63. {
  64. int error;
  65. pgd_t * dir;
  66. unsigned long end = address + size;
  67. phys_addr -= address;
  68. dir = pgd_offset(&init_mm, address);
  69. flush_cache_all();
  70. if (address >= end)
  71. BUG();
  72. spin_lock(&init_mm.page_table_lock);
  73. do {
  74. pmd_t *pmd;
  75. pmd = pmd_alloc(&init_mm, dir, address);
  76. error = -ENOMEM;
  77. if (!pmd)
  78. break;
  79. if (remap_area_pmd(pmd, address, end - address,
  80.  phys_addr + address, flags))
  81. break;
  82. error = 0;
  83. address = (address + PGDIR_SIZE) & PGDIR_MASK;
  84. dir++;
  85. } while (address && (address < end));
  86. spin_unlock(&init_mm.page_table_lock);
  87. flush_tlb_all();
  88. return 0;
  89. }
  90. /*
  91.  * Generic mapping function (not visible outside):
  92.  */
  93. /*
  94.  * Remap an arbitrary physical address space into the kernel virtual
  95.  * address space. Needed when the kernel wants to access high addresses
  96.  * directly.
  97.  */
  98. void * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flags)
  99. {
  100. void * addr;
  101. struct vm_struct * area;
  102. if (phys_addr < virt_to_phys(high_memory))
  103. return phys_to_virt(phys_addr);
  104. if (phys_addr & ~PAGE_MASK)
  105. return NULL;
  106. size = PAGE_ALIGN(size);
  107. if (!size || size > phys_addr + size)
  108. return NULL;
  109. area = get_vm_area(size, VM_IOREMAP);
  110. if (!area)
  111. return NULL;
  112. addr = area->addr;
  113. if (remap_area_pages(VMALLOC_VMADDR(addr), phys_addr, size, flags)) {
  114. vfree(addr);
  115. return NULL;
  116. }
  117. return addr;
  118. }
  119. void iounmap(void *addr)
  120. {
  121. if (addr > high_memory)
  122. return vfree(addr);
  123. }