blob: 6944e7122df5194c767217444a993a90db3d6ede [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
7#include <linux/config.h>
8
Matt Tolentino2b976902005-06-23 00:08:06 -07009#ifdef CONFIG_NUMA
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11#define VIRTUAL_BUG_ON(x)
12
13#include <asm/smp.h>
14
Andi Kleen6fa679f2006-04-18 12:35:16 +020015/* Should really switch to dynamic allocation at some point */
16#define NODEMAPSIZE 0x4fff
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18/* Simple perfect hash to map physical addresses to node numbers */
Eric Dumazetdcf36bf2006-03-25 16:31:46 +010019struct memnode {
20 int shift;
21 u8 map[NODEMAPSIZE];
22} ____cacheline_aligned;
23extern struct memnode memnode;
24#define memnode_shift memnode.shift
25#define memnodemap memnode.map
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27extern struct pglist_data *node_data[];
28
29static inline __attribute__((pure)) int phys_to_nid(unsigned long addr)
30{
Andi Kleene90f22e2005-11-05 17:25:54 +010031 unsigned nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 VIRTUAL_BUG_ON((addr >> memnode_shift) >= NODEMAPSIZE);
33 nid = memnodemap[addr >> memnode_shift];
Andi Kleene90f22e2005-11-05 17:25:54 +010034 VIRTUAL_BUG_ON(nid >= MAX_NUMNODES || !node_data[nid]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 return nid;
36}
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define NODE_DATA(nid) (node_data[nid])
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define node_start_pfn(nid) (NODE_DATA(nid)->node_start_pfn)
41#define node_end_pfn(nid) (NODE_DATA(nid)->node_start_pfn + \
42 NODE_DATA(nid)->node_spanned_pages)
43
Matt Tolentino2b976902005-06-23 00:08:06 -070044#ifdef CONFIG_DISCONTIGMEM
Matt Tolentino2b976902005-06-23 00:08:06 -070045#define pfn_to_nid(pfn) phys_to_nid((unsigned long)(pfn) << PAGE_SHIFT)
46#define kvaddr_to_nid(kaddr) phys_to_nid(__pa(kaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Andi Kleencf050132006-01-11 22:46:27 +010048extern int pfn_valid(unsigned long pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#endif
Matt Tolentino2b976902005-06-23 00:08:06 -070050
Matt Tolentino2b976902005-06-23 00:08:06 -070051#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#endif