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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  arch/s390/kernel/s390io.h
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999,2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Ingo Adlung (adlung@de.ibm.com)
  7.  */
  8. #ifndef __s390io_h
  9. #define __s390io_h
  10. /*
  11.  * IRQ data structure used by I/O subroutines
  12.  *
  13.  * Note : If bit flags are added, the "unused" value must be
  14.  *        decremented accordingly !
  15.  */
  16. typedef struct _ioinfo {
  17.      unsigned int  irq;           /* aka. subchannel number */
  18.      spinlock_t    irq_lock;      /* irq lock */
  19.      void          *private_data; /* pointer to private data */
  20.      struct _ioinfo *prev;
  21.      struct _ioinfo *next;
  22.      __u8          st;            /* subchannel type */
  23.      union {
  24.         unsigned int info;
  25.         struct {
  26.            unsigned int  busy      : 1;  /* device currently in use */
  27.            unsigned int  oper      : 1;  /* device is operational */
  28.            unsigned int  fast      : 1;  /* post with "channel end", ...    */
  29.                                          /* ... don't wait for "device end" */
  30.                                          /* ... from do_IO() parameters     */
  31.            unsigned int  ready     : 1;  /* interrupt handler registered */
  32.            unsigned int  haltio    : 1;  /* halt_IO in process */
  33.            unsigned int  doio      : 1;  /* do_IO in process */
  34.            unsigned int  doio_q    : 1;  /* do_IO queued - only possible ... */
  35.                                          /* ... if 'fast' is set too */
  36.            unsigned int  w4final   : 1;  /* wait for final status, internally */
  37.                                          /* ... used with 'fast' setting only */
  38.            unsigned int  repall    : 1;  /* report every interrupt status */
  39.            unsigned int  unready   : 1;  /* deregister irq handler in process */
  40.            unsigned int  d_disable : 1;  /* delayed disabling required */
  41.            unsigned int  w4sense   : 1;  /* SENSE status pending */
  42.            unsigned int  syncio    : 1;  /* synchronous I/O requested */
  43.            unsigned int  consns    : 1;  /* concurrent sense is available */
  44.            unsigned int  delsense  : 1;  /* delayed SENSE required */
  45.            unsigned int  s_pend    : 1;  /* status pending condition */
  46.            unsigned int  pgid      : 1;  /* "path group ID" is valid */
  47.            unsigned int  pgid_supp : 1;  /* "path group ID" command is supported */
  48.            unsigned int  esid      : 1;  /* Ext. SenseID supported by HW */
  49.            unsigned int  rcd       : 1;  /* RCD supported by HW */
  50.            unsigned int  repnone   : 1;  /* don't call IRQ handler on interrupt */
  51.            unsigned int  newreq    : 1;  /* new register interface */
  52.            unsigned int  dval      : 1;  /* device number valid */
  53.            unsigned int  unknown   : 1;  /* unknown device - if SenseID failed */
  54.    unsigned int  unfriendly: 1;  /* device is locked by someone else */
  55.            unsigned int  unused    : (sizeof(unsigned int)*8 - 25); /* unused */
  56.               } __attribute__ ((packed)) flags;
  57.         } ui;
  58.      unsigned long u_intparm;     /* user interruption parameter */
  59.      senseid_t     senseid;       /* SenseID info */
  60.      irq_desc_t    irq_desc;      /* irq descriptor */
  61.      not_oper_handler_func_t nopfunc;  /* not oper handler */
  62.      __u8          ulpm;          /* logical path mask used for I/O */
  63.      __u8          opm;           /* path mask of operational paths */
  64.      __u16         devno;         /* device number */
  65.      pgid_t        pgid;          /* path group ID */
  66.      schib_t       schib;         /* subchannel information block */
  67.      orb_t         orb;           /* operation request block */
  68.      devstat_t     devstat;       /* device status */
  69.      ccw1_t       *qcpa;          /* queued channel program */
  70.      ccw1_t        senseccw;      /* ccw for sense command */
  71.      __u8          sense_data[32];/* buffer for basic sense */
  72.      unsigned int  stctl;         /* accumulated status control from irb */
  73.      unsigned long qintparm;      /* queued interruption parameter  */
  74.      unsigned long qflag;         /* queued flags */
  75.      __u8          qlpm;          /* queued logical path mask */
  76.      ssd_info_t    ssd_info;      /* subchannel description */
  77.    } __attribute__ ((aligned(8))) ioinfo_t;
  78. #define IOINFO_FLAGS_BUSY    0x80000000
  79. #define IOINFO_FLAGS_OPER    0x40000000
  80. #define IOINFO_FLAGS_FAST    0x20000000
  81. #define IOINFO_FLAGS_READY   0x10000000
  82. #define IOINFO_FLAGS_HALTIO  0x08000000
  83. #define IOINFO_FLAGS_DOIO    0x04000000
  84. #define IOINFO_FLAGS_DOIO_Q  0x02000000
  85. #define IOINFO_FLAGS_W4FINAL 0x01000000
  86. #define IOINFO_FLAGS_REPALL  0x00800000
  87. extern ioinfo_t *ioinfo[];
  88. int s390_set_private_data(int irq, void * data);
  89. void * s390_get_private_data(int irq);
  90. #define CHSC_SEI_ACC_CHPID        1
  91. #define CHSC_SEI_ACC_LINKADDR     2
  92. #define CHSC_SEI_ACC_FULLLINKADDR 3
  93. #endif  /* __s390io_h */