Chris Wright | c70e0d9 | 2008-11-25 21:17:13 -0800 | [diff] [blame] | 1 | /* pci-stub - simple stub driver to reserve a pci device |
| 2 | * |
| 3 | * Copyright (C) 2008 Red Hat, Inc. |
| 4 | * Author: |
| 5 | * Chris Wright |
| 6 | * |
| 7 | * This work is licensed under the terms of the GNU GPL, version 2. |
| 8 | * |
| 9 | * Usage is simple, allocate a new id to the stub driver and bind the |
| 10 | * device to it. For example: |
| 11 | * |
| 12 | * # echo "8086 10f5" > /sys/bus/pci/drivers/pci-stub/new_id |
| 13 | * # echo -n 0000:00:19.0 > /sys/bus/pci/drivers/e1000e/unbind |
| 14 | * # echo -n 0000:00:19.0 > /sys/bus/pci/drivers/pci-stub/bind |
| 15 | * # ls -l /sys/bus/pci/devices/0000:00:19.0/driver |
| 16 | * .../0000:00:19.0/driver -> ../../../bus/pci/drivers/pci-stub |
| 17 | */ |
| 18 | |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/pci.h> |
| 21 | |
Tejun Heo | b439b1d | 2009-09-03 15:27:27 +0900 | [diff] [blame] | 22 | static char ids[1024] __initdata; |
| 23 | |
| 24 | module_param_string(ids, ids, sizeof(ids), 0); |
| 25 | MODULE_PARM_DESC(ids, "Initial PCI IDs to add to the stub driver, format is " |
| 26 | "\"vendor:device[:subvendor[:subdevice[:class[:class_mask]]]]\"" |
| 27 | " and multiple comma separated entries can be specified"); |
| 28 | |
Chris Wright | c70e0d9 | 2008-11-25 21:17:13 -0800 | [diff] [blame] | 29 | static int pci_stub_probe(struct pci_dev *dev, const struct pci_device_id *id) |
| 30 | { |
Tejun Heo | b439b1d | 2009-09-03 15:27:27 +0900 | [diff] [blame] | 31 | dev_printk(KERN_INFO, &dev->dev, "claimed by stub\n"); |
Chris Wright | c70e0d9 | 2008-11-25 21:17:13 -0800 | [diff] [blame] | 32 | return 0; |
| 33 | } |
| 34 | |
| 35 | static struct pci_driver stub_driver = { |
| 36 | .name = "pci-stub", |
| 37 | .id_table = NULL, /* only dynamic id's */ |
| 38 | .probe = pci_stub_probe, |
| 39 | }; |
| 40 | |
| 41 | static int __init pci_stub_init(void) |
| 42 | { |
Tejun Heo | b439b1d | 2009-09-03 15:27:27 +0900 | [diff] [blame] | 43 | char *p, *id; |
| 44 | int rc; |
| 45 | |
| 46 | rc = pci_register_driver(&stub_driver); |
| 47 | if (rc) |
| 48 | return rc; |
| 49 | |
| 50 | /* add ids specified in the module parameter */ |
| 51 | p = ids; |
| 52 | while ((id = strsep(&p, ","))) { |
| 53 | unsigned int vendor, device, subvendor = PCI_ANY_ID, |
| 54 | subdevice = PCI_ANY_ID, class=0, class_mask=0; |
| 55 | int fields; |
| 56 | |
| 57 | fields = sscanf(id, "%x:%x:%x:%x:%x:%x", |
| 58 | &vendor, &device, &subvendor, &subdevice, |
| 59 | &class, &class_mask); |
| 60 | |
| 61 | if (fields < 2) { |
| 62 | printk(KERN_WARNING |
| 63 | "pci-stub: invalid id string \"%s\"\n", id); |
| 64 | continue; |
| 65 | } |
| 66 | |
| 67 | printk(KERN_INFO |
| 68 | "pci-stub: add %04X:%04X sub=%04X:%04X cls=%08X/%08X\n", |
| 69 | vendor, device, subvendor, subdevice, class, class_mask); |
| 70 | |
| 71 | rc = pci_add_dynid(&stub_driver, vendor, device, |
| 72 | subvendor, subdevice, class, class_mask, 0); |
| 73 | if (rc) |
| 74 | printk(KERN_WARNING |
| 75 | "pci-stub: failed to add dynamic id (%d)\n", rc); |
| 76 | } |
| 77 | |
| 78 | return 0; |
Chris Wright | c70e0d9 | 2008-11-25 21:17:13 -0800 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static void __exit pci_stub_exit(void) |
| 82 | { |
| 83 | pci_unregister_driver(&stub_driver); |
| 84 | } |
| 85 | |
| 86 | module_init(pci_stub_init); |
| 87 | module_exit(pci_stub_exit); |
| 88 | |
| 89 | MODULE_LICENSE("GPL"); |
| 90 | MODULE_AUTHOR("Chris Wright <chrisw@sous-sol.org>"); |