aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/apic/probe_32.c
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2011-01-23 08:37:34 -0500
committerIngo Molnar <mingo@elte.hu>2011-01-28 08:54:07 -0500
commit3f6f6798889d50ec7ca8eef1d100cda37dc658ea (patch)
treebb54b5cb4246ea9be34cf38a6442ddc5812853b9 /arch/x86/kernel/apic/probe_32.c
parentacb8bc09c6185e4d3d582d0076aaa6a89f19d8c5 (diff)
x86: Implement the default x86_32_early_logical_apicid()
Implement x86_32_early_logical_apicid() for the default apic flat routing. Signed-off-by: Tejun Heo <tj@kernel.org> Cc: eric.dumazet@gmail.com Cc: yinghai@kernel.org Cc: brgerst@gmail.com Cc: gorcunov@gmail.com Cc: penberg@kernel.org Cc: shaohui.zheng@intel.com Cc: rientjes@google.com LKML-Reference: <1295789862-25482-9-git-send-email-tj@kernel.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/apic/probe_32.c')
-rw-r--r--arch/x86/kernel/apic/probe_32.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic/probe_32.c b/arch/x86/kernel/apic/probe_32.c
index 40be7c3cdfeb..0f9a9ab49e79 100644
--- a/arch/x86/kernel/apic/probe_32.c
+++ b/arch/x86/kernel/apic/probe_32.c
@@ -77,6 +77,11 @@ void __init default_setup_apic_routing(void)
77 apic->setup_apic_routing(); 77 apic->setup_apic_routing();
78} 78}
79 79
80static int default_x86_32_early_logical_apicid(int cpu)
81{
82 return 1 << cpu;
83}
84
80static void setup_apic_flat_routing(void) 85static void setup_apic_flat_routing(void)
81{ 86{
82#ifdef CONFIG_X86_IO_APIC 87#ifdef CONFIG_X86_IO_APIC
@@ -167,7 +172,7 @@ struct apic apic_default = {
167 .wait_icr_idle = native_apic_wait_icr_idle, 172 .wait_icr_idle = native_apic_wait_icr_idle,
168 .safe_wait_icr_idle = native_safe_apic_wait_icr_idle, 173 .safe_wait_icr_idle = native_safe_apic_wait_icr_idle,
169 174
170 .x86_32_early_logical_apicid = noop_x86_32_early_logical_apicid, 175 .x86_32_early_logical_apicid = default_x86_32_early_logical_apicid,
171}; 176};
172 177
173extern struct apic apic_numaq; 178extern struct apic apic_numaq;