Merge tag 'nfs-for-4.5-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfs
[deliverable/linux.git] / arch / x86 / include / asm / page_32_types.h
CommitLineData
51c78eb3
JF
1#ifndef _ASM_X86_PAGE_32_DEFS_H
2#define _ASM_X86_PAGE_32_DEFS_H
3
4#include <linux/const.h>
5
6/*
7 * This handles the memory map.
8 *
9 * A __PAGE_OFFSET of 0xC0000000 means that the kernel has
10 * a virtual address space of one gigabyte, which limits the
11 * amount of physical memory you can use to about 950MB.
12 *
13 * If you want more physical memory than this then see the CONFIG_HIGHMEM4G
14 * and CONFIG_HIGHMEM64G options in the kernel configuration.
15 */
16#define __PAGE_OFFSET _AC(CONFIG_PAGE_OFFSET, UL)
17
a0215061
KC
18#define __START_KERNEL_map __PAGE_OFFSET
19
38e7c572
TG
20#define THREAD_SIZE_ORDER 1
21#define THREAD_SIZE (PAGE_SIZE << THREAD_SIZE_ORDER)
51c78eb3 22
51c78eb3
JF
23#define DOUBLEFAULT_STACK 1
24#define NMI_STACK 0
25#define DEBUG_STACK 0
26#define MCE_STACK 0
27#define N_EXCEPTION_STACKS 1
28
29#ifdef CONFIG_X86_PAE
30/* 44=32+12, the limit we can fit into an unsigned long pfn */
31#define __PHYSICAL_MASK_SHIFT 44
32#define __VIRTUAL_MASK_SHIFT 32
51c78eb3
JF
33
34#else /* !CONFIG_X86_PAE */
35#define __PHYSICAL_MASK_SHIFT 32
36#define __VIRTUAL_MASK_SHIFT 32
51c78eb3
JF
37#endif /* CONFIG_X86_PAE */
38
7543c1de
YL
39/*
40 * Kernel image size is limited to 512 MB (see in arch/x86/kernel/head_32.S)
41 */
42#define KERNEL_IMAGE_SIZE (512 * 1024 * 1024)
43
51c78eb3
JF
44#ifndef __ASSEMBLY__
45
51c78eb3
JF
46/*
47 * This much address space is reserved for vmalloc() and iomap()
48 * as well as fixmap mappings.
49 */
50extern unsigned int __VMALLOC_RESERVE;
51extern int sysctl_legacy_va_layout;
52
53extern void find_low_pfn_range(void);
51c78eb3
JF
54extern void setup_bootmem_allocator(void);
55
56#endif /* !__ASSEMBLY__ */
57
58#endif /* _ASM_X86_PAGE_32_DEFS_H */
This page took 0.41207 seconds and 5 git commands to generate.