blob: 5d5fc75743ce996d27c6a1f8ca2013f6ef117b18 [file] [log] [blame]
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001/*
2 * VFIO PCI config space virtualization
3 *
4 * Copyright (C) 2012 Red Hat, Inc. All rights reserved.
5 * Author: Alex Williamson <alex.williamson@redhat.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * Derived from original vfio:
12 * Copyright 2010 Cisco Systems, Inc. All rights reserved.
13 * Author: Tom Lyon, pugs@cisco.com
14 */
15
16/*
17 * This code handles reading and writing of PCI configuration registers.
18 * This is hairy because we want to allow a lot of flexibility to the
19 * user driver, but cannot trust it with all of the config fields.
20 * Tables determine which fields can be read and written, as well as
21 * which fields are 'virtualized' - special actions and translations to
22 * make it appear to the user that he has control, when in fact things
23 * must be negotiated with the underlying OS.
24 */
25
26#include <linux/fs.h>
27#include <linux/pci.h>
28#include <linux/uaccess.h>
29#include <linux/vfio.h>
30
31#include "vfio_pci_private.h"
32
33#define PCI_CFG_SPACE_SIZE 256
34
35/* Useful "pseudo" capabilities */
36#define PCI_CAP_ID_BASIC 0
37#define PCI_CAP_ID_INVALID 0xFF
38
39#define is_bar(offset) \
40 ((offset >= PCI_BASE_ADDRESS_0 && offset < PCI_BASE_ADDRESS_5 + 4) || \
41 (offset >= PCI_ROM_ADDRESS && offset < PCI_ROM_ADDRESS + 4))
42
43/*
44 * Lengths of PCI Config Capabilities
45 * 0: Removed from the user visible capability list
46 * FF: Variable length
47 */
48static u8 pci_cap_length[] = {
49 [PCI_CAP_ID_BASIC] = PCI_STD_HEADER_SIZEOF, /* pci config header */
50 [PCI_CAP_ID_PM] = PCI_PM_SIZEOF,
51 [PCI_CAP_ID_AGP] = PCI_AGP_SIZEOF,
52 [PCI_CAP_ID_VPD] = PCI_CAP_VPD_SIZEOF,
53 [PCI_CAP_ID_SLOTID] = 0, /* bridge - don't care */
54 [PCI_CAP_ID_MSI] = 0xFF, /* 10, 14, 20, or 24 */
55 [PCI_CAP_ID_CHSWP] = 0, /* cpci - not yet */
56 [PCI_CAP_ID_PCIX] = 0xFF, /* 8 or 24 */
57 [PCI_CAP_ID_HT] = 0xFF, /* hypertransport */
58 [PCI_CAP_ID_VNDR] = 0xFF, /* variable */
59 [PCI_CAP_ID_DBG] = 0, /* debug - don't care */
60 [PCI_CAP_ID_CCRC] = 0, /* cpci - not yet */
61 [PCI_CAP_ID_SHPC] = 0, /* hotswap - not yet */
62 [PCI_CAP_ID_SSVID] = 0, /* bridge - don't care */
63 [PCI_CAP_ID_AGP3] = 0, /* AGP8x - not yet */
64 [PCI_CAP_ID_SECDEV] = 0, /* secure device not yet */
65 [PCI_CAP_ID_EXP] = 0xFF, /* 20 or 44 */
66 [PCI_CAP_ID_MSIX] = PCI_CAP_MSIX_SIZEOF,
67 [PCI_CAP_ID_SATA] = 0xFF,
68 [PCI_CAP_ID_AF] = PCI_CAP_AF_SIZEOF,
69};
70
71/*
72 * Lengths of PCIe/PCI-X Extended Config Capabilities
73 * 0: Removed or masked from the user visible capabilty list
74 * FF: Variable length
75 */
76static u16 pci_ext_cap_length[] = {
77 [PCI_EXT_CAP_ID_ERR] = PCI_ERR_ROOT_COMMAND,
78 [PCI_EXT_CAP_ID_VC] = 0xFF,
79 [PCI_EXT_CAP_ID_DSN] = PCI_EXT_CAP_DSN_SIZEOF,
80 [PCI_EXT_CAP_ID_PWR] = PCI_EXT_CAP_PWR_SIZEOF,
81 [PCI_EXT_CAP_ID_RCLD] = 0, /* root only - don't care */
82 [PCI_EXT_CAP_ID_RCILC] = 0, /* root only - don't care */
83 [PCI_EXT_CAP_ID_RCEC] = 0, /* root only - don't care */
84 [PCI_EXT_CAP_ID_MFVC] = 0xFF,
85 [PCI_EXT_CAP_ID_VC9] = 0xFF, /* same as CAP_ID_VC */
86 [PCI_EXT_CAP_ID_RCRB] = 0, /* root only - don't care */
87 [PCI_EXT_CAP_ID_VNDR] = 0xFF,
88 [PCI_EXT_CAP_ID_CAC] = 0, /* obsolete */
89 [PCI_EXT_CAP_ID_ACS] = 0xFF,
90 [PCI_EXT_CAP_ID_ARI] = PCI_EXT_CAP_ARI_SIZEOF,
91 [PCI_EXT_CAP_ID_ATS] = PCI_EXT_CAP_ATS_SIZEOF,
92 [PCI_EXT_CAP_ID_SRIOV] = PCI_EXT_CAP_SRIOV_SIZEOF,
93 [PCI_EXT_CAP_ID_MRIOV] = 0, /* not yet */
94 [PCI_EXT_CAP_ID_MCAST] = PCI_EXT_CAP_MCAST_ENDPOINT_SIZEOF,
95 [PCI_EXT_CAP_ID_PRI] = PCI_EXT_CAP_PRI_SIZEOF,
96 [PCI_EXT_CAP_ID_AMD_XXX] = 0, /* not yet */
97 [PCI_EXT_CAP_ID_REBAR] = 0xFF,
98 [PCI_EXT_CAP_ID_DPA] = 0xFF,
99 [PCI_EXT_CAP_ID_TPH] = 0xFF,
100 [PCI_EXT_CAP_ID_LTR] = PCI_EXT_CAP_LTR_SIZEOF,
101 [PCI_EXT_CAP_ID_SECPCI] = 0, /* not yet */
102 [PCI_EXT_CAP_ID_PMUX] = 0, /* not yet */
103 [PCI_EXT_CAP_ID_PASID] = 0, /* not yet */
104};
105
106/*
107 * Read/Write Permission Bits - one bit for each bit in capability
108 * Any field can be read if it exists, but what is read depends on
109 * whether the field is 'virtualized', or just pass thru to the
110 * hardware. Any virtualized field is also virtualized for writes.
111 * Writes are only permitted if they have a 1 bit here.
112 */
113struct perm_bits {
114 u8 *virt; /* read/write virtual data, not hw */
115 u8 *write; /* writeable bits */
116 int (*readfn)(struct vfio_pci_device *vdev, int pos, int count,
117 struct perm_bits *perm, int offset, __le32 *val);
118 int (*writefn)(struct vfio_pci_device *vdev, int pos, int count,
119 struct perm_bits *perm, int offset, __le32 val);
120};
121
122#define NO_VIRT 0
123#define ALL_VIRT 0xFFFFFFFFU
124#define NO_WRITE 0
125#define ALL_WRITE 0xFFFFFFFFU
126
127static int vfio_user_config_read(struct pci_dev *pdev, int offset,
128 __le32 *val, int count)
129{
130 int ret = -EINVAL;
131 u32 tmp_val = 0;
132
133 switch (count) {
134 case 1:
135 {
136 u8 tmp;
137 ret = pci_user_read_config_byte(pdev, offset, &tmp);
138 tmp_val = tmp;
139 break;
140 }
141 case 2:
142 {
143 u16 tmp;
144 ret = pci_user_read_config_word(pdev, offset, &tmp);
145 tmp_val = tmp;
146 break;
147 }
148 case 4:
149 ret = pci_user_read_config_dword(pdev, offset, &tmp_val);
150 break;
151 }
152
153 *val = cpu_to_le32(tmp_val);
154
155 return pcibios_err_to_errno(ret);
156}
157
158static int vfio_user_config_write(struct pci_dev *pdev, int offset,
159 __le32 val, int count)
160{
161 int ret = -EINVAL;
162 u32 tmp_val = le32_to_cpu(val);
163
164 switch (count) {
165 case 1:
166 ret = pci_user_write_config_byte(pdev, offset, tmp_val);
167 break;
168 case 2:
169 ret = pci_user_write_config_word(pdev, offset, tmp_val);
170 break;
171 case 4:
172 ret = pci_user_write_config_dword(pdev, offset, tmp_val);
173 break;
174 }
175
176 return pcibios_err_to_errno(ret);
177}
178
179static int vfio_default_config_read(struct vfio_pci_device *vdev, int pos,
180 int count, struct perm_bits *perm,
181 int offset, __le32 *val)
182{
183 __le32 virt = 0;
184
185 memcpy(val, vdev->vconfig + pos, count);
186
187 memcpy(&virt, perm->virt + offset, count);
188
189 /* Any non-virtualized bits? */
190 if (cpu_to_le32(~0U >> (32 - (count * 8))) != virt) {
191 struct pci_dev *pdev = vdev->pdev;
192 __le32 phys_val = 0;
193 int ret;
194
195 ret = vfio_user_config_read(pdev, pos, &phys_val, count);
196 if (ret)
197 return ret;
198
199 *val = (phys_val & ~virt) | (*val & virt);
200 }
201
202 return count;
203}
204
205static int vfio_default_config_write(struct vfio_pci_device *vdev, int pos,
206 int count, struct perm_bits *perm,
207 int offset, __le32 val)
208{
209 __le32 virt = 0, write = 0;
210
211 memcpy(&write, perm->write + offset, count);
212
213 if (!write)
214 return count; /* drop, no writable bits */
215
216 memcpy(&virt, perm->virt + offset, count);
217
218 /* Virtualized and writable bits go to vconfig */
219 if (write & virt) {
220 __le32 virt_val = 0;
221
222 memcpy(&virt_val, vdev->vconfig + pos, count);
223
224 virt_val &= ~(write & virt);
225 virt_val |= (val & (write & virt));
226
227 memcpy(vdev->vconfig + pos, &virt_val, count);
228 }
229
230 /* Non-virtualzed and writable bits go to hardware */
231 if (write & ~virt) {
232 struct pci_dev *pdev = vdev->pdev;
233 __le32 phys_val = 0;
234 int ret;
235
236 ret = vfio_user_config_read(pdev, pos, &phys_val, count);
237 if (ret)
238 return ret;
239
240 phys_val &= ~(write & ~virt);
241 phys_val |= (val & (write & ~virt));
242
243 ret = vfio_user_config_write(pdev, pos, phys_val, count);
244 if (ret)
245 return ret;
246 }
247
248 return count;
249}
250
251/* Allow direct read from hardware, except for capability next pointer */
252static int vfio_direct_config_read(struct vfio_pci_device *vdev, int pos,
253 int count, struct perm_bits *perm,
254 int offset, __le32 *val)
255{
256 int ret;
257
258 ret = vfio_user_config_read(vdev->pdev, pos, val, count);
259 if (ret)
260 return pcibios_err_to_errno(ret);
261
262 if (pos >= PCI_CFG_SPACE_SIZE) { /* Extended cap header mangling */
263 if (offset < 4)
264 memcpy(val, vdev->vconfig + pos, count);
265 } else if (pos >= PCI_STD_HEADER_SIZEOF) { /* Std cap mangling */
266 if (offset == PCI_CAP_LIST_ID && count > 1)
267 memcpy(val, vdev->vconfig + pos,
268 min(PCI_CAP_FLAGS, count));
269 else if (offset == PCI_CAP_LIST_NEXT)
270 memcpy(val, vdev->vconfig + pos, 1);
271 }
272
273 return count;
274}
275
276static int vfio_direct_config_write(struct vfio_pci_device *vdev, int pos,
277 int count, struct perm_bits *perm,
278 int offset, __le32 val)
279{
280 int ret;
281
282 ret = vfio_user_config_write(vdev->pdev, pos, val, count);
283 if (ret)
284 return ret;
285
286 return count;
287}
288
289/* Default all regions to read-only, no-virtualization */
290static struct perm_bits cap_perms[PCI_CAP_ID_MAX + 1] = {
291 [0 ... PCI_CAP_ID_MAX] = { .readfn = vfio_direct_config_read }
292};
293static struct perm_bits ecap_perms[PCI_EXT_CAP_ID_MAX + 1] = {
294 [0 ... PCI_EXT_CAP_ID_MAX] = { .readfn = vfio_direct_config_read }
295};
296
297static void free_perm_bits(struct perm_bits *perm)
298{
299 kfree(perm->virt);
300 kfree(perm->write);
301 perm->virt = NULL;
302 perm->write = NULL;
303}
304
305static int alloc_perm_bits(struct perm_bits *perm, int size)
306{
307 /*
308 * Round up all permission bits to the next dword, this lets us
309 * ignore whether a read/write exceeds the defined capability
310 * structure. We can do this because:
311 * - Standard config space is already dword aligned
312 * - Capabilities are all dword alinged (bits 0:1 of next reserved)
313 * - Express capabilities defined as dword aligned
314 */
315 size = round_up(size, 4);
316
317 /*
318 * Zero state is
319 * - All Readable, None Writeable, None Virtualized
320 */
321 perm->virt = kzalloc(size, GFP_KERNEL);
322 perm->write = kzalloc(size, GFP_KERNEL);
323 if (!perm->virt || !perm->write) {
324 free_perm_bits(perm);
325 return -ENOMEM;
326 }
327
328 perm->readfn = vfio_default_config_read;
329 perm->writefn = vfio_default_config_write;
330
331 return 0;
332}
333
334/*
335 * Helper functions for filling in permission tables
336 */
337static inline void p_setb(struct perm_bits *p, int off, u8 virt, u8 write)
338{
339 p->virt[off] = virt;
340 p->write[off] = write;
341}
342
343/* Handle endian-ness - pci and tables are little-endian */
344static inline void p_setw(struct perm_bits *p, int off, u16 virt, u16 write)
345{
346 *(__le16 *)(&p->virt[off]) = cpu_to_le16(virt);
347 *(__le16 *)(&p->write[off]) = cpu_to_le16(write);
348}
349
350/* Handle endian-ness - pci and tables are little-endian */
351static inline void p_setd(struct perm_bits *p, int off, u32 virt, u32 write)
352{
353 *(__le32 *)(&p->virt[off]) = cpu_to_le32(virt);
354 *(__le32 *)(&p->write[off]) = cpu_to_le32(write);
355}
356
357/*
358 * Restore the *real* BARs after we detect a FLR or backdoor reset.
359 * (backdoor = some device specific technique that we didn't catch)
360 */
361static void vfio_bar_restore(struct vfio_pci_device *vdev)
362{
363 struct pci_dev *pdev = vdev->pdev;
364 u32 *rbar = vdev->rbar;
365 int i;
366
367 if (pdev->is_virtfn)
368 return;
369
370 pr_info("%s: %s reset recovery - restoring bars\n",
371 __func__, dev_name(&pdev->dev));
372
373 for (i = PCI_BASE_ADDRESS_0; i <= PCI_BASE_ADDRESS_5; i += 4, rbar++)
374 pci_user_write_config_dword(pdev, i, *rbar);
375
376 pci_user_write_config_dword(pdev, PCI_ROM_ADDRESS, *rbar);
377}
378
379static __le32 vfio_generate_bar_flags(struct pci_dev *pdev, int bar)
380{
381 unsigned long flags = pci_resource_flags(pdev, bar);
382 u32 val;
383
384 if (flags & IORESOURCE_IO)
385 return cpu_to_le32(PCI_BASE_ADDRESS_SPACE_IO);
386
387 val = PCI_BASE_ADDRESS_SPACE_MEMORY;
388
389 if (flags & IORESOURCE_PREFETCH)
390 val |= PCI_BASE_ADDRESS_MEM_PREFETCH;
391
392 if (flags & IORESOURCE_MEM_64)
393 val |= PCI_BASE_ADDRESS_MEM_TYPE_64;
394
395 return cpu_to_le32(val);
396}
397
398/*
399 * Pretend we're hardware and tweak the values of the *virtual* PCI BARs
400 * to reflect the hardware capabilities. This implements BAR sizing.
401 */
402static void vfio_bar_fixup(struct vfio_pci_device *vdev)
403{
404 struct pci_dev *pdev = vdev->pdev;
405 int i;
406 __le32 *bar;
407 u64 mask;
408
409 bar = (__le32 *)&vdev->vconfig[PCI_BASE_ADDRESS_0];
410
411 for (i = PCI_STD_RESOURCES; i <= PCI_STD_RESOURCE_END; i++, bar++) {
412 if (!pci_resource_start(pdev, i)) {
413 *bar = 0; /* Unmapped by host = unimplemented to user */
414 continue;
415 }
416
417 mask = ~(pci_resource_len(pdev, i) - 1);
418
419 *bar &= cpu_to_le32((u32)mask);
420 *bar |= vfio_generate_bar_flags(pdev, i);
421
422 if (*bar & cpu_to_le32(PCI_BASE_ADDRESS_MEM_TYPE_64)) {
423 bar++;
424 *bar &= cpu_to_le32((u32)(mask >> 32));
425 i++;
426 }
427 }
428
429 bar = (__le32 *)&vdev->vconfig[PCI_ROM_ADDRESS];
430
431 /*
432 * NB. we expose the actual BAR size here, regardless of whether
433 * we can read it. When we report the REGION_INFO for the ROM
434 * we report what PCI tells us is the actual ROM size.
435 */
436 if (pci_resource_start(pdev, PCI_ROM_RESOURCE)) {
437 mask = ~(pci_resource_len(pdev, PCI_ROM_RESOURCE) - 1);
438 mask |= PCI_ROM_ADDRESS_ENABLE;
439 *bar &= cpu_to_le32((u32)mask);
440 } else
441 *bar = 0;
442
443 vdev->bardirty = false;
444}
445
446static int vfio_basic_config_read(struct vfio_pci_device *vdev, int pos,
447 int count, struct perm_bits *perm,
448 int offset, __le32 *val)
449{
450 if (is_bar(offset)) /* pos == offset for basic config */
451 vfio_bar_fixup(vdev);
452
453 count = vfio_default_config_read(vdev, pos, count, perm, offset, val);
454
455 /* Mask in virtual memory enable for SR-IOV devices */
456 if (offset == PCI_COMMAND && vdev->pdev->is_virtfn) {
457 u16 cmd = le16_to_cpu(*(__le16 *)&vdev->vconfig[PCI_COMMAND]);
458 u32 tmp_val = le32_to_cpu(*val);
459
460 tmp_val |= cmd & PCI_COMMAND_MEMORY;
461 *val = cpu_to_le32(tmp_val);
462 }
463
464 return count;
465}
466
467static int vfio_basic_config_write(struct vfio_pci_device *vdev, int pos,
468 int count, struct perm_bits *perm,
469 int offset, __le32 val)
470{
471 struct pci_dev *pdev = vdev->pdev;
472 __le16 *virt_cmd;
473 u16 new_cmd = 0;
474 int ret;
475
476 virt_cmd = (__le16 *)&vdev->vconfig[PCI_COMMAND];
477
478 if (offset == PCI_COMMAND) {
479 bool phys_mem, virt_mem, new_mem, phys_io, virt_io, new_io;
480 u16 phys_cmd;
481
482 ret = pci_user_read_config_word(pdev, PCI_COMMAND, &phys_cmd);
483 if (ret)
484 return ret;
485
486 new_cmd = le32_to_cpu(val);
487
488 phys_mem = !!(phys_cmd & PCI_COMMAND_MEMORY);
489 virt_mem = !!(le16_to_cpu(*virt_cmd) & PCI_COMMAND_MEMORY);
490 new_mem = !!(new_cmd & PCI_COMMAND_MEMORY);
491
492 phys_io = !!(phys_cmd & PCI_COMMAND_IO);
493 virt_io = !!(le16_to_cpu(*virt_cmd) & PCI_COMMAND_IO);
494 new_io = !!(new_cmd & PCI_COMMAND_IO);
495
496 /*
497 * If the user is writing mem/io enable (new_mem/io) and we
498 * think it's already enabled (virt_mem/io), but the hardware
499 * shows it disabled (phys_mem/io, then the device has
500 * undergone some kind of backdoor reset and needs to be
501 * restored before we allow it to enable the bars.
502 * SR-IOV devices will trigger this, but we catch them later
503 */
504 if ((new_mem && virt_mem && !phys_mem) ||
505 (new_io && virt_io && !phys_io))
506 vfio_bar_restore(vdev);
507 }
508
509 count = vfio_default_config_write(vdev, pos, count, perm, offset, val);
510 if (count < 0)
511 return count;
512
513 /*
514 * Save current memory/io enable bits in vconfig to allow for
515 * the test above next time.
516 */
517 if (offset == PCI_COMMAND) {
518 u16 mask = PCI_COMMAND_MEMORY | PCI_COMMAND_IO;
519
520 *virt_cmd &= cpu_to_le16(~mask);
521 *virt_cmd |= cpu_to_le16(new_cmd & mask);
522 }
523
524 /* Emulate INTx disable */
525 if (offset >= PCI_COMMAND && offset <= PCI_COMMAND + 1) {
526 bool virt_intx_disable;
527
528 virt_intx_disable = !!(le16_to_cpu(*virt_cmd) &
529 PCI_COMMAND_INTX_DISABLE);
530
531 if (virt_intx_disable && !vdev->virq_disabled) {
532 vdev->virq_disabled = true;
533 vfio_pci_intx_mask(vdev);
534 } else if (!virt_intx_disable && vdev->virq_disabled) {
535 vdev->virq_disabled = false;
536 vfio_pci_intx_unmask(vdev);
537 }
538 }
539
540 if (is_bar(offset))
541 vdev->bardirty = true;
542
543 return count;
544}
545
546/* Permissions for the Basic PCI Header */
547static int __init init_pci_cap_basic_perm(struct perm_bits *perm)
548{
549 if (alloc_perm_bits(perm, PCI_STD_HEADER_SIZEOF))
550 return -ENOMEM;
551
552 perm->readfn = vfio_basic_config_read;
553 perm->writefn = vfio_basic_config_write;
554
555 /* Virtualized for SR-IOV functions, which just have FFFF */
556 p_setw(perm, PCI_VENDOR_ID, (u16)ALL_VIRT, NO_WRITE);
557 p_setw(perm, PCI_DEVICE_ID, (u16)ALL_VIRT, NO_WRITE);
558
559 /*
560 * Virtualize INTx disable, we use it internally for interrupt
561 * control and can emulate it for non-PCI 2.3 devices.
562 */
563 p_setw(perm, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE, (u16)ALL_WRITE);
564
565 /* Virtualize capability list, we might want to skip/disable */
566 p_setw(perm, PCI_STATUS, PCI_STATUS_CAP_LIST, NO_WRITE);
567
568 /* No harm to write */
569 p_setb(perm, PCI_CACHE_LINE_SIZE, NO_VIRT, (u8)ALL_WRITE);
570 p_setb(perm, PCI_LATENCY_TIMER, NO_VIRT, (u8)ALL_WRITE);
571 p_setb(perm, PCI_BIST, NO_VIRT, (u8)ALL_WRITE);
572
573 /* Virtualize all bars, can't touch the real ones */
574 p_setd(perm, PCI_BASE_ADDRESS_0, ALL_VIRT, ALL_WRITE);
575 p_setd(perm, PCI_BASE_ADDRESS_1, ALL_VIRT, ALL_WRITE);
576 p_setd(perm, PCI_BASE_ADDRESS_2, ALL_VIRT, ALL_WRITE);
577 p_setd(perm, PCI_BASE_ADDRESS_3, ALL_VIRT, ALL_WRITE);
578 p_setd(perm, PCI_BASE_ADDRESS_4, ALL_VIRT, ALL_WRITE);
579 p_setd(perm, PCI_BASE_ADDRESS_5, ALL_VIRT, ALL_WRITE);
580 p_setd(perm, PCI_ROM_ADDRESS, ALL_VIRT, ALL_WRITE);
581
582 /* Allow us to adjust capability chain */
583 p_setb(perm, PCI_CAPABILITY_LIST, (u8)ALL_VIRT, NO_WRITE);
584
585 /* Sometimes used by sw, just virtualize */
586 p_setb(perm, PCI_INTERRUPT_LINE, (u8)ALL_VIRT, (u8)ALL_WRITE);
587 return 0;
588}
589
Alex Williamson2dd11942013-02-18 10:10:33 -0700590static int vfio_pm_config_write(struct vfio_pci_device *vdev, int pos,
591 int count, struct perm_bits *perm,
592 int offset, __le32 val)
593{
594 count = vfio_default_config_write(vdev, pos, count, perm, offset, val);
595 if (count < 0)
596 return count;
597
598 if (offset == PCI_PM_CTRL) {
599 pci_power_t state;
600
601 switch (le32_to_cpu(val) & PCI_PM_CTRL_STATE_MASK) {
602 case 0:
603 state = PCI_D0;
604 break;
605 case 1:
606 state = PCI_D1;
607 break;
608 case 2:
609 state = PCI_D2;
610 break;
611 case 3:
612 state = PCI_D3hot;
613 break;
614 }
615
616 pci_set_power_state(vdev->pdev, state);
617 }
618
619 return count;
620}
621
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600622/* Permissions for the Power Management capability */
623static int __init init_pci_cap_pm_perm(struct perm_bits *perm)
624{
625 if (alloc_perm_bits(perm, pci_cap_length[PCI_CAP_ID_PM]))
626 return -ENOMEM;
627
Alex Williamson2dd11942013-02-18 10:10:33 -0700628 perm->writefn = vfio_pm_config_write;
629
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600630 /*
631 * We always virtualize the next field so we can remove
632 * capabilities from the chain if we want to.
633 */
634 p_setb(perm, PCI_CAP_LIST_NEXT, (u8)ALL_VIRT, NO_WRITE);
635
636 /*
Alex Williamson2dd11942013-02-18 10:10:33 -0700637 * Power management is defined *per function*, so we can let
638 * the user change power state, but we trap and initiate the
639 * change ourselves, so the state bits are read-only.
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600640 */
Alex Williamson2dd11942013-02-18 10:10:33 -0700641 p_setd(perm, PCI_PM_CTRL, NO_VIRT, ~PCI_PM_CTRL_STATE_MASK);
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600642 return 0;
643}
644
645/* Permissions for PCI-X capability */
646static int __init init_pci_cap_pcix_perm(struct perm_bits *perm)
647{
648 /* Alloc 24, but only 8 are used in v0 */
649 if (alloc_perm_bits(perm, PCI_CAP_PCIX_SIZEOF_V2))
650 return -ENOMEM;
651
652 p_setb(perm, PCI_CAP_LIST_NEXT, (u8)ALL_VIRT, NO_WRITE);
653
654 p_setw(perm, PCI_X_CMD, NO_VIRT, (u16)ALL_WRITE);
655 p_setd(perm, PCI_X_ECC_CSR, NO_VIRT, ALL_WRITE);
656 return 0;
657}
658
659/* Permissions for PCI Express capability */
660static int __init init_pci_cap_exp_perm(struct perm_bits *perm)
661{
662 /* Alloc larger of two possible sizes */
663 if (alloc_perm_bits(perm, PCI_CAP_EXP_ENDPOINT_SIZEOF_V2))
664 return -ENOMEM;
665
666 p_setb(perm, PCI_CAP_LIST_NEXT, (u8)ALL_VIRT, NO_WRITE);
667
668 /*
669 * Allow writes to device control fields (includes FLR!)
670 * but not to devctl_phantom which could confuse IOMMU
671 * or to the ARI bit in devctl2 which is set at probe time
672 */
673 p_setw(perm, PCI_EXP_DEVCTL, NO_VIRT, ~PCI_EXP_DEVCTL_PHANTOM);
674 p_setw(perm, PCI_EXP_DEVCTL2, NO_VIRT, ~PCI_EXP_DEVCTL2_ARI);
675 return 0;
676}
677
678/* Permissions for Advanced Function capability */
679static int __init init_pci_cap_af_perm(struct perm_bits *perm)
680{
681 if (alloc_perm_bits(perm, pci_cap_length[PCI_CAP_ID_AF]))
682 return -ENOMEM;
683
684 p_setb(perm, PCI_CAP_LIST_NEXT, (u8)ALL_VIRT, NO_WRITE);
685 p_setb(perm, PCI_AF_CTRL, NO_VIRT, PCI_AF_CTRL_FLR);
686 return 0;
687}
688
689/* Permissions for Advanced Error Reporting extended capability */
690static int __init init_pci_ext_cap_err_perm(struct perm_bits *perm)
691{
692 u32 mask;
693
694 if (alloc_perm_bits(perm, pci_ext_cap_length[PCI_EXT_CAP_ID_ERR]))
695 return -ENOMEM;
696
697 /*
698 * Virtualize the first dword of all express capabilities
699 * because it includes the next pointer. This lets us later
700 * remove capabilities from the chain if we need to.
701 */
702 p_setd(perm, 0, ALL_VIRT, NO_WRITE);
703
704 /* Writable bits mask */
705 mask = PCI_ERR_UNC_TRAIN | /* Training */
706 PCI_ERR_UNC_DLP | /* Data Link Protocol */
707 PCI_ERR_UNC_SURPDN | /* Surprise Down */
708 PCI_ERR_UNC_POISON_TLP | /* Poisoned TLP */
709 PCI_ERR_UNC_FCP | /* Flow Control Protocol */
710 PCI_ERR_UNC_COMP_TIME | /* Completion Timeout */
711 PCI_ERR_UNC_COMP_ABORT | /* Completer Abort */
712 PCI_ERR_UNC_UNX_COMP | /* Unexpected Completion */
713 PCI_ERR_UNC_RX_OVER | /* Receiver Overflow */
714 PCI_ERR_UNC_MALF_TLP | /* Malformed TLP */
715 PCI_ERR_UNC_ECRC | /* ECRC Error Status */
716 PCI_ERR_UNC_UNSUP | /* Unsupported Request */
717 PCI_ERR_UNC_ACSV | /* ACS Violation */
718 PCI_ERR_UNC_INTN | /* internal error */
719 PCI_ERR_UNC_MCBTLP | /* MC blocked TLP */
720 PCI_ERR_UNC_ATOMEG | /* Atomic egress blocked */
721 PCI_ERR_UNC_TLPPRE; /* TLP prefix blocked */
722 p_setd(perm, PCI_ERR_UNCOR_STATUS, NO_VIRT, mask);
723 p_setd(perm, PCI_ERR_UNCOR_MASK, NO_VIRT, mask);
724 p_setd(perm, PCI_ERR_UNCOR_SEVER, NO_VIRT, mask);
725
726 mask = PCI_ERR_COR_RCVR | /* Receiver Error Status */
727 PCI_ERR_COR_BAD_TLP | /* Bad TLP Status */
728 PCI_ERR_COR_BAD_DLLP | /* Bad DLLP Status */
729 PCI_ERR_COR_REP_ROLL | /* REPLAY_NUM Rollover */
730 PCI_ERR_COR_REP_TIMER | /* Replay Timer Timeout */
731 PCI_ERR_COR_ADV_NFAT | /* Advisory Non-Fatal */
732 PCI_ERR_COR_INTERNAL | /* Corrected Internal */
733 PCI_ERR_COR_LOG_OVER; /* Header Log Overflow */
734 p_setd(perm, PCI_ERR_COR_STATUS, NO_VIRT, mask);
735 p_setd(perm, PCI_ERR_COR_MASK, NO_VIRT, mask);
736
737 mask = PCI_ERR_CAP_ECRC_GENE | /* ECRC Generation Enable */
738 PCI_ERR_CAP_ECRC_CHKE; /* ECRC Check Enable */
739 p_setd(perm, PCI_ERR_CAP, NO_VIRT, mask);
740 return 0;
741}
742
743/* Permissions for Power Budgeting extended capability */
744static int __init init_pci_ext_cap_pwr_perm(struct perm_bits *perm)
745{
746 if (alloc_perm_bits(perm, pci_ext_cap_length[PCI_EXT_CAP_ID_PWR]))
747 return -ENOMEM;
748
749 p_setd(perm, 0, ALL_VIRT, NO_WRITE);
750
751 /* Writing the data selector is OK, the info is still read-only */
752 p_setb(perm, PCI_PWR_DATA, NO_VIRT, (u8)ALL_WRITE);
753 return 0;
754}
755
756/*
757 * Initialize the shared permission tables
758 */
759void vfio_pci_uninit_perm_bits(void)
760{
761 free_perm_bits(&cap_perms[PCI_CAP_ID_BASIC]);
762
763 free_perm_bits(&cap_perms[PCI_CAP_ID_PM]);
764 free_perm_bits(&cap_perms[PCI_CAP_ID_PCIX]);
765 free_perm_bits(&cap_perms[PCI_CAP_ID_EXP]);
766 free_perm_bits(&cap_perms[PCI_CAP_ID_AF]);
767
768 free_perm_bits(&ecap_perms[PCI_EXT_CAP_ID_ERR]);
769 free_perm_bits(&ecap_perms[PCI_EXT_CAP_ID_PWR]);
770}
771
772int __init vfio_pci_init_perm_bits(void)
773{
774 int ret;
775
776 /* Basic config space */
777 ret = init_pci_cap_basic_perm(&cap_perms[PCI_CAP_ID_BASIC]);
778
779 /* Capabilities */
780 ret |= init_pci_cap_pm_perm(&cap_perms[PCI_CAP_ID_PM]);
781 cap_perms[PCI_CAP_ID_VPD].writefn = vfio_direct_config_write;
782 ret |= init_pci_cap_pcix_perm(&cap_perms[PCI_CAP_ID_PCIX]);
783 cap_perms[PCI_CAP_ID_VNDR].writefn = vfio_direct_config_write;
784 ret |= init_pci_cap_exp_perm(&cap_perms[PCI_CAP_ID_EXP]);
785 ret |= init_pci_cap_af_perm(&cap_perms[PCI_CAP_ID_AF]);
786
787 /* Extended capabilities */
788 ret |= init_pci_ext_cap_err_perm(&ecap_perms[PCI_EXT_CAP_ID_ERR]);
789 ret |= init_pci_ext_cap_pwr_perm(&ecap_perms[PCI_EXT_CAP_ID_PWR]);
790 ecap_perms[PCI_EXT_CAP_ID_VNDR].writefn = vfio_direct_config_write;
791
792 if (ret)
793 vfio_pci_uninit_perm_bits();
794
795 return ret;
796}
797
798static int vfio_find_cap_start(struct vfio_pci_device *vdev, int pos)
799{
800 u8 cap;
801 int base = (pos >= PCI_CFG_SPACE_SIZE) ? PCI_CFG_SPACE_SIZE :
802 PCI_STD_HEADER_SIZEOF;
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600803 cap = vdev->pci_config_map[pos];
804
805 if (cap == PCI_CAP_ID_BASIC)
806 return 0;
807
808 /* XXX Can we have to abutting capabilities of the same type? */
809 while (pos - 1 >= base && vdev->pci_config_map[pos - 1] == cap)
810 pos--;
811
Alex Williamson180b1382013-04-01 09:03:44 -0600812 return pos;
Alex Williamson89e1f7d2012-07-31 08:16:24 -0600813}
814
815static int vfio_msi_config_read(struct vfio_pci_device *vdev, int pos,
816 int count, struct perm_bits *perm,
817 int offset, __le32 *val)
818{
819 /* Update max available queue size from msi_qmax */
820 if (offset <= PCI_MSI_FLAGS && offset + count >= PCI_MSI_FLAGS) {
821 __le16 *flags;
822 int start;
823
824 start = vfio_find_cap_start(vdev, pos);
825
826 flags = (__le16 *)&vdev->vconfig[start];
827
828 *flags &= cpu_to_le16(~PCI_MSI_FLAGS_QMASK);
829 *flags |= cpu_to_le16(vdev->msi_qmax << 1);
830 }
831
832 return vfio_default_config_read(vdev, pos, count, perm, offset, val);
833}
834
835static int vfio_msi_config_write(struct vfio_pci_device *vdev, int pos,
836 int count, struct perm_bits *perm,
837 int offset, __le32 val)
838{
839 count = vfio_default_config_write(vdev, pos, count, perm, offset, val);
840 if (count < 0)
841 return count;
842
843 /* Fixup and write configured queue size and enable to hardware */
844 if (offset <= PCI_MSI_FLAGS && offset + count >= PCI_MSI_FLAGS) {
845 __le16 *pflags;
846 u16 flags;
847 int start, ret;
848
849 start = vfio_find_cap_start(vdev, pos);
850
851 pflags = (__le16 *)&vdev->vconfig[start + PCI_MSI_FLAGS];
852
853 flags = le16_to_cpu(*pflags);
854
855 /* MSI is enabled via ioctl */
856 if (!is_msi(vdev))
857 flags &= ~PCI_MSI_FLAGS_ENABLE;
858
859 /* Check queue size */
860 if ((flags & PCI_MSI_FLAGS_QSIZE) >> 4 > vdev->msi_qmax) {
861 flags &= ~PCI_MSI_FLAGS_QSIZE;
862 flags |= vdev->msi_qmax << 4;
863 }
864
865 /* Write back to virt and to hardware */
866 *pflags = cpu_to_le16(flags);
867 ret = pci_user_write_config_word(vdev->pdev,
868 start + PCI_MSI_FLAGS,
869 flags);
870 if (ret)
871 return pcibios_err_to_errno(ret);
872 }
873
874 return count;
875}
876
877/*
878 * MSI determination is per-device, so this routine gets used beyond
879 * initialization time. Don't add __init
880 */
881static int init_pci_cap_msi_perm(struct perm_bits *perm, int len, u16 flags)
882{
883 if (alloc_perm_bits(perm, len))
884 return -ENOMEM;
885
886 perm->readfn = vfio_msi_config_read;
887 perm->writefn = vfio_msi_config_write;
888
889 p_setb(perm, PCI_CAP_LIST_NEXT, (u8)ALL_VIRT, NO_WRITE);
890
891 /*
892 * The upper byte of the control register is reserved,
893 * just setup the lower byte.
894 */
895 p_setb(perm, PCI_MSI_FLAGS, (u8)ALL_VIRT, (u8)ALL_WRITE);
896 p_setd(perm, PCI_MSI_ADDRESS_LO, ALL_VIRT, ALL_WRITE);
897 if (flags & PCI_MSI_FLAGS_64BIT) {
898 p_setd(perm, PCI_MSI_ADDRESS_HI, ALL_VIRT, ALL_WRITE);
899 p_setw(perm, PCI_MSI_DATA_64, (u16)ALL_VIRT, (u16)ALL_WRITE);
900 if (flags & PCI_MSI_FLAGS_MASKBIT) {
901 p_setd(perm, PCI_MSI_MASK_64, NO_VIRT, ALL_WRITE);
902 p_setd(perm, PCI_MSI_PENDING_64, NO_VIRT, ALL_WRITE);
903 }
904 } else {
905 p_setw(perm, PCI_MSI_DATA_32, (u16)ALL_VIRT, (u16)ALL_WRITE);
906 if (flags & PCI_MSI_FLAGS_MASKBIT) {
907 p_setd(perm, PCI_MSI_MASK_32, NO_VIRT, ALL_WRITE);
908 p_setd(perm, PCI_MSI_PENDING_32, NO_VIRT, ALL_WRITE);
909 }
910 }
911 return 0;
912}
913
914/* Determine MSI CAP field length; initialize msi_perms on 1st call per vdev */
915static int vfio_msi_cap_len(struct vfio_pci_device *vdev, u8 pos)
916{
917 struct pci_dev *pdev = vdev->pdev;
918 int len, ret;
919 u16 flags;
920
921 ret = pci_read_config_word(pdev, pos + PCI_MSI_FLAGS, &flags);
922 if (ret)
923 return pcibios_err_to_errno(ret);
924
925 len = 10; /* Minimum size */
926 if (flags & PCI_MSI_FLAGS_64BIT)
927 len += 4;
928 if (flags & PCI_MSI_FLAGS_MASKBIT)
929 len += 10;
930
931 if (vdev->msi_perm)
932 return len;
933
934 vdev->msi_perm = kmalloc(sizeof(struct perm_bits), GFP_KERNEL);
935 if (!vdev->msi_perm)
936 return -ENOMEM;
937
938 ret = init_pci_cap_msi_perm(vdev->msi_perm, len, flags);
939 if (ret)
940 return ret;
941
942 return len;
943}
944
945/* Determine extended capability length for VC (2 & 9) and MFVC */
946static int vfio_vc_cap_len(struct vfio_pci_device *vdev, u16 pos)
947{
948 struct pci_dev *pdev = vdev->pdev;
949 u32 tmp;
950 int ret, evcc, phases, vc_arb;
951 int len = PCI_CAP_VC_BASE_SIZEOF;
952
953 ret = pci_read_config_dword(pdev, pos + PCI_VC_PORT_REG1, &tmp);
954 if (ret)
955 return pcibios_err_to_errno(ret);
956
957 evcc = tmp & PCI_VC_REG1_EVCC; /* extended vc count */
958 ret = pci_read_config_dword(pdev, pos + PCI_VC_PORT_REG2, &tmp);
959 if (ret)
960 return pcibios_err_to_errno(ret);
961
962 if (tmp & PCI_VC_REG2_128_PHASE)
963 phases = 128;
964 else if (tmp & PCI_VC_REG2_64_PHASE)
965 phases = 64;
966 else if (tmp & PCI_VC_REG2_32_PHASE)
967 phases = 32;
968 else
969 phases = 0;
970
971 vc_arb = phases * 4;
972
973 /*
974 * Port arbitration tables are root & switch only;
975 * function arbitration tables are function 0 only.
976 * In either case, we'll never let user write them so
977 * we don't care how big they are
978 */
979 len += (1 + evcc) * PCI_CAP_VC_PER_VC_SIZEOF;
980 if (vc_arb) {
981 len = round_up(len, 16);
982 len += vc_arb / 8;
983 }
984 return len;
985}
986
987static int vfio_cap_len(struct vfio_pci_device *vdev, u8 cap, u8 pos)
988{
989 struct pci_dev *pdev = vdev->pdev;
990 u16 word;
991 u8 byte;
992 int ret;
993
994 switch (cap) {
995 case PCI_CAP_ID_MSI:
996 return vfio_msi_cap_len(vdev, pos);
997 case PCI_CAP_ID_PCIX:
998 ret = pci_read_config_word(pdev, pos + PCI_X_CMD, &word);
999 if (ret)
1000 return pcibios_err_to_errno(ret);
1001
1002 if (PCI_X_CMD_VERSION(word)) {
1003 vdev->extended_caps = true;
1004 return PCI_CAP_PCIX_SIZEOF_V2;
1005 } else
1006 return PCI_CAP_PCIX_SIZEOF_V0;
1007 case PCI_CAP_ID_VNDR:
1008 /* length follows next field */
1009 ret = pci_read_config_byte(pdev, pos + PCI_CAP_FLAGS, &byte);
1010 if (ret)
1011 return pcibios_err_to_errno(ret);
1012
1013 return byte;
1014 case PCI_CAP_ID_EXP:
1015 /* length based on version */
1016 ret = pci_read_config_word(pdev, pos + PCI_EXP_FLAGS, &word);
1017 if (ret)
1018 return pcibios_err_to_errno(ret);
1019
Alex Williamson5641ade2013-02-14 10:45:31 -07001020 vdev->extended_caps = true;
1021
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001022 if ((word & PCI_EXP_FLAGS_VERS) == 1)
1023 return PCI_CAP_EXP_ENDPOINT_SIZEOF_V1;
Alex Williamson5641ade2013-02-14 10:45:31 -07001024 else
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001025 return PCI_CAP_EXP_ENDPOINT_SIZEOF_V2;
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001026 case PCI_CAP_ID_HT:
1027 ret = pci_read_config_byte(pdev, pos + 3, &byte);
1028 if (ret)
1029 return pcibios_err_to_errno(ret);
1030
1031 return (byte & HT_3BIT_CAP_MASK) ?
1032 HT_CAP_SIZEOF_SHORT : HT_CAP_SIZEOF_LONG;
1033 case PCI_CAP_ID_SATA:
1034 ret = pci_read_config_byte(pdev, pos + PCI_SATA_REGS, &byte);
1035 if (ret)
1036 return pcibios_err_to_errno(ret);
1037
1038 byte &= PCI_SATA_REGS_MASK;
1039 if (byte == PCI_SATA_REGS_INLINE)
1040 return PCI_SATA_SIZEOF_LONG;
1041 else
1042 return PCI_SATA_SIZEOF_SHORT;
1043 default:
1044 pr_warn("%s: %s unknown length for pci cap 0x%x@0x%x\n",
1045 dev_name(&pdev->dev), __func__, cap, pos);
1046 }
1047
1048 return 0;
1049}
1050
1051static int vfio_ext_cap_len(struct vfio_pci_device *vdev, u16 ecap, u16 epos)
1052{
1053 struct pci_dev *pdev = vdev->pdev;
1054 u8 byte;
1055 u32 dword;
1056 int ret;
1057
1058 switch (ecap) {
1059 case PCI_EXT_CAP_ID_VNDR:
1060 ret = pci_read_config_dword(pdev, epos + PCI_VSEC_HDR, &dword);
1061 if (ret)
1062 return pcibios_err_to_errno(ret);
1063
1064 return dword >> PCI_VSEC_HDR_LEN_SHIFT;
1065 case PCI_EXT_CAP_ID_VC:
1066 case PCI_EXT_CAP_ID_VC9:
1067 case PCI_EXT_CAP_ID_MFVC:
1068 return vfio_vc_cap_len(vdev, epos);
1069 case PCI_EXT_CAP_ID_ACS:
1070 ret = pci_read_config_byte(pdev, epos + PCI_ACS_CAP, &byte);
1071 if (ret)
1072 return pcibios_err_to_errno(ret);
1073
1074 if (byte & PCI_ACS_EC) {
1075 int bits;
1076
1077 ret = pci_read_config_byte(pdev,
1078 epos + PCI_ACS_EGRESS_BITS,
1079 &byte);
1080 if (ret)
1081 return pcibios_err_to_errno(ret);
1082
1083 bits = byte ? round_up(byte, 32) : 256;
1084 return 8 + (bits / 8);
1085 }
1086 return 8;
1087
1088 case PCI_EXT_CAP_ID_REBAR:
1089 ret = pci_read_config_byte(pdev, epos + PCI_REBAR_CTRL, &byte);
1090 if (ret)
1091 return pcibios_err_to_errno(ret);
1092
1093 byte &= PCI_REBAR_CTRL_NBAR_MASK;
1094 byte >>= PCI_REBAR_CTRL_NBAR_SHIFT;
1095
1096 return 4 + (byte * 8);
1097 case PCI_EXT_CAP_ID_DPA:
1098 ret = pci_read_config_byte(pdev, epos + PCI_DPA_CAP, &byte);
1099 if (ret)
1100 return pcibios_err_to_errno(ret);
1101
1102 byte &= PCI_DPA_CAP_SUBSTATE_MASK;
1103 byte = round_up(byte + 1, 4);
1104 return PCI_DPA_BASE_SIZEOF + byte;
1105 case PCI_EXT_CAP_ID_TPH:
1106 ret = pci_read_config_dword(pdev, epos + PCI_TPH_CAP, &dword);
1107 if (ret)
1108 return pcibios_err_to_errno(ret);
1109
1110 if ((dword & PCI_TPH_CAP_LOC_MASK) == PCI_TPH_LOC_CAP) {
1111 int sts;
1112
1113 sts = byte & PCI_TPH_CAP_ST_MASK;
1114 sts >>= PCI_TPH_CAP_ST_SHIFT;
1115 return PCI_TPH_BASE_SIZEOF + round_up(sts * 2, 4);
1116 }
1117 return PCI_TPH_BASE_SIZEOF;
1118 default:
1119 pr_warn("%s: %s unknown length for pci ecap 0x%x@0x%x\n",
1120 dev_name(&pdev->dev), __func__, ecap, epos);
1121 }
1122
1123 return 0;
1124}
1125
1126static int vfio_fill_vconfig_bytes(struct vfio_pci_device *vdev,
1127 int offset, int size)
1128{
1129 struct pci_dev *pdev = vdev->pdev;
1130 int ret = 0;
1131
1132 /*
1133 * We try to read physical config space in the largest chunks
1134 * we can, assuming that all of the fields support dword access.
1135 * pci_save_state() makes this same assumption and seems to do ok.
1136 */
1137 while (size) {
1138 int filled;
1139
1140 if (size >= 4 && !(offset % 4)) {
1141 __le32 *dwordp = (__le32 *)&vdev->vconfig[offset];
1142 u32 dword;
1143
1144 ret = pci_read_config_dword(pdev, offset, &dword);
1145 if (ret)
1146 return ret;
1147 *dwordp = cpu_to_le32(dword);
1148 filled = 4;
1149 } else if (size >= 2 && !(offset % 2)) {
1150 __le16 *wordp = (__le16 *)&vdev->vconfig[offset];
1151 u16 word;
1152
1153 ret = pci_read_config_word(pdev, offset, &word);
1154 if (ret)
1155 return ret;
1156 *wordp = cpu_to_le16(word);
1157 filled = 2;
1158 } else {
1159 u8 *byte = &vdev->vconfig[offset];
1160 ret = pci_read_config_byte(pdev, offset, byte);
1161 if (ret)
1162 return ret;
1163 filled = 1;
1164 }
1165
1166 offset += filled;
1167 size -= filled;
1168 }
1169
1170 return ret;
1171}
1172
1173static int vfio_cap_init(struct vfio_pci_device *vdev)
1174{
1175 struct pci_dev *pdev = vdev->pdev;
1176 u8 *map = vdev->pci_config_map;
1177 u16 status;
1178 u8 pos, *prev, cap;
1179 int loops, ret, caps = 0;
1180
1181 /* Any capabilities? */
1182 ret = pci_read_config_word(pdev, PCI_STATUS, &status);
1183 if (ret)
1184 return ret;
1185
1186 if (!(status & PCI_STATUS_CAP_LIST))
1187 return 0; /* Done */
1188
1189 ret = pci_read_config_byte(pdev, PCI_CAPABILITY_LIST, &pos);
1190 if (ret)
1191 return ret;
1192
1193 /* Mark the previous position in case we want to skip a capability */
1194 prev = &vdev->vconfig[PCI_CAPABILITY_LIST];
1195
1196 /* We can bound our loop, capabilities are dword aligned */
1197 loops = (PCI_CFG_SPACE_SIZE - PCI_STD_HEADER_SIZEOF) / PCI_CAP_SIZEOF;
1198 while (pos && loops--) {
1199 u8 next;
1200 int i, len = 0;
1201
1202 ret = pci_read_config_byte(pdev, pos, &cap);
1203 if (ret)
1204 return ret;
1205
1206 ret = pci_read_config_byte(pdev,
1207 pos + PCI_CAP_LIST_NEXT, &next);
1208 if (ret)
1209 return ret;
1210
1211 if (cap <= PCI_CAP_ID_MAX) {
1212 len = pci_cap_length[cap];
1213 if (len == 0xFF) { /* Variable length */
1214 len = vfio_cap_len(vdev, cap, pos);
1215 if (len < 0)
1216 return len;
1217 }
1218 }
1219
1220 if (!len) {
1221 pr_info("%s: %s hiding cap 0x%x\n",
1222 __func__, dev_name(&pdev->dev), cap);
1223 *prev = next;
1224 pos = next;
1225 continue;
1226 }
1227
1228 /* Sanity check, do we overlap other capabilities? */
Alex Williamson180b1382013-04-01 09:03:44 -06001229 for (i = 0; i < len; i++) {
1230 if (likely(map[pos + i] == PCI_CAP_ID_INVALID))
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001231 continue;
1232
1233 pr_warn("%s: %s pci config conflict @0x%x, was cap 0x%x now cap 0x%x\n",
1234 __func__, dev_name(&pdev->dev),
1235 pos + i, map[pos + i], cap);
1236 }
1237
Alex Williamson180b1382013-04-01 09:03:44 -06001238 memset(map + pos, cap, len);
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001239 ret = vfio_fill_vconfig_bytes(vdev, pos, len);
1240 if (ret)
1241 return ret;
1242
1243 prev = &vdev->vconfig[pos + PCI_CAP_LIST_NEXT];
1244 pos = next;
1245 caps++;
1246 }
1247
1248 /* If we didn't fill any capabilities, clear the status flag */
1249 if (!caps) {
1250 __le16 *vstatus = (__le16 *)&vdev->vconfig[PCI_STATUS];
1251 *vstatus &= ~cpu_to_le16(PCI_STATUS_CAP_LIST);
1252 }
1253
1254 return 0;
1255}
1256
1257static int vfio_ecap_init(struct vfio_pci_device *vdev)
1258{
1259 struct pci_dev *pdev = vdev->pdev;
1260 u8 *map = vdev->pci_config_map;
1261 u16 epos;
1262 __le32 *prev = NULL;
1263 int loops, ret, ecaps = 0;
1264
1265 if (!vdev->extended_caps)
1266 return 0;
1267
1268 epos = PCI_CFG_SPACE_SIZE;
1269
1270 loops = (pdev->cfg_size - PCI_CFG_SPACE_SIZE) / PCI_CAP_SIZEOF;
1271
1272 while (loops-- && epos >= PCI_CFG_SPACE_SIZE) {
1273 u32 header;
1274 u16 ecap;
1275 int i, len = 0;
1276 bool hidden = false;
1277
1278 ret = pci_read_config_dword(pdev, epos, &header);
1279 if (ret)
1280 return ret;
1281
1282 ecap = PCI_EXT_CAP_ID(header);
1283
1284 if (ecap <= PCI_EXT_CAP_ID_MAX) {
1285 len = pci_ext_cap_length[ecap];
1286 if (len == 0xFF) {
1287 len = vfio_ext_cap_len(vdev, ecap, epos);
1288 if (len < 0)
1289 return ret;
1290 }
1291 }
1292
1293 if (!len) {
1294 pr_info("%s: %s hiding ecap 0x%x@0x%x\n",
1295 __func__, dev_name(&pdev->dev), ecap, epos);
1296
1297 /* If not the first in the chain, we can skip over it */
1298 if (prev) {
1299 u32 val = epos = PCI_EXT_CAP_NEXT(header);
1300 *prev &= cpu_to_le32(~(0xffcU << 20));
1301 *prev |= cpu_to_le32(val << 20);
1302 continue;
1303 }
1304
1305 /*
1306 * Otherwise, fill in a placeholder, the direct
1307 * readfn will virtualize this automatically
1308 */
1309 len = PCI_CAP_SIZEOF;
1310 hidden = true;
1311 }
1312
Alex Williamson180b1382013-04-01 09:03:44 -06001313 for (i = 0; i < len; i++) {
1314 if (likely(map[epos + i] == PCI_CAP_ID_INVALID))
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001315 continue;
1316
1317 pr_warn("%s: %s pci config conflict @0x%x, was ecap 0x%x now ecap 0x%x\n",
1318 __func__, dev_name(&pdev->dev),
1319 epos + i, map[epos + i], ecap);
1320 }
1321
1322 /*
1323 * Even though ecap is 2 bytes, we're currently a long way
1324 * from exceeding 1 byte capabilities. If we ever make it
1325 * up to 0xFF we'll need to up this to a two-byte, byte map.
1326 */
1327 BUILD_BUG_ON(PCI_EXT_CAP_ID_MAX >= PCI_CAP_ID_INVALID);
1328
Alex Williamson180b1382013-04-01 09:03:44 -06001329 memset(map + epos, ecap, len);
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001330 ret = vfio_fill_vconfig_bytes(vdev, epos, len);
1331 if (ret)
1332 return ret;
1333
1334 /*
1335 * If we're just using this capability to anchor the list,
1336 * hide the real ID. Only count real ecaps. XXX PCI spec
1337 * indicates to use cap id = 0, version = 0, next = 0 if
1338 * ecaps are absent, hope users check all the way to next.
1339 */
1340 if (hidden)
1341 *(__le32 *)&vdev->vconfig[epos] &=
1342 cpu_to_le32((0xffcU << 20));
1343 else
1344 ecaps++;
1345
1346 prev = (__le32 *)&vdev->vconfig[epos];
1347 epos = PCI_EXT_CAP_NEXT(header);
1348 }
1349
1350 if (!ecaps)
1351 *(u32 *)&vdev->vconfig[PCI_CFG_SPACE_SIZE] = 0;
1352
1353 return 0;
1354}
1355
1356/*
1357 * For each device we allocate a pci_config_map that indicates the
1358 * capability occupying each dword and thus the struct perm_bits we
1359 * use for read and write. We also allocate a virtualized config
1360 * space which tracks reads and writes to bits that we emulate for
1361 * the user. Initial values filled from device.
1362 *
1363 * Using shared stuct perm_bits between all vfio-pci devices saves
1364 * us from allocating cfg_size buffers for virt and write for every
1365 * device. We could remove vconfig and allocate individual buffers
1366 * for each area requring emulated bits, but the array of pointers
1367 * would be comparable in size (at least for standard config space).
1368 */
1369int vfio_config_init(struct vfio_pci_device *vdev)
1370{
1371 struct pci_dev *pdev = vdev->pdev;
1372 u8 *map, *vconfig;
1373 int ret;
1374
1375 /*
Alex Williamson180b1382013-04-01 09:03:44 -06001376 * Config space, caps and ecaps are all dword aligned, so we could
1377 * use one byte per dword to record the type. However, there are
1378 * no requiremenst on the length of a capability, so the gap between
1379 * capabilities needs byte granularity.
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001380 */
Alex Williamson180b1382013-04-01 09:03:44 -06001381 map = kmalloc(pdev->cfg_size, GFP_KERNEL);
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001382 if (!map)
1383 return -ENOMEM;
1384
1385 vconfig = kmalloc(pdev->cfg_size, GFP_KERNEL);
1386 if (!vconfig) {
1387 kfree(map);
1388 return -ENOMEM;
1389 }
1390
1391 vdev->pci_config_map = map;
1392 vdev->vconfig = vconfig;
1393
Alex Williamson180b1382013-04-01 09:03:44 -06001394 memset(map, PCI_CAP_ID_BASIC, PCI_STD_HEADER_SIZEOF);
1395 memset(map + PCI_STD_HEADER_SIZEOF, PCI_CAP_ID_INVALID,
1396 pdev->cfg_size - PCI_STD_HEADER_SIZEOF);
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001397
1398 ret = vfio_fill_vconfig_bytes(vdev, 0, PCI_STD_HEADER_SIZEOF);
1399 if (ret)
1400 goto out;
1401
1402 vdev->bardirty = true;
1403
1404 /*
1405 * XXX can we just pci_load_saved_state/pci_restore_state?
1406 * may need to rebuild vconfig after that
1407 */
1408
1409 /* For restore after reset */
1410 vdev->rbar[0] = le32_to_cpu(*(__le32 *)&vconfig[PCI_BASE_ADDRESS_0]);
1411 vdev->rbar[1] = le32_to_cpu(*(__le32 *)&vconfig[PCI_BASE_ADDRESS_1]);
1412 vdev->rbar[2] = le32_to_cpu(*(__le32 *)&vconfig[PCI_BASE_ADDRESS_2]);
1413 vdev->rbar[3] = le32_to_cpu(*(__le32 *)&vconfig[PCI_BASE_ADDRESS_3]);
1414 vdev->rbar[4] = le32_to_cpu(*(__le32 *)&vconfig[PCI_BASE_ADDRESS_4]);
1415 vdev->rbar[5] = le32_to_cpu(*(__le32 *)&vconfig[PCI_BASE_ADDRESS_5]);
1416 vdev->rbar[6] = le32_to_cpu(*(__le32 *)&vconfig[PCI_ROM_ADDRESS]);
1417
1418 if (pdev->is_virtfn) {
1419 *(__le16 *)&vconfig[PCI_VENDOR_ID] = cpu_to_le16(pdev->vendor);
1420 *(__le16 *)&vconfig[PCI_DEVICE_ID] = cpu_to_le16(pdev->device);
1421 }
1422
1423 ret = vfio_cap_init(vdev);
1424 if (ret)
1425 goto out;
1426
1427 ret = vfio_ecap_init(vdev);
1428 if (ret)
1429 goto out;
1430
1431 return 0;
1432
1433out:
1434 kfree(map);
1435 vdev->pci_config_map = NULL;
1436 kfree(vconfig);
1437 vdev->vconfig = NULL;
1438 return pcibios_err_to_errno(ret);
1439}
1440
1441void vfio_config_free(struct vfio_pci_device *vdev)
1442{
1443 kfree(vdev->vconfig);
1444 vdev->vconfig = NULL;
1445 kfree(vdev->pci_config_map);
1446 vdev->pci_config_map = NULL;
1447 kfree(vdev->msi_perm);
1448 vdev->msi_perm = NULL;
1449}
1450
Alex Williamson180b1382013-04-01 09:03:44 -06001451/*
1452 * Find the remaining number of bytes in a dword that match the given
1453 * position. Stop at either the end of the capability or the dword boundary.
1454 */
1455static size_t vfio_pci_cap_remaining_dword(struct vfio_pci_device *vdev,
1456 loff_t pos)
1457{
1458 u8 cap = vdev->pci_config_map[pos];
1459 size_t i;
1460
1461 for (i = 1; (pos + i) % 4 && vdev->pci_config_map[pos + i] == cap; i++)
1462 /* nop */;
1463
1464 return i;
1465}
1466
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001467static ssize_t vfio_config_do_rw(struct vfio_pci_device *vdev, char __user *buf,
1468 size_t count, loff_t *ppos, bool iswrite)
1469{
1470 struct pci_dev *pdev = vdev->pdev;
1471 struct perm_bits *perm;
1472 __le32 val = 0;
1473 int cap_start = 0, offset;
1474 u8 cap_id;
Alex Williamson180b1382013-04-01 09:03:44 -06001475 ssize_t ret;
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001476
Alex Williamson180b1382013-04-01 09:03:44 -06001477 if (*ppos < 0 || *ppos >= pdev->cfg_size ||
1478 *ppos + count > pdev->cfg_size)
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001479 return -EFAULT;
1480
1481 /*
Alex Williamson180b1382013-04-01 09:03:44 -06001482 * Chop accesses into aligned chunks containing no more than a
1483 * single capability. Caller increments to the next chunk.
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001484 */
Alex Williamson180b1382013-04-01 09:03:44 -06001485 count = min(count, vfio_pci_cap_remaining_dword(vdev, *ppos));
1486 if (count >= 4 && !(*ppos % 4))
1487 count = 4;
1488 else if (count >= 2 && !(*ppos % 2))
1489 count = 2;
1490 else
1491 count = 1;
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001492
Alex Williamson180b1382013-04-01 09:03:44 -06001493 ret = count;
1494
1495 cap_id = vdev->pci_config_map[*ppos];
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001496
1497 if (cap_id == PCI_CAP_ID_INVALID) {
1498 if (iswrite)
1499 return ret; /* drop */
1500
1501 /*
1502 * Per PCI spec 3.0, section 6.1, reads from reserved and
1503 * unimplemented registers return 0
1504 */
1505 if (copy_to_user(buf, &val, count))
1506 return -EFAULT;
1507
1508 return ret;
1509 }
1510
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001511 if (*ppos >= PCI_CFG_SPACE_SIZE) {
1512 WARN_ON(cap_id > PCI_EXT_CAP_ID_MAX);
1513
1514 perm = &ecap_perms[cap_id];
1515 cap_start = vfio_find_cap_start(vdev, *ppos);
1516
1517 } else {
1518 WARN_ON(cap_id > PCI_CAP_ID_MAX);
1519
1520 perm = &cap_perms[cap_id];
1521
1522 if (cap_id == PCI_CAP_ID_MSI)
1523 perm = vdev->msi_perm;
1524
1525 if (cap_id > PCI_CAP_ID_BASIC)
1526 cap_start = vfio_find_cap_start(vdev, *ppos);
1527 }
1528
1529 WARN_ON(!cap_start && cap_id != PCI_CAP_ID_BASIC);
1530 WARN_ON(cap_start > *ppos);
1531
1532 offset = *ppos - cap_start;
1533
1534 if (iswrite) {
1535 if (!perm->writefn)
1536 return ret;
1537
1538 if (copy_from_user(&val, buf, count))
1539 return -EFAULT;
1540
1541 ret = perm->writefn(vdev, *ppos, count, perm, offset, val);
1542 } else {
1543 if (perm->readfn) {
1544 ret = perm->readfn(vdev, *ppos, count,
1545 perm, offset, &val);
1546 if (ret < 0)
1547 return ret;
1548 }
1549
1550 if (copy_to_user(buf, &val, count))
1551 return -EFAULT;
1552 }
1553
1554 return ret;
1555}
1556
Alex Williamson906ee992013-02-14 14:02:12 -07001557ssize_t vfio_pci_config_rw(struct vfio_pci_device *vdev, char __user *buf,
1558 size_t count, loff_t *ppos, bool iswrite)
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001559{
1560 size_t done = 0;
1561 int ret = 0;
1562 loff_t pos = *ppos;
1563
1564 pos &= VFIO_PCI_OFFSET_MASK;
1565
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001566 while (count) {
Alex Williamson180b1382013-04-01 09:03:44 -06001567 ret = vfio_config_do_rw(vdev, buf, count, &pos, iswrite);
Alex Williamson89e1f7d2012-07-31 08:16:24 -06001568 if (ret < 0)
1569 return ret;
1570
1571 count -= ret;
1572 done += ret;
1573 buf += ret;
1574 pos += ret;
1575 }
1576
1577 *ppos += done;
1578
1579 return done;
1580}