virtualization.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/13 v7] PCI: Linux kernel SR-IOV support
@ 2008-11-21 18:36 Yu Zhao
  0 siblings, 0 replies; 59+ messages in thread
From: Yu Zhao @ 2008-11-21 18:36 UTC (permalink / raw)
  To: linux-pci
  Cc: randy.dunlap, grundler, achiang, matthew, greg, rdreier,
	linux-kernel, jbarnes, virtualization, horms, kvm, mingo, yinghai,
	bjorn.helgaas

Greetings,

Following patches are intended to support SR-IOV capability in the
Linux kernel. With these patches, people can turn a PCI device with
the capability into multiple ones from software perspective, which
will benefit KVM and achieve other purposes such as QoS, security,
and etc.

The Physical Function and Virtual Function drivers using the SR-IOV
APIs will come soon!

Major changes from v6 to v7:
1, remove boot-time resource rebalancing support. (Greg KH)
2, emit uevent upon the PF driver is loaded. (Greg KH)
3, put SR-IOV callback function into the 'pci_driver'. (Matthew Wilcox)
4, register SR-IOV service at the PF loading stage.
5, remove unnecessary APIs (pci_iov_enable/disable).

---

[PATCH 1/13 v7] PCI: enhance pci_ari_enabled()
[PATCH 2/13 v7] PCI: remove unnecessary arg of pci_update_resource()
[PATCH 3/13 v7] PCI: define PCI resource names in an 'enum'
[PATCH 4/13 v7] PCI: remove unnecessary condition check in pci_restore_bars()
[PATCH 5/13 v7] PCI: export __pci_read_base()
[PATCH 6/13 v7] PCI: make pci_alloc_child_bus() be able to handle NULL bridge
[PATCH 7/13 v7] PCI: add a new function to map BAR offset
[PATCH 8/13 v7] PCI: cleanup pci_bus_add_devices()
[PATCH 9/13 v7] PCI: split a new function from pci_bus_add_devices()
[PATCH 10/13 v7] PCI: support the SR-IOV capability
[PATCH 11/13 v7] PCI: reserve bus range for SR-IOV device
[PATCH 12/13 v7] PCI: document the SR-IOV sysfs entries
[PATCH 13/13 v7] PCI: document for SR-IOV user and developer

Cc: Alex Chiang <achiang@hp.com>
Cc: Bjorn Helgaas <bjorn.helgaas@hp.com>
Cc: Grant Grundler <grundler@parisc-linux.org>
Cc: Greg KH <greg@kroah.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
Cc: Matthew Wilcox <matthew@wil.cx>
Cc: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Roland Dreier <rdreier@cisco.com>
Cc: Simon Horman <horms@verge.net.au>
Cc: Yinghai Lu <yinghai@kernel.org>

---

Single Root I/O Virtualization (SR-IOV) capability defined by PCI-SIG
is intended to enable multiple system software to share PCI hardware
resources.  PCI device that supports this capability can be extended
to one Physical Functions plus multiple Virtual Functions. Physical
Function, which could be considered as the "real" PCI device, reflects
the hardware instance and manages all physical resources. Virtual
Functions are associated with a Physical Function and shares physical
resources with the Physical Function.Software can control allocation of
Virtual Functions via registers encapsulated in the capability structure.

SR-IOV specification can be found at
http://www.pcisig.com/members/downloads/specifications/iov/sr-iov1.0_11Sep07.pdf

Devices that support SR-IOV are available from following vendors:
http://download.intel.com/design/network/ProdBrf/320025.pdf
http://www.netxen.com/products/chipsolutions/NX3031.html
http://www.neterion.com/products/x3100.html

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

end of thread, other threads:[~2008-12-18 22:42 UTC | newest]

Thread overview: 59+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20081121183605.GA7810@yzhao12-linux.sh.intel.com>
2008-11-21 18:38 ` [PATCH 1/13 v7] PCI: enhance pci_ari_enabled() Yu Zhao
2008-11-21 18:38 ` [PATCH 2/13 v7] PCI: remove unnecessary arg of pci_update_resource() Yu Zhao
2008-11-21 18:39 ` [PATCH 3/13 v7] PCI: define PCI resource names in an 'enum' Yu Zhao
2008-11-21 18:40 ` [PATCH 4/13 v7] PCI: remove unnecessary condition check in pci_restore_bars() Yu Zhao
2008-11-21 18:40 ` [PATCH 5/13 v7] PCI: export __pci_read_base() Yu Zhao
2008-11-21 18:41 ` [PATCH 6/13 v7] PCI: make pci_alloc_child_bus() be able to handle NULL bridge Yu Zhao
2008-11-21 18:41 ` [PATCH 7/13 v7] PCI: add a new function to map BAR offset Yu Zhao
2008-11-21 18:41 ` [PATCH 8/13 v7] PCI: cleanup pci_bus_add_devices() Yu Zhao
2008-11-21 18:42 ` [PATCH 9/13 v7] PCI: split a new function from pci_bus_add_devices() Yu Zhao
2008-11-21 18:42 ` [PATCH 10/13 v7] PCI: support the SR-IOV capability Yu Zhao
2008-11-21 18:43 ` [PATCH 11/13 v7] PCI: reserve bus range for SR-IOV device Yu Zhao
2008-11-21 18:43 ` [PATCH 12/13 v7] PCI: document the SR-IOV sysfs entries Yu Zhao
2008-11-21 18:44 ` [PATCH 13/13 v7] PCI: document for SR-IOV user and developer Yu Zhao
2008-11-21 20:57 ` [PATCH 0/13 v7] PCI: Linux kernel SR-IOV support Greg KH
     [not found] ` <20081121205746.GA3639@kroah.com>
2008-11-22  7:03   ` Zhao, Yu
2008-11-26 14:03 ` [SR-IOV driver example 0/3] introduction Yu Zhao
     [not found] ` <20081126140303.GA13641@yzhao12-linux.sh.intel.com>
2008-11-26 14:11   ` [SR-IOV driver example 1/3] PF driver: allocate hardware specific resource Yu Zhao
2008-11-26 14:21   ` [SR-IOV driver example 2/3] PF driver: integrate with SR-IOV core Yu Zhao
2008-11-26 14:40   ` [SR-IOV driver example 3/3] VF driver tar ball Yu Zhao
     [not found]   ` <20081126142156.GB13668@yzhao12-linux.sh.intel.com>
2008-11-26 16:58     ` [SR-IOV driver example 2/3] PF driver: integrate with SR-IOV core Greg KH
     [not found]     ` <20081126165859.GA28251@kroah.com>
2008-11-26 17:54       ` Chris Wright
2008-11-26 19:27       ` Nakajima, Jun
     [not found]       ` <0B53E02A2965CE4F9ADB38B34501A3A167E8BD7F@orsmsx505.amr.corp.intel.com>
2008-11-26 19:55         ` Greg KH
2008-12-01 16:44       ` Yu Zhao
     [not found]       ` <20081126175427.GE19881@sequoia.sous-sol.org>
2008-12-01 16:46         ` Yu Zhao
2008-11-26 16:59   ` [SR-IOV driver example 0/3] introduction Greg KH
     [not found]   ` <20081126144043.GC13668@yzhao12-linux.sh.intel.com>
2008-11-26 17:00     ` [SR-IOV driver example 3/3] VF driver tar ball Greg KH
2008-11-26 20:14   ` [SR-IOV driver example 0/3] introduction Jeff Garzik
     [not found]   ` <492DAE38.3050809@garzik.org>
2008-12-01 16:39     ` Yu Zhao
     [not found]   ` <20081126165933.GB28251@kroah.com>
2008-12-01 16:54     ` Yu Zhao
2008-12-02  9:27 ` [SR-IOV driver example 0/3 resend] introduction Yu Zhao
     [not found] ` <20081202092741.GA1859@yzhao12-linux.sh.intel.com>
2008-12-02  9:40   ` [SR-IOV driver example 1/3 resend] PF driver: hardware specific operations Yu Zhao
2008-12-02  9:42   ` [SR-IOV driver example 2/3 resend] PF driver: integrate with SR-IOV core Yu Zhao
2008-12-02  9:57   ` [SR-IOV driver example 3/3 resend] VF driver: an independent PCI NIC driver Yu Zhao
2008-12-03  3:12   ` [SR-IOV driver example 0/3 resend] introduction Jeff Kirsher
2008-12-16 23:23 ` [PATCH 0/13 v7] PCI: Linux kernel SR-IOV support Jesse Barnes
     [not found] ` <200812161523.55238.jbarnes@virtuousgeek.org>
2008-12-17  2:37   ` Jike Song
     [not found]   ` <49486602.5000108@gmail.com>
2008-12-17  6:06     ` Greg KH
     [not found]     ` <20081217060608.GA12618@kroah.com>
2008-12-17  7:07       ` Zhao, Yu
     [not found]       ` <4948A52B.7040403@intel.com>
2008-12-17  7:21         ` Greg KH
2008-12-17 16:44       ` Rose, Gregory V
     [not found]       ` <43F901BD926A4E43B106BF17856F07554B525811@orsmsx508.amr.corp.intel.com>
2008-12-17 17:51         ` Greg KH
2008-12-17 18:51         ` Jesse Barnes
     [not found]         ` <200812171051.36645.jbarnes@virtuousgeek.org>
2008-12-17 19:05           ` Rose, Gregory V
     [not found]           ` <43F901BD926A4E43B106BF17856F07554B525A02@orsmsx508.amr.corp.intel.com>
2008-12-17 19:34             ` Jeremy Fitzhardinge
2008-12-17 19:42               ` Rose, Gregory V
2008-12-17 19:42             ` Jesse Barnes
     [not found]             ` <200812171142.56170.jbarnes@virtuousgeek.org>
2008-12-17 19:51               ` Greg KH
     [not found]               ` <20081217195143.GA25211@kroah.com>
2008-12-17 20:07                 ` Jesse Barnes
     [not found]                 ` <200812171207.34396.jbarnes@virtuousgeek.org>
2008-12-18  2:39                   ` Zhao, Yu
2008-12-18 22:42               ` Rose, Gregory V
2008-12-17 11:42   ` Fischer, Anna
2008-12-17 14:15   ` Matthew Wilcox
     [not found]   ` <20081217141542.GB19967@parisc-linux.org>
2008-12-17 17:27     ` Jesse Barnes
2008-12-18  2:26     ` Zhao, Yu
     [not found]   ` <0199E0D51A61344794750DC57738F58E5E29B33E3C@GVW1118EXC.americas.hpqcorp.net>
2008-12-17 18:59     ` Jesse Barnes
2008-12-18  2:13     ` Zhao, Yu
     [not found]     ` <4949B1E6.7030309@intel.com>
2008-12-18  6:37       ` Fischer, Anna
2008-11-21 18:36 Yu Zhao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).