highmem.c 1.8 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * highmem.c: virtual kernel memory mappings for high memory
 *
 * PowerPC version, stolen from the i386 version.
 *
 * Used in CONFIG_HIGHMEM systems for memory pages which
 * are not addressable by direct kernel virtual addresses.
 *
 * Copyright (C) 1999 Gerhard Wichert, Siemens AG
 *		      Gerhard.Wichert@pdb.siemens.de
 *
 *
 * Redesigned the x86 32-bit VM architecture to deal with
 * up to 16 Terrabyte physical memory. With current x86 CPUs
 * we now support up to 64 Gigabytes physical RAM.
 *
 * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com>
 *
 * Reworked for PowerPC by various contributors. Moved from
 * highmem.h by Benjamin Herrenschmidt (c) 2009 IBM Corp.
 */

#include <linux/highmem.h>
#include <linux/module.h>

27
void *kmap_atomic_high_prot(struct page *page, pgprot_t prot)
28 29
{
	unsigned long vaddr;
P
Peter Zijlstra 已提交
30
	int idx, type;
31

P
Peter Zijlstra 已提交
32
	type = kmap_atomic_idx_push();
33 34
	idx = type + KM_TYPE_NR*smp_processor_id();
	vaddr = __fix_to_virt(FIX_KMAP_BEGIN + idx);
35
	WARN_ON(IS_ENABLED(CONFIG_DEBUG_HIGHMEM) && !pte_none(*(kmap_pte - idx)));
36 37 38 39 40
	__set_pte_at(&init_mm, vaddr, kmap_pte-idx, mk_pte(page, prot), 1);
	local_flush_tlb_page(NULL, vaddr);

	return (void*) vaddr;
}
41
EXPORT_SYMBOL(kmap_atomic_high_prot);
42

43
void kunmap_atomic_high(void *kvaddr)
44 45 46
{
	unsigned long vaddr = (unsigned long) kvaddr & PAGE_MASK;

47
	if (vaddr < __fix_to_virt(FIX_KMAP_END))
48 49
		return;

50 51
	if (IS_ENABLED(CONFIG_DEBUG_HIGHMEM)) {
		int type = kmap_atomic_idx();
P
Peter Zijlstra 已提交
52 53 54
		unsigned int idx;

		idx = type + KM_TYPE_NR * smp_processor_id();
55
		WARN_ON(vaddr != __fix_to_virt(FIX_KMAP_BEGIN + idx));
P
Peter Zijlstra 已提交
56 57 58 59 60 61 62 63

		/*
		 * 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_page(NULL, vaddr);
	}
P
Peter Zijlstra 已提交
64 65

	kmap_atomic_idx_pop();
66
}
67
EXPORT_SYMBOL(kunmap_atomic_high);