1224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng#ifndef _UAPI_LINUX_VIRTIO_CONFIG_H 2224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng#define _UAPI_LINUX_VIRTIO_CONFIG_H 3224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng/* This header, excluding the #ifdef __KERNEL__ part, is BSD licensed so 4224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * anyone can use the definitions to implement compatible drivers/servers. 5224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * 6224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * Redistribution and use in source and binary forms, with or without 7224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * modification, are permitted provided that the following conditions 8224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * are met: 9224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * 1. Redistributions of source code must retain the above copyright 10224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * notice, this list of conditions and the following disclaimer. 11224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * 2. Redistributions in binary form must reproduce the above copyright 12224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * notice, this list of conditions and the following disclaimer in the 13224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * documentation and/or other materials provided with the distribution. 14224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * 3. Neither the name of IBM nor the names of its contributors 15224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * may be used to endorse or promote products derived from this software 16224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * without specific prior written permission. 17224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND 18224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * ARE DISCLAIMED. IN NO EVENT SHALL IBM OR CONTRIBUTORS BE LIABLE 21224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * SUCH DAMAGE. */ 28224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng 29224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng/* Virtio devices use a standardized configuration space to define their 30224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * features and pass configuration information, but each implementation can 31224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * store and access that space differently. */ 32224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng#include <linux/types.h> 33224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng 34224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng/* Status byte for guest to report progress, and synchronize features. */ 35224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng/* We have seen device and processed generic fields (VIRTIO_CONFIG_F_VIRTIO) */ 36224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng#define VIRTIO_CONFIG_S_ACKNOWLEDGE 1 37224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng/* We have found a driver for the device. */ 38224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng#define VIRTIO_CONFIG_S_DRIVER 2 39224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng/* Driver has used its parts of the config, and is happy */ 40224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng#define VIRTIO_CONFIG_S_DRIVER_OK 4 41224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng/* We've given up on this device. */ 42224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng#define VIRTIO_CONFIG_S_FAILED 0x80 43224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng 44224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng/* Some virtio feature bits (currently bits 28 through 31) are reserved for the 45224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * transport being used (eg. virtio_ring), the rest are per-device feature 46224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * bits. */ 47224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng#define VIRTIO_TRANSPORT_F_START 28 48224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng#define VIRTIO_TRANSPORT_F_END 32 49224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng 50224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng/* Do we get callbacks when the ring is completely used, even if we've 51224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng * suppressed them? */ 52224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng#define VIRTIO_F_NOTIFY_ON_EMPTY 24 53224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng 54e084501669a4e4931c9d648351ecd7d595b81b79Christopher Ferris/* Can the device handle any descriptor layout? */ 55e084501669a4e4931c9d648351ecd7d595b81b79Christopher Ferris#define VIRTIO_F_ANY_LAYOUT 27 56e084501669a4e4931c9d648351ecd7d595b81b79Christopher Ferris 57224b54f69543a5c0ec18f99bd717d2b724582eb6Ben Cheng#endif /* _UAPI_LINUX_VIRTIO_CONFIG_H */ 58