All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Hung <alex.hung@amd.com>
To: Rodrigo Siqueira <siqueira@igalia.com>,
	"ChiaHsuan Chung (Tom)" <ChiaHsuan.Chung@amd.com>,
	Daniel Wheeler <daniel.wheeler@amd.com>
Cc: amd-gfx@lists.freedesktop.org, Alexander.Deucher@amd.com,
	Christian.Koenig@amd.com,
	"Mario Limonciello" <mario.limonciello@amd.com>,
	"Ivan Lipski" <ivan.lipski@amd.com>,
	"Prike Liang" <Prike.Liang@amd.com>,
	"Leo Li" <sunpeng.li@amd.com>, "Ray Wu" <Ray.Wu@amd.com>,
	"Timur Kristóf" <timur.kristof@gmail.com>
Subject: Re: [PATCH 00/14] drm/amd/display: Add support for external DP bridge encoders in DC
Date: Mon, 9 Feb 2026 11:12:23 -0700	[thread overview]
Message-ID: <b98dca3d-15b3-4202-94eb-cd4063ec12a5@amd.com> (raw)
In-Reply-To: <aYn9dPS0R5lh7hQO@atmagalia>



On 2/9/26 08:35, Rodrigo Siqueira wrote:
> On 01/26, Timur Kristóf wrote:
>> Some GPUs use external DP bridge encoders NUTMEG and TRAVIS
>> to implement analog and/or LVDS connections. Typically found in
>> CIK APU based laptops or on FM2 motherboards that have analog
>> connectors. These were necessary at the time because Kaveri
>> didn't have a built-in DAC nor LVDS support.
>>
>> These devices sadly don't work transparently and need to be
>> controlled by the driver. This series implements that.
>>
>> The first half of the series contains some minor fixes and
>> refactoring necessary for these external encoders to work.
>> The second half then adds the actual external encoder support.
>>
>> When we query connector information from the VBIOS and
>> discover a connector using such an encoder, let's find the
>> real DisplayPort encoder and use that. Set the connector
>> signal type to DP, so the pre-existing DP code paths can
>> work with it without refactoring every signal type check
>> in the DC code base.
>>
>> With that, we can now enable DC by default on CIK APUs too.
>> DC brings proper support for DP/HDMI audio, DP MST, VRR,
>> 10-bit colors, some HDR features, atomic modesetting, etc.
>> without any loss of functionality.
>>
>> Timur Kristóf (14):
>>    drm/amd/display: Use DCE 6 link encoder for DCE 6 analog connectors
>>    drm/amd/display: Only use analog link encoder with analog engine
>>    drm/amd/display: Only use analog stream encoder with analog engine
>>    drm/amd/display: Add color depth helper function to BIOS parser
>>    drm/amd/display: Refactor DAC load detection, move to HWSS
>>    drm/amd/display: Implement BIOS parser external encoder control
>>    drm/amd/display: Implement DDC probe over AUX channel
>>    drm/amd/display: Add ability for HWSS to prepare the DDC before use
>>    drm/amd/display: Use preferred DP link rate if specified
>>    drm/amd/display: Add DCE HWSS support for external DP bridge encoders
>>    drm/amd/display: Link detection for external DP bridge encoders
>>    drm/amd/display: Use external DP bridge encoders
>>    drm/amd/display: Implement DAC load detection on external DP bridge
>>      encoders
>>    drm/amdgpu: Use DC by default on CIK APUs
>>
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_device.c    |  11 --
>>   .../gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c |   9 +-
>>   .../amd/display/amdgpu_dm/amdgpu_dm_helpers.c |   3 +
>>   .../gpu/drm/amd/display/dc/bios/bios_parser.c |  46 +++++--
>>   .../drm/amd/display/dc/bios/command_table.c   | 124 ++++++------------
>>   drivers/gpu/drm/amd/display/dc/dc.h           |   4 +
>>   .../gpu/drm/amd/display/dc/dc_bios_types.h    |   6 +-
>>   .../amd/display/dc/hwss/dce110/dce110_hwseq.c |  67 ++++++++++
>>   .../drm/amd/display/dc/hwss/hw_sequencer.h    |   2 +
>>   .../drm/amd/display/dc/link/link_detection.c  |  56 ++++----
>>   .../drm/amd/display/dc/link/link_factory.c    |  29 +++-
>>   .../dc/link/protocols/link_dp_capability.c    |   2 +
>>   .../link/protocols/link_edp_panel_control.c   |   8 +-
>>   .../dc/resource/dce100/dce100_resource.c      |   8 +-
>>   .../dc/resource/dce60/dce60_resource.c        |   5 +-
>>   .../dc/resource/dce80/dce80_resource.c        |   3 +-
>>   .../amd/display/include/bios_parser_types.h   |   2 +
>>   17 files changed, 228 insertions(+), 157 deletions(-)
>>
>> -- 
>> 2.52.0
>>
> 
> Hi Alex, Dan, Tom,
> 
> This series is the last to enable amdgpu as the default for all GFX7
> GPUs. In this sense, could you include this series in the weekly
> promotion to check whether everything looks ok from a feature
> perspective?

This series was included in promotion test in previous week and no 
issues were found. However, it breaks CI tests and we will figure out 
what the causes are.

> 
> Thanks
> 


  reply	other threads:[~2026-02-09 18:12 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-26 21:08 [PATCH 00/14] drm/amd/display: Add support for external DP bridge encoders in DC Timur Kristóf
2026-01-26 21:08 ` [PATCH 01/14] drm/amd/display: Use DCE 6 link encoder for DCE 6 analog connectors Timur Kristóf
2026-01-26 21:08 ` [PATCH 02/14] drm/amd/display: Only use analog link encoder with analog engine Timur Kristóf
2026-01-26 21:08 ` [PATCH 03/14] drm/amd/display: Only use analog stream " Timur Kristóf
2026-01-26 21:08 ` [PATCH 04/14] drm/amd/display: Add color depth helper function to BIOS parser Timur Kristóf
2026-01-26 21:08 ` [PATCH 05/14] drm/amd/display: Refactor DAC load detection, move to HWSS Timur Kristóf
2026-01-30 20:00   ` Alex Hung
2026-01-26 21:08 ` [PATCH 06/14] drm/amd/display: Implement BIOS parser external encoder control Timur Kristóf
2026-01-26 21:08 ` [PATCH 07/14] drm/amd/display: Implement DDC probe over AUX channel Timur Kristóf
2026-01-30 19:53   ` Alex Hung
2026-01-26 21:08 ` [PATCH 08/14] drm/amd/display: Add ability for HWSS to prepare the DDC before use Timur Kristóf
2026-01-26 21:08 ` [PATCH 09/14] drm/amd/display: Use preferred DP link rate if specified Timur Kristóf
2026-01-26 21:08 ` [PATCH 10/14] drm/amd/display: Add DCE HWSS support for external DP bridge encoders Timur Kristóf
2026-01-26 21:08 ` [PATCH 11/14] drm/amd/display: Link detection " Timur Kristóf
2026-01-26 21:08 ` [PATCH 12/14] drm/amd/display: Use " Timur Kristóf
2026-01-26 21:08 ` [PATCH 13/14] drm/amd/display: Implement DAC load detection on " Timur Kristóf
2026-01-26 21:08 ` [PATCH 14/14] drm/amdgpu: Use DC by default on CIK APUs Timur Kristóf
2026-02-09 15:35 ` [PATCH 00/14] drm/amd/display: Add support for external DP bridge encoders in DC Rodrigo Siqueira
2026-02-09 18:12   ` Alex Hung [this message]
2026-02-09 22:10     ` Timur Kristóf
2026-02-09 23:14       ` Alex Hung
2026-02-16  4:33         ` Alex Hung

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b98dca3d-15b3-4202-94eb-cd4063ec12a5@amd.com \
    --to=alex.hung@amd.com \
    --cc=Alexander.Deucher@amd.com \
    --cc=ChiaHsuan.Chung@amd.com \
    --cc=Christian.Koenig@amd.com \
    --cc=Prike.Liang@amd.com \
    --cc=Ray.Wu@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=daniel.wheeler@amd.com \
    --cc=ivan.lipski@amd.com \
    --cc=mario.limonciello@amd.com \
    --cc=siqueira@igalia.com \
    --cc=sunpeng.li@amd.com \
    --cc=timur.kristof@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.