mbox

[GIT,PULL] PCI updates for v3.9

Message ID CAErSpo5w=uJ2sXzXhyS0AyPFTbxPM44djdEMb6bR2SQu1O+u2A@mail.gmail.com
State Not Applicable
Headers show

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git

Message

Bjorn Helgaas April 6, 2013, 1:31 a.m. UTC
Hi Linus,

Here are some fixes for v3.9.  They include fixes for an ASPM problem
that affects pre-1.1 PCIe devices, a kexec problem, the platform ROM
image problem, a couple hotplug issues related to PM, and a fix for
PCI-EISA bridges that have been broken for a long time.

Bjorn


The following changes since commit 8bb9660418e05bb1845ac1a2428444d78e322cc7:

  Linux 3.9-rc4 (2013-03-23 16:52:44 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
tags/pci-v3.9-fixes-1

for you to fetch changes up to de7d5f729c72638f41d7c17487bccb1c570ff144:

  PCI/PM: Disable runtime PM of PCIe ports (2013-04-03 15:54:59 -0600)

----------------------------------------------------------------
PCI updates for v3.9:

  ASPM
      Revert "PCI/ACPI: Request _OSC control before scanning PCI root bus"
  kexec
      PCI: Don't try to disable Bus Master on disconnected PCI devices
  Platform ROM images
      PCI: Add PCI ROM helper for platform-provided ROM images
      nouveau: Attempt to use platform-provided ROM image
      radeon: Attempt to use platform-provided ROM image
  Hotplug
      PCI/ACPI: Always resume devices on ACPI wakeup notifications
      PCI/PM: Disable runtime PM of PCIe ports
  EISA
      EISA/PCI: Fix bus res reference
      EISA/PCI: Init EISA early, before PNP

----------------------------------------------------------------
Bjorn Helgaas (3):
      Merge branch 'pci/mjg-rom' into for-linus
      Merge branch 'pci/yinghai-eisa' into for-linus
      Revert "PCI/ACPI: Request _OSC control before scanning PCI root bus"

Konstantin Khlebnikov (1):
      PCI: Don't try to disable Bus Master on disconnected PCI devices

Matthew Garrett (3):
      PCI: Add PCI ROM helper for platform-provided ROM images
      nouveau: Attempt to use platform-provided ROM image
      radeon: Attempt to use platform-provided ROM image

Rafael J. Wysocki (2):
      PCI/ACPI: Always resume devices on ACPI wakeup notifications
      PCI/PM: Disable runtime PM of PCIe ports

Yinghai Lu (2):
      EISA/PCI: Fix bus res reference
      EISA/PCI: Init EISA early, before PNP

 drivers/acpi/pci_root.c                         | 76 ++++++++++++-------------
 drivers/eisa/pci_eisa.c                         | 67 +++++++++++++++-------
 drivers/gpu/drm/nouveau/core/subdev/bios/base.c | 17 ++++++
 drivers/gpu/drm/radeon/radeon_bios.c            | 26 +++++++++
 drivers/pci/pci-acpi.c                          | 15 ++---
 drivers/pci/pci-driver.c                        |  5 +-
 drivers/pci/pcie/portdrv_pci.c                  | 13 -----
 drivers/pci/rom.c                               | 67 ++++++++++------------
 include/linux/pci.h                             |  1 +
 9 files changed, 169 insertions(+), 118 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-pci" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Bjorn Helgaas April 6, 2013, 1:59 a.m. UTC | #1
[+cc linux-kernel]

On Fri, Apr 5, 2013 at 7:31 PM, Bjorn Helgaas <bhelgaas@google.com> wrote:
> Hi Linus,
>
> Here are some fixes for v3.9.  They include fixes for an ASPM problem
> that affects pre-1.1 PCIe devices, a kexec problem, the platform ROM
> image problem, a couple hotplug issues related to PM, and a fix for
> PCI-EISA bridges that have been broken for a long time.
>
> Bjorn
>
>
> The following changes since commit 8bb9660418e05bb1845ac1a2428444d78e322cc7:
>
>   Linux 3.9-rc4 (2013-03-23 16:52:44 -0700)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
> tags/pci-v3.9-fixes-1
>
> for you to fetch changes up to de7d5f729c72638f41d7c17487bccb1c570ff144:
>
>   PCI/PM: Disable runtime PM of PCIe ports (2013-04-03 15:54:59 -0600)
>
> ----------------------------------------------------------------
> PCI updates for v3.9:
>
>   ASPM
>       Revert "PCI/ACPI: Request _OSC control before scanning PCI root bus"
>   kexec
>       PCI: Don't try to disable Bus Master on disconnected PCI devices
>   Platform ROM images
>       PCI: Add PCI ROM helper for platform-provided ROM images
>       nouveau: Attempt to use platform-provided ROM image
>       radeon: Attempt to use platform-provided ROM image
>   Hotplug
>       PCI/ACPI: Always resume devices on ACPI wakeup notifications
>       PCI/PM: Disable runtime PM of PCIe ports
>   EISA
>       EISA/PCI: Fix bus res reference
>       EISA/PCI: Init EISA early, before PNP
>
> ----------------------------------------------------------------
> Bjorn Helgaas (3):
>       Merge branch 'pci/mjg-rom' into for-linus
>       Merge branch 'pci/yinghai-eisa' into for-linus
>       Revert "PCI/ACPI: Request _OSC control before scanning PCI root bus"
>
> Konstantin Khlebnikov (1):
>       PCI: Don't try to disable Bus Master on disconnected PCI devices
>
> Matthew Garrett (3):
>       PCI: Add PCI ROM helper for platform-provided ROM images
>       nouveau: Attempt to use platform-provided ROM image
>       radeon: Attempt to use platform-provided ROM image
>
> Rafael J. Wysocki (2):
>       PCI/ACPI: Always resume devices on ACPI wakeup notifications
>       PCI/PM: Disable runtime PM of PCIe ports
>
> Yinghai Lu (2):
>       EISA/PCI: Fix bus res reference
>       EISA/PCI: Init EISA early, before PNP
>
>  drivers/acpi/pci_root.c                         | 76 ++++++++++++-------------
>  drivers/eisa/pci_eisa.c                         | 67 +++++++++++++++-------
>  drivers/gpu/drm/nouveau/core/subdev/bios/base.c | 17 ++++++
>  drivers/gpu/drm/radeon/radeon_bios.c            | 26 +++++++++
>  drivers/pci/pci-acpi.c                          | 15 ++---
>  drivers/pci/pci-driver.c                        |  5 +-
>  drivers/pci/pcie/portdrv_pci.c                  | 13 -----
>  drivers/pci/rom.c                               | 67 ++++++++++------------
>  include/linux/pci.h                             |  1 +
>  9 files changed, 169 insertions(+), 118 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-pci" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html