├── .gitignore ├── Android.mk ├── COPYING ├── Makefile.am ├── README.txt ├── SECURITY.md ├── autogen.sh ├── configure.ac ├── data ├── Makefile.am ├── org.freedesktop.thermald.conf.in ├── org.freedesktop.thermald.service.in ├── thermal-conf.xml ├── thermal-cpu-cdev-order.xml └── thermald.service.in ├── distribution_integration ├── android_dbus_service_information ├── chromeos_gentoo_ebuild_spec ├── make_rpm.sh └── thermal-daemon.spec ├── docs ├── Makefile.am ├── thermal_daemon-docs.xml └── version.xml.in ├── man ├── thermal-conf.xml.5 └── thermald.8 ├── misc └── valgrind.supp ├── src ├── 7zTypes.h ├── LzmaDec.c ├── LzmaDec.h ├── acpi_thermal_rel_ioct.h ├── android_main.cpp ├── main.cpp ├── thd_adaptive_types.h ├── thd_cdev.cpp ├── thd_cdev.h ├── thd_cdev_backlight.cpp ├── thd_cdev_backlight.h ├── thd_cdev_cpufreq.cpp ├── thd_cdev_cpufreq.h ├── thd_cdev_gen_sysfs.cpp ├── thd_cdev_gen_sysfs.h ├── thd_cdev_intel_pstate_driver.cpp ├── thd_cdev_intel_pstate_driver.h ├── thd_cdev_order_parser.cpp ├── thd_cdev_order_parser.h ├── thd_cdev_rapl.cpp ├── thd_cdev_rapl.h ├── thd_cdev_rapl_dram.cpp ├── thd_cdev_rapl_dram.h ├── thd_cdev_therm_sys_fs.cpp ├── thd_cdev_therm_sys_fs.h ├── thd_common.h ├── thd_cpu_default_binding.cpp ├── thd_cpu_default_binding.h ├── thd_dbus_interface.cpp ├── thd_dbus_interface.xml ├── thd_engine.cpp ├── thd_engine.h ├── thd_engine_adaptive.cpp ├── thd_engine_adaptive.h ├── thd_engine_default.cpp ├── thd_engine_default.h ├── thd_gddv.cpp ├── thd_gddv.h ├── thd_int3400.cpp ├── thd_int3400.h ├── thd_kobj_uevent.cpp ├── thd_kobj_uevent.h ├── thd_lzma_dec.cpp ├── thd_lzma_dec.h ├── thd_parse.cpp ├── thd_parse.h ├── thd_pid.cpp ├── thd_pid.h ├── thd_preference.cpp ├── thd_preference.h ├── thd_rapl_power_meter.cpp ├── thd_rapl_power_meter.h ├── thd_sensor.cpp ├── thd_sensor.h ├── thd_sensor_rapl_power.cpp ├── thd_sensor_rapl_power.h ├── thd_sensor_virtual.cpp ├── thd_sensor_virtual.h ├── thd_sys_fs.cpp ├── thd_sys_fs.h ├── thd_trip_point.cpp ├── thd_trip_point.h ├── thd_trt_art_reader.cpp ├── thd_trt_art_reader.h ├── thd_zone.cpp ├── thd_zone.h ├── thd_zone_cpu.cpp ├── thd_zone_cpu.h ├── thd_zone_dynamic.cpp ├── thd_zone_dynamic.h ├── thd_zone_generic.cpp ├── thd_zone_generic.h ├── thd_zone_rapl_power.cpp ├── thd_zone_rapl_power.h ├── thd_zone_therm_sys_fs.cpp ├── thd_zone_therm_sys_fs.h └── thermald.h ├── test ├── Makefile ├── cpufreq.sh ├── cpufreq.xml ├── default.sh ├── default.xml ├── exec_config_tests.sh ├── gddv_tests │ ├── gddv_json_example.json │ ├── gddv_json_test_0.json │ ├── gddv_json_test_1.json │ ├── gddv_json_test_2.json │ └── gddv_test_gen.py ├── intel_pstate.sh ├── intel_pstate.xml ├── intel_rapl.xml ├── powerclamp.sh ├── powerclamp.xml ├── processor.sh ├── processor_acpi.xml ├── rapl.sh ├── readme_test.txt ├── run_all_tests.sh ├── test1.xml ├── test2.xml ├── test3.xml ├── test4.xml ├── test5.xml ├── test6.xml ├── test7.xml ├── test_cases.txt ├── thermal-debug-dump-fedora.sh ├── thermal-debug-dump-ubuntu.sh ├── thermal-dptf-tables-test-fedora.sh ├── thermal-dptf-tables-test-ubuntu.sh ├── thermal_conf.xml.1 ├── thermal_conf.xml.2 ├── thermal_conf.xml.3 ├── thermal_conf.xml.4 ├── thermal_conf.xml.5 ├── thermal_conf.xml.6 ├── thermal_conf.xml.7 ├── thermal_config_dump.py ├── thermal_temp_dump.py ├── thermald_debug_output_graph.py ├── thermald_optimization_with_dptfxtract └── thermald_test_kern_module.c ├── thermal_daemon_usage.txt ├── thermald-resource.gresource.xml └── tools └── thermald_set_pref.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/Android.mk -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/README.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/SECURITY.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/configure.ac -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/data/Makefile.am -------------------------------------------------------------------------------- /data/org.freedesktop.thermald.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/data/org.freedesktop.thermald.conf.in -------------------------------------------------------------------------------- /data/org.freedesktop.thermald.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/data/org.freedesktop.thermald.service.in -------------------------------------------------------------------------------- /data/thermal-conf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/data/thermal-conf.xml -------------------------------------------------------------------------------- /data/thermal-cpu-cdev-order.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/data/thermal-cpu-cdev-order.xml -------------------------------------------------------------------------------- /data/thermald.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/data/thermald.service.in -------------------------------------------------------------------------------- /distribution_integration/android_dbus_service_information: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/distribution_integration/android_dbus_service_information -------------------------------------------------------------------------------- /distribution_integration/chromeos_gentoo_ebuild_spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/distribution_integration/chromeos_gentoo_ebuild_spec -------------------------------------------------------------------------------- /distribution_integration/make_rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/distribution_integration/make_rpm.sh -------------------------------------------------------------------------------- /distribution_integration/thermal-daemon.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/distribution_integration/thermal-daemon.spec -------------------------------------------------------------------------------- /docs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/docs/Makefile.am -------------------------------------------------------------------------------- /docs/thermal_daemon-docs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/docs/thermal_daemon-docs.xml -------------------------------------------------------------------------------- /docs/version.xml.in: -------------------------------------------------------------------------------- 1 | @VERSION@ 2 | -------------------------------------------------------------------------------- /man/thermal-conf.xml.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/man/thermal-conf.xml.5 -------------------------------------------------------------------------------- /man/thermald.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/man/thermald.8 -------------------------------------------------------------------------------- /misc/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/misc/valgrind.supp -------------------------------------------------------------------------------- /src/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/7zTypes.h -------------------------------------------------------------------------------- /src/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/LzmaDec.c -------------------------------------------------------------------------------- /src/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/LzmaDec.h -------------------------------------------------------------------------------- /src/acpi_thermal_rel_ioct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/acpi_thermal_rel_ioct.h -------------------------------------------------------------------------------- /src/android_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/android_main.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/thd_adaptive_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_adaptive_types.h -------------------------------------------------------------------------------- /src/thd_cdev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev.cpp -------------------------------------------------------------------------------- /src/thd_cdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev.h -------------------------------------------------------------------------------- /src/thd_cdev_backlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_backlight.cpp -------------------------------------------------------------------------------- /src/thd_cdev_backlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_backlight.h -------------------------------------------------------------------------------- /src/thd_cdev_cpufreq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_cpufreq.cpp -------------------------------------------------------------------------------- /src/thd_cdev_cpufreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_cpufreq.h -------------------------------------------------------------------------------- /src/thd_cdev_gen_sysfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_gen_sysfs.cpp -------------------------------------------------------------------------------- /src/thd_cdev_gen_sysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_gen_sysfs.h -------------------------------------------------------------------------------- /src/thd_cdev_intel_pstate_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_intel_pstate_driver.cpp -------------------------------------------------------------------------------- /src/thd_cdev_intel_pstate_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_intel_pstate_driver.h -------------------------------------------------------------------------------- /src/thd_cdev_order_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_order_parser.cpp -------------------------------------------------------------------------------- /src/thd_cdev_order_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_order_parser.h -------------------------------------------------------------------------------- /src/thd_cdev_rapl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_rapl.cpp -------------------------------------------------------------------------------- /src/thd_cdev_rapl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_rapl.h -------------------------------------------------------------------------------- /src/thd_cdev_rapl_dram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_rapl_dram.cpp -------------------------------------------------------------------------------- /src/thd_cdev_rapl_dram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_rapl_dram.h -------------------------------------------------------------------------------- /src/thd_cdev_therm_sys_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_therm_sys_fs.cpp -------------------------------------------------------------------------------- /src/thd_cdev_therm_sys_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cdev_therm_sys_fs.h -------------------------------------------------------------------------------- /src/thd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_common.h -------------------------------------------------------------------------------- /src/thd_cpu_default_binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cpu_default_binding.cpp -------------------------------------------------------------------------------- /src/thd_cpu_default_binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_cpu_default_binding.h -------------------------------------------------------------------------------- /src/thd_dbus_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_dbus_interface.cpp -------------------------------------------------------------------------------- /src/thd_dbus_interface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_dbus_interface.xml -------------------------------------------------------------------------------- /src/thd_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_engine.cpp -------------------------------------------------------------------------------- /src/thd_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_engine.h -------------------------------------------------------------------------------- /src/thd_engine_adaptive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_engine_adaptive.cpp -------------------------------------------------------------------------------- /src/thd_engine_adaptive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_engine_adaptive.h -------------------------------------------------------------------------------- /src/thd_engine_default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_engine_default.cpp -------------------------------------------------------------------------------- /src/thd_engine_default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_engine_default.h -------------------------------------------------------------------------------- /src/thd_gddv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_gddv.cpp -------------------------------------------------------------------------------- /src/thd_gddv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_gddv.h -------------------------------------------------------------------------------- /src/thd_int3400.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_int3400.cpp -------------------------------------------------------------------------------- /src/thd_int3400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_int3400.h -------------------------------------------------------------------------------- /src/thd_kobj_uevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_kobj_uevent.cpp -------------------------------------------------------------------------------- /src/thd_kobj_uevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_kobj_uevent.h -------------------------------------------------------------------------------- /src/thd_lzma_dec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_lzma_dec.cpp -------------------------------------------------------------------------------- /src/thd_lzma_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_lzma_dec.h -------------------------------------------------------------------------------- /src/thd_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_parse.cpp -------------------------------------------------------------------------------- /src/thd_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_parse.h -------------------------------------------------------------------------------- /src/thd_pid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_pid.cpp -------------------------------------------------------------------------------- /src/thd_pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_pid.h -------------------------------------------------------------------------------- /src/thd_preference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_preference.cpp -------------------------------------------------------------------------------- /src/thd_preference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_preference.h -------------------------------------------------------------------------------- /src/thd_rapl_power_meter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_rapl_power_meter.cpp -------------------------------------------------------------------------------- /src/thd_rapl_power_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_rapl_power_meter.h -------------------------------------------------------------------------------- /src/thd_sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_sensor.cpp -------------------------------------------------------------------------------- /src/thd_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_sensor.h -------------------------------------------------------------------------------- /src/thd_sensor_rapl_power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_sensor_rapl_power.cpp -------------------------------------------------------------------------------- /src/thd_sensor_rapl_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_sensor_rapl_power.h -------------------------------------------------------------------------------- /src/thd_sensor_virtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_sensor_virtual.cpp -------------------------------------------------------------------------------- /src/thd_sensor_virtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_sensor_virtual.h -------------------------------------------------------------------------------- /src/thd_sys_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_sys_fs.cpp -------------------------------------------------------------------------------- /src/thd_sys_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_sys_fs.h -------------------------------------------------------------------------------- /src/thd_trip_point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_trip_point.cpp -------------------------------------------------------------------------------- /src/thd_trip_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_trip_point.h -------------------------------------------------------------------------------- /src/thd_trt_art_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_trt_art_reader.cpp -------------------------------------------------------------------------------- /src/thd_trt_art_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_trt_art_reader.h -------------------------------------------------------------------------------- /src/thd_zone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone.cpp -------------------------------------------------------------------------------- /src/thd_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone.h -------------------------------------------------------------------------------- /src/thd_zone_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone_cpu.cpp -------------------------------------------------------------------------------- /src/thd_zone_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone_cpu.h -------------------------------------------------------------------------------- /src/thd_zone_dynamic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone_dynamic.cpp -------------------------------------------------------------------------------- /src/thd_zone_dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone_dynamic.h -------------------------------------------------------------------------------- /src/thd_zone_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone_generic.cpp -------------------------------------------------------------------------------- /src/thd_zone_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone_generic.h -------------------------------------------------------------------------------- /src/thd_zone_rapl_power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone_rapl_power.cpp -------------------------------------------------------------------------------- /src/thd_zone_rapl_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone_rapl_power.h -------------------------------------------------------------------------------- /src/thd_zone_therm_sys_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone_therm_sys_fs.cpp -------------------------------------------------------------------------------- /src/thd_zone_therm_sys_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thd_zone_therm_sys_fs.h -------------------------------------------------------------------------------- /src/thermald.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/src/thermald.h -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/cpufreq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/cpufreq.sh -------------------------------------------------------------------------------- /test/cpufreq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/cpufreq.xml -------------------------------------------------------------------------------- /test/default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/default.sh -------------------------------------------------------------------------------- /test/default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/default.xml -------------------------------------------------------------------------------- /test/exec_config_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/exec_config_tests.sh -------------------------------------------------------------------------------- /test/gddv_tests/gddv_json_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/gddv_tests/gddv_json_example.json -------------------------------------------------------------------------------- /test/gddv_tests/gddv_json_test_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/gddv_tests/gddv_json_test_0.json -------------------------------------------------------------------------------- /test/gddv_tests/gddv_json_test_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/gddv_tests/gddv_json_test_1.json -------------------------------------------------------------------------------- /test/gddv_tests/gddv_json_test_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/gddv_tests/gddv_json_test_2.json -------------------------------------------------------------------------------- /test/gddv_tests/gddv_test_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/gddv_tests/gddv_test_gen.py -------------------------------------------------------------------------------- /test/intel_pstate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/intel_pstate.sh -------------------------------------------------------------------------------- /test/intel_pstate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/intel_pstate.xml -------------------------------------------------------------------------------- /test/intel_rapl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/intel_rapl.xml -------------------------------------------------------------------------------- /test/powerclamp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/powerclamp.sh -------------------------------------------------------------------------------- /test/powerclamp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/powerclamp.xml -------------------------------------------------------------------------------- /test/processor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/processor.sh -------------------------------------------------------------------------------- /test/processor_acpi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/processor_acpi.xml -------------------------------------------------------------------------------- /test/rapl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/rapl.sh -------------------------------------------------------------------------------- /test/readme_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/readme_test.txt -------------------------------------------------------------------------------- /test/run_all_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/run_all_tests.sh -------------------------------------------------------------------------------- /test/test1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/test1.xml -------------------------------------------------------------------------------- /test/test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/test2.xml -------------------------------------------------------------------------------- /test/test3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/test3.xml -------------------------------------------------------------------------------- /test/test4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/test4.xml -------------------------------------------------------------------------------- /test/test5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/test5.xml -------------------------------------------------------------------------------- /test/test6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/test6.xml -------------------------------------------------------------------------------- /test/test7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/test7.xml -------------------------------------------------------------------------------- /test/test_cases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/test_cases.txt -------------------------------------------------------------------------------- /test/thermal-debug-dump-fedora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal-debug-dump-fedora.sh -------------------------------------------------------------------------------- /test/thermal-debug-dump-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal-debug-dump-ubuntu.sh -------------------------------------------------------------------------------- /test/thermal-dptf-tables-test-fedora.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal-dptf-tables-test-fedora.sh -------------------------------------------------------------------------------- /test/thermal-dptf-tables-test-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal-dptf-tables-test-ubuntu.sh -------------------------------------------------------------------------------- /test/thermal_conf.xml.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal_conf.xml.1 -------------------------------------------------------------------------------- /test/thermal_conf.xml.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal_conf.xml.2 -------------------------------------------------------------------------------- /test/thermal_conf.xml.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal_conf.xml.3 -------------------------------------------------------------------------------- /test/thermal_conf.xml.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal_conf.xml.4 -------------------------------------------------------------------------------- /test/thermal_conf.xml.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal_conf.xml.5 -------------------------------------------------------------------------------- /test/thermal_conf.xml.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal_conf.xml.6 -------------------------------------------------------------------------------- /test/thermal_conf.xml.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal_conf.xml.7 -------------------------------------------------------------------------------- /test/thermal_config_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal_config_dump.py -------------------------------------------------------------------------------- /test/thermal_temp_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermal_temp_dump.py -------------------------------------------------------------------------------- /test/thermald_debug_output_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermald_debug_output_graph.py -------------------------------------------------------------------------------- /test/thermald_optimization_with_dptfxtract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermald_optimization_with_dptfxtract -------------------------------------------------------------------------------- /test/thermald_test_kern_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/test/thermald_test_kern_module.c -------------------------------------------------------------------------------- /thermal_daemon_usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/thermal_daemon_usage.txt -------------------------------------------------------------------------------- /thermald-resource.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/thermald-resource.gresource.xml -------------------------------------------------------------------------------- /tools/thermald_set_pref.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/thermal_daemon/HEAD/tools/thermald_set_pref.sh --------------------------------------------------------------------------------