blob: 8a9b3e288cb4b361e0278d451921778881afd6f6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Written by Pat Gaughen (gone@us.ibm.com) Mar 2002
3 *
4 */
5
H. Peter Anvin1965aae2008-10-22 22:26:29 -07006#ifndef _ASM_X86_MMZONE_32_H
7#define _ASM_X86_MMZONE_32_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9#include <asm/smp.h>
10
Dave Jones8ff8b272005-07-07 17:56:39 -070011#ifdef CONFIG_NUMA
Andy Whitcroft05b79bd2005-06-23 00:07:57 -070012extern struct pglist_data *node_data[];
13#define NODE_DATA(nid) (node_data[nid])
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Yinghai Lud49c4282008-06-08 18:31:54 -070015#include <asm/numaq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Andy Whitcroft05b79bd2005-06-23 00:07:57 -070017#endif /* CONFIG_NUMA */
18
19#ifdef CONFIG_DISCONTIGMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21/*
22 * generic node memory support, the following assumptions apply:
23 *
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020024 * 1) memory comes in 64Mb contiguous chunks which are either present or not
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 * 2) we will not have more than 64Gb in total
26 *
27 * for now assume that 64Gb is max amount of RAM for whole system
28 * 64Gb / 4096bytes/page = 16777216 pages
29 */
30#define MAX_NR_PAGES 16777216
Tejun Heod0ead152011-07-12 09:44:22 +020031#define MAX_SECTIONS 1024
32#define PAGES_PER_SECTION (MAX_NR_PAGES/MAX_SECTIONS)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34extern s8 physnode_map[];
35
36static inline int pfn_to_nid(unsigned long pfn)
37{
38#ifdef CONFIG_NUMA
Tejun Heod0ead152011-07-12 09:44:22 +020039 return((int) physnode_map[(pfn) / PAGES_PER_SECTION]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#else
41 return 0;
42#endif
43}
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static inline int pfn_valid(int pfn)
46{
47 int nid = pfn_to_nid(pfn);
48
49 if (nid >= 0)
50 return (pfn < node_end_pfn(nid));
51 return 0;
52}
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Tejun Heoa26474e2011-06-28 11:41:07 +020054#define early_pfn_valid(pfn) pfn_valid((pfn))
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#endif /* CONFIG_DISCONTIGMEM */
Andy Whitcroftb159d432005-06-23 00:07:52 -070057
H. Peter Anvin1965aae2008-10-22 22:26:29 -070058#endif /* _ASM_X86_MMZONE_32_H */