blob: 66f0f1ef9e7f324e1ad0fcdcb70290da595a0dcd [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2002, Erich Focht, NEC
3 *
4 * All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11#ifndef _ASM_IA64_TOPOLOGY_H
12#define _ASM_IA64_TOPOLOGY_H
13
14#include <asm/acpi.h>
15#include <asm/numa.h>
16#include <asm/smp.h>
17
18#ifdef CONFIG_NUMA
Jack Steiner8d08aed2006-01-17 15:42:46 -060019
20/* Nodes w/o CPUs are preferred for memory allocations, see build_zonelists */
21#define PENALTY_FOR_NODE_WITH_CPUS 255
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023/*
Christoph Lametere5ecc192006-04-13 18:23:53 -070024 * Distance above which we begin to use zone reclaim
25 */
26#define RECLAIM_DISTANCE 15
27
28/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * Returns the number of the node containing CPU 'cpu'
30 */
31#define cpu_to_node(cpu) (int)(cpu_to_node_map[cpu])
32
33/*
34 * Returns a bitmask of CPUs on Node 'node'.
35 */
36#define node_to_cpumask(node) (node_to_cpu_mask[node])
Rusty Russellfbb776c2008-12-26 22:23:40 +103037#define cpumask_of_node(node) (&node_to_cpu_mask[node])
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
40 * Returns the number of the node containing Node 'nid'.
41 * Not implemented here. Multi-level hierarchies detected with
42 * the help of node_distance().
43 */
44#define parent_node(nid) (nid)
45
46/*
47 * Returns the number of the first CPU on Node 'node'.
48 */
Rusty Russellfbb776c2008-12-26 22:23:40 +103049#define node_to_first_cpu(node) (cpumask_first(cpumask_of_node(node)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Christoph Lameter514604c2005-07-07 16:59:00 -070051/*
52 * Determines the node for a given pci bus
53 */
54#define pcibus_to_node(bus) PCI_CONTROLLER(bus)->node
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056void build_cpu_to_node_map(void);
57
Nick Piggin687f1662005-06-25 14:57:21 -070058#define SD_CPU_INIT (struct sched_domain) { \
59 .span = CPU_MASK_NONE, \
60 .parent = NULL, \
Siddha, Suresh B1a848872006-10-03 01:14:08 -070061 .child = NULL, \
Nick Piggin687f1662005-06-25 14:57:21 -070062 .groups = NULL, \
63 .min_interval = 1, \
64 .max_interval = 4, \
65 .busy_factor = 64, \
66 .imbalance_pct = 125, \
Nick Piggin687f1662005-06-25 14:57:21 -070067 .cache_nice_tries = 2, \
68 .busy_idx = 2, \
69 .idle_idx = 1, \
70 .newidle_idx = 2, \
71 .wake_idx = 1, \
72 .forkexec_idx = 1, \
73 .flags = SD_LOAD_BALANCE \
74 | SD_BALANCE_NEWIDLE \
75 | SD_BALANCE_EXEC \
76 | SD_WAKE_AFFINE, \
77 .last_balance = jiffies, \
78 .balance_interval = 1, \
79 .nr_balance_failed = 0, \
80}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/* sched_domains SD_NODE_INIT for IA64 NUMA machines */
83#define SD_NODE_INIT (struct sched_domain) { \
84 .span = CPU_MASK_NONE, \
85 .parent = NULL, \
Siddha, Suresh B1a848872006-10-03 01:14:08 -070086 .child = NULL, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 .groups = NULL, \
Nick Piggin687f1662005-06-25 14:57:21 -070088 .min_interval = 8, \
89 .max_interval = 8*(min(num_online_cpus(), 32)), \
90 .busy_factor = 64, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 .imbalance_pct = 125, \
Nick Piggin687f1662005-06-25 14:57:21 -070092 .cache_nice_tries = 2, \
93 .busy_idx = 3, \
94 .idle_idx = 2, \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +090095 .newidle_idx = 2, \
Nick Piggin687f1662005-06-25 14:57:21 -070096 .wake_idx = 1, \
97 .forkexec_idx = 1, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 .flags = SD_LOAD_BALANCE \
99 | SD_BALANCE_EXEC \
Nick Piggin687f1662005-06-25 14:57:21 -0700100 | SD_BALANCE_FORK \
Christoph Lameter08c183f2006-12-10 02:20:29 -0800101 | SD_SERIALIZE \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 | SD_WAKE_BALANCE, \
103 .last_balance = jiffies, \
Nick Piggin687f1662005-06-25 14:57:21 -0700104 .balance_interval = 64, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 .nr_balance_failed = 0, \
106}
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#endif /* CONFIG_NUMA */
109
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800110#ifdef CONFIG_SMP
111#define topology_physical_package_id(cpu) (cpu_data(cpu)->socket_id)
112#define topology_core_id(cpu) (cpu_data(cpu)->core_id)
113#define topology_core_siblings(cpu) (cpu_core_map[cpu])
Mike Travisd5a74302007-10-16 01:24:05 -0700114#define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -0700115#define smt_capable() (smp_num_siblings > 1)
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800116#endif
117
Alex Chiangfe086a72008-04-29 15:05:29 -0700118extern void arch_fix_phys_package_id(int num, u32 slot);
119
Mike Travisaa6b5442008-03-31 08:41:55 -0700120#define pcibus_to_cpumask(bus) (pcibus_to_node(bus) == -1 ? \
121 CPU_MASK_ALL : \
122 node_to_cpumask(pcibus_to_node(bus)) \
123 )
124
Rusty Russellfbb776c2008-12-26 22:23:40 +1030125#define cpumask_of_pcibus(bus) (pcibus_to_node(bus) == -1 ? \
126 cpu_all_mask : \
127 cpumask_from_node(pcibus_to_node(bus)))
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129#include <asm-generic/topology.h>
130
131#endif /* _ASM_IA64_TOPOLOGY_H */