From: Aurabindo Pillai <aurabindo.pillai@amd.com>
To: <amd-gfx@lists.freedesktop.org>
Cc: Harry Wentland <harry.wentland@amd.com>,
Leo Li <sunpeng.li@amd.com>,
Aurabindo Pillai <aurabindo.pillai@amd.com>,
Roman Li <roman.li@amd.com>, Wayne Lin <wayne.lin@amd.com>,
Tom Chung <chiahsuan.chung@amd.com>,
"Fangzhi Zuo" <jerry.zuo@amd.com>,
Dan Wheeler <daniel.wheeler@amd.com>, Ray Wu <Ray.Wu@amd.com>,
Ivan Lipski <ivan.lipski@amd.com>, Alex Hung <alex.hung@amd.com>
Subject: [PATCH 00/12] DC Patches for 25 Aug 2025
Date: Wed, 20 Aug 2025 16:19:50 -0400 [thread overview]
Message-ID: <20250820202103.1122706-1-aurabindo.pillai@amd.com> (raw)
This DC patchset brings improvements in multiple areas. In summary, we have:
* Firmware releases for multiple asics
* CodeQL fixes
* Fix for double cursor with 180 degree rotation on large resolutions
* Misc bug fixes for DSC, PSR/Replay, DPIA etc.
___
Ausef Yousof (1):
drm/amd/display: track dpia support
Clay King (3):
drm/amd/display: Multiplication result converted to larger type
drm/amd/display: Incorrect 'not' operator usage
drm/amd/display: Array offset used before range check
Cruise Hung (1):
drm/amd/display: Reserve instance index notified by DMUB
Dillon Varone (1):
drm/amd/display: Consider sink max slice width limitation for dsc
Ivan Lipski (1):
drm/amd/display: Support HW cursor 180 rot for any number of pipe
splits
Karthi Kandasamy (1):
drm/amd/display: Add control flags to force PSR / replay
Nicholas Carbones (1):
drm/amd/display: DC v3.2.347
Reza Amini (1):
drm/amd/display: Decrease stack size in logging path
Taimur Hassan (1):
drm/amd/display: [FW Promotion] Release 0.1.24.0
Yihan Zhu (1):
drm/amd/display: wait for otg update pending latch before clock
optimization
.../gpu/drm/amd/display/dc/basics/dce_calcs.c | 2 +-
.../drm/amd/display/dc/basics/fixpt31_32.c | 2 +-
.../gpu/drm/amd/display/dc/basics/vector.c | 6 +-
.../drm/amd/display/dc/core/dc_hw_sequencer.c | 2 +
drivers/gpu/drm/amd/display/dc/core/dc_stat.c | 2 +-
drivers/gpu/drm/amd/display/dc/dc.h | 2 +-
drivers/gpu/drm/amd/display/dc/dc_types.h | 4 +
.../gpu/drm/amd/display/dc/dce/dce_i2c_hw.c | 2 +-
.../gpu/drm/amd/display/dc/dce/dce_i2c_sw.c | 2 +-
drivers/gpu/drm/amd/display/dc/dce/dmub_psr.c | 2 +-
.../dc/dml/dcn20/display_rq_dlg_calc_20.c | 2 +-
.../dc/dml/dcn20/display_rq_dlg_calc_20v2.c | 2 +-
.../dc/dml/dcn21/display_rq_dlg_calc_21.c | 2 +-
.../dc/dml/dcn30/display_rq_dlg_calc_30.c | 2 +-
.../amd/display/dc/dml/dcn302/dcn302_fpu.c | 2 +-
.../amd/display/dc/dml/dcn303/dcn303_fpu.c | 2 +-
.../dc/dml/dcn31/display_rq_dlg_calc_31.c | 2 +-
.../dc/dml/dcn314/display_rq_dlg_calc_314.c | 2 +-
.../drm/amd/display/dc/dml/dcn32/dcn32_fpu.c | 4 +-
.../amd/display/dc/dml/dcn321/dcn321_fpu.c | 2 +-
drivers/gpu/drm/amd/display/dc/dsc/dc_dsc.c | 5 ++
.../amd/display/dc/hwss/dcn10/dcn10_hwseq.c | 77 +++++++------------
.../gpu/drm/amd/display/dc/inc/core_types.h | 1 +
.../amd/display/dc/inc/hw/timing_generator.h | 1 +
.../link/protocols/link_edp_panel_control.c | 4 +
.../dc/mmhubbub/dcn20/dcn20_mmhubbub.c | 2 +-
.../amd/display/dc/optc/dcn32/dcn32_optc.h | 1 +
.../amd/display/dc/optc/dcn35/dcn35_optc.c | 18 +++++
.../dc/resource/dce112/dce112_resource.c | 12 +--
.../dc/resource/dce120/dce120_resource.c | 6 +-
.../dc/resource/dcn30/dcn30_resource.c | 2 +-
drivers/gpu/drm/amd/display/dmub/dmub_srv.h | 3 +
.../gpu/drm/amd/display/dmub/inc/dmub_cmd.h | 4 +
.../gpu/drm/amd/display/dmub/src/dmub_dcn35.c | 7 +-
.../drm/amd/display/dmub/src/dmub_srv_stat.c | 8 +-
35 files changed, 112 insertions(+), 87 deletions(-)
--
2.50.1
next reply other threads:[~2025-08-20 20:21 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-20 20:19 Aurabindo Pillai [this message]
2025-08-20 20:19 ` [PATCH 01/12] drm/amd/display: Add control flags to force PSR / replay Aurabindo Pillai
2025-08-20 20:19 ` [PATCH 02/12] drm/amd/display: Reserve instance index notified by DMUB Aurabindo Pillai
2025-08-20 20:19 ` [PATCH 03/12] drm/amd/display: track dpia support Aurabindo Pillai
2025-08-20 20:19 ` [PATCH 04/12] drm/amd/display: Decrease stack size in logging path Aurabindo Pillai
2025-08-20 20:19 ` [PATCH 05/12] drm/amd/display: Support HW cursor 180 rot for any number of pipe splits Aurabindo Pillai
2025-08-20 20:19 ` [PATCH 06/12] drm/amd/display: Multiplication result converted to larger type Aurabindo Pillai
2025-08-20 20:19 ` [PATCH 07/12] drm/amd/display: Incorrect 'not' operator usage Aurabindo Pillai
2025-08-20 20:19 ` [PATCH 08/12] drm/amd/display: wait for otg update pending latch before clock optimization Aurabindo Pillai
2025-08-20 20:19 ` [PATCH 09/12] drm/amd/display: Array offset used before range check Aurabindo Pillai
2025-08-20 20:20 ` [PATCH 10/12] drm/amd/display: Consider sink max slice width limitation for dsc Aurabindo Pillai
2025-08-20 20:20 ` [PATCH 11/12] drm/amd/display: [FW Promotion] Release 0.1.24.0 Aurabindo Pillai
2025-08-20 20:20 ` [PATCH 12/12] drm/amd/display: DC v3.2.347 Aurabindo Pillai
2025-08-25 13:20 ` [PATCH 00/12] DC Patches for 25 Aug 2025 Wheeler, Daniel
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=20250820202103.1122706-1-aurabindo.pillai@amd.com \
--to=aurabindo.pillai@amd.com \
--cc=Ray.Wu@amd.com \
--cc=alex.hung@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=chiahsuan.chung@amd.com \
--cc=daniel.wheeler@amd.com \
--cc=harry.wentland@amd.com \
--cc=ivan.lipski@amd.com \
--cc=jerry.zuo@amd.com \
--cc=roman.li@amd.com \
--cc=sunpeng.li@amd.com \
--cc=wayne.lin@amd.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).