diff options
author | Ville Syrjälä <[email protected]> | 2023-06-09 17:14:04 +0300 |
---|---|---|
committer | Ville Syrjälä <[email protected]> | 2023-06-16 17:59:44 +0300 |
commit | 783d8b80871f6014a5c73182f63e1ec3c6bdfcd2 (patch) | |
tree | 06a063550b00c1696f218e2574049cc376a10ee4 | |
parent | 3e3c8e294ba82351fc6164e52f4302dbe4fef0ed (diff) |
drm/i915/psr: Re-enable PSR1 on hsw/bdw
All known issues fixed now, so re-enable PSR1 on hsw/bdw.
Signed-off-by: Ville Syrjälä <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Reviewed-by: Jouni Högander <[email protected]>
-rw-r--r-- | drivers/gpu/drm/i915/display/intel_display_device.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c index 3fd30e7f0062..c48642f897e2 100644 --- a/drivers/gpu/drm/i915/display/intel_display_device.c +++ b/drivers/gpu/drm/i915/display/intel_display_device.c @@ -380,6 +380,8 @@ static const struct intel_display_device_info hsw_display = { .has_dp_mst = 1, .has_fpga_dbg = 1, .has_hotplug = 1, + .has_psr = 1, + .has_psr_hw_tracking = 1, HSW_PIPE_OFFSETS, IVB_CURSOR_OFFSETS, IVB_COLORS, @@ -397,6 +399,8 @@ static const struct intel_display_device_info bdw_display = { .has_dp_mst = 1, .has_fpga_dbg = 1, .has_hotplug = 1, + .has_psr = 1, + .has_psr_hw_tracking = 1, HSW_PIPE_OFFSETS, IVB_CURSOR_OFFSETS, IVB_COLORS, |