* [PATCH v7 1/7] drm/edid: rename VESA block parsing functions to more generic name
2025-12-02 11:02 [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support Yaroslav Bolyukin
@ 2025-12-02 11:02 ` Yaroslav Bolyukin
2025-12-02 11:02 ` [PATCH v7 2/7] drm/edid: prepare for VESA vendor-specific data block extension Yaroslav Bolyukin
` (6 subsequent siblings)
7 siblings, 0 replies; 15+ messages in thread
From: Yaroslav Bolyukin @ 2025-12-02 11:02 UTC (permalink / raw)
To: Ville Syrjälä, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter, Jani Nikula
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Wayne Lin, amd-gfx, linux-kernel, dri-devel,
Yaroslav Bolyukin, Jani Nikula
Those functions would also parse DSC Bits Per Pixel value in the future
commits.
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/drm_edid.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index 26bb7710a462..64f7a94dd9e4 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -6527,8 +6527,8 @@ static void drm_get_monitor_range(struct drm_connector *connector,
info->monitor_range.min_vfreq, info->monitor_range.max_vfreq);
}
-static void drm_parse_vesa_mso_data(struct drm_connector *connector,
- const struct displayid_block *block)
+static void drm_parse_vesa_specific_block(struct drm_connector *connector,
+ const struct displayid_block *block)
{
struct displayid_vesa_vendor_specific_block *vesa =
(struct displayid_vesa_vendor_specific_block *)block;
@@ -6587,8 +6587,8 @@ static void drm_parse_vesa_mso_data(struct drm_connector *connector,
info->mso_stream_count, info->mso_pixel_overlap);
}
-static void drm_update_mso(struct drm_connector *connector,
- const struct drm_edid *drm_edid)
+static void drm_update_vesa_specific_block(struct drm_connector *connector,
+ const struct drm_edid *drm_edid)
{
const struct displayid_block *block;
struct displayid_iter iter;
@@ -6596,7 +6596,7 @@ static void drm_update_mso(struct drm_connector *connector,
displayid_iter_edid_begin(drm_edid, &iter);
displayid_iter_for_each(block, &iter) {
if (block->tag == DATA_BLOCK_2_VENDOR_SPECIFIC)
- drm_parse_vesa_mso_data(connector, block);
+ drm_parse_vesa_specific_block(connector, block);
}
displayid_iter_end(&iter);
}
@@ -6756,7 +6756,7 @@ static void update_display_info(struct drm_connector *connector,
if (edid->features & DRM_EDID_FEATURE_RGB_YCRCB422)
info->color_formats |= DRM_COLOR_FORMAT_YCBCR422;
- drm_update_mso(connector, drm_edid);
+ drm_update_vesa_specific_block(connector, drm_edid);
out:
if (drm_edid_has_internal_quirk(connector, EDID_QUIRK_NON_DESKTOP)) {
--
2.51.2
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v7 2/7] drm/edid: prepare for VESA vendor-specific data block extension
2025-12-02 11:02 [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support Yaroslav Bolyukin
2025-12-02 11:02 ` [PATCH v7 1/7] drm/edid: rename VESA block parsing functions to more generic name Yaroslav Bolyukin
@ 2025-12-02 11:02 ` Yaroslav Bolyukin
2025-12-02 11:02 ` [PATCH v7 3/7] drm/edid: MSO should only be used for non-eDP displays Yaroslav Bolyukin
` (5 subsequent siblings)
7 siblings, 0 replies; 15+ messages in thread
From: Yaroslav Bolyukin @ 2025-12-02 11:02 UTC (permalink / raw)
To: Ville Syrjälä, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter, Jani Nikula
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Wayne Lin, amd-gfx, linux-kernel, dri-devel,
Yaroslav Bolyukin, Jani Nikula
Current VESA vendor-specific block parsing expects real block size to be
the same as the defined struct size, use real offsets in conditionals
instead to add struct fields in future commits.
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/drm_edid.c | 30 ++++++++++++++----------------
1 file changed, 14 insertions(+), 16 deletions(-)
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index 64f7a94dd9e4..a0a6ccf12475 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -6544,7 +6544,7 @@ static void drm_parse_vesa_specific_block(struct drm_connector *connector,
if (oui(vesa->oui[0], vesa->oui[1], vesa->oui[2]) != VESA_IEEE_OUI)
return;
- if (sizeof(*vesa) != sizeof(*block) + block->num_bytes) {
+ if (block->num_bytes < 5) {
drm_dbg_kms(connector->dev,
"[CONNECTOR:%d:%s] Unexpected VESA vendor block size\n",
connector->base.id, connector->name);
@@ -6567,24 +6567,22 @@ static void drm_parse_vesa_specific_block(struct drm_connector *connector,
break;
}
- if (!info->mso_stream_count) {
- info->mso_pixel_overlap = 0;
- return;
- }
-
- info->mso_pixel_overlap = FIELD_GET(DISPLAYID_VESA_MSO_OVERLAP, vesa->mso);
- if (info->mso_pixel_overlap > 8) {
+ if (info->mso_stream_count) {
+ info->mso_pixel_overlap = FIELD_GET(DISPLAYID_VESA_MSO_OVERLAP, vesa->mso);
+ if (info->mso_pixel_overlap > 8) {
+ drm_dbg_kms(connector->dev,
+ "[CONNECTOR:%d:%s] Reserved MSO pixel overlap value %u\n",
+ connector->base.id, connector->name,
+ info->mso_pixel_overlap);
+ info->mso_pixel_overlap = 8;
+ }
drm_dbg_kms(connector->dev,
- "[CONNECTOR:%d:%s] Reserved MSO pixel overlap value %u\n",
+ "[CONNECTOR:%d:%s] MSO stream count %u, pixel overlap %u\n",
connector->base.id, connector->name,
- info->mso_pixel_overlap);
- info->mso_pixel_overlap = 8;
+ info->mso_stream_count, info->mso_pixel_overlap);
+ } else {
+ info->mso_pixel_overlap = 0;
}
-
- drm_dbg_kms(connector->dev,
- "[CONNECTOR:%d:%s] MSO stream count %u, pixel overlap %u\n",
- connector->base.id, connector->name,
- info->mso_stream_count, info->mso_pixel_overlap);
}
static void drm_update_vesa_specific_block(struct drm_connector *connector,
--
2.51.2
^ permalink raw reply related [flat|nested] 15+ messages in thread* [PATCH v7 3/7] drm/edid: MSO should only be used for non-eDP displays
2025-12-02 11:02 [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support Yaroslav Bolyukin
2025-12-02 11:02 ` [PATCH v7 1/7] drm/edid: rename VESA block parsing functions to more generic name Yaroslav Bolyukin
2025-12-02 11:02 ` [PATCH v7 2/7] drm/edid: prepare for VESA vendor-specific data block extension Yaroslav Bolyukin
@ 2025-12-02 11:02 ` Yaroslav Bolyukin
2025-12-04 12:08 ` Jani Nikula
2025-12-02 11:02 ` [PATCH v7 4/7] drm/edid: parse DSC DPP passthru support flag for mode VII timings Yaroslav Bolyukin
` (4 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Yaroslav Bolyukin @ 2025-12-02 11:02 UTC (permalink / raw)
To: Ville Syrjälä, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter, Jani Nikula
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Wayne Lin, amd-gfx, linux-kernel, dri-devel,
Yaroslav Bolyukin
As per DisplayID v2.1a spec:
If Offset 06h[2:0] is programmed to 001b (External DisplayPort), this
field shall be cleared to 00b (Not supported).
Link: https://lore.kernel.org/lkml/3abc1087618c822e5676e67a3ec2e64e506dc5ec@intel.com/
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
---
drivers/gpu/drm/drm_displayid_internal.h | 4 +++
drivers/gpu/drm/drm_edid.c | 36 +++++++++++++++---------
2 files changed, 27 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/drm_displayid_internal.h b/drivers/gpu/drm/drm_displayid_internal.h
index 5b1b32f73516..72f107ae832f 100644
--- a/drivers/gpu/drm/drm_displayid_internal.h
+++ b/drivers/gpu/drm/drm_displayid_internal.h
@@ -142,9 +142,13 @@ struct displayid_formula_timing_block {
struct displayid_formula_timings_9 timings[];
} __packed;
+#define DISPLAYID_VESA_DP_TYPE GENMASK(2, 0)
#define DISPLAYID_VESA_MSO_OVERLAP GENMASK(3, 0)
#define DISPLAYID_VESA_MSO_MODE GENMASK(6, 5)
+#define DISPLAYID_VESA_DP_TYPE_EDP 0
+#define DISPLAYID_VESA_DP_TYPE_DP 1
+
struct displayid_vesa_vendor_specific_block {
struct displayid_block base;
u8 oui[3];
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index a0a6ccf12475..380a9dda275f 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -6533,6 +6533,7 @@ static void drm_parse_vesa_specific_block(struct drm_connector *connector,
struct displayid_vesa_vendor_specific_block *vesa =
(struct displayid_vesa_vendor_specific_block *)block;
struct drm_display_info *info = &connector->display_info;
+ int dp_type;
if (block->num_bytes < 3) {
drm_dbg_kms(connector->dev,
@@ -6551,20 +6552,29 @@ static void drm_parse_vesa_specific_block(struct drm_connector *connector,
return;
}
- switch (FIELD_GET(DISPLAYID_VESA_MSO_MODE, vesa->mso)) {
- default:
- drm_dbg_kms(connector->dev, "[CONNECTOR:%d:%s] Reserved MSO mode value\n",
+ dp_type = FIELD_GET(DISPLAYID_VESA_DP_TYPE, vesa->data_structure_type);
+ if (dp_type > 1) {
+ drm_dbg_kms(connector->dev, "[CONNECTOR:%d:%s] Reserved dp type value\n",
connector->base.id, connector->name);
- fallthrough;
- case 0:
- info->mso_stream_count = 0;
- break;
- case 1:
- info->mso_stream_count = 2; /* 2 or 4 links */
- break;
- case 2:
- info->mso_stream_count = 4; /* 4 links */
- break;
+ }
+
+ /* MSO is only supported for eDP */
+ if (dp_type == DISPLAYID_VESA_DP_TYPE_EDP) {
+ switch (FIELD_GET(DISPLAYID_VESA_MSO_MODE, vesa->mso)) {
+ default:
+ drm_dbg_kms(connector->dev, "[CONNECTOR:%d:%s] Reserved MSO mode value\n",
+ connector->base.id, connector->name);
+ fallthrough;
+ case 0:
+ info->mso_stream_count = 0;
+ break;
+ case 1:
+ info->mso_stream_count = 2; /* 2 or 4 links */
+ break;
+ case 2:
+ info->mso_stream_count = 4; /* 4 links */
+ break;
+ }
}
if (info->mso_stream_count) {
--
2.51.2
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [PATCH v7 3/7] drm/edid: MSO should only be used for non-eDP displays
2025-12-02 11:02 ` [PATCH v7 3/7] drm/edid: MSO should only be used for non-eDP displays Yaroslav Bolyukin
@ 2025-12-04 12:08 ` Jani Nikula
0 siblings, 0 replies; 15+ messages in thread
From: Jani Nikula @ 2025-12-04 12:08 UTC (permalink / raw)
To: Yaroslav Bolyukin, Ville Syrjälä, Maarten Lankhorst,
Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Wayne Lin, amd-gfx, linux-kernel, dri-devel,
Yaroslav Bolyukin
On Tue, 02 Dec 2025, Yaroslav Bolyukin <iam@lach.pw> wrote:
> As per DisplayID v2.1a spec:
> If Offset 06h[2:0] is programmed to 001b (External DisplayPort), this
> field shall be cleared to 00b (Not supported).
>
> Link: https://lore.kernel.org/lkml/3abc1087618c822e5676e67a3ec2e64e506dc5ec@intel.com/
The Link: tag is unnecessary. No need to resend for this.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
> ---
> drivers/gpu/drm/drm_displayid_internal.h | 4 +++
> drivers/gpu/drm/drm_edid.c | 36 +++++++++++++++---------
> 2 files changed, 27 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/gpu/drm/drm_displayid_internal.h b/drivers/gpu/drm/drm_displayid_internal.h
> index 5b1b32f73516..72f107ae832f 100644
> --- a/drivers/gpu/drm/drm_displayid_internal.h
> +++ b/drivers/gpu/drm/drm_displayid_internal.h
> @@ -142,9 +142,13 @@ struct displayid_formula_timing_block {
> struct displayid_formula_timings_9 timings[];
> } __packed;
>
> +#define DISPLAYID_VESA_DP_TYPE GENMASK(2, 0)
> #define DISPLAYID_VESA_MSO_OVERLAP GENMASK(3, 0)
> #define DISPLAYID_VESA_MSO_MODE GENMASK(6, 5)
>
> +#define DISPLAYID_VESA_DP_TYPE_EDP 0
> +#define DISPLAYID_VESA_DP_TYPE_DP 1
> +
> struct displayid_vesa_vendor_specific_block {
> struct displayid_block base;
> u8 oui[3];
> diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
> index a0a6ccf12475..380a9dda275f 100644
> --- a/drivers/gpu/drm/drm_edid.c
> +++ b/drivers/gpu/drm/drm_edid.c
> @@ -6533,6 +6533,7 @@ static void drm_parse_vesa_specific_block(struct drm_connector *connector,
> struct displayid_vesa_vendor_specific_block *vesa =
> (struct displayid_vesa_vendor_specific_block *)block;
> struct drm_display_info *info = &connector->display_info;
> + int dp_type;
>
> if (block->num_bytes < 3) {
> drm_dbg_kms(connector->dev,
> @@ -6551,20 +6552,29 @@ static void drm_parse_vesa_specific_block(struct drm_connector *connector,
> return;
> }
>
> - switch (FIELD_GET(DISPLAYID_VESA_MSO_MODE, vesa->mso)) {
> - default:
> - drm_dbg_kms(connector->dev, "[CONNECTOR:%d:%s] Reserved MSO mode value\n",
> + dp_type = FIELD_GET(DISPLAYID_VESA_DP_TYPE, vesa->data_structure_type);
> + if (dp_type > 1) {
> + drm_dbg_kms(connector->dev, "[CONNECTOR:%d:%s] Reserved dp type value\n",
> connector->base.id, connector->name);
> - fallthrough;
> - case 0:
> - info->mso_stream_count = 0;
> - break;
> - case 1:
> - info->mso_stream_count = 2; /* 2 or 4 links */
> - break;
> - case 2:
> - info->mso_stream_count = 4; /* 4 links */
> - break;
> + }
> +
> + /* MSO is only supported for eDP */
> + if (dp_type == DISPLAYID_VESA_DP_TYPE_EDP) {
> + switch (FIELD_GET(DISPLAYID_VESA_MSO_MODE, vesa->mso)) {
> + default:
> + drm_dbg_kms(connector->dev, "[CONNECTOR:%d:%s] Reserved MSO mode value\n",
> + connector->base.id, connector->name);
> + fallthrough;
> + case 0:
> + info->mso_stream_count = 0;
> + break;
> + case 1:
> + info->mso_stream_count = 2; /* 2 or 4 links */
> + break;
> + case 2:
> + info->mso_stream_count = 4; /* 4 links */
> + break;
> + }
> }
>
> if (info->mso_stream_count) {
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v7 4/7] drm/edid: parse DSC DPP passthru support flag for mode VII timings
2025-12-02 11:02 [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support Yaroslav Bolyukin
` (2 preceding siblings ...)
2025-12-02 11:02 ` [PATCH v7 3/7] drm/edid: MSO should only be used for non-eDP displays Yaroslav Bolyukin
@ 2025-12-02 11:02 ` Yaroslav Bolyukin
2025-12-04 12:11 ` Jani Nikula
2025-12-02 11:02 ` [PATCH v7 5/7] drm/edid: for consistency, use mask everywhere for block rev parsing Yaroslav Bolyukin
` (3 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Yaroslav Bolyukin @ 2025-12-02 11:02 UTC (permalink / raw)
To: Ville Syrjälä, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter, Jani Nikula
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Wayne Lin, amd-gfx, linux-kernel, dri-devel,
Yaroslav Bolyukin
For timings v7 block revision >=1, revision field also contains a bit
that indicates that the mode timings should only be used with fixed bits
per pixel value specified in vesa vendor-specific block.
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
---
drivers/gpu/drm/drm_displayid_internal.h | 2 ++
drivers/gpu/drm/drm_edid.c | 12 ++++++++----
include/drm/drm_modes.h | 10 ++++++++++
3 files changed, 20 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/drm_displayid_internal.h b/drivers/gpu/drm/drm_displayid_internal.h
index 72f107ae832f..724174b429f2 100644
--- a/drivers/gpu/drm/drm_displayid_internal.h
+++ b/drivers/gpu/drm/drm_displayid_internal.h
@@ -97,6 +97,7 @@ struct displayid_header {
u8 ext_count;
} __packed;
+#define DISPLAYID_BLOCK_REV GENMASK(2, 0)
struct displayid_block {
u8 tag;
u8 rev;
@@ -125,6 +126,7 @@ struct displayid_detailed_timings_1 {
__le16 vsw;
} __packed;
+#define DISPLAYID_BLOCK_PASSTHROUGH_TIMINGS_SUPPORT BIT(3)
struct displayid_detailed_timing_block {
struct displayid_block base;
struct displayid_detailed_timings_1 timings[];
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index 380a9dda275f..b28ff4bafb1d 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -6794,8 +6794,8 @@ static void update_display_info(struct drm_connector *connector,
}
static struct drm_display_mode *drm_mode_displayid_detailed(struct drm_device *dev,
- const struct displayid_detailed_timings_1 *timings,
- bool type_7)
+ const struct displayid_block *block,
+ const struct displayid_detailed_timings_1 *timings)
{
struct drm_display_mode *mode;
unsigned int pixel_clock = (timings->pixel_clock[0] |
@@ -6811,11 +6811,16 @@ static struct drm_display_mode *drm_mode_displayid_detailed(struct drm_device *d
unsigned int vsync_width = le16_to_cpu(timings->vsw) + 1;
bool hsync_positive = le16_to_cpu(timings->hsync) & (1 << 15);
bool vsync_positive = le16_to_cpu(timings->vsync) & (1 << 15);
+ bool type_7 = block->tag == DATA_BLOCK_2_TYPE_7_DETAILED_TIMING;
mode = drm_mode_create(dev);
if (!mode)
return NULL;
+ if (type_7 && FIELD_GET(DISPLAYID_BLOCK_REV, block->rev) >= 1)
+ mode->dsc_passthrough_timings_support =
+ block->rev & DISPLAYID_BLOCK_PASSTHROUGH_TIMINGS_SUPPORT;
+
/* resolution is kHz for type VII, and 10 kHz for type I */
mode->clock = type_7 ? pixel_clock : pixel_clock * 10;
mode->hdisplay = hactive;
@@ -6848,7 +6853,6 @@ static int add_displayid_detailed_1_modes(struct drm_connector *connector,
int num_timings;
struct drm_display_mode *newmode;
int num_modes = 0;
- bool type_7 = block->tag == DATA_BLOCK_2_TYPE_7_DETAILED_TIMING;
/* blocks must be multiple of 20 bytes length */
if (block->num_bytes % 20)
return 0;
@@ -6857,7 +6861,7 @@ static int add_displayid_detailed_1_modes(struct drm_connector *connector,
for (i = 0; i < num_timings; i++) {
struct displayid_detailed_timings_1 *timings = &det->timings[i];
- newmode = drm_mode_displayid_detailed(connector->dev, timings, type_7);
+ newmode = drm_mode_displayid_detailed(connector->dev, block, timings);
if (!newmode)
continue;
diff --git a/include/drm/drm_modes.h b/include/drm/drm_modes.h
index b9bb92e4b029..312e5c03af9a 100644
--- a/include/drm/drm_modes.h
+++ b/include/drm/drm_modes.h
@@ -417,6 +417,16 @@ struct drm_display_mode {
*/
enum hdmi_picture_aspect picture_aspect_ratio;
+ /**
+ * @dsc_passthrough_timing_support:
+ *
+ * Indicates whether this mode timing descriptor is supported
+ * with specific target DSC bits per pixel only.
+ *
+ * VESA vendor-specific data block shall exist with the relevant
+ * DSC bits per pixel declaration when this flag is set to true.
+ */
+ bool dsc_passthrough_timings_support;
};
/**
--
2.51.2
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [PATCH v7 4/7] drm/edid: parse DSC DPP passthru support flag for mode VII timings
2025-12-02 11:02 ` [PATCH v7 4/7] drm/edid: parse DSC DPP passthru support flag for mode VII timings Yaroslav Bolyukin
@ 2025-12-04 12:11 ` Jani Nikula
0 siblings, 0 replies; 15+ messages in thread
From: Jani Nikula @ 2025-12-04 12:11 UTC (permalink / raw)
To: Yaroslav Bolyukin, Ville Syrjälä, Maarten Lankhorst,
Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Wayne Lin, amd-gfx, linux-kernel, dri-devel,
Yaroslav Bolyukin
On Tue, 02 Dec 2025, Yaroslav Bolyukin <iam@lach.pw> wrote:
> For timings v7 block revision >=1, revision field also contains a bit
> that indicates that the mode timings should only be used with fixed bits
> per pixel value specified in vesa vendor-specific block.
>
> Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
On the EDID/DisplayID parts,
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
but I'd like to get ack from e.g. Ville about the
dsc_passthrough_timings_support member in struct drm_display_mode.
> ---
> drivers/gpu/drm/drm_displayid_internal.h | 2 ++
> drivers/gpu/drm/drm_edid.c | 12 ++++++++----
> include/drm/drm_modes.h | 10 ++++++++++
> 3 files changed, 20 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/drm_displayid_internal.h b/drivers/gpu/drm/drm_displayid_internal.h
> index 72f107ae832f..724174b429f2 100644
> --- a/drivers/gpu/drm/drm_displayid_internal.h
> +++ b/drivers/gpu/drm/drm_displayid_internal.h
> @@ -97,6 +97,7 @@ struct displayid_header {
> u8 ext_count;
> } __packed;
>
> +#define DISPLAYID_BLOCK_REV GENMASK(2, 0)
> struct displayid_block {
> u8 tag;
> u8 rev;
> @@ -125,6 +126,7 @@ struct displayid_detailed_timings_1 {
> __le16 vsw;
> } __packed;
>
> +#define DISPLAYID_BLOCK_PASSTHROUGH_TIMINGS_SUPPORT BIT(3)
> struct displayid_detailed_timing_block {
> struct displayid_block base;
> struct displayid_detailed_timings_1 timings[];
> diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
> index 380a9dda275f..b28ff4bafb1d 100644
> --- a/drivers/gpu/drm/drm_edid.c
> +++ b/drivers/gpu/drm/drm_edid.c
> @@ -6794,8 +6794,8 @@ static void update_display_info(struct drm_connector *connector,
> }
>
> static struct drm_display_mode *drm_mode_displayid_detailed(struct drm_device *dev,
> - const struct displayid_detailed_timings_1 *timings,
> - bool type_7)
> + const struct displayid_block *block,
> + const struct displayid_detailed_timings_1 *timings)
> {
> struct drm_display_mode *mode;
> unsigned int pixel_clock = (timings->pixel_clock[0] |
> @@ -6811,11 +6811,16 @@ static struct drm_display_mode *drm_mode_displayid_detailed(struct drm_device *d
> unsigned int vsync_width = le16_to_cpu(timings->vsw) + 1;
> bool hsync_positive = le16_to_cpu(timings->hsync) & (1 << 15);
> bool vsync_positive = le16_to_cpu(timings->vsync) & (1 << 15);
> + bool type_7 = block->tag == DATA_BLOCK_2_TYPE_7_DETAILED_TIMING;
>
> mode = drm_mode_create(dev);
> if (!mode)
> return NULL;
>
> + if (type_7 && FIELD_GET(DISPLAYID_BLOCK_REV, block->rev) >= 1)
> + mode->dsc_passthrough_timings_support =
> + block->rev & DISPLAYID_BLOCK_PASSTHROUGH_TIMINGS_SUPPORT;
> +
> /* resolution is kHz for type VII, and 10 kHz for type I */
> mode->clock = type_7 ? pixel_clock : pixel_clock * 10;
> mode->hdisplay = hactive;
> @@ -6848,7 +6853,6 @@ static int add_displayid_detailed_1_modes(struct drm_connector *connector,
> int num_timings;
> struct drm_display_mode *newmode;
> int num_modes = 0;
> - bool type_7 = block->tag == DATA_BLOCK_2_TYPE_7_DETAILED_TIMING;
> /* blocks must be multiple of 20 bytes length */
> if (block->num_bytes % 20)
> return 0;
> @@ -6857,7 +6861,7 @@ static int add_displayid_detailed_1_modes(struct drm_connector *connector,
> for (i = 0; i < num_timings; i++) {
> struct displayid_detailed_timings_1 *timings = &det->timings[i];
>
> - newmode = drm_mode_displayid_detailed(connector->dev, timings, type_7);
> + newmode = drm_mode_displayid_detailed(connector->dev, block, timings);
> if (!newmode)
> continue;
>
> diff --git a/include/drm/drm_modes.h b/include/drm/drm_modes.h
> index b9bb92e4b029..312e5c03af9a 100644
> --- a/include/drm/drm_modes.h
> +++ b/include/drm/drm_modes.h
> @@ -417,6 +417,16 @@ struct drm_display_mode {
> */
> enum hdmi_picture_aspect picture_aspect_ratio;
>
> + /**
> + * @dsc_passthrough_timing_support:
> + *
> + * Indicates whether this mode timing descriptor is supported
> + * with specific target DSC bits per pixel only.
> + *
> + * VESA vendor-specific data block shall exist with the relevant
> + * DSC bits per pixel declaration when this flag is set to true.
> + */
> + bool dsc_passthrough_timings_support;
> };
>
> /**
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v7 5/7] drm/edid: for consistency, use mask everywhere for block rev parsing
2025-12-02 11:02 [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support Yaroslav Bolyukin
` (3 preceding siblings ...)
2025-12-02 11:02 ` [PATCH v7 4/7] drm/edid: parse DSC DPP passthru support flag for mode VII timings Yaroslav Bolyukin
@ 2025-12-02 11:02 ` Yaroslav Bolyukin
2025-12-04 12:11 ` Jani Nikula
2025-12-02 11:02 ` [PATCH v7 6/7] drm/edid: parse DRM VESA dsc bpp target Yaroslav Bolyukin
` (2 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Yaroslav Bolyukin @ 2025-12-02 11:02 UTC (permalink / raw)
To: Ville Syrjälä, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter, Jani Nikula
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Wayne Lin, amd-gfx, linux-kernel, dri-devel,
Yaroslav Bolyukin
Other usages of block.rev bitfields were refactored to use FIELD_GET
instead of bitwise ops.
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
---
drivers/gpu/drm/drm_displayid_internal.h | 1 +
drivers/gpu/drm/drm_edid.c | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/drm_displayid_internal.h b/drivers/gpu/drm/drm_displayid_internal.h
index 724174b429f2..55f972d32847 100644
--- a/drivers/gpu/drm/drm_displayid_internal.h
+++ b/drivers/gpu/drm/drm_displayid_internal.h
@@ -139,6 +139,7 @@ struct displayid_formula_timings_9 {
u8 vrefresh;
} __packed;
+#define DISPLAYID_BLOCK_DESCRIPTOR_PAYLOAD_BYTES GENMASK(6, 4)
struct displayid_formula_timing_block {
struct displayid_block base;
struct displayid_formula_timings_9 timings[];
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index b28ff4bafb1d..be8715632b91 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -6908,7 +6908,8 @@ static int add_displayid_formula_modes(struct drm_connector *connector,
struct drm_display_mode *newmode;
int num_modes = 0;
bool type_10 = block->tag == DATA_BLOCK_2_TYPE_10_FORMULA_TIMING;
- int timing_size = 6 + ((formula_block->base.rev & 0x70) >> 4);
+ int timing_size = 6 +
+ FIELD_GET(DISPLAYID_BLOCK_DESCRIPTOR_PAYLOAD_BYTES, formula_block->base.rev);
/* extended blocks are not supported yet */
if (timing_size != 6)
--
2.51.2
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [PATCH v7 5/7] drm/edid: for consistency, use mask everywhere for block rev parsing
2025-12-02 11:02 ` [PATCH v7 5/7] drm/edid: for consistency, use mask everywhere for block rev parsing Yaroslav Bolyukin
@ 2025-12-04 12:11 ` Jani Nikula
0 siblings, 0 replies; 15+ messages in thread
From: Jani Nikula @ 2025-12-04 12:11 UTC (permalink / raw)
To: Yaroslav Bolyukin, Ville Syrjälä, Maarten Lankhorst,
Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Wayne Lin, amd-gfx, linux-kernel, dri-devel,
Yaroslav Bolyukin
On Tue, 02 Dec 2025, Yaroslav Bolyukin <iam@lach.pw> wrote:
> Other usages of block.rev bitfields were refactored to use FIELD_GET
> instead of bitwise ops.
>
> Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/drm_displayid_internal.h | 1 +
> drivers/gpu/drm/drm_edid.c | 3 ++-
> 2 files changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/drm_displayid_internal.h b/drivers/gpu/drm/drm_displayid_internal.h
> index 724174b429f2..55f972d32847 100644
> --- a/drivers/gpu/drm/drm_displayid_internal.h
> +++ b/drivers/gpu/drm/drm_displayid_internal.h
> @@ -139,6 +139,7 @@ struct displayid_formula_timings_9 {
> u8 vrefresh;
> } __packed;
>
> +#define DISPLAYID_BLOCK_DESCRIPTOR_PAYLOAD_BYTES GENMASK(6, 4)
> struct displayid_formula_timing_block {
> struct displayid_block base;
> struct displayid_formula_timings_9 timings[];
> diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
> index b28ff4bafb1d..be8715632b91 100644
> --- a/drivers/gpu/drm/drm_edid.c
> +++ b/drivers/gpu/drm/drm_edid.c
> @@ -6908,7 +6908,8 @@ static int add_displayid_formula_modes(struct drm_connector *connector,
> struct drm_display_mode *newmode;
> int num_modes = 0;
> bool type_10 = block->tag == DATA_BLOCK_2_TYPE_10_FORMULA_TIMING;
> - int timing_size = 6 + ((formula_block->base.rev & 0x70) >> 4);
> + int timing_size = 6 +
> + FIELD_GET(DISPLAYID_BLOCK_DESCRIPTOR_PAYLOAD_BYTES, formula_block->base.rev);
>
> /* extended blocks are not supported yet */
> if (timing_size != 6)
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v7 6/7] drm/edid: parse DRM VESA dsc bpp target
2025-12-02 11:02 [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support Yaroslav Bolyukin
` (4 preceding siblings ...)
2025-12-02 11:02 ` [PATCH v7 5/7] drm/edid: for consistency, use mask everywhere for block rev parsing Yaroslav Bolyukin
@ 2025-12-02 11:02 ` Yaroslav Bolyukin
2025-12-04 12:12 ` Jani Nikula
2025-12-02 11:02 ` [PATCH v7 7/7] drm/amd: use fixed dsc bits-per-pixel from edid Yaroslav Bolyukin
2026-01-08 20:45 ` [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support Yaroslav Bolyukin
7 siblings, 1 reply; 15+ messages in thread
From: Yaroslav Bolyukin @ 2025-12-02 11:02 UTC (permalink / raw)
To: Ville Syrjälä, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter, Jani Nikula
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Wayne Lin, amd-gfx, linux-kernel, dri-devel,
Yaroslav Bolyukin
As per DisplayID v2.1a spec "DSC pass-through timing support",
VESA vendor-specific data block may contain target DSC bits per pixel
fields, that should be always used for the VII modes that declare they
only support working with this value (Pass-through Timing Support for
Target DSC Bits per Pixel).
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
fixup parse DRM vesa dsc bpp target
---
drivers/gpu/drm/drm_displayid_internal.h | 4 ++++
drivers/gpu/drm/drm_edid.c | 17 +++++++++++++++++
include/drm/drm_connector.h | 6 ++++++
3 files changed, 27 insertions(+)
diff --git a/drivers/gpu/drm/drm_displayid_internal.h b/drivers/gpu/drm/drm_displayid_internal.h
index 55f972d32847..8f1a2f33ca1a 100644
--- a/drivers/gpu/drm/drm_displayid_internal.h
+++ b/drivers/gpu/drm/drm_displayid_internal.h
@@ -148,6 +148,8 @@ struct displayid_formula_timing_block {
#define DISPLAYID_VESA_DP_TYPE GENMASK(2, 0)
#define DISPLAYID_VESA_MSO_OVERLAP GENMASK(3, 0)
#define DISPLAYID_VESA_MSO_MODE GENMASK(6, 5)
+#define DISPLAYID_VESA_DSC_BPP_INT GENMASK(5, 0)
+#define DISPLAYID_VESA_DSC_BPP_FRACT GENMASK(3, 0)
#define DISPLAYID_VESA_DP_TYPE_EDP 0
#define DISPLAYID_VESA_DP_TYPE_DP 1
@@ -157,6 +159,8 @@ struct displayid_vesa_vendor_specific_block {
u8 oui[3];
u8 data_structure_type;
u8 mso;
+ u8 dsc_bpp_int;
+ u8 dsc_bpp_fract;
} __packed;
/*
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index be8715632b91..8273920f5ba4 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -45,6 +45,7 @@
#include <drm/drm_edid.h>
#include <drm/drm_eld.h>
#include <drm/drm_encoder.h>
+#include <drm/drm_fixed.h>
#include <drm/drm_print.h>
#include "drm_crtc_internal.h"
@@ -6593,6 +6594,21 @@ static void drm_parse_vesa_specific_block(struct drm_connector *connector,
} else {
info->mso_pixel_overlap = 0;
}
+
+ if (block->num_bytes < 7) {
+ /* DSC bpp is optional */
+ return;
+ }
+
+ info->dp_dsc_bpp_x16 = FIELD_GET(DISPLAYID_VESA_DSC_BPP_INT, vesa->dsc_bpp_int) << 4 |
+ FIELD_GET(DISPLAYID_VESA_DSC_BPP_FRACT, vesa->dsc_bpp_fract);
+
+ if (info->dp_dsc_bpp_x16 > 0) {
+ drm_dbg_kms(connector->dev,
+ "[CONNECTOR:%d:%s] DSC bits per pixel " FXP_Q4_FMT "\n",
+ connector->base.id, connector->name,
+ FXP_Q4_ARGS(info->dp_dsc_bpp_x16));
+ }
}
static void drm_update_vesa_specific_block(struct drm_connector *connector,
@@ -6641,6 +6657,7 @@ static void drm_reset_display_info(struct drm_connector *connector)
info->mso_stream_count = 0;
info->mso_pixel_overlap = 0;
info->max_dsc_bpp = 0;
+ info->dp_dsc_bpp_x16 = 0;
kfree(info->vics);
info->vics = NULL;
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h
index 8f34f4b8183d..7decfc288aa3 100644
--- a/include/drm/drm_connector.h
+++ b/include/drm/drm_connector.h
@@ -837,6 +837,12 @@ struct drm_display_info {
*/
u32 max_dsc_bpp;
+ /**
+ * @dp_dsc_bpp: DP Display-Stream-Compression (DSC) timing's target
+ * DSC bits per pixel in 6.4 fixed point format. 0 means undefined.
+ */
+ u16 dp_dsc_bpp_x16;
+
/**
* @vics: Array of vics_len VICs. Internal to EDID parsing.
*/
--
2.51.2
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [PATCH v7 6/7] drm/edid: parse DRM VESA dsc bpp target
2025-12-02 11:02 ` [PATCH v7 6/7] drm/edid: parse DRM VESA dsc bpp target Yaroslav Bolyukin
@ 2025-12-04 12:12 ` Jani Nikula
0 siblings, 0 replies; 15+ messages in thread
From: Jani Nikula @ 2025-12-04 12:12 UTC (permalink / raw)
To: Yaroslav Bolyukin, Ville Syrjälä, Maarten Lankhorst,
Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Wayne Lin, amd-gfx, linux-kernel, dri-devel,
Yaroslav Bolyukin
On Tue, 02 Dec 2025, Yaroslav Bolyukin <iam@lach.pw> wrote:
> As per DisplayID v2.1a spec "DSC pass-through timing support",
> VESA vendor-specific data block may contain target DSC bits per pixel
> fields, that should be always used for the VII modes that declare they
> only support working with this value (Pass-through Timing Support for
> Target DSC Bits per Pixel).
>
> Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
>
> fixup parse DRM vesa dsc bpp target
Needs to be removed while applying, no need to resend for this.
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/drm_displayid_internal.h | 4 ++++
> drivers/gpu/drm/drm_edid.c | 17 +++++++++++++++++
> include/drm/drm_connector.h | 6 ++++++
> 3 files changed, 27 insertions(+)
>
> diff --git a/drivers/gpu/drm/drm_displayid_internal.h b/drivers/gpu/drm/drm_displayid_internal.h
> index 55f972d32847..8f1a2f33ca1a 100644
> --- a/drivers/gpu/drm/drm_displayid_internal.h
> +++ b/drivers/gpu/drm/drm_displayid_internal.h
> @@ -148,6 +148,8 @@ struct displayid_formula_timing_block {
> #define DISPLAYID_VESA_DP_TYPE GENMASK(2, 0)
> #define DISPLAYID_VESA_MSO_OVERLAP GENMASK(3, 0)
> #define DISPLAYID_VESA_MSO_MODE GENMASK(6, 5)
> +#define DISPLAYID_VESA_DSC_BPP_INT GENMASK(5, 0)
> +#define DISPLAYID_VESA_DSC_BPP_FRACT GENMASK(3, 0)
>
> #define DISPLAYID_VESA_DP_TYPE_EDP 0
> #define DISPLAYID_VESA_DP_TYPE_DP 1
> @@ -157,6 +159,8 @@ struct displayid_vesa_vendor_specific_block {
> u8 oui[3];
> u8 data_structure_type;
> u8 mso;
> + u8 dsc_bpp_int;
> + u8 dsc_bpp_fract;
> } __packed;
>
> /*
> diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
> index be8715632b91..8273920f5ba4 100644
> --- a/drivers/gpu/drm/drm_edid.c
> +++ b/drivers/gpu/drm/drm_edid.c
> @@ -45,6 +45,7 @@
> #include <drm/drm_edid.h>
> #include <drm/drm_eld.h>
> #include <drm/drm_encoder.h>
> +#include <drm/drm_fixed.h>
> #include <drm/drm_print.h>
>
> #include "drm_crtc_internal.h"
> @@ -6593,6 +6594,21 @@ static void drm_parse_vesa_specific_block(struct drm_connector *connector,
> } else {
> info->mso_pixel_overlap = 0;
> }
> +
> + if (block->num_bytes < 7) {
> + /* DSC bpp is optional */
> + return;
> + }
> +
> + info->dp_dsc_bpp_x16 = FIELD_GET(DISPLAYID_VESA_DSC_BPP_INT, vesa->dsc_bpp_int) << 4 |
> + FIELD_GET(DISPLAYID_VESA_DSC_BPP_FRACT, vesa->dsc_bpp_fract);
> +
> + if (info->dp_dsc_bpp_x16 > 0) {
> + drm_dbg_kms(connector->dev,
> + "[CONNECTOR:%d:%s] DSC bits per pixel " FXP_Q4_FMT "\n",
> + connector->base.id, connector->name,
> + FXP_Q4_ARGS(info->dp_dsc_bpp_x16));
> + }
> }
>
> static void drm_update_vesa_specific_block(struct drm_connector *connector,
> @@ -6641,6 +6657,7 @@ static void drm_reset_display_info(struct drm_connector *connector)
> info->mso_stream_count = 0;
> info->mso_pixel_overlap = 0;
> info->max_dsc_bpp = 0;
> + info->dp_dsc_bpp_x16 = 0;
>
> kfree(info->vics);
> info->vics = NULL;
> diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h
> index 8f34f4b8183d..7decfc288aa3 100644
> --- a/include/drm/drm_connector.h
> +++ b/include/drm/drm_connector.h
> @@ -837,6 +837,12 @@ struct drm_display_info {
> */
> u32 max_dsc_bpp;
>
> + /**
> + * @dp_dsc_bpp: DP Display-Stream-Compression (DSC) timing's target
> + * DSC bits per pixel in 6.4 fixed point format. 0 means undefined.
> + */
> + u16 dp_dsc_bpp_x16;
> +
> /**
> * @vics: Array of vics_len VICs. Internal to EDID parsing.
> */
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 15+ messages in thread
* [PATCH v7 7/7] drm/amd: use fixed dsc bits-per-pixel from edid
2025-12-02 11:02 [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support Yaroslav Bolyukin
` (5 preceding siblings ...)
2025-12-02 11:02 ` [PATCH v7 6/7] drm/edid: parse DRM VESA dsc bpp target Yaroslav Bolyukin
@ 2025-12-02 11:02 ` Yaroslav Bolyukin
2025-12-29 2:25 ` Lin, Wayne
2026-01-08 20:45 ` [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support Yaroslav Bolyukin
7 siblings, 1 reply; 15+ messages in thread
From: Yaroslav Bolyukin @ 2025-12-02 11:02 UTC (permalink / raw)
To: Ville Syrjälä, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter, Jani Nikula
Cc: Harry Wentland, Leo Li, Rodrigo Siqueira, Alex Deucher,
Christian König, Wayne Lin, amd-gfx, linux-kernel, dri-devel,
Yaroslav Bolyukin
VESA vendor header from DisplayID spec may contain fixed bit per pixel
rate, it should be used by drm driver for the modes that declare
they are only supported with the declared fixed bits per pixel value.
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
---
.../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index e6728fd12eeb..32370279283f 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -6613,6 +6613,11 @@ static void fill_stream_properties_from_drm_display_mode(
stream->output_color_space = get_output_color_space(timing_out, connector_state);
stream->content_type = get_output_content_type(connector_state);
+
+ /* DisplayID Type VII pass-through timings. */
+ if (mode_in->dsc_passthrough_timings_support && info->dp_dsc_bpp_x16 != 0) {
+ stream->timing.dsc_fixed_bits_per_pixel_x16 = info->dp_dsc_bpp_x16;
+ }
}
static void fill_audio_info(struct audio_info *audio_info,
@@ -7071,6 +7076,7 @@ create_stream_for_sink(struct drm_connector *connector,
struct drm_display_mode mode;
struct drm_display_mode saved_mode;
struct drm_display_mode *freesync_mode = NULL;
+ struct drm_display_mode *dsc_passthru_mode = NULL;
bool native_mode_found = false;
bool recalculate_timing = false;
bool scale = dm_state->scaling != RMX_OFF;
@@ -7162,6 +7168,16 @@ create_stream_for_sink(struct drm_connector *connector,
}
}
+ list_for_each_entry(dsc_passthru_mode, &connector->modes, head) {
+ if (dsc_passthru_mode->hdisplay == mode.hdisplay &&
+ dsc_passthru_mode->vdisplay == mode.vdisplay &&
+ drm_mode_vrefresh(dsc_passthru_mode) == mode_refresh) {
+ mode.dsc_passthrough_timings_support =
+ dsc_passthru_mode->dsc_passthrough_timings_support;
+ break;
+ }
+ }
+
if (recalculate_timing)
drm_mode_set_crtcinfo(&saved_mode, 0);
--
2.51.2
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [PATCH v7 7/7] drm/amd: use fixed dsc bits-per-pixel from edid
2025-12-02 11:02 ` [PATCH v7 7/7] drm/amd: use fixed dsc bits-per-pixel from edid Yaroslav Bolyukin
@ 2025-12-29 2:25 ` Lin, Wayne
0 siblings, 0 replies; 15+ messages in thread
From: Lin, Wayne @ 2025-12-29 2:25 UTC (permalink / raw)
To: Yaroslav Bolyukin, Ville Syrjälä, Maarten Lankhorst,
Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter,
Jani Nikula
Cc: Wentland, Harry, Li, Sun peng (Leo), Rodrigo Siqueira,
Deucher, Alexander, Koenig, Christian,
amd-gfx@lists.freedesktop.org, linux-kernel@vger.kernel.org,
dri-devel@lists.freedesktop.org
Hi Yaroslav Bolyukin,
Thanks for the patch.
Reviewed-by: Wayne Lin <Wayne.Lin@amd.com>
Regards,
Wayne Lin
________________________________________
From: Yaroslav Bolyukin <iam@lach.pw>
Sent: Tuesday, December 02, 2025 19:02
To: Ville Syrjälä <ville.syrjala@linux.intel.com>; Maarten Lankhorst <maarten.lankhorst@linux.intel.com>; Maxime Ripard <mripard@kernel.org>; Thomas Zimmermann <tzimmermann@suse.de>; David Airlie <airlied@gmail.com>; Simona Vetter <simona@ffwll.ch>; Jani Nikula <jani.nikula@linux.intel.com>
Cc: Wentland, Harry <Harry.Wentland@amd.com>; Li, Sun peng (Leo) <Sunpeng.Li@amd.com>; Rodrigo Siqueira <siqueira@igalia.com>; Deucher, Alexander <Alexander.Deucher@amd.com>; Koenig, Christian <Christian.Koenig@amd.com>; Lin, Wayne <Wayne.Lin@amd.com>; amd-gfx@lists.freedesktop.org <amd-gfx@lists.freedesktop.org>; linux-kernel@vger.kernel.org <linux-kernel@vger.kernel.org>; dri-devel@lists.freedesktop.org <dri-devel@lists.freedesktop.org>; Yaroslav Bolyukin <iam@lach.pw>
Subject: [PATCH v7 7/7] drm/amd: use fixed dsc bits-per-pixel from edid
VESA vendor header from DisplayID spec may contain fixed bit per pixel
rate, it should be used by drm driver for the modes that declare
they are only supported with the declared fixed bits per pixel value.
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
---
.../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index e6728fd12eeb..32370279283f 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -6613,6 +6613,11 @@ static void fill_stream_properties_from_drm_display_mode(
stream->output_color_space = get_output_color_space(timing_out, connector_state);
stream->content_type = get_output_content_type(connector_state);
+
+ /* DisplayID Type VII pass-through timings. */
+ if (mode_in->dsc_passthrough_timings_support && info->dp_dsc_bpp_x16 != 0) {
+ stream->timing.dsc_fixed_bits_per_pixel_x16 = info->dp_dsc_bpp_x16;
+ }
}
static void fill_audio_info(struct audio_info *audio_info,
@@ -7071,6 +7076,7 @@ create_stream_for_sink(struct drm_connector *connector,
struct drm_display_mode mode;
struct drm_display_mode saved_mode;
struct drm_display_mode *freesync_mode = NULL;
+ struct drm_display_mode *dsc_passthru_mode = NULL;
bool native_mode_found = false;
bool recalculate_timing = false;
bool scale = dm_state->scaling != RMX_OFF;
@@ -7162,6 +7168,16 @@ create_stream_for_sink(struct drm_connector *connector,
}
}
+ list_for_each_entry(dsc_passthru_mode, &connector->modes, head) {
+ if (dsc_passthru_mode->hdisplay == mode.hdisplay &&
+ dsc_passthru_mode->vdisplay == mode.vdisplay &&
+ drm_mode_vrefresh(dsc_passthru_mode) == mode_refresh) {
+ mode.dsc_passthrough_timings_support =
+ dsc_passthru_mode->dsc_passthrough_timings_support;
+ break;
+ }
+ }
+
if (recalculate_timing)
drm_mode_set_crtcinfo(&saved_mode, 0);
--
2.51.2
^ permalink raw reply related [flat|nested] 15+ messages in thread
* Re: [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support
2025-12-02 11:02 [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support Yaroslav Bolyukin
` (6 preceding siblings ...)
2025-12-02 11:02 ` [PATCH v7 7/7] drm/amd: use fixed dsc bits-per-pixel from edid Yaroslav Bolyukin
@ 2026-01-08 20:45 ` Yaroslav Bolyukin
2026-01-09 8:15 ` Jani Nikula
7 siblings, 1 reply; 15+ messages in thread
From: Yaroslav Bolyukin @ 2026-01-08 20:45 UTC (permalink / raw)
To: Yaroslav Bolyukin, Ville Syrjälä, Maarten Lankhorst,
Maxime Ripard, Thomas Zimmermann, David Airlie, Simona Vetter,
Jani Nikula, Wayne Lin, Harry Wentland, Alex Deucher
Cc: Leo Li, Rodrigo Siqueira, Christian König, Wayne Lin,
amd-gfx, linux-kernel, dri-devel
Hi,
Now that every patch in this patchset has a review, any chance this can
be picked up for drm-misc-next?
Or should it go through amd-staging-drm-next, given that the main EDID
change is only handled for amdgpu driver right now?
Best regards,
Lach
On 2025-12-02 12:02, Yaroslav Bolyukin wrote:
> VESA DisplayID spec allows the device to force its DSC bits per pixel
> value.
>
> For example, the HTC Vive Pro 2 VR headset uses this value in
> high-resolution modes (3680x1836@90-120, 4896x2448@90-120), and when the
> kernel doesn't respect this parameter, garbage is displayed on the HMD
> instead.
>
> Me and other users have successfully tested the old (v3) version of this
> patch (which was applying DSC BPP value unconditionally, thus incorrect:
> https://lkml.org/lkml/2023/2/26/116) on Vive Pro 2 and
> Bigscreen Beyond VR headsets, and have been using it daily, it is known
> to work and doesn't seem to break anything else since 2022.
>
> Previously, I didn't have enough dedication to get it merged, I hope
> this time I will manage to get it to v6.19 :D
>
> Regarding driver support - I have looked at amdgpu and Nvidia's
> open-gpu-kernel-modules, and both seem to have some indication for this
> value; however, in Linux, it is unused in both.
>
> First patch implements parsing of DSC BPP values and display mode VII
> timings flag which mandates that the DSC BPP value should actually be
> used for this display mode.
>
> The second patch implements handling of this value for AMDGPU driver.
>
> The only thing that I don't like in the current implementation, is how
> the value of `dsc_passthrough_timings_support` flag is propagated from
> the connector display modes to the mode created in `DRM_IOCTL_MODE_SETCRTC`
> handler (which is used for VR display initialization in Monado and
> StreamVR), it feels like this flag should be initialized by the kernel
> itself, but as far as I can see there is no correct way to do this, as
> the timing constraints calculation belongs to the individual drivers.
>
> Another problem with how this flag is set, is that there is no hard
> connection between modes creaded in `SETCRTC` and the modes actually
> defined by connector, so the current implementation searches for the
> resolution and refresh rate that match exactly declared to obtain
> this flag value. This might not be correct, as device might not support
> the other mode at all, but the situation won't be any worse for the
> existing devices, as the currently they don't work at all, and there
> is no other known devices on the market to check their assumption in
> regard to this part of specs, and the spec does not describe how that
> should work.
>
> Both of those downsides are due to the fact my understanding of DRM
> subsystem is not that high. If another implementation would be proposed
> by AMDGPU maintainers - I will gladly implement it here.
>
> v6->v7:
> * Print DSC bpp value in fixed point format instead of x16
> * MSO should only be enabled for eDP, not the other way round.
> v5->v6:
> * amdgpu: only apply dsc bpp to modes that match exactly the declared
> modes with this flag set.
> v4->v5:
> * The patch was split into multiple
> * Disabled MSO parsing for eDP displays
> * Disabled MSO logs if not used
> * Minor codestyle changes: lines moved around, naming, passing of
> function arguments
> v3->v4:
> * This patch now parses timings support flag on type VII block, instead
> of applying it unconditionally. Previously I didn't understand the
> spec properly.
> * Now it also is not being applied for non-supported and/or non-VII
> blocks in amdgpu driver.
>
> Regards,
>
> Lach
>
> Yaroslav Bolyukin (7):
> drm/edid: rename VESA block parsing functions to more generic name
> drm/edid: prepare for VESA vendor-specific data block extension
> drm/edid: MSO should only be used for non-eDP displays
> drm/edid: parse DSC DPP passthru support flag for mode VII timings
> drm/edid: for consistency, use mask everywhere for block rev parsing
> drm/edid: parse DRM VESA dsc bpp target
> drm/amd: use fixed dsc bits-per-pixel from edid
>
> .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 16 +++
> drivers/gpu/drm/drm_displayid_internal.h | 11 ++
> drivers/gpu/drm/drm_edid.c | 102 +++++++++++-------
> include/drm/drm_connector.h | 6 ++
> include/drm/drm_modes.h | 10 ++
> 5 files changed, 109 insertions(+), 36 deletions(-)
>
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support
2026-01-08 20:45 ` [PATCH v7 0/7] VESA DisplayID fixed DSC BPP value support Yaroslav Bolyukin
@ 2026-01-09 8:15 ` Jani Nikula
0 siblings, 0 replies; 15+ messages in thread
From: Jani Nikula @ 2026-01-09 8:15 UTC (permalink / raw)
To: Yaroslav Bolyukin, Yaroslav Bolyukin, Ville Syrjälä,
Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
Simona Vetter, Wayne Lin, Harry Wentland, Alex Deucher
Cc: Leo Li, Rodrigo Siqueira, Christian König, Wayne Lin,
amd-gfx, linux-kernel, dri-devel
On Thu, 08 Jan 2026, Yaroslav Bolyukin <iam@0la.ch> wrote:
> Hi,
>
> Now that every patch in this patchset has a review, any chance this can
> be picked up for drm-misc-next?
>
> Or should it go through amd-staging-drm-next, given that the main EDID
> change is only handled for amdgpu driver right now?
As I said in [1] I'm hoping to get Ville's approval on the approach, as
he had earlier concerns [2].
BR,
Jani.
[1] https://lore.kernel.org/r/b0b1567707c91806e3758bf0b678c2038dffb3c2@intel.com
[2] https://lore.kernel.org/r/aPF32XpVst5mPVz7@intel.com
>
> Best regards,
> Lach
>
> On 2025-12-02 12:02, Yaroslav Bolyukin wrote:
>> VESA DisplayID spec allows the device to force its DSC bits per pixel
>> value.
>>
>> For example, the HTC Vive Pro 2 VR headset uses this value in
>> high-resolution modes (3680x1836@90-120, 4896x2448@90-120), and when the
>> kernel doesn't respect this parameter, garbage is displayed on the HMD
>> instead.
>>
>> Me and other users have successfully tested the old (v3) version of this
>> patch (which was applying DSC BPP value unconditionally, thus incorrect:
>> https://lkml.org/lkml/2023/2/26/116) on Vive Pro 2 and
>> Bigscreen Beyond VR headsets, and have been using it daily, it is known
>> to work and doesn't seem to break anything else since 2022.
>>
>> Previously, I didn't have enough dedication to get it merged, I hope
>> this time I will manage to get it to v6.19 :D
>>
>> Regarding driver support - I have looked at amdgpu and Nvidia's
>> open-gpu-kernel-modules, and both seem to have some indication for this
>> value; however, in Linux, it is unused in both.
>>
>> First patch implements parsing of DSC BPP values and display mode VII
>> timings flag which mandates that the DSC BPP value should actually be
>> used for this display mode.
>>
>> The second patch implements handling of this value for AMDGPU driver.
>>
>> The only thing that I don't like in the current implementation, is how
>> the value of `dsc_passthrough_timings_support` flag is propagated from
>> the connector display modes to the mode created in `DRM_IOCTL_MODE_SETCRTC`
>> handler (which is used for VR display initialization in Monado and
>> StreamVR), it feels like this flag should be initialized by the kernel
>> itself, but as far as I can see there is no correct way to do this, as
>> the timing constraints calculation belongs to the individual drivers.
>>
>> Another problem with how this flag is set, is that there is no hard
>> connection between modes creaded in `SETCRTC` and the modes actually
>> defined by connector, so the current implementation searches for the
>> resolution and refresh rate that match exactly declared to obtain
>> this flag value. This might not be correct, as device might not support
>> the other mode at all, but the situation won't be any worse for the
>> existing devices, as the currently they don't work at all, and there
>> is no other known devices on the market to check their assumption in
>> regard to this part of specs, and the spec does not describe how that
>> should work.
>>
>> Both of those downsides are due to the fact my understanding of DRM
>> subsystem is not that high. If another implementation would be proposed
>> by AMDGPU maintainers - I will gladly implement it here.
>>
>> v6->v7:
>> * Print DSC bpp value in fixed point format instead of x16
>> * MSO should only be enabled for eDP, not the other way round.
>> v5->v6:
>> * amdgpu: only apply dsc bpp to modes that match exactly the declared
>> modes with this flag set.
>> v4->v5:
>> * The patch was split into multiple
>> * Disabled MSO parsing for eDP displays
>> * Disabled MSO logs if not used
>> * Minor codestyle changes: lines moved around, naming, passing of
>> function arguments
>> v3->v4:
>> * This patch now parses timings support flag on type VII block, instead
>> of applying it unconditionally. Previously I didn't understand the
>> spec properly.
>> * Now it also is not being applied for non-supported and/or non-VII
>> blocks in amdgpu driver.
>>
>> Regards,
>>
>> Lach
>>
>> Yaroslav Bolyukin (7):
>> drm/edid: rename VESA block parsing functions to more generic name
>> drm/edid: prepare for VESA vendor-specific data block extension
>> drm/edid: MSO should only be used for non-eDP displays
>> drm/edid: parse DSC DPP passthru support flag for mode VII timings
>> drm/edid: for consistency, use mask everywhere for block rev parsing
>> drm/edid: parse DRM VESA dsc bpp target
>> drm/amd: use fixed dsc bits-per-pixel from edid
>>
>> .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 16 +++
>> drivers/gpu/drm/drm_displayid_internal.h | 11 ++
>> drivers/gpu/drm/drm_edid.c | 102 +++++++++++-------
>> include/drm/drm_connector.h | 6 ++
>> include/drm/drm_modes.h | 10 ++
>> 5 files changed, 109 insertions(+), 36 deletions(-)
>>
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 15+ messages in thread