* [PATCH v2 0/3] amdgpu: Enable Adaptive Sync over PCON with HDMI VRR
@ 2026-01-13 21:41 Tomasz Pakuła
2026-01-13 21:41 ` [PATCH v2 1/3] drm/edid: parse more info from HDMI Forum vsdb Tomasz Pakuła
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Tomasz Pakuła @ 2026-01-13 21:41 UTC (permalink / raw)
To: alexander.deucher, maarten.lankhorst, mripard, tzimmermann,
airlied, simona, harry.wentland, sunpeng.li, siqueira
Cc: dri-devel, amd-gfx, linux-kernel
Adaptive Sync over PCON is only available as FreeSync over HDMI. TVs which do
not support FreeSync, do not have working VRR with DP -> HDMI 2.1 adapters even
though adapters will take care of HDMI VRR info packets.
Since HDMI VRR relies on FRL modes, this will only be enabled for PCONs in the
VRR whitelist. HDMI VRR for native HDMI connector will still not be
possible/attempted.
I myself validated these changes with my Samsung S95B + Bernhard validated on
LG C4 + FreeSync-less Sony Bravia 8. I used Alienware AW3423DWF that only
has HDMI 2.0 to check that FreeSync still triggers properly for "older" hardware
For missing VRRmax or VRRmax == 0, the upper boundary is the currently selected
video mode refresh rate. I wasn't sure how best to implement it but 10000
works since the driver already limits VRR range to the currently selected
video mode and 10000 Hz should be good enough for years to come.
Changes in v2:
- More info parsed from HDMI Forum vsdb
- EDID parsing squashed into one commit
- Support for VRRmax == 0
Tomasz Pakuła (3):
drm/edid: parse more info from HDMI Forum vsdb
drm/amd/display: rename PCON adaptive sync types
drm/amd/display: enable HDMI VRR over PCON
.../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 27 +++++++++--
.../amd/display/amdgpu_dm/amdgpu_dm_helpers.c | 2 +-
.../amd/display/modules/inc/mod_info_packet.h | 4 +-
.../display/modules/info_packet/info_packet.c | 4 +-
drivers/gpu/drm/drm_edid.c | 41 +++++++++++++++-
include/drm/drm_connector.h | 47 +++++++++++++++++++
6 files changed, 114 insertions(+), 11 deletions(-)
--
2.52.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2 1/3] drm/edid: parse more info from HDMI Forum vsdb
2026-01-13 21:41 [PATCH v2 0/3] amdgpu: Enable Adaptive Sync over PCON with HDMI VRR Tomasz Pakuła
@ 2026-01-13 21:41 ` Tomasz Pakuła
2026-01-13 21:41 ` [PATCH v2 2/3] drm/amd/display: rename PCON adaptive sync types Tomasz Pakuła
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Tomasz Pakuła @ 2026-01-13 21:41 UTC (permalink / raw)
To: alexander.deucher, maarten.lankhorst, mripard, tzimmermann,
airlied, simona, harry.wentland, sunpeng.li, siqueira
Cc: dri-devel, amd-gfx, linux-kernel
Adds flags and a struct to hold HDMI VRR information. `supported` here
is an additional property which allows easier parsing in consumers and
adds a bit of logic used to detect malformed VRRmin/VRRmax values.
Signed-off-by: Tomasz Pakuła <tomasz.pakula.oficjalny@gmail.com>
Tested-by: Bernhard Berger <bernhard.berger@gmail.com>
---
drivers/gpu/drm/drm_edid.c | 41 +++++++++++++++++++++++++++++++-
include/drm/drm_connector.h | 47 +++++++++++++++++++++++++++++++++++++
2 files changed, 87 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c
index e2e85345aa9a..1e066d614da7 100644
--- a/drivers/gpu/drm/drm_edid.c
+++ b/drivers/gpu/drm/drm_edid.c
@@ -6149,6 +6149,33 @@ static void drm_parse_ycbcr420_deep_color_info(struct drm_connector *connector,
hdmi->y420_dc_modes = dc_mask;
}
+static void drm_parse_vrr_info(struct drm_hdmi_info *hdmi, const u8 *db)
+{
+ struct drm_hdmi_vrr_cap *vrr = &hdmi->vrr_cap;
+
+ if (cea_db_payload_len(db) < 8)
+ return;
+
+ hdmi->fapa_start_location = db[8] & DRM_EDID_FAPA_START_LOCATION;
+ hdmi->allm = db[8] & DRM_EDID_ALLM;
+ hdmi->fva = db[8] & DRM_EDID_FVA;
+ vrr->cnmvrr = db[8] & DRM_EDID_CNMVRR;
+ vrr->cinema_vrr = db[8] & DRM_EDID_CINEMA_VRR;
+ vrr->mdelta = db[8] & DRM_EDID_MDELTA;
+
+ if (cea_db_payload_len(db) < 9)
+ return;
+
+ vrr->vrr_min = db[9] & DRM_EDID_VRR_MIN_MASK;
+ vrr->supported = (vrr->vrr_min >= 1 && vrr->vrr_min <= 48);
+
+ if (cea_db_payload_len(db) < 10)
+ return;
+
+ vrr->vrr_max = (db[9] & DRM_EDID_VRR_MAX_UPPER_MASK) << 2 | db[10];
+ vrr->supported &= (vrr->vrr_max == 0 || vrr->vrr_max >= 100);
+}
+
static void drm_parse_dsc_info(struct drm_hdmi_dsc_cap *hdmi_dsc,
const u8 *hf_scds)
{
@@ -6274,7 +6301,7 @@ static void drm_parse_hdmi_forum_scds(struct drm_connector *connector,
}
drm_parse_ycbcr420_deep_color_info(connector, hf_scds);
-
+ drm_parse_vrr_info(&connector->display_info.hdmi, hf_scds);
if (cea_db_payload_len(hf_scds) >= 11 && hf_scds[11]) {
drm_parse_dsc_info(hdmi_dsc, hf_scds);
dsc_support = true;
@@ -6284,6 +6311,18 @@ static void drm_parse_hdmi_forum_scds(struct drm_connector *connector,
"[CONNECTOR:%d:%s] HF-VSDB: max TMDS clock: %d KHz, HDMI 2.1 support: %s, DSC 1.2 support: %s\n",
connector->base.id, connector->name,
max_tmds_clock, str_yes_no(max_frl_rate), str_yes_no(dsc_support));
+ drm_dbg_kms(connector->dev,
+ "[CONNECTOR:%d:%s] FAPA in blanking: %s, ALLM support: %s, Fast Vactive support: %s\n",
+ connector->base.id, connector->name, str_yes_no(hdmi->fapa_start_location),
+ str_yes_no(hdmi->allm), str_yes_no(hdmi->fva));
+ drm_dbg_kms(connector->dev,
+ "[CONNECTOR:%d:%s] Negative M VRR support: %s, CinemaVRR support: %s, Mdelta: %d\n",
+ connector->base.id, connector->name, str_yes_no(hdmi->vrr_cap.cnmvrr),
+ str_yes_no(hdmi->vrr_cap.cinema_vrr), hdmi->vrr_cap.mdelta);
+ drm_dbg_kms(connector->dev,
+ "[CONNECTOR:%d:%s] VRRmin: %u, VRRmax: %u, VRR supported: %s\n",
+ connector->base.id, connector->name, hdmi->vrr_cap.vrr_min,
+ hdmi->vrr_cap.vrr_max, str_yes_no(hdmi->vrr_cap.supported));
}
static void drm_parse_hdmi_deep_color_info(struct drm_connector *connector,
diff --git a/include/drm/drm_connector.h b/include/drm/drm_connector.h
index 8f34f4b8183d..296f26551206 100644
--- a/include/drm/drm_connector.h
+++ b/include/drm/drm_connector.h
@@ -254,6 +254,41 @@ struct drm_scdc {
struct drm_scrambling scrambling;
};
+/**
+ * struct drm_hdmi_vrr_cap - Information about VRR capabilities of a HDMI sink
+ *
+ * Describes the VRR support provided by HDMI 2.1 sink. The information is
+ * fetched fom additional HFVSDB blocks defined for HDMI 2.1.
+ */
+struct drm_hdmi_vrr_cap {
+ /** @mcnmvrr: flag for Negative M VRR support by sink */
+ bool cnmvrr;
+
+ /** @mcinema_vrr: flag for Cinema VRR support by sink */
+ bool cinema_vrr;
+
+ /** @mdelta: flag for limited frame-to-frame compensation support */
+ bool mdelta;
+
+ /**
+ * @vrr_min : minimum supported variable refresh rate in Hz.
+ * Valid values only inide 1 - 48 range
+ */
+ u16 vrr_min;
+
+ /**
+ * @vrr_max : maximum supported variable refresh rate in Hz (optional).
+ * Valid values are either 0 (max based on video mode) or >= 100
+ */
+ u16 vrr_max;
+
+ /**
+ * @supported: flag for vrr support based on checking for VRRmin and
+ * VRRmax values having correct values.
+ */
+ bool supported;
+};
+
/**
* struct drm_hdmi_dsc_cap - DSC capabilities of HDMI sink
*
@@ -330,6 +365,18 @@ struct drm_hdmi_info {
/** @max_lanes: supported by sink */
u8 max_lanes;
+ /** @fapa_start_location: flag for the FAPA in blanking support */
+ bool fapa_start_location;
+
+ /** @allm: flag for Auto Low Latency Mode support by sink */
+ bool allm;
+
+ /** @fva: flag for Fast Vactive support by sink */
+ bool fva;
+
+ /** @vrr_cap: VRR capabilities of the sink */
+ struct drm_hdmi_vrr_cap vrr_cap;
+
/** @dsc_cap: DSC capabilities of the sink */
struct drm_hdmi_dsc_cap dsc_cap;
};
--
2.52.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 2/3] drm/amd/display: rename PCON adaptive sync types
2026-01-13 21:41 [PATCH v2 0/3] amdgpu: Enable Adaptive Sync over PCON with HDMI VRR Tomasz Pakuła
2026-01-13 21:41 ` [PATCH v2 1/3] drm/edid: parse more info from HDMI Forum vsdb Tomasz Pakuła
@ 2026-01-13 21:41 ` Tomasz Pakuła
2026-01-13 21:41 ` [PATCH v2 3/3] drm/amd/display: enable HDMI VRR over PCON Tomasz Pakuła
2026-01-18 11:41 ` [PATCH v2 0/3] amdgpu: Enable Adaptive Sync over PCON with HDMI VRR Tomasz Pakuła
3 siblings, 0 replies; 5+ messages in thread
From: Tomasz Pakuła @ 2026-01-13 21:41 UTC (permalink / raw)
To: alexander.deucher, maarten.lankhorst, mripard, tzimmermann,
airlied, simona, harry.wentland, sunpeng.li, siqueira
Cc: dri-devel, amd-gfx, linux-kernel
Make the name more generic for the upcoming HDMI VRR over PCON
implementation
Signed-off-by: Tomasz Pakuła <tomasz.pakula.oficjalny@gmail.com>
Tested-by: Bernhard Berger <bernhard.berger@gmail.com>
---
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 4 ++--
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c | 2 +-
drivers/gpu/drm/amd/display/modules/inc/mod_info_packet.h | 4 ++--
drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c | 4 ++--
4 files changed, 7 insertions(+), 7 deletions(-)
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 7fe40bbba265..1318d88687ae 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -9342,7 +9342,7 @@ static void update_freesync_state_on_stream(
aconn = (struct amdgpu_dm_connector *)new_stream->dm_stream_context;
- if (aconn && (aconn->as_type == FREESYNC_TYPE_PCON_IN_WHITELIST || aconn->vsdb_info.replay_mode)) {
+ if (aconn && (aconn->as_type == ADAPTIVE_SYNC_TYPE_PCON_IN_WHITELIST || aconn->vsdb_info.replay_mode)) {
pack_sdp_v1_3 = aconn->pack_sdp_v1_3;
if (aconn->vsdb_info.amd_vsdb_version == 1)
@@ -13003,7 +13003,7 @@ void amdgpu_dm_update_freesync_caps(struct drm_connector *connector,
if (amdgpu_dm_connector->dc_link)
as_type = dm_get_adaptive_sync_support_type(amdgpu_dm_connector->dc_link);
- if (as_type == FREESYNC_TYPE_PCON_IN_WHITELIST) {
+ if (as_type == ADAPTIVE_SYNC_TYPE_PCON_IN_WHITELIST) {
i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
if (i >= 0 && vsdb_info.freesync_supported && vsdb_info.amd_vsdb_version > 0) {
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
index d0f770dd0a95..63dc9382c48e 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_helpers.c
@@ -1393,7 +1393,7 @@ enum adaptive_sync_type dm_get_adaptive_sync_support_type(struct dc_link *link)
if (dpcd_caps->adaptive_sync_caps.dp_adap_sync_caps.bits.ADAPTIVE_SYNC_SDP_SUPPORT == true &&
dpcd_caps->allow_invalid_MSA_timing_param == true &&
dm_is_freesync_pcon_whitelist(dpcd_caps->branch_dev_id))
- as_type = FREESYNC_TYPE_PCON_IN_WHITELIST;
+ as_type = ADAPTIVE_SYNC_TYPE_PCON_IN_WHITELIST;
break;
default:
break;
diff --git a/drivers/gpu/drm/amd/display/modules/inc/mod_info_packet.h b/drivers/gpu/drm/amd/display/modules/inc/mod_info_packet.h
index 66dc9a19aebe..91fe039c0c95 100644
--- a/drivers/gpu/drm/amd/display/modules/inc/mod_info_packet.h
+++ b/drivers/gpu/drm/amd/display/modules/inc/mod_info_packet.h
@@ -44,8 +44,8 @@ void mod_build_hf_vsif_infopacket(const struct dc_stream_state *stream,
enum adaptive_sync_type {
ADAPTIVE_SYNC_TYPE_NONE = 0,
ADAPTIVE_SYNC_TYPE_DP = 1,
- FREESYNC_TYPE_PCON_IN_WHITELIST = 2,
- FREESYNC_TYPE_PCON_NOT_IN_WHITELIST = 3,
+ ADAPTIVE_SYNC_TYPE_PCON_IN_WHITELIST = 2,
+ ADAPTIVE_SYNC_TYPE_PCON_NOT_IN_WHITELIST = 3,
ADAPTIVE_SYNC_TYPE_EDP = 4,
};
diff --git a/drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c b/drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c
index b3d55cac3569..429bc0ab86d6 100644
--- a/drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c
+++ b/drivers/gpu/drm/amd/display/modules/info_packet/info_packet.c
@@ -535,12 +535,12 @@ void mod_build_adaptive_sync_infopacket(const struct dc_stream_state *stream,
if (stream != NULL)
mod_build_adaptive_sync_infopacket_v2(stream, param, info_packet);
break;
- case FREESYNC_TYPE_PCON_IN_WHITELIST:
+ case ADAPTIVE_SYNC_TYPE_PCON_IN_WHITELIST:
case ADAPTIVE_SYNC_TYPE_EDP:
mod_build_adaptive_sync_infopacket_v1(info_packet);
break;
case ADAPTIVE_SYNC_TYPE_NONE:
- case FREESYNC_TYPE_PCON_NOT_IN_WHITELIST:
+ case ADAPTIVE_SYNC_TYPE_PCON_NOT_IN_WHITELIST:
default:
break;
}
--
2.52.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 3/3] drm/amd/display: enable HDMI VRR over PCON
2026-01-13 21:41 [PATCH v2 0/3] amdgpu: Enable Adaptive Sync over PCON with HDMI VRR Tomasz Pakuła
2026-01-13 21:41 ` [PATCH v2 1/3] drm/edid: parse more info from HDMI Forum vsdb Tomasz Pakuła
2026-01-13 21:41 ` [PATCH v2 2/3] drm/amd/display: rename PCON adaptive sync types Tomasz Pakuła
@ 2026-01-13 21:41 ` Tomasz Pakuła
2026-01-18 11:41 ` [PATCH v2 0/3] amdgpu: Enable Adaptive Sync over PCON with HDMI VRR Tomasz Pakuła
3 siblings, 0 replies; 5+ messages in thread
From: Tomasz Pakuła @ 2026-01-13 21:41 UTC (permalink / raw)
To: alexander.deucher, maarten.lankhorst, mripard, tzimmermann,
airlied, simona, harry.wentland, sunpeng.li, siqueira
Cc: dri-devel, amd-gfx, linux-kernel
This works the same as FreeSync over PCON just without sending FreeSync
info packets (we're sending standard DisplayPort info packets) + reading
the VRR range from the HDMI Forum vendor specific data block. PCONs take
over HDMI VRR triggering.
Prefer HDMI VRR over FreeSync to reduce VRR flickering on many TVs.
FreeSync over HDMI seems to be a fallback solution and not a first-class
citizen. This especially helps VMM7100.
In case of VRRmin == 0, the selected video mode is the upper boundary.
Tested with VMM7100 and CH7218 based adapters on multiple HDMI 2.1 and
HDMI 2.0 devices. (Samsung S95B, LG C4, Sony Bravia 8, Dell AW3423DWF)
Fixes: https://gitlab.freedesktop.org/drm/amd/-/issues/4805
Signed-off-by: Tomasz Pakuła <tomasz.pakula.oficjalny@gmail.com>
Tested-by: Bernhard Berger <bernhard.berger@gmail.com>
---
.../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 23 ++++++++++++++++---
1 file changed, 20 insertions(+), 3 deletions(-)
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 1318d88687ae..53f3c88c7cdc 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -12932,6 +12932,7 @@ void amdgpu_dm_update_freesync_caps(struct drm_connector *connector,
struct dc_sink *sink;
struct amdgpu_device *adev = drm_to_adev(connector->dev);
struct amdgpu_hdmi_vsdb_info vsdb_info = {0};
+ struct drm_hdmi_vrr_cap *hdmi_vrr;
const struct edid *edid;
bool freesync_capable = false;
enum adaptive_sync_type as_type = ADAPTIVE_SYNC_TYPE_NONE;
@@ -13004,21 +13005,37 @@ void amdgpu_dm_update_freesync_caps(struct drm_connector *connector,
as_type = dm_get_adaptive_sync_support_type(amdgpu_dm_connector->dc_link);
if (as_type == ADAPTIVE_SYNC_TYPE_PCON_IN_WHITELIST) {
+ hdmi_vrr = &connector->display_info.hdmi.vrr_cap;
i = parse_hdmi_amd_vsdb(amdgpu_dm_connector, edid, &vsdb_info);
- if (i >= 0 && vsdb_info.freesync_supported && vsdb_info.amd_vsdb_version > 0) {
+ /* Prefer HDMI VRR over FreeSync */
+ if (hdmi_vrr->supported) {
+ /* VRRmax == 0 is a valid value. Selected mode is the upper boundary. */
+ u16 vrr_max = hdmi_vrr->vrr_max ? hdmi_vrr->vrr_max : 10000;
+
+ amdgpu_dm_connector->pack_sdp_v1_3 = true;
+ amdgpu_dm_connector->as_type = as_type;
+
+ amdgpu_dm_connector->min_vfreq = hdmi_vrr->vrr_min;
+ amdgpu_dm_connector->max_vfreq = vrr_max;
+
+ connector->display_info.monitor_range.min_vfreq = hdmi_vrr->vrr_min;
+ connector->display_info.monitor_range.max_vfreq = vrr_max;
+
+ } else if (i >= 0 && vsdb_info.freesync_supported && vsdb_info.amd_vsdb_version > 0) {
amdgpu_dm_connector->pack_sdp_v1_3 = true;
amdgpu_dm_connector->as_type = as_type;
amdgpu_dm_connector->vsdb_info = vsdb_info;
amdgpu_dm_connector->min_vfreq = vsdb_info.min_refresh_rate_hz;
amdgpu_dm_connector->max_vfreq = vsdb_info.max_refresh_rate_hz;
- if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
- freesync_capable = true;
connector->display_info.monitor_range.min_vfreq = vsdb_info.min_refresh_rate_hz;
connector->display_info.monitor_range.max_vfreq = vsdb_info.max_refresh_rate_hz;
}
+
+ if (amdgpu_dm_connector->max_vfreq - amdgpu_dm_connector->min_vfreq > 10)
+ freesync_capable = true;
}
update:
--
2.52.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2 0/3] amdgpu: Enable Adaptive Sync over PCON with HDMI VRR
2026-01-13 21:41 [PATCH v2 0/3] amdgpu: Enable Adaptive Sync over PCON with HDMI VRR Tomasz Pakuła
` (2 preceding siblings ...)
2026-01-13 21:41 ` [PATCH v2 3/3] drm/amd/display: enable HDMI VRR over PCON Tomasz Pakuła
@ 2026-01-18 11:41 ` Tomasz Pakuła
3 siblings, 0 replies; 5+ messages in thread
From: Tomasz Pakuła @ 2026-01-18 11:41 UTC (permalink / raw)
To: alexander.deucher, maarten.lankhorst, mripard, tzimmermann,
airlied, simona, harry.wentland, sunpeng.li, siqueira
Cc: dri-devel, amd-gfx, linux-kernel
On Tue, 2026-01-13 at 22:41 +0100, Tomasz Pakuła wrote:
> Adaptive Sync over PCON is only available as FreeSync over HDMI. TVs which do
> not support FreeSync, do not have working VRR with DP -> HDMI 2.1 adapters even
> though adapters will take care of HDMI VRR info packets.
>
> Since HDMI VRR relies on FRL modes, this will only be enabled for PCONs in the
> VRR whitelist. HDMI VRR for native HDMI connector will still not be
> possible/attempted.
>
> I myself validated these changes with my Samsung S95B + Bernhard validated on
> LG C4 + FreeSync-less Sony Bravia 8. I used Alienware AW3423DWF that only
> has HDMI 2.0 to check that FreeSync still triggers properly for "older" hardware
>
> For missing VRRmax or VRRmax == 0, the upper boundary is the currently selected
> video mode refresh rate. I wasn't sure how best to implement it but 10000
> works since the driver already limits VRR range to the currently selected
> video mode and 10000 Hz should be good enough for years to come.
>
> Changes in v2:
> - More info parsed from HDMI Forum vsdb
> - EDID parsing squashed into one commit
> - Support for VRRmax == 0
>
> Tomasz Pakuła (3):
> drm/edid: parse more info from HDMI Forum vsdb
> drm/amd/display: rename PCON adaptive sync types
> drm/amd/display: enable HDMI VRR over PCON
>
> .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 27 +++++++++--
> .../amd/display/amdgpu_dm/amdgpu_dm_helpers.c | 2 +-
> .../amd/display/modules/inc/mod_info_packet.h | 4 +-
> .../display/modules/info_packet/info_packet.c | 4 +-
> drivers/gpu/drm/drm_edid.c | 41 +++++++++++++++-
> include/drm/drm_connector.h | 47 +++++++++++++++++++
> 6 files changed, 114 insertions(+), 11 deletions(-)
I'd like to inform you that this patch series will be superseded by
another, bigger patch series which compiles my recent work as all the
separate series/patches di conflict with each other.
Thank you.
Tomasz
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-01-18 11:41 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-13 21:41 [PATCH v2 0/3] amdgpu: Enable Adaptive Sync over PCON with HDMI VRR Tomasz Pakuła
2026-01-13 21:41 ` [PATCH v2 1/3] drm/edid: parse more info from HDMI Forum vsdb Tomasz Pakuła
2026-01-13 21:41 ` [PATCH v2 2/3] drm/amd/display: rename PCON adaptive sync types Tomasz Pakuła
2026-01-13 21:41 ` [PATCH v2 3/3] drm/amd/display: enable HDMI VRR over PCON Tomasz Pakuła
2026-01-18 11:41 ` [PATCH v2 0/3] amdgpu: Enable Adaptive Sync over PCON with HDMI VRR Tomasz Pakuła
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox