blob: a8059930056d22cddb7dc8794e63738f2481560b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * highmem.h: virtual kernel memory mappings for high memory
4 *
5 * Used in CONFIG_HIGHMEM systems for memory pages which
6 * are not addressable by direct kernel virtual addresses.
7 *
8 * Copyright (C) 1999 Gerhard Wichert, Siemens AG
9 * Gerhard.Wichert@pdb.siemens.de
10 *
11 *
Joe Perchesb9c2fcf2008-03-23 01:02:15 -070012 * Redesigned the x86 32-bit VM architecture to deal with
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * up to 16 Terabyte physical memory. With current x86 CPUs
14 * we now support up to 64 Gigabytes physical RAM.
15 *
16 * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com>
17 */
18
H. Peter Anvin1965aae2008-10-22 22:26:29 -070019#ifndef _ASM_X86_HIGHMEM_H
20#define _ASM_X86_HIGHMEM_H
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#ifdef __KERNEL__
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/threads.h>
26#include <asm/kmap_types.h>
27#include <asm/tlbflush.h>
Jeremy Fitzhardingece6234b2007-05-02 19:27:15 +020028#include <asm/paravirt.h>
Keith Packardfd940932008-10-30 19:37:09 -070029#include <asm/fixmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/* declarations for highmem.c */
32extern unsigned long highstart_pfn, highend_pfn;
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034/*
35 * Right now we initialize only a single pte table. It can be extended
36 * easily, subsequent pte tables have to be allocated in one physical
37 * chunk of RAM.
38 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/*
40 * Ordering is:
41 *
Minfei Huang63e7b6d2014-10-29 19:38:37 +080042 * high memory on: high_memory off:
43 * FIXADDR_TOP FIXADDR_TOP
44 * fixed addresses fixed addresses
45 * FIXADDR_START FIXADDR_START
46 * temp fixed addresses/persistent kmap area VMALLOC_END
47 * PKMAP_BASE temp fixed addresses/vmalloc area
48 * VMALLOC_END VMALLOC_START
49 * vmalloc area high_memory
50 * VMALLOC_START
51 * high_memory
52 *
53 * The temp fixed area is only used during boot for early_ioremap(), and
54 * it is unused when the ioremap() is functional. vmalloc/pkmap area become
55 * available after early boot so the temp fixed area is available for re-use.
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define LAST_PKMAP_MASK (LAST_PKMAP-1)
58#define PKMAP_NR(virt) ((virt-PKMAP_BASE) >> PAGE_SHIFT)
59#define PKMAP_ADDR(nr) (PKMAP_BASE + ((nr) << PAGE_SHIFT))
60
Harvey Harrison599db4f2008-02-04 16:48:03 +010061extern void *kmap_high(struct page *page);
62extern void kunmap_high(struct page *page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64void *kmap(struct page *page);
65void kunmap(struct page *page);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070066
67void *kmap_atomic_prot(struct page *page, pgprot_t prot);
Cong Wanga24401b2011-11-26 10:53:39 +080068void *kmap_atomic(struct page *page);
Peter Zijlstra3e4d3af2010-10-26 14:21:51 -070069void __kunmap_atomic(void *kvaddr);
70void *kmap_atomic_pfn(unsigned long pfn);
71void *kmap_atomic_prot_pfn(unsigned long pfn, pgprot_t prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define flush_cache_kmaps() do { } while (0)
74
Yinghai Lub5bc6c02008-06-14 18:32:52 -070075extern void add_highpages_with_active_regions(int nid, unsigned long start_pfn,
Yinghai Lucc9f7a02008-06-16 16:11:08 -070076 unsigned long end_pfn);
Yinghai Lub5bc6c02008-06-14 18:32:52 -070077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#endif /* __KERNEL__ */
79
H. Peter Anvin1965aae2008-10-22 22:26:29 -070080#endif /* _ASM_X86_HIGHMEM_H */