All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/6] hv: Front-end driver for PCIe Pass-through on Hyper-V
@ 2015-06-17 17:14 jakeo
  2015-06-17 17:14 ` [PATCH v3 1/6] hv: Modify vmbus to search for all MMIO ranges available jakeo
                   ` (5 more replies)
  0 siblings, 6 replies; 13+ messages in thread
From: jakeo @ 2015-06-17 17:14 UTC (permalink / raw)
  To: gregkh, kys, linux-kernel, devel, olaf, apw, vkuznets, haiyangz,
	mebersol
  Cc: Jake Oshins

From: Jake Oshins <jakeo@microsoft.com>

This patch series differs from the previous one (v2) in that it fixes
kernel-doc commenting style and changes a few variable and function
names to be more understandable.

These patches do some slight refactoring on the hv_vmbus driver and its
dependents and then introduces a new paravirtual front-end driver for PCI
which supports PCI Express devices passed through to a Linux guest running
in a Hyper-V VM.

To support this front-end, several new mechanisms are introduced:

1 - A common way of finding free memory-mapped I/O space in a Hyper-V VM, 
    available to all Hyper-V-related drivers.

2 - A way of handling PCI Message-Signaled Interrupt (MSI and MSI-X)
    creation and formatting when Hyper-V is running.

3 - A mapping function from Linux processor number to Hyper-V virtual
    processor number, available to drivers, which is necessary for MSI(-X)
    creation.

The Hyper-V Frame Buffer driver is modified to use the MMIO space
allocation function so that its allocations both don't collide with the
PCI front end and so that the chosen range can come from any available
part of MMIO space.

Finally, the new PCI front-end driver is the last patch in the series.

Jake Oshins (6):
  hv: Modify vmbus to search for all MMIO ranges available
  drivers:hv: Move MMIO range picking from hyper_fb.mod to hv_vmbus.mod
  arch:x86:hv: Add mechanism for Hyper-V paravirt drivers to hook msi
    creation
  drivers:hv: Export a function that maps Linux proc num onto Hyper-V
    proc num
  drivers:hv: Define the channel type for Hyper-V PCI Express
    pass-through
  drivers:pci:hv: New paravirtual PCI front-end for Hyper-V VMs

 MAINTAINERS                     |    1 +
 arch/x86/include/asm/mshyperv.h |    2 +
 arch/x86/kernel/cpu/mshyperv.c  |   30 +
 drivers/hv/vmbus_drv.c          |  205 +++-
 drivers/pci/Kconfig             |    7 +
 drivers/pci/host/Makefile       |    1 +
 drivers/pci/host/hv_pcifront.c  | 2101 +++++++++++++++++++++++++++++++++++++++
 drivers/video/fbdev/hyperv_fb.c |   46 +-
 include/linux/hyperv.h          |   20 +-
 9 files changed, 2370 insertions(+), 43 deletions(-)
 create mode 100644 drivers/pci/host/hv_pcifront.c

-- 
1.9.1


^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2015-06-22 21:37 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-17 17:14 [PATCH v3 0/6] hv: Front-end driver for PCIe Pass-through on Hyper-V jakeo
2015-06-17 17:14 ` [PATCH v3 1/6] hv: Modify vmbus to search for all MMIO ranges available jakeo
2015-06-17 17:27   ` Vitaly Kuznetsov
2015-06-17 17:41     ` Jake Oshins
2015-06-17 19:11       ` gregkh
2015-06-18  3:49         ` KY Srinivasan
2015-06-17 17:14 ` [PATCH v3 2/6] drivers:hv: Move MMIO range picking from hyper_fb.mod to hv_vmbus.mod jakeo
2015-06-17 17:14 ` [PATCH v3 3/6] arch:x86:hv: Add mechanism for Hyper-V paravirt drivers to hook msi creation jakeo
2015-06-17 17:14 ` [PATCH v3 4/6] drivers:hv: Export a function that maps Linux proc num onto Hyper-V proc num jakeo
2015-06-17 17:14 ` [PATCH v3 5/6] drivers:hv: Define the channel type for Hyper-V PCI Express pass-through jakeo
2015-06-17 17:14 ` [PATCH v3 6/6] drivers:pci:hv: New paravirtual PCI front-end for Hyper-V VMs jakeo
2015-06-22 14:14   ` Dan Carpenter
2015-06-22 20:04     ` Jake Oshins

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.