migration: move some declarations to migration.h
[qemu/lumag.git] / hw / virtio-console.c
blob6b5237b3ce3e15ea41a5e746415c78dd671199d7
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 "virtio-serial.h"
17 typedef struct VirtConsole {
18 VirtIOSerialPort port;
19 CharDriverState *chr;
20 } VirtConsole;
23 /* Callback function that's called when the guest sends us data */
24 static ssize_t flush_buf(VirtIOSerialPort *port, const uint8_t *buf, size_t len)
26 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
28 return qemu_chr_write(vcon->chr, buf, len);
31 /* Readiness of the guest to accept data on a port */
32 static int chr_can_read(void *opaque)
34 VirtConsole *vcon = opaque;
36 return virtio_serial_guest_ready(&vcon->port);
39 /* Send data from a char device over to the guest */
40 static void chr_read(void *opaque, const uint8_t *buf, int size)
42 VirtConsole *vcon = opaque;
44 virtio_serial_write(&vcon->port, buf, size);
47 static void chr_event(void *opaque, int event)
49 VirtConsole *vcon = opaque;
51 switch (event) {
52 case CHR_EVENT_OPENED:
53 virtio_serial_open(&vcon->port);
54 break;
55 case CHR_EVENT_CLOSED:
56 virtio_serial_close(&vcon->port);
57 break;
61 static int generic_port_init(VirtConsole *vcon, VirtIOSerialPort *port)
63 if (vcon->chr) {
64 qemu_chr_add_handlers(vcon->chr, chr_can_read, chr_read, chr_event,
65 vcon);
66 vcon->port.info->have_data = flush_buf;
68 return 0;
71 /* Virtio Console Ports */
72 static int virtconsole_initfn(VirtIOSerialPort *port)
74 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
76 port->is_console = true;
77 return generic_port_init(vcon, port);
80 static int virtconsole_exitfn(VirtIOSerialPort *port)
82 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
84 if (vcon->chr) {
86 * Instead of closing the chardev, free it so it can be used
87 * for other purposes.
89 qemu_chr_add_handlers(vcon->chr, NULL, NULL, NULL, NULL);
92 return 0;
95 static VirtIOSerialPortInfo virtconsole_info = {
96 .qdev.name = "virtconsole",
97 .qdev.size = sizeof(VirtConsole),
98 .init = virtconsole_initfn,
99 .exit = virtconsole_exitfn,
100 .qdev.props = (Property[]) {
101 DEFINE_PROP_UINT8("is_console", VirtConsole, port.is_console, 1),
102 DEFINE_PROP_UINT32("nr", VirtConsole, port.id, VIRTIO_CONSOLE_BAD_ID),
103 DEFINE_PROP_CHR("chardev", VirtConsole, chr),
104 DEFINE_PROP_STRING("name", VirtConsole, port.name),
105 DEFINE_PROP_END_OF_LIST(),
109 static void virtconsole_register(void)
111 virtio_serial_port_qdev_register(&virtconsole_info);
113 device_init(virtconsole_register)
115 /* Generic Virtio Serial Ports */
116 static int virtserialport_initfn(VirtIOSerialPort *port)
118 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
120 if (port->id == 0) {
122 * Disallow a generic port at id 0, that's reserved for
123 * console ports.
125 error_report("Port number 0 on virtio-serial devices reserved for virtconsole devices for backward compatibility.");
126 return -1;
128 return generic_port_init(vcon, port);
131 static VirtIOSerialPortInfo virtserialport_info = {
132 .qdev.name = "virtserialport",
133 .qdev.size = sizeof(VirtConsole),
134 .init = virtserialport_initfn,
135 .exit = virtconsole_exitfn,
136 .qdev.props = (Property[]) {
137 DEFINE_PROP_UINT32("nr", VirtConsole, port.id, VIRTIO_CONSOLE_BAD_ID),
138 DEFINE_PROP_CHR("chardev", VirtConsole, chr),
139 DEFINE_PROP_STRING("name", VirtConsole, port.name),
140 DEFINE_PROP_END_OF_LIST(),
144 static void virtserialport_register(void)
146 virtio_serial_port_qdev_register(&virtserialport_info);
148 device_init(virtserialport_register)