mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 07:50:40 +01:00
[v1.03][RISCV] Add preeliminary uarch detection
This commit is contained in:
@@ -4,7 +4,9 @@
|
||||
#include "../common/global.h"
|
||||
#include "udev.h"
|
||||
|
||||
#define _PATH_DEVTREE "/proc/device-tree/compatible"
|
||||
#define _PATH_CPUINFO "/proc/cpuinfo"
|
||||
#define _PATH_DEVTREE "/proc/device-tree/compatible"
|
||||
#define CPUINFO_UARCH_STR "uarch\t\t: "
|
||||
#define DEVTREE_HARDWARE_FIELD 0
|
||||
|
||||
char* get_field_from_devtree(int DEVTREE_FIELD) {
|
||||
@@ -45,6 +47,40 @@ char* get_field_from_devtree(int DEVTREE_FIELD) {
|
||||
return hardware;
|
||||
}
|
||||
|
||||
char* parse_cpuinfo_field(char* field_str) {
|
||||
int filelen;
|
||||
char* buf;
|
||||
if((buf = read_file(_PATH_CPUINFO, &filelen)) == NULL) {
|
||||
printWarn("read_file: %s: %s", _PATH_CPUINFO, strerror(errno));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
char* tmp = strstr(buf, field_str);
|
||||
if(tmp == NULL) {
|
||||
printWarn("parse_cpuinfo_field: Unable to find field %s", field_str);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
tmp += strlen(field_str);
|
||||
char* end = strstr(tmp, "\n");
|
||||
|
||||
if(end == NULL) {
|
||||
printWarn("parse_cpuinfo_field: Unable to find newline after field %s", field_str);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int ret_strlen = (end-tmp);
|
||||
char* ret = emalloc(sizeof(char) * (ret_strlen+1));
|
||||
memset(ret, 0, sizeof(char) * (ret_strlen+1));
|
||||
strncpy(ret, tmp, ret_strlen);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
char* get_hardware_from_devtree(void) {
|
||||
return get_field_from_devtree(DEVTREE_HARDWARE_FIELD);
|
||||
}
|
||||
|
||||
char* get_uarch_from_cpuinfo(void) {
|
||||
return parse_cpuinfo_field(CPUINFO_UARCH_STR);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user