blob: c1c3f5b2f18ff568a6092a3a814252d7e95b8934 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_MACH_TOPOLOGY_H
2#define _ASM_MACH_TOPOLOGY_H 1
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <asm/sn/hub.h>
Ralf Baechlecc6e8e02007-10-11 23:46:05 +01005#include <asm/sn/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <asm/mmzone.h>
7
Ralf Baechlecc6e8e02007-10-11 23:46:05 +01008struct cpuinfo_ip27 {
9// cpuid_t p_cpuid; /* PROM assigned cpuid */
10 cnodeid_t p_nodeid; /* my node ID in compact-id-space */
11 nasid_t p_nasid; /* my node ID in numa-as-id-space */
12 unsigned char p_slice; /* Physical position on node board */
13#if 0
14 unsigned long loops_per_sec;
15 unsigned long ipi_count;
16 unsigned long irq_attempt[NR_IRQS];
17 unsigned long smp_local_irq_count;
18 unsigned long prof_multiplier;
19 unsigned long prof_counter;
20#endif
21};
22
23extern struct cpuinfo_ip27 sn_cpu_info[NR_CPUS];
24
25#define cpu_to_node(cpu) (sn_cpu_info[(cpu)].p_nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#define parent_node(node) (node)
27#define node_to_cpumask(node) (hub_data(node)->h_cpus)
Rusty Russellb4a2f912008-12-26 22:23:40 +103028#define cpumask_of_node(node) (&hub_data(node)->h_cpus)
29#define node_to_first_cpu(node) (cpumask_first(cpumask_of_node(node)))
Ralf Baechle9dbdfce2005-09-15 08:52:34 +000030struct pci_bus;
31extern int pcibus_to_node(struct pci_bus *);
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#define pcibus_to_cpumask(bus) (cpu_online_map)
Rusty Russellb4a2f912008-12-26 22:23:40 +103034#define cpumask_of_pcibus(bus) (cpu_online_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36extern unsigned char __node_distances[MAX_COMPACT_NODES][MAX_COMPACT_NODES];
37
38#define node_distance(from, to) (__node_distances[(from)][(to)])
39
40/* sched_domains SD_NODE_INIT for SGI IP27 machines */
41#define SD_NODE_INIT (struct sched_domain) { \
42 .span = CPU_MASK_NONE, \
43 .parent = NULL, \
Siddha, Suresh B1a848872006-10-03 01:14:08 -070044 .child = NULL, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 .groups = NULL, \
46 .min_interval = 8, \
47 .max_interval = 32, \
48 .busy_factor = 32, \
49 .imbalance_pct = 125, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 .cache_nice_tries = 1, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 .flags = SD_LOAD_BALANCE \
52 | SD_BALANCE_EXEC \
53 | SD_WAKE_BALANCE, \
54 .last_balance = jiffies, \
55 .balance_interval = 1, \
56 .nr_balance_failed = 0, \
57}
58
Adrian Bunka4a8f702008-04-23 18:55:59 +030059#include <asm-generic/topology.h>
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif /* _ASM_MACH_TOPOLOGY_H */