tests: Add ne2000 qtest
[qemu-kvm.git] / hw / s390x / event-facility.c
bloba73c0b924a3888d2dfc48a8d30210d939e45891a
1 /*
2 * SCLP
3 * Event Facility
4 * handles SCLP event types
5 * - Signal Quiesce - system power down
6 * - ASCII Console Data - VT220 read and write
8 * Copyright IBM, Corp. 2012
10 * Authors:
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"
21 #include "hw/s390x/sclp.h"
22 #include "hw/s390x/event-facility.h"
24 typedef struct EventTypesBus {
25 BusState qbus;
26 } EventTypesBus;
28 struct SCLPEventFacility {
29 EventTypesBus sbus;
30 DeviceState *qdev;
31 /* guest' receive mask */
32 unsigned int receive_mask;
35 SCLPEvent cpu_hotplug;
37 /* return true if any child has event pending set */
38 static bool event_pending(SCLPEventFacility *ef)
40 BusChild *kid;
41 SCLPEvent *event;
42 SCLPEventClass *event_class;
44 QTAILQ_FOREACH(kid, &ef->sbus.qbus.children, sibling) {
45 DeviceState *qdev = kid->child;
46 event = DO_UPCAST(SCLPEvent, qdev, qdev);
47 event_class = SCLP_EVENT_GET_CLASS(event);
48 if (event->event_pending &&
49 event_class->get_send_mask() & ef->receive_mask) {
50 return true;
53 return false;
56 static unsigned int get_host_send_mask(SCLPEventFacility *ef)
58 unsigned int mask;
59 BusChild *kid;
60 SCLPEventClass *child;
62 mask = 0;
64 QTAILQ_FOREACH(kid, &ef->sbus.qbus.children, sibling) {
65 DeviceState *qdev = kid->child;
66 child = SCLP_EVENT_GET_CLASS((SCLPEvent *) qdev);
67 mask |= child->get_send_mask();
69 return mask;
72 static unsigned int get_host_receive_mask(SCLPEventFacility *ef)
74 unsigned int mask;
75 BusChild *kid;
76 SCLPEventClass *child;
78 mask = 0;
80 QTAILQ_FOREACH(kid, &ef->sbus.qbus.children, sibling) {
81 DeviceState *qdev = kid->child;
82 child = SCLP_EVENT_GET_CLASS((SCLPEvent *) qdev);
83 mask |= child->get_receive_mask();
85 return mask;
88 static uint16_t write_event_length_check(SCCB *sccb)
90 int slen;
91 unsigned elen = 0;
92 EventBufferHeader *event;
93 WriteEventData *wed = (WriteEventData *) sccb;
95 event = (EventBufferHeader *) &wed->ebh;
96 for (slen = sccb_data_len(sccb); slen > 0; slen -= elen) {
97 elen = be16_to_cpu(event->length);
98 if (elen < sizeof(*event) || elen > slen) {
99 return SCLP_RC_EVENT_BUFFER_SYNTAX_ERROR;
101 event = (void *) event + elen;
103 if (slen) {
104 return SCLP_RC_INCONSISTENT_LENGTHS;
106 return SCLP_RC_NORMAL_COMPLETION;
109 static uint16_t handle_write_event_buf(SCLPEventFacility *ef,
110 EventBufferHeader *event_buf, SCCB *sccb)
112 uint16_t rc;
113 BusChild *kid;
114 SCLPEvent *event;
115 SCLPEventClass *ec;
117 rc = SCLP_RC_INVALID_FUNCTION;
119 QTAILQ_FOREACH(kid, &ef->sbus.qbus.children, sibling) {
120 DeviceState *qdev = kid->child;
121 event = (SCLPEvent *) qdev;
122 ec = SCLP_EVENT_GET_CLASS(event);
124 if (ec->write_event_data &&
125 ec->can_handle_event(event_buf->type)) {
126 rc = ec->write_event_data(event, event_buf);
127 break;
130 return rc;
133 static uint16_t handle_sccb_write_events(SCLPEventFacility *ef, SCCB *sccb)
135 uint16_t rc;
136 int slen;
137 unsigned elen = 0;
138 EventBufferHeader *event_buf;
139 WriteEventData *wed = (WriteEventData *) sccb;
141 event_buf = &wed->ebh;
142 rc = SCLP_RC_NORMAL_COMPLETION;
144 /* loop over all contained event buffers */
145 for (slen = sccb_data_len(sccb); slen > 0; slen -= elen) {
146 elen = be16_to_cpu(event_buf->length);
148 /* in case of a previous error mark all trailing buffers
149 * as not accepted */
150 if (rc != SCLP_RC_NORMAL_COMPLETION) {
151 event_buf->flags &= ~(SCLP_EVENT_BUFFER_ACCEPTED);
152 } else {
153 rc = handle_write_event_buf(ef, event_buf, sccb);
155 event_buf = (void *) event_buf + elen;
157 return rc;
160 static void write_event_data(SCLPEventFacility *ef, SCCB *sccb)
162 if (sccb->h.function_code != SCLP_FC_NORMAL_WRITE) {
163 sccb->h.response_code = cpu_to_be16(SCLP_RC_INVALID_FUNCTION);
164 goto out;
166 if (be16_to_cpu(sccb->h.length) < 8) {
167 sccb->h.response_code = cpu_to_be16(SCLP_RC_INSUFFICIENT_SCCB_LENGTH);
168 goto out;
170 /* first do a sanity check of the write events */
171 sccb->h.response_code = cpu_to_be16(write_event_length_check(sccb));
173 /* if no early error, then execute */
174 if (sccb->h.response_code == be16_to_cpu(SCLP_RC_NORMAL_COMPLETION)) {
175 sccb->h.response_code =
176 cpu_to_be16(handle_sccb_write_events(ef, sccb));
179 out:
180 return;
183 static uint16_t handle_sccb_read_events(SCLPEventFacility *ef, SCCB *sccb,
184 unsigned int mask)
186 uint16_t rc;
187 int slen;
188 unsigned elen;
189 BusChild *kid;
190 SCLPEvent *event;
191 SCLPEventClass *ec;
192 EventBufferHeader *event_buf;
193 ReadEventData *red = (ReadEventData *) sccb;
195 event_buf = &red->ebh;
196 event_buf->length = 0;
197 slen = sizeof(sccb->data);
199 rc = SCLP_RC_NO_EVENT_BUFFERS_STORED;
201 QTAILQ_FOREACH(kid, &ef->sbus.qbus.children, sibling) {
202 DeviceState *qdev = kid->child;
203 event = (SCLPEvent *) qdev;
204 ec = SCLP_EVENT_GET_CLASS(event);
206 if (mask & ec->get_send_mask()) {
207 if (ec->read_event_data(event, event_buf, &slen)) {
208 elen = be16_to_cpu(event_buf->length);
209 event_buf = (EventBufferHeader *) ((char *)event_buf + elen);
210 rc = SCLP_RC_NORMAL_COMPLETION;
215 if (sccb->h.control_mask[2] & SCLP_VARIABLE_LENGTH_RESPONSE) {
216 /* architecture suggests to reset variable-length-response bit */
217 sccb->h.control_mask[2] &= ~SCLP_VARIABLE_LENGTH_RESPONSE;
218 /* with a new length value */
219 sccb->h.length = cpu_to_be16(SCCB_SIZE - slen);
221 return rc;
224 static void read_event_data(SCLPEventFacility *ef, SCCB *sccb)
226 unsigned int sclp_active_selection_mask;
227 unsigned int sclp_cp_receive_mask;
229 ReadEventData *red = (ReadEventData *) sccb;
231 if (be16_to_cpu(sccb->h.length) != SCCB_SIZE) {
232 sccb->h.response_code = cpu_to_be16(SCLP_RC_INSUFFICIENT_SCCB_LENGTH);
233 goto out;
236 sclp_cp_receive_mask = ef->receive_mask;
238 /* get active selection mask */
239 switch (sccb->h.function_code) {
240 case SCLP_UNCONDITIONAL_READ:
241 sclp_active_selection_mask = sclp_cp_receive_mask;
242 break;
243 case SCLP_SELECTIVE_READ:
244 if (!(sclp_cp_receive_mask & be32_to_cpu(red->mask))) {
245 sccb->h.response_code =
246 cpu_to_be16(SCLP_RC_INVALID_SELECTION_MASK);
247 goto out;
249 sclp_active_selection_mask = be32_to_cpu(red->mask);
250 break;
251 default:
252 sccb->h.response_code = cpu_to_be16(SCLP_RC_INVALID_FUNCTION);
253 goto out;
255 sccb->h.response_code = cpu_to_be16(
256 handle_sccb_read_events(ef, sccb, sclp_active_selection_mask));
258 out:
259 return;
262 static void write_event_mask(SCLPEventFacility *ef, SCCB *sccb)
264 WriteEventMask *we_mask = (WriteEventMask *) sccb;
266 /* Attention: We assume that Linux uses 4-byte masks, what it actually
267 does. Architecture allows for masks of variable size, though */
268 if (be16_to_cpu(we_mask->mask_length) != 4) {
269 sccb->h.response_code = cpu_to_be16(SCLP_RC_INVALID_MASK_LENGTH);
270 goto out;
273 /* keep track of the guest's capability masks */
274 ef->receive_mask = be32_to_cpu(we_mask->cp_receive_mask);
276 /* return the SCLP's capability masks to the guest */
277 we_mask->send_mask = cpu_to_be32(get_host_send_mask(ef));
278 we_mask->receive_mask = cpu_to_be32(get_host_receive_mask(ef));
280 sccb->h.response_code = cpu_to_be16(SCLP_RC_NORMAL_COMPLETION);
282 out:
283 return;
286 /* qemu object creation and initialization functions */
288 #define TYPE_SCLP_EVENTS_BUS "s390-sclp-events-bus"
290 static void sclp_events_bus_class_init(ObjectClass *klass, void *data)
294 static const TypeInfo s390_sclp_events_bus_info = {
295 .name = TYPE_SCLP_EVENTS_BUS,
296 .parent = TYPE_BUS,
297 .class_init = sclp_events_bus_class_init,
300 static void command_handler(SCLPEventFacility *ef, SCCB *sccb, uint64_t code)
302 switch (code) {
303 case SCLP_CMD_READ_EVENT_DATA:
304 read_event_data(ef, sccb);
305 break;
306 case SCLP_CMD_WRITE_EVENT_DATA:
307 write_event_data(ef, sccb);
308 break;
309 case SCLP_CMD_WRITE_EVENT_MASK:
310 write_event_mask(ef, sccb);
311 break;
312 default:
313 sccb->h.response_code = cpu_to_be16(SCLP_RC_INVALID_SCLP_COMMAND);
314 break;
318 static int init_event_facility(S390SCLPDevice *sdev)
320 SCLPEventFacility *event_facility;
321 DeviceState *quiesce;
323 event_facility = g_malloc0(sizeof(SCLPEventFacility));
324 sdev->ef = event_facility;
325 sdev->sclp_command_handler = command_handler;
326 sdev->event_pending = event_pending;
328 /* Spawn a new sclp-events facility */
329 qbus_create_inplace(&event_facility->sbus, sizeof(event_facility->sbus),
330 TYPE_SCLP_EVENTS_BUS, DEVICE(sdev), NULL);
331 event_facility->sbus.qbus.allow_hotplug = 0;
332 event_facility->qdev = (DeviceState *) sdev;
334 quiesce = qdev_create(&event_facility->sbus.qbus, "sclpquiesce");
335 if (!quiesce) {
336 return -1;
338 qdev_init_nofail(quiesce);
340 object_initialize(&cpu_hotplug, sizeof(cpu_hotplug), TYPE_SCLP_CPU_HOTPLUG);
341 qdev_set_parent_bus(DEVICE(&cpu_hotplug), BUS(&event_facility->sbus));
342 object_property_set_bool(OBJECT(&cpu_hotplug), true, "realized", NULL);
344 return 0;
347 static void reset_event_facility(DeviceState *dev)
349 S390SCLPDevice *sdev = SCLP_S390_DEVICE(dev);
351 sdev->ef->receive_mask = 0;
354 static void init_event_facility_class(ObjectClass *klass, void *data)
356 DeviceClass *dc = DEVICE_CLASS(klass);
357 S390SCLPDeviceClass *k = SCLP_S390_DEVICE_CLASS(klass);
359 dc->reset = reset_event_facility;
360 k->init = init_event_facility;
363 static const TypeInfo s390_sclp_event_facility_info = {
364 .name = "s390-sclp-event-facility",
365 .parent = TYPE_DEVICE_S390_SCLP,
366 .instance_size = sizeof(S390SCLPDevice),
367 .class_init = init_event_facility_class,
370 static int event_qdev_init(DeviceState *qdev)
372 SCLPEvent *event = DO_UPCAST(SCLPEvent, qdev, qdev);
373 SCLPEventClass *child = SCLP_EVENT_GET_CLASS(event);
375 return child->init(event);
378 static int event_qdev_exit(DeviceState *qdev)
380 SCLPEvent *event = DO_UPCAST(SCLPEvent, qdev, qdev);
381 SCLPEventClass *child = SCLP_EVENT_GET_CLASS(event);
382 if (child->exit) {
383 child->exit(event);
385 return 0;
388 static void event_class_init(ObjectClass *klass, void *data)
390 DeviceClass *dc = DEVICE_CLASS(klass);
392 dc->bus_type = TYPE_SCLP_EVENTS_BUS;
393 dc->unplug = qdev_simple_unplug_cb;
394 dc->init = event_qdev_init;
395 dc->exit = event_qdev_exit;
398 static const TypeInfo s390_sclp_event_type_info = {
399 .name = TYPE_SCLP_EVENT,
400 .parent = TYPE_DEVICE,
401 .instance_size = sizeof(SCLPEvent),
402 .class_init = event_class_init,
403 .class_size = sizeof(SCLPEventClass),
404 .abstract = true,
407 static void register_types(void)
409 type_register_static(&s390_sclp_events_bus_info);
410 type_register_static(&s390_sclp_event_facility_info);
411 type_register_static(&s390_sclp_event_type_info);
414 type_init(register_types)