Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1337725 > unrolled thread

[PATCH 2/2] Create sysfs entries for PCI VPDI and VPDR tags

Started byJordan Hargrave <Jordan_Hargrave@dell.com>
First post2016-02-18 21:40 +0100
Last post2016-02-18 21:40 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 2/2] Create sysfs entries for PCI VPDI and VPDR tags Jordan Hargrave <Jordan_Hargrave@dell.com> - 2016-02-18 21:40 +0100

#1337725 — [PATCH 2/2] Create sysfs entries for PCI VPDI and VPDR tags

FromJordan Hargrave <Jordan_Hargrave@dell.com>
Date2016-02-18 21:40 +0100
Subject[PATCH 2/2] Create sysfs entries for PCI VPDI and VPDR tags
Message-ID<r3DwK-2Fr-9@gated-at.bofh.it>
The VPD-R is a readonly area of the PCI Vital Product Data region.
There are some standard keywords for serial number, manufacturer,
and vendor-specific values.  Dell Servers use a vendor-specific
tag to store number of ports and port mapping of partitioned NICs.

info = VPD-Info string
PN = Part Number
SN = Serial Number
MN = Manufacturer ID
Vx = Vendor-specific (x=0..9 A..Z)

This creates a sysfs subdirectory in the pci device: vpdattr with
'info', 'EC', 'SN', 'V0', etc. files containing the tag values.

Added pci.h patch

Signed-off-by: Jordan Hargrave <Jordan_Hargrave@dell.com>
---
 include/linux/pci.h     |   3 +
 1 files changed, 3 insertions(+)

diff --git a/include/linux/pci.h b/include/linux/pci.h
index 8135a2f..c1313b1 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -372,6 +372,9 @@ struct pci_dev {
 	const struct attribute_group **msi_irq_groups;
 #endif
 	struct pci_vpd *vpd;
+	int vpdr_len;
+	u8 *vpdr_data;
+	char *vpdi_data;
 #ifdef CONFIG_PCI_ATS
 	union {
 		struct pci_sriov *sriov;	/* SR-IOV capability related */
-- 
2.5.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web