highmem.c 2.7 KB
Newer Older
1
#include <linux/compiler.h>
L
Linus Torvalds 已提交
2 3
#include <linux/module.h>
#include <linux/highmem.h>
Y
Yoichi Yuasa 已提交
4
#include <linux/sched.h>
5
#include <linux/smp.h>
R
Ralf Baechle 已提交
6
#include <asm/fixmap.h>
L
Linus Torvalds 已提交
7 8
#include <asm/tlbflush.h>

R
Ralf Baechle 已提交
9 10 11 12
static pte_t *kmap_pte;

unsigned long highstart_pfn, highend_pfn;

P
Peter Zijlstra 已提交
13
void *kmap(struct page *page)
L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21 22 23 24
{
	void *addr;

	might_sleep();
	if (!PageHighMem(page))
		return page_address(page);
	addr = kmap_high(page);
	flush_tlb_one((unsigned long)addr);

	return addr;
}
P
Peter Zijlstra 已提交
25
EXPORT_SYMBOL(kmap);
L
Linus Torvalds 已提交
26

P
Peter Zijlstra 已提交
27
void kunmap(struct page *page)
L
Linus Torvalds 已提交
28
{
29
	BUG_ON(in_interrupt());
L
Linus Torvalds 已提交
30 31 32 33
	if (!PageHighMem(page))
		return;
	kunmap_high(page);
}
P
Peter Zijlstra 已提交
34
EXPORT_SYMBOL(kunmap);
L
Linus Torvalds 已提交
35 36 37 38 39 40 41 42 43 44

/*
 * kmap_atomic/kunmap_atomic is significantly faster than kmap/kunmap because
 * no global lock is needed and because the kmap code must perform a global TLB
 * invalidation when the kmap pool wraps.
 *
 * However when holding an atomic kmap is is not legal to sleep, so atomic
 * kmaps are appropriate for short, tight code paths only.
 */

C
Cong Wang 已提交
45
void *kmap_atomic(struct page *page)
L
Linus Torvalds 已提交
46 47
{
	unsigned long vaddr;
P
Peter Zijlstra 已提交
48
	int idx, type;
L
Linus Torvalds 已提交
49

50
	preempt_disable();
51
	pagefault_disable();
L
Linus Torvalds 已提交
52 53 54
	if (!PageHighMem(page))
		return page_address(page);

P
Peter Zijlstra 已提交
55
	type = kmap_atomic_idx_push();
L
Linus Torvalds 已提交
56 57 58
	idx = type + KM_TYPE_NR*smp_processor_id();
	vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
#ifdef CONFIG_DEBUG_HIGHMEM
59
	BUG_ON(!pte_none(*(kmap_pte - idx)));
L
Linus Torvalds 已提交
60
#endif
R
Ralf Baechle 已提交
61
	set_pte(kmap_pte-idx, mk_pte(page, PAGE_KERNEL));
L
Linus Torvalds 已提交
62 63 64 65
	local_flush_tlb_one((unsigned long)vaddr);

	return (void*) vaddr;
}
C
Cong Wang 已提交
66
EXPORT_SYMBOL(kmap_atomic);
L
Linus Torvalds 已提交
67

P
Peter Zijlstra 已提交
68
void __kunmap_atomic(void *kvaddr)
L
Linus Torvalds 已提交
69 70
{
	unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;
71
	int type __maybe_unused;
L
Linus Torvalds 已提交
72 73

	if (vaddr < FIXADDR_START) { // FIXME
74
		pagefault_enable();
75
		preempt_enable();
L
Linus Torvalds 已提交
76 77 78
		return;
	}

P
Peter Zijlstra 已提交
79
	type = kmap_atomic_idx();
P
Peter Zijlstra 已提交
80 81 82
#ifdef CONFIG_DEBUG_HIGHMEM
	{
		int idx = type + KM_TYPE_NR * smp_processor_id();
L
Linus Torvalds 已提交
83

P
Peter Zijlstra 已提交
84
		BUG_ON(vaddr != __fix_to_virt(FIX_KMAP_BEGIN + idx));
L
Linus Torvalds 已提交
85

P
Peter Zijlstra 已提交
86 87 88 89 90 91 92 93
		/*
		 * force other mappings to Oops if they'll try to access
		 * this pte without first remap it
		 */
		pte_clear(&init_mm, vaddr, kmap_pte-idx);
		local_flush_tlb_one(vaddr);
	}
#endif
P
Peter Zijlstra 已提交
94
	kmap_atomic_idx_pop();
95
	pagefault_enable();
96
	preempt_enable();
L
Linus Torvalds 已提交
97
}
P
Peter Zijlstra 已提交
98
EXPORT_SYMBOL(__kunmap_atomic);
L
Linus Torvalds 已提交
99

R
Ralf Baechle 已提交
100 101 102 103
/*
 * This is the same as kmap_atomic() but can map memory that doesn't
 * have a struct page associated with it.
 */
P
Peter Zijlstra 已提交
104
void *kmap_atomic_pfn(unsigned long pfn)
R
Ralf Baechle 已提交
105 106
{
	unsigned long vaddr;
P
Peter Zijlstra 已提交
107
	int idx, type;
R
Ralf Baechle 已提交
108

109
	preempt_disable();
110
	pagefault_disable();
R
Ralf Baechle 已提交
111

P
Peter Zijlstra 已提交
112
	type = kmap_atomic_idx_push();
R
Ralf Baechle 已提交
113 114
	idx = type + KM_TYPE_NR*smp_processor_id();
	vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
R
Ralf Baechle 已提交
115
	set_pte(kmap_pte-idx, pfn_pte(pfn, PAGE_KERNEL));
R
Ralf Baechle 已提交
116 117 118 119 120
	flush_tlb_one(vaddr);

	return (void*) vaddr;
}

R
Ralf Baechle 已提交
121 122 123 124 125 126 127 128
void __init kmap_init(void)
{
	unsigned long kmap_vstart;

	/* cache the first kmap pte */
	kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
	kmap_pte = kmap_get_fixmap_pte(kmap_vstart);
}