mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 07:50:40 +01:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e5e317ea92 | ||
|
|
41a194948d | ||
|
|
5dc2234e97 | ||
|
|
21dddc63ff |
@@ -175,7 +175,6 @@ Thanks to the fellow contributors and interested people in the project. Special
|
|||||||
- [mdoksa76](https://github.com/mdoksa76) and [exkc](https://github.com/exkc): Excellent ideas and feedback for supporting Allwinner SoCs.
|
- [mdoksa76](https://github.com/mdoksa76) and [exkc](https://github.com/exkc): Excellent ideas and feedback for supporting Allwinner SoCs.
|
||||||
- [Sakura286](https://github.com/Sakura286), [exkc](https://github.com/exkc) and [Patola](https://github.com/Patola): Helped with RISC-V port with ssh access, ideas, testing, etc.
|
- [Sakura286](https://github.com/Sakura286), [exkc](https://github.com/exkc) and [Patola](https://github.com/Patola): Helped with RISC-V port with ssh access, ideas, testing, etc.
|
||||||
- [ThomasKaiser](https://github.com/ThomasKaiser): Very valuable feedback on improving ARM SoC detection (Apple, Allwinner, Rockchip).
|
- [ThomasKaiser](https://github.com/ThomasKaiser): Very valuable feedback on improving ARM SoC detection (Apple, Allwinner, Rockchip).
|
||||||
- [zerkerX](https://github.com/zerkerX): Helped with feedback for supporting old (e.g., Pentium III) Intel CPUs.
|
|
||||||
|
|
||||||
## 8. cpufetch for GPUs (gpufetch)
|
## 8. cpufetch for GPUs (gpufetch)
|
||||||
See [gpufetch](https://github.com/Dr-Noob/gpufetch) project!
|
See [gpufetch](https://github.com/Dr-Noob/gpufetch) project!
|
||||||
|
|||||||
@@ -578,14 +578,6 @@ bool match_qualcomm(char* soc_name, struct system_on_chip* soc) {
|
|||||||
SOC_EQ(tmp, "SM8250-AB", "865+", SOC_SNAPD_SM8250_AB, soc, 7)
|
SOC_EQ(tmp, "SM8250-AB", "865+", SOC_SNAPD_SM8250_AB, soc, 7)
|
||||||
SOC_EQ(tmp, "SM8350", "888", SOC_SNAPD_SM8350, soc, 5)
|
SOC_EQ(tmp, "SM8350", "888", SOC_SNAPD_SM8350, soc, 5)
|
||||||
SOC_EQ(tmp, "SM8350-AC", "888+", SOC_SNAPD_SM8350, soc, 5)
|
SOC_EQ(tmp, "SM8350-AC", "888+", SOC_SNAPD_SM8350, soc, 5)
|
||||||
// Snapdragon Gen //
|
|
||||||
SOC_EQ(tmp, "SM4450", "4 Gen 2", SOC_SNAPD_SM4450, soc, 4)
|
|
||||||
SOC_EQ(tmp, "SM6450", "6 Gen 1", SOC_SNAPD_SM6450, soc, 4)
|
|
||||||
SOC_EQ(tmp, "SM7435-AB", "7s Gen 2", SOC_SNAPD_SM7435_AB, soc, 4)
|
|
||||||
SOC_EQ(tmp, "SM7450", "7 Gen 1", SOC_SNAPD_SM7450, soc, 4)
|
|
||||||
SOC_EQ(tmp, "SM7475", "7+ Gen 2", SOC_SNAPD_SM7475, soc, 4)
|
|
||||||
SOC_EQ(tmp, "SM8450", "8 Gen 1", SOC_SNAPD_SM8450, soc, 4)
|
|
||||||
SOC_EQ(tmp, "SM8475", "8+ Gen 1", SOC_SNAPD_SM8475, soc, 4)
|
|
||||||
SOC_END
|
SOC_END
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -632,37 +624,12 @@ bool match_special(char* soc_name, struct system_on_chip* soc) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// New Snapdragon SoCs codenames
|
// Snapdragon 8 Gen 1 reported as "taro"
|
||||||
// https://github.com/sm8450-mainline/fdt?tab=readme-ov-file#chipsets
|
|
||||||
// https://github.com/Dr-Noob/cpufetch/issues/253
|
|
||||||
if (strcmp(soc_name, "cape") == 0) {
|
|
||||||
fill_soc(soc, "8+ Gen 1", SOC_SNAPD_SM8475, 4);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(strcmp(soc_name, "taro") == 0) {
|
if(strcmp(soc_name, "taro") == 0) {
|
||||||
fill_soc(soc, "8 Gen 1", SOC_SNAPD_SM8450, 4);
|
fill_soc(soc, "8 Gen 1", SOC_SNAPD_SM8450, 4);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(strcmp(soc_name, "ukee") == 0) {
|
|
||||||
fill_soc(soc, "7+ Gen 2", SOC_SNAPD_SM7475, 4);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(strcmp(soc_name, "diwali") == 0) {
|
|
||||||
fill_soc(soc, "7 Gen 1", SOC_SNAPD_SM7450, 4);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// parrot can be either SM7435 or SM6450, we need more data
|
|
||||||
// to distingish between those two
|
|
||||||
|
|
||||||
if(strcmp(soc_name, "ravelin") == 0) {
|
|
||||||
fill_soc(soc, "4 Gen 2", SOC_SNAPD_SM4450, 4);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Google Pixel 6
|
// Google Pixel 6
|
||||||
// https://github.com/Dr-Noob/cpufetch/issues/134
|
// https://github.com/Dr-Noob/cpufetch/issues/134
|
||||||
if(strcmp(soc_name, "oriole") == 0) {
|
if(strcmp(soc_name, "oriole") == 0) {
|
||||||
@@ -735,16 +702,6 @@ struct system_on_chip* guess_soc_from_android(struct system_on_chip* soc) {
|
|||||||
else return soc;
|
else return soc;
|
||||||
}
|
}
|
||||||
|
|
||||||
// https://github.com/Dr-Noob/cpufetch/issues/253
|
|
||||||
// ro.soc.model might be more reliable than ro.product.board or
|
|
||||||
// ro.board.platform, so try with it first
|
|
||||||
property_len = android_property_get("ro.soc.model", (char *) &tmp);
|
|
||||||
if(property_len > 0) {
|
|
||||||
try_parse_soc_from_string(soc, property_len, tmp);
|
|
||||||
if(soc->soc_vendor == SOC_VENDOR_UNKNOWN) printWarn("SoC detection failed using Android property ro.soc.model: %s", tmp);
|
|
||||||
else return soc;
|
|
||||||
}
|
|
||||||
|
|
||||||
property_len = android_property_get("ro.product.board", (char *) &tmp);
|
property_len = android_property_get("ro.product.board", (char *) &tmp);
|
||||||
if(property_len > 0) {
|
if(property_len > 0) {
|
||||||
try_parse_soc_from_string(soc, property_len, tmp);
|
try_parse_soc_from_string(soc, property_len, tmp);
|
||||||
|
|||||||
@@ -270,13 +270,11 @@ enum {
|
|||||||
SOC_SNAPD_SDM660,
|
SOC_SNAPD_SDM660,
|
||||||
SOC_SNAPD_SM6115,
|
SOC_SNAPD_SM6115,
|
||||||
SOC_SNAPD_SM6125,
|
SOC_SNAPD_SM6125,
|
||||||
SOC_SNAPD_SM6450,
|
|
||||||
SOC_SNAPD_SDM670,
|
SOC_SNAPD_SDM670,
|
||||||
SOC_SNAPD_SM6150,
|
SOC_SNAPD_SM6150,
|
||||||
SOC_SNAPD_SM6350,
|
SOC_SNAPD_SM6350,
|
||||||
SOC_SNAPD_SDM710,
|
SOC_SNAPD_SDM710,
|
||||||
SOC_SNAPD_SDM712,
|
SOC_SNAPD_SDM712,
|
||||||
SOC_SNAPD_SM4450,
|
|
||||||
SOC_SNAPD_SM7125,
|
SOC_SNAPD_SM7125,
|
||||||
SOC_SNAPD_SM7150_AA,
|
SOC_SNAPD_SM7150_AA,
|
||||||
SOC_SNAPD_SM7150_AB,
|
SOC_SNAPD_SM7150_AB,
|
||||||
@@ -285,9 +283,6 @@ enum {
|
|||||||
SOC_SNAPD_SM7250_AA,
|
SOC_SNAPD_SM7250_AA,
|
||||||
SOC_SNAPD_SM7250_AB,
|
SOC_SNAPD_SM7250_AB,
|
||||||
SOC_SNAPD_SM7250_AC,
|
SOC_SNAPD_SM7250_AC,
|
||||||
SOC_SNAPD_SM7435_AB,
|
|
||||||
SOC_SNAPD_SM7450,
|
|
||||||
SOC_SNAPD_SM7475,
|
|
||||||
SOC_SNAPD_MSM8974AA,
|
SOC_SNAPD_MSM8974AA,
|
||||||
SOC_SNAPD_MSM8974AB,
|
SOC_SNAPD_MSM8974AB,
|
||||||
SOC_SNAPD_MSM8974AC,
|
SOC_SNAPD_MSM8974AC,
|
||||||
@@ -308,7 +303,6 @@ enum {
|
|||||||
SOC_SNAPD_SM8250_AB,
|
SOC_SNAPD_SM8250_AB,
|
||||||
SOC_SNAPD_SM8350,
|
SOC_SNAPD_SM8350,
|
||||||
SOC_SNAPD_SM8450,
|
SOC_SNAPD_SM8450,
|
||||||
SOC_SNAPD_SM8475,
|
|
||||||
// APPLE
|
// APPLE
|
||||||
SOC_APPLE_M1,
|
SOC_APPLE_M1,
|
||||||
SOC_APPLE_M1_PRO,
|
SOC_APPLE_M1_PRO,
|
||||||
@@ -381,7 +375,7 @@ inline static VENDOR get_soc_vendor_from_soc(SOC soc) {
|
|||||||
else if(soc >= SOC_KUNPENG_920 && soc <= SOC_KUNPENG_930) return SOC_VENDOR_KUNPENG;
|
else if(soc >= SOC_KUNPENG_920 && soc <= SOC_KUNPENG_930) return SOC_VENDOR_KUNPENG;
|
||||||
else if(soc >= SOC_EXYNOS_3475 && soc <= SOC_EXYNOS_880) return SOC_VENDOR_EXYNOS;
|
else if(soc >= SOC_EXYNOS_3475 && soc <= SOC_EXYNOS_880) return SOC_VENDOR_EXYNOS;
|
||||||
else if(soc >= SOC_MTK_MT6893 && soc <= SOC_MTK_MT8783) return SOC_VENDOR_MEDIATEK;
|
else if(soc >= SOC_MTK_MT6893 && soc <= SOC_MTK_MT8783) return SOC_VENDOR_MEDIATEK;
|
||||||
else if(soc >= SOC_SNAPD_QSD8650 && soc <= SOC_SNAPD_SM8475) return SOC_VENDOR_SNAPDRAGON;
|
else if(soc >= SOC_SNAPD_QSD8650 && soc <= SOC_SNAPD_SM8450) return SOC_VENDOR_SNAPDRAGON;
|
||||||
else if(soc >= SOC_APPLE_M1 && soc <= SOC_APPLE_M3_MAX) return SOC_VENDOR_APPLE;
|
else if(soc >= SOC_APPLE_M1 && soc <= SOC_APPLE_M3_MAX) return SOC_VENDOR_APPLE;
|
||||||
else if(soc >= SOC_ALLWINNER_A10 && soc <= SOC_ALLWINNER_R328) return SOC_VENDOR_ALLWINNER;
|
else if(soc >= SOC_ALLWINNER_A10 && soc <= SOC_ALLWINNER_R328) return SOC_VENDOR_ALLWINNER;
|
||||||
else if(soc >= SOC_ROCKCHIP_3288 && soc <= SOC_ROCKCHIP_3588) return SOC_VENDOR_ROCKCHIP;
|
else if(soc >= SOC_ROCKCHIP_3288 && soc <= SOC_ROCKCHIP_3588) return SOC_VENDOR_ROCKCHIP;
|
||||||
|
|||||||
@@ -45,9 +45,8 @@ enum {
|
|||||||
};
|
};
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
CORE_TYPE_PERFORMANCE,
|
|
||||||
CORE_TYPE_EFFICIENCY,
|
CORE_TYPE_EFFICIENCY,
|
||||||
CORE_TYPE_LP_EFFICIENCY,
|
CORE_TYPE_PERFORMANCE,
|
||||||
CORE_TYPE_UNKNOWN
|
CORE_TYPE_UNKNOWN
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -614,9 +614,8 @@ bool print_cpufetch_x86(struct cpuInfo* cpu, STYLE s, struct color** cs, struct
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(hybrid_architecture) {
|
if(hybrid_architecture) {
|
||||||
if (ptr->core_type == CORE_TYPE_PERFORMANCE) sprintf(cpu_num, "P-cores:");
|
if(ptr->core_type == CORE_TYPE_EFFICIENCY) sprintf(cpu_num, "E-cores:");
|
||||||
else if (ptr->core_type == CORE_TYPE_EFFICIENCY) sprintf(cpu_num, "E-cores:");
|
else if(ptr->core_type == CORE_TYPE_PERFORMANCE) sprintf(cpu_num, "P-cores:");
|
||||||
else if (ptr->core_type == CORE_TYPE_LP_EFFICIENCY) sprintf(cpu_num, "LP-E-cores:");
|
|
||||||
else printBug("Found invalid core type!\n");
|
else printBug("Found invalid core type!\n");
|
||||||
|
|
||||||
setAttribute(art, ATTRIBUTE_CPU_NUM, cpu_num);
|
setAttribute(art, ATTRIBUTE_CPU_NUM, cpu_num);
|
||||||
|
|||||||
@@ -91,7 +91,6 @@ int get_total_cores_module(int total_cores, int module) {
|
|||||||
|
|
||||||
while(!end) {
|
while(!end) {
|
||||||
if(!bind_to_cpu(i)) {
|
if(!bind_to_cpu(i)) {
|
||||||
printBug("get_total_cores_module: Cannot bind to core %d", i);
|
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
uint32_t eax = 0x0000001A;
|
uint32_t eax = 0x0000001A;
|
||||||
@@ -100,17 +99,6 @@ int get_total_cores_module(int total_cores, int module) {
|
|||||||
uint32_t edx = 0;
|
uint32_t edx = 0;
|
||||||
cpuid(&eax, &ebx, &ecx, &edx);
|
cpuid(&eax, &ebx, &ecx, &edx);
|
||||||
int32_t core_type = eax >> 24 & 0xFF;
|
int32_t core_type = eax >> 24 & 0xFF;
|
||||||
|
|
||||||
// Here we artificially create a new core type for
|
|
||||||
// LP-E cores. In case the core has no L3 (on a hybrid)
|
|
||||||
// architecture, then we now it's an LP-E core.
|
|
||||||
eax = 0x4;
|
|
||||||
ebx = 0;
|
|
||||||
ecx = 0x3;
|
|
||||||
edx = 0;
|
|
||||||
cpuid(&eax, &ebx, &ecx, &edx);
|
|
||||||
core_type += eax == 0;
|
|
||||||
|
|
||||||
bool found = false;
|
bool found = false;
|
||||||
|
|
||||||
for(int j=0; j < total_modules && !found; j++) {
|
for(int j=0; j < total_modules && !found; j++) {
|
||||||
|
|||||||
@@ -137,31 +137,39 @@ bool abbreviate_intel_cpu_name(char** name) {
|
|||||||
char* new_name_ptr = new_name;
|
char* new_name_ptr = new_name;
|
||||||
char* aux_ptr = NULL;
|
char* aux_ptr = NULL;
|
||||||
|
|
||||||
// 1. Find "Intel(R)"
|
// 1. Remove "(R)"
|
||||||
old_name_ptr = strstr(old_name_ptr, "Intel(R)");
|
old_name_ptr = strstr(old_name_ptr, "Intel(R)");
|
||||||
if(old_name_ptr == NULL) return false;
|
if(old_name_ptr == NULL) return false;
|
||||||
|
strcpy(new_name_ptr, "Intel");
|
||||||
|
new_name_ptr += strlen("Intel");
|
||||||
|
old_name_ptr += strlen("Intel(R)");
|
||||||
|
|
||||||
// 2. Search for "@"
|
// 2. Remove "(R)" or "(TM)"
|
||||||
|
aux_ptr = strstr(old_name_ptr, "(");
|
||||||
|
if(aux_ptr == NULL) return false;
|
||||||
|
strncpy(new_name_ptr, old_name_ptr, aux_ptr-old_name_ptr);
|
||||||
|
|
||||||
|
new_name_ptr += aux_ptr-old_name_ptr;
|
||||||
|
strcpy(new_name_ptr, " ");
|
||||||
|
new_name_ptr++;
|
||||||
|
old_name_ptr = strstr(aux_ptr, ")");
|
||||||
|
if(old_name_ptr == NULL) return false;
|
||||||
|
old_name_ptr++;
|
||||||
|
while(*old_name_ptr == ' ') old_name_ptr++;
|
||||||
|
|
||||||
|
// 3. Copy the CPU name
|
||||||
aux_ptr = strstr(old_name_ptr, "@");
|
aux_ptr = strstr(old_name_ptr, "@");
|
||||||
if(aux_ptr == NULL) {
|
if(aux_ptr == NULL) return false;
|
||||||
// New CPUs, copy end ptr is end of string
|
|
||||||
aux_ptr = old_name + strlen(old_name);
|
|
||||||
strncpy(new_name_ptr, old_name_ptr, (aux_ptr)-old_name_ptr);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
// Copy end ptr is "@"
|
|
||||||
strncpy(new_name_ptr, old_name_ptr, (aux_ptr-1)-old_name_ptr);
|
strncpy(new_name_ptr, old_name_ptr, (aux_ptr-1)-old_name_ptr);
|
||||||
}
|
|
||||||
|
|
||||||
// 3. Remove dummy strings in Intel CPU names
|
// 4. Remove dummy strings in Intel CPU names
|
||||||
strremove(new_name, "(R)");
|
|
||||||
strremove(new_name, "(TM)");
|
|
||||||
strremove(new_name, " CPU");
|
strremove(new_name, " CPU");
|
||||||
strremove(new_name, " Dual");
|
strremove(new_name, " Dual");
|
||||||
strremove(new_name, " 0");
|
strremove(new_name, " 0");
|
||||||
|
|
||||||
free(old_name);
|
free(old_name);
|
||||||
*name = new_name;
|
*name = new_name;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -389,17 +397,6 @@ bool set_cpu_module(int m, int total_modules, int32_t* first_core) {
|
|||||||
uint32_t edx = 0;
|
uint32_t edx = 0;
|
||||||
cpuid(&eax, &ebx, &ecx, &edx);
|
cpuid(&eax, &ebx, &ecx, &edx);
|
||||||
int32_t core_type = eax >> 24 & 0xFF;
|
int32_t core_type = eax >> 24 & 0xFF;
|
||||||
|
|
||||||
// Here we artificially create a new core type for
|
|
||||||
// LP-E cores. In case the core has no L3 (on a hybrid)
|
|
||||||
// architecture, then we now it's an LP-E core.
|
|
||||||
eax = 0x4;
|
|
||||||
ebx = 0;
|
|
||||||
ecx = 0x3;
|
|
||||||
edx = 0;
|
|
||||||
cpuid(&eax, &ebx, &ecx, &edx);
|
|
||||||
core_type += eax == 0;
|
|
||||||
|
|
||||||
bool found = false;
|
bool found = false;
|
||||||
|
|
||||||
for(int j=0; j < total_modules && !found; j++) {
|
for(int j=0; j < total_modules && !found; j++) {
|
||||||
@@ -426,19 +423,13 @@ bool set_cpu_module(int m, int total_modules, int32_t* first_core) {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// This is a non-hybrid architecture
|
// This is a normal architecture
|
||||||
*first_core = 0;
|
*first_core = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Difference between E and LP-E cores:
|
|
||||||
// According to Intel Core Ultra Processor Datasheet Volume 1 of 2
|
|
||||||
// (https://www.intel.com/content/www/us/en/content-details/792044/intel-core-ultra-processor-datasheet-volume-1-of-2.html),
|
|
||||||
// LP-E cores do not have L3 cache. This seems to be the only way of differentiating them.
|
|
||||||
// - https://community.intel.com/t5/Processors/Detecting-LP-E-Cores-on-Meteor-Lake-in-software/m-p/1584555/highlight/true#M70732
|
|
||||||
// - https://x.com/InstLatX64/status/1741416428538941718
|
|
||||||
int32_t get_core_type(void) {
|
int32_t get_core_type(void) {
|
||||||
uint32_t eax = 0x0000001A;
|
uint32_t eax = 0x0000001A;
|
||||||
uint32_t ebx = 0;
|
uint32_t ebx = 0;
|
||||||
@@ -449,26 +440,8 @@ int32_t get_core_type(void) {
|
|||||||
cpuid(&eax, &ebx, &ecx, &edx);
|
cpuid(&eax, &ebx, &ecx, &edx);
|
||||||
|
|
||||||
int32_t type = eax >> 24 & 0xFF;
|
int32_t type = eax >> 24 & 0xFF;
|
||||||
if (type == 0x40) return CORE_TYPE_PERFORMANCE;
|
if(type == 0x20) return CORE_TYPE_EFFICIENCY;
|
||||||
else if (type == 0x20) {
|
else if(type == 0x40) return CORE_TYPE_PERFORMANCE;
|
||||||
// get_core_type is only called iff hybrid_flag is true, which can only
|
|
||||||
// happen if CPUID maxLevel >= 0x7 so we can assume the CPU supports
|
|
||||||
// CPUID leaf 0x4
|
|
||||||
eax = 0x4;
|
|
||||||
ebx = 0;
|
|
||||||
ecx = 0x3;
|
|
||||||
edx = 0;
|
|
||||||
|
|
||||||
cpuid(&eax, &ebx, &ecx, &edx);
|
|
||||||
|
|
||||||
if (eax == 0) {
|
|
||||||
// No L3 access, this is LP-E
|
|
||||||
return CORE_TYPE_LP_EFFICIENCY;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return CORE_TYPE_EFFICIENCY;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
else {
|
||||||
printErr("Found invalid core type: 0x%.8X\n", type);
|
printErr("Found invalid core type: 0x%.8X\n", type);
|
||||||
return CORE_TYPE_UNKNOWN;
|
return CORE_TYPE_UNKNOWN;
|
||||||
@@ -483,6 +456,7 @@ struct cpuInfo* get_cpu_info(void) {
|
|||||||
cpu->cach = NULL;
|
cpu->cach = NULL;
|
||||||
cpu->feat = NULL;
|
cpu->feat = NULL;
|
||||||
|
|
||||||
|
cpu->num_cpus = 1;
|
||||||
uint32_t eax = 0;
|
uint32_t eax = 0;
|
||||||
uint32_t ebx = 0;
|
uint32_t ebx = 0;
|
||||||
uint32_t ecx = 0;
|
uint32_t ecx = 0;
|
||||||
@@ -540,13 +514,7 @@ struct cpuInfo* get_cpu_info(void) {
|
|||||||
cpu->hybrid_flag = (edx >> 15) & 0x1;
|
cpu->hybrid_flag = (edx >> 15) & 0x1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(cpu->hybrid_flag) {
|
if(cpu->hybrid_flag) cpu->num_cpus = 2;
|
||||||
struct uarch* tmp = get_cpu_uarch(cpu);
|
|
||||||
cpu->num_cpus = get_hybrid_num_cpus(tmp);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
cpu->num_cpus = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct cpuInfo* ptr = cpu;
|
struct cpuInfo* ptr = cpu;
|
||||||
for(uint32_t i=0; i < cpu->num_cpus; i++) {
|
for(uint32_t i=0; i < cpu->num_cpus; i++) {
|
||||||
@@ -561,9 +529,8 @@ struct cpuInfo* get_cpu_info(void) {
|
|||||||
ptr->topo = NULL;
|
ptr->topo = NULL;
|
||||||
ptr->cach = NULL;
|
ptr->cach = NULL;
|
||||||
ptr->feat = NULL;
|
ptr->feat = NULL;
|
||||||
// We assume that this core has the
|
// We assume that this cores have the
|
||||||
// same cpuid capabilities as the core in the
|
// same cpuid capabilities
|
||||||
// first module
|
|
||||||
ptr->cpu_vendor = cpu->cpu_vendor;
|
ptr->cpu_vendor = cpu->cpu_vendor;
|
||||||
ptr->maxLevels = cpu->maxLevels;
|
ptr->maxLevels = cpu->maxLevels;
|
||||||
ptr->maxExtendedLevels = cpu->maxExtendedLevels;
|
ptr->maxExtendedLevels = cpu->maxExtendedLevels;
|
||||||
@@ -733,8 +700,6 @@ struct topology* get_topology_info(struct cpuInfo* cpu, struct cache* cach, int
|
|||||||
if(cpu->hybrid_flag) {
|
if(cpu->hybrid_flag) {
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
topo->total_cores_module = get_total_cores_module(topo->total_cores, module);
|
topo->total_cores_module = get_total_cores_module(topo->total_cores, module);
|
||||||
printBug("get_total_cores_module: Failed to get number of cores in module");
|
|
||||||
return NULL;
|
|
||||||
#else
|
#else
|
||||||
UNUSED(module);
|
UNUSED(module);
|
||||||
topo->total_cores_module = topo->total_cores;
|
topo->total_cores_module = topo->total_cores;
|
||||||
|
|||||||
@@ -94,7 +94,6 @@ enum {
|
|||||||
UARCH_TIGER_LAKE,
|
UARCH_TIGER_LAKE,
|
||||||
UARCH_ALDER_LAKE,
|
UARCH_ALDER_LAKE,
|
||||||
UARCH_RAPTOR_LAKE,
|
UARCH_RAPTOR_LAKE,
|
||||||
UARCH_METEOR_LAKE,
|
|
||||||
// AMD //
|
// AMD //
|
||||||
UARCH_AM486,
|
UARCH_AM486,
|
||||||
UARCH_AM5X86,
|
UARCH_AM5X86,
|
||||||
@@ -249,7 +248,6 @@ struct uarch* get_uarch_from_cpuid_intel(uint32_t ef, uint32_t f, uint32_t em, u
|
|||||||
CHECK_UARCH(arch, 0, 6, 10, 5, NA, "Comet Lake", UARCH_COMET_LAKE, 14) // wikichip
|
CHECK_UARCH(arch, 0, 6, 10, 5, NA, "Comet Lake", UARCH_COMET_LAKE, 14) // wikichip
|
||||||
CHECK_UARCH(arch, 0, 6, 10, 6, NA, "Comet Lake", UARCH_COMET_LAKE, 14) // instlatx64.atw.hu (i7-10710U)
|
CHECK_UARCH(arch, 0, 6, 10, 6, NA, "Comet Lake", UARCH_COMET_LAKE, 14) // instlatx64.atw.hu (i7-10710U)
|
||||||
CHECK_UARCH(arch, 0, 6, 10, 7, NA, "Rocket Lake", UARCH_ROCKET_LAKE, 14) // instlatx64.atw.hu (i7-11700K)
|
CHECK_UARCH(arch, 0, 6, 10, 7, NA, "Rocket Lake", UARCH_ROCKET_LAKE, 14) // instlatx64.atw.hu (i7-11700K)
|
||||||
CHECK_UARCH(arch, 0, 6, 10, 10, NA, "Meteor Lake", UARCH_METEOR_LAKE, 7) // instlatx64.atw.hu (Ultra 7 155H)
|
|
||||||
CHECK_UARCH(arch, 0, 6, 11, 7, NA, "Raptor Lake", UARCH_RAPTOR_LAKE, 10) // instlatx64.atw.hu (i5-13600K)
|
CHECK_UARCH(arch, 0, 6, 11, 7, NA, "Raptor Lake", UARCH_RAPTOR_LAKE, 10) // instlatx64.atw.hu (i5-13600K)
|
||||||
CHECK_UARCH(arch, 0, 6, 11, 10, NA, "Raptor Lake", UARCH_RAPTOR_LAKE, 10) // instlatx64.atw.hu (i7-1370P)
|
CHECK_UARCH(arch, 0, 6, 11, 10, NA, "Raptor Lake", UARCH_RAPTOR_LAKE, 10) // instlatx64.atw.hu (i7-1370P)
|
||||||
CHECK_UARCH(arch, 0, 6, 11, 14, NA, "Alder Lake", UARCH_ALDER_LAKE, 10) // instlatx64.atw.hu (Alder Lake-N)
|
CHECK_UARCH(arch, 0, 6, 11, 14, NA, "Alder Lake", UARCH_ALDER_LAKE, 10) // instlatx64.atw.hu (Alder Lake-N)
|
||||||
@@ -538,7 +536,6 @@ int get_number_of_vpus(struct cpuInfo* cpu) {
|
|||||||
case UARCH_TIGER_LAKE:
|
case UARCH_TIGER_LAKE:
|
||||||
case UARCH_ALDER_LAKE:
|
case UARCH_ALDER_LAKE:
|
||||||
case UARCH_RAPTOR_LAKE:
|
case UARCH_RAPTOR_LAKE:
|
||||||
case UARCH_METEOR_LAKE:
|
|
||||||
|
|
||||||
// AMD
|
// AMD
|
||||||
case UARCH_ZEN2:
|
case UARCH_ZEN2:
|
||||||
@@ -552,11 +549,6 @@ int get_number_of_vpus(struct cpuInfo* cpu) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t get_hybrid_num_cpus(struct uarch* arch) {
|
|
||||||
if (arch->uarch == UARCH_METEOR_LAKE) return 3;
|
|
||||||
else return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool choose_new_intel_logo_uarch(struct cpuInfo* cpu) {
|
bool choose_new_intel_logo_uarch(struct cpuInfo* cpu) {
|
||||||
switch(cpu->arch->uarch) {
|
switch(cpu->arch->uarch) {
|
||||||
case UARCH_ALDER_LAKE:
|
case UARCH_ALDER_LAKE:
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ char* infer_cpu_name_from_uarch(struct uarch* arch);
|
|||||||
bool vpus_are_AVX512(struct cpuInfo* cpu);
|
bool vpus_are_AVX512(struct cpuInfo* cpu);
|
||||||
bool is_knights_landing(struct cpuInfo* cpu);
|
bool is_knights_landing(struct cpuInfo* cpu);
|
||||||
int get_number_of_vpus(struct cpuInfo* cpu);
|
int get_number_of_vpus(struct cpuInfo* cpu);
|
||||||
uint32_t get_hybrid_num_cpus(struct uarch* arch);
|
|
||||||
bool choose_new_intel_logo_uarch(struct cpuInfo* cpu);
|
bool choose_new_intel_logo_uarch(struct cpuInfo* cpu);
|
||||||
char* get_str_uarch(struct cpuInfo* cpu);
|
char* get_str_uarch(struct cpuInfo* cpu);
|
||||||
char* get_str_process(struct cpuInfo* cpu);
|
char* get_str_process(struct cpuInfo* cpu);
|
||||||
|
|||||||
Reference in New Issue
Block a user