Skip to content

Commit cb3005d

Browse files
jhnikulaWolfram Sang
authored andcommitted
i2c: i801: Add support for Intel Wildcat Lake-U
Add SMBus IDs on Intel Wildcat Lake-U. Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
1 parent ec67ef0 commit cb3005d

3 files changed

Lines changed: 5 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
@@ -50,6 +50,7 @@ Supported adapters:
5050
* Intel Birch Stream (SOC)
5151
* Intel Arrow Lake (SOC)
5252
* Intel Panther Lake (SOC)
53+
* Intel Wildcat Lake (SOC)
5354

5455
Datasheets: Publicly available at the Intel website
5556

drivers/i2c/busses/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ config I2C_I801
165165
Birch Stream (SOC)
166166
Arrow Lake (SOC)
167167
Panther Lake (SOC)
168+
Wildcat Lake (SOC)
168169

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

drivers/i2c/busses/i2c-i801.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
8383
* Arrow Lake-H (SOC) 0x7722 32 hard yes yes yes
8484
* Panther Lake-H (SOC) 0xe322 32 hard yes yes yes
8585
* Panther Lake-P (SOC) 0xe422 32 hard yes yes yes
86+
* Wildcat Lake-U (SOC) 0x4d22 32 hard yes yes yes
8687
*
8788
* Features supported by this driver:
8889
* Software PEC no
@@ -236,6 +237,7 @@
236237
#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
237238
#define PCI_DEVICE_ID_INTEL_TIGERLAKE_H_SMBUS 0x43a3
238239
#define PCI_DEVICE_ID_INTEL_ELKHART_LAKE_SMBUS 0x4b23
240+
#define PCI_DEVICE_ID_INTEL_WILDCAT_LAKE_U_SMBUS 0x4d22
239241
#define PCI_DEVICE_ID_INTEL_JASPER_LAKE_SMBUS 0x4da3
240242
#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_P_SMBUS 0x51a3
241243
#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_M_SMBUS 0x54a3
@@ -1056,6 +1058,7 @@ static const struct pci_device_id i801_ids[] = {
10561058
{ PCI_DEVICE_DATA(INTEL, ARROW_LAKE_H_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10571059
{ PCI_DEVICE_DATA(INTEL, PANTHER_LAKE_H_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10581060
{ PCI_DEVICE_DATA(INTEL, PANTHER_LAKE_P_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
1061+
{ PCI_DEVICE_DATA(INTEL, WILDCAT_LAKE_U_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10591062
{ 0, }
10601063
};
10611064

0 commit comments

Comments
 (0)