2 * Volume Management Device driver
3 * Copyright (c) 2015, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 #include <linux/device.h>
16 #include <linux/interrupt.h>
17 #include <linux/irq.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/msi.h>
21 #include <linux/pci.h>
22 #include <linux/rculist.h>
23 #include <linux/rcupdate.h>
25 #include <asm/irqdomain.h>
26 #include <asm/device.h>
28 #include <asm/msidef.h>
35 * Lock for manipulating VMD IRQ lists.
37 static DEFINE_RAW_SPINLOCK(list_lock
);
40 * struct vmd_irq - private data to map driver IRQ to the VMD shared vector
41 * @node: list item for parent traversal.
42 * @rcu: RCU callback item for freeing.
43 * @irq: back pointer to parent.
44 * @virq: the virtual IRQ value provided to the requesting driver.
46 * Every MSI/MSI-X IRQ requested for a device in a VMD domain will be mapped to
47 * a VMD IRQ using this structure.
50 struct list_head node
;
52 struct vmd_irq_list
*irq
;
57 * struct vmd_irq_list - list of driver requested IRQs mapping to a VMD vector
58 * @irq_list: the list of irq's the VMD one demuxes to.
59 * @vmd_vector: the h/w IRQ assigned to the VMD.
60 * @index: index into the VMD MSI-X table; used for message routing.
61 * @count: number of child IRQs assigned to this vector; used to track
65 struct list_head irq_list
;
67 unsigned int vmd_vector
;
79 struct msix_entry
*msix_entries
;
80 struct vmd_irq_list
*irqs
;
82 struct pci_sysdata sysdata
;
83 struct resource resources
[3];
84 struct irq_domain
*irq_domain
;
87 #ifdef CONFIG_X86_DEV_DMA_OPS
88 struct dma_map_ops dma_ops
;
89 struct dma_domain dma_domain
;
93 static inline struct vmd_dev
*vmd_from_bus(struct pci_bus
*bus
)
95 return container_of(bus
->sysdata
, struct vmd_dev
, sysdata
);
99 * Drivers managing a device in a VMD domain allocate their own IRQs as before,
100 * but the MSI entry for the hardware it's driving will be programmed with a
101 * destination ID for the VMD MSI-X table. The VMD muxes interrupts in its
102 * domain into one of its own, and the VMD driver de-muxes these for the
103 * handlers sharing that VMD IRQ. The vmd irq_domain provides the operations
104 * and irq_chip to set this up.
106 static void vmd_compose_msi_msg(struct irq_data
*data
, struct msi_msg
*msg
)
108 struct vmd_irq
*vmdirq
= data
->chip_data
;
109 struct vmd_irq_list
*irq
= vmdirq
->irq
;
111 msg
->address_hi
= MSI_ADDR_BASE_HI
;
112 msg
->address_lo
= MSI_ADDR_BASE_LO
| MSI_ADDR_DEST_ID(irq
->index
);
117 * We rely on MSI_FLAG_USE_DEF_CHIP_OPS to set the IRQ mask/unmask ops.
119 static void vmd_irq_enable(struct irq_data
*data
)
121 struct vmd_irq
*vmdirq
= data
->chip_data
;
123 raw_spin_lock(&list_lock
);
124 list_add_tail_rcu(&vmdirq
->node
, &vmdirq
->irq
->irq_list
);
125 raw_spin_unlock(&list_lock
);
127 data
->chip
->irq_unmask(data
);
130 static void vmd_irq_disable(struct irq_data
*data
)
132 struct vmd_irq
*vmdirq
= data
->chip_data
;
134 data
->chip
->irq_mask(data
);
136 raw_spin_lock(&list_lock
);
137 list_del_rcu(&vmdirq
->node
);
138 raw_spin_unlock(&list_lock
);
142 * XXX: Stubbed until we develop acceptable way to not create conflicts with
143 * other devices sharing the same vector.
145 static int vmd_irq_set_affinity(struct irq_data
*data
,
146 const struct cpumask
*dest
, bool force
)
151 static struct irq_chip vmd_msi_controller
= {
153 .irq_enable
= vmd_irq_enable
,
154 .irq_disable
= vmd_irq_disable
,
155 .irq_compose_msi_msg
= vmd_compose_msi_msg
,
156 .irq_set_affinity
= vmd_irq_set_affinity
,
159 static irq_hw_number_t
vmd_get_hwirq(struct msi_domain_info
*info
,
160 msi_alloc_info_t
*arg
)
166 * XXX: We can be even smarter selecting the best IRQ once we solve the
169 static struct vmd_irq_list
*vmd_next_irq(struct vmd_dev
*vmd
)
173 raw_spin_lock(&list_lock
);
174 for (i
= 1; i
< vmd
->msix_count
; i
++)
175 if (vmd
->irqs
[i
].count
< vmd
->irqs
[best
].count
)
177 vmd
->irqs
[best
].count
++;
178 raw_spin_unlock(&list_lock
);
180 return &vmd
->irqs
[best
];
183 static int vmd_msi_init(struct irq_domain
*domain
, struct msi_domain_info
*info
,
184 unsigned int virq
, irq_hw_number_t hwirq
,
185 msi_alloc_info_t
*arg
)
187 struct vmd_dev
*vmd
= vmd_from_bus(msi_desc_to_pci_dev(arg
->desc
)->bus
);
188 struct vmd_irq
*vmdirq
= kzalloc(sizeof(*vmdirq
), GFP_KERNEL
);
193 INIT_LIST_HEAD(&vmdirq
->node
);
194 vmdirq
->irq
= vmd_next_irq(vmd
);
197 irq_domain_set_info(domain
, virq
, vmdirq
->irq
->vmd_vector
, info
->chip
,
198 vmdirq
, handle_simple_irq
, vmd
, NULL
);
202 static void vmd_msi_free(struct irq_domain
*domain
,
203 struct msi_domain_info
*info
, unsigned int virq
)
205 struct vmd_irq
*vmdirq
= irq_get_chip_data(virq
);
207 /* XXX: Potential optimization to rebalance */
208 raw_spin_lock(&list_lock
);
209 vmdirq
->irq
->count
--;
210 raw_spin_unlock(&list_lock
);
212 kfree_rcu(vmdirq
, rcu
);
215 static int vmd_msi_prepare(struct irq_domain
*domain
, struct device
*dev
,
216 int nvec
, msi_alloc_info_t
*arg
)
218 struct pci_dev
*pdev
= to_pci_dev(dev
);
219 struct vmd_dev
*vmd
= vmd_from_bus(pdev
->bus
);
221 if (nvec
> vmd
->msix_count
)
222 return vmd
->msix_count
;
224 memset(arg
, 0, sizeof(*arg
));
228 static void vmd_set_desc(msi_alloc_info_t
*arg
, struct msi_desc
*desc
)
233 static struct msi_domain_ops vmd_msi_domain_ops
= {
234 .get_hwirq
= vmd_get_hwirq
,
235 .msi_init
= vmd_msi_init
,
236 .msi_free
= vmd_msi_free
,
237 .msi_prepare
= vmd_msi_prepare
,
238 .set_desc
= vmd_set_desc
,
241 static struct msi_domain_info vmd_msi_domain_info
= {
242 .flags
= MSI_FLAG_USE_DEF_DOM_OPS
| MSI_FLAG_USE_DEF_CHIP_OPS
|
244 .ops
= &vmd_msi_domain_ops
,
245 .chip
= &vmd_msi_controller
,
248 #ifdef CONFIG_X86_DEV_DMA_OPS
250 * VMD replaces the requester ID with its own. DMA mappings for devices in a
251 * VMD domain need to be mapped for the VMD, not the device requiring
254 static struct device
*to_vmd_dev(struct device
*dev
)
256 struct pci_dev
*pdev
= to_pci_dev(dev
);
257 struct vmd_dev
*vmd
= vmd_from_bus(pdev
->bus
);
259 return &vmd
->dev
->dev
;
262 static struct dma_map_ops
*vmd_dma_ops(struct device
*dev
)
264 return to_vmd_dev(dev
)->archdata
.dma_ops
;
267 static void *vmd_alloc(struct device
*dev
, size_t size
, dma_addr_t
*addr
,
268 gfp_t flag
, struct dma_attrs
*attrs
)
270 return vmd_dma_ops(dev
)->alloc(to_vmd_dev(dev
), size
, addr
, flag
,
274 static void vmd_free(struct device
*dev
, size_t size
, void *vaddr
,
275 dma_addr_t addr
, struct dma_attrs
*attrs
)
277 return vmd_dma_ops(dev
)->free(to_vmd_dev(dev
), size
, vaddr
, addr
,
281 static int vmd_mmap(struct device
*dev
, struct vm_area_struct
*vma
,
282 void *cpu_addr
, dma_addr_t addr
, size_t size
,
283 struct dma_attrs
*attrs
)
285 return vmd_dma_ops(dev
)->mmap(to_vmd_dev(dev
), vma
, cpu_addr
, addr
,
289 static int vmd_get_sgtable(struct device
*dev
, struct sg_table
*sgt
,
290 void *cpu_addr
, dma_addr_t addr
, size_t size
,
291 struct dma_attrs
*attrs
)
293 return vmd_dma_ops(dev
)->get_sgtable(to_vmd_dev(dev
), sgt
, cpu_addr
,
297 static dma_addr_t
vmd_map_page(struct device
*dev
, struct page
*page
,
298 unsigned long offset
, size_t size
,
299 enum dma_data_direction dir
,
300 struct dma_attrs
*attrs
)
302 return vmd_dma_ops(dev
)->map_page(to_vmd_dev(dev
), page
, offset
, size
,
306 static void vmd_unmap_page(struct device
*dev
, dma_addr_t addr
, size_t size
,
307 enum dma_data_direction dir
, struct dma_attrs
*attrs
)
309 vmd_dma_ops(dev
)->unmap_page(to_vmd_dev(dev
), addr
, size
, dir
, attrs
);
312 static int vmd_map_sg(struct device
*dev
, struct scatterlist
*sg
, int nents
,
313 enum dma_data_direction dir
, struct dma_attrs
*attrs
)
315 return vmd_dma_ops(dev
)->map_sg(to_vmd_dev(dev
), sg
, nents
, dir
, attrs
);
318 static void vmd_unmap_sg(struct device
*dev
, struct scatterlist
*sg
, int nents
,
319 enum dma_data_direction dir
, struct dma_attrs
*attrs
)
321 vmd_dma_ops(dev
)->unmap_sg(to_vmd_dev(dev
), sg
, nents
, dir
, attrs
);
324 static void vmd_sync_single_for_cpu(struct device
*dev
, dma_addr_t addr
,
325 size_t size
, enum dma_data_direction dir
)
327 vmd_dma_ops(dev
)->sync_single_for_cpu(to_vmd_dev(dev
), addr
, size
, dir
);
330 static void vmd_sync_single_for_device(struct device
*dev
, dma_addr_t addr
,
331 size_t size
, enum dma_data_direction dir
)
333 vmd_dma_ops(dev
)->sync_single_for_device(to_vmd_dev(dev
), addr
, size
,
337 static void vmd_sync_sg_for_cpu(struct device
*dev
, struct scatterlist
*sg
,
338 int nents
, enum dma_data_direction dir
)
340 vmd_dma_ops(dev
)->sync_sg_for_cpu(to_vmd_dev(dev
), sg
, nents
, dir
);
343 static void vmd_sync_sg_for_device(struct device
*dev
, struct scatterlist
*sg
,
344 int nents
, enum dma_data_direction dir
)
346 vmd_dma_ops(dev
)->sync_sg_for_device(to_vmd_dev(dev
), sg
, nents
, dir
);
349 static int vmd_mapping_error(struct device
*dev
, dma_addr_t addr
)
351 return vmd_dma_ops(dev
)->mapping_error(to_vmd_dev(dev
), addr
);
354 static int vmd_dma_supported(struct device
*dev
, u64 mask
)
356 return vmd_dma_ops(dev
)->dma_supported(to_vmd_dev(dev
), mask
);
359 #ifdef ARCH_HAS_DMA_GET_REQUIRED_MASK
360 static u64
vmd_get_required_mask(struct device
*dev
)
362 return vmd_dma_ops(dev
)->get_required_mask(to_vmd_dev(dev
));
366 static void vmd_teardown_dma_ops(struct vmd_dev
*vmd
)
368 struct dma_domain
*domain
= &vmd
->dma_domain
;
370 if (vmd
->dev
->dev
.archdata
.dma_ops
)
371 del_dma_domain(domain
);
374 #define ASSIGN_VMD_DMA_OPS(source, dest, fn) \
377 dest->fn = vmd_##fn; \
380 static void vmd_setup_dma_ops(struct vmd_dev
*vmd
)
382 const struct dma_map_ops
*source
= vmd
->dev
->dev
.archdata
.dma_ops
;
383 struct dma_map_ops
*dest
= &vmd
->dma_ops
;
384 struct dma_domain
*domain
= &vmd
->dma_domain
;
386 domain
->domain_nr
= vmd
->sysdata
.domain
;
387 domain
->dma_ops
= dest
;
391 ASSIGN_VMD_DMA_OPS(source
, dest
, alloc
);
392 ASSIGN_VMD_DMA_OPS(source
, dest
, free
);
393 ASSIGN_VMD_DMA_OPS(source
, dest
, mmap
);
394 ASSIGN_VMD_DMA_OPS(source
, dest
, get_sgtable
);
395 ASSIGN_VMD_DMA_OPS(source
, dest
, map_page
);
396 ASSIGN_VMD_DMA_OPS(source
, dest
, unmap_page
);
397 ASSIGN_VMD_DMA_OPS(source
, dest
, map_sg
);
398 ASSIGN_VMD_DMA_OPS(source
, dest
, unmap_sg
);
399 ASSIGN_VMD_DMA_OPS(source
, dest
, sync_single_for_cpu
);
400 ASSIGN_VMD_DMA_OPS(source
, dest
, sync_single_for_device
);
401 ASSIGN_VMD_DMA_OPS(source
, dest
, sync_sg_for_cpu
);
402 ASSIGN_VMD_DMA_OPS(source
, dest
, sync_sg_for_device
);
403 ASSIGN_VMD_DMA_OPS(source
, dest
, mapping_error
);
404 ASSIGN_VMD_DMA_OPS(source
, dest
, dma_supported
);
405 #ifdef ARCH_HAS_DMA_GET_REQUIRED_MASK
406 ASSIGN_VMD_DMA_OPS(source
, dest
, get_required_mask
);
408 add_dma_domain(domain
);
410 #undef ASSIGN_VMD_DMA_OPS
412 static void vmd_teardown_dma_ops(struct vmd_dev
*vmd
) {}
413 static void vmd_setup_dma_ops(struct vmd_dev
*vmd
) {}
416 static char __iomem
*vmd_cfg_addr(struct vmd_dev
*vmd
, struct pci_bus
*bus
,
417 unsigned int devfn
, int reg
, int len
)
419 char __iomem
*addr
= vmd
->cfgbar
+
420 (bus
->number
<< 20) + (devfn
<< 12) + reg
;
422 if ((addr
- vmd
->cfgbar
) + len
>=
423 resource_size(&vmd
->dev
->resource
[VMD_CFGBAR
]))
430 * CPU may deadlock if config space is not serialized on some versions of this
431 * hardware, so all config space access is done under a spinlock.
433 static int vmd_pci_read(struct pci_bus
*bus
, unsigned int devfn
, int reg
,
436 struct vmd_dev
*vmd
= vmd_from_bus(bus
);
437 char __iomem
*addr
= vmd_cfg_addr(vmd
, bus
, devfn
, reg
, len
);
444 spin_lock_irqsave(&vmd
->cfg_lock
, flags
);
447 *value
= readb(addr
);
450 *value
= readw(addr
);
453 *value
= readl(addr
);
459 spin_unlock_irqrestore(&vmd
->cfg_lock
, flags
);
464 * VMD h/w converts non-posted config writes to posted memory writes. The
465 * read-back in this function forces the completion so it returns only after
466 * the config space was written, as expected.
468 static int vmd_pci_write(struct pci_bus
*bus
, unsigned int devfn
, int reg
,
471 struct vmd_dev
*vmd
= vmd_from_bus(bus
);
472 char __iomem
*addr
= vmd_cfg_addr(vmd
, bus
, devfn
, reg
, len
);
479 spin_lock_irqsave(&vmd
->cfg_lock
, flags
);
497 spin_unlock_irqrestore(&vmd
->cfg_lock
, flags
);
501 static struct pci_ops vmd_ops
= {
502 .read
= vmd_pci_read
,
503 .write
= vmd_pci_write
,
506 static void vmd_attach_resources(struct vmd_dev
*vmd
)
508 vmd
->dev
->resource
[VMD_MEMBAR1
].child
= &vmd
->resources
[1];
509 vmd
->dev
->resource
[VMD_MEMBAR2
].child
= &vmd
->resources
[2];
512 static void vmd_detach_resources(struct vmd_dev
*vmd
)
514 vmd
->dev
->resource
[VMD_MEMBAR1
].child
= NULL
;
515 vmd
->dev
->resource
[VMD_MEMBAR2
].child
= NULL
;
519 * VMD domains start at 0x1000 to not clash with ACPI _SEG domains.
521 static int vmd_find_free_domain(void)
524 struct pci_bus
*bus
= NULL
;
526 while ((bus
= pci_find_next_bus(bus
)) != NULL
)
527 domain
= max_t(int, domain
, pci_domain_nr(bus
));
531 static int vmd_enable_domain(struct vmd_dev
*vmd
)
533 struct pci_sysdata
*sd
= &vmd
->sysdata
;
534 struct resource
*res
;
537 LIST_HEAD(resources
);
539 res
= &vmd
->dev
->resource
[VMD_CFGBAR
];
540 vmd
->resources
[0] = (struct resource
) {
541 .name
= "VMD CFGBAR",
543 .end
= (resource_size(res
) >> 20) - 1,
544 .flags
= IORESOURCE_BUS
| IORESOURCE_PCI_FIXED
,
548 * If the window is below 4GB, clear IORESOURCE_MEM_64 so we can
549 * put 32-bit resources in the window.
551 * There's no hardware reason why a 64-bit window *couldn't*
552 * contain a 32-bit resource, but pbus_size_mem() computes the
553 * bridge window size assuming a 64-bit window will contain no
554 * 32-bit resources. __pci_assign_resource() enforces that
555 * artificial restriction to make sure everything will fit.
557 * The only way we could use a 64-bit non-prefechable MEMBAR is
558 * if its address is <4GB so that we can convert it to a 32-bit
559 * resource. To be visible to the host OS, all VMD endpoints must
560 * be initially configured by platform BIOS, which includes setting
561 * up these resources. We can assume the device is configured
562 * according to the platform needs.
564 res
= &vmd
->dev
->resource
[VMD_MEMBAR1
];
565 upper_bits
= upper_32_bits(res
->end
);
566 flags
= res
->flags
& ~IORESOURCE_SIZEALIGN
;
568 flags
&= ~IORESOURCE_MEM_64
;
569 vmd
->resources
[1] = (struct resource
) {
570 .name
= "VMD MEMBAR1",
577 res
= &vmd
->dev
->resource
[VMD_MEMBAR2
];
578 upper_bits
= upper_32_bits(res
->end
);
579 flags
= res
->flags
& ~IORESOURCE_SIZEALIGN
;
581 flags
&= ~IORESOURCE_MEM_64
;
582 vmd
->resources
[2] = (struct resource
) {
583 .name
= "VMD MEMBAR2",
584 .start
= res
->start
+ 0x2000,
590 sd
->domain
= vmd_find_free_domain();
594 sd
->node
= pcibus_to_node(vmd
->dev
->bus
);
596 vmd
->irq_domain
= pci_msi_create_irq_domain(NULL
, &vmd_msi_domain_info
,
598 if (!vmd
->irq_domain
)
601 pci_add_resource(&resources
, &vmd
->resources
[0]);
602 pci_add_resource(&resources
, &vmd
->resources
[1]);
603 pci_add_resource(&resources
, &vmd
->resources
[2]);
604 vmd
->bus
= pci_create_root_bus(&vmd
->dev
->dev
, 0, &vmd_ops
, sd
,
607 pci_free_resource_list(&resources
);
608 irq_domain_remove(vmd
->irq_domain
);
612 vmd_attach_resources(vmd
);
613 vmd_setup_dma_ops(vmd
);
614 dev_set_msi_domain(&vmd
->bus
->dev
, vmd
->irq_domain
);
615 pci_rescan_bus(vmd
->bus
);
617 WARN(sysfs_create_link(&vmd
->dev
->dev
.kobj
, &vmd
->bus
->dev
.kobj
,
618 "domain"), "Can't create symlink to domain\n");
622 static irqreturn_t
vmd_irq(int irq
, void *data
)
624 struct vmd_irq_list
*irqs
= data
;
625 struct vmd_irq
*vmdirq
;
628 list_for_each_entry_rcu(vmdirq
, &irqs
->irq_list
, node
)
629 generic_handle_irq(vmdirq
->virq
);
635 static int vmd_probe(struct pci_dev
*dev
, const struct pci_device_id
*id
)
640 if (resource_size(&dev
->resource
[VMD_CFGBAR
]) < (1 << 20))
643 vmd
= devm_kzalloc(&dev
->dev
, sizeof(*vmd
), GFP_KERNEL
);
648 err
= pcim_enable_device(dev
);
652 vmd
->cfgbar
= pcim_iomap(dev
, VMD_CFGBAR
, 0);
657 if (dma_set_mask_and_coherent(&dev
->dev
, DMA_BIT_MASK(64)) &&
658 dma_set_mask_and_coherent(&dev
->dev
, DMA_BIT_MASK(32)))
661 vmd
->msix_count
= pci_msix_vec_count(dev
);
662 if (vmd
->msix_count
< 0)
665 vmd
->irqs
= devm_kcalloc(&dev
->dev
, vmd
->msix_count
, sizeof(*vmd
->irqs
),
670 vmd
->msix_entries
= devm_kcalloc(&dev
->dev
, vmd
->msix_count
,
671 sizeof(*vmd
->msix_entries
),
673 if (!vmd
->msix_entries
)
675 for (i
= 0; i
< vmd
->msix_count
; i
++)
676 vmd
->msix_entries
[i
].entry
= i
;
678 vmd
->msix_count
= pci_enable_msix_range(vmd
->dev
, vmd
->msix_entries
, 1,
680 if (vmd
->msix_count
< 0)
681 return vmd
->msix_count
;
683 for (i
= 0; i
< vmd
->msix_count
; i
++) {
684 INIT_LIST_HEAD(&vmd
->irqs
[i
].irq_list
);
685 vmd
->irqs
[i
].vmd_vector
= vmd
->msix_entries
[i
].vector
;
686 vmd
->irqs
[i
].index
= i
;
688 err
= devm_request_irq(&dev
->dev
, vmd
->irqs
[i
].vmd_vector
,
689 vmd_irq
, 0, "vmd", &vmd
->irqs
[i
]);
694 spin_lock_init(&vmd
->cfg_lock
);
695 pci_set_drvdata(dev
, vmd
);
696 err
= vmd_enable_domain(vmd
);
700 dev_info(&vmd
->dev
->dev
, "Bound to PCI domain %04x\n",
701 vmd
->sysdata
.domain
);
705 static void vmd_remove(struct pci_dev
*dev
)
707 struct vmd_dev
*vmd
= pci_get_drvdata(dev
);
709 vmd_detach_resources(vmd
);
710 pci_set_drvdata(dev
, NULL
);
711 sysfs_remove_link(&vmd
->dev
->dev
.kobj
, "domain");
712 pci_stop_root_bus(vmd
->bus
);
713 pci_remove_root_bus(vmd
->bus
);
714 vmd_teardown_dma_ops(vmd
);
715 irq_domain_remove(vmd
->irq_domain
);
719 static int vmd_suspend(struct device
*dev
)
721 struct pci_dev
*pdev
= to_pci_dev(dev
);
723 pci_save_state(pdev
);
727 static int vmd_resume(struct device
*dev
)
729 struct pci_dev
*pdev
= to_pci_dev(dev
);
731 pci_restore_state(pdev
);
735 static SIMPLE_DEV_PM_OPS(vmd_dev_pm_ops
, vmd_suspend
, vmd_resume
);
737 static const struct pci_device_id vmd_ids
[] = {
738 {PCI_DEVICE(PCI_VENDOR_ID_INTEL
, 0x201d),},
741 MODULE_DEVICE_TABLE(pci
, vmd_ids
);
743 static struct pci_driver vmd_drv
= {
747 .remove
= vmd_remove
,
749 .pm
= &vmd_dev_pm_ops
,
752 module_pci_driver(vmd_drv
);
754 MODULE_AUTHOR("Intel Corporation");
755 MODULE_LICENSE("GPL v2");
756 MODULE_VERSION("0.6");