2005-04-16 22:20:36 +00:00
|
|
|
#ifndef _ASM_SPARC64_TOPOLOGY_H
|
|
|
|
#define _ASM_SPARC64_TOPOLOGY_H
|
|
|
|
|
2007-06-05 00:01:39 +00:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
#define topology_physical_package_id(cpu) (cpu_data(cpu).proc_id)
|
2007-05-25 22:49:59 +00:00
|
|
|
#define topology_core_id(cpu) (cpu_data(cpu).core_id)
|
2007-06-05 00:01:39 +00:00
|
|
|
#define topology_core_siblings(cpu) (cpu_core_map[cpu])
|
2007-10-16 08:24:05 +00:00
|
|
|
#define topology_thread_siblings(cpu) (per_cpu(cpu_sibling_map, cpu))
|
2007-06-05 04:48:33 +00:00
|
|
|
#define mc_capable() (sparc64_multi_core)
|
|
|
|
#define smt_capable() (sparc64_multi_core)
|
2007-06-05 00:01:39 +00:00
|
|
|
#endif /* CONFIG_SMP */
|
|
|
|
|
|
|
|
#include <asm-generic/topology.h>
|
|
|
|
|
|
|
|
#define cpu_coregroup_map(cpu) (cpu_core_map[cpu])
|
2007-05-25 22:49:59 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif /* _ASM_SPARC64_TOPOLOGY_H */
|