blob: 8d48dc7e43a7bd098f3c11df8ef921eee939ba61 [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 */
18extern int memnode_shift;
19extern u8 memnodemap[NODEMAPSIZE];
20extern int maxnode;
21
22extern struct pglist_data *node_data[];
23
24static 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define NODE_DATA(nid) (node_data[nid])
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#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
Matt Tolentino2b976902005-06-23 00:08:06 -070039#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))
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Andi Kleen1dff7f32005-11-05 17:25:53 +010044/* Requires pfn_valid(pfn) to be true */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define pfn_to_page(pfn) ({ \
46 int nid = phys_to_nid(((unsigned long)(pfn)) << PAGE_SHIFT); \
Dave Hansen408fde82005-06-23 00:07:37 -070047 ((pfn) - node_start_pfn(nid)) + NODE_DATA(nid)->node_mem_map; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070048})
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); \
Jim Paradisfb048922005-09-12 18:49:24 +020055 nid__ != 0xff && (pfn) >= node_start_pfn(nid__) && (pfn) < node_end_pfn(nid__); }))
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#endif
Matt Tolentino2b976902005-06-23 00:08:06 -070057
58#define local_mapnr(kvaddr) \
59 ( (__pa(kvaddr) >> PAGE_SHIFT) - node_start_pfn(kvaddr_to_nid(kvaddr)) )
60#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif