From: Bjorn Helgaas <bhelgaas@google.com>
To: Wei Yang <weiyang@linux.vnet.ibm.com>
Cc: xiong <xiong@qca.qualcomm.com>,
"linux-pci@vger.kernel.org" <linux-pci@vger.kernel.org>,
"unified-drivers@lists.infradead.org"
<unified-drivers@lists.infradead.org>,
nic-devel <nic-devel@qca.qualcomm.com>
Subject: Re: [PATCH] PCI: add MSI INTX_DISABLE quirks for AR8161/AR8162/AR8171/AR8172/E210X
Date: Thu, 4 Apr 2013 11:34:48 -0600 [thread overview]
Message-ID: <CAErSpo6DOTdKi5ZKM=mVSOLLojD+vTwjbOmcJBbgiMY5ZR1kuA@mail.gmail.com> (raw)
In-Reply-To: <513fd46e.6983440a.0ebe.4853SMTPIN_ADDED_BROKEN@mx.google.com>
On Tue, Mar 12, 2013 at 7:20 PM, Wei Yang <weiyang@linux.vnet.ibm.com> wrote:
> On Fri, Mar 08, 2013 at 02:55:16AM +0800, xiong wrote:
>>From: "Huang,Xiong" <xiong@qca.qualcomm.com>
>>
>>following PCIe Devices with revision lower than 0x18 have this bug:
>>
>> AR8161(1091)/AR8162(1090)/AR8171(10A1)/AR8172(10A0)/E210X(E091).
>>
>>Signed-off-by: Huang,Xiong <xiong@qca.qualcomm.com>
>
> Reviewed-by: Wei Yang <weiyang@linux.vnet.ibm.com>
Added Reviewed-by and applied to pci/misc for v3.10. Thanks!
>>---
>> drivers/pci/quirks.c | 18 ++++++++++++++++++
>> 1 file changed, 18 insertions(+)
>>
>>diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
>>index 0369fb6..4273a2d 100644
>>--- a/drivers/pci/quirks.c
>>+++ b/drivers/pci/quirks.c
>>@@ -2594,6 +2594,14 @@ static void quirk_msi_intx_disable_ati_bug(struct pci_dev *dev)
>> dev->dev_flags |= PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG;
>> pci_dev_put(p);
>> }
>>+static void quirk_msi_intx_disable_qca_bug(struct pci_dev *dev)
>>+{
>>+ /* AR816X/AR817X/E210X MSI is fixed at HW level from revision 0x18 */
>>+ if (dev->revision < 0x18) {
>>+ dev_info(&dev->dev, "set MSI_INTX_DISABLE_BUG flag\n");
>>+ dev->dev_flags |= PCI_DEV_FLAGS_MSI_INTX_DISABLE_BUG;
>>+ }
>>+}
>> DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_BROADCOM,
>> PCI_DEVICE_ID_TIGON3_5780,
>> quirk_msi_intx_disable_bug);
>>@@ -2643,6 +2651,16 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATTANSIC, 0x1073,
>> quirk_msi_intx_disable_bug);
>> DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATTANSIC, 0x1083,
>> quirk_msi_intx_disable_bug);
>>+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATTANSIC, 0x1090,
>>+ quirk_msi_intx_disable_qca_bug);
>>+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATTANSIC, 0x1091,
>>+ quirk_msi_intx_disable_qca_bug);
>>+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATTANSIC, 0x10a0,
>>+ quirk_msi_intx_disable_qca_bug);
>>+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATTANSIC, 0x10a1,
>>+ quirk_msi_intx_disable_qca_bug);
>>+DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATTANSIC, 0xe091,
>>+ quirk_msi_intx_disable_qca_bug);
>> #endif /* CONFIG_PCI_MSI */
>>
>> /* Allow manual resource allocation for PCI hotplug bridges
>>--
>>1.7.11.7
>>
>>--
>>To unsubscribe from this list: send the line "unsubscribe linux-pci" in
>>the body of a message to majordomo@vger.kernel.org
>>More majordomo info at http://vger.kernel.org/majordomo-info.html
>
> --
> Richard Yang
> Help you, Help me
>
prev parent reply other threads:[~2013-04-04 17:35 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-07 18:55 [PATCH] PCI: add MSI INTX_DISABLE quirks for AR8161/AR8162/AR8171/AR8172/E210X xiong
[not found] ` <513fd46e.6983440a.0ebe.4853SMTPIN_ADDED_BROKEN@mx.google.com>
2013-04-04 17:34 ` Bjorn Helgaas [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAErSpo6DOTdKi5ZKM=mVSOLLojD+vTwjbOmcJBbgiMY5ZR1kuA@mail.gmail.com' \
--to=bhelgaas@google.com \
--cc=linux-pci@vger.kernel.org \
--cc=nic-devel@qca.qualcomm.com \
--cc=unified-drivers@lists.infradead.org \
--cc=weiyang@linux.vnet.ibm.com \
--cc=xiong@qca.qualcomm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).