blob: 6d9b029390e06eb4ef14ff4bfefb98b0c5b58e4c [file] [log] [blame]
Bin Meng8fb49b42018-10-15 02:21:00 -07001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2018, Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
4 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
5 *
6 * VirtIO is a virtualization standard for network and disk device drivers
7 * where just the guest's device driver "knows" it is running in a virtual
8 * environment, and cooperates with the hypervisor. This enables guests to
9 * get high performance network and disk operations, and gives most of the
10 * performance benefits of paravirtualization. In the U-Boot case, the guest
11 * is U-Boot itself, while the virtual environment are normally QEMU targets
12 * like ARM, RISC-V and x86.
13 *
14 * See http://docs.oasis-open.org/virtio/virtio/v1.0/virtio-v1.0.pdf for
15 * the VirtIO specification v1.0.
16 */
17
Patrick Delaunayb953ec22021-04-27 11:02:19 +020018#define LOG_CATEGORY UCLASS_VIRTIO
19
Bin Meng8fb49b42018-10-15 02:21:00 -070020#include <common.h>
21#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060022#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070023#include <malloc.h>
Bin Meng8fb49b42018-10-15 02:21:00 -070024#include <virtio_types.h>
25#include <virtio.h>
26#include <dm/lists.h>
Simon Glasseb41d8a2020-05-10 11:40:08 -060027#include <linux/bug.h>
Bin Meng8fb49b42018-10-15 02:21:00 -070028
29static const char *const virtio_drv_name[VIRTIO_ID_MAX_NUM] = {
30 [VIRTIO_ID_NET] = VIRTIO_NET_DRV_NAME,
31 [VIRTIO_ID_BLOCK] = VIRTIO_BLK_DRV_NAME,
Sughosh Ganu03018ea2019-12-29 15:30:14 +053032 [VIRTIO_ID_RNG] = VIRTIO_RNG_DRV_NAME,
Bin Meng8fb49b42018-10-15 02:21:00 -070033};
34
35int virtio_get_config(struct udevice *vdev, unsigned int offset,
36 void *buf, unsigned int len)
37{
38 struct dm_virtio_ops *ops;
39
40 ops = virtio_get_ops(vdev->parent);
41
42 return ops->get_config(vdev->parent, offset, buf, len);
43}
44
45int virtio_set_config(struct udevice *vdev, unsigned int offset,
46 void *buf, unsigned int len)
47{
48 struct dm_virtio_ops *ops;
49
50 ops = virtio_get_ops(vdev->parent);
51
52 return ops->set_config(vdev->parent, offset, buf, len);
53}
54
55int virtio_generation(struct udevice *vdev, u32 *counter)
56{
57 struct dm_virtio_ops *ops;
58
59 ops = virtio_get_ops(vdev->parent);
60 if (!ops->generation)
61 return -ENOSYS;
62
63 return ops->generation(vdev->parent, counter);
64}
65
66int virtio_get_status(struct udevice *vdev, u8 *status)
67{
68 struct dm_virtio_ops *ops;
69
70 ops = virtio_get_ops(vdev->parent);
71
72 return ops->get_status(vdev->parent, status);
73}
74
75int virtio_set_status(struct udevice *vdev, u8 status)
76{
77 struct dm_virtio_ops *ops;
78
79 ops = virtio_get_ops(vdev->parent);
80
81 return ops->set_status(vdev->parent, status);
82}
83
84int virtio_reset(struct udevice *vdev)
85{
86 struct dm_virtio_ops *ops;
87
88 ops = virtio_get_ops(vdev->parent);
89
90 return ops->reset(vdev->parent);
91}
92
93int virtio_get_features(struct udevice *vdev, u64 *features)
94{
95 struct dm_virtio_ops *ops;
96
97 ops = virtio_get_ops(vdev->parent);
98
99 return ops->get_features(vdev->parent, features);
100}
101
102int virtio_set_features(struct udevice *vdev)
103{
104 struct dm_virtio_ops *ops;
105
106 ops = virtio_get_ops(vdev->parent);
107
108 return ops->set_features(vdev->parent);
109}
110
111int virtio_find_vqs(struct udevice *vdev, unsigned int nvqs,
112 struct virtqueue *vqs[])
113{
114 struct dm_virtio_ops *ops;
115
116 ops = virtio_get_ops(vdev->parent);
117
118 return ops->find_vqs(vdev->parent, nvqs, vqs);
119}
120
121int virtio_del_vqs(struct udevice *vdev)
122{
123 struct dm_virtio_ops *ops;
124
125 ops = virtio_get_ops(vdev->parent);
126
127 return ops->del_vqs(vdev->parent);
128}
129
130int virtio_notify(struct udevice *vdev, struct virtqueue *vq)
131{
132 struct dm_virtio_ops *ops;
133
134 ops = virtio_get_ops(vdev->parent);
135
136 return ops->notify(vdev->parent, vq);
137}
138
139void virtio_add_status(struct udevice *vdev, u8 status)
140{
141 u8 old;
142
143 if (!virtio_get_status(vdev, &old))
144 virtio_set_status(vdev, old | status);
145}
146
147int virtio_finalize_features(struct udevice *vdev)
148{
149 struct virtio_dev_priv *uc_priv = dev_get_uclass_priv(vdev->parent);
150 u8 status;
151 int ret;
152
153 ret = virtio_set_features(vdev);
154 if (ret)
155 return ret;
156
157 if (uc_priv->legacy)
158 return 0;
159
160 virtio_add_status(vdev, VIRTIO_CONFIG_S_FEATURES_OK);
161 ret = virtio_get_status(vdev, &status);
162 if (ret)
163 return ret;
164 if (!(status & VIRTIO_CONFIG_S_FEATURES_OK)) {
165 debug("(%s): device refuses features %x\n", vdev->name, status);
166 return -ENODEV;
167 }
168
169 return 0;
170}
171
172void virtio_driver_features_init(struct virtio_dev_priv *priv,
173 const u32 *feature,
174 u32 feature_size,
175 const u32 *feature_legacy,
176 u32 feature_legacy_size)
177{
178 priv->feature_table = feature;
179 priv->feature_table_size = feature_size;
180 priv->feature_table_legacy = feature_legacy;
181 priv->feature_table_size_legacy = feature_legacy_size;
182}
183
184int virtio_init(void)
185{
Bin Meng8fb49b42018-10-15 02:21:00 -0700186 /* Enumerate all known virtio devices */
Michal Suchanekc0648b72022-10-12 21:57:51 +0200187 return uclass_probe_all(UCLASS_VIRTIO);
Bin Meng8fb49b42018-10-15 02:21:00 -0700188}
189
190static int virtio_uclass_pre_probe(struct udevice *udev)
191{
192 struct dm_virtio_ops *ops;
193
194 ops = (struct dm_virtio_ops *)(udev->driver->ops);
195
196 /*
197 * Check virtio transport driver ops here so that we don't need
198 * check these ops each time when the virtio_xxx APIs are called.
199 *
200 * Only generation op is optional. All other ops are must-have.
201 */
202 if (!ops->get_config || !ops->set_config ||
203 !ops->get_status || !ops->set_status ||
204 !ops->get_features || !ops->set_features ||
205 !ops->find_vqs || !ops->del_vqs ||
206 !ops->reset || !ops->notify)
207 return -ENOENT;
208
209 return 0;
210}
211
212static int virtio_uclass_post_probe(struct udevice *udev)
213{
214 struct virtio_dev_priv *uc_priv = dev_get_uclass_priv(udev);
215 char dev_name[30], *str;
216 struct udevice *vdev;
Simon Glass59a6be92023-01-17 10:47:48 -0700217 const char *name;
Bin Meng8fb49b42018-10-15 02:21:00 -0700218 int ret;
219
Vincent Stehlé25d34b92021-02-14 19:39:04 +0100220 if (uc_priv->device >= VIRTIO_ID_MAX_NUM) {
Bin Meng8fb49b42018-10-15 02:21:00 -0700221 debug("(%s): virtio device ID %d exceeds maximum num\n",
222 udev->name, uc_priv->device);
223 return 0;
224 }
225
Simon Glass59a6be92023-01-17 10:47:48 -0700226 name = virtio_drv_name[uc_priv->device];
227 if (!name) {
Bin Meng8fb49b42018-10-15 02:21:00 -0700228 debug("(%s): underlying virtio device driver unavailable\n",
229 udev->name);
230 return 0;
231 }
232
Simon Glass59a6be92023-01-17 10:47:48 -0700233 snprintf(dev_name, sizeof(dev_name), "%s#%d", name, dev_seq(udev));
Bin Meng8fb49b42018-10-15 02:21:00 -0700234 str = strdup(dev_name);
235 if (!str)
236 return -ENOMEM;
237
Simon Glass59a6be92023-01-17 10:47:48 -0700238 ret = device_bind_driver(udev, name, str, &vdev);
Bin Meng8fb49b42018-10-15 02:21:00 -0700239 if (ret == -ENOENT) {
240 debug("(%s): no driver configured\n", udev->name);
241 return 0;
242 }
243 if (ret) {
244 free(str);
245 return ret;
246 }
247 device_set_name_alloced(vdev);
248
249 INIT_LIST_HEAD(&uc_priv->vqs);
250
251 return 0;
252}
253
254static int virtio_uclass_child_post_bind(struct udevice *vdev)
255{
256 /* Acknowledge that we've seen the device */
257 virtio_add_status(vdev, VIRTIO_CONFIG_S_ACKNOWLEDGE);
258
259 return 0;
260}
261
262static int virtio_uclass_child_pre_probe(struct udevice *vdev)
263{
264 struct virtio_dev_priv *uc_priv = dev_get_uclass_priv(vdev->parent);
265 u64 device_features;
266 u64 driver_features;
267 u64 driver_features_legacy;
268 int i;
269 int ret;
270
271 /*
272 * Save the real virtio device (eg: virtio-net, virtio-blk) to
273 * the transport (parent) device's uclass priv for future use.
274 */
275 uc_priv->vdev = vdev;
276
277 /*
278 * We always start by resetting the device, in case a previous driver
279 * messed it up. This also tests that code path a little.
280 */
281 ret = virtio_reset(vdev);
282 if (ret)
283 goto err;
284
285 /* We have a driver! */
286 virtio_add_status(vdev, VIRTIO_CONFIG_S_DRIVER);
287
288 /* Figure out what features the device supports */
289 virtio_get_features(vdev, &device_features);
290 debug("(%s) plain device features supported %016llx\n",
291 vdev->name, device_features);
292 if (!(device_features & (1ULL << VIRTIO_F_VERSION_1)))
293 uc_priv->legacy = true;
294
295 /* Figure out what features the driver supports */
296 driver_features = 0;
297 for (i = 0; i < uc_priv->feature_table_size; i++) {
298 unsigned int f = uc_priv->feature_table[i];
299
300 WARN_ON(f >= 64);
301 driver_features |= (1ULL << f);
302 }
303
304 /* Some drivers have a separate feature table for virtio v1.0 */
305 if (uc_priv->feature_table_legacy) {
306 driver_features_legacy = 0;
307 for (i = 0; i < uc_priv->feature_table_size_legacy; i++) {
308 unsigned int f = uc_priv->feature_table_legacy[i];
309
310 WARN_ON(f >= 64);
311 driver_features_legacy |= (1ULL << f);
312 }
313 } else {
314 driver_features_legacy = driver_features;
315 }
316
317 if (uc_priv->legacy) {
318 debug("(%s): legacy virtio device\n", vdev->name);
319 uc_priv->features = driver_features_legacy & device_features;
320 } else {
321 debug("(%s): v1.0 complaint virtio device\n", vdev->name);
322 uc_priv->features = driver_features & device_features;
323 }
324
325 /* Transport features always preserved to pass to finalize_features */
326 for (i = VIRTIO_TRANSPORT_F_START; i < VIRTIO_TRANSPORT_F_END; i++)
327 if ((device_features & (1ULL << i)) &&
328 (i == VIRTIO_F_VERSION_1))
329 __virtio_set_bit(vdev->parent, i);
330
331 debug("(%s) final negotiated features supported %016llx\n",
332 vdev->name, uc_priv->features);
333 ret = virtio_finalize_features(vdev);
334 if (ret)
335 goto err;
336
337 return 0;
338
339err:
340 virtio_add_status(vdev, VIRTIO_CONFIG_S_FAILED);
341 return ret;
342}
343
344static int virtio_uclass_child_post_probe(struct udevice *vdev)
345{
346 /* Indicates that the driver is set up and ready to drive the device */
347 virtio_add_status(vdev, VIRTIO_CONFIG_S_DRIVER_OK);
348
349 return 0;
350}
351
352UCLASS_DRIVER(virtio) = {
353 .name = "virtio",
354 .id = UCLASS_VIRTIO,
355 .flags = DM_UC_FLAG_SEQ_ALIAS,
356 .pre_probe = virtio_uclass_pre_probe,
357 .post_probe = virtio_uclass_post_probe,
358 .child_post_bind = virtio_uclass_child_post_bind,
359 .child_pre_probe = virtio_uclass_child_pre_probe,
360 .child_post_probe = virtio_uclass_child_post_probe,
Simon Glass41575d82020-12-03 16:55:17 -0700361 .per_device_auto = sizeof(struct virtio_dev_priv),
Bin Meng8fb49b42018-10-15 02:21:00 -0700362};