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

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

unsigned long highstart_pfn, highend_pfn;

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

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

/*
 * 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.
 */

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

	/* even !CONFIG_PREEMPT needs this, for in_atomic in do_page_fault */
50
	pagefault_disable();
L
Linus Torvalds 已提交
51 52 53
	if (!PageHighMem(page))
		return page_address(page);

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

	return (void*) vaddr;
}
R
Ralf Baechle 已提交
65
EXPORT_SYMBOL(__kmap_atomic);
L
Linus Torvalds 已提交
66

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

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

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

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

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

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

106
	pagefault_disable();
R
Ralf Baechle 已提交
107

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

	return (void*) vaddr;
}

P
Peter Zijlstra 已提交
117
struct page *kmap_atomic_to_page(void *ptr)
L
Linus Torvalds 已提交
118 119 120 121 122 123 124 125 126 127 128 129
{
	unsigned long idx, vaddr = (unsigned long)ptr;
	pte_t *pte;

	if (vaddr < FIXADDR_START)
		return virt_to_page(ptr);

	idx = virt_to_fix(vaddr);
	pte = kmap_pte - (idx - FIX_KMAP_BEGIN);
	return pte_page(*pte);
}

R
Ralf Baechle 已提交
130 131 132 133 134 135 136 137
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);
}