linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH -v2 00/26] PCI, x86: Add for_each_res and addon resource support
@ 2012-03-19  5:48 Yinghai Lu
  2012-03-19  5:48 ` [PATCH -v2 01/26] PCI: Add pci_dev_resource_n() Yinghai Lu
                   ` (25 more replies)
  0 siblings, 26 replies; 27+ messages in thread
From: Yinghai Lu @ 2012-03-19  5:48 UTC (permalink / raw)
  To: Jesse Barnes, x86
  Cc: Bjorn Helgaas, Andrew Morton, Linus Torvalds, Greg Kroah-Hartman,
	linux-pci, linux-kernel, Yinghai Lu

Make device resource loop easier and readable.
Also add addon_resource support about non-stanard resources.

The patches need to apply to pci/for-linus and pci/linux-next
        [PATCH -v3] PCI: pci_host_bridge related cleanup
        [PATCH -v11] PCI: allocate pci bus num range for unassigned bridge busn
	[PATCH -v3] PCI, x86: pci root bus hotplug support

could get from
        git://git.kernel.org/pub/scm/linux/kernel/git/yinghai/linux-yinghai.git for-pci-for-each-res-addon

-v2: Split to small patches.

Thanks

Yinghai

Yinghai Lu (26):
  PCI: Add pci_dev_resource_n()
  PCI: Add for_each_resource helpers to make resource loop easier.
  PCI: Add pci_dev_resource_idx()
  PCI: Update pci_resource_start to use pci_dev_resource_n()
  x86, PCI: Use for_each_res with pci_allocate_bridge_resources
  x86, PCI: Use for_each_res with pci_allocate_dev_resources
  PCI: Use for_each_res with IOV releated funcs
  PCI, acpiphp: Use for_each_pci_dev_resource helper
  PCI, pciehp: Use for_each_pci_dev_resource helper
  PCI: Use for_each_pci_dev_resource pci_enable_dev
  PCI: Use for_each_pci_dev_resource pci_reassigndev
  PCI: Use for_each_res with pci bar reassign funcs
  PCI: Use for_each_res pci_assign_resource
  PCI: Use for_each_res with noassign_bars
  PCI: Use for_each_res pci bases pci_dev_driver()
  PCI: Use for_each_res pci release release
  PCI: Use for_each_res pci bases reading
  PCI: Use for_each_res with mrs
  PCI: Use for_each_res with xen pci
  PCI: Add addon_resource support for pci_dev
  PCI: Add helpers for add addon_resource
  PCI: Update pci_resource_bar() to support addon_resource
  PCI: Make assign/update resource to support addon_res
  PCI: Make piix4 quirk to use addon_resource support
  PCI: Make quirk_io_region to use addon_resource support
  PCI: Use addon_fixed_resource with ati fixed resource

 arch/x86/pci/common.c              |    3 +-
 arch/x86/pci/i386.c                |   57 +++-----
 arch/x86/pci/mrst.c                |    7 +-
 drivers/pci/hotplug/acpiphp_glue.c |    4 +-
 drivers/pci/hotplug/pciehp_hpc.c   |    5 +-
 drivers/pci/iov.c                  |   31 ++---
 drivers/pci/pci-driver.c           |    6 +-
 drivers/pci/pci.c                  |   28 +++--
 drivers/pci/probe.c                |  114 ++++++++++++++++-
 drivers/pci/quirks.c               |  256 +++++++++++++++++++++---------------
 drivers/pci/remove.c               |    5 +-
 drivers/pci/setup-bus.c            |   28 ++---
 drivers/pci/setup-res.c            |   38 ++++--
 drivers/pci/xen-pcifront.c         |    4 +-
 include/linux/pci.h                |   79 +++++++++++-
 15 files changed, 446 insertions(+), 219 deletions(-)

-- 
1.7.7


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

end of thread, other threads:[~2012-03-19  5:50 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-19  5:48 [PATCH -v2 00/26] PCI, x86: Add for_each_res and addon resource support Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 01/26] PCI: Add pci_dev_resource_n() Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 02/26] PCI: Add for_each_resource helpers to make resource loop easier Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 03/26] PCI: Add pci_dev_resource_idx() Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 04/26] PCI: Update pci_resource_start to use pci_dev_resource_n() Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 05/26] x86, PCI: Use for_each_res with pci_allocate_bridge_resources Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 06/26] x86, PCI: Use for_each_res with pci_allocate_dev_resources Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 07/26] PCI: Use for_each_res with IOV releated funcs Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 08/26] PCI, acpiphp: Use for_each_pci_dev_resource helper Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 09/26] PCI, pciehp: " Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 10/26] PCI: Use for_each_pci_dev_resource pci_enable_dev Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 11/26] PCI: Use for_each_pci_dev_resource pci_reassigndev Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 12/26] PCI: Use for_each_res with pci bar reassign funcs Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 13/26] PCI: Use for_each_res pci_assign_resource Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 14/26] PCI: Use for_each_res with noassign_bars Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 15/26] PCI: Use for_each_res pci bases pci_dev_driver() Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 16/26] PCI: Use for_each_res pci release release Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 17/26] PCI: Use for_each_res pci bases reading Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 18/26] PCI: Use for_each_res with mrs Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 19/26] PCI: Use for_each_res with xen pci Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 20/26] PCI: Add addon_resource support for pci_dev Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 21/26] PCI: Add helpers for add addon_resource Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 22/26] PCI: Update pci_resource_bar() to support addon_resource Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 23/26] PCI: Make assign/update resource to support addon_res Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 24/26] PCI: Make piix4 quirk to use addon_resource support Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 25/26] PCI: Make quirk_io_region " Yinghai Lu
2012-03-19  5:48 ` [PATCH -v2 26/26] PCI: Use addon_fixed_resource with ati fixed resource Yinghai Lu

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).