cio.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. /* subchannel data structure used by I/O subroutines */
  52. struct subchannel {
  53. struct subchannel_id schid;
  54. spinlock_t *lock; /* subchannel lock */
  55. struct mutex reg_mutex;
  56. enum {
  57. SUBCHANNEL_TYPE_IO = 0,
  58. SUBCHANNEL_TYPE_CHSC = 1,
  59. SUBCHANNEL_TYPE_MSG = 2,
  60. SUBCHANNEL_TYPE_ADM = 3,
  61. } st; /* subchannel type */
  62. struct {
  63. unsigned int suspend:1; /* allow suspend */
  64. unsigned int prefetch:1;/* deny prefetch */
  65. unsigned int inter:1; /* suppress intermediate interrupts */
  66. } __attribute__ ((packed)) options;
  67. __u8 vpm; /* verified path mask */
  68. __u8 lpm; /* logical path mask */
  69. __u8 opm; /* operational path mask */
  70. struct schib schib; /* subchannel information block */
  71. struct chsc_ssd_info ssd_info; /* subchannel description */
  72. struct device dev; /* entry in device tree */
  73. struct css_driver *driver;
  74. void *private; /* private per subchannel type data */
  75. } __attribute__ ((aligned(8)));
  76. #define IO_INTERRUPT_TYPE 0 /* I/O interrupt type */
  77. #define to_subchannel(n) container_of(n, struct subchannel, dev)
  78. extern int cio_validate_subchannel (struct subchannel *, struct subchannel_id);
  79. extern int cio_enable_subchannel(struct subchannel *, unsigned int, u32);
  80. extern int cio_disable_subchannel (struct subchannel *);
  81. extern int cio_cancel (struct subchannel *);
  82. extern int cio_clear (struct subchannel *);
  83. extern int cio_resume (struct subchannel *);
  84. extern int cio_halt (struct subchannel *);
  85. extern int cio_start (struct subchannel *, struct ccw1 *, __u8);
  86. extern int cio_start_key (struct subchannel *, struct ccw1 *, __u8, __u8);
  87. extern int cio_cancel (struct subchannel *);
  88. extern int cio_set_options (struct subchannel *, int);
  89. extern int cio_get_options (struct subchannel *);
  90. extern int cio_modify (struct subchannel *);
  91. int cio_create_sch_lock(struct subchannel *);
  92. void do_adapter_IO(void);
  93. void do_IRQ(struct pt_regs *);
  94. /* Use with care. */
  95. #ifdef CONFIG_CCW_CONSOLE
  96. extern struct subchannel *cio_probe_console(void);
  97. extern void cio_release_console(void);
  98. extern int cio_is_console(struct subchannel_id);
  99. extern struct subchannel *cio_get_console_subchannel(void);
  100. extern spinlock_t * cio_get_console_lock(void);
  101. extern void *cio_get_console_priv(void);
  102. #else
  103. #define cio_is_console(schid) 0
  104. #define cio_get_console_subchannel() NULL
  105. #define cio_get_console_lock() NULL
  106. #define cio_get_console_priv() NULL
  107. #endif
  108. extern int cio_show_msg;
  109. #endif