Merge branch 'linus' into perf/core, to fix conflicts
[deliverable/linux.git] / arch / x86 / include / asm / page_types.h
CommitLineData
51c78eb3
JF
1#ifndef _ASM_X86_PAGE_DEFS_H
2#define _ASM_X86_PAGE_DEFS_H
3
4#include <linux/const.h>
45635ab5 5#include <linux/types.h>
51c78eb3
JF
6
7/* PAGE_SHIFT determines the page size */
8#define PAGE_SHIFT 12
9#define PAGE_SIZE (_AC(1,UL) << PAGE_SHIFT)
10#define PAGE_MASK (~(PAGE_SIZE-1))
11
a416e9e1 12#define __PHYSICAL_MASK ((phys_addr_t)((1ULL << __PHYSICAL_MASK_SHIFT) - 1))
51c78eb3
JF
13#define __VIRTUAL_MASK ((1UL << __VIRTUAL_MASK_SHIFT) - 1)
14
15/* Cast PAGE_MASK to a signed type so that it is sign-extended if
16 virtual addresses are 32-bits but physical addresses are larger
17 (ie, 32-bit PAE). */
18#define PHYSICAL_PAGE_MASK (((signed long)PAGE_MASK) & __PHYSICAL_MASK)
19
51c78eb3
JF
20#define PMD_PAGE_SIZE (_AC(1, UL) << PMD_SHIFT)
21#define PMD_PAGE_MASK (~(PMD_PAGE_SIZE-1))
22
23#define HPAGE_SHIFT PMD_SHIFT
24#define HPAGE_SIZE (_AC(1,UL) << HPAGE_SHIFT)
25#define HPAGE_MASK (~(HPAGE_SIZE - 1))
26#define HUGETLB_PAGE_ORDER (HPAGE_SHIFT - PAGE_SHIFT)
27
28#define HUGE_MAX_HSTATE 2
29
30#define PAGE_OFFSET ((unsigned long)__PAGE_OFFSET)
31
32#define VM_DATA_DEFAULT_FLAGS \
33 (((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0 ) | \
34 VM_READ | VM_WRITE | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
35
a0215061
KC
36#define __PHYSICAL_START ALIGN(CONFIG_PHYSICAL_START, \
37 CONFIG_PHYSICAL_ALIGN)
38
39#define __START_KERNEL (__START_KERNEL_map + __PHYSICAL_START)
40
51c78eb3
JF
41#ifdef CONFIG_X86_64
42#include <asm/page_64_types.h>
43#else
44#include <asm/page_32_types.h>
45#endif /* CONFIG_X86_64 */
46
47#ifndef __ASSEMBLY__
48
51c78eb3 49extern int devmem_is_allowed(unsigned long pagenr);
51c78eb3
JF
50
51extern unsigned long max_low_pfn_mapped;
52extern unsigned long max_pfn_mapped;
53
4ce7a869 54static inline phys_addr_t get_max_mapped(void)
45635ab5 55{
4ce7a869 56 return (phys_addr_t)max_pfn_mapped << PAGE_SHIFT;
45635ab5
YL
57}
58
66520ebc 59bool pfn_range_is_mapped(unsigned long start_pfn, unsigned long end_pfn);
dda56e13 60
66aa230e
JSR
61extern unsigned long init_memory_mapping(unsigned long start,
62 unsigned long end);
63
d8fc3afc 64extern void initmem_init(void);
66aa230e 65
51c78eb3
JF
66#endif /* !__ASSEMBLY__ */
67
68#endif /* _ASM_X86_PAGE_DEFS_H */
This page took 0.367299 seconds and 5 git commands to generate.