4 * handles SCLP event types
5 * - Signal Quiesce - system power down
6 * - ASCII Console Data - VT220 read and write
8 * Copyright IBM, Corp. 2012
11 * Heinz Graalfs <graalfs@de.ibm.com>
13 * This work is licensed under the terms of the GNU GPL, version 2 or (at your
14 * option) any later version. See the COPYING file in the top-level directory.
18 #include "monitor/monitor.h"
19 #include "sysemu/sysemu.h"
22 #include "event-facility.h"
24 typedef struct EventTypesBus
{
28 struct SCLPEventFacility
{
31 /* guest' receive mask */
32 unsigned int receive_mask
;
35 /* return true if any child has event pending set */
36 static bool event_pending(SCLPEventFacility
*ef
)
40 SCLPEventClass
*event_class
;
42 QTAILQ_FOREACH(kid
, &ef
->sbus
.qbus
.children
, sibling
) {
43 DeviceState
*qdev
= kid
->child
;
44 event
= DO_UPCAST(SCLPEvent
, qdev
, qdev
);
45 event_class
= SCLP_EVENT_GET_CLASS(event
);
46 if (event
->event_pending
&&
47 event_class
->get_send_mask() & ef
->receive_mask
) {
54 static unsigned int get_host_send_mask(SCLPEventFacility
*ef
)
58 SCLPEventClass
*child
;
62 QTAILQ_FOREACH(kid
, &ef
->sbus
.qbus
.children
, sibling
) {
63 DeviceState
*qdev
= kid
->child
;
64 child
= SCLP_EVENT_GET_CLASS((SCLPEvent
*) qdev
);
65 mask
|= child
->get_send_mask();
70 static unsigned int get_host_receive_mask(SCLPEventFacility
*ef
)
74 SCLPEventClass
*child
;
78 QTAILQ_FOREACH(kid
, &ef
->sbus
.qbus
.children
, sibling
) {
79 DeviceState
*qdev
= kid
->child
;
80 child
= SCLP_EVENT_GET_CLASS((SCLPEvent
*) qdev
);
81 mask
|= child
->get_receive_mask();
86 static uint16_t write_event_length_check(SCCB
*sccb
)
90 EventBufferHeader
*event
;
91 WriteEventData
*wed
= (WriteEventData
*) sccb
;
93 event
= (EventBufferHeader
*) &wed
->ebh
;
94 for (slen
= sccb_data_len(sccb
); slen
> 0; slen
-= elen
) {
95 elen
= be16_to_cpu(event
->length
);
96 if (elen
< sizeof(*event
) || elen
> slen
) {
97 return SCLP_RC_EVENT_BUFFER_SYNTAX_ERROR
;
99 event
= (void *) event
+ elen
;
102 return SCLP_RC_INCONSISTENT_LENGTHS
;
104 return SCLP_RC_NORMAL_COMPLETION
;
107 static uint16_t handle_write_event_buf(SCLPEventFacility
*ef
,
108 EventBufferHeader
*event_buf
, SCCB
*sccb
)
115 rc
= SCLP_RC_INVALID_FUNCTION
;
117 QTAILQ_FOREACH(kid
, &ef
->sbus
.qbus
.children
, sibling
) {
118 DeviceState
*qdev
= kid
->child
;
119 event
= (SCLPEvent
*) qdev
;
120 ec
= SCLP_EVENT_GET_CLASS(event
);
122 if (ec
->write_event_data
&&
123 ec
->event_type() == event_buf
->type
) {
124 rc
= ec
->write_event_data(event
, event_buf
);
131 static uint16_t handle_sccb_write_events(SCLPEventFacility
*ef
, SCCB
*sccb
)
136 EventBufferHeader
*event_buf
;
137 WriteEventData
*wed
= (WriteEventData
*) sccb
;
139 event_buf
= &wed
->ebh
;
140 rc
= SCLP_RC_NORMAL_COMPLETION
;
142 /* loop over all contained event buffers */
143 for (slen
= sccb_data_len(sccb
); slen
> 0; slen
-= elen
) {
144 elen
= be16_to_cpu(event_buf
->length
);
146 /* in case of a previous error mark all trailing buffers
148 if (rc
!= SCLP_RC_NORMAL_COMPLETION
) {
149 event_buf
->flags
&= ~(SCLP_EVENT_BUFFER_ACCEPTED
);
151 rc
= handle_write_event_buf(ef
, event_buf
, sccb
);
153 event_buf
= (void *) event_buf
+ elen
;
158 static void write_event_data(SCLPEventFacility
*ef
, SCCB
*sccb
)
160 if (sccb
->h
.function_code
!= SCLP_FC_NORMAL_WRITE
) {
161 sccb
->h
.response_code
= cpu_to_be16(SCLP_RC_INVALID_FUNCTION
);
164 if (be16_to_cpu(sccb
->h
.length
) < 8) {
165 sccb
->h
.response_code
= cpu_to_be16(SCLP_RC_INSUFFICIENT_SCCB_LENGTH
);
168 /* first do a sanity check of the write events */
169 sccb
->h
.response_code
= cpu_to_be16(write_event_length_check(sccb
));
171 /* if no early error, then execute */
172 if (sccb
->h
.response_code
== be16_to_cpu(SCLP_RC_NORMAL_COMPLETION
)) {
173 sccb
->h
.response_code
=
174 cpu_to_be16(handle_sccb_write_events(ef
, sccb
));
181 static uint16_t handle_sccb_read_events(SCLPEventFacility
*ef
, SCCB
*sccb
,
190 EventBufferHeader
*event_buf
;
191 ReadEventData
*red
= (ReadEventData
*) sccb
;
193 event_buf
= &red
->ebh
;
194 event_buf
->length
= 0;
195 slen
= sizeof(sccb
->data
);
197 rc
= SCLP_RC_NO_EVENT_BUFFERS_STORED
;
199 QTAILQ_FOREACH(kid
, &ef
->sbus
.qbus
.children
, sibling
) {
200 DeviceState
*qdev
= kid
->child
;
201 event
= (SCLPEvent
*) qdev
;
202 ec
= SCLP_EVENT_GET_CLASS(event
);
204 if (mask
& ec
->get_send_mask()) {
205 if (ec
->read_event_data(event
, event_buf
, &slen
)) {
206 rc
= SCLP_RC_NORMAL_COMPLETION
;
209 elen
= be16_to_cpu(event_buf
->length
);
210 event_buf
= (void *) event_buf
+ elen
;
213 if (sccb
->h
.control_mask
[2] & SCLP_VARIABLE_LENGTH_RESPONSE
) {
214 /* architecture suggests to reset variable-length-response bit */
215 sccb
->h
.control_mask
[2] &= ~SCLP_VARIABLE_LENGTH_RESPONSE
;
216 /* with a new length value */
217 sccb
->h
.length
= cpu_to_be16(SCCB_SIZE
- slen
);
222 static void read_event_data(SCLPEventFacility
*ef
, SCCB
*sccb
)
224 unsigned int sclp_active_selection_mask
;
225 unsigned int sclp_cp_receive_mask
;
227 ReadEventData
*red
= (ReadEventData
*) sccb
;
229 if (be16_to_cpu(sccb
->h
.length
) != SCCB_SIZE
) {
230 sccb
->h
.response_code
= cpu_to_be16(SCLP_RC_INSUFFICIENT_SCCB_LENGTH
);
234 sclp_cp_receive_mask
= ef
->receive_mask
;
236 /* get active selection mask */
237 switch (sccb
->h
.function_code
) {
238 case SCLP_UNCONDITIONAL_READ
:
239 sclp_active_selection_mask
= sclp_cp_receive_mask
;
241 case SCLP_SELECTIVE_READ
:
242 if (!(sclp_cp_receive_mask
& be32_to_cpu(red
->mask
))) {
243 sccb
->h
.response_code
=
244 cpu_to_be16(SCLP_RC_INVALID_SELECTION_MASK
);
247 sclp_active_selection_mask
= be32_to_cpu(red
->mask
);
250 sccb
->h
.response_code
= cpu_to_be16(SCLP_RC_INVALID_FUNCTION
);
253 sccb
->h
.response_code
= cpu_to_be16(
254 handle_sccb_read_events(ef
, sccb
, sclp_active_selection_mask
));
260 static void write_event_mask(SCLPEventFacility
*ef
, SCCB
*sccb
)
262 WriteEventMask
*we_mask
= (WriteEventMask
*) sccb
;
264 /* Attention: We assume that Linux uses 4-byte masks, what it actually
265 does. Architecture allows for masks of variable size, though */
266 if (be16_to_cpu(we_mask
->mask_length
) != 4) {
267 sccb
->h
.response_code
= cpu_to_be16(SCLP_RC_INVALID_MASK_LENGTH
);
271 /* keep track of the guest's capability masks */
272 ef
->receive_mask
= be32_to_cpu(we_mask
->cp_receive_mask
);
274 /* return the SCLP's capability masks to the guest */
275 we_mask
->send_mask
= cpu_to_be32(get_host_send_mask(ef
));
276 we_mask
->receive_mask
= cpu_to_be32(get_host_receive_mask(ef
));
278 sccb
->h
.response_code
= cpu_to_be16(SCLP_RC_NORMAL_COMPLETION
);
284 /* qemu object creation and initialization functions */
286 #define TYPE_SCLP_EVENTS_BUS "s390-sclp-events-bus"
288 static void sclp_events_bus_class_init(ObjectClass
*klass
, void *data
)
292 static const TypeInfo s390_sclp_events_bus_info
= {
293 .name
= TYPE_SCLP_EVENTS_BUS
,
295 .class_init
= sclp_events_bus_class_init
,
298 static void command_handler(SCLPEventFacility
*ef
, SCCB
*sccb
, uint64_t code
)
301 case SCLP_CMD_READ_EVENT_DATA
:
302 read_event_data(ef
, sccb
);
304 case SCLP_CMD_WRITE_EVENT_DATA
:
305 write_event_data(ef
, sccb
);
307 case SCLP_CMD_WRITE_EVENT_MASK
:
308 write_event_mask(ef
, sccb
);
311 sccb
->h
.response_code
= cpu_to_be16(SCLP_RC_INVALID_SCLP_COMMAND
);
316 static int init_event_facility(S390SCLPDevice
*sdev
)
318 SCLPEventFacility
*event_facility
;
319 DeviceState
*quiesce
;
321 event_facility
= g_malloc0(sizeof(SCLPEventFacility
));
322 sdev
->ef
= event_facility
;
323 sdev
->sclp_command_handler
= command_handler
;
324 sdev
->event_pending
= event_pending
;
326 /* Spawn a new sclp-events facility */
327 qbus_create_inplace(&event_facility
->sbus
.qbus
,
328 TYPE_SCLP_EVENTS_BUS
, (DeviceState
*)sdev
, NULL
);
329 event_facility
->sbus
.qbus
.allow_hotplug
= 0;
330 event_facility
->qdev
= (DeviceState
*) sdev
;
332 quiesce
= qdev_create(&event_facility
->sbus
.qbus
, "sclpquiesce");
336 qdev_init_nofail(quiesce
);
341 static void init_event_facility_class(ObjectClass
*klass
, void *data
)
343 S390SCLPDeviceClass
*k
= SCLP_S390_DEVICE_CLASS(klass
);
345 k
->init
= init_event_facility
;
348 static const TypeInfo s390_sclp_event_facility_info
= {
349 .name
= "s390-sclp-event-facility",
350 .parent
= TYPE_DEVICE_S390_SCLP
,
351 .instance_size
= sizeof(S390SCLPDevice
),
352 .class_init
= init_event_facility_class
,
355 static int event_qdev_init(DeviceState
*qdev
)
357 SCLPEvent
*event
= DO_UPCAST(SCLPEvent
, qdev
, qdev
);
358 SCLPEventClass
*child
= SCLP_EVENT_GET_CLASS(event
);
360 return child
->init(event
);
363 static int event_qdev_exit(DeviceState
*qdev
)
365 SCLPEvent
*event
= DO_UPCAST(SCLPEvent
, qdev
, qdev
);
366 SCLPEventClass
*child
= SCLP_EVENT_GET_CLASS(event
);
373 static void event_class_init(ObjectClass
*klass
, void *data
)
375 DeviceClass
*dc
= DEVICE_CLASS(klass
);
377 dc
->bus_type
= TYPE_SCLP_EVENTS_BUS
;
378 dc
->unplug
= qdev_simple_unplug_cb
;
379 dc
->init
= event_qdev_init
;
380 dc
->exit
= event_qdev_exit
;
383 static const TypeInfo s390_sclp_event_type_info
= {
384 .name
= TYPE_SCLP_EVENT
,
385 .parent
= TYPE_DEVICE
,
386 .instance_size
= sizeof(SCLPEvent
),
387 .class_init
= event_class_init
,
388 .class_size
= sizeof(SCLPEventClass
),
392 static void register_types(void)
394 type_register_static(&s390_sclp_events_bus_info
);
395 type_register_static(&s390_sclp_event_facility_info
);
396 type_register_static(&s390_sclp_event_type_info
);
399 type_init(register_types
)