blob: 4062748e83463e970250ada7cb83497d88d89ee0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef S390_CIO_H
2#define S390_CIO_H
3
Cornelia Huck6ab48792006-07-12 16:39:50 +02004#include <linux/mutex.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +02005#include <linux/device.h>
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02006#include <linux/mod_devicetable.h>
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +02007#include <asm/chpid.h>
8#include "chsc.h"
9#include "schid.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11/*
12 * path management control word
13 */
14struct pmcw {
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010015 u32 intparm; /* interruption parameter */
16 u32 qf : 1; /* qdio facility */
17 u32 res0 : 1; /* reserved zeros */
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 ...*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 /* ... per MSCH, however, if facility */
42 /* ... is not installed, this results */
43 /* ... in an operand exception. */
44} __attribute__ ((packed));
45
46/*
47 * subchannel information block
48 */
49struct schib {
50 struct pmcw pmcw; /* path management control word */
51 struct scsw scsw; /* subchannel status word */
52 __u64 mba; /* measurement block address */
53 __u8 mda[4]; /* model dependent area */
54} __attribute__ ((packed,aligned(4)));
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/* subchannel data structure used by I/O subroutines */
57struct subchannel {
Cornelia Hucka8237fc2006-01-06 00:19:21 -080058 struct subchannel_id schid;
Cornelia Huck2ec22982006-12-08 15:54:26 +010059 spinlock_t *lock; /* subchannel lock */
Cornelia Huck6ab48792006-07-12 16:39:50 +020060 struct mutex reg_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 enum {
62 SUBCHANNEL_TYPE_IO = 0,
63 SUBCHANNEL_TYPE_CHSC = 1,
Cornelia Huckb279a4f2008-01-26 14:10:45 +010064 SUBCHANNEL_TYPE_MSG = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 SUBCHANNEL_TYPE_ADM = 3,
66 } st; /* subchannel type */
67
68 struct {
69 unsigned int suspend:1; /* allow suspend */
70 unsigned int prefetch:1;/* deny prefetch */
71 unsigned int inter:1; /* suppress intermediate interrupts */
72 } __attribute__ ((packed)) options;
73
74 __u8 vpm; /* verified path mask */
75 __u8 lpm; /* logical path mask */
76 __u8 opm; /* operational path mask */
77 struct schib schib; /* subchannel information block */
Cornelia Huckedf22092008-04-30 13:38:39 +020078 int isc; /* desired interruption subclass */
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020079 struct chsc_ssd_info ssd_info; /* subchannel description */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 struct device dev; /* entry in device tree */
81 struct css_driver *driver;
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010082 void *private; /* private per subchannel type data */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083} __attribute__ ((aligned(8)));
84
85#define IO_INTERRUPT_TYPE 0 /* I/O interrupt type */
86
87#define to_subchannel(n) container_of(n, struct subchannel, dev)
88
Cornelia Hucka8237fc2006-01-06 00:19:21 -080089extern int cio_validate_subchannel (struct subchannel *, struct subchannel_id);
Cornelia Huckedf22092008-04-30 13:38:39 +020090extern int cio_enable_subchannel(struct subchannel *, u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091extern int cio_disable_subchannel (struct subchannel *);
92extern int cio_cancel (struct subchannel *);
93extern int cio_clear (struct subchannel *);
94extern int cio_resume (struct subchannel *);
95extern int cio_halt (struct subchannel *);
96extern int cio_start (struct subchannel *, struct ccw1 *, __u8);
97extern int cio_start_key (struct subchannel *, struct ccw1 *, __u8, __u8);
98extern int cio_cancel (struct subchannel *);
99extern int cio_set_options (struct subchannel *, int);
100extern int cio_get_options (struct subchannel *);
101extern int cio_modify (struct subchannel *);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800102
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100103int cio_create_sch_lock(struct subchannel *);
Peter Oberparleiter4e8e56c2008-01-26 14:10:44 +0100104void do_adapter_IO(void);
Heiko Carstensa8061702008-04-17 07:46:26 +0200105void do_IRQ(struct pt_regs *);
Cornelia Huckd7b5a4c92006-12-08 15:54:28 +0100106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/* Use with care. */
108#ifdef CONFIG_CCW_CONSOLE
109extern struct subchannel *cio_probe_console(void);
110extern void cio_release_console(void);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800111extern int cio_is_console(struct subchannel_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112extern struct subchannel *cio_get_console_subchannel(void);
Cornelia Huck2ec22982006-12-08 15:54:26 +0100113extern spinlock_t * cio_get_console_lock(void);
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100114extern void *cio_get_console_priv(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#else
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800116#define cio_is_console(schid) 0
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define cio_get_console_subchannel() NULL
Cornelia Huckcd6b4f22008-01-26 14:10:43 +0100118#define cio_get_console_lock() NULL
119#define cio_get_console_priv() NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#endif
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#endif