blob: ecc4b07507d65f097ed68e5498be6b6b65483e33 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Written by Kanoj Sarcar (kanoj@sgi.com) Aug 99
3 *
4 * PowerPC64 port:
5 * Copyright (C) 2002 Anton Blanchard, IBM Corp.
6 */
7#ifndef _ASM_MMZONE_H_
8#define _ASM_MMZONE_H_
9
10#include <linux/config.h>
11#include <asm/smp.h>
12
13#ifdef CONFIG_DISCONTIGMEM
14
15extern struct pglist_data *node_data[];
16
17/*
18 * Following are specific to this numa platform.
19 */
20
21extern int numa_cpu_lookup_table[];
22extern char *numa_memory_lookup_table;
23extern cpumask_t numa_cpumask_lookup_table[];
24extern int nr_cpus_in_node[];
25
26/* 16MB regions */
27#define MEMORY_INCREMENT_SHIFT 24
28#define MEMORY_INCREMENT (1UL << MEMORY_INCREMENT_SHIFT)
29
30/* NUMA debugging, will not work on a DLPAR machine */
31#undef DEBUG_NUMA
32
33static inline int pa_to_nid(unsigned long pa)
34{
35 int nid;
36
37 nid = numa_memory_lookup_table[pa >> MEMORY_INCREMENT_SHIFT];
38
39#ifdef DEBUG_NUMA
40 /* the physical address passed in is not in the map for the system */
41 if (nid == -1) {
42 printk("bad address: %lx\n", pa);
43 BUG();
44 }
45#endif
46
47 return nid;
48}
49
50#define pfn_to_nid(pfn) pa_to_nid((pfn) << PAGE_SHIFT)
51
52/*
53 * Return a pointer to the node data for node n.
54 */
55#define NODE_DATA(nid) (node_data[nid])
56
57#define node_localnr(pfn, nid) ((pfn) - NODE_DATA(nid)->node_start_pfn)
58
59/*
60 * Following are macros that each numa implmentation must define.
61 */
62
63/*
64 * Given a kernel address, find the home node of the underlying memory.
65 */
66#define kvaddr_to_nid(kaddr) pa_to_nid(__pa(kaddr))
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define node_start_pfn(nid) (NODE_DATA(nid)->node_start_pfn)
69#define node_end_pfn(nid) (NODE_DATA(nid)->node_end_pfn)
70
71#define local_mapnr(kvaddr) \
72 ( (__pa(kvaddr) >> PAGE_SHIFT) - node_start_pfn(kvaddr_to_nid(kvaddr))
73
74/* Written this way to avoid evaluating arguments twice */
75#define discontigmem_pfn_to_page(pfn) \
76({ \
77 unsigned long __tmp = pfn; \
Dave Hansen408fde82005-06-23 00:07:37 -070078 (NODE_DATA(pfn_to_nid(__tmp))->node_mem_map + \
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 node_localnr(__tmp, pfn_to_nid(__tmp))); \
80})
81
82#define discontigmem_page_to_pfn(p) \
83({ \
84 struct page *__tmp = p; \
85 (((__tmp) - page_zone(__tmp)->zone_mem_map) + \
86 page_zone(__tmp)->zone_start_pfn); \
87})
88
89/* XXX fix for discontiguous physical memory */
90#define discontigmem_pfn_valid(pfn) ((pfn) < num_physpages)
91
92#endif /* CONFIG_DISCONTIGMEM */
Andy Whitcroft510f8fa2005-06-23 00:08:01 -070093
94#ifdef CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID
95#define early_pfn_to_nid(pfn) pa_to_nid(((unsigned long)pfn) << PAGE_SHIFT)
96#endif
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#endif /* _ASM_MMZONE_H_ */