2 * A bus for connecting virtio serial and console ports
4 * Copyright (C) 2009, 2010 Red Hat, Inc.
7 * Amit Shah <amit.shah@redhat.com>
9 * Some earlier parts are:
10 * Copyright IBM, Corp. 2008
12 * Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
14 * This work is licensed under the terms of the GNU GPL, version 2. See
15 * the COPYING file in the top-level directory.
20 #include "qemu-queue.h"
22 #include "virtio-serial.h"
24 /* The virtio-serial bus on top of which the ports will ride as devices */
25 struct VirtIOSerialBus
{
28 /* This is the parent device that provides the bus for ports. */
31 /* The maximum number of ports that can ride on top of this bus */
32 uint32_t max_nr_ports
;
38 VirtQueue
*c_ivq
, *c_ovq
;
39 /* Arrays of ivqs and ovqs: one per port */
40 VirtQueue
**ivqs
, **ovqs
;
46 QTAILQ_HEAD(, VirtIOSerialPort
) ports
;
48 /* bitmap for identifying active ports */
51 struct virtio_console_config config
;
54 static VirtIOSerialPort
*find_port_by_id(VirtIOSerial
*vser
, uint32_t id
)
56 VirtIOSerialPort
*port
;
58 if (id
== VIRTIO_CONSOLE_BAD_ID
) {
62 QTAILQ_FOREACH(port
, &vser
->ports
, next
) {
69 static VirtIOSerialPort
*find_port_by_vq(VirtIOSerial
*vser
, VirtQueue
*vq
)
71 VirtIOSerialPort
*port
;
73 QTAILQ_FOREACH(port
, &vser
->ports
, next
) {
74 if (port
->ivq
== vq
|| port
->ovq
== vq
)
80 static bool use_multiport(VirtIOSerial
*vser
)
82 return vser
->vdev
.guest_features
& (1 << VIRTIO_CONSOLE_F_MULTIPORT
);
85 static size_t write_to_port(VirtIOSerialPort
*port
,
86 const uint8_t *buf
, size_t size
)
88 VirtQueueElement elem
;
93 if (!virtio_queue_ready(vq
)) {
98 while (offset
< size
) {
101 if (!virtqueue_pop(vq
, &elem
)) {
105 len
= iov_from_buf(elem
.in_sg
, elem
.in_num
,
106 buf
+ offset
, size
- offset
);
109 virtqueue_push(vq
, &elem
, len
);
112 virtio_notify(&port
->vser
->vdev
, vq
);
116 static void discard_vq_data(VirtQueue
*vq
, VirtIODevice
*vdev
)
118 VirtQueueElement elem
;
120 if (!virtio_queue_ready(vq
)) {
123 while (virtqueue_pop(vq
, &elem
)) {
124 virtqueue_push(vq
, &elem
, 0);
126 virtio_notify(vdev
, vq
);
129 static void do_flush_queued_data(VirtIOSerialPort
*port
, VirtQueue
*vq
,
133 assert(virtio_queue_ready(vq
));
135 while (!port
->throttled
) {
138 /* Pop an elem only if we haven't left off a previous one mid-way */
139 if (!port
->elem
.out_num
) {
140 if (!virtqueue_pop(vq
, &port
->elem
)) {
144 port
->iov_offset
= 0;
147 for (i
= port
->iov_idx
; i
< port
->elem
.out_num
; i
++) {
151 buf_size
= port
->elem
.out_sg
[i
].iov_len
- port
->iov_offset
;
152 ret
= port
->info
->have_data(port
,
153 port
->elem
.out_sg
[i
].iov_base
156 if (ret
< 0 && ret
!= -EAGAIN
) {
157 /* We don't handle any other type of errors here */
160 if (ret
== -EAGAIN
|| (ret
>= 0 && ret
< buf_size
)) {
161 virtio_serial_throttle_port(port
, true);
164 port
->iov_offset
+= ret
;
168 port
->iov_offset
= 0;
170 if (port
->throttled
) {
173 virtqueue_push(vq
, &port
->elem
, 0);
174 port
->elem
.out_num
= 0;
176 virtio_notify(vdev
, vq
);
179 static void flush_queued_data(VirtIOSerialPort
*port
)
183 if (!virtio_queue_ready(port
->ovq
)) {
186 do_flush_queued_data(port
, port
->ovq
, &port
->vser
->vdev
);
189 static size_t send_control_msg(VirtIOSerialPort
*port
, void *buf
, size_t len
)
191 VirtQueueElement elem
;
193 struct virtio_console_control
*cpkt
;
195 vq
= port
->vser
->c_ivq
;
196 if (!virtio_queue_ready(vq
)) {
199 if (!virtqueue_pop(vq
, &elem
)) {
203 cpkt
= (struct virtio_console_control
*)buf
;
204 stl_p(&cpkt
->id
, port
->id
);
205 memcpy(elem
.in_sg
[0].iov_base
, buf
, len
);
207 virtqueue_push(vq
, &elem
, len
);
208 virtio_notify(&port
->vser
->vdev
, vq
);
212 static size_t send_control_event(VirtIOSerialPort
*port
, uint16_t event
,
215 struct virtio_console_control cpkt
;
217 stw_p(&cpkt
.event
, event
);
218 stw_p(&cpkt
.value
, value
);
220 return send_control_msg(port
, &cpkt
, sizeof(cpkt
));
223 /* Functions for use inside qemu to open and read from/write to ports */
224 int virtio_serial_open(VirtIOSerialPort
*port
)
226 /* Don't allow opening an already-open port */
227 if (port
->host_connected
) {
230 /* Send port open notification to the guest */
231 port
->host_connected
= true;
232 send_control_event(port
, VIRTIO_CONSOLE_PORT_OPEN
, 1);
237 int virtio_serial_close(VirtIOSerialPort
*port
)
239 port
->host_connected
= false;
241 * If there's any data the guest sent which the app didn't
242 * consume, reset the throttling flag and discard the data.
244 port
->throttled
= false;
245 discard_vq_data(port
->ovq
, &port
->vser
->vdev
);
247 send_control_event(port
, VIRTIO_CONSOLE_PORT_OPEN
, 0);
252 /* Individual ports/apps call this function to write to the guest. */
253 ssize_t
virtio_serial_write(VirtIOSerialPort
*port
, const uint8_t *buf
,
256 if (!port
|| !port
->host_connected
|| !port
->guest_connected
) {
259 return write_to_port(port
, buf
, size
);
263 * Readiness of the guest to accept data on a port.
264 * Returns max. data the guest can receive
266 size_t virtio_serial_guest_ready(VirtIOSerialPort
*port
)
268 VirtQueue
*vq
= port
->ivq
;
270 if (!virtio_queue_ready(vq
) ||
271 !(port
->vser
->vdev
.status
& VIRTIO_CONFIG_S_DRIVER_OK
) ||
272 virtio_queue_empty(vq
)) {
275 if (use_multiport(port
->vser
) && !port
->guest_connected
) {
279 if (virtqueue_avail_bytes(vq
, 4096, 0)) {
282 if (virtqueue_avail_bytes(vq
, 1, 0)) {
288 void virtio_serial_throttle_port(VirtIOSerialPort
*port
, bool throttle
)
294 port
->throttled
= throttle
;
299 flush_queued_data(port
);
302 /* Guest wants to notify us of some event */
303 static void handle_control_message(VirtIOSerial
*vser
, void *buf
, size_t len
)
305 struct VirtIOSerialPort
*port
;
306 struct virtio_console_control cpkt
, *gcpkt
;
312 if (len
< sizeof(cpkt
)) {
313 /* The guest sent an invalid control packet */
317 cpkt
.event
= lduw_p(&gcpkt
->event
);
318 cpkt
.value
= lduw_p(&gcpkt
->value
);
320 port
= find_port_by_id(vser
, ldl_p(&gcpkt
->id
));
321 if (!port
&& cpkt
.event
!= VIRTIO_CONSOLE_DEVICE_READY
)
325 case VIRTIO_CONSOLE_DEVICE_READY
:
327 error_report("virtio-serial-bus: Guest failure in adding device %s\n",
328 vser
->bus
->qbus
.name
);
332 * The device is up, we can now tell the device about all the
333 * ports we have here.
335 QTAILQ_FOREACH(port
, &vser
->ports
, next
) {
336 send_control_event(port
, VIRTIO_CONSOLE_PORT_ADD
, 1);
340 case VIRTIO_CONSOLE_PORT_READY
:
342 error_report("virtio-serial-bus: Guest failure in adding port %u for device %s\n",
343 port
->id
, vser
->bus
->qbus
.name
);
347 * Now that we know the guest asked for the port name, we're
348 * sure the guest has initialised whatever state is necessary
349 * for this port. Now's a good time to let the guest know if
350 * this port is a console port so that the guest can hook it
353 if (port
->is_console
) {
354 send_control_event(port
, VIRTIO_CONSOLE_CONSOLE_PORT
, 1);
358 stw_p(&cpkt
.event
, VIRTIO_CONSOLE_PORT_NAME
);
359 stw_p(&cpkt
.value
, 1);
361 buffer_len
= sizeof(cpkt
) + strlen(port
->name
) + 1;
362 buffer
= qemu_malloc(buffer_len
);
364 memcpy(buffer
, &cpkt
, sizeof(cpkt
));
365 memcpy(buffer
+ sizeof(cpkt
), port
->name
, strlen(port
->name
));
366 buffer
[buffer_len
- 1] = 0;
368 send_control_msg(port
, buffer
, buffer_len
);
372 if (port
->host_connected
) {
373 send_control_event(port
, VIRTIO_CONSOLE_PORT_OPEN
, 1);
377 * When the guest has asked us for this information it means
378 * the guest is all setup and has its virtqueues
379 * initialised. If some app is interested in knowing about
380 * this event, let it know.
382 if (port
->info
->guest_ready
) {
383 port
->info
->guest_ready(port
);
387 case VIRTIO_CONSOLE_PORT_OPEN
:
388 port
->guest_connected
= cpkt
.value
;
389 if (cpkt
.value
&& port
->info
->guest_open
) {
390 /* Send the guest opened notification if an app is interested */
391 port
->info
->guest_open(port
);
394 if (!cpkt
.value
&& port
->info
->guest_close
) {
395 /* Send the guest closed notification if an app is interested */
396 port
->info
->guest_close(port
);
402 static void control_in(VirtIODevice
*vdev
, VirtQueue
*vq
)
406 static void control_out(VirtIODevice
*vdev
, VirtQueue
*vq
)
408 VirtQueueElement elem
;
413 vser
= DO_UPCAST(VirtIOSerial
, vdev
, vdev
);
417 while (virtqueue_pop(vq
, &elem
)) {
418 size_t cur_len
, copied
;
420 cur_len
= iov_size(elem
.out_sg
, elem
.out_num
);
422 * Allocate a new buf only if we didn't have one previously or
423 * if the size of the buf differs
428 buf
= qemu_malloc(cur_len
);
431 copied
= iov_to_buf(elem
.out_sg
, elem
.out_num
, buf
, 0, len
);
433 handle_control_message(vser
, buf
, copied
);
434 virtqueue_push(vq
, &elem
, 0);
437 virtio_notify(vdev
, vq
);
440 /* Guest wrote something to some port. */
441 static void handle_output(VirtIODevice
*vdev
, VirtQueue
*vq
)
444 VirtIOSerialPort
*port
;
446 vser
= DO_UPCAST(VirtIOSerial
, vdev
, vdev
);
447 port
= find_port_by_vq(vser
, vq
);
449 if (!port
|| !port
->host_connected
|| !port
->info
->have_data
) {
450 discard_vq_data(vq
, vdev
);
454 if (!port
->throttled
) {
455 do_flush_queued_data(port
, vq
, vdev
);
460 static void handle_input(VirtIODevice
*vdev
, VirtQueue
*vq
)
464 static uint32_t get_features(VirtIODevice
*vdev
, uint32_t features
)
468 vser
= DO_UPCAST(VirtIOSerial
, vdev
, vdev
);
470 if (vser
->bus
->max_nr_ports
> 1) {
471 features
|= (1 << VIRTIO_CONSOLE_F_MULTIPORT
);
476 /* Guest requested config info */
477 static void get_config(VirtIODevice
*vdev
, uint8_t *config_data
)
481 vser
= DO_UPCAST(VirtIOSerial
, vdev
, vdev
);
482 memcpy(config_data
, &vser
->config
, sizeof(struct virtio_console_config
));
485 static void set_config(VirtIODevice
*vdev
, const uint8_t *config_data
)
487 struct virtio_console_config config
;
489 memcpy(&config
, config_data
, sizeof(config
));
492 static void virtio_serial_save(QEMUFile
*f
, void *opaque
)
494 VirtIOSerial
*s
= opaque
;
495 VirtIOSerialPort
*port
;
496 uint32_t nr_active_ports
;
499 /* The virtio device */
500 virtio_save(&s
->vdev
, f
);
502 /* The config space */
503 qemu_put_be16s(f
, &s
->config
.cols
);
504 qemu_put_be16s(f
, &s
->config
.rows
);
506 qemu_put_be32s(f
, &s
->config
.max_nr_ports
);
510 for (i
= 0; i
< (s
->config
.max_nr_ports
+ 31) / 32; i
++) {
511 qemu_put_be32s(f
, &s
->ports_map
[i
]);
517 QTAILQ_FOREACH(port
, &s
->ports
, next
) {
521 qemu_put_be32s(f
, &nr_active_ports
);
524 * Items in struct VirtIOSerialPort.
526 QTAILQ_FOREACH(port
, &s
->ports
, next
) {
527 uint32_t elem_popped
;
529 qemu_put_be32s(f
, &port
->id
);
530 qemu_put_byte(f
, port
->guest_connected
);
531 qemu_put_byte(f
, port
->host_connected
);
534 if (port
->elem
.out_num
) {
537 qemu_put_be32s(f
, &elem_popped
);
539 qemu_put_be32s(f
, &port
->iov_idx
);
540 qemu_put_be64s(f
, &port
->iov_offset
);
542 qemu_put_buffer(f
, (unsigned char *)&port
->elem
,
548 static int virtio_serial_load(QEMUFile
*f
, void *opaque
, int version_id
)
550 VirtIOSerial
*s
= opaque
;
551 VirtIOSerialPort
*port
;
552 uint32_t max_nr_ports
, nr_active_ports
, ports_map
;
555 if (version_id
> 3) {
559 /* The virtio device */
560 virtio_load(&s
->vdev
, f
);
562 if (version_id
< 2) {
566 /* The config space */
567 qemu_get_be16s(f
, &s
->config
.cols
);
568 qemu_get_be16s(f
, &s
->config
.rows
);
570 qemu_get_be32s(f
, &max_nr_ports
);
571 if (max_nr_ports
> s
->config
.max_nr_ports
) {
572 /* Source could have had more ports than us. Fail migration. */
576 for (i
= 0; i
< (max_nr_ports
+ 31) / 32; i
++) {
577 qemu_get_be32s(f
, &ports_map
);
579 if (ports_map
!= s
->ports_map
[i
]) {
581 * Ports active on source and destination don't
582 * match. Fail migration.
588 qemu_get_be32s(f
, &nr_active_ports
);
590 /* Items in struct VirtIOSerialPort */
591 for (i
= 0; i
< nr_active_ports
; i
++) {
595 id
= qemu_get_be32(f
);
596 port
= find_port_by_id(s
, id
);
598 port
->guest_connected
= qemu_get_byte(f
);
599 host_connected
= qemu_get_byte(f
);
600 if (host_connected
!= port
->host_connected
) {
602 * We have to let the guest know of the host connection
605 send_control_event(port
, VIRTIO_CONSOLE_PORT_OPEN
,
606 port
->host_connected
);
609 if (version_id
> 2) {
610 uint32_t elem_popped
;
612 qemu_get_be32s(f
, &elem_popped
);
614 qemu_get_be32s(f
, &port
->iov_idx
);
615 qemu_get_be64s(f
, &port
->iov_offset
);
617 qemu_get_buffer(f
, (unsigned char *)&port
->elem
,
619 virtqueue_map_sg(port
->elem
.in_sg
, port
->elem
.in_addr
,
620 port
->elem
.in_num
, 1);
621 virtqueue_map_sg(port
->elem
.out_sg
, port
->elem
.out_addr
,
622 port
->elem
.out_num
, 1);
625 * Port was throttled on source machine. Let's
626 * unthrottle it here so data starts flowing again.
628 virtio_serial_throttle_port(port
, false);
635 static void virtser_bus_dev_print(Monitor
*mon
, DeviceState
*qdev
, int indent
);
637 static struct BusInfo virtser_bus_info
= {
638 .name
= "virtio-serial-bus",
639 .size
= sizeof(VirtIOSerialBus
),
640 .print_dev
= virtser_bus_dev_print
,
643 static VirtIOSerialBus
*virtser_bus_new(DeviceState
*dev
)
645 VirtIOSerialBus
*bus
;
647 bus
= FROM_QBUS(VirtIOSerialBus
, qbus_create(&virtser_bus_info
, dev
, NULL
));
648 bus
->qbus
.allow_hotplug
= 1;
653 static void virtser_bus_dev_print(Monitor
*mon
, DeviceState
*qdev
, int indent
)
655 VirtIOSerialPort
*port
= DO_UPCAST(VirtIOSerialPort
, dev
, qdev
);
657 monitor_printf(mon
, "%*s dev-prop-int: id: %u\n",
658 indent
, "", port
->id
);
659 monitor_printf(mon
, "%*s dev-prop-int: guest_connected: %d\n",
660 indent
, "", port
->guest_connected
);
661 monitor_printf(mon
, "%*s dev-prop-int: host_connected: %d\n",
662 indent
, "", port
->host_connected
);
663 monitor_printf(mon
, "%*s dev-prop-int: throttled: %d\n",
664 indent
, "", port
->throttled
);
667 /* This function is only used if a port id is not provided by the user */
668 static uint32_t find_free_port_id(VirtIOSerial
*vser
)
672 for (i
= 0; i
< (vser
->config
.max_nr_ports
+ 31) / 32; i
++) {
675 map
= vser
->ports_map
[i
];
678 return (bit
- 1) + i
* 32;
681 return VIRTIO_CONSOLE_BAD_ID
;
684 static void mark_port_added(VirtIOSerial
*vser
, uint32_t port_id
)
689 vser
->ports_map
[i
] |= 1U << (port_id
% 32);
692 static void add_port(VirtIOSerial
*vser
, uint32_t port_id
)
694 mark_port_added(vser
, port_id
);
696 send_control_event(find_port_by_id(vser
, port_id
),
697 VIRTIO_CONSOLE_PORT_ADD
, 1);
700 static void remove_port(VirtIOSerial
*vser
, uint32_t port_id
)
702 VirtIOSerialPort
*port
;
706 vser
->ports_map
[i
] &= ~(1U << (port_id
% 32));
708 port
= find_port_by_id(vser
, port_id
);
709 /* Flush out any unconsumed buffers first */
710 discard_vq_data(port
->ovq
, &port
->vser
->vdev
);
712 send_control_event(port
, VIRTIO_CONSOLE_PORT_REMOVE
, 1);
715 static int virtser_port_qdev_init(DeviceState
*qdev
, DeviceInfo
*base
)
717 VirtIOSerialPort
*port
= DO_UPCAST(VirtIOSerialPort
, dev
, qdev
);
718 VirtIOSerialPortInfo
*info
= DO_UPCAST(VirtIOSerialPortInfo
, qdev
, base
);
719 VirtIOSerialBus
*bus
= DO_UPCAST(VirtIOSerialBus
, qbus
, qdev
->parent_bus
);
723 port
->vser
= bus
->vser
;
726 * Is the first console port we're seeing? If so, put it up at
727 * location 0. This is done for backward compatibility (old
730 plugging_port0
= port
->is_console
&& !find_port_by_id(port
->vser
, 0);
732 if (find_port_by_id(port
->vser
, port
->id
)) {
733 error_report("virtio-serial-bus: A port already exists at id %u\n",
738 if (port
->id
== VIRTIO_CONSOLE_BAD_ID
) {
739 if (plugging_port0
) {
742 port
->id
= find_free_port_id(port
->vser
);
743 if (port
->id
== VIRTIO_CONSOLE_BAD_ID
) {
744 error_report("virtio-serial-bus: Maximum port limit for this device reached\n");
750 if (port
->id
>= port
->vser
->config
.max_nr_ports
) {
751 error_report("virtio-serial-bus: Out-of-range port id specified, max. allowed: %u\n",
752 port
->vser
->config
.max_nr_ports
- 1);
757 ret
= info
->init(port
);
762 if (!use_multiport(port
->vser
)) {
764 * Allow writes to guest in this case; we have no way of
765 * knowing if a guest port is connected.
767 port
->guest_connected
= true;
770 port
->elem
.out_num
= 0;
772 QTAILQ_INSERT_TAIL(&port
->vser
->ports
, port
, next
);
773 port
->ivq
= port
->vser
->ivqs
[port
->id
];
774 port
->ovq
= port
->vser
->ovqs
[port
->id
];
776 add_port(port
->vser
, port
->id
);
778 /* Send an update to the guest about this new port added */
779 virtio_notify_config(&port
->vser
->vdev
);
784 static int virtser_port_qdev_exit(DeviceState
*qdev
)
786 VirtIOSerialPort
*port
= DO_UPCAST(VirtIOSerialPort
, dev
, qdev
);
787 VirtIOSerial
*vser
= port
->vser
;
789 remove_port(port
->vser
, port
->id
);
791 QTAILQ_REMOVE(&vser
->ports
, port
, next
);
793 if (port
->info
->exit
)
794 port
->info
->exit(port
);
799 void virtio_serial_port_qdev_register(VirtIOSerialPortInfo
*info
)
801 info
->qdev
.init
= virtser_port_qdev_init
;
802 info
->qdev
.bus_info
= &virtser_bus_info
;
803 info
->qdev
.exit
= virtser_port_qdev_exit
;
804 info
->qdev
.unplug
= qdev_simple_unplug_cb
;
805 qdev_register(&info
->qdev
);
808 VirtIODevice
*virtio_serial_init(DeviceState
*dev
, virtio_serial_conf
*conf
)
812 uint32_t i
, max_supported_ports
;
814 if (!conf
->max_virtserial_ports
)
817 /* Each port takes 2 queues, and one pair is for the control queue */
818 max_supported_ports
= VIRTIO_PCI_QUEUE_MAX
/ 2 - 1;
820 if (conf
->max_virtserial_ports
> max_supported_ports
) {
821 error_report("maximum ports supported: %u", max_supported_ports
);
825 vdev
= virtio_common_init("virtio-serial", VIRTIO_ID_CONSOLE
,
826 sizeof(struct virtio_console_config
),
827 sizeof(VirtIOSerial
));
829 vser
= DO_UPCAST(VirtIOSerial
, vdev
, vdev
);
831 /* Spawn a new virtio-serial bus on which the ports will ride as devices */
832 vser
->bus
= virtser_bus_new(dev
);
833 vser
->bus
->vser
= vser
;
834 QTAILQ_INIT(&vser
->ports
);
836 vser
->bus
->max_nr_ports
= conf
->max_virtserial_ports
;
837 vser
->ivqs
= qemu_malloc(conf
->max_virtserial_ports
* sizeof(VirtQueue
*));
838 vser
->ovqs
= qemu_malloc(conf
->max_virtserial_ports
* sizeof(VirtQueue
*));
840 /* Add a queue for host to guest transfers for port 0 (backward compat) */
841 vser
->ivqs
[0] = virtio_add_queue(vdev
, 128, handle_input
);
842 /* Add a queue for guest to host transfers for port 0 (backward compat) */
843 vser
->ovqs
[0] = virtio_add_queue(vdev
, 128, handle_output
);
845 /* TODO: host to guest notifications can get dropped
846 * if the queue fills up. Implement queueing in host,
847 * this might also make it possible to reduce the control
848 * queue size: as guest preposts buffers there,
849 * this will save 4Kbyte of guest memory per entry. */
851 /* control queue: host to guest */
852 vser
->c_ivq
= virtio_add_queue(vdev
, 32, control_in
);
853 /* control queue: guest to host */
854 vser
->c_ovq
= virtio_add_queue(vdev
, 32, control_out
);
856 for (i
= 1; i
< vser
->bus
->max_nr_ports
; i
++) {
857 /* Add a per-port queue for host to guest transfers */
858 vser
->ivqs
[i
] = virtio_add_queue(vdev
, 128, handle_input
);
859 /* Add a per-per queue for guest to host transfers */
860 vser
->ovqs
[i
] = virtio_add_queue(vdev
, 128, handle_output
);
863 vser
->config
.max_nr_ports
= conf
->max_virtserial_ports
;
864 vser
->ports_map
= qemu_mallocz(((conf
->max_virtserial_ports
+ 31) / 32)
865 * sizeof(vser
->ports_map
[0]));
867 * Reserve location 0 for a console port for backward compat
868 * (old kernel, new qemu)
870 mark_port_added(vser
, 0);
872 vser
->vdev
.get_features
= get_features
;
873 vser
->vdev
.get_config
= get_config
;
874 vser
->vdev
.set_config
= set_config
;
879 * Register for the savevm section with the virtio-console name
880 * to preserve backward compat
882 register_savevm(dev
, "virtio-console", -1, 3, virtio_serial_save
,
883 virtio_serial_load
, vser
);
888 void virtio_serial_exit(VirtIODevice
*vdev
)
890 VirtIOSerial
*vser
= DO_UPCAST(VirtIOSerial
, vdev
, vdev
);
892 unregister_savevm(vser
->qdev
, "virtio-console", vser
);
894 qemu_free(vser
->ivqs
);
895 qemu_free(vser
->ovqs
);
896 qemu_free(vser
->ports_map
);
898 virtio_cleanup(vdev
);