Skip to content

Commit 4a8f1dd

Browse files
jamesdralstonJean Delvare
authored and
Jean Delvare
committed
i2c-i801: Add Device IDs for Intel Lynx Point-LP PCH
Add the SMBus Device IDs for the Intel Lynx Point-LP PCH. Signed-off-by: James Ralston <[email protected]> Signed-off-by: Jean Delvare <[email protected]>
1 parent 55d512e commit 4a8f1dd

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

Documentation/i2c/busses/i2c-i801

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Supported adapters:
2121
* Intel DH89xxCC (PCH)
2222
* Intel Panther Point (PCH)
2323
* Intel Lynx Point (PCH)
24+
* Intel Lynx Point-LP (PCH)
2425
Datasheets: Publicly available at the Intel website
2526

2627
On Intel Patsburg and later chipsets, both the normal host SMBus controller

drivers/i2c/busses/Kconfig

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ config I2C_I801
104104
DH89xxCC (PCH)
105105
Panther Point (PCH)
106106
Lynx Point (PCH)
107+
Lynx Point-LP (PCH)
107108

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

drivers/i2c/busses/i2c-i801.c

+3
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
DH89xxCC (PCH) 0x2330 32 hard yes yes yes
5353
Panther Point (PCH) 0x1e22 32 hard yes yes yes
5454
Lynx Point (PCH) 0x8c22 32 hard yes yes yes
55+
Lynx Point-LP (PCH) 0x9c22 32 hard yes yes yes
5556
5657
Features supported by this driver:
5758
Software PEC no
@@ -155,6 +156,7 @@
155156
#define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330
156157
#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
157158
#define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22
159+
#define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS 0x9c22
158160

159161
struct i801_priv {
160162
struct i2c_adapter adapter;
@@ -771,6 +773,7 @@ static DEFINE_PCI_DEVICE_TABLE(i801_ids) = {
771773
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS) },
772774
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS) },
773775
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS) },
776+
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS) },
774777
{ 0, }
775778
};
776779

0 commit comments

Comments
 (0)