fcp.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* fcp.h: Definitions for Fibre Channel Protocol.
  2.  *
  3.  * Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
  4.  *
  5.  */
  6. #ifndef __FCP_H
  7. #define __FCP_H
  8. /* FCP addressing is hierarchical with up to 4 layers, MS first.
  9.    Exact meaning of the addresses is up to the vendor */
  10. /* fcp_cntl field */   
  11. #define FCP_CNTL_WRITE 0x00000001 /* Initiator write */
  12. #define FCP_CNTL_READ 0x00000002 /* Initiator read */
  13. #define FCP_CNTL_ABORT_TSK 0x00000200 /* Abort task set */
  14. #define FCP_CNTL_CLR_TASK 0x00000400 /* Clear task set */
  15. #define FCP_CNTL_RESET 0x00002000 /* Reset */
  16. #define FCP_CNTL_CLR_ACA 0x00004000 /* Clear ACA */
  17. #define FCP_CNTL_KILL_TASK 0x00008000 /* Terminate task */
  18. #define FCP_CNTL_QTYPE_MASK 0x00070000 /* Tagged queueing type */
  19. #define  FCP_CNTL_QTYPE_SIMPLE 0x00000000
  20. #define  FCP_CNTL_QTYPE_HEAD_OF_Q 0x00010000
  21. #define FCP_CNTL_QTYPE_ORDERED 0x00020000
  22. #define  FCP_CNTL_QTYPE_ACA_Q_TAG 0x00040000
  23. #define  FCP_CNTL_QTYPE_UNTAGGED 0x00050000
  24. typedef struct {
  25. u16 fcp_addr[4];
  26. u32 fcp_cntl;
  27. u8 fcp_cdb[16];
  28. u32 fcp_data_len;
  29. } fcp_cmd;
  30. /* fcp_status field */
  31. #define FCP_STATUS_MASK 0x000000ff /* scsi status of command */
  32. #define FCP_STATUS_RSP_LEN 0x00000100 /* response_len != 0 */
  33. #define FCP_STATUS_SENSE_LEN 0x00000200 /* sense_len != 0 */
  34. #define FCP_STATUS_RESID 0x00000400 /* resid != 0 */
  35. typedef struct {
  36. u32 xxx[2];
  37. u32 fcp_status;
  38. u32 fcp_resid;
  39. u32 fcp_sense_len;
  40. u32 fcp_response_len;
  41. /* u8 fcp_sense[fcp_sense_len]; */
  42. /* u8 fcp_response[fcp_response_len]; */
  43. } fcp_rsp;
  44. /* fcp errors */
  45. /* rsp_info_type field */
  46. #define FCP_RSP_SCSI_BUS_ERR 0x01
  47. #define FCP_RSP_SCSI_PORT_ERR 0x02
  48. #define FCP_RSP_CARD_ERR 0x03
  49. /* isp_status field */
  50. #define FCP_RSP_CMD_COMPLETE 0x0000
  51. #define FCP_RSP_CMD_INCOMPLETE 0x0001
  52. #define FCP_RSP_CMD_DMA_ERR 0x0002
  53. #define FCP_RSP_CMD_TRAN_ERR 0x0003
  54. #define FCP_RSP_CMD_RESET 0x0004
  55. #define FCP_RSP_CMD_ABORTED 0x0005
  56. #define FCP_RSP_CMD_TIMEOUT 0x0006
  57. #define FCP_RSP_CMD_OVERRUN 0x0007
  58. /* isp_state_flags field */
  59. #define FCP_RSP_ST_GOT_BUS 0x0100
  60. #define FCP_RSP_ST_GOT_TARGET 0x0200
  61. #define FCP_RSP_ST_SENT_CMD 0x0400
  62. #define FCP_RSP_ST_XFRD_DATA 0x0800
  63. #define FCP_RSP_ST_GOT_STATUS 0x1000
  64. #define FCP_RSP_ST_GOT_SENSE 0x2000
  65. /* isp_stat_flags field */
  66. #define FCP_RSP_STAT_DISC 0x0001
  67. #define FCP_RSP_STAT_SYNC 0x0002
  68. #define FCP_RSP_STAT_PERR 0x0004
  69. #define FCP_RSP_STAT_BUS_RESET 0x0008
  70. #define FCP_RSP_STAT_DEV_RESET 0x0010
  71. #define FCP_RSP_STAT_ABORTED 0x0020
  72. #define FCP_RSP_STAT_TIMEOUT 0x0040
  73. #define FCP_RSP_STAT_NEGOTIATE 0x0080
  74. typedef struct {
  75. u8 rsp_info_type;
  76. u8 xxx;
  77. u16 isp_status;
  78. u16 isp_state_flags;
  79. u16 isp_stat_flags;
  80. } fcp_scsi_err;
  81. #endif /* !(__FCP_H) */