File tree 3 files changed +5
-0
lines changed
3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ Supported adapters:
21
21
* Intel DH89xxCC (PCH)
22
22
* Intel Panther Point (PCH)
23
23
* Intel Lynx Point (PCH)
24
+ * Intel Lynx Point-LP (PCH)
24
25
Datasheets: Publicly available at the Intel website
25
26
26
27
On Intel Patsburg and later chipsets, both the normal host SMBus controller
Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ config I2C_I801
104
104
DH89xxCC (PCH)
105
105
Panther Point (PCH)
106
106
Lynx Point (PCH)
107
+ Lynx Point-LP (PCH)
107
108
108
109
This driver can also be built as a module. If so, the module
109
110
will be called i2c-i801.
Original file line number Diff line number Diff line change 52
52
DH89xxCC (PCH) 0x2330 32 hard yes yes yes
53
53
Panther Point (PCH) 0x1e22 32 hard yes yes yes
54
54
Lynx Point (PCH) 0x8c22 32 hard yes yes yes
55
+ Lynx Point-LP (PCH) 0x9c22 32 hard yes yes yes
55
56
56
57
Features supported by this driver:
57
58
Software PEC no
155
156
#define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330
156
157
#define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30
157
158
#define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22
159
+ #define PCI_DEVICE_ID_INTEL_LYNXPOINT_LP_SMBUS 0x9c22
158
160
159
161
struct i801_priv {
160
162
struct i2c_adapter adapter ;
@@ -771,6 +773,7 @@ static DEFINE_PCI_DEVICE_TABLE(i801_ids) = {
771
773
{ PCI_DEVICE (PCI_VENDOR_ID_INTEL , PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS ) },
772
774
{ PCI_DEVICE (PCI_VENDOR_ID_INTEL , PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS ) },
773
775
{ 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 ) },
774
777
{ 0 , }
775
778
};
776
779
You can’t perform that action at this time.
0 commit comments