[parisc-linux-cvs] [PATCH] Add back in ZALON SCSI Support

Ryan Bradetich rbradetich@uswest.net
Tue, 13 Nov 2001 22:37:51 -0700


--IJpNTDwzlM2Ie8A6
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

This patch adds back in ZALON SCSI support.  This was orgionally in
arch/parisc/config.in ... but I moved it to drivers/scsi/Config.in
since I think it makes more sense there.

- Ryan

--IJpNTDwzlM2Ie8A6
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="Config.in.patch"

Index: Config.in
===================================================================
RCS file: /var/cvs/linux/drivers/scsi/Config.in,v
retrieving revision 1.12
diff -u -p -r1.12 Config.in
--- Config.in	2001/11/09 23:36:20	1.12
+++ Config.in	2001/11/14 05:27:02
@@ -123,10 +123,18 @@ if [ "$CONFIG_MCA" = "y" ]; then
 fi
 if [ "$CONFIG_PARISC" = "y" ]; then
    dep_tristate 'HP LASI SCSI support for 53c700/710' CONFIG_SCSI_LASI700 $CONFIG_SCSI
+   dep_tristate 'Zalon SCSI support' CONFIG_SCSI_ZALON $CONFIG_SCSI
    if [ "$CONFIG_SCSI_LASI700" != "n" ]; then
       define_bool CONFIG_53C700_MEM_MAPPED y
       define_bool CONFIG_53C700_LE_ON_BE y
       define_bool CONFIG_53C700_USE_CONSISTENT y
+   fi
+   if [ "$CONFIG_SCSI_ZALON" != "n" -o "$CONFIG_SCSI_SYM53C8XX" != "n" ]; then
+      int  '  default tagged command queue depth' CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS 8
+      int  '  maximum number of queued commands' CONFIG_SCSI_NCR53C8XX_MAX_TAGS 32
+      int  '  synchronous transfers frequency in MHz' CONFIG_SCSI_NCR53C8XX_SYNC 20
+      bool '  enable profiling' CONFIG_SCSI_NCR53C8XX_PROFILE
+      bool '  use normal IO' CONFIG_SCSI_NCR53C8XX_IOMAPPED
    fi
 fi
 dep_tristate 'NCR53c7,8xx SCSI support'  CONFIG_SCSI_NCR53C7xx $CONFIG_SCSI $CONFIG_PCI

--IJpNTDwzlM2Ie8A6--