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

嵌入式Linux

开发平台:

Unix_Linux

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