blob: fd3fd58bad845df6f2fbb1753257de994cd7cc1d [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_
Arnd Bergmann88ced032005-12-16 22:43:46 +01009#ifdef __KERNEL__
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Stephen Rothwell17ad6ea2009-03-19 22:03:22 +110011#include <linux/cpumask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
Anton Blanchard45fb6ce2005-11-11 14:22:35 +110013/*
14 * generic non-linear memory support:
Andy Whitcroft145e6642005-06-23 00:08:03 -070015 *
16 * 1) we will not split memory into more chunks than will fit into the
17 * flags field of the struct page
18 */
19
Andy Whitcroft145e6642005-06-23 00:08:03 -070020#ifdef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22extern struct pglist_data *node_data[];
Andy Whitcroft145e6642005-06-23 00:08:03 -070023/*
24 * Return a pointer to the node data for node n.
25 */
26#define NODE_DATA(nid) (node_data[nid])
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/*
29 * Following are specific to this numa platform.
30 */
31
32extern int numa_cpu_lookup_table[];
Anton Blanchard25863de2010-04-26 15:32:43 +000033extern cpumask_var_t node_to_cpumask_map[];
Mike Kravetz82dd26a2005-11-04 15:20:24 -080034#ifdef CONFIG_MEMORY_HOTPLUG
35extern unsigned long max_pfn;
Nishanth Aravamudancd342062010-10-26 17:35:12 +000036u64 memory_hotplug_max(void);
37#else
38#define memory_hotplug_max() memblock_end_of_DRAM()
Mike Kravetz82dd26a2005-11-04 15:20:24 -080039#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/*
42 * Following are macros that each numa implmentation must define.
43 */
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define node_start_pfn(nid) (NODE_DATA(nid)->node_start_pfn)
46#define node_end_pfn(nid) (NODE_DATA(nid)->node_end_pfn)
47
Nishanth Aravamudancd342062010-10-26 17:35:12 +000048#else
49#define memory_hotplug_max() memblock_end_of_DRAM()
Andy Whitcroft145e6642005-06-23 00:08:03 -070050#endif /* CONFIG_NEED_MULTIPLE_NODES */
51
Arnd Bergmann88ced032005-12-16 22:43:46 +010052#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#endif /* _ASM_MMZONE_H_ */