steamos-manager/src/bin/steamosctl.rs
Jeremy Whiting f30c54c907 Add gpu power profile(s) property management to steamosctl.
Adds get-gpu-power-profiles to list supported profiles
get-gpu-power-profile to list current and
set-gpu-power-profile to set.
2024-06-05 15:38:25 -06:00

325 lines
10 KiB
Rust

/*
* Copyright © 2023 Collabora Ltd.
* Copyright © 2024 Valve Software
*
* SPDX-License-Identifier: MIT
*/
use anyhow::Result;
use clap::{Parser, Subcommand};
use itertools::Itertools;
use std::ops::Deref;
use steamos_manager::cec::HdmiCecState;
use steamos_manager::hardware::FanControlState;
use steamos_manager::power::{GPUPerformanceLevel, GPUPowerProfile};
use steamos_manager::proxy::ManagerProxy;
use steamos_manager::wifi::{WifiBackend, WifiDebugMode, WifiPowerManagement};
use zbus::fdo::PropertiesProxy;
use zbus::names::InterfaceName;
use zbus::{zvariant, Connection};
#[derive(Parser)]
#[command(version, about, long_about = None)]
struct Args {
#[command(subcommand)]
command: Commands,
}
#[derive(Subcommand)]
enum Commands {
/// Get all properties
GetAllProperties,
/// Get luminance sensor calibration gain
GetAlsCalibrationGain,
/// Get if the hardware is currently supported
GetHardwareCurrentlySupported,
/// Set the fan control state
SetFanControlState {
/// Valid options are bios, os
state: FanControlState,
},
/// Get the fan control state
GetFanControlState,
/// Get the GPU power profiles supported on this device
GetGPUPowerProfiles,
/// Get the current GPU power profile
GetGPUPowerProfile,
/// Set the GPU Power profile
SetGPUPowerProfile {
/// Valid profiles are get-gpu-power-profiles.
profile: GPUPowerProfile,
},
/// Set the GPU performance level
SetGPUPerformanceLevel {
/// Valid levels are auto, low, high, manual, peak_performance
level: GPUPerformanceLevel,
},
/// Get the GPU performance level
GetGPUPerformanceLevel,
/// Set the GPU clock value manually. Only works when performance level is set to Manual
SetManualGPUClock {
/// GPU clock frequency in MHz
freq: u32,
},
/// Get the GPU clock frequency, in MHz. Only works when performance level is set to Manual
GetManualGPUClock,
/// Get the maximum allowed GPU clock frequency for the Manual performance level
GetManualGPUClockMax,
/// Get the minimum allowed GPU clock frequency for the Manual performance level
GetManualGPUClockMin,
/// Set the TDP limit
SetTDPLimit {
/// TDP limit, in W
limit: u32,
},
/// Get the TDP limit
GetTDPLimit,
/// Get the maximum allowed TDP limit
GetTDPLimitMax,
/// Get the minimum allowed TDP limit
GetTDPLimitMin,
/// Get the current API version
GetVersion,
/// Set the wifi backend if possible
SetWifiBackend {
/// Supported backends are iwd, wpa_supplicant
backend: WifiBackend,
},
/// Get the wifi backend
GetWifiBackend,
/// Set wifi debug mode
SetWifiDebugMode {
/// Valid modes are on, off
mode: WifiDebugMode,
/// The size of the debug buffer, in bytes
#[arg(default_value_t = 20000)]
buffer: u32,
},
/// Get wifi debug mode
GetWifiDebugMode,
/// Set the wifi power management state
SetWifiPowerManagementState {
/// Valid modes are enabled, disabled
state: WifiPowerManagement,
},
/// Get the wifi power management state
GetWifiPowerManagementState,
/// Get the state of HDMI-CEC support
GetHdmiCecState,
/// Set the state of HDMI-CEC support
SetHdmiCecState {
/// Valid modes are disabled, control-only, control-and-wake
state: HdmiCecState,
},
/// Update the BIOS, if possible
UpdateBios,
/// Update the dock, if possible
UpdateDock,
/// Trim applicable drives
TrimDevices,
/// Factory reset the device
FactoryReset,
}
#[tokio::main]
async fn main() -> Result<()> {
// This is a command-line utility that calls api using dbus
// First set up which command line arguments we support
let args = Args::parse();
// Then get a connection to the service
let conn = Connection::session().await?;
let proxy = ManagerProxy::builder(&conn).build().await?;
// Then process arguments
match &args.command {
Commands::GetAllProperties => {
let properties_proxy = PropertiesProxy::new(
&conn,
"com.steampowered.SteamOSManager1",
"/com/steampowered/SteamOSManager1",
)
.await?;
let name = InterfaceName::try_from("com.steampowered.SteamOSManager1.Manager")?;
let properties = properties_proxy
.get_all(zvariant::Optional::from(Some(name)))
.await?;
for key in properties.keys().sorted() {
let value = &properties[key];
let val = value.deref();
println!("{key}: {val}");
}
}
Commands::GetAlsCalibrationGain => {
let gain = proxy.als_calibration_gain().await?;
println!("ALS calibration gain: {gain}");
}
Commands::GetHardwareCurrentlySupported => {
let supported = proxy.hardware_currently_supported().await?;
println!("Hardware currently supported: {supported}");
}
Commands::GetVersion => {
let version = proxy.version().await?;
println!("Version: {version}");
}
Commands::SetFanControlState { state } => {
proxy.set_fan_control_state(*state as u32).await?;
}
Commands::GetFanControlState => {
let state = proxy.fan_control_state().await?;
match FanControlState::try_from(state) {
Ok(s) => println!("Fan control state: {}", s),
Err(_) => println!("Got unknown value {state} from backend"),
}
}
Commands::GetGPUPowerProfiles => {
let profiles = proxy.gpu_power_profiles().await?;
println!("Profiles:\n");
for key in profiles.keys().sorted() {
let name = &profiles[key];
println!("{key}: {name}");
}
}
Commands::GetGPUPowerProfile => {
let profile = proxy.gpu_power_profile().await?;
let profile_type = GPUPowerProfile::try_from(profile);
match profile_type {
Ok(t) => {
let name = t.to_string();
println!("GPU Power Profile: {profile} {name}");
}
Err(_) => {
println!("Unknown GPU power profile or unable to get type from {profile}")
}
}
}
Commands::SetGPUPowerProfile { profile } => {
proxy.set_gpu_power_profile(*profile as u32).await?;
}
Commands::SetGPUPerformanceLevel { level } => {
proxy.set_gpu_performance_level(*level as u32).await?;
}
Commands::GetGPUPerformanceLevel => {
let level = proxy.gpu_performance_level().await?;
match GPUPerformanceLevel::try_from(level) {
Ok(l) => println!("GPU performance level: {}", l),
Err(_) => println!("Got unknown value {level} from backend"),
}
}
Commands::SetManualGPUClock { freq } => {
proxy.set_manual_gpu_clock(*freq).await?;
}
Commands::GetManualGPUClock => {
let clock = proxy.manual_gpu_clock().await?;
println!("Manual GPU Clock: {clock}");
}
Commands::GetManualGPUClockMax => {
let value = proxy.manual_gpu_clock_max().await?;
println!("Manual GPU Clock Max: {value}");
}
Commands::GetManualGPUClockMin => {
let value = proxy.manual_gpu_clock_min().await?;
println!("Manual GPU Clock Min: {value}");
}
Commands::SetTDPLimit { limit } => {
proxy.set_tdp_limit(*limit).await?;
}
Commands::GetTDPLimit => {
let limit = proxy.tdp_limit().await?;
println!("TDP limit: {limit}");
}
Commands::GetTDPLimitMax => {
let value = proxy.tdp_limit_max().await?;
println!("TDP limit max: {value}");
}
Commands::GetTDPLimitMin => {
let value = proxy.tdp_limit_min().await?;
println!("TDP limit min: {value}");
}
Commands::SetWifiBackend { backend } => {
proxy.set_wifi_backend(*backend as u32).await?;
}
Commands::GetWifiBackend => {
let backend = proxy.wifi_backend().await?;
match WifiBackend::try_from(backend) {
Ok(be) => println!("Wifi backend: {}", be),
Err(_) => println!("Got unknown value {backend} from backend"),
}
}
Commands::SetWifiDebugMode { mode, buffer } => {
proxy.set_wifi_debug_mode(*mode as u32, *buffer).await?;
}
Commands::GetWifiDebugMode => {
let mode = proxy.wifi_debug_mode_state().await?;
match WifiDebugMode::try_from(mode) {
Ok(m) => println!("Wifi debug mode: {}", m),
Err(_) => println!("Got unknown value {mode} from backend"),
}
}
Commands::SetWifiPowerManagementState { state } => {
proxy.set_wifi_power_management_state(*state as u32).await?;
}
Commands::GetWifiPowerManagementState => {
let state = proxy.wifi_power_management_state().await?;
match WifiPowerManagement::try_from(state) {
Ok(s) => println!("Wifi power management state: {}", s),
Err(_) => println!("Got unknown value {state} from backend"),
}
}
Commands::SetHdmiCecState { state } => {
proxy.set_hdmi_cec_state(*state as u32).await?;
}
Commands::GetHdmiCecState => {
let state = proxy.hdmi_cec_state().await?;
match HdmiCecState::try_from(state) {
Ok(s) => println!("HDMI-CEC state: {}", s.to_human_readable()),
Err(_) => println!("Got unknown value {state} from backend"),
}
}
Commands::UpdateBios => {
let _ = proxy.update_bios().await?;
}
Commands::UpdateDock => {
let _ = proxy.update_dock().await?;
}
Commands::FactoryReset => {
let _ = proxy.prepare_factory_reset().await?;
}
Commands::TrimDevices => {
let _ = proxy.trim_devices().await?;
}
}
Ok(())
}