linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Shannon Zhao <shenglong.zsl@alibaba-inc.com>
To: linux-kernel@vger.kernel.org, jnair@marvell.com,
	bhelgaas@google.com, linux-pci@vger.kernel.org,
	gduan@marvell.com
Subject: [PATCH] PCI: Add ACS quirk for Cavium ThunderX 2 root port devices
Date: Fri, 19 Jul 2019 21:10:35 +0800	[thread overview]
Message-ID: <1563541835-141011-1-git-send-email-shenglong.zsl@alibaba-inc.com> (raw)

From: Shannon Zhao <shannon.zhao@linux.alibaba.com>

Like commit f2ddaf8(PCI: Apply Cavium ThunderX ACS quirk to more Root
Ports), it should apply ACS quirk to ThunderX 2 root port devices.

Signed-off-by: Shannon Zhao <shannon.zhao@linux.alibaba.com>
---
 drivers/pci/quirks.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 28c64f8..ea7848b 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -4224,10 +4224,12 @@ static bool pci_quirk_cavium_acs_match(struct pci_dev *dev)
 	 * family by 0xf800 mask (which represents 8 SoCs), while the lower
 	 * bits of device ID are used to indicate which subdevice is used
 	 * within the SoC.
+	 * Effectively selects the ThunderX 2 root ports whose device ID
+	 * is 0xaf84.
 	 */
 	return (pci_is_pcie(dev) &&
 		(pci_pcie_type(dev) == PCI_EXP_TYPE_ROOT_PORT) &&
-		((dev->device & 0xf800) == 0xa000));
+		((dev->device & 0xf800) == 0xa000 || dev->device == 0xaf84));
 }
 
 static int pci_quirk_cavium_acs(struct pci_dev *dev, u16 acs_flags)
-- 
1.8.3.1


             reply	other threads:[~2019-07-19  5:12 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-19 13:10 Shannon Zhao [this message]
2019-07-24 18:55 ` [PATCH] PCI: Add ACS quirk for Cavium ThunderX 2 root port devices Bjorn Helgaas
2019-07-25 16:35   ` Jayachandran Chandrasekharan Nair
2019-08-06  2:24     ` Shannon Zhao

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=1563541835-141011-1-git-send-email-shenglong.zsl@alibaba-inc.com \
    --to=shenglong.zsl@alibaba-inc.com \
    --cc=bhelgaas@google.com \
    --cc=gduan@marvell.com \
    --cc=jnair@marvell.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    /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).