]> git.proxmox.com Git - mirror_qemu.git/blame - include/hw/s390x/css.h
s390x/flic: introduce inject_airq callback
[mirror_qemu.git] / include / hw / s390x / css.h
CommitLineData
df1fe5bb
CH
1/*
2 * Channel subsystem structures and definitions.
3 *
4 * Copyright 2012 IBM Corp.
5 * Author(s): Cornelia Huck <cornelia.huck@de.ibm.com>
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or (at
8 * your option) any later version. See the COPYING file in the top-level
9 * directory.
10 */
11
12#ifndef CSS_H
13#define CSS_H
14
a28d8391
YMZ
15#include "hw/s390x/adapter.h"
16#include "hw/s390x/s390_flic.h"
bd3f16ac 17#include "hw/s390x/ioinst.h"
df1fe5bb
CH
18
19/* Channel subsystem constants. */
cf249935 20#define MAX_DEVNO 65535
df1fe5bb
CH
21#define MAX_SCHID 65535
22#define MAX_SSID 3
882b3b97 23#define MAX_CSSID 255
df1fe5bb
CH
24#define MAX_CHPID 255
25
dde522bb
FL
26#define MAX_ISC 7
27
df1fe5bb
CH
28#define MAX_CIWS 62
29
cf249935 30#define VIRTUAL_CSSID 0xfe
6c15e9bf 31#define VIRTIO_CCW_CHPID 0 /* used by convention */
cf249935 32
df1fe5bb
CH
33typedef struct CIW {
34 uint8_t type;
35 uint8_t command;
36 uint16_t count;
37} QEMU_PACKED CIW;
38
39typedef struct SenseId {
40 /* common part */
41 uint8_t reserved; /* always 0x'FF' */
42 uint16_t cu_type; /* control unit type */
43 uint8_t cu_model; /* control unit model */
44 uint16_t dev_type; /* device type */
45 uint8_t dev_model; /* device model */
46 uint8_t unused; /* padding byte */
47 /* extended part */
48 CIW ciw[MAX_CIWS]; /* variable # of CIWs */
49} QEMU_PACKED SenseId;
50
51/* Channel measurements, from linux/drivers/s390/cio/cmf.c. */
52typedef struct CMB {
53 uint16_t ssch_rsch_count;
54 uint16_t sample_count;
55 uint32_t device_connect_time;
56 uint32_t function_pending_time;
57 uint32_t device_disconnect_time;
58 uint32_t control_unit_queuing_time;
59 uint32_t device_active_only_time;
60 uint32_t reserved[2];
61} QEMU_PACKED CMB;
62
63typedef struct CMBE {
64 uint32_t ssch_rsch_count;
65 uint32_t sample_count;
66 uint32_t device_connect_time;
67 uint32_t function_pending_time;
68 uint32_t device_disconnect_time;
69 uint32_t control_unit_queuing_time;
70 uint32_t device_active_only_time;
71 uint32_t device_busy_time;
72 uint32_t initial_command_response_time;
73 uint32_t reserved[7];
74} QEMU_PACKED CMBE;
75
bd3f16ac 76typedef struct SubchDev SubchDev;
df1fe5bb
CH
77struct SubchDev {
78 /* channel-subsystem related things: */
79 uint8_t cssid;
80 uint8_t ssid;
81 uint16_t schid;
82 uint16_t devno;
83 SCHIB curr_status;
84 uint8_t sense_data[32];
85 hwaddr channel_prog;
86 CCW1 last_cmd;
87 bool last_cmd_valid;
a327c921 88 bool ccw_fmt_1;
7e749462 89 bool thinint_active;
e8601dd5 90 uint8_t ccw_no_data_cnt;
517ff12c 91 uint16_t migrated_schid; /* used for missmatch detection */
df1fe5bb
CH
92 /* transport-provided data: */
93 int (*ccw_cb) (SubchDev *, CCW1);
62ac4a52 94 void (*disable_cb)(SubchDev *);
bab482d7 95 int (*do_subchannel_work) (SubchDev *, ORB *);
df1fe5bb
CH
96 SenseId id;
97 void *driver_data;
98};
99
517ff12c
HP
100extern const VMStateDescription vmstate_subch_dev;
101
8f3cf012
XFR
102/*
103 * Identify a device within the channel subsystem.
104 * Note that this can be used to identify either the subchannel or
105 * the attached I/O device, as there's always one I/O device per
106 * subchannel.
107 */
108typedef struct CssDevId {
109 uint8_t cssid;
110 uint8_t ssid;
111 uint16_t devid;
112 bool valid;
113} CssDevId;
114
115extern PropertyInfo css_devid_propinfo;
116
117#define DEFINE_PROP_CSS_DEV_ID(_n, _s, _f) \
118 DEFINE_PROP(_n, _s, _f, css_devid_propinfo, CssDevId)
119
a28d8391
YMZ
120typedef struct IndAddr {
121 hwaddr addr;
122 uint64_t map;
123 unsigned long refcnt;
517ff12c 124 int32_t len;
a28d8391
YMZ
125 QTAILQ_ENTRY(IndAddr) sibling;
126} IndAddr;
127
517ff12c
HP
128extern const VMStateDescription vmstate_ind_addr;
129
130#define VMSTATE_PTR_TO_IND_ADDR(_f, _s) \
131 VMSTATE_STRUCT(_f, _s, 1, vmstate_ind_addr, IndAddr*)
132
a28d8391
YMZ
133IndAddr *get_indicator(hwaddr ind_addr, int len);
134void release_indicator(AdapterInfo *adapter, IndAddr *indicator);
135int map_indicator(AdapterInfo *adapter, IndAddr *indicator);
136
df1fe5bb
CH
137typedef SubchDev *(*css_subch_cb_func)(uint8_t m, uint8_t cssid, uint8_t ssid,
138 uint16_t schid);
139int css_create_css_image(uint8_t cssid, bool default_image);
140bool css_devno_used(uint8_t cssid, uint8_t ssid, uint16_t devno);
141void css_subch_assign(uint8_t cssid, uint8_t ssid, uint16_t schid,
142 uint16_t devno, SubchDev *sch);
143void css_sch_build_virtual_schib(SubchDev *sch, uint8_t chpid, uint8_t type);
8f3cf012 144int css_sch_build_schib(SubchDev *sch, CssDevId *dev_id);
6c15e9bf 145unsigned int css_find_free_chpid(uint8_t cssid);
b4436a0b 146uint16_t css_build_subchannel_id(SubchDev *sch);
8ca2b376
XFR
147void copy_scsw_to_guest(SCSW *dest, const SCSW *src);
148void css_inject_io_interrupt(SubchDev *sch);
df1fe5bb
CH
149void css_reset(void);
150void css_reset_sch(SubchDev *sch);
151void css_queue_crw(uint8_t rsc, uint8_t erc, int chain, uint16_t rsid);
152void css_generate_sch_crws(uint8_t cssid, uint8_t ssid, uint16_t schid,
153 int hotplugged, int add);
154void css_generate_chp_crws(uint8_t cssid, uint8_t chpid);
8cba80c3 155void css_generate_css_crws(uint8_t cssid);
c81b4f89 156void css_clear_sei_pending(void);
7e749462 157void css_adapter_interrupt(uint8_t isc);
bab482d7
XFR
158int s390_ccw_cmd_request(ORB *orb, SCSW *scsw, void *data);
159int do_subchannel_work_virtual(SubchDev *sub, ORB *orb);
160int do_subchannel_work_passthrough(SubchDev *sub, ORB *orb);
03cf077a 161
5b00bef2
FL
162typedef enum {
163 CSS_IO_ADAPTER_VIRTIO = 0,
164 CSS_IO_ADAPTER_PCI = 1,
165 CSS_IO_ADAPTER_TYPE_NUMS,
166} CssIoAdapterType;
167
dde522bb
FL
168uint32_t css_get_adapter_id(CssIoAdapterType type, uint8_t isc);
169void css_register_io_adapters(CssIoAdapterType type, bool swap, bool maskable,
1497c160
FL
170 uint8_t flags, Error **errp);
171
172#ifndef CONFIG_KVM
173#define S390_ADAPTER_SUPPRESSIBLE 0x01
174#else
175#define S390_ADAPTER_SUPPRESSIBLE KVM_S390_ADAPTER_SUPPRESSIBLE
176#endif
bd3f16ac
PB
177
178#ifndef CONFIG_USER_ONLY
179SubchDev *css_find_subch(uint8_t m, uint8_t cssid, uint8_t ssid,
180 uint16_t schid);
181bool css_subch_visible(SubchDev *sch);
182void css_conditional_io_interrupt(SubchDev *sch);
183int css_do_stsch(SubchDev *sch, SCHIB *schib);
184bool css_schid_final(int m, uint8_t cssid, uint8_t ssid, uint16_t schid);
185int css_do_msch(SubchDev *sch, const SCHIB *schib);
186int css_do_xsch(SubchDev *sch);
187int css_do_csch(SubchDev *sch);
188int css_do_hsch(SubchDev *sch);
189int css_do_ssch(SubchDev *sch, ORB *orb);
190int css_do_tsch_get_irb(SubchDev *sch, IRB *irb, int *irb_len);
191void css_do_tsch_update_subch(SubchDev *sch);
192int css_do_stcrw(CRW *crw);
193void css_undo_stcrw(CRW *crw);
194int css_do_tpi(IOIntCode *int_code, int lowcore);
195int css_collect_chp_desc(int m, uint8_t cssid, uint8_t f_chpid, uint8_t l_chpid,
196 int rfmt, void *buf);
197void css_do_schm(uint8_t mbk, int update, int dct, uint64_t mbo);
198int css_enable_mcsse(void);
199int css_enable_mss(void);
200int css_do_rsch(SubchDev *sch);
201int css_do_rchp(uint8_t cssid, uint8_t chpid);
202bool css_present(uint8_t cssid);
203#endif
204
c35fc6aa
DJS
205extern PropertyInfo css_devid_ro_propinfo;
206
207#define DEFINE_PROP_CSS_DEV_ID_RO(_n, _s, _f) \
208 DEFINE_PROP(_n, _s, _f, css_devid_ro_propinfo, CssDevId)
209
cf249935
SS
210/**
211 * Create a subchannel for the given bus id.
212 *
817d4a6b
DJS
213 * If @p bus_id is valid, and @p squash_mcss is true, verify that it is
214 * not already in use in the default css, and find a free devno from the
215 * default css image for it.
216 * If @p bus_id is valid, and @p squash_mcss is false, verify that it is
217 * not already in use, and find a free devno for it.
218 * If @p bus_id is not valid, and if either @p squash_mcss or @p is_virtual
219 * is true, find a free subchannel id and device number across all
220 * subchannel sets from the default css image.
221 * If @p bus_id is not valid, and if both @p squash_mcss and @p is_virtual
222 * are false, find a non-full css image and find a free subchannel id and
223 * device number across all subchannel sets from it.
224 *
225 * If either of the former actions succeed, allocate a subchannel structure,
226 * initialise it with the bus id, subchannel id and device number, register
227 * it with the CSS and return it. Otherwise return NULL.
cf249935
SS
228 *
229 * The caller becomes owner of the returned subchannel structure and
230 * is responsible for unregistering and freeing it.
231 */
817d4a6b
DJS
232SubchDev *css_create_sch(CssDevId bus_id, bool is_virtual, bool squash_mcss,
233 Error **errp);
df1fe5bb 234#endif