diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:05 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:05 -0400 |
commit | cc6e8e0812cf95aea397c457ff48de2ac069614f (patch) | |
tree | da0527908dceed57cd10204034a6b2c888a34863 /include/asm-mips/mach-ip27 | |
parent | 641e97f318870921d048154af6807e46e43c307a (diff) |
[MIPS] Remove IP27 specific structures from struct cpuinfo_mips
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/mach-ip27')
-rw-r--r-- | include/asm-mips/mach-ip27/topology.h | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/include/asm-mips/mach-ip27/topology.h b/include/asm-mips/mach-ip27/topology.h index 61d9be3f3175..372291f53fb9 100644 --- a/include/asm-mips/mach-ip27/topology.h +++ b/include/asm-mips/mach-ip27/topology.h | |||
@@ -2,9 +2,27 @@ | |||
2 | #define _ASM_MACH_TOPOLOGY_H 1 | 2 | #define _ASM_MACH_TOPOLOGY_H 1 |
3 | 3 | ||
4 | #include <asm/sn/hub.h> | 4 | #include <asm/sn/hub.h> |
5 | #include <asm/sn/types.h> | ||
5 | #include <asm/mmzone.h> | 6 | #include <asm/mmzone.h> |
6 | 7 | ||
7 | #define cpu_to_node(cpu) (cpu_data[(cpu)].p_nodeid) | 8 | struct 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 | |||
23 | extern struct cpuinfo_ip27 sn_cpu_info[NR_CPUS]; | ||
24 | |||
25 | #define cpu_to_node(cpu) (sn_cpu_info[(cpu)].p_nodeid) | ||
8 | #define parent_node(node) (node) | 26 | #define parent_node(node) (node) |
9 | #define node_to_cpumask(node) (hub_data(node)->h_cpus) | 27 | #define node_to_cpumask(node) (hub_data(node)->h_cpus) |
10 | #define node_to_first_cpu(node) (first_cpu(node_to_cpumask(node))) | 28 | #define node_to_first_cpu(node) (first_cpu(node_to_cpumask(node))) |