Merge tag 'pm-4.13-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
[linux/fpc-iii.git] / arch / x86 / include / asm / mmzone_32.h
blob1ec990bd7dc0cf54bf9b5499d59175eb7f2dd620
1 /*
2 * Written by Pat Gaughen (gone@us.ibm.com) Mar 2002
4 */
6 #ifndef _ASM_X86_MMZONE_32_H
7 #define _ASM_X86_MMZONE_32_H
9 #include <asm/smp.h>
11 #ifdef CONFIG_NUMA
12 extern struct pglist_data *node_data[];
13 #define NODE_DATA(nid) (node_data[nid])
14 #endif /* CONFIG_NUMA */
16 #ifdef CONFIG_DISCONTIGMEM
19 * generic node memory support, the following assumptions apply:
21 * 1) memory comes in 64Mb contiguous chunks which are either present or not
22 * 2) we will not have more than 64Gb in total
24 * for now assume that 64Gb is max amount of RAM for whole system
25 * 64Gb / 4096bytes/page = 16777216 pages
27 #define MAX_NR_PAGES 16777216
28 #define MAX_SECTIONS 1024
29 #define PAGES_PER_SECTION (MAX_NR_PAGES/MAX_SECTIONS)
31 extern s8 physnode_map[];
33 static inline int pfn_to_nid(unsigned long pfn)
35 #ifdef CONFIG_NUMA
36 return((int) physnode_map[(pfn) / PAGES_PER_SECTION]);
37 #else
38 return 0;
39 #endif
42 static inline int pfn_valid(int pfn)
44 int nid = pfn_to_nid(pfn);
46 if (nid >= 0)
47 return (pfn < node_end_pfn(nid));
48 return 0;
51 #define early_pfn_valid(pfn) pfn_valid((pfn))
53 #endif /* CONFIG_DISCONTIGMEM */
55 #endif /* _ASM_X86_MMZONE_32_H */