1 #include <linux/highmem.h>
2 #include <linux/module.h>
4 void *kmap(struct page *page)
7 if (!PageHighMem(page))
8 return page_address(page);
9 return kmap_high(page);
12 void kunmap(struct page *page)
16 if (!PageHighMem(page))
22 * kmap_atomic/kunmap_atomic is significantly faster than kmap/kunmap because
23 * no global lock is needed and because the kmap code must perform a global TLB
24 * invalidation when the kmap pool wraps.
26 * However when holding an atomic kmap is is not legal to sleep, so atomic
27 * kmaps are appropriate for short, tight code paths only.
29 void *kmap_atomic_prot(struct page *page, enum km_type type, pgprot_t prot)
31 enum fixed_addresses idx;
34 /* even !CONFIG_PREEMPT needs this, for in_atomic in do_page_fault */
37 if (!PageHighMem(page))
38 return page_address(page);
40 idx = type + KM_TYPE_NR*smp_processor_id();
41 vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
42 BUG_ON(!pte_none(*(kmap_pte-idx)));
43 set_pte(kmap_pte-idx, mk_pte(page, prot));
44 arch_flush_lazy_mmu_mode();
49 void *kmap_atomic(struct page *page, enum km_type type)
51 return kmap_atomic_prot(page, type, kmap_prot);
54 void kunmap_atomic(void *kvaddr, enum km_type type)
56 unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;
57 enum fixed_addresses idx = type + KM_TYPE_NR*smp_processor_id();
60 * Force other mappings to Oops if they'll try to access this pte
61 * without first remap it. Keeping stale mappings around is a bad idea
62 * also, in case the page changes cacheability attributes or becomes
63 * a protected page in a hypervisor.
65 if (vaddr == __fix_to_virt(FIX_KMAP_BEGIN+idx))
66 kpte_clear_flush(kmap_pte-idx, vaddr);
68 #ifdef CONFIG_DEBUG_HIGHMEM
69 BUG_ON(vaddr < PAGE_OFFSET);
70 BUG_ON(vaddr >= (unsigned long)high_memory);
74 arch_flush_lazy_mmu_mode();
78 /* This is the same as kmap_atomic() but can map memory that doesn't
79 * have a struct page associated with it.
81 void *kmap_atomic_pfn(unsigned long pfn, enum km_type type)
83 enum fixed_addresses idx;
88 idx = type + KM_TYPE_NR*smp_processor_id();
89 vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
90 set_pte(kmap_pte-idx, pfn_pte(pfn, kmap_prot));
91 arch_flush_lazy_mmu_mode();
96 struct page *kmap_atomic_to_page(void *ptr)
98 unsigned long idx, vaddr = (unsigned long)ptr;
101 if (vaddr < FIXADDR_START)
102 return virt_to_page(ptr);
104 idx = virt_to_fix(vaddr);
105 pte = kmap_pte - (idx - FIX_KMAP_BEGIN);
106 return pte_page(*pte);
110 EXPORT_SYMBOL(kunmap);
111 EXPORT_SYMBOL(kmap_atomic);
112 EXPORT_SYMBOL(kunmap_atomic);
113 EXPORT_SYMBOL(kmap_atomic_to_page);