xref: /kvmtool/include/linux/virtio_console.h (revision 1a992bbaab08994e12a7594b0c39535152093a6b)
1*1a992bbaSAndre Przywara /*
2*1a992bbaSAndre Przywara  * This header, excluding the #ifdef __KERNEL__ part, is BSD licensed so
3*1a992bbaSAndre Przywara  * anyone can use the definitions to implement compatible drivers/servers:
4*1a992bbaSAndre Przywara  *
5*1a992bbaSAndre Przywara  *
6*1a992bbaSAndre Przywara  * Redistribution and use in source and binary forms, with or without
7*1a992bbaSAndre Przywara  * modification, are permitted provided that the following conditions
8*1a992bbaSAndre Przywara  * are met:
9*1a992bbaSAndre Przywara  * 1. Redistributions of source code must retain the above copyright
10*1a992bbaSAndre Przywara  *    notice, this list of conditions and the following disclaimer.
11*1a992bbaSAndre Przywara  * 2. Redistributions in binary form must reproduce the above copyright
12*1a992bbaSAndre Przywara  *    notice, this list of conditions and the following disclaimer in the
13*1a992bbaSAndre Przywara  *    documentation and/or other materials provided with the distribution.
14*1a992bbaSAndre Przywara  * 3. Neither the name of IBM nor the names of its contributors
15*1a992bbaSAndre Przywara  *    may be used to endorse or promote products derived from this software
16*1a992bbaSAndre Przywara  *    without specific prior written permission.
17*1a992bbaSAndre Przywara  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
18*1a992bbaSAndre Przywara  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19*1a992bbaSAndre Przywara  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20*1a992bbaSAndre Przywara  * ARE DISCLAIMED.  IN NO EVENT SHALL IBM OR CONTRIBUTORS BE LIABLE
21*1a992bbaSAndre Przywara  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22*1a992bbaSAndre Przywara  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23*1a992bbaSAndre Przywara  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24*1a992bbaSAndre Przywara  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25*1a992bbaSAndre Przywara  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26*1a992bbaSAndre Przywara  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27*1a992bbaSAndre Przywara  * SUCH DAMAGE.
28*1a992bbaSAndre Przywara  *
29*1a992bbaSAndre Przywara  * Copyright (C) Red Hat, Inc., 2009, 2010, 2011
30*1a992bbaSAndre Przywara  * Copyright (C) Amit Shah <amit.shah@redhat.com>, 2009, 2010, 2011
31*1a992bbaSAndre Przywara  */
32*1a992bbaSAndre Przywara #ifndef _UAPI_LINUX_VIRTIO_CONSOLE_H
33*1a992bbaSAndre Przywara #define _UAPI_LINUX_VIRTIO_CONSOLE_H
34*1a992bbaSAndre Przywara #include <linux/types.h>
35*1a992bbaSAndre Przywara #include <linux/virtio_types.h>
36*1a992bbaSAndre Przywara #include <linux/virtio_ids.h>
37*1a992bbaSAndre Przywara #include <linux/virtio_config.h>
38*1a992bbaSAndre Przywara 
39*1a992bbaSAndre Przywara /* Feature bits */
40*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_F_SIZE	0	/* Does host provide console size? */
41*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_F_MULTIPORT 1	/* Does host provide multiple ports? */
42*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_F_EMERG_WRITE 2 /* Does host support emergency write? */
43*1a992bbaSAndre Przywara 
44*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_BAD_ID		(~(__u32)0)
45*1a992bbaSAndre Przywara 
46*1a992bbaSAndre Przywara struct virtio_console_config {
47*1a992bbaSAndre Przywara 	/* colums of the screens */
48*1a992bbaSAndre Przywara 	__virtio16 cols;
49*1a992bbaSAndre Przywara 	/* rows of the screens */
50*1a992bbaSAndre Przywara 	__virtio16 rows;
51*1a992bbaSAndre Przywara 	/* max. number of ports this device can hold */
52*1a992bbaSAndre Przywara 	__virtio32 max_nr_ports;
53*1a992bbaSAndre Przywara 	/* emergency write register */
54*1a992bbaSAndre Przywara 	__virtio32 emerg_wr;
55*1a992bbaSAndre Przywara } __attribute__((packed));
56*1a992bbaSAndre Przywara 
57*1a992bbaSAndre Przywara /*
58*1a992bbaSAndre Przywara  * A message that's passed between the Host and the Guest for a
59*1a992bbaSAndre Przywara  * particular port.
60*1a992bbaSAndre Przywara  */
61*1a992bbaSAndre Przywara struct virtio_console_control {
62*1a992bbaSAndre Przywara 	__virtio32 id;		/* Port number */
63*1a992bbaSAndre Przywara 	__virtio16 event;	/* The kind of control event (see below) */
64*1a992bbaSAndre Przywara 	__virtio16 value;	/* Extra information for the key */
65*1a992bbaSAndre Przywara };
66*1a992bbaSAndre Przywara 
67*1a992bbaSAndre Przywara /* Some events for control messages */
68*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_DEVICE_READY	0
69*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_PORT_ADD		1
70*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_PORT_REMOVE	2
71*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_PORT_READY	3
72*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_CONSOLE_PORT	4
73*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_RESIZE		5
74*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_PORT_OPEN	6
75*1a992bbaSAndre Przywara #define VIRTIO_CONSOLE_PORT_NAME	7
76*1a992bbaSAndre Przywara 
77*1a992bbaSAndre Przywara 
78*1a992bbaSAndre Przywara #endif /* _UAPI_LINUX_VIRTIO_CONSOLE_H */
79