diff options
author | Mitul Golani <mitulkumar.ajitkumar.golani@intel.com> | 2024-06-10 10:21:58 +0300 |
---|---|---|
committer | Suraj Kandpal <suraj.kandpal@intel.com> | 2024-06-11 07:28:11 +0300 |
commit | a20c6d954d75b2e188618e36de43d13d413d4e06 (patch) | |
tree | 17b9387aea6f32232e990f750040b41b8b0fc107 /include/drm | |
parent | de065ceeaa2f78c770d5dc586fbd4fa4f915c606 (diff) | |
download | linux-a20c6d954d75b2e188618e36de43d13d413d4e06.tar.xz |
drm/dp: Add refresh rate divider to struct representing AS SDP
Add target_rr_divider to structure representing AS SDP.
It is valid only in FAVT mode, sink device ignores the bit in AVT
mode.
--v2:
- Update commit header and send patch to dri-devel.
Signed-off-by: Mitul Golani <mitulkumar.ajitkumar.golani@intel.com>
Reviewed-by: Arun R Murthy <arun.r.murthy@intel.com>
Acked-by: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240610072203.24956-6-mitulkumar.ajitkumar.golani@intel.com
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/display/drm_dp_helper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/drm/display/drm_dp_helper.h b/include/drm/display/drm_dp_helper.h index 8bed890eec2c..393dbf8cf6ab 100644 --- a/include/drm/display/drm_dp_helper.h +++ b/include/drm/display/drm_dp_helper.h @@ -122,6 +122,7 @@ struct drm_dp_as_sdp { int target_rr; int duration_incr_ms; int duration_decr_ms; + bool target_rr_divider; enum operation_mode mode; }; |