Skip to content

Commit f46efbc

Browse files
jhnikulawsakernel
authored andcommitted
i2c: i801: Add support for Intel Tiger Lake PCH-H
Add SMBus PCI ID on Intel Tiger Lake PCH-H. Signed-off-by: Jarkko Nikula <[email protected]> Reviewed-by: Jean Delvare <[email protected]> Signed-off-by: Wolfram Sang <[email protected]>
1 parent 12745b0 commit f46efbc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

drivers/i2c/busses/i2c-i801.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
* Comet Lake-H (PCH) 0x06a3 32 hard yes yes yes
6969
* Elkhart Lake (PCH) 0x4b23 32 hard yes yes yes
7070
* Tiger Lake-LP (PCH) 0xa0a3 32 hard yes yes yes
71+
* Tiger Lake-H (PCH) 0x43a3 32 hard yes yes yes
7172
* Jasper Lake (SOC) 0x4da3 32 hard yes yes yes
7273
* Comet Lake-V (PCH) 0xa3a3 32 hard yes yes yes
7374
*
@@ -223,6 +224,7 @@
223224
#define PCI_DEVICE_ID_INTEL_GEMINILAKE_SMBUS 0x31d4
224225
#define PCI_DEVICE_ID_INTEL_ICELAKE_LP_SMBUS 0x34a3
225226
#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
227+
#define PCI_DEVICE_ID_INTEL_TIGERLAKE_H_SMBUS 0x43a3
226228
#define PCI_DEVICE_ID_INTEL_ELKHART_LAKE_SMBUS 0x4b23
227229
#define PCI_DEVICE_ID_INTEL_JASPER_LAKE_SMBUS 0x4da3
228230
#define PCI_DEVICE_ID_INTEL_BROXTON_SMBUS 0x5ad4
@@ -1077,6 +1079,7 @@ static const struct pci_device_id i801_ids[] = {
10771079
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_COMETLAKE_V_SMBUS) },
10781080
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ELKHART_LAKE_SMBUS) },
10791081
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TIGERLAKE_LP_SMBUS) },
1082+
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_TIGERLAKE_H_SMBUS) },
10801083
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_JASPER_LAKE_SMBUS) },
10811084
{ 0, }
10821085
};
@@ -1751,6 +1754,7 @@ static int i801_probe(struct pci_dev *dev, const struct pci_device_id *id)
17511754
case PCI_DEVICE_ID_INTEL_COMETLAKE_H_SMBUS:
17521755
case PCI_DEVICE_ID_INTEL_ELKHART_LAKE_SMBUS:
17531756
case PCI_DEVICE_ID_INTEL_TIGERLAKE_LP_SMBUS:
1757+
case PCI_DEVICE_ID_INTEL_TIGERLAKE_H_SMBUS:
17541758
case PCI_DEVICE_ID_INTEL_JASPER_LAKE_SMBUS:
17551759
case PCI_DEVICE_ID_INTEL_EBG_SMBUS:
17561760
priv->features |= FEATURE_BLOCK_PROC;

0 commit comments

Comments
 (0)