]> Pileus Git - ~andy/linux/blob - include/asm-x86_64/mmzone.h
[PATCH] x86_64: Unmap NULL during early bootup
[~andy/linux] / include / asm-x86_64 / mmzone.h
1 /* K8 NUMA support */
2 /* Copyright 2002,2003 by Andi Kleen, SuSE Labs */
3 /* 2.5 Version loosely based on the NUMAQ Code by Pat Gaughen. */
4 #ifndef _ASM_X86_64_MMZONE_H
5 #define _ASM_X86_64_MMZONE_H 1
6
7 #include <linux/config.h>
8
9 #ifdef CONFIG_NUMA
10
11 #define VIRTUAL_BUG_ON(x) 
12
13 #include <asm/smp.h>
14
15 #define NODEMAPSIZE 0xfff
16
17 /* Simple perfect hash to map physical addresses to node numbers */
18 extern int memnode_shift; 
19 extern u8  memnodemap[NODEMAPSIZE]; 
20 extern int maxnode;
21
22 extern struct pglist_data *node_data[];
23
24 static inline __attribute__((pure)) int phys_to_nid(unsigned long addr) 
25
26         int nid; 
27         VIRTUAL_BUG_ON((addr >> memnode_shift) >= NODEMAPSIZE);
28         nid = memnodemap[addr >> memnode_shift]; 
29         VIRTUAL_BUG_ON(nid > maxnode); 
30         return nid; 
31
32
33 #define NODE_DATA(nid)          (node_data[nid])
34
35 #define node_start_pfn(nid)     (NODE_DATA(nid)->node_start_pfn)
36 #define node_end_pfn(nid)       (NODE_DATA(nid)->node_start_pfn + \
37                                  NODE_DATA(nid)->node_spanned_pages)
38
39 #ifdef CONFIG_DISCONTIGMEM
40
41 #define pfn_to_nid(pfn) phys_to_nid((unsigned long)(pfn) << PAGE_SHIFT)
42 #define kvaddr_to_nid(kaddr)    phys_to_nid(__pa(kaddr))
43
44 /* Requires pfn_valid(pfn) to be true */
45 #define pfn_to_page(pfn) ({ \
46         int nid = phys_to_nid(((unsigned long)(pfn)) << PAGE_SHIFT);    \
47         ((pfn) - node_start_pfn(nid)) + NODE_DATA(nid)->node_mem_map;   \
48 })
49
50 #define page_to_pfn(page) \
51         (long)(((page) - page_zone(page)->zone_mem_map) + page_zone(page)->zone_start_pfn)
52
53 #define pfn_valid(pfn) ((pfn) >= num_physpages ? 0 : \
54                         ({ u8 nid__ = pfn_to_nid(pfn); \
55                            nid__ != 0xff && (pfn) >= node_start_pfn(nid__) && (pfn) < node_end_pfn(nid__); }))
56 #endif
57
58 #define local_mapnr(kvaddr) \
59         ( (__pa(kvaddr) >> PAGE_SHIFT) - node_start_pfn(kvaddr_to_nid(kvaddr)) )
60 #endif
61 #endif