[MIPS] Remove IP27 specific structures from struct cpuinfo_mips
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
@@ -14,10 +14,6 @@
|
||||
|
||||
#include <asm/cache.h>
|
||||
|
||||
#ifdef CONFIG_SGI_IP27
|
||||
#include <asm/sn/types.h>
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Descriptor for a cache
|
||||
*/
|
||||
@@ -43,20 +39,6 @@ struct cache_desc {
|
||||
struct cpuinfo_mips {
|
||||
unsigned long udelay_val;
|
||||
unsigned long asid_cache;
|
||||
#if defined(CONFIG_SGI_IP27)
|
||||
// cpuid_t p_cpuid; /* PROM assigned cpuid */
|
||||
cnodeid_t p_nodeid; /* my node ID in compact-id-space */
|
||||
nasid_t p_nasid; /* my node ID in numa-as-id-space */
|
||||
unsigned char p_slice; /* Physical position on node board */
|
||||
#endif
|
||||
#if 0
|
||||
unsigned long loops_per_sec;
|
||||
unsigned long ipi_count;
|
||||
unsigned long irq_attempt[NR_IRQS];
|
||||
unsigned long smp_local_irq_count;
|
||||
unsigned long prof_multiplier;
|
||||
unsigned long prof_counter;
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Capability and feature descriptor structure for MIPS CPU
|
||||
|
||||
@@ -2,9 +2,27 @@
|
||||
#define _ASM_MACH_TOPOLOGY_H 1
|
||||
|
||||
#include <asm/sn/hub.h>
|
||||
#include <asm/sn/types.h>
|
||||
#include <asm/mmzone.h>
|
||||
|
||||
#define cpu_to_node(cpu) (cpu_data[(cpu)].p_nodeid)
|
||||
struct cpuinfo_ip27 {
|
||||
// cpuid_t p_cpuid; /* PROM assigned cpuid */
|
||||
cnodeid_t p_nodeid; /* my node ID in compact-id-space */
|
||||
nasid_t p_nasid; /* my node ID in numa-as-id-space */
|
||||
unsigned char p_slice; /* Physical position on node board */
|
||||
#if 0
|
||||
unsigned long loops_per_sec;
|
||||
unsigned long ipi_count;
|
||||
unsigned long irq_attempt[NR_IRQS];
|
||||
unsigned long smp_local_irq_count;
|
||||
unsigned long prof_multiplier;
|
||||
unsigned long prof_counter;
|
||||
#endif
|
||||
};
|
||||
|
||||
extern struct cpuinfo_ip27 sn_cpu_info[NR_CPUS];
|
||||
|
||||
#define cpu_to_node(cpu) (sn_cpu_info[(cpu)].p_nodeid)
|
||||
#define parent_node(node) (node)
|
||||
#define node_to_cpumask(node) (hub_data(node)->h_cpus)
|
||||
#define node_to_first_cpu(node) (first_cpu(node_to_cpumask(node)))
|
||||
|
||||
@@ -19,8 +19,8 @@
|
||||
|
||||
typedef u64 hubreg_t;
|
||||
|
||||
#define cputonasid(cpu) (cpu_data[(cpu)].p_nasid)
|
||||
#define cputoslice(cpu) (cpu_data[(cpu)].p_slice)
|
||||
#define cputonasid(cpu) (sn_cpu_info[(cpu)].p_nasid)
|
||||
#define cputoslice(cpu) (sn_cpu_info[(cpu)].p_slice)
|
||||
#define makespnum(_nasid, _slice) \
|
||||
(((_nasid) << CPUS_PER_NODE_SHFT) | (_slice))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user