blob: 6b18cd8f293d731d4908e52799131e1ff3bcc645 [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
Nakul Saraiyaf297e4e2005-09-12 18:49:24 +020015#define NODEMAPSIZE 0xfff
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)
45#define kvaddr_to_nid(kaddr) phys_to_nid(__pa(kaddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Andi Kleencf050132006-01-11 22:46:27 +010047extern int pfn_valid(unsigned long pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#endif
Matt Tolentino2b976902005-06-23 00:08:06 -070049
Matt Tolentino2b976902005-06-23 00:08:06 -070050#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#endif