blob: c38ebdf6f426ad41ddfc19fc8df42553eae4b5a6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Matt Tolentino2b976902005-06-23 00:08:06 -07008#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10#define VIRTUAL_BUG_ON(x)
11
12#include <asm/smp.h>
13
Andi Kleen6fa679f2006-04-18 12:35:16 +020014/* Should really switch to dynamic allocation at some point */
15#define NODEMAPSIZE 0x4fff
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17/* Simple perfect hash to map physical addresses to node numbers */
Eric Dumazetdcf36bf2006-03-25 16:31:46 +010018struct memnode {
19 int shift;
20 u8 map[NODEMAPSIZE];
21} ____cacheline_aligned;
22extern struct memnode memnode;
23#define memnode_shift memnode.shift
24#define memnodemap memnode.map
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26extern struct pglist_data *node_data[];
27
28static inline __attribute__((pure)) int phys_to_nid(unsigned long addr)
29{
Andi Kleene90f22e2005-11-05 17:25:54 +010030 unsigned nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 VIRTUAL_BUG_ON((addr >> memnode_shift) >= NODEMAPSIZE);
32 nid = memnodemap[addr >> memnode_shift];
Andi Kleene90f22e2005-11-05 17:25:54 +010033 VIRTUAL_BUG_ON(nid >= MAX_NUMNODES || !node_data[nid]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 return nid;
35}
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define NODE_DATA(nid) (node_data[nid])
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define node_start_pfn(nid) (NODE_DATA(nid)->node_start_pfn)
40#define node_end_pfn(nid) (NODE_DATA(nid)->node_start_pfn + \
41 NODE_DATA(nid)->node_spanned_pages)
42
Matt Tolentino2b976902005-06-23 00:08:06 -070043#ifdef CONFIG_DISCONTIGMEM
Matt Tolentino2b976902005-06-23 00:08:06 -070044#define pfn_to_nid(pfn) phys_to_nid((unsigned long)(pfn) << PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Andi Kleencf050132006-01-11 22:46:27 +010046extern int pfn_valid(unsigned long pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#endif
Matt Tolentino2b976902005-06-23 00:08:06 -070048
Matt Tolentino2b976902005-06-23 00:08:06 -070049#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#endif