diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-01-28 00:50:47 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-28 17:20:24 -0500 |
commit | a21769a4461801454930a06bc18bd8249cd9e993 (patch) | |
tree | 8b879f9a6d1c957d17a155ff865a0f7c8a18e257 /arch/x86/include/asm | |
parent | 5257c5111ca21c8e857b65a79ab986b313e1c362 (diff) |
x86, apic: clean up ->cpu_present_to_apicid()
- separate the namespace
- remove macros
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/include/asm')
-rw-r--r-- | arch/x86/include/asm/bigsmp/apic.h | 2 | ||||
-rw-r--r-- | arch/x86/include/asm/es7000/apic.h | 2 | ||||
-rw-r--r-- | arch/x86/include/asm/genapic.h | 2 | ||||
-rw-r--r-- | arch/x86/include/asm/mach-default/mach_apic.h | 11 | ||||
-rw-r--r-- | arch/x86/include/asm/mach-generic/mach_apic.h | 1 | ||||
-rw-r--r-- | arch/x86/include/asm/numaq/apic.h | 2 | ||||
-rw-r--r-- | arch/x86/include/asm/summit/apic.h | 2 |
7 files changed, 16 insertions, 6 deletions
diff --git a/arch/x86/include/asm/bigsmp/apic.h b/arch/x86/include/asm/bigsmp/apic.h index d0d894ff7d3e..eea5e9788ddd 100644 --- a/arch/x86/include/asm/bigsmp/apic.h +++ b/arch/x86/include/asm/bigsmp/apic.h | |||
@@ -67,7 +67,7 @@ static inline int bigsmp_apicid_to_node(int logical_apicid) | |||
67 | return apicid_2_node[hard_smp_processor_id()]; | 67 | return apicid_2_node[hard_smp_processor_id()]; |
68 | } | 68 | } |
69 | 69 | ||
70 | static inline int cpu_present_to_apicid(int mps_cpu) | 70 | static inline int bigsmp_cpu_present_to_apicid(int mps_cpu) |
71 | { | 71 | { |
72 | if (mps_cpu < nr_cpu_ids) | 72 | if (mps_cpu < nr_cpu_ids) |
73 | return (int) per_cpu(x86_bios_cpu_apicid, mps_cpu); | 73 | return (int) per_cpu(x86_bios_cpu_apicid, mps_cpu); |
diff --git a/arch/x86/include/asm/es7000/apic.h b/arch/x86/include/asm/es7000/apic.h index e0cd07e74f98..7cdde3d9c5f6 100644 --- a/arch/x86/include/asm/es7000/apic.h +++ b/arch/x86/include/asm/es7000/apic.h | |||
@@ -88,7 +88,7 @@ static inline int es7000_apicid_to_node(int logical_apicid) | |||
88 | } | 88 | } |
89 | 89 | ||
90 | 90 | ||
91 | static inline int cpu_present_to_apicid(int mps_cpu) | 91 | static inline int es7000_cpu_present_to_apicid(int mps_cpu) |
92 | { | 92 | { |
93 | if (!mps_cpu) | 93 | if (!mps_cpu) |
94 | return boot_cpu_physical_apicid; | 94 | return boot_cpu_physical_apicid; |
diff --git a/arch/x86/include/asm/genapic.h b/arch/x86/include/asm/genapic.h index 38b1202316f5..2cb14d51e459 100644 --- a/arch/x86/include/asm/genapic.h +++ b/arch/x86/include/asm/genapic.h | |||
@@ -108,6 +108,8 @@ extern struct genapic apic_x2apic_uv_x; | |||
108 | DECLARE_PER_CPU(int, x2apic_extra_bits); | 108 | DECLARE_PER_CPU(int, x2apic_extra_bits); |
109 | 109 | ||
110 | extern void default_setup_apic_routing(void); | 110 | extern void default_setup_apic_routing(void); |
111 | |||
112 | extern int default_cpu_present_to_apicid(int mps_cpu); | ||
111 | #endif | 113 | #endif |
112 | 114 | ||
113 | #endif /* _ASM_X86_GENAPIC_64_H */ | 115 | #endif /* _ASM_X86_GENAPIC_64_H */ |
diff --git a/arch/x86/include/asm/mach-default/mach_apic.h b/arch/x86/include/asm/mach-default/mach_apic.h index eae3e4b6ed04..15d5627a9d6f 100644 --- a/arch/x86/include/asm/mach-default/mach_apic.h +++ b/arch/x86/include/asm/mach-default/mach_apic.h | |||
@@ -110,7 +110,7 @@ static inline int default_cpu_to_logical_apicid(int cpu) | |||
110 | return 1 << cpu; | 110 | return 1 << cpu; |
111 | } | 111 | } |
112 | 112 | ||
113 | static inline int cpu_present_to_apicid(int mps_cpu) | 113 | static inline int __default_cpu_present_to_apicid(int mps_cpu) |
114 | { | 114 | { |
115 | if (mps_cpu < nr_cpu_ids && cpu_present(mps_cpu)) | 115 | if (mps_cpu < nr_cpu_ids && cpu_present(mps_cpu)) |
116 | return (int)per_cpu(x86_bios_cpu_apicid, mps_cpu); | 116 | return (int)per_cpu(x86_bios_cpu_apicid, mps_cpu); |
@@ -118,6 +118,15 @@ static inline int cpu_present_to_apicid(int mps_cpu) | |||
118 | return BAD_APICID; | 118 | return BAD_APICID; |
119 | } | 119 | } |
120 | 120 | ||
121 | #ifdef CONFIG_X86_32 | ||
122 | static inline int default_cpu_present_to_apicid(int mps_cpu) | ||
123 | { | ||
124 | return __default_cpu_present_to_apicid(mps_cpu); | ||
125 | } | ||
126 | #else | ||
127 | extern int default_cpu_present_to_apicid(int mps_cpu); | ||
128 | #endif | ||
129 | |||
121 | static inline physid_mask_t apicid_to_cpu_present(int phys_apicid) | 130 | static inline physid_mask_t apicid_to_cpu_present(int phys_apicid) |
122 | { | 131 | { |
123 | return physid_mask_of_physid(phys_apicid); | 132 | return physid_mask_of_physid(phys_apicid); |
diff --git a/arch/x86/include/asm/mach-generic/mach_apic.h b/arch/x86/include/asm/mach-generic/mach_apic.h index 2ea913e8e0d0..332fe93ab41a 100644 --- a/arch/x86/include/asm/mach-generic/mach_apic.h +++ b/arch/x86/include/asm/mach-generic/mach_apic.h | |||
@@ -3,7 +3,6 @@ | |||
3 | 3 | ||
4 | #include <asm/genapic.h> | 4 | #include <asm/genapic.h> |
5 | 5 | ||
6 | #define cpu_present_to_apicid (apic->cpu_present_to_apicid) | ||
7 | #define apicid_to_cpu_present (apic->apicid_to_cpu_present) | 6 | #define apicid_to_cpu_present (apic->apicid_to_cpu_present) |
8 | #define setup_portio_remap (apic->setup_portio_remap) | 7 | #define setup_portio_remap (apic->setup_portio_remap) |
9 | #define check_phys_apicid_present (apic->check_phys_apicid_present) | 8 | #define check_phys_apicid_present (apic->check_phys_apicid_present) |
diff --git a/arch/x86/include/asm/numaq/apic.h b/arch/x86/include/asm/numaq/apic.h index 6989abd34853..f482b0634476 100644 --- a/arch/x86/include/asm/numaq/apic.h +++ b/arch/x86/include/asm/numaq/apic.h | |||
@@ -69,7 +69,7 @@ static inline int numaq_cpu_to_logical_apicid(int cpu) | |||
69 | * cpu to APIC ID relation to properly interact with the intelligent | 69 | * cpu to APIC ID relation to properly interact with the intelligent |
70 | * mode of the cluster controller. | 70 | * mode of the cluster controller. |
71 | */ | 71 | */ |
72 | static inline int cpu_present_to_apicid(int mps_cpu) | 72 | static inline int numaq_cpu_present_to_apicid(int mps_cpu) |
73 | { | 73 | { |
74 | if (mps_cpu < 60) | 74 | if (mps_cpu < 60) |
75 | return ((mps_cpu >> 2) << 4) | (1 << (mps_cpu & 0x3)); | 75 | return ((mps_cpu >> 2) << 4) | (1 << (mps_cpu & 0x3)); |
diff --git a/arch/x86/include/asm/summit/apic.h b/arch/x86/include/asm/summit/apic.h index d564d7ee3f6c..fc1273691880 100644 --- a/arch/x86/include/asm/summit/apic.h +++ b/arch/x86/include/asm/summit/apic.h | |||
@@ -96,7 +96,7 @@ static inline int summit_cpu_to_logical_apicid(int cpu) | |||
96 | #endif | 96 | #endif |
97 | } | 97 | } |
98 | 98 | ||
99 | static inline int cpu_present_to_apicid(int mps_cpu) | 99 | static inline int summit_cpu_present_to_apicid(int mps_cpu) |
100 | { | 100 | { |
101 | if (mps_cpu < nr_cpu_ids) | 101 | if (mps_cpu < nr_cpu_ids) |
102 | return (int)per_cpu(x86_bios_cpu_apicid, mps_cpu); | 102 | return (int)per_cpu(x86_bios_cpu_apicid, mps_cpu); |