linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [ANNOUNCE] QLogic qla2xxx driver update available (v8.00.00b3).
@ 2003-05-30 16:00 Andrew Vasquez
  2003-05-30 23:52 ` Anton Blanchard
  0 siblings, 1 reply; 2+ messages in thread
From: Andrew Vasquez @ 2003-05-30 16:00 UTC (permalink / raw)
  To: linux-kernel, linux-scsi

All,

A new version of the 8.x series driver for Linux 2.5.x kernels has
been uploaded to SourceForge:

	http://sourceforge.net/projects/linux-qla2xxx/

This is mostly a resync in functionality with the latest 6.x beta
driver.  Additionally, there have been some file-structure changes to
the distribution package:

	o Removal of 2300 TPX firmware in favor of 2300 IPX
	  - Driver supports both FC-SCSI and IP concurrently.

		ql2300tpx.c -> ql2300ipx.c

The next driver drop will include further refinements in file
organization: FC Generic services, HBA identification table.

Changes include:

 *	- Rework PCI I/O space configuration.
 *	- ISR fast-path clean-up.
 *	- Rework IP functionality to support 2k logins.
 *	- Resync with 6.06.00b3.
 *	- Resync with Linux Kernel 2.5.70.

Regards,
Andrew Vasquez

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

* Re: [ANNOUNCE] QLogic qla2xxx driver update available (v8.00.00b3).
  2003-05-30 16:00 [ANNOUNCE] QLogic qla2xxx driver update available (v8.00.00b3) Andrew Vasquez
@ 2003-05-30 23:52 ` Anton Blanchard
  0 siblings, 0 replies; 2+ messages in thread
From: Anton Blanchard @ 2003-05-30 23:52 UTC (permalink / raw)
  To: Andrew Vasquez, linux-kernel, linux-scsi

 
Hi,

> A new version of the 8.x series driver for Linux 2.5.x kernels has
> been uploaded to SourceForge:
> 
> 	http://sourceforge.net/projects/linux-qla2xxx/

A few suggestions:

- Use pci_set_mwi since it will set the cacheline size if necessary.
- Dont set/clear IO/MEMORY/MASTER, it should be handled in
  pci_enable_device/pci_set_master.

Anton

--- qla_init.c~	2003-05-31 09:18:31.000000000 +1000
+++ qla_init.c	2003-05-31 09:21:16.000000000 +1000
@@ -521,6 +521,7 @@
 	 * default.
 	 */
 	pci_set_master(ha->pdev);
+	pci_set_mwi(ha->pdev);
 	pci_read_config_word(ha->pdev, PCI_REVISION_ID, &ha->revision);
 
 	if (!ha->iobase)
@@ -532,18 +533,7 @@
 	 * interest to us are properly set in command register.
 	 */
 	pci_read_config_word(ha->pdev, PCI_COMMAND, &w);
-	w |= (PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | 
-	    PCI_COMMAND_INVALIDATE | PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
-
-#if MEMORY_MAPPED_IO
-	DEBUG(printk("scsi(%ld): I/O SPACE and MEMORY MAPPED I/O enabled.\n",
-	    ha->host_no));
-#else
-	DEBUG(printk("scsi(%ld): I/O SPACE enabled and MEMORY MAPPED I/O "
-	    "disabled.\n", ha->host_no));
-
-	w &= ~PCI_COMMAND_MEMORY;
-#endif
+	w |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
 
 #if defined(ISP2300)
 	/* PCI Specification Revision 2.3 changes */

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

end of thread, other threads:[~2003-05-30 23:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-05-30 16:00 [ANNOUNCE] QLogic qla2xxx driver update available (v8.00.00b3) Andrew Vasquez
2003-05-30 23:52 ` Anton Blanchard

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).