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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef GVP11_H
  2. /* $Id: gvp11.h,v 1.4 1997/01/19 23:07:12 davem Exp $
  3.  *
  4.  * Header file for the GVP Series II SCSI controller for Linux
  5.  *
  6.  * Written and (C) 1993, Ralf Baechle, see gvp11.c for more info
  7.  * based on a2091.h (C) 1993 by Hamish Macdonald
  8.  *
  9.  */
  10. #include <linux/types.h>
  11. int gvp11_detect(Scsi_Host_Template *);
  12. int gvp11_release(struct Scsi_Host *);
  13. const char *wd33c93_info(void);
  14. int wd33c93_queuecommand(Scsi_Cmnd *, void (*done)(Scsi_Cmnd *));
  15. int wd33c93_abort(Scsi_Cmnd *);
  16. int wd33c93_reset(Scsi_Cmnd *, unsigned int);
  17. #ifndef NULL
  18. #define NULL 0
  19. #endif
  20. #ifndef CMD_PER_LUN
  21. #define CMD_PER_LUN 2
  22. #endif
  23. #ifndef CAN_QUEUE
  24. #define CAN_QUEUE 16
  25. #endif
  26. #ifdef HOSTS_C
  27. #define GVP11_SCSI {  proc_name:    "GVP11", 
  28.       name:                "GVP Series II SCSI", 
  29.       detect:              gvp11_detect,    
  30.       release:             gvp11_release,   
  31.       queuecommand:        wd33c93_queuecommand, 
  32.       abort:               wd33c93_abort,   
  33.       reset:               wd33c93_reset,   
  34.       can_queue:           CAN_QUEUE,       
  35.       this_id:             7,               
  36.       sg_tablesize:        SG_ALL,          
  37.       cmd_per_lun:    CMD_PER_LUN,     
  38.       use_clustering:      DISABLE_CLUSTERING }
  39. #else
  40. /*
  41.  * if the transfer address ANDed with this results in a non-zero
  42.  * result, then we can't use DMA.
  43.  */
  44. #define GVP11_XFER_MASK  (0xff000001)
  45. typedef struct {
  46.              unsigned char      pad1[64];
  47.     volatile unsigned short     CNTR;
  48.              unsigned char      pad2[31];
  49.     volatile unsigned char      SASR;
  50.              unsigned char      pad3;
  51.     volatile unsigned char      SCMD;
  52.              unsigned char      pad4[4];
  53.     volatile unsigned short     BANK;
  54.              unsigned char      pad5[6];
  55.     volatile unsigned long      ACR;
  56.     volatile unsigned short     secret1; /* store 0 here */
  57.     volatile unsigned short     ST_DMA;
  58.     volatile unsigned short     SP_DMA;
  59.     volatile unsigned short     secret2; /* store 1 here */
  60.     volatile unsigned short     secret3; /* store 15 here */
  61. } gvp11_scsiregs;
  62. /* bits in CNTR */
  63. #define GVP11_DMAC_BUSY (1<<0)
  64. #define GVP11_DMAC_INT_PENDING (1<<1)
  65. #define GVP11_DMAC_INT_ENABLE (1<<3)
  66. #define GVP11_DMAC_DIR_WRITE (1<<4)
  67. #endif /* else def HOSTS_C */
  68. #endif /* GVP11_H */