* qlogic qla2312f-v2 (hp oem?)
@ 2006-06-09 11:20 Sander van Beek - Elexis
2006-06-09 12:08 ` Matthew Wilcox
2006-06-14 22:48 ` Andrew Vasquez
0 siblings, 2 replies; 8+ messages in thread
From: Sander van Beek - Elexis @ 2006-06-09 11:20 UTC (permalink / raw)
To: linux-scsi
Hi all,
I recently got two qla2312f-v2 cards from ebay. These are dual 2gbit
fibre channel hba's for a pci-x bus. The qlogic site says this type
is a HP OEM card and it is not sold directly by qlogic.
I tried to get them working on a slackware 10.2 system with the
latest stable 2.6 kernel. However, the qla2xxx driver does not see
the card. My dmesg only shows this line:
Jun 9 11:09:27 clust1 kernel: QLogic Fibre Channel HBA Driver
This is how the card shows up in my /proc/pci:
Bus 2, device 1, function 1:
Class 0c04: PCI device 1077:8000 (rev 1).
IRQ 255.
Prefetchable 32 bit memory at 0x40000000 [0x403fffff].
Can anyone supply me with some hints what could be wrong, or what I
should do to get them working?
With best regards,
Sander van Beek
---------------------------------------
Ing. S. van Beek
Elexis
Marketing 9
6921 RE Duiven
Tel: +31 (0)26 7110329
Mob: +31 (0)6 28395109
Fax: +31 (0)318 611112
Email: sander@elexis.nl
Web: http://www.elexis.nl
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: qlogic qla2312f-v2 (hp oem?)
2006-06-09 11:20 qlogic qla2312f-v2 (hp oem?) Sander van Beek - Elexis
@ 2006-06-09 12:08 ` Matthew Wilcox
2006-06-14 7:50 ` Sander van Beek - Elexis
2006-06-14 22:48 ` Andrew Vasquez
1 sibling, 1 reply; 8+ messages in thread
From: Matthew Wilcox @ 2006-06-09 12:08 UTC (permalink / raw)
To: Sander van Beek - Elexis; +Cc: linux-scsi
On Fri, Jun 09, 2006 at 01:20:57PM +0200, Sander van Beek - Elexis wrote:
> I recently got two qla2312f-v2 cards from ebay. These are dual 2gbit
> fibre channel hba's for a pci-x bus. The qlogic site says this type
> is a HP OEM card and it is not sold directly by qlogic.
> I tried to get them working on a slackware 10.2 system with the
> latest stable 2.6 kernel. However, the qla2xxx driver does not see
> the card. My dmesg only shows this line:
>
> Jun 9 11:09:27 clust1 kernel: QLogic Fibre Channel HBA Driver
>
> This is how the card shows up in my /proc/pci:
>
> Bus 2, device 1, function 1:
> Class 0c04: PCI device 1077:8000 (rev 1).
> IRQ 255.
> Prefetchable 32 bit memory at 0x40000000 [0x403fffff].
>
> Can anyone supply me with some hints what could be wrong, or what I
> should do to get them working?
I'd try adding the PCI IDs to the driver and see what happened next.
Something like:
+++ drivers/scsi/qla2xxx/ql2300.c 9 Jun 2006 12:08:21 -0000
@@ -64,6 +64,13 @@ static struct pci_device_id qla2300_pci_
},
{
.vendor = PCI_VENDOR_ID_QLOGIC,
+ .device = 0x8000,
+ .subvendor = PCI_ANY_ID,
+ .subdevice = PCI_ANY_ID,
+ .driver_data = (unsigned long)&qla_board_tbl[1],
+ },
+ {
+ .vendor = PCI_VENDOR_ID_QLOGIC,
.device = PCI_DEVICE_ID_QLOGIC_ISP6312,
.subvendor = PCI_ANY_ID,
.subdevice = PCI_ANY_ID,
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: qlogic qla2312f-v2 (hp oem?)
2006-06-09 12:08 ` Matthew Wilcox
@ 2006-06-14 7:50 ` Sander van Beek - Elexis
2006-06-14 22:45 ` Andrew Vasquez
0 siblings, 1 reply; 8+ messages in thread
From: Sander van Beek - Elexis @ 2006-06-14 7:50 UTC (permalink / raw)
To: Matthew Wilcox; +Cc: linux-scsi
Hi Matthew,
Thanks for your reply.
I've tried this, but the driver still does not seem to recognize the
card. Any other idea's?
Kind regards,
Sander
At 14:08 9-6-2006, Matthew Wilcox wrote:
>On Fri, Jun 09, 2006 at 01:20:57PM +0200, Sander van Beek - Elexis wrote:
> > I recently got two qla2312f-v2 cards from ebay. These are dual 2gbit
> > fibre channel hba's for a pci-x bus. The qlogic site says this type
> > is a HP OEM card and it is not sold directly by qlogic.
> > I tried to get them working on a slackware 10.2 system with the
> > latest stable 2.6 kernel. However, the qla2xxx driver does not see
> > the card. My dmesg only shows this line:
> >
> > Jun 9 11:09:27 clust1 kernel: QLogic Fibre Channel HBA Driver
> >
> > This is how the card shows up in my /proc/pci:
> >
> > Bus 2, device 1, function 1:
> > Class 0c04: PCI device 1077:8000 (rev 1).
> > IRQ 255.
> > Prefetchable 32 bit memory at 0x40000000 [0x403fffff].
> >
> > Can anyone supply me with some hints what could be wrong, or what I
> > should do to get them working?
>
>I'd try adding the PCI IDs to the driver and see what happened next.
>Something like:
>
>+++ drivers/scsi/qla2xxx/ql2300.c 9 Jun 2006 12:08:21 -0000
>@@ -64,6 +64,13 @@ static struct pci_device_id qla2300_pci_
> },
> {
> .vendor = PCI_VENDOR_ID_QLOGIC,
>+ .device = 0x8000,
>+ .subvendor = PCI_ANY_ID,
>+ .subdevice = PCI_ANY_ID,
>+ .driver_data = (unsigned long)&qla_board_tbl[1],
>+ },
>+ {
>+ .vendor = PCI_VENDOR_ID_QLOGIC,
> .device = PCI_DEVICE_ID_QLOGIC_ISP6312,
> .subvendor = PCI_ANY_ID,
> .subdevice = PCI_ANY_ID,
>
>-
>To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
>the body of a message to majordomo@vger.kernel.org
>More majordomo info at http://vger.kernel.org/majordomo-info.html
>
>
>
>--
>No virus found in this incoming message.
>Checked by AVG Free Edition.
>Version: 7.1.394 / Virus Database: 268.8.3/359 - Release Date: 8-6-2006
Met vriendelijke groet,
Sander van Beek
---------------------------------------
Ing. S. van Beek
Elexis
Marketing 9
6921 RE Duiven
Tel: +31 (0)26 7110329
Mob: +31 (0)6 28395109
Fax: +31 (0)318 611112
Email: sander@elexis.nl
Web: http://www.elexis.nl
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: qlogic qla2312f-v2 (hp oem?)
2006-06-14 7:50 ` Sander van Beek - Elexis
@ 2006-06-14 22:45 ` Andrew Vasquez
0 siblings, 0 replies; 8+ messages in thread
From: Andrew Vasquez @ 2006-06-14 22:45 UTC (permalink / raw)
To: Sander van Beek - Elexis; +Cc: Matthew Wilcox, linux-scsi
On Wed, 14 Jun 2006, Sander van Beek - Elexis wrote:
> Thanks for your reply.
> I've tried this, but the driver still does not seem to recognize the
> card. Any other idea's?
I'd suggest you contact QLogic's tech-support:
http://support.qlogic.com/support/report_problem.asp
I'm unaware of any DID of 0x8000:
> At 14:08 9-6-2006, Matthew Wilcox wrote:
> >On Fri, Jun 09, 2006 at 01:20:57PM +0200, Sander van Beek - Elexis wrote:
> >> I recently got two qla2312f-v2 cards from ebay. These are dual 2gbit
> >> fibre channel hba's for a pci-x bus. The qlogic site says this type
> >> is a HP OEM card and it is not sold directly by qlogic.
> >> I tried to get them working on a slackware 10.2 system with the
> >> latest stable 2.6 kernel. However, the qla2xxx driver does not see
> >> the card. My dmesg only shows this line:
> >>
> >> Jun 9 11:09:27 clust1 kernel: QLogic Fibre Channel HBA Driver
> >>
> >> This is how the card shows up in my /proc/pci:
> >>
> >> Bus 2, device 1, function 1:
> >> Class 0c04: PCI device 1077:8000 (rev 1).
> >> IRQ 255.
> >> Prefetchable 32 bit memory at 0x40000000 [0x403fffff].
weird...
--
Andrew
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: qlogic qla2312f-v2 (hp oem?)
2006-06-09 11:20 qlogic qla2312f-v2 (hp oem?) Sander van Beek - Elexis
2006-06-09 12:08 ` Matthew Wilcox
@ 2006-06-14 22:48 ` Andrew Vasquez
2006-06-15 11:20 ` sander
1 sibling, 1 reply; 8+ messages in thread
From: Andrew Vasquez @ 2006-06-14 22:48 UTC (permalink / raw)
To: Sander van Beek - Elexis; +Cc: linux-scsi
On Fri, 09 Jun 2006, Sander van Beek - Elexis wrote:
> I recently got two qla2312f-v2 cards from ebay. These are dual 2gbit
> fibre channel hba's for a pci-x bus. The qlogic site says this type
> is a HP OEM card and it is not sold directly by qlogic.
> I tried to get them working on a slackware 10.2 system with the
> latest stable 2.6 kernel. However, the qla2xxx driver does not see
> the card. My dmesg only shows this line:
>
> Jun 9 11:09:27 clust1 kernel: QLogic Fibre Channel HBA Driver
>
> This is how the card shows up in my /proc/pci:
>
> Bus 2, device 1, function 1:
> Class 0c04: PCI device 1077:8000 (rev 1).
> IRQ 255.
> Prefetchable 32 bit memory at 0x40000000 [0x403fffff].
btw: can you send the output of 'lspci -vvv' on your machine.
--
av
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: qlogic qla2312f-v2 (hp oem?)
2006-06-14 22:48 ` Andrew Vasquez
@ 2006-06-15 11:20 ` sander
2006-06-15 15:17 ` Andrew Patterson
0 siblings, 1 reply; 8+ messages in thread
From: sander @ 2006-06-15 11:20 UTC (permalink / raw)
To: Andrew Vasquez; +Cc: Sander van Beek - Elexis, linux-scsi
The FAQ section on the qlogic website says this card is only sold as an
oem product, and that I should contact HP for drivers. However, the driver
packages HP has made available just seem to contain the original qla2xxx
drivers included in the kernel.
Ill post my lspci output somewhere in the next few days, Im not at the
office right now.
Thanks,
Sander
> On Fri, 09 Jun 2006, Sander van Beek - Elexis wrote:
>
>> I recently got two qla2312f-v2 cards from ebay. These are dual 2gbit
>> fibre channel hba's for a pci-x bus. The qlogic site says this type
>> is a HP OEM card and it is not sold directly by qlogic.
>> I tried to get them working on a slackware 10.2 system with the
>> latest stable 2.6 kernel. However, the qla2xxx driver does not see
>> the card. My dmesg only shows this line:
>>
>> Jun 9 11:09:27 clust1 kernel: QLogic Fibre Channel HBA Driver
>>
>> This is how the card shows up in my /proc/pci:
>>
>> Bus 2, device 1, function 1:
>> Class 0c04: PCI device 1077:8000 (rev 1).
>> IRQ 255.
>> Prefetchable 32 bit memory at 0x40000000 [0x403fffff].
>
> btw: can you send the output of 'lspci -vvv' on your machine.
>
> --
> av
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: qlogic qla2312f-v2 (hp oem?)
2006-06-15 11:20 ` sander
@ 2006-06-15 15:17 ` Andrew Patterson
2006-06-15 15:24 ` Christoph Hellwig
0 siblings, 1 reply; 8+ messages in thread
From: Andrew Patterson @ 2006-06-15 15:17 UTC (permalink / raw)
To: sander; +Cc: Andrew Vasquez, linux-scsi
On Thu, 2006-06-15 at 13:20 +0200, sander@elexis.nl wrote:
> The FAQ section on the qlogic website says this card is only sold as an
> oem product, and that I should contact HP for drivers. However, the driver
> packages HP has made available just seem to contain the original qla2xxx
> drivers included in the kernel.
>
HP's versions of the QLogic driver may of may not be newer than the ones
in kernel.org depending on timing. They usually have some later bug
fixes found when qualifying HP storage and add features that have not
been accepted by kernel.org, e.g., multi-pathing. These driver's
however, have only been certified with various versions of RHEL and
SLES, so they may not help you with other distros or if rolling your own
kernel.
Andrew
> Ill post my lspci output somewhere in the next few days, Im not at the
> office right now.
>
> Thanks,
> Sander
>
> > On Fri, 09 Jun 2006, Sander van Beek - Elexis wrote:
> >
> >> I recently got two qla2312f-v2 cards from ebay. These are dual 2gbit
> >> fibre channel hba's for a pci-x bus. The qlogic site says this type
> >> is a HP OEM card and it is not sold directly by qlogic.
> >> I tried to get them working on a slackware 10.2 system with the
> >> latest stable 2.6 kernel. However, the qla2xxx driver does not see
> >> the card. My dmesg only shows this line:
> >>
> >> Jun 9 11:09:27 clust1 kernel: QLogic Fibre Channel HBA Driver
> >>
> >> This is how the card shows up in my /proc/pci:
> >>
> >> Bus 2, device 1, function 1:
> >> Class 0c04: PCI device 1077:8000 (rev 1).
> >> IRQ 255.
> >> Prefetchable 32 bit memory at 0x40000000 [0x403fffff].
> >
> > btw: can you send the output of 'lspci -vvv' on your machine.
> >
> > --
> > av
> >
>
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: qlogic qla2312f-v2 (hp oem?)
2006-06-15 15:17 ` Andrew Patterson
@ 2006-06-15 15:24 ` Christoph Hellwig
0 siblings, 0 replies; 8+ messages in thread
From: Christoph Hellwig @ 2006-06-15 15:24 UTC (permalink / raw)
To: Andrew Patterson; +Cc: sander, Andrew Vasquez, linux-scsi
On Thu, Jun 15, 2006 at 09:17:04AM -0600, Andrew Patterson wrote:
> On Thu, 2006-06-15 at 13:20 +0200, sander@elexis.nl wrote:
> > The FAQ section on the qlogic website says this card is only sold as an
> > oem product, and that I should contact HP for drivers. However, the driver
> > packages HP has made available just seem to contain the original qla2xxx
> > drivers included in the kernel.
> >
>
> HP's versions of the QLogic driver may of may not be newer than the ones
> in kernel.org depending on timing. They usually have some later bug
> fixes found when qualifying HP storage and add features that have not
> been accepted by kernel.org, e.g., multi-pathing. These driver's
> however, have only been certified with various versions of RHEL and
> SLES, so they may not help you with other distros or if rolling your own
> kernel.
Or to say it in plain english they're the crappy old out of tree drivers
not using the proper kernel infrastructure and you should stay away from
them as far as possible. The only reason to use them is if you have
a HP support contract and claim them liable if they don't work :)
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2006-06-15 15:24 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-09 11:20 qlogic qla2312f-v2 (hp oem?) Sander van Beek - Elexis
2006-06-09 12:08 ` Matthew Wilcox
2006-06-14 7:50 ` Sander van Beek - Elexis
2006-06-14 22:45 ` Andrew Vasquez
2006-06-14 22:48 ` Andrew Vasquez
2006-06-15 11:20 ` sander
2006-06-15 15:17 ` Andrew Patterson
2006-06-15 15:24 ` Christoph Hellwig
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.