diff options
author | Angel Pons <th3fanbus@gmail.com> | 2021-04-27 10:20:04 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2021-04-28 14:13:20 +0000 |
commit | f530e363d106c2d5bc27aaba3ddbbdec18eeb3f6 (patch) | |
tree | 886c4d5c9da2ce755136a293db3296b23b02564b /src/soc/intel/common/block/i2c/i2c.c | |
parent | 0129393a6bac6974a2ca8222245ec5b6ca6af27d (diff) |
soc/intel: Rename 200-series PCH device IDs
The code name for these PCHs is Union Point, abbreviated as `UPT`. There
are some 300-series Union Point PCHs (H310C, B365, Z370) which are meant
to be paired with Coffee Lake CPUs instead of Skylake or Kaby Lake CPUs,
and referring to them as `KBP` (Kaby Point, I guess) would be confusing.
Tested with BUILD_TIMELESS=1, HP 280 G2 remains identical.
Change-Id: I1a49115ae7ac37e76ce8d440910fb59926f34fac
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/52700
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Timofey Komarov <happycorsair@yandex.ru>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/common/block/i2c/i2c.c')
-rw-r--r-- | src/soc/intel/common/block/i2c/i2c.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/intel/common/block/i2c/i2c.c b/src/soc/intel/common/block/i2c/i2c.c index b466de27b1..a82b1eb98e 100644 --- a/src/soc/intel/common/block/i2c/i2c.c +++ b/src/soc/intel/common/block/i2c/i2c.c @@ -176,10 +176,10 @@ static const unsigned short pci_device_ids[] = { PCI_DEVICE_ID_INTEL_SPT_I2C3, PCI_DEVICE_ID_INTEL_SPT_I2C4, PCI_DEVICE_ID_INTEL_SPT_I2C5, - PCI_DEVICE_ID_INTEL_KBP_H_I2C0, - PCI_DEVICE_ID_INTEL_KBP_H_I2C1, - PCI_DEVICE_ID_INTEL_KBP_H_I2C2, - PCI_DEVICE_ID_INTEL_KBP_H_I2C3, + PCI_DEVICE_ID_INTEL_UPT_H_I2C0, + PCI_DEVICE_ID_INTEL_UPT_H_I2C1, + PCI_DEVICE_ID_INTEL_UPT_H_I2C2, + PCI_DEVICE_ID_INTEL_UPT_H_I2C3, PCI_DEVICE_ID_INTEL_APL_I2C0, PCI_DEVICE_ID_INTEL_APL_I2C1, PCI_DEVICE_ID_INTEL_APL_I2C2, |