blob: 1cb9daf9c6450bd2ef9cfe6c82dda7641bf58acc [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef S390_CIO_H
3#define S390_CIO_H
4
Cornelia Huck6ab48792006-07-12 16:39:50 +02005#include <linux/mutex.h>
Peter Oberparleitere5854a52007-04-27 16:01:31 +02006#include <linux/device.h>
Cornelia Huck7e9db9e2008-07-14 09:58:44 +02007#include <linux/mod_devicetable.h>
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +02008#include <asm/chpid.h>
Peter Oberparleiter83262d62008-07-14 09:58:51 +02009#include <asm/cio.h>
10#include <asm/fcx.h>
Cornelia Huck9d92a7e2008-07-14 09:59:05 +020011#include <asm/schid.h>
Sven Schnellec63c4732021-05-10 21:10:15 +020012#include <asm/tpi.h>
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020013#include "chsc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
15/*
16 * path management control word
17 */
18struct pmcw {
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010019 u32 intparm; /* interruption parameter */
20 u32 qf : 1; /* qdio facility */
Cornelia Huckb3a686f2008-07-14 09:58:48 +020021 u32 w : 1;
Cornelia Huckcd6b4f22008-01-26 14:10:43 +010022 u32 isc : 3; /* interruption sublass */
23 u32 res5 : 3; /* reserved zeros */
24 u32 ena : 1; /* enabled */
25 u32 lm : 2; /* limit mode */
26 u32 mme : 2; /* measurement-mode enable */
27 u32 mp : 1; /* multipath mode */
28 u32 tf : 1; /* timing facility */
29 u32 dnv : 1; /* device number valid */
30 u32 dev : 16; /* device number */
31 u8 lpm; /* logical path mask */
32 u8 pnom; /* path not operational mask */
33 u8 lpum; /* last path used mask */
34 u8 pim; /* path installed mask */
35 u16 mbi; /* measurement-block index */
36 u8 pom; /* path operational mask */
37 u8 pam; /* path available mask */
38 u8 chpid[8]; /* CHPID 0-7 (if available) */
39 u32 unused1 : 8; /* reserved zeros */
40 u32 st : 3; /* subchannel type */
41 u32 unused2 : 18; /* reserved zeros */
42 u32 mbfc : 1; /* measurement block format control */
43 u32 xmwme : 1; /* extended measurement word mode enable */
44 u32 csense : 1; /* concurrent sense; can be enabled ...*/
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 /* ... per MSCH, however, if facility */
46 /* ... is not installed, this results */
47 /* ... in an operand exception. */
48} __attribute__ ((packed));
49
Sebastian Ott13952ec2008-12-25 13:39:13 +010050/* Target SCHIB configuration. */
51struct schib_config {
52 u64 mba;
53 u32 intparm;
54 u16 mbi;
55 u32 isc:3;
56 u32 ena:1;
57 u32 mme:2;
58 u32 mp:1;
59 u32 csense:1;
60 u32 mbfc:1;
61} __attribute__ ((packed));
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
64 * subchannel information block
65 */
66struct schib {
67 struct pmcw pmcw; /* path management control word */
Peter Oberparleiter23d805b62008-07-14 09:58:50 +020068 union scsw scsw; /* subchannel status word */
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 __u64 mba; /* measurement block address */
70 __u8 mda[4]; /* model dependent area */
71} __attribute__ ((packed,aligned(4)));
72
Sebastian Ott817e5002011-12-01 13:32:19 +010073/*
74 * When rescheduled, todo's with higher values will overwrite those
75 * with lower values.
76 */
Peter Oberparleiter390935a2009-12-07 12:51:18 +010077enum sch_todo {
78 SCH_TODO_NOTHING,
Sebastian Ott817e5002011-12-01 13:32:19 +010079 SCH_TODO_EVAL,
Peter Oberparleiter390935a2009-12-07 12:51:18 +010080 SCH_TODO_UNREG,
81};
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/* subchannel data structure used by I/O subroutines */
84struct subchannel {
Cornelia Hucka8237fc2006-01-06 00:19:21 -080085 struct subchannel_id schid;
Cornelia Huck2ec22982006-12-08 15:54:26 +010086 spinlock_t *lock; /* subchannel lock */
Cornelia Huck6ab48792006-07-12 16:39:50 +020087 struct mutex reg_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 enum {
89 SUBCHANNEL_TYPE_IO = 0,
90 SUBCHANNEL_TYPE_CHSC = 1,
Cornelia Huckb279a4f2008-01-26 14:10:45 +010091 SUBCHANNEL_TYPE_MSG = 2,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 SUBCHANNEL_TYPE_ADM = 3,
93 } st; /* subchannel type */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 __u8 vpm; /* verified path mask */
95 __u8 lpm; /* logical path mask */
96 __u8 opm; /* operational path mask */
97 struct schib schib; /* subchannel information block */
Cornelia Huckedf22092008-04-30 13:38:39 +020098 int isc; /* desired interruption subclass */
Peter Oberparleiter7ad6a242007-04-27 16:01:35 +020099 struct chsc_ssd_info ssd_info; /* subchannel description */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 struct device dev; /* entry in device tree */
101 struct css_driver *driver;
Peter Oberparleiter390935a2009-12-07 12:51:18 +0100102 enum sch_todo todo;
103 struct work_struct todo_work;
Sebastian Ott13952ec2008-12-25 13:39:13 +0100104 struct schib_config config;
Halil Pasic05668e12019-09-30 17:38:02 +0200105 u64 dma_mask;
Cornelia Huckebc3d172019-06-13 13:08:15 +0200106 char *driver_override; /* Driver name to force a match */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107} __attribute__ ((aligned(8)));
108
Arnd Bergmanne91012e2019-04-08 23:26:20 +0200109DECLARE_PER_CPU_ALIGNED(struct irb, cio_irb);
Martin Schwidefsky63aef002014-05-27 14:40:39 +0200110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define to_subchannel(n) container_of(n, struct subchannel, dev)
112
Cornelia Huckedf22092008-04-30 13:38:39 +0200113extern int cio_enable_subchannel(struct subchannel *, u32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114extern int cio_disable_subchannel (struct subchannel *);
115extern int cio_cancel (struct subchannel *);
116extern int cio_clear (struct subchannel *);
Dong Jia Shi5434da42017-03-17 04:17:28 +0100117extern int cio_cancel_halt_clear(struct subchannel *, int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118extern int cio_resume (struct subchannel *);
119extern int cio_halt (struct subchannel *);
120extern int cio_start (struct subchannel *, struct ccw1 *, __u8);
121extern int cio_start_key (struct subchannel *, struct ccw1 *, __u8, __u8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122extern int cio_set_options (struct subchannel *, int);
Sebastian Ottcdb912a2008-12-25 13:39:12 +0100123extern int cio_update_schib(struct subchannel *sch);
Sebastian Ott13952ec2008-12-25 13:39:13 +0100124extern int cio_commit_config(struct subchannel *sch);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800125
Peter Oberparleiter83262d62008-07-14 09:58:51 +0200126int cio_tm_start_key(struct subchannel *sch, struct tcw *tcw, u8 lpm, u8 key);
127int cio_tm_intrg(struct subchannel *sch);
128
Halil Pasicb50623e2018-09-13 18:57:16 +0200129extern int __init airq_init(void);
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131/* Use with care. */
132#ifdef CONFIG_CCW_CONSOLE
133extern struct subchannel *cio_probe_console(void);
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800134extern int cio_is_console(struct subchannel_id);
Sebastian Ott14556b32013-04-13 13:03:54 +0200135extern void cio_register_early_subchannels(void);
Sebastian Ott188561a2013-04-13 12:53:21 +0200136extern void cio_tsch(struct subchannel *sch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137#else
Cornelia Hucka8237fc2006-01-06 00:19:21 -0800138#define cio_is_console(schid) 0
Sebastian Ott14556b32013-04-13 13:03:54 +0200139static inline void cio_register_early_subchannels(void) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140#endif
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142#endif