qlogicfc.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * QLogic ISP2x00 SCSI-FCP
  3.  * 
  4.  * Written by Erik H. Moe, ehm@cris.com
  5.  * Copyright 1995, Erik H. Moe
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  *
  12.  * This program is distributed in the hope that it will be useful, but
  13.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.  * General Public License for more details.
  16.  */
  17. /* Renamed and updated to 1.3.x by Michael Griffith <grif@cs.ucr.edu> */
  18. /* This is a version of the isp1020 driver which was modified by
  19.  * Chris Loveland <cwl@iol.unh.edu> to support the isp2x00
  20.  */
  21. /*
  22.  * $Date: 1995/09/22 02:32:56 $
  23.  * $Revision: 0.5 $
  24.  *
  25.  * $Log: isp1020.h,v $
  26.  * Revision 0.5  1995/09/22  02:32:56  root
  27.  * do auto request sense
  28.  *
  29.  * Revision 0.4  1995/08/07  04:48:28  root
  30.  * supply firmware with driver.
  31.  * numerous bug fixes/general cleanup of code.
  32.  *
  33.  * Revision 0.3  1995/07/16  16:17:16  root
  34.  * added reset/abort code.
  35.  *
  36.  * Revision 0.2  1995/06/29  03:19:43  root
  37.  * fixed biosparam.
  38.  * added queue protocol.
  39.  *
  40.  * Revision 0.1  1995/06/25  01:56:13  root
  41.  * Initial release.
  42.  *
  43.  */
  44. #ifndef _QLOGICFC_H
  45. #define _QLOGICFC_H
  46. /*
  47.  * With the qlogic interface, every queue slot can hold a SCSI
  48.  * command with up to 2 scatter/gather entries.  If we need more
  49.  * than 2 entries, continuation entries can be used that hold
  50.  * another 5 entries each.  Unlike for other drivers, this means
  51.  * that the maximum number of scatter/gather entries we can
  52.  * support at any given time is a function of the number of queue
  53.  * slots available.  That is, host->can_queue and host->sg_tablesize
  54.  * are dynamic and _not_ independent.  This all works fine because
  55.  * requests are queued serially and the scatter/gather limit is
  56.  * determined for each queue request anew.
  57.  */
  58. #define DATASEGS_PER_COMMAND 2
  59. #define DATASEGS_PER_CONT 5
  60. #define QLOGICFC_REQ_QUEUE_LEN 127 /* must be power of two - 1 */
  61. #define QLOGICFC_MAX_SG(ql) (DATASEGS_PER_COMMAND + (((ql) > 0) ? DATASEGS_PER_CONT*((ql) - 1) : 0))
  62. #define QLOGICFC_CMD_PER_LUN    8
  63. int isp2x00_detect(Scsi_Host_Template *);
  64. int isp2x00_release(struct Scsi_Host *);
  65. const char * isp2x00_info(struct Scsi_Host *);
  66. int isp2x00_queuecommand(Scsi_Cmnd *, void (* done)(Scsi_Cmnd *));
  67. int isp2x00_abort(Scsi_Cmnd *);
  68. int isp2x00_reset(Scsi_Cmnd *, unsigned int);
  69. int isp2x00_biosparam(Disk *, kdev_t, int[]);
  70. #ifndef NULL
  71. #define NULL (0)
  72. #endif
  73. #define QLOGICFC {    
  74.         detect:                 isp2x00_detect,                            
  75.         release:                isp2x00_release,                           
  76.         info:                   isp2x00_info,                              
  77.         queuecommand:           isp2x00_queuecommand,                      
  78.         eh_abort_handler:       isp2x00_abort,                             
  79.         reset:                  isp2x00_reset,                             
  80.         bios_param:             isp2x00_biosparam,                         
  81.         can_queue:              QLOGICFC_REQ_QUEUE_LEN,                    
  82.         this_id:                -1,                                        
  83.         sg_tablesize:           QLOGICFC_MAX_SG(QLOGICFC_REQ_QUEUE_LEN),   
  84. cmd_per_lun: QLOGICFC_CMD_PER_LUN,     
  85.         present:                0,                                         
  86.         unchecked_isa_dma:      0,                                         
  87.         use_clustering:         ENABLE_CLUSTERING     
  88. }
  89. #endif /* _QLOGICFC_H */