m68k: Use cpu_m68k_init()
[qemu/cris-port.git] / hw / char / virtio-console.c
blob752ed2c3c81362f93baac95f179cccf0585c9b9f
1 /*
2 * Virtio Console and Generic Serial Port Devices
4 * Copyright Red Hat, Inc. 2009, 2010
6 * Authors:
7 * Amit Shah <amit.shah@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
13 #include "sysemu/char.h"
14 #include "qemu/error-report.h"
15 #include "trace.h"
16 #include "hw/virtio/virtio-serial.h"
17 #include "qapi-event.h"
19 #define TYPE_VIRTIO_CONSOLE_SERIAL_PORT "virtserialport"
20 #define VIRTIO_CONSOLE(obj) \
21 OBJECT_CHECK(VirtConsole, (obj), TYPE_VIRTIO_CONSOLE_SERIAL_PORT)
23 typedef struct VirtConsole {
24 VirtIOSerialPort parent_obj;
26 CharDriverState *chr;
27 guint watch;
28 } VirtConsole;
31 * Callback function that's called from chardevs when backend becomes
32 * writable.
34 static gboolean chr_write_unblocked(GIOChannel *chan, GIOCondition cond,
35 void *opaque)
37 VirtConsole *vcon = opaque;
39 vcon->watch = 0;
40 virtio_serial_throttle_port(VIRTIO_SERIAL_PORT(vcon), false);
41 return FALSE;
44 /* Callback function that's called when the guest sends us data */
45 static ssize_t flush_buf(VirtIOSerialPort *port,
46 const uint8_t *buf, ssize_t len)
48 VirtConsole *vcon = VIRTIO_CONSOLE(port);
49 ssize_t ret;
51 if (!vcon->chr) {
52 /* If there's no backend, we can just say we consumed all data. */
53 return len;
56 ret = qemu_chr_fe_write(vcon->chr, buf, len);
57 trace_virtio_console_flush_buf(port->id, len, ret);
59 if (ret < len) {
60 VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(port);
63 * Ideally we'd get a better error code than just -1, but
64 * that's what the chardev interface gives us right now. If
65 * we had a finer-grained message, like -EPIPE, we could close
66 * this connection.
68 if (ret < 0)
69 ret = 0;
70 if (!k->is_console) {
71 virtio_serial_throttle_port(port, true);
72 if (!vcon->watch) {
73 vcon->watch = qemu_chr_fe_add_watch(vcon->chr,
74 G_IO_OUT|G_IO_HUP,
75 chr_write_unblocked, vcon);
79 return ret;
82 /* Callback function that's called when the guest opens/closes the port */
83 static void set_guest_connected(VirtIOSerialPort *port, int guest_connected)
85 VirtConsole *vcon = VIRTIO_CONSOLE(port);
86 DeviceState *dev = DEVICE(port);
88 if (vcon->chr) {
89 qemu_chr_fe_set_open(vcon->chr, guest_connected);
92 if (dev->id) {
93 qapi_event_send_vserport_change(dev->id, guest_connected,
94 &error_abort);
98 /* Readiness of the guest to accept data on a port */
99 static int chr_can_read(void *opaque)
101 VirtConsole *vcon = opaque;
103 return virtio_serial_guest_ready(VIRTIO_SERIAL_PORT(vcon));
106 /* Send data from a char device over to the guest */
107 static void chr_read(void *opaque, const uint8_t *buf, int size)
109 VirtConsole *vcon = opaque;
110 VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(vcon);
112 trace_virtio_console_chr_read(port->id, size);
113 virtio_serial_write(port, buf, size);
116 static void chr_event(void *opaque, int event)
118 VirtConsole *vcon = opaque;
119 VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(vcon);
121 trace_virtio_console_chr_event(port->id, event);
122 switch (event) {
123 case CHR_EVENT_OPENED:
124 virtio_serial_open(port);
125 break;
126 case CHR_EVENT_CLOSED:
127 if (vcon->watch) {
128 g_source_remove(vcon->watch);
129 vcon->watch = 0;
131 virtio_serial_close(port);
132 break;
136 static void virtconsole_realize(DeviceState *dev, Error **errp)
138 VirtIOSerialPort *port = VIRTIO_SERIAL_PORT(dev);
139 VirtConsole *vcon = VIRTIO_CONSOLE(dev);
140 VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(dev);
142 if (port->id == 0 && !k->is_console) {
143 error_setg(errp, "Port number 0 on virtio-serial devices reserved "
144 "for virtconsole devices for backward compatibility.");
145 return;
148 if (vcon->chr) {
149 vcon->chr->explicit_fe_open = 1;
150 qemu_chr_add_handlers(vcon->chr, chr_can_read, chr_read, chr_event,
151 vcon);
155 static void virtconsole_unrealize(DeviceState *dev, Error **errp)
157 VirtConsole *vcon = VIRTIO_CONSOLE(dev);
159 if (vcon->watch) {
160 g_source_remove(vcon->watch);
164 static void virtconsole_class_init(ObjectClass *klass, void *data)
166 VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_CLASS(klass);
168 k->is_console = true;
171 static const TypeInfo virtconsole_info = {
172 .name = "virtconsole",
173 .parent = TYPE_VIRTIO_CONSOLE_SERIAL_PORT,
174 .class_init = virtconsole_class_init,
177 static Property virtserialport_properties[] = {
178 DEFINE_PROP_CHR("chardev", VirtConsole, chr),
179 DEFINE_PROP_END_OF_LIST(),
182 static void virtserialport_class_init(ObjectClass *klass, void *data)
184 DeviceClass *dc = DEVICE_CLASS(klass);
185 VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_CLASS(klass);
187 k->realize = virtconsole_realize;
188 k->unrealize = virtconsole_unrealize;
189 k->have_data = flush_buf;
190 k->set_guest_connected = set_guest_connected;
191 dc->props = virtserialport_properties;
194 static const TypeInfo virtserialport_info = {
195 .name = TYPE_VIRTIO_CONSOLE_SERIAL_PORT,
196 .parent = TYPE_VIRTIO_SERIAL_PORT,
197 .instance_size = sizeof(VirtConsole),
198 .class_init = virtserialport_class_init,
201 static void virtconsole_register_types(void)
203 type_register_static(&virtserialport_info);
204 type_register_static(&virtconsole_info);
207 type_init(virtconsole_register_types)