blob: 20e1c42c1c48c7ec8239733cf761b6f35cca283d [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 */
7#include <linux/module.h>
8#include <linux/init.h>
9#include <linux/rwsem.h>
10#include <linux/list.h>
11#include <linux/spinlock.h>
12#include <linux/kref.h>
13#include <linux/pci.h>
14#include <linux/wait.h>
15#include <linux/sched.h>
Konrad Rzeszutek Wilk8bfd4e02011-07-19 20:09:43 -040016#include <linux/atomic.h>
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040017#include <xen/events.h>
18#include <asm/xen/pci.h>
19#include <asm/xen/hypervisor.h>
20#include "pciback.h"
21#include "conf_space.h"
22#include "conf_space_quirks.h"
23
24static char *pci_devs_to_hide;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040025wait_queue_head_t xen_pcibk_aer_wait_queue;
26/*Add sem for sync AER handling and xen_pcibk remove/reconfigue ops,
27* We want to avoid in middle of AER ops, xen_pcibk devices is being removed
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040028*/
29static DECLARE_RWSEM(pcistub_sem);
30module_param_named(hide, pci_devs_to_hide, charp, 0444);
31
32struct pcistub_device_id {
33 struct list_head slot_list;
34 int domain;
35 unsigned char bus;
36 unsigned int devfn;
37};
38static LIST_HEAD(pcistub_device_ids);
39static DEFINE_SPINLOCK(device_ids_lock);
40
41struct pcistub_device {
42 struct kref kref;
43 struct list_head dev_list;
44 spinlock_t lock;
45
46 struct pci_dev *dev;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -040047 struct xen_pcibk_device *pdev;/* non-NULL if struct pci_dev is in use */
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040048};
49
50/* Access to pcistub_devices & seized_devices lists and the initialize_devices
51 * flag must be locked with pcistub_devices_lock
52 */
53static DEFINE_SPINLOCK(pcistub_devices_lock);
54static LIST_HEAD(pcistub_devices);
55
56/* wait for device_initcall before initializing our devices
57 * (see pcistub_init_devices_late)
58 */
59static int initialize_devices;
60static LIST_HEAD(seized_devices);
61
62static struct pcistub_device *pcistub_device_alloc(struct pci_dev *dev)
63{
64 struct pcistub_device *psdev;
65
66 dev_dbg(&dev->dev, "pcistub_device_alloc\n");
67
68 psdev = kzalloc(sizeof(*psdev), GFP_ATOMIC);
69 if (!psdev)
70 return NULL;
71
72 psdev->dev = pci_dev_get(dev);
73 if (!psdev->dev) {
74 kfree(psdev);
75 return NULL;
76 }
77
78 kref_init(&psdev->kref);
79 spin_lock_init(&psdev->lock);
80
81 return psdev;
82}
83
84/* Don't call this directly as it's called by pcistub_device_put */
85static void pcistub_device_release(struct kref *kref)
86{
87 struct pcistub_device *psdev;
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -050088 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040089
90 psdev = container_of(kref, struct pcistub_device, kref);
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -050091 dev_data = pci_get_drvdata(psdev->dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -040092
93 dev_dbg(&psdev->dev->dev, "pcistub_device_release\n");
94
Konrad Rzeszutek Wilk6221a9b2009-12-09 17:43:15 -050095 xen_unregister_device_domain_owner(psdev->dev);
96
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -050097 /* Call the reset function which does not take lock as this
98 * is called from "unbind" which takes a device_lock mutex.
99 */
100 __pci_reset_function_locked(psdev->dev);
101 if (pci_load_and_free_saved_state(psdev->dev,
102 &dev_data->pci_saved_state)) {
103 dev_dbg(&psdev->dev->dev, "Could not reload PCI state\n");
104 } else
105 pci_restore_state(psdev->dev);
106
107 /* Disable the device */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400108 xen_pcibk_reset_device(psdev->dev);
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500109
110 kfree(dev_data);
111 pci_set_drvdata(psdev->dev, NULL);
112
113 /* Clean-up the device */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400114 xen_pcibk_config_free_dyn_fields(psdev->dev);
115 xen_pcibk_config_free_dev(psdev->dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400116
Konrad Rzeszutek Wilk97309d32012-01-04 14:10:32 -0500117 psdev->dev->dev_flags &= ~PCI_DEV_FLAGS_ASSIGNED;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400118 pci_dev_put(psdev->dev);
119
120 kfree(psdev);
121}
122
123static inline void pcistub_device_get(struct pcistub_device *psdev)
124{
125 kref_get(&psdev->kref);
126}
127
128static inline void pcistub_device_put(struct pcistub_device *psdev)
129{
130 kref_put(&psdev->kref, pcistub_device_release);
131}
132
133static struct pcistub_device *pcistub_device_find(int domain, int bus,
134 int slot, int func)
135{
136 struct pcistub_device *psdev = NULL;
137 unsigned long flags;
138
139 spin_lock_irqsave(&pcistub_devices_lock, flags);
140
141 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
142 if (psdev->dev != NULL
143 && domain == pci_domain_nr(psdev->dev->bus)
144 && bus == psdev->dev->bus->number
145 && PCI_DEVFN(slot, func) == psdev->dev->devfn) {
146 pcistub_device_get(psdev);
147 goto out;
148 }
149 }
150
151 /* didn't find it */
152 psdev = NULL;
153
154out:
155 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
156 return psdev;
157}
158
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400159static struct pci_dev *pcistub_device_get_pci_dev(struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400160 struct pcistub_device *psdev)
161{
162 struct pci_dev *pci_dev = NULL;
163 unsigned long flags;
164
165 pcistub_device_get(psdev);
166
167 spin_lock_irqsave(&psdev->lock, flags);
168 if (!psdev->pdev) {
169 psdev->pdev = pdev;
170 pci_dev = psdev->dev;
171 }
172 spin_unlock_irqrestore(&psdev->lock, flags);
173
174 if (!pci_dev)
175 pcistub_device_put(psdev);
176
177 return pci_dev;
178}
179
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400180struct pci_dev *pcistub_get_pci_dev_by_slot(struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400181 int domain, int bus,
182 int slot, int func)
183{
184 struct pcistub_device *psdev;
185 struct pci_dev *found_dev = NULL;
186 unsigned long flags;
187
188 spin_lock_irqsave(&pcistub_devices_lock, flags);
189
190 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
191 if (psdev->dev != NULL
192 && domain == pci_domain_nr(psdev->dev->bus)
193 && bus == psdev->dev->bus->number
194 && PCI_DEVFN(slot, func) == psdev->dev->devfn) {
195 found_dev = pcistub_device_get_pci_dev(pdev, psdev);
196 break;
197 }
198 }
199
200 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
201 return found_dev;
202}
203
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400204struct pci_dev *pcistub_get_pci_dev(struct xen_pcibk_device *pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400205 struct pci_dev *dev)
206{
207 struct pcistub_device *psdev;
208 struct pci_dev *found_dev = NULL;
209 unsigned long flags;
210
211 spin_lock_irqsave(&pcistub_devices_lock, flags);
212
213 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
214 if (psdev->dev == dev) {
215 found_dev = pcistub_device_get_pci_dev(pdev, psdev);
216 break;
217 }
218 }
219
220 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
221 return found_dev;
222}
223
224void pcistub_put_pci_dev(struct pci_dev *dev)
225{
226 struct pcistub_device *psdev, *found_psdev = NULL;
227 unsigned long flags;
228
229 spin_lock_irqsave(&pcistub_devices_lock, flags);
230
231 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
232 if (psdev->dev == dev) {
233 found_psdev = psdev;
234 break;
235 }
236 }
237
238 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
Konrad Rzeszutek Wilk4645bf32011-09-29 13:12:43 -0400239 if (WARN_ON(!found_psdev))
240 return;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400241
242 /*hold this lock for avoiding breaking link between
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400243 * pcistub and xen_pcibk when AER is in processing
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400244 */
245 down_write(&pcistub_sem);
246 /* Cleanup our device
247 * (so it's ready for the next domain)
248 */
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500249
250 /* This is OK - we are running from workqueue context
251 * and want to inhibit the user from fiddling with 'reset'
252 */
253 pci_reset_function(dev);
254 pci_restore_state(psdev->dev);
255
256 /* This disables the device. */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400257 xen_pcibk_reset_device(found_psdev->dev);
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500258
259 /* And cleanup up our emulated fields. */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400260 xen_pcibk_config_free_dyn_fields(found_psdev->dev);
261 xen_pcibk_config_reset_dev(found_psdev->dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400262
Konrad Rzeszutek Wilk31673552012-01-04 15:11:02 -0500263 xen_unregister_device_domain_owner(found_psdev->dev);
264
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400265 spin_lock_irqsave(&found_psdev->lock, flags);
266 found_psdev->pdev = NULL;
267 spin_unlock_irqrestore(&found_psdev->lock, flags);
268
269 pcistub_device_put(found_psdev);
270 up_write(&pcistub_sem);
271}
272
273static int __devinit pcistub_match_one(struct pci_dev *dev,
274 struct pcistub_device_id *pdev_id)
275{
276 /* Match the specified device by domain, bus, slot, func and also if
277 * any of the device's parent bridges match.
278 */
279 for (; dev != NULL; dev = dev->bus->self) {
280 if (pci_domain_nr(dev->bus) == pdev_id->domain
281 && dev->bus->number == pdev_id->bus
282 && dev->devfn == pdev_id->devfn)
283 return 1;
284
285 /* Sometimes topmost bridge links to itself. */
286 if (dev == dev->bus->self)
287 break;
288 }
289
290 return 0;
291}
292
293static int __devinit pcistub_match(struct pci_dev *dev)
294{
295 struct pcistub_device_id *pdev_id;
296 unsigned long flags;
297 int found = 0;
298
299 spin_lock_irqsave(&device_ids_lock, flags);
300 list_for_each_entry(pdev_id, &pcistub_device_ids, slot_list) {
301 if (pcistub_match_one(dev, pdev_id)) {
302 found = 1;
303 break;
304 }
305 }
306 spin_unlock_irqrestore(&device_ids_lock, flags);
307
308 return found;
309}
310
311static int __devinit pcistub_init_device(struct pci_dev *dev)
312{
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400313 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400314 int err = 0;
315
316 dev_dbg(&dev->dev, "initializing...\n");
317
318 /* The PCI backend is not intended to be a module (or to work with
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400319 * removable PCI devices (yet). If it were, xen_pcibk_config_free()
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400320 * would need to be called somewhere to free the memory allocated
321 * here and then to call kfree(pci_get_drvdata(psdev->dev)).
322 */
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400323 dev_data = kzalloc(sizeof(*dev_data) + strlen(DRV_NAME "[]")
324 + strlen(pci_name(dev)) + 1, GFP_ATOMIC);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400325 if (!dev_data) {
326 err = -ENOMEM;
327 goto out;
328 }
329 pci_set_drvdata(dev, dev_data);
330
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -0400331 /*
332 * Setup name for fake IRQ handler. It will only be enabled
333 * once the device is turned on by the guest.
334 */
335 sprintf(dev_data->irq_name, DRV_NAME "[%s]", pci_name(dev));
336
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400337 dev_dbg(&dev->dev, "initializing config\n");
338
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400339 init_waitqueue_head(&xen_pcibk_aer_wait_queue);
340 err = xen_pcibk_config_init_dev(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400341 if (err)
342 goto out;
343
344 /* HACK: Force device (& ACPI) to determine what IRQ it's on - we
345 * must do this here because pcibios_enable_device may specify
346 * the pci device's true irq (and possibly its other resources)
347 * if they differ from what's in the configuration space.
348 * This makes the assumption that the device's resources won't
349 * change after this point (otherwise this code may break!)
350 */
351 dev_dbg(&dev->dev, "enabling device\n");
352 err = pci_enable_device(dev);
353 if (err)
354 goto config_release;
355
Konrad Rzeszutek Wilkcd9db802012-01-04 14:30:58 -0500356 /* We need the device active to save the state. */
357 dev_dbg(&dev->dev, "save state of device\n");
358 pci_save_state(dev);
359 dev_data->pci_saved_state = pci_store_saved_state(dev);
360 if (!dev_data->pci_saved_state)
361 dev_err(&dev->dev, "Could not store PCI conf saved state!\n");
Konrad Rzeszutek Wilk80ba77d2012-09-05 16:35:20 -0400362 else {
363 dev_dbg(&dev->dev, "reseting (FLR, D3, etc) the device\n");
364 __pci_reset_function_locked(dev);
365 }
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400366 /* Now disable the device (this also ensures some private device
367 * data is setup before we export)
368 */
369 dev_dbg(&dev->dev, "reset device\n");
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400370 xen_pcibk_reset_device(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400371
Konrad Rzeszutek Wilk97309d32012-01-04 14:10:32 -0500372 dev->dev_flags |= PCI_DEV_FLAGS_ASSIGNED;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400373 return 0;
374
375config_release:
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400376 xen_pcibk_config_free_dev(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400377
378out:
379 pci_set_drvdata(dev, NULL);
380 kfree(dev_data);
381 return err;
382}
383
384/*
385 * Because some initialization still happens on
386 * devices during fs_initcall, we need to defer
387 * full initialization of our devices until
388 * device_initcall.
389 */
390static int __init pcistub_init_devices_late(void)
391{
392 struct pcistub_device *psdev;
393 unsigned long flags;
394 int err = 0;
395
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400396 pr_debug(DRV_NAME ": pcistub_init_devices_late\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400397
398 spin_lock_irqsave(&pcistub_devices_lock, flags);
399
400 while (!list_empty(&seized_devices)) {
401 psdev = container_of(seized_devices.next,
402 struct pcistub_device, dev_list);
403 list_del(&psdev->dev_list);
404
405 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
406
407 err = pcistub_init_device(psdev->dev);
408 if (err) {
409 dev_err(&psdev->dev->dev,
410 "error %d initializing device\n", err);
411 kfree(psdev);
412 psdev = NULL;
413 }
414
415 spin_lock_irqsave(&pcistub_devices_lock, flags);
416
417 if (psdev)
418 list_add_tail(&psdev->dev_list, &pcistub_devices);
419 }
420
421 initialize_devices = 1;
422
423 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
424
425 return 0;
426}
427
428static int __devinit pcistub_seize(struct pci_dev *dev)
429{
430 struct pcistub_device *psdev;
431 unsigned long flags;
432 int err = 0;
433
434 psdev = pcistub_device_alloc(dev);
435 if (!psdev)
436 return -ENOMEM;
437
438 spin_lock_irqsave(&pcistub_devices_lock, flags);
439
440 if (initialize_devices) {
441 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
442
443 /* don't want irqs disabled when calling pcistub_init_device */
444 err = pcistub_init_device(psdev->dev);
445
446 spin_lock_irqsave(&pcistub_devices_lock, flags);
447
448 if (!err)
449 list_add(&psdev->dev_list, &pcistub_devices);
450 } else {
451 dev_dbg(&dev->dev, "deferring initialization\n");
452 list_add(&psdev->dev_list, &seized_devices);
453 }
454
455 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
456
457 if (err)
458 pcistub_device_put(psdev);
459
460 return err;
461}
462
463static int __devinit pcistub_probe(struct pci_dev *dev,
464 const struct pci_device_id *id)
465{
466 int err = 0;
467
468 dev_dbg(&dev->dev, "probing...\n");
469
470 if (pcistub_match(dev)) {
471
472 if (dev->hdr_type != PCI_HEADER_TYPE_NORMAL
473 && dev->hdr_type != PCI_HEADER_TYPE_BRIDGE) {
474 dev_err(&dev->dev, "can't export pci devices that "
475 "don't have a normal (0) or bridge (1) "
476 "header type!\n");
477 err = -ENODEV;
478 goto out;
479 }
480
481 dev_info(&dev->dev, "seizing device\n");
482 err = pcistub_seize(dev);
483 } else
484 /* Didn't find the device */
485 err = -ENODEV;
486
487out:
488 return err;
489}
490
491static void pcistub_remove(struct pci_dev *dev)
492{
493 struct pcistub_device *psdev, *found_psdev = NULL;
494 unsigned long flags;
495
496 dev_dbg(&dev->dev, "removing\n");
497
498 spin_lock_irqsave(&pcistub_devices_lock, flags);
499
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400500 xen_pcibk_config_quirk_release(dev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400501
502 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
503 if (psdev->dev == dev) {
504 found_psdev = psdev;
505 break;
506 }
507 }
508
509 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
510
511 if (found_psdev) {
512 dev_dbg(&dev->dev, "found device to remove - in use? %p\n",
513 found_psdev->pdev);
514
515 if (found_psdev->pdev) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400516 printk(KERN_WARNING DRV_NAME ": ****** removing device "
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400517 "%s while still in-use! ******\n",
518 pci_name(found_psdev->dev));
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400519 printk(KERN_WARNING DRV_NAME ": ****** driver domain may"
520 " still access this device's i/o resources!\n");
521 printk(KERN_WARNING DRV_NAME ": ****** shutdown driver "
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400522 "domain before binding device\n");
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400523 printk(KERN_WARNING DRV_NAME ": ****** to other drivers "
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400524 "or domains\n");
525
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400526 xen_pcibk_release_pci_dev(found_psdev->pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400527 found_psdev->dev);
528 }
529
530 spin_lock_irqsave(&pcistub_devices_lock, flags);
531 list_del(&found_psdev->dev_list);
532 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
533
534 /* the final put for releasing from the list */
535 pcistub_device_put(found_psdev);
536 }
537}
538
Konrad Rzeszutek Wilk8bfd4e02011-07-19 20:09:43 -0400539static DEFINE_PCI_DEVICE_TABLE(pcistub_ids) = {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400540 {
541 .vendor = PCI_ANY_ID,
542 .device = PCI_ANY_ID,
543 .subvendor = PCI_ANY_ID,
544 .subdevice = PCI_ANY_ID,
545 },
546 {0,},
547};
548
549#define PCI_NODENAME_MAX 40
550static void kill_domain_by_device(struct pcistub_device *psdev)
551{
552 struct xenbus_transaction xbt;
553 int err;
554 char nodename[PCI_NODENAME_MAX];
555
Konrad Rzeszutek Wilk72bf8092011-09-29 13:43:28 -0400556 BUG_ON(!psdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400557 snprintf(nodename, PCI_NODENAME_MAX, "/local/domain/0/backend/pci/%d/0",
558 psdev->pdev->xdev->otherend_id);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400559
560again:
561 err = xenbus_transaction_start(&xbt);
562 if (err) {
563 dev_err(&psdev->dev->dev,
564 "error %d when start xenbus transaction\n", err);
565 return;
566 }
567 /*PV AER handlers will set this flag*/
568 xenbus_printf(xbt, nodename, "aerState" , "aerfail");
569 err = xenbus_transaction_end(xbt, 0);
570 if (err) {
571 if (err == -EAGAIN)
572 goto again;
573 dev_err(&psdev->dev->dev,
574 "error %d when end xenbus transaction\n", err);
575 return;
576 }
577}
578
579/* For each aer recovery step error_detected, mmio_enabled, etc, front_end and
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400580 * backend need to have cooperation. In xen_pcibk, those steps will do similar
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400581 * jobs: send service request and waiting for front_end response.
582*/
583static pci_ers_result_t common_process(struct pcistub_device *psdev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400584 pci_channel_state_t state, int aer_cmd,
585 pci_ers_result_t result)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400586{
587 pci_ers_result_t res = result;
588 struct xen_pcie_aer_op *aer_op;
589 int ret;
590
591 /*with PV AER drivers*/
592 aer_op = &(psdev->pdev->sh_info->aer_op);
593 aer_op->cmd = aer_cmd ;
594 /*useful for error_detected callback*/
595 aer_op->err = state;
596 /*pcifront_end BDF*/
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400597 ret = xen_pcibk_get_pcifront_dev(psdev->dev, psdev->pdev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400598 &aer_op->domain, &aer_op->bus, &aer_op->devfn);
599 if (!ret) {
600 dev_err(&psdev->dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400601 DRV_NAME ": failed to get pcifront device\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400602 return PCI_ERS_RESULT_NONE;
603 }
604 wmb();
605
606 dev_dbg(&psdev->dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400607 DRV_NAME ": aer_op %x dom %x bus %x devfn %x\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400608 aer_cmd, aer_op->domain, aer_op->bus, aer_op->devfn);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400609 /*local flag to mark there's aer request, xen_pcibk callback will use
610 * this flag to judge whether we need to check pci-front give aer
611 * service ack signal
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400612 */
613 set_bit(_PCIB_op_pending, (unsigned long *)&psdev->pdev->flags);
614
615 /*It is possible that a pcifront conf_read_write ops request invokes
616 * the callback which cause the spurious execution of wake_up.
617 * Yet it is harmless and better than a spinlock here
618 */
619 set_bit(_XEN_PCIB_active,
620 (unsigned long *)&psdev->pdev->sh_info->flags);
621 wmb();
622 notify_remote_via_irq(psdev->pdev->evtchn_irq);
623
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400624 ret = wait_event_timeout(xen_pcibk_aer_wait_queue,
625 !(test_bit(_XEN_PCIB_active, (unsigned long *)
626 &psdev->pdev->sh_info->flags)), 300*HZ);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400627
628 if (!ret) {
629 if (test_bit(_XEN_PCIB_active,
630 (unsigned long *)&psdev->pdev->sh_info->flags)) {
631 dev_err(&psdev->dev->dev,
632 "pcifront aer process not responding!\n");
633 clear_bit(_XEN_PCIB_active,
634 (unsigned long *)&psdev->pdev->sh_info->flags);
635 aer_op->err = PCI_ERS_RESULT_NONE;
636 return res;
637 }
638 }
639 clear_bit(_PCIB_op_pending, (unsigned long *)&psdev->pdev->flags);
640
641 if (test_bit(_XEN_PCIF_active,
642 (unsigned long *)&psdev->pdev->sh_info->flags)) {
643 dev_dbg(&psdev->dev->dev,
Jan Beulich402c5e12011-09-21 16:22:11 -0400644 "schedule pci_conf service in " DRV_NAME "\n");
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400645 xen_pcibk_test_and_schedule_op(psdev->pdev);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400646 }
647
648 res = (pci_ers_result_t)aer_op->err;
649 return res;
650}
651
652/*
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400653* xen_pcibk_slot_reset: it will send the slot_reset request to pcifront in case
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400654* of the device driver could provide this service, and then wait for pcifront
655* ack.
656* @dev: pointer to PCI devices
657* return value is used by aer_core do_recovery policy
658*/
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400659static pci_ers_result_t xen_pcibk_slot_reset(struct pci_dev *dev)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400660{
661 struct pcistub_device *psdev;
662 pci_ers_result_t result;
663
664 result = PCI_ERS_RESULT_RECOVERED;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400665 dev_dbg(&dev->dev, "xen_pcibk_slot_reset(bus:%x,devfn:%x)\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400666 dev->bus->number, dev->devfn);
667
668 down_write(&pcistub_sem);
669 psdev = pcistub_device_find(pci_domain_nr(dev->bus),
670 dev->bus->number,
671 PCI_SLOT(dev->devfn),
672 PCI_FUNC(dev->devfn));
673
674 if (!psdev || !psdev->pdev) {
675 dev_err(&dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400676 DRV_NAME " device is not found/assigned\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400677 goto end;
678 }
679
680 if (!psdev->pdev->sh_info) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400681 dev_err(&dev->dev, DRV_NAME " device is not connected or owned"
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400682 " by HVM, kill it\n");
683 kill_domain_by_device(psdev);
684 goto release;
685 }
686
687 if (!test_bit(_XEN_PCIB_AERHANDLER,
688 (unsigned long *)&psdev->pdev->sh_info->flags)) {
689 dev_err(&dev->dev,
690 "guest with no AER driver should have been killed\n");
691 goto release;
692 }
693 result = common_process(psdev, 1, XEN_PCI_OP_aer_slotreset, result);
694
695 if (result == PCI_ERS_RESULT_NONE ||
696 result == PCI_ERS_RESULT_DISCONNECT) {
697 dev_dbg(&dev->dev,
698 "No AER slot_reset service or disconnected!\n");
699 kill_domain_by_device(psdev);
700 }
701release:
702 pcistub_device_put(psdev);
703end:
704 up_write(&pcistub_sem);
705 return result;
706
707}
708
709
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400710/*xen_pcibk_mmio_enabled: it will send the mmio_enabled request to pcifront
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400711* in case of the device driver could provide this service, and then wait
712* for pcifront ack
713* @dev: pointer to PCI devices
714* return value is used by aer_core do_recovery policy
715*/
716
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400717static pci_ers_result_t xen_pcibk_mmio_enabled(struct pci_dev *dev)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400718{
719 struct pcistub_device *psdev;
720 pci_ers_result_t result;
721
722 result = PCI_ERS_RESULT_RECOVERED;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400723 dev_dbg(&dev->dev, "xen_pcibk_mmio_enabled(bus:%x,devfn:%x)\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400724 dev->bus->number, dev->devfn);
725
726 down_write(&pcistub_sem);
727 psdev = pcistub_device_find(pci_domain_nr(dev->bus),
728 dev->bus->number,
729 PCI_SLOT(dev->devfn),
730 PCI_FUNC(dev->devfn));
731
732 if (!psdev || !psdev->pdev) {
733 dev_err(&dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400734 DRV_NAME " device is not found/assigned\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400735 goto end;
736 }
737
738 if (!psdev->pdev->sh_info) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400739 dev_err(&dev->dev, DRV_NAME " device is not connected or owned"
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400740 " by HVM, kill it\n");
741 kill_domain_by_device(psdev);
742 goto release;
743 }
744
745 if (!test_bit(_XEN_PCIB_AERHANDLER,
746 (unsigned long *)&psdev->pdev->sh_info->flags)) {
747 dev_err(&dev->dev,
748 "guest with no AER driver should have been killed\n");
749 goto release;
750 }
751 result = common_process(psdev, 1, XEN_PCI_OP_aer_mmio, result);
752
753 if (result == PCI_ERS_RESULT_NONE ||
754 result == PCI_ERS_RESULT_DISCONNECT) {
755 dev_dbg(&dev->dev,
756 "No AER mmio_enabled service or disconnected!\n");
757 kill_domain_by_device(psdev);
758 }
759release:
760 pcistub_device_put(psdev);
761end:
762 up_write(&pcistub_sem);
763 return result;
764}
765
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400766/*xen_pcibk_error_detected: it will send the error_detected request to pcifront
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400767* in case of the device driver could provide this service, and then wait
768* for pcifront ack.
769* @dev: pointer to PCI devices
770* @error: the current PCI connection state
771* return value is used by aer_core do_recovery policy
772*/
773
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400774static pci_ers_result_t xen_pcibk_error_detected(struct pci_dev *dev,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400775 pci_channel_state_t error)
776{
777 struct pcistub_device *psdev;
778 pci_ers_result_t result;
779
780 result = PCI_ERS_RESULT_CAN_RECOVER;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400781 dev_dbg(&dev->dev, "xen_pcibk_error_detected(bus:%x,devfn:%x)\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400782 dev->bus->number, dev->devfn);
783
784 down_write(&pcistub_sem);
785 psdev = pcistub_device_find(pci_domain_nr(dev->bus),
786 dev->bus->number,
787 PCI_SLOT(dev->devfn),
788 PCI_FUNC(dev->devfn));
789
790 if (!psdev || !psdev->pdev) {
791 dev_err(&dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400792 DRV_NAME " device is not found/assigned\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400793 goto end;
794 }
795
796 if (!psdev->pdev->sh_info) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400797 dev_err(&dev->dev, DRV_NAME " device is not connected or owned"
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400798 " by HVM, kill it\n");
799 kill_domain_by_device(psdev);
800 goto release;
801 }
802
803 /*Guest owns the device yet no aer handler regiested, kill guest*/
804 if (!test_bit(_XEN_PCIB_AERHANDLER,
805 (unsigned long *)&psdev->pdev->sh_info->flags)) {
806 dev_dbg(&dev->dev, "guest may have no aer driver, kill it\n");
807 kill_domain_by_device(psdev);
808 goto release;
809 }
810 result = common_process(psdev, error, XEN_PCI_OP_aer_detected, result);
811
812 if (result == PCI_ERS_RESULT_NONE ||
813 result == PCI_ERS_RESULT_DISCONNECT) {
814 dev_dbg(&dev->dev,
815 "No AER error_detected service or disconnected!\n");
816 kill_domain_by_device(psdev);
817 }
818release:
819 pcistub_device_put(psdev);
820end:
821 up_write(&pcistub_sem);
822 return result;
823}
824
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400825/*xen_pcibk_error_resume: it will send the error_resume request to pcifront
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400826* in case of the device driver could provide this service, and then wait
827* for pcifront ack.
828* @dev: pointer to PCI devices
829*/
830
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400831static void xen_pcibk_error_resume(struct pci_dev *dev)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400832{
833 struct pcistub_device *psdev;
834
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400835 dev_dbg(&dev->dev, "xen_pcibk_error_resume(bus:%x,devfn:%x)\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400836 dev->bus->number, dev->devfn);
837
838 down_write(&pcistub_sem);
839 psdev = pcistub_device_find(pci_domain_nr(dev->bus),
840 dev->bus->number,
841 PCI_SLOT(dev->devfn),
842 PCI_FUNC(dev->devfn));
843
844 if (!psdev || !psdev->pdev) {
845 dev_err(&dev->dev,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400846 DRV_NAME " device is not found/assigned\n");
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400847 goto end;
848 }
849
850 if (!psdev->pdev->sh_info) {
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400851 dev_err(&dev->dev, DRV_NAME " device is not connected or owned"
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400852 " by HVM, kill it\n");
853 kill_domain_by_device(psdev);
854 goto release;
855 }
856
857 if (!test_bit(_XEN_PCIB_AERHANDLER,
858 (unsigned long *)&psdev->pdev->sh_info->flags)) {
859 dev_err(&dev->dev,
860 "guest with no AER driver should have been killed\n");
861 kill_domain_by_device(psdev);
862 goto release;
863 }
864 common_process(psdev, 1, XEN_PCI_OP_aer_resume,
865 PCI_ERS_RESULT_RECOVERED);
866release:
867 pcistub_device_put(psdev);
868end:
869 up_write(&pcistub_sem);
870 return;
871}
872
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400873/*add xen_pcibk AER handling*/
874static struct pci_error_handlers xen_pcibk_error_handler = {
875 .error_detected = xen_pcibk_error_detected,
876 .mmio_enabled = xen_pcibk_mmio_enabled,
877 .slot_reset = xen_pcibk_slot_reset,
878 .resume = xen_pcibk_error_resume,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400879};
880
881/*
882 * Note: There is no MODULE_DEVICE_TABLE entry here because this isn't
883 * for a normal device. I don't want it to be loaded automatically.
884 */
885
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400886static struct pci_driver xen_pcibk_pci_driver = {
887 /* The name should be xen_pciback, but until the tools are updated
888 * we will keep it as pciback. */
889 .name = "pciback",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400890 .id_table = pcistub_ids,
891 .probe = pcistub_probe,
892 .remove = pcistub_remove,
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -0400893 .err_handler = &xen_pcibk_error_handler,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400894};
895
896static inline int str_to_slot(const char *buf, int *domain, int *bus,
897 int *slot, int *func)
898{
899 int err;
Jan Beulichc3cb4702012-09-18 12:29:03 +0100900 char wc = '*';
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400901
902 err = sscanf(buf, " %x:%x:%x.%x", domain, bus, slot, func);
Jan Beulichc3cb4702012-09-18 12:29:03 +0100903 switch (err) {
904 case 3:
905 *func = -1;
906 err = sscanf(buf, " %x:%x:%x.%c", domain, bus, slot, &wc);
907 break;
908 case 2:
909 *slot = *func = -1;
910 err = sscanf(buf, " %x:%x:*.%c", domain, bus, &wc);
911 if (err >= 2)
912 ++err;
913 break;
914 }
915 if (err == 4 && wc == '*')
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400916 return 0;
917 else if (err < 0)
918 return -EINVAL;
919
920 /* try again without domain */
921 *domain = 0;
Jan Beulichc3cb4702012-09-18 12:29:03 +0100922 wc = '*';
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400923 err = sscanf(buf, " %x:%x.%x", bus, slot, func);
Jan Beulichc3cb4702012-09-18 12:29:03 +0100924 switch (err) {
925 case 2:
926 *func = -1;
927 err = sscanf(buf, " %x:%x.%c", bus, slot, &wc);
928 break;
929 case 1:
930 *slot = *func = -1;
931 err = sscanf(buf, " %x:*.%c", bus, &wc) + 1;
932 break;
933 }
934 if (err == 3 && wc == '*')
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400935 return 0;
936
937 return -EINVAL;
938}
939
940static inline int str_to_quirk(const char *buf, int *domain, int *bus, int
941 *slot, int *func, int *reg, int *size, int *mask)
942{
943 int err;
944
945 err =
Konrad Rzeszutek Wilke4de8662012-01-25 16:00:00 -0500946 sscanf(buf, " %04x:%02x:%02x.%d-%08x:%1x:%08x", domain, bus, slot,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400947 func, reg, size, mask);
948 if (err == 7)
949 return 0;
950 return -EINVAL;
951}
952
953static int pcistub_device_id_add(int domain, int bus, int slot, int func)
954{
955 struct pcistub_device_id *pci_dev_id;
956 unsigned long flags;
Jan Beulichc3cb4702012-09-18 12:29:03 +0100957 int rc = 0;
958
959 if (slot < 0) {
960 for (slot = 0; !rc && slot < 32; ++slot)
961 rc = pcistub_device_id_add(domain, bus, slot, func);
962 return rc;
963 }
964
965 if (func < 0) {
966 for (func = 0; !rc && func < 8; ++func)
967 rc = pcistub_device_id_add(domain, bus, slot, func);
968 return rc;
969 }
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400970
971 pci_dev_id = kmalloc(sizeof(*pci_dev_id), GFP_KERNEL);
972 if (!pci_dev_id)
973 return -ENOMEM;
974
975 pci_dev_id->domain = domain;
976 pci_dev_id->bus = bus;
977 pci_dev_id->devfn = PCI_DEVFN(slot, func);
978
Konrad Rzeszutek Wilke4de8662012-01-25 16:00:00 -0500979 pr_debug(DRV_NAME ": wants to seize %04x:%02x:%02x.%d\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400980 domain, bus, slot, func);
981
982 spin_lock_irqsave(&device_ids_lock, flags);
983 list_add_tail(&pci_dev_id->slot_list, &pcistub_device_ids);
984 spin_unlock_irqrestore(&device_ids_lock, flags);
985
986 return 0;
987}
988
989static int pcistub_device_id_remove(int domain, int bus, int slot, int func)
990{
991 struct pcistub_device_id *pci_dev_id, *t;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -0400992 int err = -ENOENT;
993 unsigned long flags;
994
995 spin_lock_irqsave(&device_ids_lock, flags);
996 list_for_each_entry_safe(pci_dev_id, t, &pcistub_device_ids,
997 slot_list) {
Jan Beulichc3cb4702012-09-18 12:29:03 +0100998 if (pci_dev_id->domain == domain && pci_dev_id->bus == bus
999 && (slot < 0 || PCI_SLOT(pci_dev_id->devfn) == slot)
1000 && (func < 0 || PCI_FUNC(pci_dev_id->devfn) == func)) {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001001 /* Don't break; here because it's possible the same
1002 * slot could be in the list more than once
1003 */
1004 list_del(&pci_dev_id->slot_list);
1005 kfree(pci_dev_id);
1006
1007 err = 0;
1008
Konrad Rzeszutek Wilke4de8662012-01-25 16:00:00 -05001009 pr_debug(DRV_NAME ": removed %04x:%02x:%02x.%d from "
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001010 "seize list\n", domain, bus, slot, func);
1011 }
1012 }
1013 spin_unlock_irqrestore(&device_ids_lock, flags);
1014
1015 return err;
1016}
1017
1018static int pcistub_reg_add(int domain, int bus, int slot, int func, int reg,
1019 int size, int mask)
1020{
1021 int err = 0;
1022 struct pcistub_device *psdev;
1023 struct pci_dev *dev;
1024 struct config_field *field;
1025
1026 psdev = pcistub_device_find(domain, bus, slot, func);
1027 if (!psdev || !psdev->dev) {
1028 err = -ENODEV;
1029 goto out;
1030 }
1031 dev = psdev->dev;
1032
1033 field = kzalloc(sizeof(*field), GFP_ATOMIC);
1034 if (!field) {
1035 err = -ENOMEM;
1036 goto out;
1037 }
1038
1039 field->offset = reg;
1040 field->size = size;
1041 field->mask = mask;
1042 field->init = NULL;
1043 field->reset = NULL;
1044 field->release = NULL;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001045 field->clean = xen_pcibk_config_field_free;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001046
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001047 err = xen_pcibk_config_quirks_add_field(dev, field);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001048 if (err)
1049 kfree(field);
1050out:
1051 return err;
1052}
1053
1054static ssize_t pcistub_slot_add(struct device_driver *drv, const char *buf,
1055 size_t count)
1056{
1057 int domain, bus, slot, func;
1058 int err;
1059
1060 err = str_to_slot(buf, &domain, &bus, &slot, &func);
1061 if (err)
1062 goto out;
1063
1064 err = pcistub_device_id_add(domain, bus, slot, func);
1065
1066out:
1067 if (!err)
1068 err = count;
1069 return err;
1070}
Jan Beulich402c5e12011-09-21 16:22:11 -04001071static DRIVER_ATTR(new_slot, S_IWUSR, NULL, pcistub_slot_add);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001072
1073static ssize_t pcistub_slot_remove(struct device_driver *drv, const char *buf,
1074 size_t count)
1075{
1076 int domain, bus, slot, func;
1077 int err;
1078
1079 err = str_to_slot(buf, &domain, &bus, &slot, &func);
1080 if (err)
1081 goto out;
1082
1083 err = pcistub_device_id_remove(domain, bus, slot, func);
1084
1085out:
1086 if (!err)
1087 err = count;
1088 return err;
1089}
Jan Beulich402c5e12011-09-21 16:22:11 -04001090static DRIVER_ATTR(remove_slot, S_IWUSR, NULL, pcistub_slot_remove);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001091
1092static ssize_t pcistub_slot_show(struct device_driver *drv, char *buf)
1093{
1094 struct pcistub_device_id *pci_dev_id;
1095 size_t count = 0;
1096 unsigned long flags;
1097
1098 spin_lock_irqsave(&device_ids_lock, flags);
1099 list_for_each_entry(pci_dev_id, &pcistub_device_ids, slot_list) {
1100 if (count >= PAGE_SIZE)
1101 break;
1102
1103 count += scnprintf(buf + count, PAGE_SIZE - count,
Konrad Rzeszutek Wilke4de8662012-01-25 16:00:00 -05001104 "%04x:%02x:%02x.%d\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001105 pci_dev_id->domain, pci_dev_id->bus,
1106 PCI_SLOT(pci_dev_id->devfn),
1107 PCI_FUNC(pci_dev_id->devfn));
1108 }
1109 spin_unlock_irqrestore(&device_ids_lock, flags);
1110
1111 return count;
1112}
Jan Beulich402c5e12011-09-21 16:22:11 -04001113static DRIVER_ATTR(slots, S_IRUSR, pcistub_slot_show, NULL);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001114
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001115static ssize_t pcistub_irq_handler_show(struct device_driver *drv, char *buf)
1116{
1117 struct pcistub_device *psdev;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001118 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001119 size_t count = 0;
1120 unsigned long flags;
1121
1122 spin_lock_irqsave(&pcistub_devices_lock, flags);
1123 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
1124 if (count >= PAGE_SIZE)
1125 break;
1126 if (!psdev->dev)
1127 continue;
1128 dev_data = pci_get_drvdata(psdev->dev);
1129 if (!dev_data)
1130 continue;
1131 count +=
1132 scnprintf(buf + count, PAGE_SIZE - count,
1133 "%s:%s:%sing:%ld\n",
1134 pci_name(psdev->dev),
1135 dev_data->isr_on ? "on" : "off",
1136 dev_data->ack_intr ? "ack" : "not ack",
1137 dev_data->handled);
1138 }
1139 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
1140 return count;
1141}
Jan Beulich402c5e12011-09-21 16:22:11 -04001142static DRIVER_ATTR(irq_handlers, S_IRUSR, pcistub_irq_handler_show, NULL);
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001143
1144static ssize_t pcistub_irq_handler_switch(struct device_driver *drv,
1145 const char *buf,
1146 size_t count)
1147{
1148 struct pcistub_device *psdev;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001149 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001150 int domain, bus, slot, func;
1151 int err = -ENOENT;
1152
1153 err = str_to_slot(buf, &domain, &bus, &slot, &func);
1154 if (err)
1155 goto out;
1156
1157 psdev = pcistub_device_find(domain, bus, slot, func);
1158
1159 if (!psdev)
1160 goto out;
1161
1162 dev_data = pci_get_drvdata(psdev->dev);
1163 if (!dev_data)
1164 goto out;
1165
1166 dev_dbg(&psdev->dev->dev, "%s fake irq handler: %d->%d\n",
1167 dev_data->irq_name, dev_data->isr_on,
1168 !dev_data->isr_on);
1169
1170 dev_data->isr_on = !(dev_data->isr_on);
1171 if (dev_data->isr_on)
1172 dev_data->ack_intr = 1;
1173out:
1174 if (!err)
1175 err = count;
1176 return err;
1177}
Jan Beulich402c5e12011-09-21 16:22:11 -04001178static DRIVER_ATTR(irq_handler_state, S_IWUSR, NULL,
1179 pcistub_irq_handler_switch);
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001180
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001181static ssize_t pcistub_quirk_add(struct device_driver *drv, const char *buf,
1182 size_t count)
1183{
1184 int domain, bus, slot, func, reg, size, mask;
1185 int err;
1186
1187 err = str_to_quirk(buf, &domain, &bus, &slot, &func, &reg, &size,
1188 &mask);
1189 if (err)
1190 goto out;
1191
1192 err = pcistub_reg_add(domain, bus, slot, func, reg, size, mask);
1193
1194out:
1195 if (!err)
1196 err = count;
1197 return err;
1198}
1199
1200static ssize_t pcistub_quirk_show(struct device_driver *drv, char *buf)
1201{
1202 int count = 0;
1203 unsigned long flags;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001204 struct xen_pcibk_config_quirk *quirk;
1205 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001206 const struct config_field *field;
1207 const struct config_field_entry *cfg_entry;
1208
1209 spin_lock_irqsave(&device_ids_lock, flags);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001210 list_for_each_entry(quirk, &xen_pcibk_quirks, quirks_list) {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001211 if (count >= PAGE_SIZE)
1212 goto out;
1213
1214 count += scnprintf(buf + count, PAGE_SIZE - count,
1215 "%02x:%02x.%01x\n\t%04x:%04x:%04x:%04x\n",
1216 quirk->pdev->bus->number,
1217 PCI_SLOT(quirk->pdev->devfn),
1218 PCI_FUNC(quirk->pdev->devfn),
1219 quirk->devid.vendor, quirk->devid.device,
1220 quirk->devid.subvendor,
1221 quirk->devid.subdevice);
1222
1223 dev_data = pci_get_drvdata(quirk->pdev);
1224
1225 list_for_each_entry(cfg_entry, &dev_data->config_fields, list) {
1226 field = cfg_entry->field;
1227 if (count >= PAGE_SIZE)
1228 goto out;
1229
1230 count += scnprintf(buf + count, PAGE_SIZE - count,
1231 "\t\t%08x:%01x:%08x\n",
1232 cfg_entry->base_offset +
1233 field->offset, field->size,
1234 field->mask);
1235 }
1236 }
1237
1238out:
1239 spin_unlock_irqrestore(&device_ids_lock, flags);
1240
1241 return count;
1242}
Jan Beulich402c5e12011-09-21 16:22:11 -04001243static DRIVER_ATTR(quirks, S_IRUSR | S_IWUSR, pcistub_quirk_show,
1244 pcistub_quirk_add);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001245
1246static ssize_t permissive_add(struct device_driver *drv, const char *buf,
1247 size_t count)
1248{
1249 int domain, bus, slot, func;
1250 int err;
1251 struct pcistub_device *psdev;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001252 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001253 err = str_to_slot(buf, &domain, &bus, &slot, &func);
1254 if (err)
1255 goto out;
Jan Beulichc3cb4702012-09-18 12:29:03 +01001256 if (slot < 0 || func < 0) {
1257 err = -EINVAL;
1258 goto out;
1259 }
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001260 psdev = pcistub_device_find(domain, bus, slot, func);
1261 if (!psdev) {
1262 err = -ENODEV;
1263 goto out;
1264 }
1265 if (!psdev->dev) {
1266 err = -ENODEV;
1267 goto release;
1268 }
1269 dev_data = pci_get_drvdata(psdev->dev);
1270 /* the driver data for a device should never be null at this point */
1271 if (!dev_data) {
1272 err = -ENXIO;
1273 goto release;
1274 }
1275 if (!dev_data->permissive) {
1276 dev_data->permissive = 1;
1277 /* Let user know that what they're doing could be unsafe */
1278 dev_warn(&psdev->dev->dev, "enabling permissive mode "
1279 "configuration space accesses!\n");
1280 dev_warn(&psdev->dev->dev,
1281 "permissive mode is potentially unsafe!\n");
1282 }
1283release:
1284 pcistub_device_put(psdev);
1285out:
1286 if (!err)
1287 err = count;
1288 return err;
1289}
1290
1291static ssize_t permissive_show(struct device_driver *drv, char *buf)
1292{
1293 struct pcistub_device *psdev;
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001294 struct xen_pcibk_dev_data *dev_data;
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001295 size_t count = 0;
1296 unsigned long flags;
1297 spin_lock_irqsave(&pcistub_devices_lock, flags);
1298 list_for_each_entry(psdev, &pcistub_devices, dev_list) {
1299 if (count >= PAGE_SIZE)
1300 break;
1301 if (!psdev->dev)
1302 continue;
1303 dev_data = pci_get_drvdata(psdev->dev);
1304 if (!dev_data || !dev_data->permissive)
1305 continue;
1306 count +=
1307 scnprintf(buf + count, PAGE_SIZE - count, "%s\n",
1308 pci_name(psdev->dev));
1309 }
1310 spin_unlock_irqrestore(&pcistub_devices_lock, flags);
1311 return count;
1312}
Jan Beulich402c5e12011-09-21 16:22:11 -04001313static DRIVER_ATTR(permissive, S_IRUSR | S_IWUSR, permissive_show,
1314 permissive_add);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001315
1316static void pcistub_exit(void)
1317{
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001318 driver_remove_file(&xen_pcibk_pci_driver.driver, &driver_attr_new_slot);
1319 driver_remove_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001320 &driver_attr_remove_slot);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001321 driver_remove_file(&xen_pcibk_pci_driver.driver, &driver_attr_slots);
1322 driver_remove_file(&xen_pcibk_pci_driver.driver, &driver_attr_quirks);
1323 driver_remove_file(&xen_pcibk_pci_driver.driver,
1324 &driver_attr_permissive);
1325 driver_remove_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001326 &driver_attr_irq_handlers);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001327 driver_remove_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001328 &driver_attr_irq_handler_state);
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001329 pci_unregister_driver(&xen_pcibk_pci_driver);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001330}
1331
1332static int __init pcistub_init(void)
1333{
1334 int pos = 0;
1335 int err = 0;
1336 int domain, bus, slot, func;
1337 int parsed;
1338
1339 if (pci_devs_to_hide && *pci_devs_to_hide) {
1340 do {
Jan Beulichc3cb4702012-09-18 12:29:03 +01001341 char wc = '*';
1342
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001343 parsed = 0;
1344
1345 err = sscanf(pci_devs_to_hide + pos,
1346 " (%x:%x:%x.%x) %n",
1347 &domain, &bus, &slot, &func, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +01001348 switch (err) {
1349 case 3:
1350 func = -1;
1351 err = sscanf(pci_devs_to_hide + pos,
1352 " (%x:%x:%x.%c) %n",
1353 &domain, &bus, &slot, &wc,
1354 &parsed);
1355 break;
1356 case 2:
1357 slot = func = -1;
1358 err = sscanf(pci_devs_to_hide + pos,
1359 " (%x:%x:*.%c) %n",
1360 &domain, &bus, &wc, &parsed) + 1;
1361 break;
1362 }
1363
1364 if (err != 4 || wc != '*') {
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001365 domain = 0;
Jan Beulichc3cb4702012-09-18 12:29:03 +01001366 wc = '*';
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001367 err = sscanf(pci_devs_to_hide + pos,
1368 " (%x:%x.%x) %n",
1369 &bus, &slot, &func, &parsed);
Jan Beulichc3cb4702012-09-18 12:29:03 +01001370 switch (err) {
1371 case 2:
1372 func = -1;
1373 err = sscanf(pci_devs_to_hide + pos,
1374 " (%x:%x.%c) %n",
1375 &bus, &slot, &wc,
1376 &parsed);
1377 break;
1378 case 1:
1379 slot = func = -1;
1380 err = sscanf(pci_devs_to_hide + pos,
1381 " (%x:*.%c) %n",
1382 &bus, &wc, &parsed) + 1;
1383 break;
1384 }
1385 if (err != 3 || wc != '*')
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001386 goto parse_error;
1387 }
1388
1389 err = pcistub_device_id_add(domain, bus, slot, func);
1390 if (err)
1391 goto out;
1392
1393 /* if parsed<=0, we've reached the end of the string */
1394 pos += parsed;
1395 } while (parsed > 0 && pci_devs_to_hide[pos]);
1396 }
1397
1398 /* If we're the first PCI Device Driver to register, we're the
1399 * first one to get offered PCI devices as they become
1400 * available (and thus we can be the first to grab them)
1401 */
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001402 err = pci_register_driver(&xen_pcibk_pci_driver);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001403 if (err < 0)
1404 goto out;
1405
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001406 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001407 &driver_attr_new_slot);
1408 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001409 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001410 &driver_attr_remove_slot);
1411 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001412 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001413 &driver_attr_slots);
1414 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001415 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001416 &driver_attr_quirks);
1417 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001418 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001419 &driver_attr_permissive);
1420
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001421 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001422 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001423 &driver_attr_irq_handlers);
1424 if (!err)
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001425 err = driver_create_file(&xen_pcibk_pci_driver.driver,
Konrad Rzeszutek Wilk0513fe92011-07-19 18:56:39 -04001426 &driver_attr_irq_handler_state);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001427 if (err)
1428 pcistub_exit();
1429
1430out:
1431 return err;
1432
1433parse_error:
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001434 printk(KERN_ERR DRV_NAME ": Error parsing pci_devs_to_hide at \"%s\"\n",
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001435 pci_devs_to_hide + pos);
1436 return -EINVAL;
1437}
1438
1439#ifndef MODULE
1440/*
1441 * fs_initcall happens before device_initcall
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001442 * so xen_pcibk *should* get called first (b/c we
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001443 * want to suck up any device before other drivers
1444 * get a chance by being the first pci device
1445 * driver to register)
1446 */
1447fs_initcall(pcistub_init);
1448#endif
1449
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001450static int __init xen_pcibk_init(void)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001451{
1452 int err;
1453
1454 if (!xen_initial_domain())
1455 return -ENODEV;
1456
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001457 err = xen_pcibk_config_init();
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001458 if (err)
1459 return err;
1460
1461#ifdef MODULE
1462 err = pcistub_init();
1463 if (err < 0)
1464 return err;
1465#endif
1466
1467 pcistub_init_devices_late();
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001468 err = xen_pcibk_xenbus_register();
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001469 if (err)
1470 pcistub_exit();
1471
1472 return err;
1473}
1474
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001475static void __exit xen_pcibk_cleanup(void)
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001476{
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001477 xen_pcibk_xenbus_unregister();
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001478 pcistub_exit();
1479}
1480
Konrad Rzeszutek Wilka92336a2011-07-19 19:40:51 -04001481module_init(xen_pcibk_init);
1482module_exit(xen_pcibk_cleanup);
Konrad Rzeszutek Wilk30edc142009-10-13 17:22:20 -04001483
1484MODULE_LICENSE("Dual BSD/GPL");
Jan Beulich402c5e12011-09-21 16:22:11 -04001485MODULE_ALIAS("xen-backend:pci");