From: "David E. Box" <david.e.box@linux.intel.com>
To: Lorenzo Pieralisi <lpieralisi@kernel.org>,
Sathyanarayanan Kuppuswamy
<sathyanarayanan.kuppuswamy@linux.intel.com>
Cc: nirmal.patel@linux.intel.com, jonathan.derrick@linux.dev,
lorenzo.pieralisi@arm.com, hch@infradead.org, kw@linux.com,
robh@kernel.org, bhelgaas@google.com,
michael.a.bottini@intel.com, rafael@kernel.org,
me@adhityamohan.in, linux-pci@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH V9 2/4] PCI: vmd: Use PCI_VDEVICE in device list
Date: Thu, 19 Jan 2023 16:19:34 -0800 [thread overview]
Message-ID: <08efd5bc047bbbdff845207593536f658c6a4981.camel@linux.intel.com> (raw)
In-Reply-To: <Y8GJuE9KySv9AcHZ@lpieralisi>
Hi Lorenzo,
On Fri, 2023-01-13 at 17:41 +0100, Lorenzo Pieralisi wrote:
> On Wed, Dec 07, 2022 at 06:56:38PM -0800, Sathyanarayanan Kuppuswamy wrote:
> >
> >
> > On 12/7/22 6:39 PM, David E. Box wrote:
> > > Refactor the PCI ID list to use PCI_VDEVICE.
> >
> > Add some info about why it is done.
>
> I am waiting for the dust to settle on this series, it is pretty
> close to completion it seems, please let me know when you consider
> it ready.
I'm sending a V10 just to add the commit message Sathya suggested. But other
than that it is done for me.
David
>
> Lorenzo
>
> > > Signed-off-by: David E. Box <david.e.box@linux.intel.com>
> > > Reviewed-by: Jon Derrick <jonathan.derrick@linux.dev>
> > > Reviewed-by: Nirmal Patel <nirmal.patel@linux.intel.com>
> > > ---
> > > V9 - No change
> > >
> > > V8 - No change
> > >
> > > V7 - New Patch. Separate patch suggested by Lorenzo
> > >
> > > drivers/pci/controller/vmd.c | 16 ++++++++--------
> > > 1 file changed, 8 insertions(+), 8 deletions(-)
> > >
> > > diff --git a/drivers/pci/controller/vmd.c b/drivers/pci/controller/vmd.c
> > > index e06e9f4fc50f..9dedca714c18 100644
> > > --- a/drivers/pci/controller/vmd.c
> > > +++ b/drivers/pci/controller/vmd.c
> > > @@ -994,33 +994,33 @@ static int vmd_resume(struct device *dev)
> > > static SIMPLE_DEV_PM_OPS(vmd_dev_pm_ops, vmd_suspend, vmd_resume);
> > >
> > > static const struct pci_device_id vmd_ids[] = {
> > > - {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VMD_201D),
> > > + {PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_VMD_201D),
> > > .driver_data = VMD_FEAT_HAS_MEMBAR_SHADOW_VSCAP,},
> > > - {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VMD_28C0),
> > > + {PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_VMD_28C0),
> > > .driver_data = VMD_FEAT_HAS_MEMBAR_SHADOW |
> > > VMD_FEAT_HAS_BUS_RESTRICTIONS |
> > > VMD_FEAT_CAN_BYPASS_MSI_REMAP,},
> > > - {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x467f),
> > > + {PCI_VDEVICE(INTEL, 0x467f),
> > > .driver_data = VMD_FEAT_HAS_MEMBAR_SHADOW_VSCAP |
> > > VMD_FEAT_HAS_BUS_RESTRICTIONS |
> > > VMD_FEAT_OFFSET_FIRST_VECTOR,},
> > > - {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x4c3d),
> > > + {PCI_VDEVICE(INTEL, 0x4c3d),
> > > .driver_data = VMD_FEAT_HAS_MEMBAR_SHADOW_VSCAP |
> > > VMD_FEAT_HAS_BUS_RESTRICTIONS |
> > > VMD_FEAT_OFFSET_FIRST_VECTOR,},
> > > - {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xa77f),
> > > + {PCI_VDEVICE(INTEL, 0xa77f),
> > > .driver_data = VMD_FEAT_HAS_MEMBAR_SHADOW_VSCAP |
> > > VMD_FEAT_HAS_BUS_RESTRICTIONS |
> > > VMD_FEAT_OFFSET_FIRST_VECTOR,},
> > > - {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x7d0b),
> > > + {PCI_VDEVICE(INTEL, 0x7d0b),
> > > .driver_data = VMD_FEAT_HAS_MEMBAR_SHADOW_VSCAP |
> > > VMD_FEAT_HAS_BUS_RESTRICTIONS |
> > > VMD_FEAT_OFFSET_FIRST_VECTOR,},
> > > - {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xad0b),
> > > + {PCI_VDEVICE(INTEL, 0xad0b),
> > > .driver_data = VMD_FEAT_HAS_MEMBAR_SHADOW_VSCAP |
> > > VMD_FEAT_HAS_BUS_RESTRICTIONS |
> > > VMD_FEAT_OFFSET_FIRST_VECTOR,},
> > > - {PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_VMD_9A0B),
> > > + {PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_VMD_9A0B),
> > > .driver_data = VMD_FEAT_HAS_MEMBAR_SHADOW_VSCAP |
> > > VMD_FEAT_HAS_BUS_RESTRICTIONS |
> > > VMD_FEAT_OFFSET_FIRST_VECTOR,},
> >
> > --
> > Sathyanarayanan Kuppuswamy
> > Linux Kernel Developer
next prev parent reply other threads:[~2023-01-20 0:19 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-08 2:39 [PATCH V9 0/4] Enable PCIe ASPM and LTR on select hardware David E. Box
2022-12-08 2:39 ` [PATCH V9 1/4] PCI/ASPM: Add pci_enable_link_state() David E. Box
2022-12-08 2:39 ` [PATCH V9 2/4] PCI: vmd: Use PCI_VDEVICE in device list David E. Box
2022-12-08 2:56 ` Sathyanarayanan Kuppuswamy
2023-01-13 16:41 ` Lorenzo Pieralisi
2023-01-20 0:19 ` David E. Box [this message]
2022-12-08 2:39 ` [PATCH V9 3/4] PCI: vmd: Create feature grouping for client products David E. Box
2022-12-08 2:39 ` [PATCH V9 4/4] PCI: vmd: Add quirk to configure PCIe ASPM and LTR David E. Box
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=08efd5bc047bbbdff845207593536f658c6a4981.camel@linux.intel.com \
--to=david.e.box@linux.intel.com \
--cc=bhelgaas@google.com \
--cc=hch@infradead.org \
--cc=jonathan.derrick@linux.dev \
--cc=kw@linux.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=lorenzo.pieralisi@arm.com \
--cc=lpieralisi@kernel.org \
--cc=me@adhityamohan.in \
--cc=michael.a.bottini@intel.com \
--cc=nirmal.patel@linux.intel.com \
--cc=rafael@kernel.org \
--cc=robh@kernel.org \
--cc=sathyanarayanan.kuppuswamy@linux.intel.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).