Statistics
| Branch: | Revision:

root / linux-headers / linux / virtio_config.h @ d4834ff9

History | View | Annotate | Download (2.7 kB)

1 d4834ff9 Alexander Graf
#ifndef _LINUX_VIRTIO_CONFIG_H
2 d4834ff9 Alexander Graf
#define _LINUX_VIRTIO_CONFIG_H
3 51b24e34 Jan Kiszka
/* This header, excluding the #ifdef __KERNEL__ part, is BSD licensed so
4 51b24e34 Jan Kiszka
 * anyone can use the definitions to implement compatible drivers/servers.
5 51b24e34 Jan Kiszka
 *
6 51b24e34 Jan Kiszka
 * Redistribution and use in source and binary forms, with or without
7 51b24e34 Jan Kiszka
 * modification, are permitted provided that the following conditions
8 51b24e34 Jan Kiszka
 * are met:
9 51b24e34 Jan Kiszka
 * 1. Redistributions of source code must retain the above copyright
10 51b24e34 Jan Kiszka
 *    notice, this list of conditions and the following disclaimer.
11 51b24e34 Jan Kiszka
 * 2. Redistributions in binary form must reproduce the above copyright
12 51b24e34 Jan Kiszka
 *    notice, this list of conditions and the following disclaimer in the
13 51b24e34 Jan Kiszka
 *    documentation and/or other materials provided with the distribution.
14 51b24e34 Jan Kiszka
 * 3. Neither the name of IBM nor the names of its contributors
15 51b24e34 Jan Kiszka
 *    may be used to endorse or promote products derived from this software
16 51b24e34 Jan Kiszka
 *    without specific prior written permission.
17 51b24e34 Jan Kiszka
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND
18 51b24e34 Jan Kiszka
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 51b24e34 Jan Kiszka
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 51b24e34 Jan Kiszka
 * ARE DISCLAIMED.  IN NO EVENT SHALL IBM OR CONTRIBUTORS BE LIABLE
21 51b24e34 Jan Kiszka
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 51b24e34 Jan Kiszka
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 51b24e34 Jan Kiszka
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 51b24e34 Jan Kiszka
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 51b24e34 Jan Kiszka
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 51b24e34 Jan Kiszka
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 51b24e34 Jan Kiszka
 * SUCH DAMAGE. */
28 51b24e34 Jan Kiszka
29 51b24e34 Jan Kiszka
/* Virtio devices use a standardized configuration space to define their
30 51b24e34 Jan Kiszka
 * features and pass configuration information, but each implementation can
31 51b24e34 Jan Kiszka
 * store and access that space differently. */
32 51b24e34 Jan Kiszka
#include <linux/types.h>
33 51b24e34 Jan Kiszka
34 51b24e34 Jan Kiszka
/* Status byte for guest to report progress, and synchronize features. */
35 51b24e34 Jan Kiszka
/* We have seen device and processed generic fields (VIRTIO_CONFIG_F_VIRTIO) */
36 51b24e34 Jan Kiszka
#define VIRTIO_CONFIG_S_ACKNOWLEDGE        1
37 51b24e34 Jan Kiszka
/* We have found a driver for the device. */
38 51b24e34 Jan Kiszka
#define VIRTIO_CONFIG_S_DRIVER                2
39 51b24e34 Jan Kiszka
/* Driver has used its parts of the config, and is happy */
40 51b24e34 Jan Kiszka
#define VIRTIO_CONFIG_S_DRIVER_OK        4
41 51b24e34 Jan Kiszka
/* We've given up on this device. */
42 51b24e34 Jan Kiszka
#define VIRTIO_CONFIG_S_FAILED                0x80
43 51b24e34 Jan Kiszka
44 51b24e34 Jan Kiszka
/* Some virtio feature bits (currently bits 28 through 31) are reserved for the
45 51b24e34 Jan Kiszka
 * transport being used (eg. virtio_ring), the rest are per-device feature
46 51b24e34 Jan Kiszka
 * bits. */
47 51b24e34 Jan Kiszka
#define VIRTIO_TRANSPORT_F_START        28
48 51b24e34 Jan Kiszka
#define VIRTIO_TRANSPORT_F_END                32
49 51b24e34 Jan Kiszka
50 51b24e34 Jan Kiszka
/* Do we get callbacks when the ring is completely used, even if we've
51 51b24e34 Jan Kiszka
 * suppressed them? */
52 51b24e34 Jan Kiszka
#define VIRTIO_F_NOTIFY_ON_EMPTY        24
53 51b24e34 Jan Kiszka
54 d4834ff9 Alexander Graf
#endif /* _LINUX_VIRTIO_CONFIG_H */