All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] cxl: Enable PCI device IDs for future IBM CXL adapters
@ 2017-03-24 16:03 Matthew R. Ochs
  2017-04-13 22:28 ` Matthew R. Ochs
  2017-04-19 22:04 ` [v2] " Michael Ellerman
  0 siblings, 2 replies; 4+ messages in thread
From: Matthew R. Ochs @ 2017-03-24 16:03 UTC (permalink / raw)
  To: linuxppc-dev, Michael Ellerman, Ian Munsie, Frederic Barrat
  Cc: Christophe Lombard, Andrew Donnellan, Uma Krishnan

Add support for future IBM Coherent Accelerator (CXL) devices
with an IDs of 0x0623 and 0x0628.

Signed-off-by: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
Signed-off-by: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
Acked-by: Frederic Barrat <fbarrat@linux.vnet.ibm.com>
---
Changes in v2:
 - Add device ID 0x0628

 drivers/misc/cxl/pci.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/misc/cxl/pci.c b/drivers/misc/cxl/pci.c
index 80a87ab..dd606a2 100644
--- a/drivers/misc/cxl/pci.c
+++ b/drivers/misc/cxl/pci.c
@@ -123,6 +123,8 @@ static const struct pci_device_id cxl_pci_tbl[] = {
 	{ PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x044b), },
 	{ PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x04cf), },
 	{ PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x0601), },
+	{ PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x0623), },
+	{ PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x0628), },
 	{ PCI_DEVICE_CLASS(0x120000, ~0), },
 
 	{ }
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] cxl: Enable PCI device IDs for future IBM CXL adapters
  2017-03-24 16:03 [PATCH v2] cxl: Enable PCI device IDs for future IBM CXL adapters Matthew R. Ochs
@ 2017-04-13 22:28 ` Matthew R. Ochs
  2017-04-18  6:28   ` Michael Ellerman
  2017-04-19 22:04 ` [v2] " Michael Ellerman
  1 sibling, 1 reply; 4+ messages in thread
From: Matthew R. Ochs @ 2017-04-13 22:28 UTC (permalink / raw)
  To: linuxppc-dev, Michael Ellerman, Ian Munsie, Frederic Barrat
  Cc: Christophe Lombard, Andrew Donnellan, Uma Krishnan

> On Mar 24, 2017, at 11:03 AM, Matthew R. Ochs =
<mrochs@linux.vnet.ibm.com> wrote:
>=20
> Add support for future IBM Coherent Accelerator (CXL) devices
> with an IDs of 0x0623 and 0x0628.
>=20
> Signed-off-by: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
> Signed-off-by: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
> Acked-by: Frederic Barrat <fbarrat@linux.vnet.ibm.com>

Hi Michael,

I think this one might have been overlooked. We'd like to try and
get this in for 4.12 to match up with our 4-port series in cxlflash.

Let me know if you feel it needs anything else. Thanks!


-matt

> ---
> Changes in v2:
> - Add device ID 0x0628
>=20
> drivers/misc/cxl/pci.c | 2 ++
> 1 file changed, 2 insertions(+)
>=20
> diff --git a/drivers/misc/cxl/pci.c b/drivers/misc/cxl/pci.c
> index 80a87ab..dd606a2 100644
> --- a/drivers/misc/cxl/pci.c
> +++ b/drivers/misc/cxl/pci.c
> @@ -123,6 +123,8 @@ static const struct pci_device_id cxl_pci_tbl[] =3D =
{
> 	{ PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x044b), },
> 	{ PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x04cf), },
> 	{ PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x0601), },
> +	{ PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x0623), },
> +	{ PCI_DEVICE(PCI_VENDOR_ID_IBM, 0x0628), },
> 	{ PCI_DEVICE_CLASS(0x120000, ~0), },
>=20
> 	{ }
> --=20
> 2.1.0
>=20

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] cxl: Enable PCI device IDs for future IBM CXL adapters
  2017-04-13 22:28 ` Matthew R. Ochs
@ 2017-04-18  6:28   ` Michael Ellerman
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Ellerman @ 2017-04-18  6:28 UTC (permalink / raw)
  To: Matthew R. Ochs, linuxppc-dev, Ian Munsie, Frederic Barrat
  Cc: Christophe Lombard, Andrew Donnellan, Uma Krishnan

"Matthew R. Ochs" <mrochs@linux.vnet.ibm.com> writes:

>> On Mar 24, 2017, at 11:03 AM, Matthew R. Ochs <mrochs@linux.vnet.ibm.com> wrote:
>> 
>> Add support for future IBM Coherent Accelerator (CXL) devices
>> with an IDs of 0x0623 and 0x0628.
>> 
>> Signed-off-by: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
>> Signed-off-by: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
>> Acked-by: Frederic Barrat <fbarrat@linux.vnet.ibm.com>
>
> Hi Michael,
>
> I think this one might have been overlooked. We'd like to try and
> get this in for 4.12 to match up with our 4-port series in cxlflash.

I saw it, but hadn't got around to actually applying it.

Have just put it in.

cheers

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [v2] cxl: Enable PCI device IDs for future IBM CXL adapters
  2017-03-24 16:03 [PATCH v2] cxl: Enable PCI device IDs for future IBM CXL adapters Matthew R. Ochs
  2017-04-13 22:28 ` Matthew R. Ochs
@ 2017-04-19 22:04 ` Michael Ellerman
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Ellerman @ 2017-04-19 22:04 UTC (permalink / raw)
  To: Matthew R. Ochs, linuxppc-dev, Ian Munsie, Frederic Barrat
  Cc: Uma Krishnan, Christophe Lombard, Andrew Donnellan

On Fri, 2017-03-24 at 16:03:19 UTC, "Matthew R. Ochs" wrote:
> Add support for future IBM Coherent Accelerator (CXL) devices
> with an IDs of 0x0623 and 0x0628.
> 
> Signed-off-by: Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
> Signed-off-by: Uma Krishnan <ukrishn@linux.vnet.ibm.com>
> Acked-by: Frederic Barrat <fbarrat@linux.vnet.ibm.com>

Applied to powerpc next, thanks.

https://git.kernel.org/powerpc/c/41e20d959e5919c70058369323cefa

cheers

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-04-19 22:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-24 16:03 [PATCH v2] cxl: Enable PCI device IDs for future IBM CXL adapters Matthew R. Ochs
2017-04-13 22:28 ` Matthew R. Ochs
2017-04-18  6:28   ` Michael Ellerman
2017-04-19 22:04 ` [v2] " Michael Ellerman

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.