cio.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. #ifndef S390_CIO_H
  2. #define S390_CIO_H
  3. #include <linux/mutex.h>
  4. #include <linux/device.h>
  5. #include <asm/chpid.h>
  6. #include "chsc.h"
  7. #include "schid.h"
  8. /*
  9. * path management control word
  10. */
  11. struct pmcw {
  12. __u32 intparm; /* interruption parameter */
  13. __u32 qf : 1; /* qdio facility */
  14. __u32 res0 : 1; /* reserved zeros */
  15. __u32 isc : 3; /* interruption sublass */
  16. __u32 res5 : 3; /* reserved zeros */
  17. __u32 ena : 1; /* enabled */
  18. __u32 lm : 2; /* limit mode */
  19. __u32 mme : 2; /* measurement-mode enable */
  20. __u32 mp : 1; /* multipath mode */
  21. __u32 tf : 1; /* timing facility */
  22. __u32 dnv : 1; /* device number valid */
  23. __u32 dev : 16; /* device number */
  24. __u8 lpm; /* logical path mask */
  25. __u8 pnom; /* path not operational mask */
  26. __u8 lpum; /* last path used mask */
  27. __u8 pim; /* path installed mask */
  28. __u16 mbi; /* measurement-block index */
  29. __u8 pom; /* path operational mask */
  30. __u8 pam; /* path available mask */
  31. __u8 chpid[8]; /* CHPID 0-7 (if available) */
  32. __u32 unused1 : 8; /* reserved zeros */
  33. __u32 st : 3; /* subchannel type */
  34. __u32 unused2 : 18; /* reserved zeros */
  35. __u32 mbfc : 1; /* measurement block format control */
  36. __u32 xmwme : 1; /* extended measurement word mode enable */
  37. __u32 csense : 1; /* concurrent sense; can be enabled ...*/
  38. /* ... per MSCH, however, if facility */
  39. /* ... is not installed, this results */
  40. /* ... in an operand exception. */
  41. } __attribute__ ((packed));
  42. /*
  43. * subchannel information block
  44. */
  45. struct schib {
  46. struct pmcw pmcw; /* path management control word */
  47. struct scsw scsw; /* subchannel status word */
  48. __u64 mba; /* measurement block address */
  49. __u8 mda[4]; /* model dependent area */
  50. } __attribute__ ((packed,aligned(4)));
  51. /*
  52. * operation request block
  53. */
  54. struct orb {
  55. __u32 intparm; /* interruption parameter */
  56. __u32 key : 4; /* flags, like key, suspend control, etc. */
  57. __u32 spnd : 1; /* suspend control */
  58. __u32 res1 : 1; /* reserved */
  59. __u32 mod : 1; /* modification control */
  60. __u32 sync : 1; /* synchronize control */
  61. __u32 fmt : 1; /* format control */
  62. __u32 pfch : 1; /* prefetch control */
  63. __u32 isic : 1; /* initial-status-interruption control */
  64. __u32 alcc : 1; /* address-limit-checking control */
  65. __u32 ssic : 1; /* suppress-suspended-interr. control */
  66. __u32 res2 : 1; /* reserved */
  67. __u32 c64 : 1; /* IDAW/QDIO 64 bit control */
  68. __u32 i2k : 1; /* IDAW 2/4kB block size control */
  69. __u32 lpm : 8; /* logical path mask */
  70. __u32 ils : 1; /* incorrect length */
  71. __u32 zero : 6; /* reserved zeros */
  72. __u32 orbx : 1; /* ORB extension control */
  73. __u32 cpa; /* channel program address */
  74. } __attribute__ ((packed,aligned(4)));
  75. /* subchannel data structure used by I/O subroutines */
  76. struct subchannel {
  77. struct subchannel_id schid;
  78. spinlock_t *lock; /* subchannel lock */
  79. struct mutex reg_mutex;
  80. enum {
  81. SUBCHANNEL_TYPE_IO = 0,
  82. SUBCHANNEL_TYPE_CHSC = 1,
  83. SUBCHANNEL_TYPE_MESSAGE = 2,
  84. SUBCHANNEL_TYPE_ADM = 3,
  85. } st; /* subchannel type */
  86. struct {
  87. unsigned int suspend:1; /* allow suspend */
  88. unsigned int prefetch:1;/* deny prefetch */
  89. unsigned int inter:1; /* suppress intermediate interrupts */
  90. } __attribute__ ((packed)) options;
  91. __u8 vpm; /* verified path mask */
  92. __u8 lpm; /* logical path mask */
  93. __u8 opm; /* operational path mask */
  94. struct schib schib; /* subchannel information block */
  95. struct orb orb; /* operation request block */
  96. struct ccw1 sense_ccw; /* static ccw for sense command */
  97. struct chsc_ssd_info ssd_info; /* subchannel description */
  98. struct device dev; /* entry in device tree */
  99. struct css_driver *driver;
  100. } __attribute__ ((aligned(8)));
  101. #define IO_INTERRUPT_TYPE 0 /* I/O interrupt type */
  102. #define to_subchannel(n) container_of(n, struct subchannel, dev)
  103. extern int cio_validate_subchannel (struct subchannel *, struct subchannel_id);
  104. extern int cio_enable_subchannel (struct subchannel *, unsigned int);
  105. extern int cio_disable_subchannel (struct subchannel *);
  106. extern int cio_cancel (struct subchannel *);
  107. extern int cio_clear (struct subchannel *);
  108. extern int cio_resume (struct subchannel *);
  109. extern int cio_halt (struct subchannel *);
  110. extern int cio_start (struct subchannel *, struct ccw1 *, __u8);
  111. extern int cio_start_key (struct subchannel *, struct ccw1 *, __u8, __u8);
  112. extern int cio_cancel (struct subchannel *);
  113. extern int cio_set_options (struct subchannel *, int);
  114. extern int cio_get_options (struct subchannel *);
  115. extern int cio_modify (struct subchannel *);
  116. int cio_create_sch_lock(struct subchannel *);
  117. /* Use with care. */
  118. #ifdef CONFIG_CCW_CONSOLE
  119. extern struct subchannel *cio_probe_console(void);
  120. extern void cio_release_console(void);
  121. extern int cio_is_console(struct subchannel_id);
  122. extern struct subchannel *cio_get_console_subchannel(void);
  123. extern spinlock_t * cio_get_console_lock(void);
  124. #else
  125. #define cio_is_console(schid) 0
  126. #define cio_get_console_subchannel() NULL
  127. #define cio_get_console_lock() NULL;
  128. #endif
  129. extern int cio_show_msg;
  130. #endif