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

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

unsigned long highstart_pfn, highend_pfn;

P
Peter Zijlstra 已提交
14
void *kmap(struct page *page)
L
Linus Torvalds 已提交
15 16 17 18 19 20 21 22 23 24 25
{
	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 已提交
26
EXPORT_SYMBOL(kmap);
L
Linus Torvalds 已提交
27

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

/*
 * 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 已提交
46
void *kmap_atomic(struct page *page)
L
Linus Torvalds 已提交
47 48
{
	unsigned long vaddr;
P
Peter Zijlstra 已提交
49
	int idx, type;
L
Linus Torvalds 已提交
50

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

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

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

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

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

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

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

P
Peter Zijlstra 已提交
87 88 89 90 91 92 93 94
		/*
		 * 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 已提交
95
	kmap_atomic_idx_pop();
96
	pagefault_enable();
97
	preempt_enable();
L
Linus Torvalds 已提交
98
}
P
Peter Zijlstra 已提交
99
EXPORT_SYMBOL(__kunmap_atomic);
L
Linus Torvalds 已提交
100

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

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

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

	return (void*) vaddr;
}

R
Ralf Baechle 已提交
122 123 124 125 126 127 128 129
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);
}