Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1734981 > unrolled thread
| Started by | Alexander Shishkin <alexander.shishkin@linux.intel.com> |
|---|---|
| First post | 2017-09-19 17:00 +0200 |
| Last post | 2017-09-19 19:40 +0200 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] PCI: Fixup the RTIT_BAR of Intel TH on Denverton Alexander Shishkin <alexander.shishkin@linux.intel.com> - 2017-09-19 17:00 +0200
Re: [PATCH] PCI: Fixup the RTIT_BAR of Intel TH on Denverton Bjorn Helgaas <helgaas@kernel.org> - 2017-09-19 19:00 +0200
Re: [PATCH] PCI: Fixup the RTIT_BAR of Intel TH on Denverton Alexander Shishkin <alexander.shishkin@linux.intel.com> - 2017-09-19 19:40 +0200
| From | Alexander Shishkin <alexander.shishkin@linux.intel.com> |
|---|---|
| Date | 2017-09-19 17:00 +0200 |
| Subject | [PATCH] PCI: Fixup the RTIT_BAR of Intel TH on Denverton |
| Message-ID | <ursae-6K5-15@gated-at.bofh.it> |
On some intergrations of the Intel TH the reported size of RTIT_BAR
doesn't match its actual size, which leads to overlaps with other
devices' resources.
For this reason, we need to resize the RTIT_BAR on Denverton where
it would overlap with XHCI MMIO space.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Fixes: 5118ccd347 ("intel_th: pci: Add Denverton SOC support")
Cc: stable@vger.kernel.org
---
drivers/pci/quirks.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 6967c6b4cf..08a1e6629f 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -4681,3 +4681,19 @@ static void quirk_intel_no_flr(struct pci_dev *dev)
}
DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1502, quirk_intel_no_flr);
DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1503, quirk_intel_no_flr);
+
+static void quirk_intel_th_dnv(struct pci_dev *dev)
+{
+ struct resource *r = &dev->resource[4];
+
+ /*
+ * Denverton reports 2k of RTIT_BAR (intel_th resource 4), which
+ * appears to be 4 MB in reality.
+ */
+ if (r->end == r->start + 0x7ff) {
+ r->start = 0;
+ r->end = 0x3fffff;
+ r->flags |= IORESOURCE_UNSET;
+ }
+}
+DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x19e1, quirk_intel_th_dnv);
--
2.14.1
[toc] | [next] | [standalone]
| From | Bjorn Helgaas <helgaas@kernel.org> |
|---|---|
| Date | 2017-09-19 19:00 +0200 |
| Message-ID | <uru2m-7SS-15@gated-at.bofh.it> |
| In reply to | #1734981 |
Hi Alexander,
On Tue, Sep 19, 2017 at 05:51:36PM +0300, Alexander Shishkin wrote:
> On some intergrations of the Intel TH the reported size of RTIT_BAR
s/intergrations/integrations/
What is "TH"? If there's a public spec for it, can you include a
reference here?
I guess this is an erratum, since the device responds to more MMIO
space than it advertises via the BAR. Can you include a reference to
the published erratum?
I'm surprised that this issue occurs so often on Intel parts. I would
think that after being burned a few times, Intel would figure out a
process to validate this.
> doesn't match its actual size, which leads to overlaps with other
> devices' resources.
So I suppose the BIOS relies on the size advertised via the BAR,
assigns it to be just below the XHCI space, and now both the TH and
XHCI respond there? I assume this causes some sort of "unexpected
response" error? Is there a bug report about this? What does it look
like when a user hits this? I'm trying to make this fix discoverable
to users who might trip over the problem.
> For this reason, we need to resize the RTIT_BAR on Denverton where
> it would overlap with XHCI MMIO space.
>
> Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
> Fixes: 5118ccd347 ("intel_th: pci: Add Denverton SOC support")
Please use a 12-char SHA1.
> Cc: stable@vger.kernel.org
I guess this is only applicable to v4.11+, since 5118ccd34780 appeared in
v4.11-rc4?
> ---
> drivers/pci/quirks.c | 16 ++++++++++++++++
> 1 file changed, 16 insertions(+)
>
> diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
> index 6967c6b4cf..08a1e6629f 100644
> --- a/drivers/pci/quirks.c
> +++ b/drivers/pci/quirks.c
> @@ -4681,3 +4681,19 @@ static void quirk_intel_no_flr(struct pci_dev *dev)
> }
> DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1502, quirk_intel_no_flr);
> DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INTEL, 0x1503, quirk_intel_no_flr);
> +
> +static void quirk_intel_th_dnv(struct pci_dev *dev)
> +{
> + struct resource *r = &dev->resource[4];
> +
> + /*
> + * Denverton reports 2k of RTIT_BAR (intel_th resource 4), which
> + * appears to be 4 MB in reality.
> + */
> + if (r->end == r->start + 0x7ff) {
> + r->start = 0;
> + r->end = 0x3fffff;
> + r->flags |= IORESOURCE_UNSET;
> + }
> +}
> +DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x19e1, quirk_intel_th_dnv);
> --
> 2.14.1
>
[toc] | [prev] | [next] | [standalone]
| From | Alexander Shishkin <alexander.shishkin@linux.intel.com> |
|---|---|
| Date | 2017-09-19 19:40 +0200 |
| Message-ID | <uruF3-8nG-5@gated-at.bofh.it> |
| In reply to | #1735106 |
Bjorn Helgaas <helgaas@kernel.org> writes:
> Hi Alexander,
Hi Bjorn,
> On Tue, Sep 19, 2017 at 05:51:36PM +0300, Alexander Shishkin wrote:
>> On some intergrations of the Intel TH the reported size of RTIT_BAR
>
> s/intergrations/integrations/
Oops.
> What is "TH"? If there's a public spec for it, can you include a
> reference here?
Intel Trace Hub,
https://software.intel.com/sites/default/files/managed/d3/3c/intel-th-developer-manual.pdf
There's an overview at Documentation/trace/intel_th.txt.
> I guess this is an erratum, since the device responds to more MMIO
> space than it advertises via the BAR. Can you include a reference to
> the published erratum?
There's no erratum at the moment, unfortunately.
>> doesn't match its actual size, which leads to overlaps with other
>> devices' resources.
>
> So I suppose the BIOS relies on the size advertised via the BAR,
> assigns it to be just below the XHCI space, and now both the TH and
> XHCI respond there? I assume this causes some sort of "unexpected
> response" error? Is there a bug report about this? What does it look
> like when a user hits this? I'm trying to make this fix discoverable
> to users who might trip over the problem.
When the intel_th pci device gets enabled (on modprobe, for example),
XHCI starts seeing 0xffffffff in its MMIO registers, which makes it go
xhci_hcd: xHCI host controller not responding, assume dead
xhci_hcd: xHC not responding in xhci_irq, assume controller is dead
xhci_hcd: HC died; cleaning up
followed by disappearance of keyboards and user's profound confusion.
I'll make sure to mention all this in the commit message.
>> For this reason, we need to resize the RTIT_BAR on Denverton where
>> it would overlap with XHCI MMIO space.
>>
>> Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
>> Fixes: 5118ccd347 ("intel_th: pci: Add Denverton SOC support")
>
> Please use a 12-char SHA1.
Will do.
>> Cc: stable@vger.kernel.org
>
> I guess this is only applicable to v4.11+, since 5118ccd34780 appeared in
> v4.11-rc4?
Right, my git-send-email keeps trying to CC "# v4.11+" if I leave it in the
Cc: stable line.
Regards,
--
Alex
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web