Skip to content

Commit 1482ec0

Browse files
committed
drm: Add missing DP DSC extended capability definitions.
Adding DP DSC register definitions, we might need for further DSC implementation, supporting MST and DP branch pass-through mode. v2: - Fixed checkpatch comment warning v3: - Removed function which is not yet used(Jani Nikula) Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com> Acked-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20221101094222.22091-2-stanislav.lisovskiy@intel.com
1 parent f052feb commit 1482ec0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

include/drm/display/drm_dp.h

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,8 @@
240240
#define DP_DSC_SUPPORT 0x060 /* DP 1.4 */
241241
# define DP_DSC_DECOMPRESSION_IS_SUPPORTED (1 << 0)
242242
# define DP_DSC_PASSTHROUGH_IS_SUPPORTED (1 << 1)
243+
# define DP_DSC_DYNAMIC_PPS_UPDATE_SUPPORT_COMP_TO_COMP (1 << 2)
244+
# define DP_DSC_DYNAMIC_PPS_UPDATE_SUPPORT_UNCOMP_TO_COMP (1 << 3)
243245

244246
#define DP_DSC_REV 0x061
245247
# define DP_DSC_MAJOR_MASK (0xf << 0)
@@ -278,12 +280,15 @@
278280

279281
#define DP_DSC_BLK_PREDICTION_SUPPORT 0x066
280282
# define DP_DSC_BLK_PREDICTION_IS_SUPPORTED (1 << 0)
283+
# define DP_DSC_RGB_COLOR_CONV_BYPASS_SUPPORT (1 << 1)
281284

282285
#define DP_DSC_MAX_BITS_PER_PIXEL_LOW 0x067 /* eDP 1.4 */
283286

284287
#define DP_DSC_MAX_BITS_PER_PIXEL_HI 0x068 /* eDP 1.4 */
285288
# define DP_DSC_MAX_BITS_PER_PIXEL_HI_MASK (0x3 << 0)
286289
# define DP_DSC_MAX_BITS_PER_PIXEL_HI_SHIFT 8
290+
# define DP_DSC_MAX_BPP_DELTA_VERSION_MASK 0x06
291+
# define DP_DSC_MAX_BPP_DELTA_AVAILABILITY 0x08
287292

288293
#define DP_DSC_DEC_COLOR_FORMAT_CAP 0x069
289294
# define DP_DSC_RGB (1 << 0)
@@ -345,11 +350,13 @@
345350
# define DP_DSC_24_PER_DP_DSC_SINK (1 << 2)
346351

347352
#define DP_DSC_BITS_PER_PIXEL_INC 0x06F
353+
# define DP_DSC_RGB_YCbCr444_MAX_BPP_DELTA_MASK 0x1f
354+
# define DP_DSC_RGB_YCbCr420_MAX_BPP_DELTA_MASK 0xe0
348355
# define DP_DSC_BITS_PER_PIXEL_1_16 0x0
349356
# define DP_DSC_BITS_PER_PIXEL_1_8 0x1
350357
# define DP_DSC_BITS_PER_PIXEL_1_4 0x2
351358
# define DP_DSC_BITS_PER_PIXEL_1_2 0x3
352-
# define DP_DSC_BITS_PER_PIXEL_1 0x4
359+
# define DP_DSC_BITS_PER_PIXEL_1_1 0x4
353360

354361
#define DP_PSR_SUPPORT 0x070 /* XXX 1.2? */
355362
# define DP_PSR_IS_SUPPORTED 1

0 commit comments

Comments
 (0)