virtio.h revision 267312
1/*-
2 * Copyright (c) 2014, Bryan Venteicher <bryanv@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice unmodified, this list of conditions, and the following
10 *    disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD: stable/10/sys/dev/virtio/virtio.h 267312 2014-06-10 03:23:35Z bryanv $
27 */
28
29#ifndef _VIRTIO_H_
30#define _VIRTIO_H_
31
32#include <dev/virtio/virtio_ids.h>
33
34struct vq_alloc_info;
35
36/*
37 * Each virtqueue indirect descriptor list must be physically contiguous.
38 * To allow us to malloc(9) each list individually, limit the number
39 * supported to what will fit in one page. With 4KB pages, this is a limit
40 * of 256 descriptors. If there is ever a need for more, we can switch to
41 * contigmalloc(9) for the larger allocations, similar to what
42 * bus_dmamem_alloc(9) does.
43 *
44 * Note the sizeof(struct vring_desc) is 16 bytes.
45 */
46#define VIRTIO_MAX_INDIRECT ((int) (PAGE_SIZE / 16))
47
48/*
49 * VirtIO instance variables indices.
50 */
51#define VIRTIO_IVAR_DEVTYPE		1
52#define VIRTIO_IVAR_FEATURE_DESC	2
53#define VIRTIO_IVAR_VENDOR		3
54#define VIRTIO_IVAR_DEVICE		4
55#define VIRTIO_IVAR_SUBVENDOR		5
56#define VIRTIO_IVAR_SUBDEVICE		6
57
58struct virtio_feature_desc {
59	uint64_t	 vfd_val;
60	const char	*vfd_str;
61};
62
63const char *virtio_device_name(uint16_t devid);
64void	 virtio_describe(device_t dev, const char *msg,
65	     uint64_t features, struct virtio_feature_desc *feature_desc);
66
67/*
68 * VirtIO Bus Methods.
69 */
70void	 virtio_read_ivar(device_t dev, int ivar, uintptr_t *val);
71void	 virtio_write_ivar(device_t dev, int ivar, uintptr_t val);
72uint64_t virtio_negotiate_features(device_t dev, uint64_t child_features);
73int	 virtio_alloc_virtqueues(device_t dev, int flags, int nvqs,
74	     struct vq_alloc_info *info);
75int	 virtio_setup_intr(device_t dev, enum intr_type type);
76int	 virtio_with_feature(device_t dev, uint64_t feature);
77void	 virtio_stop(device_t dev);
78int	 virtio_reinit(device_t dev, uint64_t features);
79void	 virtio_reinit_complete(device_t dev);
80
81/*
82 * Read/write a variable amount from the device specific (ie, network)
83 * configuration region. This region is encoded in the same endian as
84 * the guest.
85 */
86void	 virtio_read_device_config(device_t dev, bus_size_t offset,
87	     void *dst, int length);
88void	 virtio_write_device_config(device_t dev, bus_size_t offset,
89	     void *src, int length);
90
91/* Inlined device specific read/write functions for common lengths. */
92#define VIRTIO_RDWR_DEVICE_CONFIG(size, type)				\
93static inline type							\
94__CONCAT(virtio_read_dev_config_,size)(device_t dev,			\
95    bus_size_t offset)							\
96{									\
97	type val;							\
98	virtio_read_device_config(dev, offset, &val, sizeof(type));	\
99	return (val);							\
100}									\
101									\
102static inline void							\
103__CONCAT(virtio_write_dev_config_,size)(device_t dev,			\
104    bus_size_t offset, type val)					\
105{									\
106	virtio_write_device_config(dev, offset, &val, sizeof(type));	\
107}
108
109VIRTIO_RDWR_DEVICE_CONFIG(1, uint8_t);
110VIRTIO_RDWR_DEVICE_CONFIG(2, uint16_t);
111VIRTIO_RDWR_DEVICE_CONFIG(4, uint32_t);
112
113#undef VIRTIO_RDWR_DEVICE_CONFIG
114
115#define VIRTIO_READ_IVAR(name, ivar)					\
116static inline int							\
117__CONCAT(virtio_get_,name)(device_t dev)				\
118{									\
119	uintptr_t val;							\
120	virtio_read_ivar(dev, ivar, &val);				\
121	return ((int) val);						\
122}
123
124VIRTIO_READ_IVAR(device_type,	VIRTIO_IVAR_DEVTYPE);
125VIRTIO_READ_IVAR(vendor,	VIRTIO_IVAR_VENDOR);
126VIRTIO_READ_IVAR(device,	VIRTIO_IVAR_DEVICE);
127VIRTIO_READ_IVAR(subvendor,	VIRTIO_IVAR_SUBVENDOR);
128VIRTIO_READ_IVAR(subdevice,	VIRTIO_IVAR_SUBDEVICE);
129
130#undef VIRTIO_READ_IVAR
131
132#define VIRTIO_WRITE_IVAR(name, ivar)					\
133static inline void							\
134__CONCAT(virtio_set_,name)(device_t dev, void *val)			\
135{									\
136	virtio_write_ivar(dev, ivar, (uintptr_t) val);			\
137}
138
139VIRTIO_WRITE_IVAR(feature_desc,	VIRTIO_IVAR_FEATURE_DESC);
140
141#undef VIRTIO_WRITE_IVAR
142
143#endif /* _VIRTIO_H_ */
144