blob: 34141b9abe278bad93dcaa676c025c61752445c6 [file] [log] [blame]
Thomas Gleixnerf33f5fe2019-05-22 09:51:24 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +02002/*
Michael S. Tsirkina90fdce2014-12-08 12:31:02 +02003 * Virtio PCI driver - legacy device support
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +02004 *
5 * This module allows virtio devices to be used over a virtual PCI device.
6 * This can be used with QEMU based VMMs like KVM or Xen.
7 *
8 * Copyright IBM Corp. 2007
Michael S. Tsirkina90fdce2014-12-08 12:31:02 +02009 * Copyright Red Hat, Inc. 2014
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020010 *
11 * Authors:
12 * Anthony Liguori <aliguori@us.ibm.com>
Michael S. Tsirkina90fdce2014-12-08 12:31:02 +020013 * Rusty Russell <rusty@rustcorp.com.au>
14 * Michael S. Tsirkin <mst@redhat.com>
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020015 */
16
Wu Zongyongd89c81692021-10-29 17:14:42 +080017#include "linux/virtio_pci_legacy.h"
Michael S. Tsirkin5f4c9762014-12-08 16:39:45 +020018#include "virtio_pci_common.h"
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020019
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020020/* virtio config->get_features() implementation */
21static u64 vp_get_features(struct virtio_device *vdev)
22{
23 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
24
25 /* When someone needs more than 32 feature bits, we'll need to
26 * steal a bit to indicate that the rest are somewhere else. */
Wu Zongyongd89c81692021-10-29 17:14:42 +080027 return vp_legacy_get_features(&vp_dev->ldev);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020028}
29
30/* virtio config->finalize_features() implementation */
31static int vp_finalize_features(struct virtio_device *vdev)
32{
33 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
34
35 /* Give virtio_ring a chance to accept features. */
36 vring_transport_features(vdev);
37
38 /* Make sure we don't have any features > 32 bits! */
39 BUG_ON((u32)vdev->features != vdev->features);
40
41 /* We only support 32 feature bits. */
Wu Zongyongd89c81692021-10-29 17:14:42 +080042 vp_legacy_set_features(&vp_dev->ldev, vdev->features);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020043
44 return 0;
45}
46
47/* virtio config->get() implementation */
48static void vp_get(struct virtio_device *vdev, unsigned offset,
49 void *buf, unsigned len)
50{
51 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
Wu Zongyongd89c81692021-10-29 17:14:42 +080052 void __iomem *ioaddr = vp_dev->ldev.ioaddr +
Dongli Zhange8d26f22018-12-10 08:54:34 +080053 VIRTIO_PCI_CONFIG_OFF(vp_dev->msix_enabled) +
54 offset;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020055 u8 *ptr = buf;
56 int i;
57
58 for (i = 0; i < len; i++)
59 ptr[i] = ioread8(ioaddr + i);
60}
61
62/* the config->set() implementation. it's symmetric to the config->get()
63 * implementation */
64static void vp_set(struct virtio_device *vdev, unsigned offset,
65 const void *buf, unsigned len)
66{
67 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
Wu Zongyongd89c81692021-10-29 17:14:42 +080068 void __iomem *ioaddr = vp_dev->ldev.ioaddr +
Dongli Zhange8d26f22018-12-10 08:54:34 +080069 VIRTIO_PCI_CONFIG_OFF(vp_dev->msix_enabled) +
70 offset;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020071 const u8 *ptr = buf;
72 int i;
73
74 for (i = 0; i < len; i++)
75 iowrite8(ptr[i], ioaddr + i);
76}
77
78/* config->{get,set}_status() implementations */
79static u8 vp_get_status(struct virtio_device *vdev)
80{
81 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
Wu Zongyongd89c81692021-10-29 17:14:42 +080082 return vp_legacy_get_status(&vp_dev->ldev);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020083}
84
85static void vp_set_status(struct virtio_device *vdev, u8 status)
86{
87 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
88 /* We should never be setting status to 0. */
89 BUG_ON(status == 0);
Wu Zongyongd89c81692021-10-29 17:14:42 +080090 vp_legacy_set_status(&vp_dev->ldev, status);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020091}
92
93static void vp_reset(struct virtio_device *vdev)
94{
95 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
96 /* 0 status means a reset. */
Wu Zongyongd89c81692021-10-29 17:14:42 +080097 vp_legacy_set_status(&vp_dev->ldev, 0);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +020098 /* Flush out the status write, and flush in device writes,
99 * including MSi-X interrupts, if any. */
Wu Zongyongd89c81692021-10-29 17:14:42 +0800100 vp_legacy_get_status(&vp_dev->ldev);
Jason Wang9e352762021-10-19 15:01:46 +0800101 /* Disable VQ/configuration callbacks. */
102 vp_disable_cbs(vdev);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200103}
104
105static u16 vp_config_vector(struct virtio_pci_device *vp_dev, u16 vector)
106{
Wu Zongyongd89c81692021-10-29 17:14:42 +0800107 return vp_legacy_config_vector(&vp_dev->ldev, vector);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200108}
109
110static struct virtqueue *setup_vq(struct virtio_pci_device *vp_dev,
Michael S. Tsirkin0a9b3f42017-04-04 21:44:44 +0300111 struct virtio_pci_vq_info *info,
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200112 unsigned index,
113 void (*callback)(struct virtqueue *vq),
114 const char *name,
Michael S. Tsirkinf94682d2017-03-06 18:32:29 +0200115 bool ctx,
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200116 u16 msix_vec)
117{
118 struct virtqueue *vq;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200119 u16 num;
120 int err;
Suzuki K Poulose69599202018-07-18 10:18:45 +0100121 u64 q_pfn;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200122
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200123 /* Check if queue is either not available or already active. */
Wu Zongyongd89c81692021-10-29 17:14:42 +0800124 num = vp_legacy_get_queue_size(&vp_dev->ldev, index);
125 if (!num || vp_legacy_get_queue_enable(&vp_dev->ldev, index))
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200126 return ERR_PTR(-ENOENT);
127
Michael S. Tsirkin0a9b3f42017-04-04 21:44:44 +0300128 info->msix_vector = msix_vec;
129
Andy Lutomirski7a5589b2016-02-02 21:46:39 -0800130 /* create the vring */
131 vq = vring_create_virtqueue(index, num,
132 VIRTIO_PCI_VRING_ALIGN, &vp_dev->vdev,
Michael S. Tsirkinf94682d2017-03-06 18:32:29 +0200133 true, false, ctx,
134 vp_notify, callback, name);
Andy Lutomirski7a5589b2016-02-02 21:46:39 -0800135 if (!vq)
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200136 return ERR_PTR(-ENOMEM);
137
Suzuki K Poulose69599202018-07-18 10:18:45 +0100138 q_pfn = virtqueue_get_desc_addr(vq) >> VIRTIO_PCI_QUEUE_ADDR_SHIFT;
139 if (q_pfn >> 32) {
140 dev_err(&vp_dev->pci_dev->dev,
王贇60175992021-12-09 11:29:25 +0800141 "platform bug: legacy virtio-pci must not be used with RAM above 0x%llxGB\n",
Suzuki K Poulose69599202018-07-18 10:18:45 +0100142 0x1ULL << (32 + PAGE_SHIFT - 30));
143 err = -E2BIG;
144 goto out_del_vq;
145 }
146
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200147 /* activate the queue */
Wu Zongyongd89c81692021-10-29 17:14:42 +0800148 vp_legacy_set_queue_address(&vp_dev->ldev, index, q_pfn);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200149
Wu Zongyongd89c81692021-10-29 17:14:42 +0800150 vq->priv = (void __force *)vp_dev->ldev.ioaddr + VIRTIO_PCI_QUEUE_NOTIFY;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200151
152 if (msix_vec != VIRTIO_MSI_NO_VECTOR) {
Wu Zongyongd89c81692021-10-29 17:14:42 +0800153 msix_vec = vp_legacy_queue_vector(&vp_dev->ldev, index, msix_vec);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200154 if (msix_vec == VIRTIO_MSI_NO_VECTOR) {
155 err = -EBUSY;
Andy Lutomirski7a5589b2016-02-02 21:46:39 -0800156 goto out_deactivate;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200157 }
158 }
159
160 return vq;
161
Andy Lutomirski7a5589b2016-02-02 21:46:39 -0800162out_deactivate:
Wu Zongyongd89c81692021-10-29 17:14:42 +0800163 vp_legacy_set_queue_address(&vp_dev->ldev, index, 0);
Suzuki K Poulose69599202018-07-18 10:18:45 +0100164out_del_vq:
Andy Lutomirski7a5589b2016-02-02 21:46:39 -0800165 vring_del_virtqueue(vq);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200166 return ERR_PTR(err);
167}
168
Michael S. Tsirkin0a9b3f42017-04-04 21:44:44 +0300169static void del_vq(struct virtio_pci_vq_info *info)
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200170{
Michael S. Tsirkin0a9b3f42017-04-04 21:44:44 +0300171 struct virtqueue *vq = info->vq;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200172 struct virtio_pci_device *vp_dev = to_vp_device(vq->vdev);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200173
Michael S. Tsirkin2008c152017-04-04 21:09:20 +0300174 if (vp_dev->msix_enabled) {
Wu Zongyongd89c81692021-10-29 17:14:42 +0800175 vp_legacy_queue_vector(&vp_dev->ldev, vq->index,
176 VIRTIO_MSI_NO_VECTOR);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200177 /* Flush the write out to device */
Wu Zongyongd89c81692021-10-29 17:14:42 +0800178 ioread8(vp_dev->ldev.ioaddr + VIRTIO_PCI_ISR);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200179 }
180
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200181 /* Select and deactivate the queue */
Wu Zongyongd89c81692021-10-29 17:14:42 +0800182 vp_legacy_set_queue_address(&vp_dev->ldev, vq->index, 0);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200183
Andy Lutomirski7a5589b2016-02-02 21:46:39 -0800184 vring_del_virtqueue(vq);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200185}
186
187static const struct virtio_config_ops virtio_pci_config_ops = {
Jason Wang9e352762021-10-19 15:01:46 +0800188 .enable_cbs = vp_enable_cbs,
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200189 .get = vp_get,
190 .set = vp_set,
191 .get_status = vp_get_status,
192 .set_status = vp_set_status,
193 .reset = vp_reset,
194 .find_vqs = vp_find_vqs,
195 .del_vqs = vp_del_vqs,
196 .get_features = vp_get_features,
197 .finalize_features = vp_finalize_features,
198 .bus_name = vp_bus_name,
199 .set_vq_affinity = vp_set_vq_affinity,
Christoph Hellwigbbaba472017-02-05 18:15:23 +0100200 .get_vq_affinity = vp_get_vq_affinity,
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200201};
202
203/* the PCI probing function */
Michael S. Tsirkinff31d2e2015-01-13 11:23:32 +0200204int virtio_pci_legacy_probe(struct virtio_pci_device *vp_dev)
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200205{
Wu Zongyongd89c81692021-10-29 17:14:42 +0800206 struct virtio_pci_legacy_device *ldev = &vp_dev->ldev;
Michael S. Tsirkinff31d2e2015-01-13 11:23:32 +0200207 struct pci_dev *pci_dev = vp_dev->pci_dev;
Gerd Hoffmann59a5b0f72015-06-24 07:54:15 +0200208 int rc;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200209
Wu Zongyongd89c81692021-10-29 17:14:42 +0800210 ldev->pci_dev = pci_dev;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200211
Wu Zongyongd89c81692021-10-29 17:14:42 +0800212 rc = vp_legacy_probe(ldev);
Gerd Hoffmann59a5b0f72015-06-24 07:54:15 +0200213 if (rc)
214 return rc;
215
Wu Zongyongd89c81692021-10-29 17:14:42 +0800216 vp_dev->isr = ldev->isr;
217 vp_dev->vdev.id = ldev->id;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200218
Michael S. Tsirkinff31d2e2015-01-13 11:23:32 +0200219 vp_dev->vdev.config = &virtio_pci_config_ops;
220
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200221 vp_dev->config_vector = vp_config_vector;
222 vp_dev->setup_vq = setup_vq;
223 vp_dev->del_vq = del_vq;
224
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200225 return 0;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200226}
227
Michael S. Tsirkinff31d2e2015-01-13 11:23:32 +0200228void virtio_pci_legacy_remove(struct virtio_pci_device *vp_dev)
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200229{
Wu Zongyongd89c81692021-10-29 17:14:42 +0800230 struct virtio_pci_legacy_device *ldev = &vp_dev->ldev;
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200231
Wu Zongyongd89c81692021-10-29 17:14:42 +0800232 vp_legacy_remove(ldev);
Michael S. Tsirkin38eb4a22014-12-07 18:41:16 +0200233}