1 // SPDX-License-Identifier: GPL-2.0
3 * PCI Backend - Provides a Virtual PCI bus (with real devices)
6 * Author: Ryan Wilson <hap9@epoch.ncsc.mil>
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #define dev_fmt pr_fmt
12 #include <linux/list.h>
13 #include <linux/slab.h>
14 #include <linux/pci.h>
15 #include <linux/mutex.h>
18 #define PCI_SLOT_MAX 32
20 struct vpci_dev_data
{
21 /* Access to dev_list must be protected by lock */
22 struct list_head dev_list
[PCI_SLOT_MAX
];
26 static inline struct list_head
*list_first(struct list_head
*head
)
31 static struct pci_dev
*__xen_pcibk_get_pci_dev(struct xen_pcibk_device
*pdev
,
36 struct pci_dev_entry
*entry
;
37 struct pci_dev
*dev
= NULL
;
38 struct vpci_dev_data
*vpci_dev
= pdev
->pci_dev_data
;
40 if (domain
!= 0 || bus
!= 0)
43 if (PCI_SLOT(devfn
) < PCI_SLOT_MAX
) {
44 mutex_lock(&vpci_dev
->lock
);
46 list_for_each_entry(entry
,
47 &vpci_dev
->dev_list
[PCI_SLOT(devfn
)],
49 if (PCI_FUNC(entry
->dev
->devfn
) == PCI_FUNC(devfn
)) {
55 mutex_unlock(&vpci_dev
->lock
);
60 static inline int match_slot(struct pci_dev
*l
, struct pci_dev
*r
)
62 if (pci_domain_nr(l
->bus
) == pci_domain_nr(r
->bus
)
63 && l
->bus
== r
->bus
&& PCI_SLOT(l
->devfn
) == PCI_SLOT(r
->devfn
))
69 static int __xen_pcibk_add_pci_dev(struct xen_pcibk_device
*pdev
,
70 struct pci_dev
*dev
, int devid
,
71 publish_pci_dev_cb publish_cb
)
73 int err
= 0, slot
, func
= PCI_FUNC(dev
->devfn
);
74 struct pci_dev_entry
*t
, *dev_entry
;
75 struct vpci_dev_data
*vpci_dev
= pdev
->pci_dev_data
;
77 if ((dev
->class >> 24) == PCI_BASE_CLASS_BRIDGE
) {
79 xenbus_dev_fatal(pdev
->xdev
, err
,
80 "Can't export bridges on the virtual PCI bus");
84 dev_entry
= kmalloc(sizeof(*dev_entry
), GFP_KERNEL
);
87 xenbus_dev_fatal(pdev
->xdev
, err
,
88 "Error adding entry to virtual PCI bus");
94 mutex_lock(&vpci_dev
->lock
);
97 * Keep multi-function devices together on the virtual PCI bus, except
98 * that we want to keep virtual functions at func 0 on their own. They
99 * aren't multi-function devices and hence their presence at func 0
100 * may cause guests to not scan the other functions.
102 if (!dev
->is_virtfn
|| func
) {
103 for (slot
= 0; slot
< PCI_SLOT_MAX
; slot
++) {
104 if (list_empty(&vpci_dev
->dev_list
[slot
]))
107 t
= list_entry(list_first(&vpci_dev
->dev_list
[slot
]),
108 struct pci_dev_entry
, list
);
109 if (t
->dev
->is_virtfn
&& !PCI_FUNC(t
->dev
->devfn
))
112 if (match_slot(dev
, t
->dev
)) {
113 dev_info(&dev
->dev
, "vpci: assign to virtual slot %d func %d\n",
115 list_add_tail(&dev_entry
->list
,
116 &vpci_dev
->dev_list
[slot
]);
122 /* Assign to a new slot on the virtual PCI bus */
123 for (slot
= 0; slot
< PCI_SLOT_MAX
; slot
++) {
124 if (list_empty(&vpci_dev
->dev_list
[slot
])) {
125 dev_info(&dev
->dev
, "vpci: assign to virtual slot %d\n",
127 list_add_tail(&dev_entry
->list
,
128 &vpci_dev
->dev_list
[slot
]);
134 xenbus_dev_fatal(pdev
->xdev
, err
,
135 "No more space on root virtual PCI bus");
138 mutex_unlock(&vpci_dev
->lock
);
140 /* Publish this device. */
142 err
= publish_cb(pdev
, 0, 0, PCI_DEVFN(slot
, func
), devid
);
150 static void __xen_pcibk_release_pci_dev(struct xen_pcibk_device
*pdev
,
151 struct pci_dev
*dev
, bool lock
)
154 struct vpci_dev_data
*vpci_dev
= pdev
->pci_dev_data
;
155 struct pci_dev
*found_dev
= NULL
;
157 mutex_lock(&vpci_dev
->lock
);
159 for (slot
= 0; slot
< PCI_SLOT_MAX
; slot
++) {
160 struct pci_dev_entry
*e
;
162 list_for_each_entry(e
, &vpci_dev
->dev_list
[slot
], list
) {
173 mutex_unlock(&vpci_dev
->lock
);
177 device_lock(&found_dev
->dev
);
178 pcistub_put_pci_dev(found_dev
);
180 device_unlock(&found_dev
->dev
);
184 static int __xen_pcibk_init_devices(struct xen_pcibk_device
*pdev
)
187 struct vpci_dev_data
*vpci_dev
;
189 vpci_dev
= kmalloc(sizeof(*vpci_dev
), GFP_KERNEL
);
193 mutex_init(&vpci_dev
->lock
);
195 for (slot
= 0; slot
< PCI_SLOT_MAX
; slot
++)
196 INIT_LIST_HEAD(&vpci_dev
->dev_list
[slot
]);
198 pdev
->pci_dev_data
= vpci_dev
;
203 static int __xen_pcibk_publish_pci_roots(struct xen_pcibk_device
*pdev
,
204 publish_pci_root_cb publish_cb
)
206 /* The Virtual PCI bus has only one root */
207 return publish_cb(pdev
, 0, 0);
210 static void __xen_pcibk_release_devices(struct xen_pcibk_device
*pdev
)
213 struct vpci_dev_data
*vpci_dev
= pdev
->pci_dev_data
;
215 for (slot
= 0; slot
< PCI_SLOT_MAX
; slot
++) {
216 struct pci_dev_entry
*e
, *tmp
;
217 list_for_each_entry_safe(e
, tmp
, &vpci_dev
->dev_list
[slot
],
219 struct pci_dev
*dev
= e
->dev
;
221 device_lock(&dev
->dev
);
222 pcistub_put_pci_dev(dev
);
223 device_unlock(&dev
->dev
);
229 pdev
->pci_dev_data
= NULL
;
232 static int __xen_pcibk_get_pcifront_dev(struct pci_dev
*pcidev
,
233 struct xen_pcibk_device
*pdev
,
234 unsigned int *domain
, unsigned int *bus
,
237 struct pci_dev_entry
*entry
;
238 struct vpci_dev_data
*vpci_dev
= pdev
->pci_dev_data
;
241 mutex_lock(&vpci_dev
->lock
);
242 for (slot
= 0; slot
< PCI_SLOT_MAX
; slot
++) {
243 list_for_each_entry(entry
,
244 &vpci_dev
->dev_list
[slot
],
246 if (entry
->dev
== pcidev
) {
250 *devfn
= PCI_DEVFN(slot
,
251 PCI_FUNC(pcidev
->devfn
));
255 mutex_unlock(&vpci_dev
->lock
);
259 const struct xen_pcibk_backend xen_pcibk_vpci_backend
= {
261 .init
= __xen_pcibk_init_devices
,
262 .free
= __xen_pcibk_release_devices
,
263 .find
= __xen_pcibk_get_pcifront_dev
,
264 .publish
= __xen_pcibk_publish_pci_roots
,
265 .release
= __xen_pcibk_release_pci_dev
,
266 .add
= __xen_pcibk_add_pci_dev
,
267 .get
= __xen_pcibk_get_pci_dev
,