Merge commit 'd34e8f6e9d3a396c3327aa9807c83f9e1f4a7bd7' into upstream-merge
[qemu-kvm.git] / hw / virtio-console.c
blob73c3935edcfb8dde900c83dfb84455d57dad17bf
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 "qemu-char.h"
14 #include "qemu-error.h"
15 #include "trace.h"
16 #include "virtio-serial.h"
18 typedef struct VirtConsole {
19 VirtIOSerialPort port;
20 CharDriverState *chr;
21 } VirtConsole;
24 /* Callback function that's called when the guest sends us data */
25 static ssize_t flush_buf(VirtIOSerialPort *port, const uint8_t *buf, size_t len)
27 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
28 ssize_t ret;
30 if (!vcon->chr) {
31 /* If there's no backend, we can just say we consumed all data. */
32 return len;
35 ret = qemu_chr_fe_write(vcon->chr, buf, len);
36 trace_virtio_console_flush_buf(port->id, len, ret);
38 if (ret < 0) {
40 * Ideally we'd get a better error code than just -1, but
41 * that's what the chardev interface gives us right now. If
42 * we had a finer-grained message, like -EPIPE, we could close
43 * this connection. Absent such error messages, the most we
44 * can do is to return 0 here.
46 * This will prevent stray -1 values to go to
47 * virtio-serial-bus.c and cause abort()s in
48 * do_flush_queued_data().
50 ret = 0;
52 return ret;
55 /* Callback function that's called when the guest opens the port */
56 static void guest_open(VirtIOSerialPort *port)
58 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
60 if (!vcon->chr) {
61 return;
63 qemu_chr_fe_open(vcon->chr);
66 /* Callback function that's called when the guest closes the port */
67 static void guest_close(VirtIOSerialPort *port)
69 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
71 if (!vcon->chr) {
72 return;
74 qemu_chr_fe_close(vcon->chr);
77 /* Readiness of the guest to accept data on a port */
78 static int chr_can_read(void *opaque)
80 VirtConsole *vcon = opaque;
82 return virtio_serial_guest_ready(&vcon->port);
85 /* Send data from a char device over to the guest */
86 static void chr_read(void *opaque, const uint8_t *buf, int size)
88 VirtConsole *vcon = opaque;
90 trace_virtio_console_chr_read(vcon->port.id, size);
91 virtio_serial_write(&vcon->port, buf, size);
94 static void chr_event(void *opaque, int event)
96 VirtConsole *vcon = opaque;
98 trace_virtio_console_chr_event(vcon->port.id, event);
99 switch (event) {
100 case CHR_EVENT_OPENED:
101 virtio_serial_open(&vcon->port);
102 break;
103 case CHR_EVENT_CLOSED:
104 virtio_serial_close(&vcon->port);
105 break;
109 static int virtconsole_initfn(VirtIOSerialPort *port)
111 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
112 VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_GET_CLASS(port);
114 if (port->id == 0 && !k->is_console) {
115 error_report("Port number 0 on virtio-serial devices reserved for virtconsole devices for backward compatibility.");
116 return -1;
119 if (vcon->chr) {
120 qemu_chr_add_handlers(vcon->chr, chr_can_read, chr_read, chr_event,
121 vcon);
124 return 0;
127 static Property virtconsole_properties[] = {
128 DEFINE_PROP_CHR("chardev", VirtConsole, chr),
129 DEFINE_PROP_END_OF_LIST(),
132 static void virtconsole_class_init(ObjectClass *klass, void *data)
134 VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_CLASS(klass);
136 k->is_console = true;
137 k->init = virtconsole_initfn;
138 k->have_data = flush_buf;
139 k->guest_open = guest_open;
140 k->guest_close = guest_close;
143 static DeviceInfo virtconsole_info = {
144 .name = "virtconsole",
145 .size = sizeof(VirtConsole),
146 .props = virtconsole_properties,
147 .class_init = virtconsole_class_init,
150 static void virtconsole_register(void)
152 virtio_serial_port_qdev_register(&virtconsole_info);
154 device_init(virtconsole_register)
156 static Property virtserialport_properties[] = {
157 DEFINE_PROP_CHR("chardev", VirtConsole, chr),
158 DEFINE_PROP_END_OF_LIST(),
161 static void virtserialport_class_init(ObjectClass *klass, void *data)
163 VirtIOSerialPortClass *k = VIRTIO_SERIAL_PORT_CLASS(klass);
165 k->init = virtconsole_initfn;
166 k->have_data = flush_buf;
167 k->guest_open = guest_open;
168 k->guest_close = guest_close;
171 static DeviceInfo virtserialport_info = {
172 .name = "virtserialport",
173 .size = sizeof(VirtConsole),
174 .props = virtserialport_properties,
175 .class_init = virtserialport_class_init,
178 static void virtserialport_register(void)
180 virtio_serial_port_qdev_register(&virtserialport_info);
182 device_init(virtserialport_register)