Skip to content

Commit 8c56f9e

Browse files
jhnikulawsakernel
authored andcommitted
i2c: i801: Add support for Intel Birch Stream SoC
Add SMBus PCI ID on Intel Birch Stream SoC. Signed-off-by: Jarkko Nikula <[email protected]> Reviewed-by: Andi Shyti <[email protected]> Reviewed-by: Jean Delvare <[email protected]> Signed-off-by: Wolfram Sang <[email protected]>
1 parent ae2a1f0 commit 8c56f9e

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

Documentation/i2c/busses/i2c-i801.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ Supported adapters:
4747
* Intel Alder Lake (PCH)
4848
* Intel Raptor Lake (PCH)
4949
* Intel Meteor Lake (SOC and PCH)
50+
* Intel Birch Stream (SOC)
5051

5152
Datasheets: Publicly available at the Intel website
5253

drivers/i2c/busses/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ config I2C_I801
158158
Alder Lake (PCH)
159159
Raptor Lake (PCH)
160160
Meteor Lake (SOC and PCH)
161+
Birch Stream (SOC)
161162

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

drivers/i2c/busses/i2c-i801.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
* Meteor Lake-P (SOC) 0x7e22 32 hard yes yes yes
8080
* Meteor Lake SoC-S (SOC) 0xae22 32 hard yes yes yes
8181
* Meteor Lake PCH-S (PCH) 0x7f23 32 hard yes yes yes
82+
* Birch Stream (SOC) 0x5796 32 hard yes yes yes
8283
*
8384
* Features supported by this driver:
8485
* Software PEC no
@@ -231,6 +232,7 @@
231232
#define PCI_DEVICE_ID_INTEL_JASPER_LAKE_SMBUS 0x4da3
232233
#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_P_SMBUS 0x51a3
233234
#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_M_SMBUS 0x54a3
235+
#define PCI_DEVICE_ID_INTEL_BIRCH_STREAM_SMBUS 0x5796
234236
#define PCI_DEVICE_ID_INTEL_BROXTON_SMBUS 0x5ad4
235237
#define PCI_DEVICE_ID_INTEL_RAPTOR_LAKE_S_SMBUS 0x7a23
236238
#define PCI_DEVICE_ID_INTEL_ALDER_LAKE_S_SMBUS 0x7aa3
@@ -1038,6 +1040,7 @@ static const struct pci_device_id i801_ids[] = {
10381040
{ PCI_DEVICE_DATA(INTEL, METEOR_LAKE_P_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10391041
{ PCI_DEVICE_DATA(INTEL, METEOR_LAKE_SOC_S_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10401042
{ PCI_DEVICE_DATA(INTEL, METEOR_LAKE_PCH_S_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
1043+
{ PCI_DEVICE_DATA(INTEL, BIRCH_STREAM_SMBUS, FEATURES_ICH5 | FEATURE_TCO_CNL) },
10411044
{ 0, }
10421045
};
10431046

0 commit comments

Comments
 (0)