Skip to content

Commit d732418

Browse files
authored
Merge pull request #41 from intel/dev_113_63_linux_rel
Release 9.0.11363.34041
2 parents 0495c57 + 8a906cb commit d732418

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

Common/Ver.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020

2121
#define VER_MAJOR 1
2222
#define VER_MINOR 0
23-
#define VER_HOTFIX 11361
24-
#define VER_BUILD 32710
23+
#define VER_HOTFIX 11363
24+
#define VER_BUILD 34041

Common/esif_ccb_cpuid.h

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@
111111
#define CPUID_FAMILY_MODEL_MTL_N 0x000A06B0 // Meteor Lake N
112112
#define CPUID_FAMILY_MODEL_MTL_S 0x000606C0 // Meteor Lake S
113113
#define CPUID_FAMILY_MODEL_RPL_S 0x000B0670 // Raptor Lake S
114+
#define CPUID_FAMILY_MODEL_RPL_S_1 0x000B06F0 // Another CPUID for Raptor Lake S
114115
#define CPUID_FAMILY_MODEL_RPL_P 0x000B06A0 // Raptor Lake P
115116
#define CPUID_FAMILY_MODEL_ADL_N 0x000B06E0 // Alder Lake N
116117
#define CPUID_FAMILY_MODEL_ADL_P 0x000906A0 // Alder Lake P

Common/ipf_sdk_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <stdlib.h>
2525

2626
// Current IPF SDK Version: Major.Minor.Revision where same Major.Minor compatible with other Revisions, but not newer Major.Minor
27-
#define IPF_SDK_VERSION "1.0.11361"
27+
#define IPF_SDK_VERSION "1.0.11363"
2828

2929
typedef u64 ipfsdk_version_t; // IPF SDK Encoded Version Number
3030

DPTF/Sources/DptfVer.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020

2121
#define VER_MAJOR 9
2222
#define VER_MINOR 0
23-
#define VER_HOTFIX 11361
24-
#define VER_BUILD 32710
23+
#define VER_HOTFIX 11363
24+
#define VER_BUILD 34041
2525

2626
#define ARG_TOSTR(arg) #arg
2727
#define VER_TOSTR(arg) ARG_TOSTR(arg)

ESIF/Products/ESIF_UF/Sources/lin/esif_uf_action_sysfs_os_lin.c

+2
Original file line numberDiff line numberDiff line change
@@ -1977,6 +1977,7 @@ static eEsifError GetDdrDvfsDataRate(EsifDataPtr responsePtr, char *path)
19771977
if (cpuSign == CPUID_FAMILY_MODEL_ADL_N ||
19781978
cpuSign == CPUID_FAMILY_MODEL_ADL_P ||
19791979
cpuSign == CPUID_FAMILY_MODEL_RPL_S ||
1980+
cpuSign == CPUID_FAMILY_MODEL_RPL_S_1 ||
19801981
cpuSign == CPUID_FAMILY_MODEL_RPL_P) {
19811982

19821983
if (SysfsGetInt64(path, "ddr_data_rate", &sysval) < SYSFS_FILE_RETRIEVAL_SUCCESS) {
@@ -2061,6 +2062,7 @@ static eEsifError SetDdrRfiRestriction(UInt64 sysval, char *path)
20612062
if (cpuSign == CPUID_FAMILY_MODEL_ADL_N ||
20622063
cpuSign == CPUID_FAMILY_MODEL_ADL_P ||
20632064
cpuSign == CPUID_FAMILY_MODEL_RPL_S ||
2065+
cpuSign == CPUID_FAMILY_MODEL_RPL_S_1 ||
20642066
cpuSign == CPUID_FAMILY_MODEL_RPL_P) {
20652067

20662068
if (SysfsSetInt64(path, "rfi_restriction", sysval) < 0) {

0 commit comments

Comments
 (0)