]>
Commit | Line | Data |
---|---|---|
130c57c0 HG |
1 | /* |
2 | * SCLP event type | |
3 | * Ascii Console Data (VT220 Console) | |
4 | * | |
5 | * Copyright IBM, Corp. 2012 | |
6 | * | |
7 | * Authors: | |
8 | * Heinz Graalfs <[email protected]> | |
9 | * | |
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. | |
12 | * | |
13 | */ | |
14 | ||
9615495a | 15 | #include "qemu/osdep.h" |
a9c94277 | 16 | #include "hw/qdev.h" |
1de7afc9 | 17 | #include "qemu/thread.h" |
b4a42f81 | 18 | #include "qemu/error-report.h" |
130c57c0 | 19 | |
83c9f4ca PB |
20 | #include "hw/s390x/sclp.h" |
21 | #include "hw/s390x/event-facility.h" | |
4d43a603 | 22 | #include "chardev/char-fe.h" |
130c57c0 HG |
23 | |
24 | typedef struct ASCIIConsoleData { | |
25 | EventBufferHeader ebh; | |
26 | char data[0]; | |
27 | } QEMU_PACKED ASCIIConsoleData; | |
28 | ||
29 | /* max size for ASCII data in 4K SCCB page */ | |
30 | #define SIZE_BUFFER_VT220 4080 | |
31 | ||
32 | typedef struct SCLPConsole { | |
33 | SCLPEvent event; | |
becdfa00 | 34 | CharBackend chr; |
ea9ad3e9 HG |
35 | uint8_t iov[SIZE_BUFFER_VT220]; |
36 | uint32_t iov_sclp; /* offset in buf for SCLP read operation */ | |
37 | uint32_t iov_bs; /* offset in buf for char layer read operation */ | |
38 | uint32_t iov_data_len; /* length of byte stream in buffer */ | |
39 | uint32_t iov_sclp_rest; /* length of byte stream not read via SCLP */ | |
bb3e9e1f | 40 | bool notify; /* qemu_notify_event() req'd if true */ |
130c57c0 HG |
41 | } SCLPConsole; |
42 | ||
3f6ec642 XZ |
43 | #define TYPE_SCLP_CONSOLE "sclpconsole" |
44 | #define SCLP_CONSOLE(obj) \ | |
45 | OBJECT_CHECK(SCLPConsole, (obj), TYPE_SCLP_CONSOLE) | |
46 | ||
130c57c0 HG |
47 | /* character layer call-back functions */ |
48 | ||
49 | /* Return number of bytes that fit into iov buffer */ | |
50 | static int chr_can_read(void *opaque) | |
51 | { | |
130c57c0 | 52 | SCLPConsole *scon = opaque; |
bb3e9e1f | 53 | int avail = SIZE_BUFFER_VT220 - scon->iov_data_len; |
130c57c0 | 54 | |
bb3e9e1f HG |
55 | if (avail == 0) { |
56 | scon->notify = true; | |
57 | } | |
58 | return avail; | |
130c57c0 HG |
59 | } |
60 | ||
b074e622 CB |
61 | /* Send data from a char device over to the guest */ |
62 | static void chr_read(void *opaque, const uint8_t *buf, int size) | |
130c57c0 | 63 | { |
b074e622 CB |
64 | SCLPConsole *scon = opaque; |
65 | ||
66 | assert(scon); | |
130c57c0 HG |
67 | /* read data must fit into current buffer */ |
68 | assert(size <= SIZE_BUFFER_VT220 - scon->iov_data_len); | |
69 | ||
70 | /* put byte-stream from character layer into buffer */ | |
ea9ad3e9 | 71 | memcpy(&scon->iov[scon->iov_bs], buf, size); |
130c57c0 HG |
72 | scon->iov_data_len += size; |
73 | scon->iov_sclp_rest += size; | |
74 | scon->iov_bs += size; | |
75 | scon->event.event_pending = true; | |
b074e622 | 76 | sclp_service_interrupt(0); |
130c57c0 HG |
77 | } |
78 | ||
130c57c0 HG |
79 | /* functions to be called by event facility */ |
80 | ||
c3d9f24a | 81 | static bool can_handle_event(uint8_t type) |
130c57c0 | 82 | { |
c3d9f24a | 83 | return type == SCLP_EVENT_ASCII_CONSOLE_DATA; |
130c57c0 HG |
84 | } |
85 | ||
1ffed98f | 86 | static sccb_mask_t send_mask(void) |
130c57c0 HG |
87 | { |
88 | return SCLP_EVENT_MASK_MSG_ASCII; | |
89 | } | |
90 | ||
1ffed98f | 91 | static sccb_mask_t receive_mask(void) |
130c57c0 HG |
92 | { |
93 | return SCLP_EVENT_MASK_MSG_ASCII; | |
94 | } | |
95 | ||
96 | /* triggered by SCLP's read_event_data - | |
97 | * copy console data byte-stream into provided (SCLP) buffer | |
98 | */ | |
99 | static void get_console_data(SCLPEvent *event, uint8_t *buf, size_t *size, | |
100 | int avail) | |
101 | { | |
3f6ec642 | 102 | SCLPConsole *cons = SCLP_CONSOLE(event); |
130c57c0 HG |
103 | |
104 | /* first byte is hex 0 saying an ascii string follows */ | |
105 | *buf++ = '\0'; | |
106 | avail--; | |
107 | /* if all data fit into provided SCLP buffer */ | |
108 | if (avail >= cons->iov_sclp_rest) { | |
109 | /* copy character byte-stream to SCLP buffer */ | |
ea9ad3e9 | 110 | memcpy(buf, &cons->iov[cons->iov_sclp], cons->iov_sclp_rest); |
130c57c0 | 111 | *size = cons->iov_sclp_rest + 1; |
ea9ad3e9 HG |
112 | cons->iov_sclp = 0; |
113 | cons->iov_bs = 0; | |
130c57c0 HG |
114 | cons->iov_data_len = 0; |
115 | cons->iov_sclp_rest = 0; | |
116 | event->event_pending = false; | |
117 | /* data provided and no more data pending */ | |
118 | } else { | |
119 | /* if provided buffer is too small, just copy part */ | |
ea9ad3e9 | 120 | memcpy(buf, &cons->iov[cons->iov_sclp], avail); |
130c57c0 HG |
121 | *size = avail + 1; |
122 | cons->iov_sclp_rest -= avail; | |
123 | cons->iov_sclp += avail; | |
124 | /* more data pending */ | |
125 | } | |
bb3e9e1f HG |
126 | if (cons->notify) { |
127 | cons->notify = false; | |
128 | qemu_notify_event(); | |
129 | } | |
130c57c0 HG |
130 | } |
131 | ||
132 | static int read_event_data(SCLPEvent *event, EventBufferHeader *evt_buf_hdr, | |
133 | int *slen) | |
134 | { | |
135 | int avail; | |
136 | size_t src_len; | |
137 | uint8_t *to; | |
138 | ASCIIConsoleData *acd = (ASCIIConsoleData *) evt_buf_hdr; | |
139 | ||
140 | if (!event->event_pending) { | |
141 | /* no data pending */ | |
142 | return 0; | |
143 | } | |
144 | ||
145 | to = (uint8_t *)&acd->data; | |
146 | avail = *slen - sizeof(ASCIIConsoleData); | |
147 | get_console_data(event, to, &src_len, avail); | |
148 | ||
149 | acd->ebh.length = cpu_to_be16(sizeof(ASCIIConsoleData) + src_len); | |
150 | acd->ebh.type = SCLP_EVENT_ASCII_CONSOLE_DATA; | |
151 | acd->ebh.flags |= SCLP_EVENT_BUFFER_ACCEPTED; | |
152 | *slen = avail - src_len; | |
153 | ||
154 | return 1; | |
155 | } | |
156 | ||
157 | /* triggered by SCLP's write_event_data | |
8367a14f SW |
158 | * - write console data to character layer |
159 | * returns < 0 if an error occurred | |
130c57c0 HG |
160 | */ |
161 | static ssize_t write_console_data(SCLPEvent *event, const uint8_t *buf, | |
162 | size_t len) | |
163 | { | |
3f6ec642 | 164 | SCLPConsole *scon = SCLP_CONSOLE(event); |
130c57c0 | 165 | |
30650701 | 166 | if (!qemu_chr_fe_backend_connected(&scon->chr)) { |
130c57c0 HG |
167 | /* If there's no backend, we can just say we consumed all data. */ |
168 | return len; | |
169 | } | |
170 | ||
6ab3fc32 DB |
171 | /* XXX this blocks entire thread. Rewrite to use |
172 | * qemu_chr_fe_write and background I/O callbacks */ | |
5345fdb4 | 173 | return qemu_chr_fe_write_all(&scon->chr, buf, len); |
130c57c0 HG |
174 | } |
175 | ||
176 | static int write_event_data(SCLPEvent *event, EventBufferHeader *evt_buf_hdr) | |
177 | { | |
178 | int rc; | |
179 | int length; | |
180 | ssize_t written; | |
181 | ASCIIConsoleData *acd = (ASCIIConsoleData *) evt_buf_hdr; | |
182 | ||
183 | length = be16_to_cpu(evt_buf_hdr->length) - sizeof(EventBufferHeader); | |
184 | written = write_console_data(event, (uint8_t *)acd->data, length); | |
185 | ||
186 | rc = SCLP_RC_NORMAL_COMPLETION; | |
187 | /* set event buffer accepted flag */ | |
188 | evt_buf_hdr->flags |= SCLP_EVENT_BUFFER_ACCEPTED; | |
189 | ||
190 | /* written will be zero if a pty is not connected - don't treat as error */ | |
191 | if (written < 0) { | |
192 | /* event buffer not accepted due to error in character layer */ | |
193 | evt_buf_hdr->flags &= ~(SCLP_EVENT_BUFFER_ACCEPTED); | |
194 | rc = SCLP_RC_CONTAINED_EQUIPMENT_CHECK; | |
195 | } | |
196 | ||
197 | return rc; | |
198 | } | |
199 | ||
cb335beb HG |
200 | static const VMStateDescription vmstate_sclpconsole = { |
201 | .name = "sclpconsole", | |
202 | .version_id = 0, | |
203 | .minimum_version_id = 0, | |
35d08458 | 204 | .fields = (VMStateField[]) { |
cb335beb HG |
205 | VMSTATE_BOOL(event.event_pending, SCLPConsole), |
206 | VMSTATE_UINT8_ARRAY(iov, SCLPConsole, SIZE_BUFFER_VT220), | |
207 | VMSTATE_UINT32(iov_sclp, SCLPConsole), | |
208 | VMSTATE_UINT32(iov_bs, SCLPConsole), | |
209 | VMSTATE_UINT32(iov_data_len, SCLPConsole), | |
210 | VMSTATE_UINT32(iov_sclp_rest, SCLPConsole), | |
211 | VMSTATE_END_OF_LIST() | |
212 | } | |
213 | }; | |
214 | ||
130c57c0 HG |
215 | /* qemu object creation and initialization functions */ |
216 | ||
217 | /* tell character layer our call-back functions */ | |
cb335beb | 218 | |
130c57c0 HG |
219 | static int console_init(SCLPEvent *event) |
220 | { | |
221 | static bool console_available; | |
222 | ||
3f6ec642 | 223 | SCLPConsole *scon = SCLP_CONSOLE(event); |
130c57c0 HG |
224 | |
225 | if (console_available) { | |
226 | error_report("Multiple VT220 operator consoles are not supported"); | |
227 | return -1; | |
228 | } | |
229 | console_available = true; | |
fa394ed6 | 230 | qemu_chr_fe_set_handlers(&scon->chr, chr_can_read, |
81517ba3 | 231 | chr_read, NULL, NULL, scon, NULL, true); |
130c57c0 HG |
232 | |
233 | return 0; | |
234 | } | |
235 | ||
3af6de32 HG |
236 | static void console_reset(DeviceState *dev) |
237 | { | |
238 | SCLPEvent *event = SCLP_EVENT(dev); | |
3f6ec642 | 239 | SCLPConsole *scon = SCLP_CONSOLE(event); |
3af6de32 HG |
240 | |
241 | event->event_pending = false; | |
242 | scon->iov_sclp = 0; | |
243 | scon->iov_bs = 0; | |
244 | scon->iov_data_len = 0; | |
245 | scon->iov_sclp_rest = 0; | |
bb3e9e1f | 246 | scon->notify = false; |
3af6de32 HG |
247 | } |
248 | ||
130c57c0 HG |
249 | static Property console_properties[] = { |
250 | DEFINE_PROP_CHR("chardev", SCLPConsole, chr), | |
251 | DEFINE_PROP_END_OF_LIST(), | |
252 | }; | |
253 | ||
254 | static void console_class_init(ObjectClass *klass, void *data) | |
255 | { | |
256 | DeviceClass *dc = DEVICE_CLASS(klass); | |
257 | SCLPEventClass *ec = SCLP_EVENT_CLASS(klass); | |
258 | ||
259 | dc->props = console_properties; | |
3af6de32 | 260 | dc->reset = console_reset; |
cb335beb | 261 | dc->vmsd = &vmstate_sclpconsole; |
130c57c0 | 262 | ec->init = console_init; |
130c57c0 HG |
263 | ec->get_send_mask = send_mask; |
264 | ec->get_receive_mask = receive_mask; | |
c3d9f24a | 265 | ec->can_handle_event = can_handle_event; |
130c57c0 HG |
266 | ec->read_event_data = read_event_data; |
267 | ec->write_event_data = write_event_data; | |
183f6b8d | 268 | set_bit(DEVICE_CATEGORY_INPUT, dc->categories); |
130c57c0 HG |
269 | } |
270 | ||
8c43a6f0 | 271 | static const TypeInfo sclp_console_info = { |
130c57c0 HG |
272 | .name = "sclpconsole", |
273 | .parent = TYPE_SCLP_EVENT, | |
274 | .instance_size = sizeof(SCLPConsole), | |
275 | .class_init = console_class_init, | |
276 | .class_size = sizeof(SCLPEventClass), | |
277 | }; | |
278 | ||
279 | static void register_types(void) | |
280 | { | |
281 | type_register_static(&sclp_console_info); | |
282 | } | |
283 | ||
284 | type_init(register_types) |