2 * Virtio Console and Generic Serial Port Devices
4 * Copyright Red Hat, Inc. 2009, 2010
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 "char/char.h"
14 #include "qemu/error-report.h"
16 #include "hw/virtio-serial.h"
18 typedef struct VirtConsole
{
19 VirtIOSerialPort port
;
24 * Callback function that's called from chardevs when backend becomes
27 static gboolean
chr_write_unblocked(GIOChannel
*chan
, GIOCondition cond
,
30 VirtConsole
*vcon
= opaque
;
32 virtio_serial_throttle_port(&vcon
->port
, false);
36 /* Callback function that's called when the guest sends us data */
37 static ssize_t
flush_buf(VirtIOSerialPort
*port
, const uint8_t *buf
, size_t len
)
39 VirtConsole
*vcon
= DO_UPCAST(VirtConsole
, port
, port
);
43 /* If there's no backend, we can just say we consumed all data. */
47 ret
= qemu_chr_fe_write(vcon
->chr
, buf
, len
);
48 trace_virtio_console_flush_buf(port
->id
, len
, ret
);
51 VirtIOSerialPortClass
*k
= VIRTIO_SERIAL_PORT_GET_CLASS(port
);
54 * Ideally we'd get a better error code than just -1, but
55 * that's what the chardev interface gives us right now. If
56 * we had a finer-grained message, like -EPIPE, we could close
61 virtio_serial_throttle_port(port
, true);
62 qemu_chr_fe_add_watch(vcon
->chr
, G_IO_OUT
, chr_write_unblocked
,
69 /* Callback function that's called when the guest opens the port */
70 static void guest_open(VirtIOSerialPort
*port
)
72 VirtConsole
*vcon
= DO_UPCAST(VirtConsole
, port
, port
);
77 qemu_chr_fe_open(vcon
->chr
);
80 /* Callback function that's called when the guest closes the port */
81 static void guest_close(VirtIOSerialPort
*port
)
83 VirtConsole
*vcon
= DO_UPCAST(VirtConsole
, port
, port
);
88 qemu_chr_fe_close(vcon
->chr
);
91 /* Readiness of the guest to accept data on a port */
92 static int chr_can_read(void *opaque
)
94 VirtConsole
*vcon
= opaque
;
96 return virtio_serial_guest_ready(&vcon
->port
);
99 /* Send data from a char device over to the guest */
100 static void chr_read(void *opaque
, const uint8_t *buf
, int size
)
102 VirtConsole
*vcon
= opaque
;
104 trace_virtio_console_chr_read(vcon
->port
.id
, size
);
105 virtio_serial_write(&vcon
->port
, buf
, size
);
108 static void chr_event(void *opaque
, int event
)
110 VirtConsole
*vcon
= opaque
;
112 trace_virtio_console_chr_event(vcon
->port
.id
, event
);
114 case CHR_EVENT_OPENED
:
115 virtio_serial_open(&vcon
->port
);
117 case CHR_EVENT_CLOSED
:
118 virtio_serial_close(&vcon
->port
);
123 static int virtconsole_initfn(VirtIOSerialPort
*port
)
125 VirtConsole
*vcon
= DO_UPCAST(VirtConsole
, port
, port
);
126 VirtIOSerialPortClass
*k
= VIRTIO_SERIAL_PORT_GET_CLASS(port
);
128 if (port
->id
== 0 && !k
->is_console
) {
129 error_report("Port number 0 on virtio-serial devices reserved for virtconsole devices for backward compatibility.");
134 qemu_chr_add_handlers(vcon
->chr
, chr_can_read
, chr_read
, chr_event
,
141 static Property virtconsole_properties
[] = {
142 DEFINE_PROP_CHR("chardev", VirtConsole
, chr
),
143 DEFINE_PROP_END_OF_LIST(),
146 static void virtconsole_class_init(ObjectClass
*klass
, void *data
)
148 DeviceClass
*dc
= DEVICE_CLASS(klass
);
149 VirtIOSerialPortClass
*k
= VIRTIO_SERIAL_PORT_CLASS(klass
);
151 k
->is_console
= true;
152 k
->init
= virtconsole_initfn
;
153 k
->have_data
= flush_buf
;
154 k
->guest_open
= guest_open
;
155 k
->guest_close
= guest_close
;
156 dc
->props
= virtconsole_properties
;
159 static const TypeInfo virtconsole_info
= {
160 .name
= "virtconsole",
161 .parent
= TYPE_VIRTIO_SERIAL_PORT
,
162 .instance_size
= sizeof(VirtConsole
),
163 .class_init
= virtconsole_class_init
,
166 static Property virtserialport_properties
[] = {
167 DEFINE_PROP_CHR("chardev", VirtConsole
, chr
),
168 DEFINE_PROP_END_OF_LIST(),
171 static void virtserialport_class_init(ObjectClass
*klass
, void *data
)
173 DeviceClass
*dc
= DEVICE_CLASS(klass
);
174 VirtIOSerialPortClass
*k
= VIRTIO_SERIAL_PORT_CLASS(klass
);
176 k
->init
= virtconsole_initfn
;
177 k
->have_data
= flush_buf
;
178 k
->guest_open
= guest_open
;
179 k
->guest_close
= guest_close
;
180 dc
->props
= virtserialport_properties
;
183 static const TypeInfo virtserialport_info
= {
184 .name
= "virtserialport",
185 .parent
= TYPE_VIRTIO_SERIAL_PORT
,
186 .instance_size
= sizeof(VirtConsole
),
187 .class_init
= virtserialport_class_init
,
190 static void virtconsole_register_types(void)
192 type_register_static(&virtconsole_info
);
193 type_register_static(&virtserialport_info
);
196 type_init(virtconsole_register_types
)