blob: a3cc9f65f954e7231a6fe0cba79ee5a0a22f5dc1 [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])
37
38/*
39 * Returns the number of the node containing Node 'nid'.
40 * Not implemented here. Multi-level hierarchies detected with
41 * the help of node_distance().
42 */
43#define parent_node(nid) (nid)
44
45/*
46 * Returns the number of the first CPU on Node 'node'.
47 */
Ravikiran G Thirumalaic6604392005-12-22 14:21:34 -080048#define node_to_first_cpu(node) (first_cpu(node_to_cpumask(node)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Christoph Lameter514604c2005-07-07 16:59:00 -070050/*
51 * Determines the node for a given pci bus
52 */
53#define pcibus_to_node(bus) PCI_CONTROLLER(bus)->node
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055void build_cpu_to_node_map(void);
56
Nick Piggin687f1662005-06-25 14:57:21 -070057#define SD_CPU_INIT (struct sched_domain) { \
Nick Piggin687f1662005-06-25 14:57:21 -070058 .parent = NULL, \
Siddha, Suresh B1a848872006-10-03 01:14:08 -070059 .child = NULL, \
Nick Piggin687f1662005-06-25 14:57:21 -070060 .groups = NULL, \
61 .min_interval = 1, \
62 .max_interval = 4, \
63 .busy_factor = 64, \
64 .imbalance_pct = 125, \
Nick Piggin687f1662005-06-25 14:57:21 -070065 .cache_nice_tries = 2, \
66 .busy_idx = 2, \
67 .idle_idx = 1, \
68 .newidle_idx = 2, \
69 .wake_idx = 1, \
70 .forkexec_idx = 1, \
71 .flags = SD_LOAD_BALANCE \
72 | SD_BALANCE_NEWIDLE \
73 | SD_BALANCE_EXEC \
74 | SD_WAKE_AFFINE, \
75 .last_balance = jiffies, \
76 .balance_interval = 1, \
77 .nr_balance_failed = 0, \
78}
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080/* sched_domains SD_NODE_INIT for IA64 NUMA machines */
81#define SD_NODE_INIT (struct sched_domain) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 .parent = NULL, \
Siddha, Suresh B1a848872006-10-03 01:14:08 -070083 .child = NULL, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 .groups = NULL, \
Nick Piggin687f1662005-06-25 14:57:21 -070085 .min_interval = 8, \
86 .max_interval = 8*(min(num_online_cpus(), 32)), \
87 .busy_factor = 64, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 .imbalance_pct = 125, \
Nick Piggin687f1662005-06-25 14:57:21 -070089 .cache_nice_tries = 2, \
90 .busy_idx = 3, \
91 .idle_idx = 2, \
Hidetoshi Seto1d3504f2008-04-15 14:04:23 +090092 .newidle_idx = 2, \
Nick Piggin687f1662005-06-25 14:57:21 -070093 .wake_idx = 1, \
94 .forkexec_idx = 1, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 .flags = SD_LOAD_BALANCE \
96 | SD_BALANCE_EXEC \
Nick Piggin687f1662005-06-25 14:57:21 -070097 | SD_BALANCE_FORK \
Christoph Lameter08c183f2006-12-10 02:20:29 -080098 | SD_SERIALIZE \
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 | SD_WAKE_BALANCE, \
100 .last_balance = jiffies, \
Nick Piggin687f1662005-06-25 14:57:21 -0700101 .balance_interval = 64, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 .nr_balance_failed = 0, \
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#endif /* CONFIG_NUMA */
106
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800107#ifdef CONFIG_SMP
108#define topology_physical_package_id(cpu) (cpu_data(cpu)->socket_id)
109#define topology_core_id(cpu) (cpu_data(cpu)->core_id)
110#define topology_core_siblings(cpu) (cpu_core_map[cpu])
Mike Travisd5a74302007-10-16 01:24:05 -0700111#define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu))
Siddha, Suresh B5c45bf22006-06-27 02:54:42 -0700112#define smt_capable() (smp_num_siblings > 1)
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800113#endif
114
Alex Chiangfe086a72008-04-29 15:05:29 -0700115extern void arch_fix_phys_package_id(int num, u32 slot);
116
Mike Travisaa6b5442008-03-31 08:41:55 -0700117#define pcibus_to_cpumask(bus) (pcibus_to_node(bus) == -1 ? \
118 CPU_MASK_ALL : \
119 node_to_cpumask(pcibus_to_node(bus)) \
120 )
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#include <asm-generic/topology.h>
123
124#endif /* _ASM_IA64_TOPOLOGY_H */