public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ISCI: add more PCI IDs
@ 2013-04-30 13:12 Evgeni Golov
  2013-04-30 17:33 ` Dave Jiang
  0 siblings, 1 reply; 4+ messages in thread
From: Evgeni Golov @ 2013-04-30 13:12 UTC (permalink / raw)
  To: intel-linux-scu, linux-scsi; +Cc: Evgeni Golov

These are found in e.g. the R2000GZ/GL machines.
---
 drivers/scsi/isci/init.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/drivers/scsi/isci/init.c b/drivers/scsi/isci/init.c
index 2839baa..d1ec2bd 100644
--- a/drivers/scsi/isci/init.c
+++ b/drivers/scsi/isci/init.c
@@ -82,12 +82,16 @@ static DEFINE_PCI_DEVICE_TABLE(isci_id_table) = {
 	{ PCI_VDEVICE(INTEL, 0x1D67),},
 	{ PCI_VDEVICE(INTEL, 0x1D69),},
 	{ PCI_VDEVICE(INTEL, 0x1D6B),},
+	{ PCI_VDEVICE(INTEL, 0x1D6D),},
+	{ PCI_VDEVICE(INTEL, 0x1D6F),},
 	{ PCI_VDEVICE(INTEL, 0x1D60),},
 	{ PCI_VDEVICE(INTEL, 0x1D62),},
 	{ PCI_VDEVICE(INTEL, 0x1D64),},
 	{ PCI_VDEVICE(INTEL, 0x1D66),},
 	{ PCI_VDEVICE(INTEL, 0x1D68),},
 	{ PCI_VDEVICE(INTEL, 0x1D6A),},
+	{ PCI_VDEVICE(INTEL, 0x1D6C),},
+	{ PCI_VDEVICE(INTEL, 0x1D6E),},
 	{}
 };
 
-- 
1.7.2.5


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

* Re: [PATCH] ISCI: add more PCI IDs
  2013-04-30 13:12 [PATCH] ISCI: add more PCI IDs Evgeni Golov
@ 2013-04-30 17:33 ` Dave Jiang
  2013-04-30 18:26   ` Evgeni Golov
  0 siblings, 1 reply; 4+ messages in thread
From: Dave Jiang @ 2013-04-30 17:33 UTC (permalink / raw)
  To: Evgeni Golov; +Cc: Dorau, Lukasz, linux-scsi@vger.kernel.org, Patelczyk, Maciej

On 04/30/2013 06:12 AM, Evgeni Golov wrote:
> These are found in e.g. the R2000GZ/GL machines.

Nack. These PCI device IDs are reserved for third party device drivers. 
Most likely that machine has a third party OROM as well.


> ---
>   drivers/scsi/isci/init.c |    4 ++++
>   1 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/scsi/isci/init.c b/drivers/scsi/isci/init.c
> index 2839baa..d1ec2bd 100644
> --- a/drivers/scsi/isci/init.c
> +++ b/drivers/scsi/isci/init.c
> @@ -82,12 +82,16 @@ static DEFINE_PCI_DEVICE_TABLE(isci_id_table) = {
>   	{ PCI_VDEVICE(INTEL, 0x1D67),},
>   	{ PCI_VDEVICE(INTEL, 0x1D69),},
>   	{ PCI_VDEVICE(INTEL, 0x1D6B),},
> +	{ PCI_VDEVICE(INTEL, 0x1D6D),},
> +	{ PCI_VDEVICE(INTEL, 0x1D6F),},
>   	{ PCI_VDEVICE(INTEL, 0x1D60),},
>   	{ PCI_VDEVICE(INTEL, 0x1D62),},
>   	{ PCI_VDEVICE(INTEL, 0x1D64),},
>   	{ PCI_VDEVICE(INTEL, 0x1D66),},
>   	{ PCI_VDEVICE(INTEL, 0x1D68),},
>   	{ PCI_VDEVICE(INTEL, 0x1D6A),},
> +	{ PCI_VDEVICE(INTEL, 0x1D6C),},
> +	{ PCI_VDEVICE(INTEL, 0x1D6E),},
>   	{}
>   };
>   


-- 

Dave Jiang
Application Engineer, Storage Divsion
Intel Corp.
dave.jiang@intel.com


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

* Re: [PATCH] ISCI: add more PCI IDs
  2013-04-30 17:33 ` Dave Jiang
@ 2013-04-30 18:26   ` Evgeni Golov
  2013-04-30 20:35     ` Dave Jiang
  0 siblings, 1 reply; 4+ messages in thread
From: Evgeni Golov @ 2013-04-30 18:26 UTC (permalink / raw)
  To: Dave Jiang; +Cc: Dorau, Lukasz, linux-scsi@vger.kernel.org, Patelczyk, Maciej

On 04/30/2013 07:33 PM, Dave Jiang wrote:
>> These are found in e.g. the R2000GZ/GL machines.
> 
> Nack. These PCI device IDs are reserved for third party device drivers.
> Most likely that machine has a third party OROM as well.

OROM = option ROM? Yes, it has the "white" C600 expansion pack, so we
can use all 8 ports of the SAS controller. But we do not want (and
actually cannot) use the Intel-provided megasr driver (the machines run
Debian Wheezy with the 3.2 kernel).

Can we get the controller to use the "regular" PCI ID instead?

Regards
Evgeni

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

* Re: [PATCH] ISCI: add more PCI IDs
  2013-04-30 18:26   ` Evgeni Golov
@ 2013-04-30 20:35     ` Dave Jiang
  0 siblings, 0 replies; 4+ messages in thread
From: Dave Jiang @ 2013-04-30 20:35 UTC (permalink / raw)
  To: Evgeni Golov; +Cc: Dorau, Lukasz, linux-scsi@vger.kernel.org, Patelczyk, Maciej

On 04/30/2013 11:26 AM, Evgeni Golov wrote:
> On 04/30/2013 07:33 PM, Dave Jiang wrote:
>>> These are found in e.g. the R2000GZ/GL machines.
>> Nack. These PCI device IDs are reserved for third party device drivers.
>> Most likely that machine has a third party OROM as well.
> OROM = option ROM? Yes, it has the "white" C600 expansion pack, so we
> can use all 8 ports of the SAS controller. But we do not want (and
> actually cannot) use the Intel-provided megasr driver (the machines run
> Debian Wheezy with the 3.2 kernel).
>
> Can we get the controller to use the "regular" PCI ID instead?
Yes. You need an Intel Option ROM instead of the LSI. You need to talk 
to whomever sold you the system and get the Intel OROM. Also just an 
FYI, the isci driver didn't get a lot of the issues sorted out until 
kernel 3.7. The 3.2 driver is quite old and you may run into issues. 
Obviously you already know you can patch the driver to pick up those 
device IDs, but I don't know what the LSI OROM does with the OEM 
parameters and if will provide it to the isci driver properly.

> Regards
> Evgeni


-- 

Dave Jiang
Application Engineer, Storage Divsion
Intel Corp.
dave.jiang@intel.com


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

end of thread, other threads:[~2013-04-30 20:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-30 13:12 [PATCH] ISCI: add more PCI IDs Evgeni Golov
2013-04-30 17:33 ` Dave Jiang
2013-04-30 18:26   ` Evgeni Golov
2013-04-30 20:35     ` Dave Jiang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox