summaryrefslogtreecommitdiffstats
path: root/src/soc
diff options
context:
space:
mode:
authorJeff Daly <jeffd@silicom-usa.com>2022-01-06 16:32:11 -0500
committerFelix Held <felix-coreboot@felixheld.de>2022-01-17 15:50:52 +0000
commit2a81cab066e72f18fa269c505b417036a1091ea4 (patch)
treec85ac704c3ca4f89020bd7e504b4e211df6aea8c /src/soc
parent805956bce30090ea8c047f3a5c102f38c47388ee (diff)
downloadcoreboot-2a81cab066e72f18fa269c505b417036a1091ea4.tar.gz
coreboot-2a81cab066e72f18fa269c505b417036a1091ea4.tar.bz2
coreboot-2a81cab066e72f18fa269c505b417036a1091ea4.zip
pci_ids.h: Make Denverton IDs consistent with other Intel SoCs
Align Denverton PCI ID define names with other Intel SoCs. Also, update the names in SoC code accordingly. Signed-off-by: Jeff Daly <jeffd@silicom-usa.com> Change-Id: Id4b4d971ef8f4b3ec5920209d345edbbcfae4dec Reviewed-on: https://review.coreboot.org/c/coreboot/+/60879 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc')
-rw-r--r--src/soc/intel/common/block/smbus/smbus.c2
-rw-r--r--src/soc/intel/denverton_ns/csme_ie_kt.c4
-rw-r--r--src/soc/intel/denverton_ns/lpc.c2
-rw-r--r--src/soc/intel/denverton_ns/npk.c2
-rw-r--r--src/soc/intel/denverton_ns/pmc.c2
-rw-r--r--src/soc/intel/denverton_ns/sata.c4
-rw-r--r--src/soc/intel/denverton_ns/systemagent.c4
-rw-r--r--src/soc/intel/denverton_ns/uart.c2
-rw-r--r--src/soc/intel/denverton_ns/xhci.c2
9 files changed, 12 insertions, 12 deletions
diff --git a/src/soc/intel/common/block/smbus/smbus.c b/src/soc/intel/common/block/smbus/smbus.c
index d0eb9ce158f2..6f8656b13e6f 100644
--- a/src/soc/intel/common/block/smbus/smbus.c
+++ b/src/soc/intel/common/block/smbus/smbus.c
@@ -91,7 +91,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_ADP_P_SMBUS,
PCI_DEVICE_ID_INTEL_ADP_S_SMBUS,
PCI_DEVICE_ID_INTEL_ADP_M_SMBUS,
- PCI_DEVICE_ID_INTEL_DENVERTON_SMBUS_LEGACY,
+ PCI_DEVICE_ID_INTEL_DNV_SMBUS_LEGACY,
0
};
diff --git a/src/soc/intel/denverton_ns/csme_ie_kt.c b/src/soc/intel/denverton_ns/csme_ie_kt.c
index c10477918249..ce00627ba24d 100644
--- a/src/soc/intel/denverton_ns/csme_ie_kt.c
+++ b/src/soc/intel/denverton_ns/csme_ie_kt.c
@@ -59,8 +59,8 @@ static struct device_operations csme_ie_kt_ops = {
};
static const unsigned short pci_device_ids[] = {
- PCI_DEVICE_ID_INTEL_DENVERTON_ME_KT,
- PCI_DEVICE_ID_INTEL_DENVERTON_IE_KT,
+ PCI_DEVICE_ID_INTEL_DNV_ME_KT,
+ PCI_DEVICE_ID_INTEL_DNV_IE_KT,
0
};
diff --git a/src/soc/intel/denverton_ns/lpc.c b/src/soc/intel/denverton_ns/lpc.c
index 0fcaeb19fdd5..50bf49de770a 100644
--- a/src/soc/intel/denverton_ns/lpc.c
+++ b/src/soc/intel/denverton_ns/lpc.c
@@ -535,7 +535,7 @@ static struct device_operations device_ops = {
static const struct pci_driver lpc_driver __pci_driver = {
.ops = &device_ops,
.vendor = PCI_VENDOR_ID_INTEL,
- .device = PCI_DEVICE_ID_INTEL_DENVERTON_LPC,
+ .device = PCI_DEVICE_ID_INTEL_DNV_LPC,
};
static void finalize_chipset(void *unused)
diff --git a/src/soc/intel/denverton_ns/npk.c b/src/soc/intel/denverton_ns/npk.c
index 8fc44c096fff..ea4816ef0509 100644
--- a/src/soc/intel/denverton_ns/npk.c
+++ b/src/soc/intel/denverton_ns/npk.c
@@ -31,5 +31,5 @@ static struct device_operations pmc_ops = {
static const struct pci_driver pch_pmc __pci_driver = {
.ops = &pmc_ops,
.vendor = PCI_VENDOR_ID_INTEL,
- .device = PCI_DEVICE_ID_INTEL_DENVERTON_TRACEHUB,
+ .device = PCI_DEVICE_ID_INTEL_DNV_TRACEHUB,
};
diff --git a/src/soc/intel/denverton_ns/pmc.c b/src/soc/intel/denverton_ns/pmc.c
index 2c208d2aa5b7..a01005e8aa7a 100644
--- a/src/soc/intel/denverton_ns/pmc.c
+++ b/src/soc/intel/denverton_ns/pmc.c
@@ -106,5 +106,5 @@ static struct device_operations pmc_ops = {
static const struct pci_driver pch_pmc __pci_driver = {
.ops = &pmc_ops,
.vendor = PCI_VENDOR_ID_INTEL,
- .device = PCI_DEVICE_ID_INTEL_DENVERTON_PMC,
+ .device = PCI_DEVICE_ID_INTEL_DNV_PMC,
};
diff --git a/src/soc/intel/denverton_ns/sata.c b/src/soc/intel/denverton_ns/sata.c
index d6311171fb51..1f551f833061 100644
--- a/src/soc/intel/denverton_ns/sata.c
+++ b/src/soc/intel/denverton_ns/sata.c
@@ -56,8 +56,8 @@ static struct device_operations sata_ops = {
};
static const unsigned short pci_device_ids[] = {
- PCI_DEVICE_ID_INTEL_DENVERTON_SATA_AHCI_1,
- PCI_DEVICE_ID_INTEL_DENVERTON_SATA_AHCI_2,
+ PCI_DEVICE_ID_INTEL_DNV_SATA_AHCI_1,
+ PCI_DEVICE_ID_INTEL_DNV_SATA_AHCI_2,
0
};
diff --git a/src/soc/intel/denverton_ns/systemagent.c b/src/soc/intel/denverton_ns/systemagent.c
index 114ee48d7635..48b48610a3b1 100644
--- a/src/soc/intel/denverton_ns/systemagent.c
+++ b/src/soc/intel/denverton_ns/systemagent.c
@@ -333,8 +333,8 @@ static struct device_operations systemagent_ops = {
/* IDs for System Agent device of Intel Denverton SoC */
static const unsigned short systemagent_ids[] = {
- PCI_DEVICE_ID_INTEL_DENVERTON_SA,
- PCI_DEVICE_ID_INTEL_DENVERTONAD_SA,
+ PCI_DEVICE_ID_INTEL_DNV_SA,
+ PCI_DEVICE_ID_INTEL_DNVAD_SA,
0
};
diff --git a/src/soc/intel/denverton_ns/uart.c b/src/soc/intel/denverton_ns/uart.c
index 9d72642fb4cd..f9aa64a0cf26 100644
--- a/src/soc/intel/denverton_ns/uart.c
+++ b/src/soc/intel/denverton_ns/uart.c
@@ -45,7 +45,7 @@ static struct device_operations uart_ops = {
static const struct pci_driver uart_driver __pci_driver = {
.ops = &uart_ops,
.vendor = PCI_VENDOR_ID_INTEL,
- .device = PCI_DEVICE_ID_INTEL_DENVERTON_HSUART
+ .device = PCI_DEVICE_ID_INTEL_DNV_HSUART
};
static void hide_hsuarts(void)
diff --git a/src/soc/intel/denverton_ns/xhci.c b/src/soc/intel/denverton_ns/xhci.c
index abdeb60dd6e5..5e1e4263a4e0 100644
--- a/src/soc/intel/denverton_ns/xhci.c
+++ b/src/soc/intel/denverton_ns/xhci.c
@@ -32,5 +32,5 @@ static struct device_operations usb_xhci_ops = {
static const struct pci_driver pch_usb_xhci __pci_driver = {
.ops = &usb_xhci_ops,
.vendor = PCI_VENDOR_ID_INTEL,
- .device = PCI_DEVICE_ID_INTEL_DENVERTON_XHCI,
+ .device = PCI_DEVICE_ID_INTEL_DNV_XHCI,
};