1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20#include "virtio_pci_common.h"
21
22
23static u64 vp_get_features(struct virtio_device *vdev)
24{
25 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
26
27
28
29 return ioread32(vp_dev->ioaddr + VIRTIO_PCI_HOST_FEATURES);
30}
31
32
33static int vp_finalize_features(struct virtio_device *vdev)
34{
35 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
36
37
38 vring_transport_features(vdev);
39
40
41 BUG_ON((u32)vdev->features != vdev->features);
42
43
44 iowrite32(vdev->features, vp_dev->ioaddr + VIRTIO_PCI_GUEST_FEATURES);
45
46 return 0;
47}
48
49
50static void vp_get(struct virtio_device *vdev, unsigned offset,
51 void *buf, unsigned len)
52{
53 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
54 void __iomem *ioaddr = vp_dev->ioaddr +
55 VIRTIO_PCI_CONFIG(vp_dev) + offset;
56 u8 *ptr = buf;
57 int i;
58
59 for (i = 0; i < len; i++)
60 ptr[i] = ioread8(ioaddr + i);
61}
62
63
64
65static void vp_set(struct virtio_device *vdev, unsigned offset,
66 const void *buf, unsigned len)
67{
68 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
69 void __iomem *ioaddr = vp_dev->ioaddr +
70 VIRTIO_PCI_CONFIG(vp_dev) + offset;
71 const u8 *ptr = buf;
72 int i;
73
74 for (i = 0; i < len; i++)
75 iowrite8(ptr[i], ioaddr + i);
76}
77
78
79static u8 vp_get_status(struct virtio_device *vdev)
80{
81 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
82 return ioread8(vp_dev->ioaddr + VIRTIO_PCI_STATUS);
83}
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
89 BUG_ON(status == 0);
90 iowrite8(status, vp_dev->ioaddr + VIRTIO_PCI_STATUS);
91}
92
93static void vp_reset(struct virtio_device *vdev)
94{
95 struct virtio_pci_device *vp_dev = to_vp_device(vdev);
96
97 iowrite8(0, vp_dev->ioaddr + VIRTIO_PCI_STATUS);
98
99
100 ioread8(vp_dev->ioaddr + VIRTIO_PCI_STATUS);
101
102 vp_synchronize_vectors(vdev);
103}
104
105static u16 vp_config_vector(struct virtio_pci_device *vp_dev, u16 vector)
106{
107
108 iowrite16(vector, vp_dev->ioaddr + VIRTIO_MSI_CONFIG_VECTOR);
109
110
111 return ioread16(vp_dev->ioaddr + VIRTIO_MSI_CONFIG_VECTOR);
112}
113
114static struct virtqueue *setup_vq(struct virtio_pci_device *vp_dev,
115 struct virtio_pci_vq_info *info,
116 unsigned index,
117 void (*callback)(struct virtqueue *vq),
118 const char *name,
119 u16 msix_vec)
120{
121 struct virtqueue *vq;
122 unsigned long size;
123 u16 num;
124 int err;
125
126
127 iowrite16(index, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_SEL);
128
129
130 num = ioread16(vp_dev->ioaddr + VIRTIO_PCI_QUEUE_NUM);
131 if (!num || ioread32(vp_dev->ioaddr + VIRTIO_PCI_QUEUE_PFN))
132 return ERR_PTR(-ENOENT);
133
134 info->num = num;
135 info->msix_vector = msix_vec;
136
137 size = PAGE_ALIGN(vring_size(num, VIRTIO_PCI_VRING_ALIGN));
138 info->queue = alloc_pages_exact(size, GFP_KERNEL|__GFP_ZERO);
139 if (info->queue == NULL)
140 return ERR_PTR(-ENOMEM);
141
142
143 iowrite32(virt_to_phys(info->queue) >> VIRTIO_PCI_QUEUE_ADDR_SHIFT,
144 vp_dev->ioaddr + VIRTIO_PCI_QUEUE_PFN);
145
146
147 vq = vring_new_virtqueue(index, info->num,
148 VIRTIO_PCI_VRING_ALIGN, &vp_dev->vdev,
149 true, info->queue, vp_notify, callback, name);
150 if (!vq) {
151 err = -ENOMEM;
152 goto out_activate_queue;
153 }
154
155 vq->priv = (void __force *)vp_dev->ioaddr + VIRTIO_PCI_QUEUE_NOTIFY;
156
157 if (msix_vec != VIRTIO_MSI_NO_VECTOR) {
158 iowrite16(msix_vec, vp_dev->ioaddr + VIRTIO_MSI_QUEUE_VECTOR);
159 msix_vec = ioread16(vp_dev->ioaddr + VIRTIO_MSI_QUEUE_VECTOR);
160 if (msix_vec == VIRTIO_MSI_NO_VECTOR) {
161 err = -EBUSY;
162 goto out_assign;
163 }
164 }
165
166 return vq;
167
168out_assign:
169 vring_del_virtqueue(vq);
170out_activate_queue:
171 iowrite32(0, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_PFN);
172 free_pages_exact(info->queue, size);
173 return ERR_PTR(err);
174}
175
176static void del_vq(struct virtio_pci_vq_info *info)
177{
178 struct virtqueue *vq = info->vq;
179 struct virtio_pci_device *vp_dev = to_vp_device(vq->vdev);
180 unsigned long size;
181
182 iowrite16(vq->index, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_SEL);
183
184 if (vp_dev->msix_enabled) {
185 iowrite16(VIRTIO_MSI_NO_VECTOR,
186 vp_dev->ioaddr + VIRTIO_MSI_QUEUE_VECTOR);
187
188 ioread8(vp_dev->ioaddr + VIRTIO_PCI_ISR);
189 }
190
191 vring_del_virtqueue(vq);
192
193
194 iowrite32(0, vp_dev->ioaddr + VIRTIO_PCI_QUEUE_PFN);
195
196 size = PAGE_ALIGN(vring_size(info->num, VIRTIO_PCI_VRING_ALIGN));
197 free_pages_exact(info->queue, size);
198}
199
200static const struct virtio_config_ops virtio_pci_config_ops = {
201 .get = vp_get,
202 .set = vp_set,
203 .get_status = vp_get_status,
204 .set_status = vp_set_status,
205 .reset = vp_reset,
206 .find_vqs = vp_find_vqs,
207 .del_vqs = vp_del_vqs,
208 .get_features = vp_get_features,
209 .finalize_features = vp_finalize_features,
210 .bus_name = vp_bus_name,
211 .set_vq_affinity = vp_set_vq_affinity,
212};
213
214
215int virtio_pci_legacy_probe(struct virtio_pci_device *vp_dev)
216{
217 struct pci_dev *pci_dev = vp_dev->pci_dev;
218
219
220 if (pci_dev->device < 0x1000 || pci_dev->device > 0x103f)
221 return -ENODEV;
222
223 if (pci_dev->revision != VIRTIO_PCI_ABI_VERSION) {
224 printk(KERN_ERR "virtio_pci: expected ABI version %d, got %d\n",
225 VIRTIO_PCI_ABI_VERSION, pci_dev->revision);
226 return -ENODEV;
227 }
228
229 vp_dev->ioaddr = pci_iomap(pci_dev, 0, 0);
230 if (!vp_dev->ioaddr)
231 return -ENOMEM;
232
233 vp_dev->isr = vp_dev->ioaddr + VIRTIO_PCI_ISR;
234
235
236
237
238
239 vp_dev->vdev.id.vendor = pci_dev->subsystem_vendor;
240 vp_dev->vdev.id.device = pci_dev->subsystem_device;
241
242 vp_dev->vdev.config = &virtio_pci_config_ops;
243
244 vp_dev->config_vector = vp_config_vector;
245 vp_dev->setup_vq = setup_vq;
246 vp_dev->del_vq = del_vq;
247
248 return 0;
249}
250
251void virtio_pci_legacy_remove(struct virtio_pci_device *vp_dev)
252{
253 struct pci_dev *pci_dev = vp_dev->pci_dev;
254
255 pci_iounmap(pci_dev, vp_dev->ioaddr);
256}
257