topology.h 1.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * Copyright (C) 2002, Erich Focht, NEC
 *
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */
#ifndef _ASM_IA64_TOPOLOGY_H
#define _ASM_IA64_TOPOLOGY_H

#include <asm/acpi.h>
#include <asm/numa.h>
#include <asm/smp.h>

#ifdef CONFIG_NUMA
19 20 21 22

/* Nodes w/o CPUs are preferred for memory allocations, see build_zonelists */
#define PENALTY_FOR_NODE_WITH_CPUS 255

23 24 25 26 27
/*
 * Distance above which we begin to use zone reclaim
 */
#define RECLAIM_DISTANCE 15

L
Linus Torvalds 已提交
28 29 30
/*
 * Returns a bitmask of CPUs on Node 'node'.
 */
31 32 33
#define cpumask_of_node(node) ((node) == -1 ?				\
			       cpu_all_mask :				\
			       &node_to_cpu_mask[node])
L
Linus Torvalds 已提交
34 35 36 37 38 39 40 41

/*
 * Returns the number of the node containing Node 'nid'.
 * Not implemented here. Multi-level hierarchies detected with
 * the help of node_distance().
 */
#define parent_node(nid) (nid)

42 43 44 45 46
/*
 * Determines the node for a given pci bus
 */
#define pcibus_to_node(bus) PCI_CONTROLLER(bus)->node

L
Linus Torvalds 已提交
47 48 49 50
void build_cpu_to_node_map(void);

#endif /* CONFIG_NUMA */

51 52 53
#ifdef CONFIG_SMP
#define topology_physical_package_id(cpu)	(cpu_data(cpu)->socket_id)
#define topology_core_id(cpu)			(cpu_data(cpu)->core_id)
54 55
#define topology_core_cpumask(cpu)		(&cpu_core_map[cpu])
#define topology_thread_cpumask(cpu)		(&per_cpu(cpu_sibling_map, cpu))
56 57
#endif

58 59
extern void arch_fix_phys_package_id(int num, u32 slot);

60 61
#define cpumask_of_pcibus(bus)	(pcibus_to_node(bus) == -1 ?		\
				 cpu_all_mask :				\
62
				 cpumask_of_node(pcibus_to_node(bus)))
63

L
Linus Torvalds 已提交
64 65 66
#include <asm-generic/topology.h>

#endif /* _ASM_IA64_TOPOLOGY_H */