blob: 1539becad1398c32adeb71c04d8b1f65b193fec7 [file] [log] [blame]
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001/*
2 * PCI Stub Driver - Grabs devices in backend to be exported later
3 *
4 * Ryan Wilson <hap9@epoch.ncsc.mil>
5 * Chris Bookholt <hap10@epoch.ncsc.mil>
6 */
Joe Perches283c0972013-06-28 03:21:41 -07007
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040010#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/rwsem.h>
13#include <linux/list.h>
14#include <linux/spinlock.h>
15#include <linux/kref.h>
16#include <linux/pci.h>
17#include <linux/wait.h>
18#include <linux/sched.h>
Konrad Rzeszutek Wilk8bfd4e02011-07-19 20:09:43 -040019#include <linux/atomic.h>
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040020#include <xen/events.h>
21#include <asm/xen/pci.h>
22#include <asm/xen/hypervisor.h>
Jan Beulich909b3fd2013-03-12 15:06:23 +000023#include <xen/interface/physdev.h>
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040024#include "pciback.h"
25#include "conf_space.h"
26#include "conf_space_quirks.h"
27
28static char *pci_devs_to_hide;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040029wait_queue_head_t xen_pcibk_aer_wait_queue;
30/*Add sem for sync AER handling and xen_pcibk remove/reconfigue ops,
31* We want to avoid in middle of AER ops, xen_pcibk devices is being removed
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040032*/
33static DECLARE_RWSEM(pcistub_sem);
34module_param_named(hide, pci_devs_to_hide, charp, 0444);
35
36struct pcistub_device_id {
37 struct list_head slot_list;
38 int domain;
39 unsigned char bus;
40 unsigned int devfn;
41};
42static LIST_HEAD(pcistub_device_ids);
43static DEFINE_SPINLOCK(device_ids_lock);
44
45struct pcistub_device {
46 struct kref kref;
47 struct list_head dev_list;
48 spinlock_t lock;
49
50 struct pci_dev *dev;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040051 struct xen_pcibk_device *pdev;/* non-NULL if struct pci_dev is in use */
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040052};
53
54/* Access to pcistub_devices & seized_devices lists and the initialize_devices
55 * flag must be locked with pcistub_devices_lock
56 */
57static DEFINE_SPINLOCK(pcistub_devices_lock);
58static LIST_HEAD(pcistub_devices);
59
60/* wait for device_initcall before initializing our devices
61 * (see pcistub_init_devices_late)
62 */
63static int initialize_devices;
64static LIST_HEAD(seized_devices);
65
66static struct pcistub_device *pcistub_device_alloc(struct pci_dev *dev)
67{
68 struct pcistub_device *psdev;
69
70 dev_dbg(&dev->dev, "pcistub_device_alloc\n");
71
72 psdev = kzalloc(sizeof(*psdev), GFP_ATOMIC);
73 if (!psdev)
74 return NULL;
75
76 psdev->dev = pci_dev_get(dev);
77 if (!psdev->dev) {
78 kfree(psdev);
79 return NULL;
80 }
81
82 kref_init(&psdev->kref);
83 spin_lock_init(&psdev->lock);
84
85 return psdev;
86}
87
88/* Don't call this directly as it's called by pcistub_device_put */
89static void pcistub_device_release(struct kref *kref)
90{
91 struct pcistub_device *psdev;
Jan Beulich909b3fd2013-03-12 15:06:23 +000092 struct pci_dev *dev;
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -050093 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040094
95 psdev = container_of(kref, struct pcistub_device, kref);
Jan Beulich909b3fd2013-03-12 15:06:23 +000096 dev = psdev->dev;
97 dev_data = pci_get_drvdata(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040098
Jan Beulich909b3fd2013-03-12 15:06:23 +000099 dev_dbg(&dev->dev, "pcistub_device_release\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400100
Jan Beulich909b3fd2013-03-12 15:06:23 +0000101 xen_unregister_device_domain_owner(dev);
Konrad Rzeszutek Wilk6221a9b2009-12-09 17:43:15 -0500102
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500103 /* Call the reset function which does not take lock as this
104 * is called from "unbind" which takes a device_lock mutex.
105 */
Jan Beulich909b3fd2013-03-12 15:06:23 +0000106 __pci_reset_function_locked(dev);
107 if (pci_load_and_free_saved_state(dev, &dev_data->pci_saved_state))
108 dev_dbg(&dev->dev, "Could not reload PCI state\n");
109 else
110 pci_restore_state(dev);
111
Jan Beulichd69c0e32013-05-29 13:31:15 +0100112 if (dev->msix_cap) {
Jan Beulich909b3fd2013-03-12 15:06:23 +0000113 struct physdev_pci_device ppdev = {
114 .seg = pci_domain_nr(dev->bus),
115 .bus = dev->bus->number,
116 .devfn = dev->devfn
117 };
118 int err = HYPERVISOR_physdev_op(PHYSDEVOP_release_msix,
119 &ppdev);
120
121 if (err)
122 dev_warn(&dev->dev, "MSI-X release failed (%d)\n",
123 err);
124 }
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500125
126 /* Disable the device */
Jan Beulich909b3fd2013-03-12 15:06:23 +0000127 xen_pcibk_reset_device(dev);
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500128
129 kfree(dev_data);
Jan Beulich909b3fd2013-03-12 15:06:23 +0000130 pci_set_drvdata(dev, NULL);
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500131
132 /* Clean-up the device */
Jan Beulich909b3fd2013-03-12 15:06:23 +0000133 xen_pcibk_config_free_dyn_fields(dev);
134 xen_pcibk_config_free_dev(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400135
Jan Beulich909b3fd2013-03-12 15:06:23 +0000136 dev->dev_flags &= ~PCI_DEV_FLAGS_ASSIGNED;
137 pci_dev_put(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400138
139 kfree(psdev);
140}
141
142static inline void pcistub_device_get(struct pcistub_device *psdev)
143{
144 kref_get(&psdev->kref);
145}
146
147static inline void pcistub_device_put(struct pcistub_device *psdev)
148{
149 kref_put(&psdev->kref, pcistub_device_release);
150}
151
152static struct pcistub_device *pcistub_device_find(int domain, int bus,
153 int slot, int func)
154{
155 struct pcistub_device *psdev = NULL;
156 unsigned long flags;
157
158 spin_lock_irqsave(&pcistub_devices_lock, flags);
159
160 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
161 if (psdev->dev != NULL
162 && domain == pci_domain_nr(psdev->dev->bus)
163 && bus == psdev->dev->bus->number
Jan Beulichb3e40b72012-11-02 14:37:13 +0000164 && slot == PCI_SLOT(psdev->dev->devfn)
165 && func == PCI_FUNC(psdev->dev->devfn)) {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400166 pcistub_device_get(psdev);
167 goto out;
168 }
169 }
170
171 /* didn't find it */
172 psdev = NULL;
173
174out:
175 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
176 return psdev;
177}
178
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400179static struct pci_dev *pcistub_device_get_pci_dev(struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400180 struct pcistub_device *psdev)
181{
182 struct pci_dev *pci_dev = NULL;
183 unsigned long flags;
184
185 pcistub_device_get(psdev);
186
187 spin_lock_irqsave(&psdev->lock, flags);
188 if (!psdev->pdev) {
189 psdev->pdev = pdev;
190 pci_dev = psdev->dev;
191 }
192 spin_unlock_irqrestore(&psdev->lock, flags);
193
194 if (!pci_dev)
195 pcistub_device_put(psdev);
196
197 return pci_dev;
198}
199
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400200struct pci_dev *pcistub_get_pci_dev_by_slot(struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400201 int domain, int bus,
202 int slot, int func)
203{
204 struct pcistub_device *psdev;
205 struct pci_dev *found_dev = NULL;
206 unsigned long flags;
207
208 spin_lock_irqsave(&pcistub_devices_lock, flags);
209
210 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
211 if (psdev->dev != NULL
212 && domain == pci_domain_nr(psdev->dev->bus)
213 && bus == psdev->dev->bus->number
Jan Beulichb3e40b72012-11-02 14:37:13 +0000214 && slot == PCI_SLOT(psdev->dev->devfn)
215 && func == PCI_FUNC(psdev->dev->devfn)) {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400216 found_dev = pcistub_device_get_pci_dev(pdev, psdev);
217 break;
218 }
219 }
220
221 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
222 return found_dev;
223}
224
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400225struct pci_dev *pcistub_get_pci_dev(struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400226 struct pci_dev *dev)
227{
228 struct pcistub_device *psdev;
229 struct pci_dev *found_dev = NULL;
230 unsigned long flags;
231
232 spin_lock_irqsave(&pcistub_devices_lock, flags);
233
234 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
235 if (psdev->dev == dev) {
236 found_dev = pcistub_device_get_pci_dev(pdev, psdev);
237 break;
238 }
239 }
240
241 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
242 return found_dev;
243}
244
245void pcistub_put_pci_dev(struct pci_dev *dev)
246{
247 struct pcistub_device *psdev, *found_psdev = NULL;
248 unsigned long flags;
249
250 spin_lock_irqsave(&pcistub_devices_lock, flags);
251
252 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
253 if (psdev->dev == dev) {
254 found_psdev = psdev;
255 break;
256 }
257 }
258
259 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
Konrad Rzeszutek Wilk4645bf32011-09-29 13:12:43 -0400260 if (WARN_ON(!found_psdev))
261 return;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400262
263 /*hold this lock for avoiding breaking link between
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400264 * pcistub and xen_pcibk when AER is in processing
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400265 */
266 down_write(&pcistub_sem);
267 /* Cleanup our device
268 * (so it's ready for the next domain)
269 */
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500270
271 /* This is OK - we are running from workqueue context
272 * and want to inhibit the user from fiddling with 'reset'
273 */
274 pci_reset_function(dev);
Konrad Rzeszutek Wilk88990352013-12-03 21:34:03 -0500275 pci_restore_state(dev);
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500276
277 /* This disables the device. */
Konrad Rzeszutek Wilk88990352013-12-03 21:34:03 -0500278 xen_pcibk_reset_device(dev);
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500279
280 /* And cleanup up our emulated fields. */
Konrad Rzeszutek Wilk88990352013-12-03 21:34:03 -0500281 xen_pcibk_config_reset_dev(dev);
Konrad Rzeszutek Wilkfcb8ce92013-12-03 21:37:24 -0500282 xen_pcibk_config_free_dyn_fields(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400283
Konrad Rzeszutek Wilk88990352013-12-03 21:34:03 -0500284 xen_unregister_device_domain_owner(dev);
Konrad Rzeszutek Wilk31673552012-01-04 15:11:02 -0500285
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400286 spin_lock_irqsave(&found_psdev->lock, flags);
287 found_psdev->pdev = NULL;
288 spin_unlock_irqrestore(&found_psdev->lock, flags);
289
290 pcistub_device_put(found_psdev);
291 up_write(&pcistub_sem);
292}
293
Greg Kroah-Hartman345a5252012-12-21 13:00:00 -0800294static int pcistub_match_one(struct pci_dev *dev,
295 struct pcistub_device_id *pdev_id)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400296{
297 /* Match the specified device by domain, bus, slot, func and also if
298 * any of the device's parent bridges match.
299 */
300 for (; dev != NULL; dev = dev->bus->self) {
301 if (pci_domain_nr(dev->bus) == pdev_id->domain
302 && dev->bus->number == pdev_id->bus
303 && dev->devfn == pdev_id->devfn)
304 return 1;
305
306 /* Sometimes topmost bridge links to itself. */
307 if (dev == dev->bus->self)
308 break;
309 }
310
311 return 0;
312}
313
Greg Kroah-Hartman345a5252012-12-21 13:00:00 -0800314static int pcistub_match(struct pci_dev *dev)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400315{
316 struct pcistub_device_id *pdev_id;
317 unsigned long flags;
318 int found = 0;
319
320 spin_lock_irqsave(&device_ids_lock, flags);
321 list_for_each_entry(pdev_id, &pcistub_device_ids, slot_list) {
322 if (pcistub_match_one(dev, pdev_id)) {
323 found = 1;
324 break;
325 }
326 }
327 spin_unlock_irqrestore(&device_ids_lock, flags);
328
329 return found;
330}
331
Greg Kroah-Hartman345a5252012-12-21 13:00:00 -0800332static int pcistub_init_device(struct pci_dev *dev)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400333{
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400334 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400335 int err = 0;
336
337 dev_dbg(&dev->dev, "initializing...\n");
338
339 /* The PCI backend is not intended to be a module (or to work with
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400340 * removable PCI devices (yet). If it were, xen_pcibk_config_free()
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400341 * would need to be called somewhere to free the memory allocated
342 * here and then to call kfree(pci_get_drvdata(psdev->dev)).
343 */
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400344 dev_data = kzalloc(sizeof(*dev_data) + strlen(DRV_NAME "[]")
345 + strlen(pci_name(dev)) + 1, GFP_ATOMIC);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400346 if (!dev_data) {
347 err = -ENOMEM;
348 goto out;
349 }
350 pci_set_drvdata(dev, dev_data);
351
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400352 /*
353 * Setup name for fake IRQ handler. It will only be enabled
354 * once the device is turned on by the guest.
355 */
356 sprintf(dev_data->irq_name, DRV_NAME "[%s]", pci_name(dev));
357
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400358 dev_dbg(&dev->dev, "initializing config\n");
359
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400360 init_waitqueue_head(&xen_pcibk_aer_wait_queue);
361 err = xen_pcibk_config_init_dev(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400362 if (err)
363 goto out;
364
365 /* HACK: Force device (& ACPI) to determine what IRQ it's on - we
366 * must do this here because pcibios_enable_device may specify
367 * the pci device's true irq (and possibly its other resources)
368 * if they differ from what's in the configuration space.
369 * This makes the assumption that the device's resources won't
370 * change after this point (otherwise this code may break!)
371 */
372 dev_dbg(&dev->dev, "enabling device\n");
373 err = pci_enable_device(dev);
374 if (err)
375 goto config_release;
376
Jan Beulichd69c0e32013-05-29 13:31:15 +0100377 if (dev->msix_cap) {
Jan Beulich909b3fd2013-03-12 15:06:23 +0000378 struct physdev_pci_device ppdev = {
379 .seg = pci_domain_nr(dev->bus),
380 .bus = dev->bus->number,
381 .devfn = dev->devfn
382 };
383
384 err = HYPERVISOR_physdev_op(PHYSDEVOP_prepare_msix, &ppdev);
385 if (err)
386 dev_err(&dev->dev, "MSI-X preparation failed (%d)\n",
387 err);
388 }
389
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500390 /* We need the device active to save the state. */
391 dev_dbg(&dev->dev, "save state of device\n");
392 pci_save_state(dev);
393 dev_data->pci_saved_state = pci_store_saved_state(dev);
394 if (!dev_data->pci_saved_state)
395 dev_err(&dev->dev, "Could not store PCI conf saved state!\n");
Konrad Rzeszutek Wilk80ba77d2012-09-05 16:35:20 -0400396 else {
Masanari Iida744627e92012-11-05 23:30:40 +0900397 dev_dbg(&dev->dev, "resetting (FLR, D3, etc) the device\n");
Konrad Rzeszutek Wilk80ba77d2012-09-05 16:35:20 -0400398 __pci_reset_function_locked(dev);
Konrad Rzeszutek Wilkc341ca42012-09-25 16:48:24 -0400399 pci_restore_state(dev);
Konrad Rzeszutek Wilk80ba77d2012-09-05 16:35:20 -0400400 }
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400401 /* Now disable the device (this also ensures some private device
402 * data is setup before we export)
403 */
404 dev_dbg(&dev->dev, "reset device\n");
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400405 xen_pcibk_reset_device(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400406
Konrad Rzeszutek Wilk97309d32012-01-04 14:10:32 -0500407 dev->dev_flags |= PCI_DEV_FLAGS_ASSIGNED;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400408 return 0;
409
410config_release:
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400411 xen_pcibk_config_free_dev(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400412
413out:
414 pci_set_drvdata(dev, NULL);
415 kfree(dev_data);
416 return err;
417}
418
419/*
420 * Because some initialization still happens on
421 * devices during fs_initcall, we need to defer
422 * full initialization of our devices until
423 * device_initcall.
424 */
425static int __init pcistub_init_devices_late(void)
426{
427 struct pcistub_device *psdev;
428 unsigned long flags;
429 int err = 0;
430
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400431 spin_lock_irqsave(&pcistub_devices_lock, flags);
432
433 while (!list_empty(&seized_devices)) {
434 psdev = container_of(seized_devices.next,
435 struct pcistub_device, dev_list);
436 list_del(&psdev->dev_list);
437
438 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
439
440 err = pcistub_init_device(psdev->dev);
441 if (err) {
442 dev_err(&psdev->dev->dev,
443 "error %d initializing device\n", err);
444 kfree(psdev);
445 psdev = NULL;
446 }
447
448 spin_lock_irqsave(&pcistub_devices_lock, flags);
449
450 if (psdev)
451 list_add_tail(&psdev->dev_list, &pcistub_devices);
452 }
453
454 initialize_devices = 1;
455
456 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
457
458 return 0;
459}
460
Greg Kroah-Hartman345a5252012-12-21 13:00:00 -0800461static int pcistub_seize(struct pci_dev *dev)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400462{
463 struct pcistub_device *psdev;
464 unsigned long flags;
465 int err = 0;
466
467 psdev = pcistub_device_alloc(dev);
468 if (!psdev)
469 return -ENOMEM;
470
471 spin_lock_irqsave(&pcistub_devices_lock, flags);
472
473 if (initialize_devices) {
474 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
475
476 /* don't want irqs disabled when calling pcistub_init_device */
477 err = pcistub_init_device(psdev->dev);
478
479 spin_lock_irqsave(&pcistub_devices_lock, flags);
480
481 if (!err)
482 list_add(&psdev->dev_list, &pcistub_devices);
483 } else {
484 dev_dbg(&dev->dev, "deferring initialization\n");
485 list_add(&psdev->dev_list, &seized_devices);
486 }
487
488 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
489
490 if (err)
491 pcistub_device_put(psdev);
492
493 return err;
494}
495
Konrad Rzeszutek Wilk24d8bf12014-04-21 15:43:08 -0400496/* Called when 'bind'. This means we must _NOT_ call pci_reset_function or
497 * other functions that take the sysfs lock. */
Greg Kroah-Hartman345a5252012-12-21 13:00:00 -0800498static int pcistub_probe(struct pci_dev *dev, const struct pci_device_id *id)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400499{
500 int err = 0;
501
502 dev_dbg(&dev->dev, "probing...\n");
503
504 if (pcistub_match(dev)) {
505
506 if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL
507 && dev->hdr_type != PCI_HEADER_TYPE_BRIDGE) {
508 dev_err(&dev->dev, "can't export pci devices that "
509 "don't have a normal (0) or bridge (1) "
510 "header type!\n");
511 err = -ENODEV;
512 goto out;
513 }
514
515 dev_info(&dev->dev, "seizing device\n");
516 err = pcistub_seize(dev);
517 } else
518 /* Didn't find the device */
519 err = -ENODEV;
520
521out:
522 return err;
523}
524
Konrad Rzeszutek Wilk24d8bf12014-04-21 15:43:08 -0400525/* Called when 'unbind'. This means we must _NOT_ call pci_reset_function or
526 * other functions that take the sysfs lock. */
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400527static void pcistub_remove(struct pci_dev *dev)
528{
529 struct pcistub_device *psdev, *found_psdev = NULL;
530 unsigned long flags;
531
532 dev_dbg(&dev->dev, "removing\n");
533
534 spin_lock_irqsave(&pcistub_devices_lock, flags);
535
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400536 xen_pcibk_config_quirk_release(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400537
538 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
539 if (psdev->dev == dev) {
540 found_psdev = psdev;
541 break;
542 }
543 }
544
545 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
546
547 if (found_psdev) {
548 dev_dbg(&dev->dev, "found device to remove - in use? %p\n",
549 found_psdev->pdev);
550
551 if (found_psdev->pdev) {
Joe Perches283c0972013-06-28 03:21:41 -0700552 pr_warn("****** removing device %s while still in-use! ******\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400553 pci_name(found_psdev->dev));
Joe Perches283c0972013-06-28 03:21:41 -0700554 pr_warn("****** driver domain may still access this device's i/o resources!\n");
555 pr_warn("****** shutdown driver domain before binding device\n");
556 pr_warn("****** to other drivers or domains\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400557
Konrad Rzeszutek Wilk8be9df62013-12-03 21:47:37 -0500558 /* N.B. This ends up calling pcistub_put_pci_dev which ends up
559 * doing the FLR. */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400560 xen_pcibk_release_pci_dev(found_psdev->pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400561 found_psdev->dev);
562 }
563
564 spin_lock_irqsave(&pcistub_devices_lock, flags);
565 list_del(&found_psdev->dev_list);
566 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
567
568 /* the final put for releasing from the list */
569 pcistub_device_put(found_psdev);
570 }
571}
572
Konrad Rzeszutek Wilk8bfd4e02011-07-19 20:09:43 -0400573static DEFINE_PCI_DEVICE_TABLE(pcistub_ids) = {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400574 {
575 .vendor = PCI_ANY_ID,
576 .device = PCI_ANY_ID,
577 .subvendor = PCI_ANY_ID,
578 .subdevice = PCI_ANY_ID,
579 },
580 {0,},
581};
582
583#define PCI_NODENAME_MAX 40
584static void kill_domain_by_device(struct pcistub_device *psdev)
585{
586 struct xenbus_transaction xbt;
587 int err;
588 char nodename[PCI_NODENAME_MAX];
589
Konrad Rzeszutek Wilk72bf8092011-09-29 13:43:28 -0400590 BUG_ON(!psdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400591 snprintf(nodename, PCI_NODENAME_MAX, "/local/domain/0/backend/pci/%d/0",
592 psdev->pdev->xdev->otherend_id);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400593
594again:
595 err = xenbus_transaction_start(&xbt);
596 if (err) {
597 dev_err(&psdev->dev->dev,
598 "error %d when start xenbus transaction\n", err);
599 return;
600 }
601 /*PV AER handlers will set this flag*/
602 xenbus_printf(xbt, nodename, "aerState" , "aerfail");
603 err = xenbus_transaction_end(xbt, 0);
604 if (err) {
605 if (err == -EAGAIN)
606 goto again;
607 dev_err(&psdev->dev->dev,
608 "error %d when end xenbus transaction\n", err);
609 return;
610 }
611}
612
613/* For each aer recovery step error_detected, mmio_enabled, etc, front_end and
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400614 * backend need to have cooperation. In xen_pcibk, those steps will do similar
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400615 * jobs: send service request and waiting for front_end response.
616*/
617static pci_ers_result_t common_process(struct pcistub_device *psdev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400618 pci_channel_state_t state, int aer_cmd,
619 pci_ers_result_t result)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400620{
621 pci_ers_result_t res = result;
622 struct xen_pcie_aer_op *aer_op;
623 int ret;
624
625 /*with PV AER drivers*/
626 aer_op = &(psdev->pdev->sh_info->aer_op);
627 aer_op->cmd = aer_cmd ;
628 /*useful for error_detected callback*/
629 aer_op->err = state;
630 /*pcifront_end BDF*/
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400631 ret = xen_pcibk_get_pcifront_dev(psdev->dev, psdev->pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400632 &aer_op->domain, &aer_op->bus, &aer_op->devfn);
633 if (!ret) {
634 dev_err(&psdev->dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400635 DRV_NAME ": failed to get pcifront device\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400636 return PCI_ERS_RESULT_NONE;
637 }
638 wmb();
639
640 dev_dbg(&psdev->dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400641 DRV_NAME ": aer_op %x dom %x bus %x devfn %x\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400642 aer_cmd, aer_op->domain, aer_op->bus, aer_op->devfn);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400643 /*local flag to mark there's aer request, xen_pcibk callback will use
644 * this flag to judge whether we need to check pci-front give aer
645 * service ack signal
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400646 */
647 set_bit(_PCIB_op_pending, (unsigned long *)&psdev->pdev->flags);
648
649 /*It is possible that a pcifront conf_read_write ops request invokes
650 * the callback which cause the spurious execution of wake_up.
651 * Yet it is harmless and better than a spinlock here
652 */
653 set_bit(_XEN_PCIB_active,
654 (unsigned long *)&psdev->pdev->sh_info->flags);
655 wmb();
656 notify_remote_via_irq(psdev->pdev->evtchn_irq);
657
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400658 ret = wait_event_timeout(xen_pcibk_aer_wait_queue,
659 !(test_bit(_XEN_PCIB_active, (unsigned long *)
660 &psdev->pdev->sh_info->flags)), 300*HZ);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400661
662 if (!ret) {
663 if (test_bit(_XEN_PCIB_active,
664 (unsigned long *)&psdev->pdev->sh_info->flags)) {
665 dev_err(&psdev->dev->dev,
666 "pcifront aer process not responding!\n");
667 clear_bit(_XEN_PCIB_active,
668 (unsigned long *)&psdev->pdev->sh_info->flags);
669 aer_op->err = PCI_ERS_RESULT_NONE;
670 return res;
671 }
672 }
673 clear_bit(_PCIB_op_pending, (unsigned long *)&psdev->pdev->flags);
674
675 if (test_bit(_XEN_PCIF_active,
676 (unsigned long *)&psdev->pdev->sh_info->flags)) {
677 dev_dbg(&psdev->dev->dev,
Jan Beulich402c5e12011-09-21 16:22:11 -0400678 "schedule pci_conf service in " DRV_NAME "\n");
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400679 xen_pcibk_test_and_schedule_op(psdev->pdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400680 }
681
682 res = (pci_ers_result_t)aer_op->err;
683 return res;
684}
685
686/*
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400687* xen_pcibk_slot_reset: it will send the slot_reset request to pcifront in case
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400688* of the device driver could provide this service, and then wait for pcifront
689* ack.
690* @dev: pointer to PCI devices
691* return value is used by aer_core do_recovery policy
692*/
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400693static pci_ers_result_t xen_pcibk_slot_reset(struct pci_dev *dev)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400694{
695 struct pcistub_device *psdev;
696 pci_ers_result_t result;
697
698 result = PCI_ERS_RESULT_RECOVERED;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400699 dev_dbg(&dev->dev, "xen_pcibk_slot_reset(bus:%x,devfn:%x)\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400700 dev->bus->number, dev->devfn);
701
702 down_write(&pcistub_sem);
703 psdev = pcistub_device_find(pci_domain_nr(dev->bus),
704 dev->bus->number,
705 PCI_SLOT(dev->devfn),
706 PCI_FUNC(dev->devfn));
707
708 if (!psdev || !psdev->pdev) {
709 dev_err(&dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400710 DRV_NAME " device is not found/assigned\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400711 goto end;
712 }
713
714 if (!psdev->pdev->sh_info) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400715 dev_err(&dev->dev, DRV_NAME " device is not connected or owned"
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400716 " by HVM, kill it\n");
717 kill_domain_by_device(psdev);
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100718 goto end;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400719 }
720
721 if (!test_bit(_XEN_PCIB_AERHANDLER,
722 (unsigned long *)&psdev->pdev->sh_info->flags)) {
723 dev_err(&dev->dev,
724 "guest with no AER driver should have been killed\n");
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100725 goto end;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400726 }
727 result = common_process(psdev, 1, XEN_PCI_OP_aer_slotreset, result);
728
729 if (result == PCI_ERS_RESULT_NONE ||
730 result == PCI_ERS_RESULT_DISCONNECT) {
731 dev_dbg(&dev->dev,
732 "No AER slot_reset service or disconnected!\n");
733 kill_domain_by_device(psdev);
734 }
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400735end:
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100736 if (psdev)
737 pcistub_device_put(psdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400738 up_write(&pcistub_sem);
739 return result;
740
741}
742
743
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400744/*xen_pcibk_mmio_enabled: it will send the mmio_enabled request to pcifront
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400745* in case of the device driver could provide this service, and then wait
746* for pcifront ack
747* @dev: pointer to PCI devices
748* return value is used by aer_core do_recovery policy
749*/
750
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400751static pci_ers_result_t xen_pcibk_mmio_enabled(struct pci_dev *dev)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400752{
753 struct pcistub_device *psdev;
754 pci_ers_result_t result;
755
756 result = PCI_ERS_RESULT_RECOVERED;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400757 dev_dbg(&dev->dev, "xen_pcibk_mmio_enabled(bus:%x,devfn:%x)\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400758 dev->bus->number, dev->devfn);
759
760 down_write(&pcistub_sem);
761 psdev = pcistub_device_find(pci_domain_nr(dev->bus),
762 dev->bus->number,
763 PCI_SLOT(dev->devfn),
764 PCI_FUNC(dev->devfn));
765
766 if (!psdev || !psdev->pdev) {
767 dev_err(&dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400768 DRV_NAME " device is not found/assigned\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400769 goto end;
770 }
771
772 if (!psdev->pdev->sh_info) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400773 dev_err(&dev->dev, DRV_NAME " device is not connected or owned"
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400774 " by HVM, kill it\n");
775 kill_domain_by_device(psdev);
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100776 goto end;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400777 }
778
779 if (!test_bit(_XEN_PCIB_AERHANDLER,
780 (unsigned long *)&psdev->pdev->sh_info->flags)) {
781 dev_err(&dev->dev,
782 "guest with no AER driver should have been killed\n");
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100783 goto end;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400784 }
785 result = common_process(psdev, 1, XEN_PCI_OP_aer_mmio, result);
786
787 if (result == PCI_ERS_RESULT_NONE ||
788 result == PCI_ERS_RESULT_DISCONNECT) {
789 dev_dbg(&dev->dev,
790 "No AER mmio_enabled service or disconnected!\n");
791 kill_domain_by_device(psdev);
792 }
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400793end:
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100794 if (psdev)
795 pcistub_device_put(psdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400796 up_write(&pcistub_sem);
797 return result;
798}
799
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400800/*xen_pcibk_error_detected: it will send the error_detected request to pcifront
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400801* in case of the device driver could provide this service, and then wait
802* for pcifront ack.
803* @dev: pointer to PCI devices
804* @error: the current PCI connection state
805* return value is used by aer_core do_recovery policy
806*/
807
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400808static pci_ers_result_t xen_pcibk_error_detected(struct pci_dev *dev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400809 pci_channel_state_t error)
810{
811 struct pcistub_device *psdev;
812 pci_ers_result_t result;
813
814 result = PCI_ERS_RESULT_CAN_RECOVER;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400815 dev_dbg(&dev->dev, "xen_pcibk_error_detected(bus:%x,devfn:%x)\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400816 dev->bus->number, dev->devfn);
817
818 down_write(&pcistub_sem);
819 psdev = pcistub_device_find(pci_domain_nr(dev->bus),
820 dev->bus->number,
821 PCI_SLOT(dev->devfn),
822 PCI_FUNC(dev->devfn));
823
824 if (!psdev || !psdev->pdev) {
825 dev_err(&dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400826 DRV_NAME " device is not found/assigned\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400827 goto end;
828 }
829
830 if (!psdev->pdev->sh_info) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400831 dev_err(&dev->dev, DRV_NAME " device is not connected or owned"
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400832 " by HVM, kill it\n");
833 kill_domain_by_device(psdev);
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100834 goto end;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400835 }
836
837 /*Guest owns the device yet no aer handler regiested, kill guest*/
838 if (!test_bit(_XEN_PCIB_AERHANDLER,
839 (unsigned long *)&psdev->pdev->sh_info->flags)) {
840 dev_dbg(&dev->dev, "guest may have no aer driver, kill it\n");
841 kill_domain_by_device(psdev);
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100842 goto end;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400843 }
844 result = common_process(psdev, error, XEN_PCI_OP_aer_detected, result);
845
846 if (result == PCI_ERS_RESULT_NONE ||
847 result == PCI_ERS_RESULT_DISCONNECT) {
848 dev_dbg(&dev->dev,
849 "No AER error_detected service or disconnected!\n");
850 kill_domain_by_device(psdev);
851 }
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400852end:
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100853 if (psdev)
854 pcistub_device_put(psdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400855 up_write(&pcistub_sem);
856 return result;
857}
858
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400859/*xen_pcibk_error_resume: it will send the error_resume request to pcifront
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400860* in case of the device driver could provide this service, and then wait
861* for pcifront ack.
862* @dev: pointer to PCI devices
863*/
864
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400865static void xen_pcibk_error_resume(struct pci_dev *dev)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400866{
867 struct pcistub_device *psdev;
868
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400869 dev_dbg(&dev->dev, "xen_pcibk_error_resume(bus:%x,devfn:%x)\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400870 dev->bus->number, dev->devfn);
871
872 down_write(&pcistub_sem);
873 psdev = pcistub_device_find(pci_domain_nr(dev->bus),
874 dev->bus->number,
875 PCI_SLOT(dev->devfn),
876 PCI_FUNC(dev->devfn));
877
878 if (!psdev || !psdev->pdev) {
879 dev_err(&dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400880 DRV_NAME " device is not found/assigned\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400881 goto end;
882 }
883
884 if (!psdev->pdev->sh_info) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400885 dev_err(&dev->dev, DRV_NAME " device is not connected or owned"
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400886 " by HVM, kill it\n");
887 kill_domain_by_device(psdev);
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100888 goto end;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400889 }
890
891 if (!test_bit(_XEN_PCIB_AERHANDLER,
892 (unsigned long *)&psdev->pdev->sh_info->flags)) {
893 dev_err(&dev->dev,
894 "guest with no AER driver should have been killed\n");
895 kill_domain_by_device(psdev);
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100896 goto end;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400897 }
898 common_process(psdev, 1, XEN_PCI_OP_aer_resume,
899 PCI_ERS_RESULT_RECOVERED);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400900end:
Jan Beuliche6aa70a2012-09-24 15:55:37 +0100901 if (psdev)
902 pcistub_device_put(psdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400903 up_write(&pcistub_sem);
904 return;
905}
906
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400907/*add xen_pcibk AER handling*/
Stephen Hemminger1d352032012-09-07 09:33:17 -0700908static const struct pci_error_handlers xen_pcibk_error_handler = {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400909 .error_detected = xen_pcibk_error_detected,
910 .mmio_enabled = xen_pcibk_mmio_enabled,
911 .slot_reset = xen_pcibk_slot_reset,
912 .resume = xen_pcibk_error_resume,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400913};
914
915/*
916 * Note: There is no MODULE_DEVICE_TABLE entry here because this isn't
917 * for a normal device. I don't want it to be loaded automatically.
918 */
919
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400920static struct pci_driver xen_pcibk_pci_driver = {
921 /* The name should be xen_pciback, but until the tools are updated
922 * we will keep it as pciback. */
923 .name = "pciback",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400924 .id_table = pcistub_ids,
925 .probe = pcistub_probe,
926 .remove = pcistub_remove,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400927 .err_handler = &xen_pcibk_error_handler,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400928};
929
930static inline int str_to_slot(const char *buf, int *domain, int *bus,
931 int *slot, int *func)
932{
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000933 int parsed = 0;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400934
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000935 switch (sscanf(buf, " %x:%x:%x.%x %n", domain, bus, slot, func,
936 &parsed)) {
Jan Beulichc3cb4702012-09-18 12:29:03 +0100937 case 3:
938 *func = -1;
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000939 sscanf(buf, " %x:%x:%x.* %n", domain, bus, slot, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +0100940 break;
941 case 2:
942 *slot = *func = -1;
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000943 sscanf(buf, " %x:%x:*.* %n", domain, bus, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +0100944 break;
945 }
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000946 if (parsed && !buf[parsed])
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400947 return 0;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400948
949 /* try again without domain */
950 *domain = 0;
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000951 switch (sscanf(buf, " %x:%x.%x %n", bus, slot, func, &parsed)) {
Jan Beulichc3cb4702012-09-18 12:29:03 +0100952 case 2:
953 *func = -1;
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000954 sscanf(buf, " %x:%x.* %n", bus, slot, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +0100955 break;
956 case 1:
957 *slot = *func = -1;
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000958 sscanf(buf, " %x:*.* %n", bus, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +0100959 break;
960 }
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000961 if (parsed && !buf[parsed])
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400962 return 0;
963
964 return -EINVAL;
965}
966
967static inline int str_to_quirk(const char *buf, int *domain, int *bus, int
968 *slot, int *func, int *reg, int *size, int *mask)
969{
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000970 int parsed = 0;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400971
Jan Beulichb3e40b72012-11-02 14:37:13 +0000972 sscanf(buf, " %x:%x:%x.%x-%x:%x:%x %n", domain, bus, slot, func,
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000973 reg, size, mask, &parsed);
974 if (parsed && !buf[parsed])
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400975 return 0;
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000976
977 /* try again without domain */
978 *domain = 0;
Jan Beulichb3e40b72012-11-02 14:37:13 +0000979 sscanf(buf, " %x:%x.%x-%x:%x:%x %n", bus, slot, func, reg, size,
Jan Beulich5b71fbd2012-11-02 14:36:38 +0000980 mask, &parsed);
981 if (parsed && !buf[parsed])
982 return 0;
983
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400984 return -EINVAL;
985}
986
987static int pcistub_device_id_add(int domain, int bus, int slot, int func)
988{
989 struct pcistub_device_id *pci_dev_id;
990 unsigned long flags;
Jan Beulichb3e40b72012-11-02 14:37:13 +0000991 int rc = 0, devfn = PCI_DEVFN(slot, func);
Jan Beulichc3cb4702012-09-18 12:29:03 +0100992
993 if (slot < 0) {
994 for (slot = 0; !rc && slot < 32; ++slot)
995 rc = pcistub_device_id_add(domain, bus, slot, func);
996 return rc;
997 }
998
999 if (func < 0) {
1000 for (func = 0; !rc && func < 8; ++func)
1001 rc = pcistub_device_id_add(domain, bus, slot, func);
1002 return rc;
1003 }
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001004
Jan Beulichb3e40b72012-11-02 14:37:13 +00001005 if ((
1006#if !defined(MODULE) /* pci_domains_supported is not being exported */ \
1007 || !defined(CONFIG_PCI_DOMAINS)
1008 !pci_domains_supported ? domain :
1009#endif
1010 domain < 0 || domain > 0xffff)
1011 || bus < 0 || bus > 0xff
1012 || PCI_SLOT(devfn) != slot
1013 || PCI_FUNC(devfn) != func)
1014 return -EINVAL;
1015
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001016 pci_dev_id = kmalloc(sizeof(*pci_dev_id), GFP_KERNEL);
1017 if (!pci_dev_id)
1018 return -ENOMEM;
1019
1020 pci_dev_id->domain = domain;
1021 pci_dev_id->bus = bus;
Jan Beulichb3e40b72012-11-02 14:37:13 +00001022 pci_dev_id->devfn = devfn;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001023
Joe Perches283c0972013-06-28 03:21:41 -07001024 pr_debug("wants to seize %04x:%02x:%02x.%d\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001025 domain, bus, slot, func);
1026
1027 spin_lock_irqsave(&device_ids_lock, flags);
1028 list_add_tail(&pci_dev_id->slot_list, &pcistub_device_ids);
1029 spin_unlock_irqrestore(&device_ids_lock, flags);
1030
1031 return 0;
1032}
1033
1034static int pcistub_device_id_remove(int domain, int bus, int slot, int func)
1035{
1036 struct pcistub_device_id *pci_dev_id, *t;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001037 int err = -ENOENT;
1038 unsigned long flags;
1039
1040 spin_lock_irqsave(&device_ids_lock, flags);
1041 list_for_each_entry_safe(pci_dev_id, t, &pcistub_device_ids,
1042 slot_list) {
Jan Beulichc3cb4702012-09-18 12:29:03 +01001043 if (pci_dev_id->domain == domain && pci_dev_id->bus == bus
1044 && (slot < 0 || PCI_SLOT(pci_dev_id->devfn) == slot)
1045 && (func < 0 || PCI_FUNC(pci_dev_id->devfn) == func)) {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001046 /* Don't break; here because it's possible the same
1047 * slot could be in the list more than once
1048 */
1049 list_del(&pci_dev_id->slot_list);
1050 kfree(pci_dev_id);
1051
1052 err = 0;
1053
Joe Perches283c0972013-06-28 03:21:41 -07001054 pr_debug("removed %04x:%02x:%02x.%d from seize list\n",
1055 domain, bus, slot, func);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001056 }
1057 }
1058 spin_unlock_irqrestore(&device_ids_lock, flags);
1059
1060 return err;
1061}
1062
Jan Beulichb3e40b72012-11-02 14:37:13 +00001063static int pcistub_reg_add(int domain, int bus, int slot, int func,
1064 unsigned int reg, unsigned int size,
1065 unsigned int mask)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001066{
1067 int err = 0;
1068 struct pcistub_device *psdev;
1069 struct pci_dev *dev;
1070 struct config_field *field;
1071
Jan Beulichb3e40b72012-11-02 14:37:13 +00001072 if (reg > 0xfff || (size < 4 && (mask >> (size * 8))))
1073 return -EINVAL;
1074
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001075 psdev = pcistub_device_find(domain, bus, slot, func);
Jan Beuliche6aa70a2012-09-24 15:55:37 +01001076 if (!psdev) {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001077 err = -ENODEV;
1078 goto out;
1079 }
1080 dev = psdev->dev;
1081
1082 field = kzalloc(sizeof(*field), GFP_ATOMIC);
1083 if (!field) {
1084 err = -ENOMEM;
1085 goto out;
1086 }
1087
1088 field->offset = reg;
1089 field->size = size;
1090 field->mask = mask;
1091 field->init = NULL;
1092 field->reset = NULL;
1093 field->release = NULL;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001094 field->clean = xen_pcibk_config_field_free;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001095
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001096 err = xen_pcibk_config_quirks_add_field(dev, field);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001097 if (err)
1098 kfree(field);
1099out:
Jan Beuliche6aa70a2012-09-24 15:55:37 +01001100 if (psdev)
1101 pcistub_device_put(psdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001102 return err;
1103}
1104
1105static ssize_t pcistub_slot_add(struct device_driver *drv, const char *buf,
1106 size_t count)
1107{
1108 int domain, bus, slot, func;
1109 int err;
1110
1111 err = str_to_slot(buf, &domain, &bus, &slot, &func);
1112 if (err)
1113 goto out;
1114
1115 err = pcistub_device_id_add(domain, bus, slot, func);
1116
1117out:
1118 if (!err)
1119 err = count;
1120 return err;
1121}
Jan Beulich402c5e12011-09-21 16:22:11 -04001122static DRIVER_ATTR(new_slot, S_IWUSR, NULL, pcistub_slot_add);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001123
1124static ssize_t pcistub_slot_remove(struct device_driver *drv, const char *buf,
1125 size_t count)
1126{
1127 int domain, bus, slot, func;
1128 int err;
1129
1130 err = str_to_slot(buf, &domain, &bus, &slot, &func);
1131 if (err)
1132 goto out;
1133
1134 err = pcistub_device_id_remove(domain, bus, slot, func);
1135
1136out:
1137 if (!err)
1138 err = count;
1139 return err;
1140}
Jan Beulich402c5e12011-09-21 16:22:11 -04001141static DRIVER_ATTR(remove_slot, S_IWUSR, NULL, pcistub_slot_remove);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001142
1143static ssize_t pcistub_slot_show(struct device_driver *drv, char *buf)
1144{
1145 struct pcistub_device_id *pci_dev_id;
1146 size_t count = 0;
1147 unsigned long flags;
1148
1149 spin_lock_irqsave(&device_ids_lock, flags);
1150 list_for_each_entry(pci_dev_id, &pcistub_device_ids, slot_list) {
1151 if (count >= PAGE_SIZE)
1152 break;
1153
1154 count += scnprintf(buf + count, PAGE_SIZE - count,
Konrad Rzeszutek Wilke4de8662012-01-25 16:00:00 -05001155 "%04x:%02x:%02x.%d\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001156 pci_dev_id->domain, pci_dev_id->bus,
1157 PCI_SLOT(pci_dev_id->devfn),
1158 PCI_FUNC(pci_dev_id->devfn));
1159 }
1160 spin_unlock_irqrestore(&device_ids_lock, flags);
1161
1162 return count;
1163}
Jan Beulich402c5e12011-09-21 16:22:11 -04001164static DRIVER_ATTR(slots, S_IRUSR, pcistub_slot_show, NULL);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001165
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001166static ssize_t pcistub_irq_handler_show(struct device_driver *drv, char *buf)
1167{
1168 struct pcistub_device *psdev;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001169 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001170 size_t count = 0;
1171 unsigned long flags;
1172
1173 spin_lock_irqsave(&pcistub_devices_lock, flags);
1174 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
1175 if (count >= PAGE_SIZE)
1176 break;
1177 if (!psdev->dev)
1178 continue;
1179 dev_data = pci_get_drvdata(psdev->dev);
1180 if (!dev_data)
1181 continue;
1182 count +=
1183 scnprintf(buf + count, PAGE_SIZE - count,
1184 "%s:%s:%sing:%ld\n",
1185 pci_name(psdev->dev),
1186 dev_data->isr_on ? "on" : "off",
1187 dev_data->ack_intr ? "ack" : "not ack",
1188 dev_data->handled);
1189 }
1190 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
1191 return count;
1192}
Jan Beulich402c5e12011-09-21 16:22:11 -04001193static DRIVER_ATTR(irq_handlers, S_IRUSR, pcistub_irq_handler_show, NULL);
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001194
1195static ssize_t pcistub_irq_handler_switch(struct device_driver *drv,
1196 const char *buf,
1197 size_t count)
1198{
1199 struct pcistub_device *psdev;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001200 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001201 int domain, bus, slot, func;
Wei Yongjun405010d2013-05-31 19:59:20 +08001202 int err;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001203
1204 err = str_to_slot(buf, &domain, &bus, &slot, &func);
1205 if (err)
Jan Beuliche6aa70a2012-09-24 15:55:37 +01001206 return err;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001207
1208 psdev = pcistub_device_find(domain, bus, slot, func);
Wei Yongjun405010d2013-05-31 19:59:20 +08001209 if (!psdev) {
1210 err = -ENOENT;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001211 goto out;
Wei Yongjun405010d2013-05-31 19:59:20 +08001212 }
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001213
1214 dev_data = pci_get_drvdata(psdev->dev);
Wei Yongjun405010d2013-05-31 19:59:20 +08001215 if (!dev_data) {
1216 err = -ENOENT;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001217 goto out;
Wei Yongjun405010d2013-05-31 19:59:20 +08001218 }
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001219
1220 dev_dbg(&psdev->dev->dev, "%s fake irq handler: %d->%d\n",
1221 dev_data->irq_name, dev_data->isr_on,
1222 !dev_data->isr_on);
1223
1224 dev_data->isr_on = !(dev_data->isr_on);
1225 if (dev_data->isr_on)
1226 dev_data->ack_intr = 1;
1227out:
Jan Beuliche6aa70a2012-09-24 15:55:37 +01001228 if (psdev)
1229 pcistub_device_put(psdev);
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001230 if (!err)
1231 err = count;
1232 return err;
1233}
Jan Beulich402c5e12011-09-21 16:22:11 -04001234static DRIVER_ATTR(irq_handler_state, S_IWUSR, NULL,
1235 pcistub_irq_handler_switch);
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001236
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001237static ssize_t pcistub_quirk_add(struct device_driver *drv, const char *buf,
1238 size_t count)
1239{
1240 int domain, bus, slot, func, reg, size, mask;
1241 int err;
1242
1243 err = str_to_quirk(buf, &domain, &bus, &slot, &func, &reg, &size,
1244 &mask);
1245 if (err)
1246 goto out;
1247
1248 err = pcistub_reg_add(domain, bus, slot, func, reg, size, mask);
1249
1250out:
1251 if (!err)
1252 err = count;
1253 return err;
1254}
1255
1256static ssize_t pcistub_quirk_show(struct device_driver *drv, char *buf)
1257{
1258 int count = 0;
1259 unsigned long flags;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001260 struct xen_pcibk_config_quirk *quirk;
1261 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001262 const struct config_field *field;
1263 const struct config_field_entry *cfg_entry;
1264
1265 spin_lock_irqsave(&device_ids_lock, flags);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001266 list_for_each_entry(quirk, &xen_pcibk_quirks, quirks_list) {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001267 if (count >= PAGE_SIZE)
1268 goto out;
1269
1270 count += scnprintf(buf + count, PAGE_SIZE - count,
1271 "%02x:%02x.%01x\n\t%04x:%04x:%04x:%04x\n",
1272 quirk->pdev->bus->number,
1273 PCI_SLOT(quirk->pdev->devfn),
1274 PCI_FUNC(quirk->pdev->devfn),
1275 quirk->devid.vendor, quirk->devid.device,
1276 quirk->devid.subvendor,
1277 quirk->devid.subdevice);
1278
1279 dev_data = pci_get_drvdata(quirk->pdev);
1280
1281 list_for_each_entry(cfg_entry, &dev_data->config_fields, list) {
1282 field = cfg_entry->field;
1283 if (count >= PAGE_SIZE)
1284 goto out;
1285
1286 count += scnprintf(buf + count, PAGE_SIZE - count,
1287 "\t\t%08x:%01x:%08x\n",
1288 cfg_entry->base_offset +
1289 field->offset, field->size,
1290 field->mask);
1291 }
1292 }
1293
1294out:
1295 spin_unlock_irqrestore(&device_ids_lock, flags);
1296
1297 return count;
1298}
Jan Beulich402c5e12011-09-21 16:22:11 -04001299static DRIVER_ATTR(quirks, S_IRUSR | S_IWUSR, pcistub_quirk_show,
1300 pcistub_quirk_add);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001301
1302static ssize_t permissive_add(struct device_driver *drv, const char *buf,
1303 size_t count)
1304{
1305 int domain, bus, slot, func;
1306 int err;
1307 struct pcistub_device *psdev;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001308 struct xen_pcibk_dev_data *dev_data;
Jan Beulichb3e40b72012-11-02 14:37:13 +00001309
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001310 err = str_to_slot(buf, &domain, &bus, &slot, &func);
1311 if (err)
1312 goto out;
Jan Beulichb3e40b72012-11-02 14:37:13 +00001313
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001314 psdev = pcistub_device_find(domain, bus, slot, func);
1315 if (!psdev) {
1316 err = -ENODEV;
1317 goto out;
1318 }
Jan Beuliche6aa70a2012-09-24 15:55:37 +01001319
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001320 dev_data = pci_get_drvdata(psdev->dev);
1321 /* the driver data for a device should never be null at this point */
1322 if (!dev_data) {
1323 err = -ENXIO;
1324 goto release;
1325 }
1326 if (!dev_data->permissive) {
1327 dev_data->permissive = 1;
1328 /* Let user know that what they're doing could be unsafe */
1329 dev_warn(&psdev->dev->dev, "enabling permissive mode "
1330 "configuration space accesses!\n");
1331 dev_warn(&psdev->dev->dev,
1332 "permissive mode is potentially unsafe!\n");
1333 }
1334release:
1335 pcistub_device_put(psdev);
1336out:
1337 if (!err)
1338 err = count;
1339 return err;
1340}
1341
1342static ssize_t permissive_show(struct device_driver *drv, char *buf)
1343{
1344 struct pcistub_device *psdev;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001345 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001346 size_t count = 0;
1347 unsigned long flags;
1348 spin_lock_irqsave(&pcistub_devices_lock, flags);
1349 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
1350 if (count >= PAGE_SIZE)
1351 break;
1352 if (!psdev->dev)
1353 continue;
1354 dev_data = pci_get_drvdata(psdev->dev);
1355 if (!dev_data || !dev_data->permissive)
1356 continue;
1357 count +=
1358 scnprintf(buf + count, PAGE_SIZE - count, "%s\n",
1359 pci_name(psdev->dev));
1360 }
1361 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
1362 return count;
1363}
Jan Beulich402c5e12011-09-21 16:22:11 -04001364static DRIVER_ATTR(permissive, S_IRUSR | S_IWUSR, permissive_show,
1365 permissive_add);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001366
1367static void pcistub_exit(void)
1368{
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001369 driver_remove_file(&xen_pcibk_pci_driver.driver, &driver_attr_new_slot);
1370 driver_remove_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001371 &driver_attr_remove_slot);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001372 driver_remove_file(&xen_pcibk_pci_driver.driver, &driver_attr_slots);
1373 driver_remove_file(&xen_pcibk_pci_driver.driver, &driver_attr_quirks);
1374 driver_remove_file(&xen_pcibk_pci_driver.driver,
1375 &driver_attr_permissive);
1376 driver_remove_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001377 &driver_attr_irq_handlers);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001378 driver_remove_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001379 &driver_attr_irq_handler_state);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001380 pci_unregister_driver(&xen_pcibk_pci_driver);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001381}
1382
1383static int __init pcistub_init(void)
1384{
1385 int pos = 0;
1386 int err = 0;
1387 int domain, bus, slot, func;
1388 int parsed;
1389
1390 if (pci_devs_to_hide && *pci_devs_to_hide) {
1391 do {
1392 parsed = 0;
1393
1394 err = sscanf(pci_devs_to_hide + pos,
1395 " (%x:%x:%x.%x) %n",
1396 &domain, &bus, &slot, &func, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +01001397 switch (err) {
1398 case 3:
1399 func = -1;
Jan Beulich5b71fbd2012-11-02 14:36:38 +00001400 sscanf(pci_devs_to_hide + pos,
1401 " (%x:%x:%x.*) %n",
1402 &domain, &bus, &slot, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +01001403 break;
1404 case 2:
1405 slot = func = -1;
Jan Beulich5b71fbd2012-11-02 14:36:38 +00001406 sscanf(pci_devs_to_hide + pos,
1407 " (%x:%x:*.*) %n",
1408 &domain, &bus, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +01001409 break;
1410 }
1411
Jan Beulich5b71fbd2012-11-02 14:36:38 +00001412 if (!parsed) {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001413 domain = 0;
1414 err = sscanf(pci_devs_to_hide + pos,
1415 " (%x:%x.%x) %n",
1416 &bus, &slot, &func, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +01001417 switch (err) {
1418 case 2:
1419 func = -1;
Jan Beulich5b71fbd2012-11-02 14:36:38 +00001420 sscanf(pci_devs_to_hide + pos,
1421 " (%x:%x.*) %n",
1422 &bus, &slot, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +01001423 break;
1424 case 1:
1425 slot = func = -1;
Jan Beulich5b71fbd2012-11-02 14:36:38 +00001426 sscanf(pci_devs_to_hide + pos,
1427 " (%x:*.*) %n",
1428 &bus, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +01001429 break;
1430 }
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001431 }
1432
Jan Beulich5b71fbd2012-11-02 14:36:38 +00001433 if (parsed <= 0)
1434 goto parse_error;
1435
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001436 err = pcistub_device_id_add(domain, bus, slot, func);
1437 if (err)
1438 goto out;
1439
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001440 pos += parsed;
Jan Beulich5b71fbd2012-11-02 14:36:38 +00001441 } while (pci_devs_to_hide[pos]);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001442 }
1443
1444 /* If we're the first PCI Device Driver to register, we're the
1445 * first one to get offered PCI devices as they become
1446 * available (and thus we can be the first to grab them)
1447 */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001448 err = pci_register_driver(&xen_pcibk_pci_driver);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001449 if (err < 0)
1450 goto out;
1451
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001452 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001453 &driver_attr_new_slot);
1454 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001455 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001456 &driver_attr_remove_slot);
1457 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001458 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001459 &driver_attr_slots);
1460 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001461 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001462 &driver_attr_quirks);
1463 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001464 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001465 &driver_attr_permissive);
1466
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001467 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001468 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001469 &driver_attr_irq_handlers);
1470 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001471 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001472 &driver_attr_irq_handler_state);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001473 if (err)
1474 pcistub_exit();
1475
1476out:
1477 return err;
1478
1479parse_error:
Joe Perches283c0972013-06-28 03:21:41 -07001480 pr_err("Error parsing pci_devs_to_hide at \"%s\"\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001481 pci_devs_to_hide + pos);
1482 return -EINVAL;
1483}
1484
1485#ifndef MODULE
1486/*
1487 * fs_initcall happens before device_initcall
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001488 * so xen_pcibk *should* get called first (b/c we
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001489 * want to suck up any device before other drivers
1490 * get a chance by being the first pci device
1491 * driver to register)
1492 */
1493fs_initcall(pcistub_init);
1494#endif
1495
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001496static int __init xen_pcibk_init(void)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001497{
1498 int err;
1499
1500 if (!xen_initial_domain())
1501 return -ENODEV;
1502
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001503 err = xen_pcibk_config_init();
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001504 if (err)
1505 return err;
1506
1507#ifdef MODULE
1508 err = pcistub_init();
1509 if (err < 0)
1510 return err;
1511#endif
1512
1513 pcistub_init_devices_late();
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001514 err = xen_pcibk_xenbus_register();
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001515 if (err)
1516 pcistub_exit();
1517
1518 return err;
1519}
1520
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001521static void __exit xen_pcibk_cleanup(void)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001522{
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001523 xen_pcibk_xenbus_unregister();
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001524 pcistub_exit();
1525}
1526
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001527module_init(xen_pcibk_init);
1528module_exit(xen_pcibk_cleanup);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001529
1530MODULE_LICENSE("Dual BSD/GPL");
Jan Beulich402c5e12011-09-21 16:22:11 -04001531MODULE_ALIAS("xen-backend:pci");