Skip to content

Commit 8ca842b

Browse files
committed
[Intel][WDT] Based on C620 Series PCH datasheet, probe TCO devices
* C620 Series Chipset Production SKUs (`0xa1a3`) * C620 Series Chipset Super SKUs (`0xa223`)
1 parent bd68f04 commit 8ca842b

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

x86_64/corefreq-api.h

+3
Original file line numberDiff line numberDiff line change
@@ -1384,6 +1384,9 @@ typedef struct
13841384
#define DID_INTEL_SKYLAKE_H_IMC_HAQ 0x1910
13851385
/* Source: Intel Xeon Processor E3-1200 v5 Product Family */
13861386
#define DID_INTEL_SKYLAKE_DT_IMC_HA 0x1918
1387+
/* Source: Intel C620 Series Chipset Platform Controller Hub Datasheet */
1388+
#define DID_INTEL_C620_PCH_SMBUS 0xa1a3
1389+
#define DID_INTEL_C620_SUPER_SMBUS 0xa223
13871390
/* Source:7th Generation Intel Processor for S-Platforms & Core X-Series Vol2*/
13881391
#define DID_INTEL_KABYLAKE_H_IMC_HAD 0x5900
13891392
#define DID_INTEL_KABYLAKE_U_IMC_HA 0x5904

x86_64/corefreqk.c

+8
Original file line numberDiff line numberDiff line change
@@ -10382,6 +10382,14 @@ static void Intel_Watchdog(CORE_RO *Core)
1038210382
.driver_data = (kernel_ulong_t) TCOBASE
1038310383
},
1038410384
{
10385+
PCI_VDEVICE(INTEL, DID_INTEL_C620_PCH_SMBUS),
10386+
.driver_data = (kernel_ulong_t) TCOBASE
10387+
},
10388+
{
10389+
PCI_VDEVICE(INTEL, DID_INTEL_C620_SUPER_SMBUS),
10390+
.driver_data = (kernel_ulong_t) TCOBASE
10391+
},
10392+
{
1038510393
PCI_VDEVICE(INTEL, DID_INTEL_KBL_PCH_H_SMBUS),
1038610394
.driver_data = (kernel_ulong_t) TCOBASE
1038710395
},

0 commit comments

Comments
 (0)