Skip to content

Commit 90f690a

Browse files
arthurzeng19Andi Shyti
authored andcommitted
i2c: i801: Add support for Intel Diamond Rapids
Add SMBus PCI ID on Intel Diamond Rapids. Signed-off-by: Zeng Guang <guang.zeng@intel.com> Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Signed-off-by: Andi Shyti <andi.shyti@kernel.org> Link: https://lore.kernel.org/r/20251021073522.3458383-1-heikki.krogerus@linux.intel.com
1 parent b4cc818 commit 90f690a

3 files changed

Lines changed: 4 additions & 0 deletions

File tree

Documentation/i2c/busses/i2c-i801.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ Supported adapters:
5151
* Intel Arrow Lake (SOC)
5252
* Intel Panther Lake (SOC)
5353
* Intel Wildcat Lake (SOC)
54+
* Intel Diamond Rapids (SOC)
5455

5556
Datasheets: Publicly available at the Intel website
5657

drivers/i2c/busses/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ config I2C_I801
166166
Arrow Lake (SOC)
167167
Panther Lake (SOC)
168168
Wildcat Lake (SOC)
169+
Diamond Rapids (SOC)
169170

170171
This driver can also be built as a module. If so, the module
171172
will be called i2c-i801.

drivers/i2c/busses/i2c-i801.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@
242242
#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_P_SMBUS 0x51a3
243243
#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_M_SMBUS 0x54a3
244244
#define PCI_DEVICE_ID_INTEL_BIRCH_STREAM_SMBUS 0x5796
245+
#define PCI_DEVICE_ID_INTEL_DIAMOND_RAPIDS_SMBUS 0x5827
245246
#define PCI_DEVICE_ID_INTEL_BROXTON_SMBUS 0x5ad4
246247
#define PCI_DEVICE_ID_INTEL_ARROW_LAKE_H_SMBUS 0x7722
247248
#define PCI_DEVICE_ID_INTEL_RAPTOR_LAKE_S_SMBUS 0x7a23
@@ -1054,6 +1055,7 @@ static const struct pci_device_id i801_ids[] = {
10541055
{ PCI_DEVICE_DATA(INTEL, METEOR_LAKE_SOC_S_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10551056
{ PCI_DEVICE_DATA(INTEL, METEOR_LAKE_PCH_S_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10561057
{ PCI_DEVICE_DATA(INTEL, BIRCH_STREAM_SMBUS, FEATURES_ICH5) },
1058+
{ PCI_DEVICE_DATA(INTEL, DIAMOND_RAPIDS_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10571059
{ PCI_DEVICE_DATA(INTEL, ARROW_LAKE_H_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10581060
{ PCI_DEVICE_DATA(INTEL, PANTHER_LAKE_H_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10591061
{ PCI_DEVICE_DATA(INTEL, PANTHER_LAKE_P_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },

0 commit comments

Comments
 (0)