Skip to content

Commit

Permalink
[Intel][Raptor Lake-E] Adding the IMC probing entries
Browse files Browse the repository at this point in the history
  • Loading branch information
cyring committed Aug 5, 2024
1 parent a6989b0 commit a7b45ce
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions x86_64/corefreqd.c
Original file line number Diff line number Diff line change
Expand Up @@ -7563,6 +7563,9 @@ void PCI_Intel(RO(SHM_STRUCT) *RO(Shm), RO(PROC) *RO(Proc), RO(CORE) *RO(Core),
case DID_INTEL_RAPTORLAKE_U_2P_8E_HB:
case DID_INTEL_RAPTORLAKE_U_2P_4E_HB:
case DID_INTEL_RAPTORLAKE_U_1P_4E_HB:
case DID_INTEL_RAPTORLAKE_E_8P_0E_HB:
case DID_INTEL_RAPTORLAKE_E_6P_0E_HB:
case DID_INTEL_RAPTORLAKE_E_4P_0E_HB:
RPL_CAP(RO(Shm), RO(Proc), RO(Core));
RPL_IMC(RO(Shm), RO(Proc));
break;
Expand Down
12 changes: 12 additions & 0 deletions x86_64/corefreqk.h
Original file line number Diff line number Diff line change
Expand Up @@ -3049,6 +3049,18 @@ static struct pci_device_id PCI_ADL_RPL_ids[] = {
PCI_VDEVICE(INTEL, DID_INTEL_RAPTORLAKE_U_1P_4E_HB),
.driver_data = (kernel_ulong_t) RPL_IMC
},
{
PCI_VDEVICE(INTEL, DID_INTEL_RAPTORLAKE_E_8P_0E_HB),
.driver_data = (kernel_ulong_t) RPL_IMC
},
{
PCI_VDEVICE(INTEL, DID_INTEL_RAPTORLAKE_E_6P_0E_HB),
.driver_data = (kernel_ulong_t) RPL_IMC
},
{
PCI_VDEVICE(INTEL, DID_INTEL_RAPTORLAKE_E_4P_0E_HB),
.driver_data = (kernel_ulong_t) RPL_IMC
},
{
PCI_VDEVICE(INTEL, DID_INTEL_RAPTORLAKE_Z790_PCH),
.driver_data = (kernel_ulong_t) RPL_PCH
Expand Down

0 comments on commit a7b45ce

Please sign in to comment.