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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /***************************************************************************
  2.  *
  3.  *  drivers/s390/char/tape34xx.h
  4.  *    common tape device discipline for 34xx tapes.
  5.  *
  6.  *  S390 and zSeries version
  7.  *    Copyright (C) 2001 IBM Corporation
  8.  *    Author(s): Carsten Otte <cotte@de.ibm.com>
  9.  *               Tuan Ngo-Anh <ngoanh@de.ibm.com>
  10.  *
  11.  ****************************************************************************
  12.  */
  13. #ifndef _TAPE34XX_H
  14. #define _TAPE34XX_H
  15. /*
  16.  * The CCW commands for the Tape type of command.
  17.  */
  18. #define         INVALID_00              0x00    /* Invalid cmd      */
  19. #define         BACKSPACEBLOCK          0x27    /* Back Space block */
  20. #define         BACKSPACEFILE           0x2f    /* Back Space file */
  21. #define         DATA_SEC_ERASE          0x97    /* Data security erase */
  22. #define         ERASE_GAP               0x17    /* Erase Gap */
  23. #define         FORSPACEBLOCK           0x37    /* Forward space block */
  24. #define         FORSPACEFILE            0x3F    /* Forward Space file */
  25. #define         FORCE_STREAM_CNT        0xEB    /* Forced streaming count #   */
  26. #define         NOP                     0x03    /* No operation  */
  27. #define         READ_FORWARD            0x02    /* Read forward */
  28. #define         REWIND                  0x07    /* Rewind */
  29. #define         REWIND_UNLOAD           0x0F    /* Rewind and Unload */
  30. #define         SENSE                   0x04    /* Sense */
  31. #define         NEW_MODE_SET            0xEB    /* Guess it is Mode set */
  32. #define         WRITE_CMD               0x01    /* Write */
  33. #define         WRITETAPEMARK           0x1F    /* Write Tape Mark */
  34. #define         ASSIGN                  0xB7    /* 3420 REJECT,3480 OK  */
  35. #define         CONTROL_ACCESS          0xE3    /* Set high speed */
  36. #define         DIAG_MODE_SET           0x0B    /* 3420 NOP, 3480 REJECT*/
  37. #define         LOAD_DISPLAY            0x9F    /* 3420 REJECT,3480 OK  */
  38. #define         LOCATE                  0x4F    /* 3420 REJ, 3480 NOP   */
  39. #define         LOOP_WRITE_TO_READ      0x8B    /* 3480 REJECT        */
  40. #define         MODE_SET_DB             0xDB    /* 3420 REJECT,3480 OK  */
  41. #define         MODE_SET_C3             0xC3    /* for 3420                */
  42. #define         MODE_SET_CB             0xCB    /* for 3420                */
  43. #define         MODE_SET_D3             0xD3    /* for 3420                */
  44. #define         READ_BACKWARD           0x0C    /*                      */
  45. #define         READ_BLOCK_ID           0x22    /* 3420 REJECT,3480 OK  */
  46. #define         READ_BUFFER             0x12    /* 3420 REJECT,3480 OK  */
  47. #define         READ_BUFF_LOG           0x24    /* 3420 REJECT,3480 OK  */
  48. #define         RELEASE                 0xD4    /* 3420 NOP, 3480 REJECT*/
  49. #define         REQ_TRK_IN_ERROR        0x1B    /* 3420 NOP, 3480 REJECT*/
  50. #define         RESERVE                 0xF4    /* 3420 NOP, 3480 REJECT*/
  51. #define         SENSE_GROUP_ID          0x34    /* 3420 REJECT,3480 OK  */
  52. #define         SENSE_ID                0xE4    /* 3420 REJECT,3480 OK */
  53. #define         READ_DEV_CHAR           0x64    /* Read device characteristics */
  54. #define         SET_DIAGNOSE            0x4B    /* 3420 NOP, 3480 REJECT*/
  55. #define         SET_GROUP_ID            0xAF    /* 3420 REJECT,3480 OK  */
  56. #define         SET_TAPE_WRITE_IMMED    0xC3    /* for 3480                */
  57. #define         SUSPEND                 0x5B    /* 3420 REJ, 3480 NOP   */
  58. #define         SYNC                    0x43    /* Synchronize (flush buffer) */
  59. #define         UNASSIGN                0xC7    /* 3420 REJECT,3480 OK  */
  60. #define         PERF_SUBSYS_FUNC        0x77    /* 3490 CMD */
  61. #define         READ_CONFIG_DATA        0xFA    /* 3490 CMD */
  62. #define         READ_MESSAGE_ID         0x4E    /* 3490 CMD */
  63. #define         READ_SUBSYS_DATA        0x3E    /* 3490 CMD */
  64. #define         SET_INTERFACE_ID        0x73    /* 3490 CMD */
  65. #ifndef MIN
  66. #define MIN(a,b)                ( (a) < (b) ? (a) : (b) )
  67. #endif
  68. #define BLOCKSIZE               4096            /* size of the tape rcds */
  69. #define COMMAND_CHAIN    CCW_FLAG_CC      /* redefine from irq.h */
  70. #define CHANNEL_END      DEV_STAT_CHN_END /* redefine from irq.h */
  71. #define DEVICE_END       DEV_STAT_DEV_END /* redefine from irq.h */
  72. #define UNIT_CHECK       DEV_STAT_UNIT_CHECK  /* redefine from irq.h */
  73. #define UNIT_EXCEPTION   DEV_STAT_UNIT_EXCEP  /* redefine from irq.h */
  74. #define CONTROL_UNIT_END DEV_STAT_CU_END      /* redefine from irq.h */
  75. #define INCORR_LEN       SCHN_STAT_INCORR_LEN /* redefine from irq.h */
  76. #define SENSE_COMMAND_REJECT        0x80
  77. #define SENSE_INTERVENTION_REQUIRED 0x40
  78. #define SENSE_BUS_OUT_CHECK         0x20
  79. #define SENSE_EQUIPMENT_CHECK       0x10
  80. #define SENSE_DATA_CHECK            0x08
  81. #define SENSE_OVERRUN               0x04
  82. #define SENSE_DEFERRED_UNIT_CHECK   0x02
  83. #define SENSE_ASSIGNED_ELSEWHERE    0x01
  84. #define SENSE_LOCATE_FAILURE        0x80
  85. #define SENSE_DRIVE_ONLINE          0x40
  86. #define SENSE_RESERVED              0x20
  87. #define SENSE_RECORD_SEQUENCE_ERR   0x10
  88. #define SENSE_BEGINNING_OF_TAPE     0x08
  89. #define SENSE_WRITE_MODE            0x04
  90. #define SENSE_WRITE_PROTECT         0x02
  91. #define SENSE_NOT_CAPABLE           0x01
  92. #define SENSE_CHANNEL_ADAPTER_CODE  0xE0
  93. #define SENSE_CHANNEL_ADAPTER_LOC   0x10
  94. #define SENSE_REPORTING_CU          0x08
  95. #define SENSE_AUTOMATIC_LOADER      0x04
  96. #define SENSE_TAPE_SYNC_MODE        0x02
  97. #define SENSE_TAPE_POSITIONING      0x01
  98. typedef struct _tape34xx_disc_data_t {
  99.     __u8 modeset_byte;
  100. } tape34xx_disc_data_t  __attribute__ ((packed, aligned(8)));
  101. /* discipline functions */
  102. int tape34xx_ioctl_overload (struct inode *inode, struct file *filp, unsigned int cmd, unsigned long arg);
  103. ccw_req_t * tape34xx_write_block (const char *data, size_t count, tape_info_t * ti);
  104. void tape34xx_free_write_block (ccw_req_t * cqr, tape_info_t * ti);
  105. ccw_req_t * tape34xx_read_block (const char *data, size_t count, tape_info_t * ti);
  106. void  tape34xx_free_read_block (ccw_req_t * cqr, tape_info_t * ti);
  107. void  tape34xx_clear_read_block (ccw_req_t * cqr, tape_info_t * ti);
  108. ccw_req_t * tape34xx_mtfsf (tape_info_t * ti, int count);
  109. ccw_req_t * tape34xx_mtbsf (tape_info_t * ti, int count);
  110. ccw_req_t * tape34xx_mtfsr (tape_info_t * ti, int count);
  111. ccw_req_t * tape34xx_mtbsr (tape_info_t * ti, int count);
  112. ccw_req_t * tape34xx_mtweof (tape_info_t * ti, int count);
  113. ccw_req_t * tape34xx_mtrew (tape_info_t * ti, int count);
  114. ccw_req_t * tape34xx_mtoffl (tape_info_t * ti, int count);
  115. ccw_req_t * tape34xx_mtnop (tape_info_t * ti, int count);
  116. ccw_req_t * tape34xx_mtbsfm (tape_info_t * ti, int count);
  117. ccw_req_t * tape34xx_mtfsfm (tape_info_t * ti, int count);
  118. ccw_req_t * tape34xx_mteom (tape_info_t * ti, int count);
  119. ccw_req_t * tape34xx_mterase (tape_info_t * ti, int count);
  120. ccw_req_t * tape34xx_mtsetdensity (tape_info_t * ti, int count);
  121. ccw_req_t * tape34xx_mtseek (tape_info_t * ti, int count);
  122. ccw_req_t * tape34xx_mttell (tape_info_t * ti, int count);
  123. ccw_req_t * tape34xx_mtsetdrvbuffer (tape_info_t * ti, int count);
  124. ccw_req_t * tape34xx_mtlock (tape_info_t * ti, int count);
  125. ccw_req_t * tape34xx_mtunlock (tape_info_t * ti, int count);
  126. ccw_req_t * tape34xx_mtload (tape_info_t * ti, int count);
  127. ccw_req_t * tape34xx_mtunload (tape_info_t * ti, int count);
  128. ccw_req_t * tape34xx_mtcompression (tape_info_t * ti, int count);
  129. ccw_req_t * tape34xx_mtsetpart (tape_info_t * ti, int count);
  130. ccw_req_t * tape34xx_mtmkpart (tape_info_t * ti, int count);
  131. ccw_req_t * tape34xx_mtiocget (tape_info_t * ti, int count);
  132. ccw_req_t * tape34xx_mtiocpos (tape_info_t * ti, int count);
  133. ccw_req_t * tape34xx_bread (struct request *req, tape_info_t* ti,int tapeblock_major);
  134. ccw_req_t * tape34xx_bwrite (struct request *req, tape_info_t* ti,int tapeblock_major);
  135. void tape34xx_free_bread (ccw_req_t*,struct _tape_info_t*);
  136. void tape34xx_free_bwrite (ccw_req_t*,struct _tape_info_t*);
  137. /* Event handlers */
  138. void tape34xx_default_handler (tape_info_t * ti);
  139. void tape34xx_unexpect_uchk_handler (tape_info_t * ti);
  140. void tape34xx_unused_done(tape_info_t* ti);
  141. void tape34xx_idle_done(tape_info_t* ti);
  142. void tape34xx_block_done(tape_info_t* ti);
  143. void tape34xx_bsf_init_done(tape_info_t* ti);
  144. void tape34xx_dse_init_done(tape_info_t* ti);
  145. void tape34xx_fsf_init_done(tape_info_t* ti);
  146. void tape34xx_bsb_init_done(tape_info_t* ti);
  147. void tape34xx_fsb_init_done(tape_info_t* ti);
  148. void tape34xx_lbl_init_done(tape_info_t* ti);
  149. void tape34xx_nop_init_done(tape_info_t* ti);
  150. void tape34xx_rfo_init_done(tape_info_t* ti);
  151. void tape34xx_rbi_init_done(tape_info_t* ti);
  152. void tape34xx_rew_init_done(tape_info_t* ti);
  153. void tape34xx_rew_release_init_done(tape_info_t* ti);
  154. void tape34xx_run_init_done(tape_info_t* ti);
  155. void tape34xx_wri_init_done(tape_info_t* ti);
  156. void tape34xx_wtm_init_done(tape_info_t* ti);
  157. extern void schedule_tapeblock_exec_IO (tape_info_t *ti);
  158. // the error recovery stuff:
  159. void tape34xx_error_recovery (tape_info_t* ti);
  160. void tape34xx_error_recovery_has_failed (tape_info_t* ti,int error_id);
  161. void tape34xx_error_recovery_succeded(tape_info_t* ti);
  162. void tape34xx_error_recovery_do_retry(tape_info_t* ti);
  163. void tape34xx_error_recovery_read_opposite (tape_info_t* ti);
  164. void  tape34xx_error_recovery_HWBUG (tape_info_t* ti,int condno);
  165. #endif // _TAPE34XX_H