Top |
enum | igt_runtime_pm_status |
enum | igt_acpi_d_state |
struct | igt_pm_pci_dev_pwrattr |
struct | igt_device_card |
This library provides various helpers to enable power management for, and in some cases subsequently allow restoring the old behaviour of, various external components that by default are set up in a way that interferes with the testing of our power management functionality.
void
igt_pm_enable_audio_runtime_pm (void
);
We know that if we don't enable audio runtime PM, snd_hda_intel will never release its power well refcount, and we'll never reach the LPSP state. There's no guarantee that it will release the power well if we enable runtime PM, but at least we can try.
We don't have any assertions on open since the user may not even have snd_hda_intel loaded, which is not a problem.
void
igt_pm_enable_sata_link_power_management
(void
);
Enables the min_power policy for SATA link power management. Without this we cannot reach deep runtime power states.
void
igt_pm_restore_sata_link_power_management
(void
);
Restores the link power management policies to the values prior to enabling min_power.
Caveat: If the system supports hotplugging and hotplugging takes place during our testing so that the hosts change numbers we might restore the settings to the wrong hosts.
bool
igt_setup_runtime_pm (int device
);
Sets up the runtime PM helper functions and enables runtime PM. To speed up tests the autosuspend delay is set to 0.
Return: True if runtime pm is available, false otherwise.
void
igt_disable_runtime_pm (void
);
Disables the runtime pm for i915 device. igt_disable_runtime_pm assumes that igt_setup_runtime_pm has already called to save runtime autosuspend and control attributes.
void
igt_restore_runtime_pm (void
);
Restores the runtime PM configuration as it was before the call to igt_setup_runtime_pm.
enum igt_runtime_pm_status
igt_get_runtime_pm_status (void
);
Return: The current runtime PM status.
bool
igt_wait_for_pm_status (enum igt_runtime_pm_status status
);
Waits until for the driver to switch to into the desired runtime PM status, with a 10 second timeout.
Return: True if the desired runtime PM status was attained, false if the operation timed out.
bool
igt_pm_dmc_loaded (int debugfs
);
Check whether DMC FW is loaded or not. DMC FW is require for few Display C states like DC5 and DC6. FW does the Context Save and Restore during Display C States entry and exit.
Return: True if DMC FW is loaded otherwise false.
bool
igt_pm_pc8_plus_residencies_enabled (int msr_fd
);
Check whether BIOS has disabled the PC8 package deeper state.
Return: True if PC8+ package deeper state enabled on machine otherwise false.
bool i915_output_is_lpsp_capable (int drm_fd
,igt_output_t *output
);
Checks LPSP capability for a given output.
Return: True if given output is LPSP capable otherwise false.
int
igt_pm_get_pcie_acpihp_slot (struct pci_device *pci_dev
);
Gets PCI bridge acpi hotplug slot number, if bridge's ACPI firmware_node handle supports _SUN method.
Return: PCIe bridge Slot number or -ENOENT number in case firmware_node/sun is not supported by the bridge.
bool
igt_pm_acpi_d3cold_supported (struct pci_device *pci_dev
);
Checks ACPI D3Cold support.
Return: True if ACPI D3Cold supported otherwise false.
enum igt_acpi_d_state
igt_pm_get_acpi_real_d_state (struct pci_device *pci_dev
);
Gets ACPI D state for a given root port.
Return: igt_acpi_d_state state.
int
igt_pm_get_autosuspend_delay (struct pci_device *pci_dev
);
Return: The autosuspend delay time in milliseconds.
void igt_pm_set_autosuspend_delay (struct pci_device *pci_dev
,int delay_ms
);
Sets the autosuspend delay value for the PCI device through.
void igt_pm_enable_pci_card_runtime_pm (struct pci_device *root
,struct pci_device *i915
);
Enables runtime PM for all PCI endpoints devices for a given root port by setting power/control attr to "auto" and setting autosuspend_delay_ms to zero.
void igt_pm_get_d3cold_allowed (const char *pci_slot_name
,uint32_t *value
);
Reads the value of d3cold_allowed attribute of the PCI device.
void igt_pm_set_d3cold_allowed (const char *pci_slot_name
,uint32_t value
);
Writes the value to d3cold_allowed attribute of PCI device.
void
igt_pm_setup_pci_card_runtime_pm (struct pci_device *pci_dev
);
Setup runtime PM for all PCI endpoints devices for a given root port by enabling runtime suspend and setting autosuspend_delay_ms to zero. It also saves and restore power control attribute for all PCI endpoints devices under given root port.
void
igt_pm_restore_pci_card_runtime_pm (void
);
Restores control and autosuspend_delay_ms power attribute for all
PCI endpoints devices under gfx root port, which were saved earlier
by igt_pm_setup_pci_card_runtime_pm()
.
void
igt_pm_print_pci_card_runtime_status (void
);
Prints runtime suspend status for all PCI endpoints devices for a given root port.
bool i915_is_slpc_enabled_gt (int drm_fd
,int gt
);
Return: True if SLPC is enabled on a given gt
.
bool
i915_is_slpc_enabled (int drm_fd
);
Return: True if SLPC is enabled on the device.
uint64_t
igt_pm_get_runtime_suspended_time (struct pci_device *pci_dev
);
Return: The total time in milliseconds that the device has been suspended.
uint64_t
igt_pm_get_runtime_active_time (struct pci_device *pci_dev
);
Return: The total time in milliseconds that the device has been active.
int
igt_pm_get_runtime_usage (struct pci_device *pci_dev
);
Return: The runtime PM usage count of a device.