s390/eventfacility: remove unused event_type variable
[qemu/ar7.git] / hw / char / sclpconsole.c
blob8cb0e41fa01648ac6e718f8f98b3b93b098dee5c
1 /*
2 * SCLP event type
3 * Ascii Console Data (VT220 Console)
5 * Copyright IBM, Corp. 2012
7 * Authors:
8 * Heinz Graalfs <graalfs@de.ibm.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or (at your
11 * option) any later version. See the COPYING file in the top-level directory.
15 #include <hw/qdev.h>
16 #include "qemu/thread.h"
17 #include "qemu/error-report.h"
19 #include "hw/s390x/sclp.h"
20 #include "hw/s390x/event-facility.h"
21 #include "sysemu/char.h"
23 typedef struct ASCIIConsoleData {
24 EventBufferHeader ebh;
25 char data[0];
26 } QEMU_PACKED ASCIIConsoleData;
28 /* max size for ASCII data in 4K SCCB page */
29 #define SIZE_BUFFER_VT220 4080
31 typedef struct SCLPConsole {
32 SCLPEvent event;
33 CharDriverState *chr;
34 uint8_t iov[SIZE_BUFFER_VT220];
35 uint32_t iov_sclp; /* offset in buf for SCLP read operation */
36 uint32_t iov_bs; /* offset in buf for char layer read operation */
37 uint32_t iov_data_len; /* length of byte stream in buffer */
38 uint32_t iov_sclp_rest; /* length of byte stream not read via SCLP */
39 qemu_irq irq_read_vt220;
40 } SCLPConsole;
42 /* character layer call-back functions */
44 /* Return number of bytes that fit into iov buffer */
45 static int chr_can_read(void *opaque)
47 SCLPConsole *scon = opaque;
49 return SIZE_BUFFER_VT220 - scon->iov_data_len;
52 /* Receive n bytes from character layer, save in iov buffer,
53 * and set event pending */
54 static void receive_from_chr_layer(SCLPConsole *scon, const uint8_t *buf,
55 int size)
57 /* read data must fit into current buffer */
58 assert(size <= SIZE_BUFFER_VT220 - scon->iov_data_len);
60 /* put byte-stream from character layer into buffer */
61 memcpy(&scon->iov[scon->iov_bs], buf, size);
62 scon->iov_data_len += size;
63 scon->iov_sclp_rest += size;
64 scon->iov_bs += size;
65 scon->event.event_pending = true;
68 /* Send data from a char device over to the guest */
69 static void chr_read(void *opaque, const uint8_t *buf, int size)
71 SCLPConsole *scon = opaque;
73 assert(scon);
75 receive_from_chr_layer(scon, buf, size);
76 /* trigger SCLP read operation */
77 qemu_irq_raise(scon->irq_read_vt220);
80 /* functions to be called by event facility */
82 static int event_type(void)
84 return SCLP_EVENT_ASCII_CONSOLE_DATA;
87 static unsigned int send_mask(void)
89 return SCLP_EVENT_MASK_MSG_ASCII;
92 static unsigned int receive_mask(void)
94 return SCLP_EVENT_MASK_MSG_ASCII;
97 /* triggered by SCLP's read_event_data -
98 * copy console data byte-stream into provided (SCLP) buffer
100 static void get_console_data(SCLPEvent *event, uint8_t *buf, size_t *size,
101 int avail)
103 SCLPConsole *cons = DO_UPCAST(SCLPConsole, event, event);
105 /* first byte is hex 0 saying an ascii string follows */
106 *buf++ = '\0';
107 avail--;
108 /* if all data fit into provided SCLP buffer */
109 if (avail >= cons->iov_sclp_rest) {
110 /* copy character byte-stream to SCLP buffer */
111 memcpy(buf, &cons->iov[cons->iov_sclp], cons->iov_sclp_rest);
112 *size = cons->iov_sclp_rest + 1;
113 cons->iov_sclp = 0;
114 cons->iov_bs = 0;
115 cons->iov_data_len = 0;
116 cons->iov_sclp_rest = 0;
117 event->event_pending = false;
118 /* data provided and no more data pending */
119 } else {
120 /* if provided buffer is too small, just copy part */
121 memcpy(buf, &cons->iov[cons->iov_sclp], avail);
122 *size = avail + 1;
123 cons->iov_sclp_rest -= avail;
124 cons->iov_sclp += avail;
125 /* more data pending */
129 static int read_event_data(SCLPEvent *event, EventBufferHeader *evt_buf_hdr,
130 int *slen)
132 int avail;
133 size_t src_len;
134 uint8_t *to;
135 ASCIIConsoleData *acd = (ASCIIConsoleData *) evt_buf_hdr;
137 if (!event->event_pending) {
138 /* no data pending */
139 return 0;
142 to = (uint8_t *)&acd->data;
143 avail = *slen - sizeof(ASCIIConsoleData);
144 get_console_data(event, to, &src_len, avail);
146 acd->ebh.length = cpu_to_be16(sizeof(ASCIIConsoleData) + src_len);
147 acd->ebh.type = SCLP_EVENT_ASCII_CONSOLE_DATA;
148 acd->ebh.flags |= SCLP_EVENT_BUFFER_ACCEPTED;
149 *slen = avail - src_len;
151 return 1;
154 /* triggered by SCLP's write_event_data
155 * - write console data to character layer
156 * returns < 0 if an error occurred
158 static ssize_t write_console_data(SCLPEvent *event, const uint8_t *buf,
159 size_t len)
161 SCLPConsole *scon = DO_UPCAST(SCLPConsole, event, event);
163 if (!scon->chr) {
164 /* If there's no backend, we can just say we consumed all data. */
165 return len;
168 return qemu_chr_fe_write_all(scon->chr, buf, len);
171 static int write_event_data(SCLPEvent *event, EventBufferHeader *evt_buf_hdr)
173 int rc;
174 int length;
175 ssize_t written;
176 ASCIIConsoleData *acd = (ASCIIConsoleData *) evt_buf_hdr;
178 length = be16_to_cpu(evt_buf_hdr->length) - sizeof(EventBufferHeader);
179 written = write_console_data(event, (uint8_t *)acd->data, length);
181 rc = SCLP_RC_NORMAL_COMPLETION;
182 /* set event buffer accepted flag */
183 evt_buf_hdr->flags |= SCLP_EVENT_BUFFER_ACCEPTED;
185 /* written will be zero if a pty is not connected - don't treat as error */
186 if (written < 0) {
187 /* event buffer not accepted due to error in character layer */
188 evt_buf_hdr->flags &= ~(SCLP_EVENT_BUFFER_ACCEPTED);
189 rc = SCLP_RC_CONTAINED_EQUIPMENT_CHECK;
192 return rc;
195 static void trigger_ascii_console_data(void *opaque, int n, int level)
197 sclp_service_interrupt(0);
200 static const VMStateDescription vmstate_sclpconsole = {
201 .name = "sclpconsole",
202 .version_id = 0,
203 .minimum_version_id = 0,
204 .minimum_version_id_old = 0,
205 .fields = (VMStateField[]) {
206 VMSTATE_BOOL(event.event_pending, SCLPConsole),
207 VMSTATE_UINT8_ARRAY(iov, SCLPConsole, SIZE_BUFFER_VT220),
208 VMSTATE_UINT32(iov_sclp, SCLPConsole),
209 VMSTATE_UINT32(iov_bs, SCLPConsole),
210 VMSTATE_UINT32(iov_data_len, SCLPConsole),
211 VMSTATE_UINT32(iov_sclp_rest, SCLPConsole),
212 VMSTATE_END_OF_LIST()
216 /* qemu object creation and initialization functions */
218 /* tell character layer our call-back functions */
220 static int console_init(SCLPEvent *event)
222 static bool console_available;
224 SCLPConsole *scon = DO_UPCAST(SCLPConsole, event, event);
226 if (console_available) {
227 error_report("Multiple VT220 operator consoles are not supported");
228 return -1;
230 console_available = true;
231 if (scon->chr) {
232 qemu_chr_add_handlers(scon->chr, chr_can_read,
233 chr_read, NULL, scon);
235 scon->irq_read_vt220 = *qemu_allocate_irqs(trigger_ascii_console_data,
236 NULL, 1);
238 return 0;
241 static void console_reset(DeviceState *dev)
243 SCLPEvent *event = SCLP_EVENT(dev);
244 SCLPConsole *scon = DO_UPCAST(SCLPConsole, event, event);
246 event->event_pending = false;
247 scon->iov_sclp = 0;
248 scon->iov_bs = 0;
249 scon->iov_data_len = 0;
250 scon->iov_sclp_rest = 0;
253 static int console_exit(SCLPEvent *event)
255 return 0;
258 static Property console_properties[] = {
259 DEFINE_PROP_CHR("chardev", SCLPConsole, chr),
260 DEFINE_PROP_END_OF_LIST(),
263 static void console_class_init(ObjectClass *klass, void *data)
265 DeviceClass *dc = DEVICE_CLASS(klass);
266 SCLPEventClass *ec = SCLP_EVENT_CLASS(klass);
268 dc->props = console_properties;
269 dc->reset = console_reset;
270 dc->vmsd = &vmstate_sclpconsole;
271 ec->init = console_init;
272 ec->exit = console_exit;
273 ec->get_send_mask = send_mask;
274 ec->get_receive_mask = receive_mask;
275 ec->event_type = event_type;
276 ec->read_event_data = read_event_data;
277 ec->write_event_data = write_event_data;
280 static const TypeInfo sclp_console_info = {
281 .name = "sclpconsole",
282 .parent = TYPE_SCLP_EVENT,
283 .instance_size = sizeof(SCLPConsole),
284 .class_init = console_class_init,
285 .class_size = sizeof(SCLPEventClass),
288 static void register_types(void)
290 type_register_static(&sclp_console_info);
293 type_init(register_types)