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

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

unsigned long highstart_pfn, highend_pfn;

L
Linus Torvalds 已提交
11 12 13 14 15 16 17 18 19 20 21 22
void *__kmap(struct page *page)
{
	void *addr;

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

	return addr;
}
R
Ralf Baechle 已提交
23
EXPORT_SYMBOL(__kmap);
L
Linus Torvalds 已提交
24 25 26

void __kunmap(struct page *page)
{
27
	BUG_ON(in_interrupt());
L
Linus Torvalds 已提交
28 29 30 31
	if (!PageHighMem(page))
		return;
	kunmap_high(page);
}
R
Ralf Baechle 已提交
32
EXPORT_SYMBOL(__kunmap);
L
Linus Torvalds 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48

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

void *__kmap_atomic(struct page *page, enum km_type type)
{
	enum fixed_addresses idx;
	unsigned long vaddr;

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

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

	return (void*) vaddr;
}
R
Ralf Baechle 已提交
64
EXPORT_SYMBOL(__kmap_atomic);
L
Linus Torvalds 已提交
65 66 67 68 69 70 71 72

void __kunmap_atomic(void *kvaddr, enum km_type type)
{
#ifdef CONFIG_DEBUG_HIGHMEM
	unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;
	enum fixed_addresses idx = type + KM_TYPE_NR*smp_processor_id();

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

77
	BUG_ON(vaddr != __fix_to_virt(FIX_KMAP_BEGIN + idx));
L
Linus Torvalds 已提交
78 79 80 81 82 83 84 85 86

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

87
	pagefault_enable();
L
Linus Torvalds 已提交
88
}
R
Ralf Baechle 已提交
89
EXPORT_SYMBOL(__kunmap_atomic);
L
Linus Torvalds 已提交
90

R
Ralf Baechle 已提交
91 92 93 94 95 96 97 98 99
/*
 * This is the same as kmap_atomic() but can map memory that doesn't
 * have a struct page associated with it.
 */
void *kmap_atomic_pfn(unsigned long pfn, enum km_type type)
{
	enum fixed_addresses idx;
	unsigned long vaddr;

100
	pagefault_disable();
R
Ralf Baechle 已提交
101

A
Akinobu Mita 已提交
102
	debug_kmap_atomic(type);
R
Ralf Baechle 已提交
103 104
	idx = type + KM_TYPE_NR*smp_processor_id();
	vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
R
Ralf Baechle 已提交
105
	set_pte(kmap_pte-idx, pfn_pte(pfn, PAGE_KERNEL));
R
Ralf Baechle 已提交
106 107 108 109 110
	flush_tlb_one(vaddr);

	return (void*) vaddr;
}

L
Linus Torvalds 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123
struct page *__kmap_atomic_to_page(void *ptr)
{
	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 已提交
124 125 126 127 128 129 130 131
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);
}