Skip to content

Commit dde7e21

Browse files
jhnikulaAndi Shyti
authored andcommitted
i2c: i801: Add support for Intel Nova Lake-S
Add SMBus PCI IDs on Intel Nova Lake-S. Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.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/20251124132816.470599-1-heikki.krogerus@linux.intel.com
1 parent d9b85d2 commit dde7e21

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
@@ -52,6 +52,7 @@ Supported adapters:
5252
* Intel Panther Lake (SOC)
5353
* Intel Wildcat Lake (SOC)
5454
* Intel Diamond Rapids (SOC)
55+
* Intel Nova Lake (PCH)
5556

5657
Datasheets: Publicly available at the Intel website
5758

drivers/i2c/busses/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ config I2C_I801
167167
Panther Lake (SOC)
168168
Wildcat Lake (SOC)
169169
Diamond Rapids (SOC)
170+
Nova Lake (PCH)
170171

171172
This driver can also be built as a module. If so, the module
172173
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
@@ -85,6 +85,7 @@
8585
* Panther Lake-P (SOC) 0xe422 32 hard yes yes yes
8686
* Wildcat Lake-U (SOC) 0x4d22 32 hard yes yes yes
8787
* Diamond Rapids (SOC) 0x5827 32 hard yes yes yes
88+
* Nova Lake-S (PCH) 0x6e23 32 hard yes yes yes
8889
*
8990
* Features supported by this driver:
9091
* Software PEC no
@@ -245,6 +246,7 @@
245246
#define PCI_DEVICE_ID_INTEL_BIRCH_STREAM_SMBUS 0x5796
246247
#define PCI_DEVICE_ID_INTEL_DIAMOND_RAPIDS_SMBUS 0x5827
247248
#define PCI_DEVICE_ID_INTEL_BROXTON_SMBUS 0x5ad4
249+
#define PCI_DEVICE_ID_INTEL_NOVA_LAKE_S_SMBUS 0x6e23
248250
#define PCI_DEVICE_ID_INTEL_ARROW_LAKE_H_SMBUS 0x7722
249251
#define PCI_DEVICE_ID_INTEL_RAPTOR_LAKE_S_SMBUS 0x7a23
250252
#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_S_SMBUS 0x7aa3
@@ -1061,6 +1063,7 @@ static const struct pci_device_id i801_ids[] = {
10611063
{ PCI_DEVICE_DATA(INTEL, PANTHER_LAKE_H_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10621064
{ PCI_DEVICE_DATA(INTEL, PANTHER_LAKE_P_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10631065
{ PCI_DEVICE_DATA(INTEL, WILDCAT_LAKE_U_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
1066+
{ PCI_DEVICE_DATA(INTEL, NOVA_LAKE_S_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10641067
{ 0, }
10651068
};
10661069

0 commit comments

Comments
 (0)