SYNOPSIS
- bool intel_display_power_is_enabled(struct drm_i915_private * dev_priv, enum intel_display_power_domain domain);
ARGUMENTS
dev_priv
-
- i915 device instance
domain
- power domain to check
DESCRIPTION
This function can be used to check the hw power domain state. It is mostly used in hardware state readout functions. Everywhere else code should rely upon explicit power domain reference counting to ensure that the hardware block is powered up before accessing it.
Callers must hold the relevant modesetting locks to ensure that concurrent threads can't disable the power well while the caller tries to read a few registers.
RETURNS
True when the power domain is enabled, false otherwise.
AUTHORS
Jesse Barnes <[email protected]>
Intel Corporation,
- Initial version
Laurent Pinchart <[email protected]>
Ideas on board SPRL,
- Driver internals
Daniel Vetter <[email protected]>
Intel Corporation,
- Contributions all over the place
Lukas Wunner <[email protected]>
- vga_switcheroo documentation
COPYRIGHT