GPU (Android): adds GPU temp detection support

This commit is contained in:
李通洲
2025-08-28 14:24:40 +08:00
parent 5c9a0a1f88
commit ebf810ad4b
3 changed files with 61 additions and 1 deletions
+1 -1
View File
@@ -599,7 +599,7 @@ elseif(ANDROID)
src/detection/diskio/diskio_linux.c
src/detection/displayserver/displayserver_android.c
src/detection/font/font_nosupport.c
src/detection/gpu/gpu_nosupport.c
src/detection/gpu/gpu_android.c
src/detection/host/host_android.c
src/detection/icons/icons_nosupport.c
src/detection/initsystem/initsystem_linux.c
+7
View File
@@ -116,6 +116,13 @@ const char* ffDetectGPU(const FFGPUOptions* options, FFlist* result)
{
ffListDestroy(result);
ffListInitMove(result, &vulkan->gpus);
#ifdef __ANDROID__
double ffGPUDetectTempFromTZ(void);
if (options->temp && result->length == 1)
FF_LIST_GET(FFGPUResult, *result, 0)->temperature = ffGPUDetectTempFromTZ();
#endif
return NULL;
}
}
+53
View File
@@ -0,0 +1,53 @@
#include "gpu.h"
#include "common/io/io.h"
#include "util/stringUtils.h"
#include <fcntl.h>
static double parseTZDir(int dfd, FFstrbuf* buffer)
{
if(!ffReadFileBufferRelative(dfd, "temp", buffer))
return FF_GPU_TEMP_UNSET;
double value = ffStrbufToDouble(buffer, FF_GPU_TEMP_UNSET);// millidegree Celsius
if(value == FF_GPU_TEMP_UNSET)
return FF_GPU_TEMP_UNSET;
if (!ffReadFileBufferRelative(dfd, "type", buffer) || ffStrbufStartsWithS(buffer, "gpu"))
return FF_GPU_TEMP_UNSET;
return value / 1000.;
}
double ffGPUDetectTempFromTZ(void)
{
FF_AUTO_CLOSE_DIR DIR* dirp = opendir("/sys/class/thermal/");
if(dirp)
{
FF_STRBUF_AUTO_DESTROY buffer = ffStrbufCreate();
int dfd = dirfd(dirp);
struct dirent* entry;
while((entry = readdir(dirp)) != NULL)
{
if(entry->d_name[0] == '.')
continue;
if(!ffStrStartsWith(entry->d_name, "thermal_zone"))
continue;
FF_AUTO_CLOSE_FD int subfd = openat(dfd, entry->d_name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
if(subfd < 0)
continue;
double result = parseTZDir(subfd, &buffer);
if (result != FF_GPU_TEMP_UNSET)
return result;
}
}
return FF_GPU_TEMP_UNSET;
}
const char* ffDetectGPUImpl(const FFGPUOptions* options, FFlist* gpus)
{
FF_UNUSED(options, gpus);
return "No permission. Fallbacks to Vulkan, OpenCL or OpenGL instead";
}