i2c: i801: Add support for Intel Arrow Lake-H
authorJarkko Nikula <jarkko.nikula@linux.intel.com>
Mon, 10 Jun 2024 10:18:01 +0000 (13:18 +0300)
committerAndi Shyti <andi.shyti@kernel.org>
Mon, 8 Jul 2024 22:46:05 +0000 (00:46 +0200)
Add SMBus PCI ID on Intel Arrow Lake-H.

Signed-off-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
Documentation/i2c/busses/i2c-i801.rst
drivers/i2c/busses/Kconfig
drivers/i2c/busses/i2c-i801.c

index 10eced6c2e4625f78e89cfc52bbb1ead7f417660..c840b597912c8778c7a1ae6845915a2ee8c0f3d1 100644 (file)
@@ -48,6 +48,7 @@ Supported adapters:
   * Intel Raptor Lake (PCH)
   * Intel Meteor Lake (SOC and PCH)
   * Intel Birch Stream (SOC)
+  * Intel Arrow Lake (SOC)
 
    Datasheets: Publicly available at the Intel website
 
index fe6e8a1bb6072115991e808e0d5327b55933d23f..85b57d2ec9983917494ede357ef5d0472138cb0a 100644 (file)
@@ -159,6 +159,7 @@ config I2C_I801
            Raptor Lake (PCH)
            Meteor Lake (SOC and PCH)
            Birch Stream (SOC)
+           Arrow Lake (SOC)
 
          This driver can also be built as a module.  If so, the module
          will be called i2c-i801.
index d2d2a6dbe29f22d706e369ff84efef6a6663df33..44e3e9bae5f197ad089c064acf2dd5efd819c8c2 100644 (file)
@@ -80,6 +80,7 @@
  * Meteor Lake SoC-S (SOC)     0xae22  32      hard    yes     yes     yes
  * Meteor Lake PCH-S (PCH)     0x7f23  32      hard    yes     yes     yes
  * Birch Stream (SOC)          0x5796  32      hard    yes     yes     yes
+ * Arrow Lake-H (SOC)          0x7722  32      hard    yes     yes     yes
  *
  * Features supported by this driver:
  * Software PEC                                no
 #define PCI_DEVICE_ID_INTEL_ALDER_LAKE_M_SMBUS         0x54a3
 #define PCI_DEVICE_ID_INTEL_BIRCH_STREAM_SMBUS         0x5796
 #define PCI_DEVICE_ID_INTEL_BROXTON_SMBUS              0x5ad4
+#define PCI_DEVICE_ID_INTEL_ARROW_LAKE_H_SMBUS         0x7722
 #define PCI_DEVICE_ID_INTEL_RAPTOR_LAKE_S_SMBUS                0x7a23
 #define PCI_DEVICE_ID_INTEL_ALDER_LAKE_S_SMBUS         0x7aa3
 #define PCI_DEVICE_ID_INTEL_METEOR_LAKE_P_SMBUS                0x7e22
@@ -1052,6 +1054,7 @@ static const struct pci_device_id i801_ids[] = {
        { PCI_DEVICE_DATA(INTEL, METEOR_LAKE_SOC_S_SMBUS,       FEATURES_ICH5 | FEATURE_TCO_CNL) },
        { PCI_DEVICE_DATA(INTEL, METEOR_LAKE_PCH_S_SMBUS,       FEATURES_ICH5 | FEATURE_TCO_CNL) },
        { PCI_DEVICE_DATA(INTEL, BIRCH_STREAM_SMBUS,            FEATURES_ICH5 | FEATURE_TCO_CNL) },
+       { PCI_DEVICE_DATA(INTEL, ARROW_LAKE_H_SMBUS,            FEATURES_ICH5 | FEATURE_TCO_CNL) },
        { 0, }
 };