summaryrefslogtreecommitdiff
path: root/src/device
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2019-12-11 12:31:52 +0100
committerNico Huber <nico.h@gmx.de>2020-01-10 10:55:49 +0000
commit26d1be15ca09c8e2d1d12899607f63ed1ed67ff1 (patch)
tree8ab7e1a88f838fd7ac7f6792516341f3db077bbc /src/device
parentcd57d576eb07da11da1b7797e9ccd4db740361ea (diff)
downloadcoreboot-26d1be15ca09c8e2d1d12899607f63ed1ed67ff1.tar.xz
src/device: Update pci_class to PCI-SIG Specification
Update based on PCI-SIG's specification: "PCI code and ID assignment specification, Rev 1.11 (24 Jan 2019)" Change-Id: If51605719fd96e399aec2ae86caedda44f2648d4 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37656 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/device')
-rw-r--r--src/device/pci_class.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/device/pci_class.c b/src/device/pci_class.c
index e084c77bf1..fcb1966aee 100644
--- a/src/device/pci_class.c
+++ b/src/device/pci_class.c
@@ -42,6 +42,7 @@ static const PCI_SUBCLASS mass_storage[] = {
{ 0x06, "SATA controller" },
{ 0x07, "Serial Attached SCSI controller" },
{ 0x08, "Non-Volatile memory controller" },
+ { 0x09, "Universal Flash Storage controller" },
{ 0x80, "Mass storage controller" }
};
@@ -53,6 +54,8 @@ static const PCI_SUBCLASS network[] = {
{ 0x04, "ISDN controller" },
{ 0x05, "WorldFip controller" },
{ 0x06, "PICMG controller" },
+ { 0x07, "InfiniBand Controller" },
+ { 0x08, "Host fabric controller" },
{ 0x80, "Network controller" }
};
@@ -89,6 +92,7 @@ static const PCI_SUBCLASS bridge[] = {
{ 0x08, "RACEway bridge" },
{ 0x09, "Semi-transparent PCI-to-PCI bridge" },
{ 0x0a, "InfiniBand to PCI host bridge" },
+ { 0x0b, "Advanced Switching to PCI host bridge" },
{ 0x80, "Bridge" }
};
@@ -110,6 +114,7 @@ static const PCI_SUBCLASS generic[] = {
{ 0x04, "PCI Hot-plug controller" },
{ 0x05, "SD Host controller" },
{ 0x06, "IOMMU" },
+ { 0x07, "Root Complex Event Collector" },
{ 0x80, "System peripheral" }
};
@@ -134,7 +139,8 @@ static const PCI_SUBCLASS processor[] = {
{ 0x10, "Alpha" },
{ 0x20, "Power PC" },
{ 0x30, "MIPS" },
- { 0x40, "Co-processor" }
+ { 0x40, "Co-processor" },
+ { 0x80, "Processor" }
};
static const PCI_SUBCLASS serial_bus[] = {
@@ -147,7 +153,9 @@ static const PCI_SUBCLASS serial_bus[] = {
{ 0x06, "InfiniBand" },
{ 0x07, "IPMI SMIC interface" },
{ 0x08, "SERCOS interface" },
- { 0x09, "CANBUS" }
+ { 0x09, "CANBUS" },
+ { 0x0a, "MIPI I3C SM Host Controller Interface" },
+ { 0x80, "Serial Bus Controller" }
};
static const PCI_SUBCLASS wireless[] = {
@@ -158,6 +166,8 @@ static const PCI_SUBCLASS wireless[] = {
{ 0x12, "Broadband" },
{ 0x20, "802.1a controller" },
{ 0x21, "802.1b controller" },
+ { 0x40, "Cellular controller/modem" },
+ { 0x41, "Cellular controller/modem plus Ethernet (802.11)" },
{ 0x80, "Wireless controller" }
};