diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-12-27 11:30:05 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-27 11:30:05 +0100 |
commit | 34bf5d0ff54d03f0a8ed690d47efb806ee2fffcb (patch) | |
tree | 5465f999b2b067744220b66c89b75f0f10445d6e /arch/x86/pci/common.c | |
parent | bd8b96dfc216eebc72950a6c40da8d3eca8667df (diff) | |
parent | 79a66b96c339626a3e4b226fefc0e45244cfe6ff (diff) | |
download | blackbird-obmc-linux-34bf5d0ff54d03f0a8ed690d47efb806ee2fffcb.tar.gz blackbird-obmc-linux-34bf5d0ff54d03f0a8ed690d47efb806ee2fffcb.zip |
Merge branch 'x86/core' into x86/cleanups
Diffstat (limited to 'arch/x86/pci/common.c')
-rw-r--r-- | arch/x86/pci/common.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/x86/pci/common.c b/arch/x86/pci/common.c index b67732bbb85a..bb1a01f089e2 100644 --- a/arch/x86/pci/common.c +++ b/arch/x86/pci/common.c @@ -23,6 +23,12 @@ unsigned int pci_probe = PCI_PROBE_BIOS | PCI_PROBE_CONF1 | PCI_PROBE_CONF2 | unsigned int pci_early_dump_regs; static int pci_bf_sort; int pci_routeirq; +int noioapicquirk; +#ifdef CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS +int noioapicreroute = 0; +#else +int noioapicreroute = 1; +#endif int pcibios_last_bus = -1; unsigned long pirq_table_addr; struct pci_bus *pci_root_bus; @@ -519,6 +525,17 @@ char * __devinit pcibios_setup(char *str) } else if (!strcmp(str, "skip_isa_align")) { pci_probe |= PCI_CAN_SKIP_ISA_ALIGN; return NULL; + } else if (!strcmp(str, "noioapicquirk")) { + noioapicquirk = 1; + return NULL; + } else if (!strcmp(str, "ioapicreroute")) { + if (noioapicreroute != -1) + noioapicreroute = 0; + return NULL; + } else if (!strcmp(str, "noioapicreroute")) { + if (noioapicreroute != -1) + noioapicreroute = 1; + return NULL; } return str; } |