cio.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. #ifndef S390_CIO_H
  2. #define S390_CIO_H
  3. #include <linux/mutex.h>
  4. #include <linux/device.h>
  5. #include <linux/mod_devicetable.h>
  6. #include <asm/chpid.h>
  7. #include <asm/cio.h>
  8. #include <asm/fcx.h>
  9. #include <asm/schid.h>
  10. #include "chsc.h"
  11. /*
  12. * path management control word
  13. */
  14. struct pmcw {
  15. u32 intparm; /* interruption parameter */
  16. u32 qf : 1; /* qdio facility */
  17. u32 w : 1;
  18. u32 isc : 3; /* interruption sublass */
  19. u32 res5 : 3; /* reserved zeros */
  20. u32 ena : 1; /* enabled */
  21. u32 lm : 2; /* limit mode */
  22. u32 mme : 2; /* measurement-mode enable */
  23. u32 mp : 1; /* multipath mode */
  24. u32 tf : 1; /* timing facility */
  25. u32 dnv : 1; /* device number valid */
  26. u32 dev : 16; /* device number */
  27. u8 lpm; /* logical path mask */
  28. u8 pnom; /* path not operational mask */
  29. u8 lpum; /* last path used mask */
  30. u8 pim; /* path installed mask */
  31. u16 mbi; /* measurement-block index */
  32. u8 pom; /* path operational mask */
  33. u8 pam; /* path available mask */
  34. u8 chpid[8]; /* CHPID 0-7 (if available) */
  35. u32 unused1 : 8; /* reserved zeros */
  36. u32 st : 3; /* subchannel type */
  37. u32 unused2 : 18; /* reserved zeros */
  38. u32 mbfc : 1; /* measurement block format control */
  39. u32 xmwme : 1; /* extended measurement word mode enable */
  40. u32 csense : 1; /* concurrent sense; can be enabled ...*/
  41. /* ... per MSCH, however, if facility */
  42. /* ... is not installed, this results */
  43. /* ... in an operand exception. */
  44. } __attribute__ ((packed));
  45. /* I/O-Interruption Code as stored by TEST PENDING INTERRUPTION (TPI). */
  46. struct tpi_info {
  47. struct subchannel_id schid;
  48. u32 intparm;
  49. u32 adapter_IO:1;
  50. u32 :1;
  51. u32 isc:3;
  52. u32 :27;
  53. u32 type:3;
  54. u32 :12;
  55. } __packed __aligned(4);
  56. /* Target SCHIB configuration. */
  57. struct schib_config {
  58. u64 mba;
  59. u32 intparm;
  60. u16 mbi;
  61. u32 isc:3;
  62. u32 ena:1;
  63. u32 mme:2;
  64. u32 mp:1;
  65. u32 csense:1;
  66. u32 mbfc:1;
  67. } __attribute__ ((packed));
  68. /*
  69. * subchannel information block
  70. */
  71. struct schib {
  72. struct pmcw pmcw; /* path management control word */
  73. union scsw scsw; /* subchannel status word */
  74. __u64 mba; /* measurement block address */
  75. __u8 mda[4]; /* model dependent area */
  76. } __attribute__ ((packed,aligned(4)));
  77. /*
  78. * When rescheduled, todo's with higher values will overwrite those
  79. * with lower values.
  80. */
  81. enum sch_todo {
  82. SCH_TODO_NOTHING,
  83. SCH_TODO_EVAL,
  84. SCH_TODO_UNREG,
  85. };
  86. /* subchannel data structure used by I/O subroutines */
  87. struct subchannel {
  88. struct subchannel_id schid;
  89. spinlock_t *lock; /* subchannel lock */
  90. struct mutex reg_mutex;
  91. enum {
  92. SUBCHANNEL_TYPE_IO = 0,
  93. SUBCHANNEL_TYPE_CHSC = 1,
  94. SUBCHANNEL_TYPE_MSG = 2,
  95. SUBCHANNEL_TYPE_ADM = 3,
  96. } st; /* subchannel type */
  97. __u8 vpm; /* verified path mask */
  98. __u8 lpm; /* logical path mask */
  99. __u8 opm; /* operational path mask */
  100. struct schib schib; /* subchannel information block */
  101. int isc; /* desired interruption subclass */
  102. struct chsc_ssd_info ssd_info; /* subchannel description */
  103. struct device dev; /* entry in device tree */
  104. struct css_driver *driver;
  105. enum sch_todo todo;
  106. struct work_struct todo_work;
  107. struct schib_config config;
  108. } __attribute__ ((aligned(8)));
  109. DECLARE_PER_CPU(struct irb, cio_irb);
  110. #define to_subchannel(n) container_of(n, struct subchannel, dev)
  111. extern int cio_validate_subchannel (struct subchannel *, struct subchannel_id);
  112. extern int cio_enable_subchannel(struct subchannel *, u32);
  113. extern int cio_disable_subchannel (struct subchannel *);
  114. extern int cio_cancel (struct subchannel *);
  115. extern int cio_clear (struct subchannel *);
  116. extern int cio_resume (struct subchannel *);
  117. extern int cio_halt (struct subchannel *);
  118. extern int cio_start (struct subchannel *, struct ccw1 *, __u8);
  119. extern int cio_start_key (struct subchannel *, struct ccw1 *, __u8, __u8);
  120. extern int cio_set_options (struct subchannel *, int);
  121. extern int cio_update_schib(struct subchannel *sch);
  122. extern int cio_commit_config(struct subchannel *sch);
  123. int cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key);
  124. int cio_tm_intrg(struct subchannel *sch);
  125. /* Use with care. */
  126. #ifdef CONFIG_CCW_CONSOLE
  127. extern struct subchannel *cio_probe_console(void);
  128. extern int cio_is_console(struct subchannel_id);
  129. extern void cio_register_early_subchannels(void);
  130. extern void cio_tsch(struct subchannel *sch);
  131. #else
  132. #define cio_is_console(schid) 0
  133. static inline void cio_register_early_subchannels(void) {}
  134. #endif
  135. #endif