aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-ia64/nodedata.h
blob: 0e9c624369188f7dfb77e944c301d196c6049d92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (c) 2000 Silicon Graphics, Inc.  All rights reserved.
 * Copyright (c) 2002 NEC Corp.
 * Copyright (c) 2002 Erich Focht <efocht@ess.nec.de>
 * Copyright (c) 2002 Kimio Suganuma <k-suganuma@da.jp.nec.com>
 */


#ifndef _ASM_IA64_NODEDATA_H
#define _ASM_IA64_NODEDATA_H


#include <asm/mmzone.h>

/*
 * Node Data. One of these structures is located on each node of a NUMA system.
 */

struct pglist_data;
struct ia64_node_data {
	short			node;
        struct pglist_data	*pg_data_ptrs[NR_NODES];
	struct page		*bank_mem_map_base[NR_BANKS];
	struct ia64_node_data	*node_data_ptrs[NR_NODES];
	short			node_id_map[NR_BANKS];
};


/*
 * Return a pointer to the node_data structure for the executing cpu.
 */
#define local_node_data		(local_cpu_data->node_data)


/*
 * Return a pointer to the node_data structure for the specified node.
 */
#define node_data(node)	(local_node_data->node_data_ptrs[node])

/*
 * Get a pointer to the node_id/node_data for the current cpu.
 *    (boot time only)
 */
extern int boot_get_local_nodeid(void);
extern struct ia64_node_data *get_node_data_ptr(void);

/*
 * Given a node id, return a pointer to the pg_data_t for the node.
 * The following 2 macros are similar. 
 *
 * NODE_DATA 	- should be used in all code not related to system
 *		  initialization. It uses pernode data structures to minimize
 *		  offnode memory references. However, these structure are not 
 *		  present during boot. This macro can be used once cpu_init
 *		  completes.
 *
 * BOOT_NODE_DATA
 *		- should be used during system initialization 
 *		  prior to freeing __initdata. It does not depend on the percpu
 *		  area being present.
 *
 * NOTE:   The names of these macros are misleading but are difficult to change
 *	   since they are used in generic linux & on other architecures.
 */
#define NODE_DATA(nid)		(local_node_data->pg_data_ptrs[nid])
#define BOOT_NODE_DATA(nid)	boot_get_pg_data_ptr((long)(nid))

struct pglist_data;
extern struct pglist_data * __init boot_get_pg_data_ptr(long);

#endif /* _ASM_IA64_NODEDATA_H */