[merged] pci-populate-subsystem-vendor-and-device-ids-for-pci-bridges.patch removed from -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     pci: populate subsystem vendor and device IDs for PCI-Bridges
has been removed from the -mm tree.  Its filename was
     pci-populate-subsystem-vendor-and-device-ids-for-pci-bridges.patch

This patch was dropped because it was merged into mainline or a subsystem tree

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: pci: populate subsystem vendor and device IDs for PCI-Bridges
From: Gabe Black <gabe.black@xxxxxx>

Populate the subsystem vendor and subsytem device IDs for PCI-PCI bridges
that implement the PCI Subsystem Vendor ID capability.  Previously bridges
left subsystem vendor IDs unpopulated.

Signed-off-by: Gabe Black <gabe.black@xxxxxx>
Cc: Jesse Barnes <jbarnes@xxxxxxxxxxxxxxxx>
Cc: <shawn.bohrer@xxxxxx>
Cc: <mike.hoogendyk@xxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 drivers/pci/probe.c      |    6 ++++++
 include/linux/pci_regs.h |    5 +++++
 2 files changed, 11 insertions(+)

diff -puN drivers/pci/probe.c~pci-populate-subsystem-vendor-and-device-ids-for-pci-bridges drivers/pci/probe.c
--- a/drivers/pci/probe.c~pci-populate-subsystem-vendor-and-device-ids-for-pci-bridges
+++ a/drivers/pci/probe.c
@@ -731,6 +731,7 @@ int pci_setup_device(struct pci_dev *dev
 	u32 class;
 	u8 hdr_type;
 	struct pci_slot *slot;
+	int pos = 0;
 
 	if (pci_read_config_byte(dev, PCI_HEADER_TYPE, &hdr_type))
 		return -EIO;
@@ -822,6 +823,11 @@ int pci_setup_device(struct pci_dev *dev
 		dev->transparent = ((dev->class & 0xff) == 1);
 		pci_read_bases(dev, 2, PCI_ROM_ADDRESS1);
 		set_pcie_hotplug_bridge(dev);
+		pos = pci_find_capability(dev, PCI_CAP_ID_SSVID);
+		if (pos) {
+			pci_read_config_word(dev, pos + PCI_SSVID_VENDOR_ID, &dev->subsystem_vendor);
+			pci_read_config_word(dev, pos + PCI_SSVID_DEVICE_ID, &dev->subsystem_device);
+		}
 		break;
 
 	case PCI_HEADER_TYPE_CARDBUS:		    /* CardBus bridge header */
diff -puN include/linux/pci_regs.h~pci-populate-subsystem-vendor-and-device-ids-for-pci-bridges include/linux/pci_regs.h
--- a/include/linux/pci_regs.h~pci-populate-subsystem-vendor-and-device-ids-for-pci-bridges
+++ a/include/linux/pci_regs.h
@@ -365,6 +365,11 @@
 #define  PCI_X_STATUS_266MHZ	0x40000000	/* 266 MHz capable */
 #define  PCI_X_STATUS_533MHZ	0x80000000	/* 533 MHz capable */
 
+/* PCI Bridge Subsystem ID registers */
+
+#define PCI_SSVID_VENDOR_ID     4	/* PCI-Bridge subsystem vendor id register */
+#define PCI_SSVID_DEVICE_ID     6	/* PCI-Bridge subsystem device id register */
+
 /* PCI Express capability registers */
 
 #define PCI_EXP_FLAGS		2	/* Capabilities register */
_

Patches currently in -mm which might be from gabe.black@xxxxxx are

linux-next.patch

--
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux