progress dump

This commit is contained in:
Bloxx12 2025-05-26 12:23:30 +02:00
commit a951911578
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E
6 changed files with 68 additions and 46 deletions

View file

@ -38,6 +38,16 @@ in {
governor = "performance";
# Turbo boost setting: "always", "auto", or "never"
turbo = "auto";
# Enable or disable automatic turbo management (when turbo = "auto")
enable_auto_turbo = true;
# Custom thresholds for auto turbo management
turbo_auto_settings = {
load_threshold_high = 70.0;
load_threshold_low = 30.0;
temp_threshold_high = 75.0;
initial_turbo_state = false; # whether turbo should be initially enabled (false = disabled)
};
# Energy Performance Preference
epp = "performance";
# Energy Performance Bias (0-15 scale or named value)
@ -54,9 +64,24 @@ in {
battery = {
governor = "powersave";
turbo = "auto";
# More conservative auto turbo settings on battery
enable_auto_turbo = true;
turbo_auto_settings = {
load_threshold_high = 80.0;
load_threshold_low = 40.0;
temp_threshold_high = 70.0;
# start with turbo disabled on battery for power savings
initial_turbo_state = false;
};
epp = "power";
epb = "balance_power";
platform_profile = "low-power";
# Global battery charging thresholds (applied to both profiles unless overridden)
# Start charging at 40%, stop at 80% - extends battery lifespan
# take precedence over this global setting
battery_charge_thresholds = [40 90];
min_freq_mhz = 800;
max_freq_mhz = 2500;
};