2 * highmem.c: virtual kernel memory mappings for high memory
4 * Provides kernel-static versions of atomic kmap functions originally
5 * found as inlines in include/asm-sparc/highmem.h. These became
6 * needed as kmap_atomic() and kunmap_atomic() started getting
7 * called from within modules.
8 * -- Tomas Szepe <szepe@pinerecords.com>, September 2002
10 * But kmap_atomic() and kunmap_atomic() cannot be inlined in
11 * modules because they are loaded with btfixup-ped functions.
15 * The use of kmap_atomic/kunmap_atomic is discouraged - kmap/kunmap
16 * gives a more generic (and caching) interface. But kmap_atomic can
17 * be used in IRQ contexts, so in some (very limited) cases we need it.
19 * XXX This is an old text. Actually, it's good to use atomic kmaps,
20 * provided you remember that they are atomic and not try to sleep
21 * with a kmap taken, much like a spinlock. Non-atomic kmaps are
22 * shared by CPUs, and so precious, and establishing them requires IPI.
23 * Atomic kmaps are lightweight and we may have NCPUS more of them.
25 #include <linux/highmem.h>
26 #include <linux/export.h>
29 #include <asm/cacheflush.h>
30 #include <asm/tlbflush.h>
31 #include <asm/pgalloc.h>
32 #include <asm/vaddrs.h>
36 static pte_t *kmap_pte;
38 void __init kmap_init(void)
40 unsigned long address;
43 address = __fix_to_virt(FIX_KMAP_BEGIN);
44 dir = pmd_offset(pgd_offset_k(address), address);
46 /* cache the first kmap pte */
47 kmap_pte = pte_offset_kernel(dir, address);
48 kmap_prot = __pgprot(SRMMU_ET_PTE | SRMMU_PRIV | SRMMU_CACHE);
51 void *kmap_atomic(struct page *page)
58 if (!PageHighMem(page))
59 return page_address(page);
61 type = kmap_atomic_idx_push();
62 idx = type + KM_TYPE_NR*smp_processor_id();
63 vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
67 __flush_cache_one(vaddr);
72 #ifdef CONFIG_DEBUG_HIGHMEM
73 BUG_ON(!pte_none(*(kmap_pte-idx)));
75 set_pte(kmap_pte-idx, mk_pte(page, kmap_prot));
78 __flush_tlb_one(vaddr);
85 EXPORT_SYMBOL(kmap_atomic);
87 void __kunmap_atomic(void *kvaddr)
89 unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;
92 if (vaddr < FIXADDR_START) { // FIXME
98 type = kmap_atomic_idx();
100 #ifdef CONFIG_DEBUG_HIGHMEM
104 idx = type + KM_TYPE_NR * smp_processor_id();
105 BUG_ON(vaddr != __fix_to_virt(FIX_KMAP_BEGIN+idx));
107 /* XXX Fix - Anton */
109 __flush_cache_one(vaddr);
115 * force other mappings to Oops if they'll try to access
116 * this pte without first remap it
118 pte_clear(&init_mm, vaddr, kmap_pte-idx);
119 /* XXX Fix - Anton */
121 __flush_tlb_one(vaddr);
128 kmap_atomic_idx_pop();
132 EXPORT_SYMBOL(__kunmap_atomic);