Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 158634
b: refs/heads/master
c: ce69a78
h: refs/heads/master
v: v3
  • Loading branch information
Gleb Natapov authored and Ingo Molnar committed Aug 5, 2009
1 parent 5a4bd14 commit 2a437d3
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 41 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9910887af84e33ba98fd6792029470ae80166208
refs/heads/master: ce69a784504222c3ab6f1b3c357d09ec5772127a
7 changes: 7 additions & 0 deletions trunk/arch/x86/include/asm/apic.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,10 @@ static inline int x2apic_enabled(void)
}

#define x2apic_supported() (cpu_has_x2apic)
static inline void x2apic_force_phys(void)
{
x2apic_phys = 1;
}
#else
static inline void check_x2apic(void)
{
Expand All @@ -194,6 +198,9 @@ static inline int x2apic_enabled(void)
{
return 0;
}
static inline void x2apic_force_phys(void)
{
}

#define x2apic_preenabled 0
#define x2apic_supported() 0
Expand Down
83 changes: 46 additions & 37 deletions trunk/arch/x86/kernel/apic/apic.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
#include <asm/mtrr.h>
#include <asm/smp.h>
#include <asm/mce.h>
#include <asm/kvm_para.h>

unsigned int num_processors;

Expand Down Expand Up @@ -1361,94 +1362,102 @@ void enable_x2apic(void)
}
#endif /* CONFIG_X86_X2APIC */

void __init enable_IR_x2apic(void)
int __init enable_IR(void)
{
#ifdef CONFIG_INTR_REMAP
int ret;
unsigned long flags;
struct IO_APIC_route_entry **ioapic_entries = NULL;

ret = dmar_table_init();
if (ret) {
pr_debug("dmar_table_init() failed with %d:\n", ret);
goto ir_failed;
return 0;
}

if (!intr_remapping_supported()) {
pr_debug("intr-remapping not supported\n");
goto ir_failed;
return 0;
}


if (!x2apic_preenabled && skip_ioapic_setup) {
pr_info("Skipped enabling intr-remap because of skipping "
"io-apic setup\n");
return;
return 0;
}

if (enable_intr_remapping(x2apic_supported()))
return 0;

pr_info("Enabled Interrupt-remapping\n");

return 1;

#endif
return 0;
}

void __init enable_IR_x2apic(void)
{
unsigned long flags;
struct IO_APIC_route_entry **ioapic_entries = NULL;
int ret, x2apic_enabled = 0;

ioapic_entries = alloc_ioapic_entries();
if (!ioapic_entries) {
pr_info("Allocate ioapic_entries failed: %d\n", ret);
goto end;
pr_err("Allocate ioapic_entries failed\n");
goto out;
}

ret = save_IO_APIC_setup(ioapic_entries);
if (ret) {
pr_info("Saving IO-APIC state failed: %d\n", ret);
goto end;
goto out;
}

local_irq_save(flags);
mask_IO_APIC_setup(ioapic_entries);
mask_8259A();
mask_IO_APIC_setup(ioapic_entries);

ret = enable_intr_remapping(x2apic_supported());
if (ret)
goto end_restore;
ret = enable_IR();
if (!ret) {
/* IR is required if there is APIC ID > 255 even when running
* under KVM
*/
if (max_physical_apicid > 255 || !kvm_para_available())
goto nox2apic;
/*
* without IR all CPUs can be addressed by IOAPIC/MSI
* only in physical mode
*/
x2apic_force_phys();
}

pr_info("Enabled Interrupt-remapping\n");
x2apic_enabled = 1;

if (x2apic_supported() && !x2apic_mode) {
x2apic_mode = 1;
enable_x2apic();
pr_info("Enabled x2apic\n");
}

end_restore:
if (ret)
/*
* IR enabling failed
*/
nox2apic:
if (!ret) /* IR enabling failed */
restore_IO_APIC_setup(ioapic_entries);

unmask_8259A();
local_irq_restore(flags);

end:
out:
if (ioapic_entries)
free_ioapic_entries(ioapic_entries);

if (!ret)
if (x2apic_enabled)
return;

ir_failed:
if (x2apic_preenabled)
panic("x2apic enabled by bios. But IR enabling failed");
panic("x2apic: enabled by BIOS but kernel init failed.");
else if (cpu_has_x2apic)
pr_info("Not enabling x2apic,Intr-remapping\n");
#else
if (!cpu_has_x2apic)
return;

if (x2apic_preenabled)
panic("x2apic enabled prior OS handover,"
" enable CONFIG_X86_X2APIC, CONFIG_INTR_REMAP");
#endif

return;
pr_info("Not enabling x2apic, Intr-remapping init failed.\n");
}


#ifdef CONFIG_X86_64
/*
* Detect and enable local APICs on non-SMP boards.
Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/x86/kernel/apic/probe_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ static struct apic *apic_probe[] __initdata = {
void __init default_setup_apic_routing(void)
{
#ifdef CONFIG_X86_X2APIC
if (x2apic_mode && (apic != &apic_x2apic_phys &&
if (x2apic_mode
#ifdef CONFIG_X86_UV
apic != &apic_x2apic_uv_x &&
&& apic != &apic_x2apic_uv_x
#endif
apic != &apic_x2apic_cluster)) {
) {
if (x2apic_phys)
apic = &apic_x2apic_phys;
else
Expand Down

0 comments on commit 2a437d3

Please sign in to comment.