* [PATCH] pci: add quirk for non-symmetric-mode irq routing to versions 0 and 4 of the MCP55 northbridge
@ 2010-09-21 17:54 Neil Horman
2010-09-22 0:44 ` Simon Horman
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Neil Horman @ 2010-09-21 17:54 UTC (permalink / raw)
To: linux-pci; +Cc: horms, kexec, nhorman, jbarnes, vgoyal
A long time ago I worked on a RHEL5 bug in which kdump hung during boot
on a set of systems. The systems hung because they never received timer
interrupts during calibrate_delay. These systems also all had Opteron
processors on a hypertransport bus, bridged to a pci bus via an Nvidia MCP55
northbridge chip. AFter much wrangling I managed to learn from Nvidia that they
have an undocumented register in some versions of that chip which control how
legacy interrupts are send to the cpu complex when the ioapic isn't active.
Nvidia defaults this register to only send legacy interrupts to the BSP, so if
kdump happens to boot on an AP, we never get timer interrupts and boom. I had
initially used this quirk as a workaround, with my intent being to move apic
initalization to an earlier point in the boot process, so the setting of the
register would be irrelevant. Given the work involved in doing that however,
the fragile nature of the apic initalization code, and the fact that, over the 2
years since we found this bug, the MCP55 is the only chip which seems to have
this issue, I've figure at this point its likely safer to just carry the quirk
around. By setting the referenced bits in this hidden register, interrupts will
be broadcast to all cpus when the ioapic isn't active on the above described
systems.
Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
include/linux/pci_ids.h | 2 ++
2 files changed, 33 insertions(+)
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 89ed181..ff2964c 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -2276,6 +2276,37 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA,
PCI_DEVICE_ID_NVIDIA_NVENET_15,
nvenet_msi_disable);
+/*
+ * Some versions of the MCP55 bridge from nvidia have a legacy irq routing
+ * config register. This register controls the routing of legacy interrupts
+ * from devices that route through the MCP55. If this register is misprogramed
+ * interrupts are only sent to the bsp, unlike conventional systems where the
+ * irq is broadxast to all online cpus. Not having this register set
+ * properly prevents kdump from booting up properly, so lets make sure that
+ * we have it set correctly.
+ * Note this is an undocumented register.
+ */
+static void __devinit nvbridge_check_legacy_irq_routing(struct pci_dev *dev)
+{
+ u32 cfg;
+
+ pci_read_config_dword(dev, 0x74, &cfg);
+
+ if (cfg & ((1 << 2) | (1 << 15))) {
+ printk(KERN_INFO "Rewriting irq routing register on MCP55\n");
+ cfg &= ~((1 << 2) | (1 << 15));
+ pci_write_config_dword(dev, 0x74, cfg);
+ }
+}
+
+DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA,
+ PCI_DEVICE_ID_NVIDIA_MCP55_BRIDGE_V0,
+ nvbridge_check_legacy_irq_routing);
+
+DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA,
+ PCI_DEVICE_ID_NVIDIA_MCP55_BRIDGE_V4,
+ nvbridge_check_legacy_irq_routing);
+
static int __devinit ht_check_msi_mapping(struct pci_dev *dev)
{
int pos, ttl = 48;
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
index 10d3330..58d3153 100644
--- a/include/linux/pci_ids.h
+++ b/include/linux/pci_ids.h
@@ -1246,6 +1246,8 @@
#define PCI_DEVICE_ID_NVIDIA_GEFORCE_FX_GO5700_2 0x0348
#define PCI_DEVICE_ID_NVIDIA_QUADRO_FX_GO1000 0x034C
#define PCI_DEVICE_ID_NVIDIA_QUADRO_FX_1100 0x034E
+#define PCI_DEVICE_ID_NVIDIA_MCP55_BRIDGE_V0 0x0360
+#define PCI_DEVICE_ID_NVIDIA_MCP55_BRIDGE_V4 0x0364
#define PCI_DEVICE_ID_NVIDIA_NVENET_15 0x0373
#define PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA 0x03E7
#define PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SMBUS 0x03EB
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] pci: add quirk for non-symmetric-mode irq routing to versions 0 and 4 of the MCP55 northbridge
2010-09-21 17:54 [PATCH] pci: add quirk for non-symmetric-mode irq routing to versions 0 and 4 of the MCP55 northbridge Neil Horman
@ 2010-09-22 0:44 ` Simon Horman
2010-09-22 13:14 ` Vivek Goyal
2010-09-24 16:54 ` Jesse Barnes
2 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2010-09-22 0:44 UTC (permalink / raw)
To: Neil Horman; +Cc: linux-pci, kexec, vgoyal, jbarnes
On Tue, Sep 21, 2010 at 01:54:39PM -0400, Neil Horman wrote:
> A long time ago I worked on a RHEL5 bug in which kdump hung during boot
> on a set of systems. The systems hung because they never received timer
> interrupts during calibrate_delay. These systems also all had Opteron
> processors on a hypertransport bus, bridged to a pci bus via an Nvidia MCP55
> northbridge chip. AFter much wrangling I managed to learn from Nvidia that they
> have an undocumented register in some versions of that chip which control how
> legacy interrupts are send to the cpu complex when the ioapic isn't active.
> Nvidia defaults this register to only send legacy interrupts to the BSP, so if
> kdump happens to boot on an AP, we never get timer interrupts and boom. I had
> initially used this quirk as a workaround, with my intent being to move apic
> initalization to an earlier point in the boot process, so the setting of the
> register would be irrelevant. Given the work involved in doing that however,
> the fragile nature of the apic initalization code, and the fact that, over the 2
> years since we found this bug, the MCP55 is the only chip which seems to have
> this issue, I've figure at this point its likely safer to just carry the quirk
> around. By setting the referenced bits in this hidden register, interrupts will
> be broadcast to all cpus when the ioapic isn't active on the above described
> systems.
>
> Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
FWIW, Acked-by: Simon Horman <horms@verge.net.au>
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] pci: add quirk for non-symmetric-mode irq routing to versions 0 and 4 of the MCP55 northbridge
2010-09-21 17:54 [PATCH] pci: add quirk for non-symmetric-mode irq routing to versions 0 and 4 of the MCP55 northbridge Neil Horman
2010-09-22 0:44 ` Simon Horman
@ 2010-09-22 13:14 ` Vivek Goyal
2010-09-24 16:54 ` Jesse Barnes
2 siblings, 0 replies; 5+ messages in thread
From: Vivek Goyal @ 2010-09-22 13:14 UTC (permalink / raw)
To: Neil Horman; +Cc: linux-pci, horms, kexec, jbarnes
On Tue, Sep 21, 2010 at 01:54:39PM -0400, Neil Horman wrote:
> A long time ago I worked on a RHEL5 bug in which kdump hung during boot
> on a set of systems. The systems hung because they never received timer
> interrupts during calibrate_delay. These systems also all had Opteron
> processors on a hypertransport bus, bridged to a pci bus via an Nvidia MCP55
> northbridge chip. AFter much wrangling I managed to learn from Nvidia that they
> have an undocumented register in some versions of that chip which control how
> legacy interrupts are send to the cpu complex when the ioapic isn't active.
> Nvidia defaults this register to only send legacy interrupts to the BSP, so if
> kdump happens to boot on an AP, we never get timer interrupts and boom. I had
> initially used this quirk as a workaround, with my intent being to move apic
> initalization to an earlier point in the boot process, so the setting of the
> register would be irrelevant. Given the work involved in doing that however,
> the fragile nature of the apic initalization code, and the fact that, over the 2
> years since we found this bug, the MCP55 is the only chip which seems to have
> this issue, I've figure at this point its likely safer to just carry the quirk
> around. By setting the referenced bits in this hidden register, interrupts will
> be broadcast to all cpus when the ioapic isn't active on the above described
> systems.
>
> Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
>
Ideally I would have liked it to happen only in second kernel but Neil
had mentioned that these PCI quirks get applied after calibration etc. So
that option seems to be out of window.
Once the early initialization of APIC happens and we don't rely on legacy
mode, we can get rid of this piece of code.
So I think it is ok to have this quirk to make kdump work on this
paticular chipset.
Acked-by: Vivek Goyal <vgoyal@redhat.com>
Vivek
>
> drivers/pci/quirks.c | 31 +++++++++++++++++++++++++++++++
> include/linux/pci_ids.h | 2 ++
> 2 files changed, 33 insertions(+)
>
> diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
> index 89ed181..ff2964c 100644
> --- a/drivers/pci/quirks.c
> +++ b/drivers/pci/quirks.c
> @@ -2276,6 +2276,37 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA,
> PCI_DEVICE_ID_NVIDIA_NVENET_15,
> nvenet_msi_disable);
>
> +/*
> + * Some versions of the MCP55 bridge from nvidia have a legacy irq routing
> + * config register. This register controls the routing of legacy interrupts
> + * from devices that route through the MCP55. If this register is misprogramed
> + * interrupts are only sent to the bsp, unlike conventional systems where the
> + * irq is broadxast to all online cpus. Not having this register set
> + * properly prevents kdump from booting up properly, so lets make sure that
> + * we have it set correctly.
> + * Note this is an undocumented register.
> + */
> +static void __devinit nvbridge_check_legacy_irq_routing(struct pci_dev *dev)
> +{
> + u32 cfg;
> +
> + pci_read_config_dword(dev, 0x74, &cfg);
> +
> + if (cfg & ((1 << 2) | (1 << 15))) {
> + printk(KERN_INFO "Rewriting irq routing register on MCP55\n");
> + cfg &= ~((1 << 2) | (1 << 15));
> + pci_write_config_dword(dev, 0x74, cfg);
> + }
> +}
> +
> +DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA,
> + PCI_DEVICE_ID_NVIDIA_MCP55_BRIDGE_V0,
> + nvbridge_check_legacy_irq_routing);
> +
> +DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_NVIDIA,
> + PCI_DEVICE_ID_NVIDIA_MCP55_BRIDGE_V4,
> + nvbridge_check_legacy_irq_routing);
> +
> static int __devinit ht_check_msi_mapping(struct pci_dev *dev)
> {
> int pos, ttl = 48;
> diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
> index 10d3330..58d3153 100644
> --- a/include/linux/pci_ids.h
> +++ b/include/linux/pci_ids.h
> @@ -1246,6 +1246,8 @@
> #define PCI_DEVICE_ID_NVIDIA_GEFORCE_FX_GO5700_2 0x0348
> #define PCI_DEVICE_ID_NVIDIA_QUADRO_FX_GO1000 0x034C
> #define PCI_DEVICE_ID_NVIDIA_QUADRO_FX_1100 0x034E
> +#define PCI_DEVICE_ID_NVIDIA_MCP55_BRIDGE_V0 0x0360
> +#define PCI_DEVICE_ID_NVIDIA_MCP55_BRIDGE_V4 0x0364
> #define PCI_DEVICE_ID_NVIDIA_NVENET_15 0x0373
> #define PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA 0x03E7
> #define PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SMBUS 0x03EB
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] pci: add quirk for non-symmetric-mode irq routing to versions 0 and 4 of the MCP55 northbridge
2010-09-21 17:54 [PATCH] pci: add quirk for non-symmetric-mode irq routing to versions 0 and 4 of the MCP55 northbridge Neil Horman
2010-09-22 0:44 ` Simon Horman
2010-09-22 13:14 ` Vivek Goyal
@ 2010-09-24 16:54 ` Jesse Barnes
2010-09-24 17:40 ` Neil Horman
2 siblings, 1 reply; 5+ messages in thread
From: Jesse Barnes @ 2010-09-24 16:54 UTC (permalink / raw)
To: Neil Horman; +Cc: linux-pci, horms, kexec, vgoyal
On Tue, 21 Sep 2010 13:54:39 -0400
Neil Horman <nhorman@tuxdriver.com> wrote:
> A long time ago I worked on a RHEL5 bug in which kdump hung during boot
> on a set of systems. The systems hung because they never received timer
> interrupts during calibrate_delay. These systems also all had Opteron
> processors on a hypertransport bus, bridged to a pci bus via an Nvidia MCP55
> northbridge chip. AFter much wrangling I managed to learn from Nvidia that they
> have an undocumented register in some versions of that chip which control how
> legacy interrupts are send to the cpu complex when the ioapic isn't active.
> Nvidia defaults this register to only send legacy interrupts to the BSP, so if
> kdump happens to boot on an AP, we never get timer interrupts and boom. I had
> initially used this quirk as a workaround, with my intent being to move apic
> initalization to an earlier point in the boot process, so the setting of the
> register would be irrelevant. Given the work involved in doing that however,
> the fragile nature of the apic initalization code, and the fact that, over the 2
> years since we found this bug, the MCP55 is the only chip which seems to have
> this issue, I've figure at this point its likely safer to just carry the quirk
> around. By setting the referenced bits in this hidden register, interrupts will
> be broadcast to all cpus when the ioapic isn't active on the above described
> systems.
>
> Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
Applied to my linux-next branch, thanks.
--
Jesse Barnes, Intel Open Source Technology Center
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] pci: add quirk for non-symmetric-mode irq routing to versions 0 and 4 of the MCP55 northbridge
2010-09-24 16:54 ` Jesse Barnes
@ 2010-09-24 17:40 ` Neil Horman
0 siblings, 0 replies; 5+ messages in thread
From: Neil Horman @ 2010-09-24 17:40 UTC (permalink / raw)
To: Jesse Barnes; +Cc: linux-pci, horms, kexec, vgoyal, Neil Horman
On Fri, Sep 24, 2010 at 09:54:14AM -0700, Jesse Barnes wrote:
> On Tue, 21 Sep 2010 13:54:39 -0400
> Neil Horman <nhorman@tuxdriver.com> wrote:
>
> > A long time ago I worked on a RHEL5 bug in which kdump hung during boot
> > on a set of systems. The systems hung because they never received timer
> > interrupts during calibrate_delay. These systems also all had Opteron
> > processors on a hypertransport bus, bridged to a pci bus via an Nvidia MCP55
> > northbridge chip. AFter much wrangling I managed to learn from Nvidia that they
> > have an undocumented register in some versions of that chip which control how
> > legacy interrupts are send to the cpu complex when the ioapic isn't active.
> > Nvidia defaults this register to only send legacy interrupts to the BSP, so if
> > kdump happens to boot on an AP, we never get timer interrupts and boom. I had
> > initially used this quirk as a workaround, with my intent being to move apic
> > initalization to an earlier point in the boot process, so the setting of the
> > register would be irrelevant. Given the work involved in doing that however,
> > the fragile nature of the apic initalization code, and the fact that, over the 2
> > years since we found this bug, the MCP55 is the only chip which seems to have
> > this issue, I've figure at this point its likely safer to just carry the quirk
> > around. By setting the referenced bits in this hidden register, interrupts will
> > be broadcast to all cpus when the ioapic isn't active on the above described
> > systems.
> >
> > Signed-off-by: Neil Horman <nhorman@tuxdriver.com>
>
> Applied to my linux-next branch, thanks.
>
Thanks!
Neil
> --
> Jesse Barnes, Intel Open Source Technology Center
>
> _______________________________________________
> kexec mailing list
> kexec@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/kexec
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-09-24 17:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-21 17:54 [PATCH] pci: add quirk for non-symmetric-mode irq routing to versions 0 and 4 of the MCP55 northbridge Neil Horman
2010-09-22 0:44 ` Simon Horman
2010-09-22 13:14 ` Vivek Goyal
2010-09-24 16:54 ` Jesse Barnes
2010-09-24 17:40 ` Neil Horman
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.