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

嵌入式Linux

开发平台:

Unix_Linux

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