Skip to content

Commit bf493c1

Browse files
committed
i2c: i801: Add support for Intel Panther Lake
JIRA: https://issues.redhat.com/browse/RHEL-47426 commit bd492b5 Author: Jarkko Nikula <jarkko.nikula@linux.intel.com> Date: Mon Sep 23 16:27:19 2024 +0300 i2c: i801: Add support for Intel Panther Lake Add SMBus PCI IDs on Intel Panther Lake-P and -U. Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com> Signed-off-by: Andi Shyti <andi.shyti@kernel.org> Signed-off-by: David Arcari <darcari@redhat.com>
1 parent 42427e1 commit bf493c1

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

Documentation/i2c/busses/i2c-i801.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Supported adapters:
4949
* Intel Meteor Lake (SOC and PCH)
5050
* Intel Birch Stream (SOC)
5151
* Intel Arrow Lake (SOC)
52+
* Intel Panther Lake (SOC)
5253

5354
Datasheets: Publicly available at the Intel website
5455

drivers/i2c/busses/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ config I2C_I801
160160
Meteor Lake (SOC and PCH)
161161
Birch Stream (SOC)
162162
Arrow Lake (SOC)
163+
Panther Lake (SOC)
163164

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

drivers/i2c/busses/i2c-i801.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@
8181
* Meteor Lake PCH-S (PCH) 0x7f23 32 hard yes yes yes
8282
* Birch Stream (SOC) 0x5796 32 hard yes yes yes
8383
* Arrow Lake-H (SOC) 0x7722 32 hard yes yes yes
84+
* Panther Lake-H (SOC) 0xe322 32 hard yes yes yes
85+
* Panther Lake-P (SOC) 0xe422 32 hard yes yes yes
8486
*
8587
* Features supported by this driver:
8688
* Software PEC no
@@ -261,6 +263,8 @@
261263
#define PCI_DEVICE_ID_INTEL_CANNONLAKE_H_SMBUS 0xa323
262264
#define PCI_DEVICE_ID_INTEL_COMETLAKE_V_SMBUS 0xa3a3
263265
#define PCI_DEVICE_ID_INTEL_METEOR_LAKE_SOC_S_SMBUS 0xae22
266+
#define PCI_DEVICE_ID_INTEL_PANTHER_LAKE_H_SMBUS 0xe322
267+
#define PCI_DEVICE_ID_INTEL_PANTHER_LAKE_P_SMBUS 0xe422
264268

265269
struct i801_mux_config {
266270
char *gpio_chip;
@@ -1056,6 +1060,8 @@ static const struct pci_device_id i801_ids[] = {
10561060
{ PCI_DEVICE_DATA(INTEL, METEOR_LAKE_PCH_S_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10571061
{ PCI_DEVICE_DATA(INTEL, BIRCH_STREAM_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10581062
{ PCI_DEVICE_DATA(INTEL, ARROW_LAKE_H_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
1063+
{ PCI_DEVICE_DATA(INTEL, PANTHER_LAKE_H_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
1064+
{ PCI_DEVICE_DATA(INTEL, PANTHER_LAKE_P_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10591065
{ 0, }
10601066
};
10611067

0 commit comments

Comments
 (0)