blob: 62624ec7802ee843df47fbe605c6ee6cd328d514 [file] [log] [blame]
Amit Shah98b19252010-01-20 00:36:52 +05301/*
2 * Virtio Console and Generic Serial Port Devices
3 *
Amit Shah71c092e2010-04-27 18:04:02 +05304 * Copyright Red Hat, Inc. 2009, 2010
Amit Shah98b19252010-01-20 00:36:52 +05305 *
6 * Authors:
7 * Amit Shah <amit.shah@redhat.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 */
12
13#include "qemu-char.h"
14#include "virtio-serial.h"
15
16typedef struct VirtConsole {
17 VirtIOSerialPort port;
18 CharDriverState *chr;
19} VirtConsole;
20
21
22/* Callback function that's called when the guest sends us data */
Amit Shahe300ac22010-12-13 17:50:07 +053023static ssize_t flush_buf(VirtIOSerialPort *port, const uint8_t *buf, size_t len)
Amit Shah98b19252010-01-20 00:36:52 +053024{
25 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
Amit Shah98b19252010-01-20 00:36:52 +053026
Amit Shahe300ac22010-12-13 17:50:07 +053027 return qemu_chr_write(vcon->chr, buf, len);
Amit Shah98b19252010-01-20 00:36:52 +053028}
29
30/* Readiness of the guest to accept data on a port */
31static int chr_can_read(void *opaque)
32{
33 VirtConsole *vcon = opaque;
34
35 return virtio_serial_guest_ready(&vcon->port);
36}
37
38/* Send data from a char device over to the guest */
39static void chr_read(void *opaque, const uint8_t *buf, int size)
40{
41 VirtConsole *vcon = opaque;
42
43 virtio_serial_write(&vcon->port, buf, size);
44}
45
46static void chr_event(void *opaque, int event)
47{
48 VirtConsole *vcon = opaque;
49
50 switch (event) {
Amit Shah28eaf462010-12-10 17:10:43 +053051 case CHR_EVENT_OPENED:
Amit Shah98b19252010-01-20 00:36:52 +053052 virtio_serial_open(&vcon->port);
53 break;
Amit Shah98b19252010-01-20 00:36:52 +053054 case CHR_EVENT_CLOSED:
55 virtio_serial_close(&vcon->port);
56 break;
57 }
58}
59
Amit Shahcbe77b62010-04-05 14:20:29 +053060static int generic_port_init(VirtConsole *vcon, VirtIOSerialDevice *dev)
61{
62 vcon->port.info = dev->info;
63
64 if (vcon->chr) {
65 qemu_chr_add_handlers(vcon->chr, chr_can_read, chr_read, chr_event,
66 vcon);
67 vcon->port.info->have_data = flush_buf;
68 }
69 return 0;
70}
71
Amit Shah98b19252010-01-20 00:36:52 +053072/* Virtio Console Ports */
73static int virtconsole_initfn(VirtIOSerialDevice *dev)
74{
75 VirtIOSerialPort *port = DO_UPCAST(VirtIOSerialPort, dev, &dev->qdev);
76 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
77
Amit Shah98b19252010-01-20 00:36:52 +053078 port->is_console = true;
Amit Shahcbe77b62010-04-05 14:20:29 +053079 return generic_port_init(vcon, dev);
Amit Shah98b19252010-01-20 00:36:52 +053080}
81
82static int virtconsole_exitfn(VirtIOSerialDevice *dev)
83{
84 VirtIOSerialPort *port = DO_UPCAST(VirtIOSerialPort, dev, &dev->qdev);
85 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
86
87 if (vcon->chr) {
88 port->info->have_data = NULL;
89 qemu_chr_close(vcon->chr);
90 }
91
92 return 0;
93}
94
95static 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),
Amit Shah055b8892010-04-27 18:03:59 +0530102 DEFINE_PROP_UINT32("nr", VirtConsole, port.id, VIRTIO_CONSOLE_BAD_ID),
Amit Shah98b19252010-01-20 00:36:52 +0530103 DEFINE_PROP_CHR("chardev", VirtConsole, chr),
Amit Shah160600f2010-01-20 00:36:54 +0530104 DEFINE_PROP_STRING("name", VirtConsole, port.name),
Amit Shah98b19252010-01-20 00:36:52 +0530105 DEFINE_PROP_END_OF_LIST(),
106 },
107};
108
109static void virtconsole_register(void)
110{
111 virtio_serial_port_qdev_register(&virtconsole_info);
112}
113device_init(virtconsole_register)
Amit Shahb60c4702010-01-20 00:36:56 +0530114
115/* Generic Virtio Serial Ports */
116static int virtserialport_initfn(VirtIOSerialDevice *dev)
117{
118 VirtIOSerialPort *port = DO_UPCAST(VirtIOSerialPort, dev, &dev->qdev);
119 VirtConsole *vcon = DO_UPCAST(VirtConsole, port, port);
120
Amit Shahcbe77b62010-04-05 14:20:29 +0530121 return generic_port_init(vcon, dev);
Amit Shahb60c4702010-01-20 00:36:56 +0530122}
123
124static VirtIOSerialPortInfo virtserialport_info = {
125 .qdev.name = "virtserialport",
126 .qdev.size = sizeof(VirtConsole),
127 .init = virtserialport_initfn,
128 .exit = virtconsole_exitfn,
129 .qdev.props = (Property[]) {
Amit Shah055b8892010-04-27 18:03:59 +0530130 DEFINE_PROP_UINT32("nr", VirtConsole, port.id, VIRTIO_CONSOLE_BAD_ID),
Amit Shahb60c4702010-01-20 00:36:56 +0530131 DEFINE_PROP_CHR("chardev", VirtConsole, chr),
132 DEFINE_PROP_STRING("name", VirtConsole, port.name),
133 DEFINE_PROP_END_OF_LIST(),
134 },
135};
136
137static void virtserialport_register(void)
138{
139 virtio_serial_port_qdev_register(&virtserialport_info);
140}
141device_init(virtserialport_register)