From: Wayne Lin <Wayne.Lin@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>,
James Lin <PingLei.Lin@amd.com>,
Chenyu Chen <Chen-Yu.Chen@amd.com>,
Bhawanpreet Lakha <bhawanpreet.lakha@amd.com>
Subject: [PATCH 41/70] drm/amd/display: add CRC configure KUnit coverage
Date: Wed, 15 Jul 2026 21:37:51 +0800 [thread overview]
Message-ID: <20260715134432.1975118-42-Wayne.Lin@amd.com> (raw)
In-Reply-To: <20260715134432.1975118-1-Wayne.Lin@amd.com>
From: Alex Hung <alex.hung@amd.com>
[WHAT]
Expose amdgpu_dm_crtc_configure_crc_source() for KUnit and add tests for
the CRTC-enable, disable (NONE), DPRX, DPRX-dither, DCN3.6 polynomial
select, and DC-configure-failure paths.
Introduce a small fake DC fixture (timing-generator and OPP callbacks
over an empty resource context) so the configure path can be exercised
without real hardware. The fixture is shared with the CRC IRQ tests.
Assisted-by: Copilot:Claude-Opus-4.8 GPT-5.5
Reviewed-by: Bhawanpreet Lakha <bhawanpreet.lakha@amd.com>
Signed-off-by: Alex Hung <alex.hung@amd.com>
Signed-off-by: Wayne Lin <wayne.lin@amd.com>
---
.../drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c | 1 +
.../amdgpu_dm/tests/amdgpu_dm_crc_test.c | 343 ++++++++++++++++++
2 files changed, 344 insertions(+)
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
index 6600cc6ecf8e..47beee584dbf 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crc.c
@@ -638,6 +638,7 @@ int amdgpu_dm_crtc_configure_crc_source(struct drm_crtc *crtc,
return ret;
}
+EXPORT_IF_KUNIT(amdgpu_dm_crtc_configure_crc_source);
int amdgpu_dm_crtc_set_crc_source(struct drm_crtc *crtc, const char *src_name)
{
diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/tests/amdgpu_dm_crc_test.c b/drivers/gpu/drm/amd/display/amdgpu_dm/tests/amdgpu_dm_crc_test.c
index 4fa0bd9669c4..383646ad7005 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/tests/amdgpu_dm_crc_test.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/tests/amdgpu_dm_crc_test.c
@@ -10,12 +10,150 @@
#include <drm/drm_modeset_lock.h>
#include "dc.h"
+#include "core_types.h"
+#include "logger_types.h"
+#include "opp.h"
+#include "timing_generator.h"
#include "amdgpu.h"
#include "amdgpu_mode.h"
#include "amdgpu_dm.h"
#include "amdgpu_dm_crc.h"
#include "amdgpu_dm_kunit_test_helpers.h"
+struct dm_test_crc_dc_fixture {
+ struct dc *dc;
+ struct dc_context *dc_ctx;
+ struct dc_state *dc_state;
+ struct dc_stream_state *stream;
+ struct dc_link *link;
+ struct timing_generator *tg;
+ struct output_pixel_processor *opp;
+ struct dal_logger *logger;
+ struct dm_crtc_state *dm_state;
+ struct crc_params crc_params;
+ enum dc_dynamic_expansion dyn_expansion;
+ enum dc_dither_option dither_option;
+ uint32_t crc_r;
+ uint32_t crc_g;
+ uint32_t crc_b;
+ bool configure_crc_called;
+ bool dyn_expansion_called;
+ bool bit_depth_reduction_called;
+ bool configure_crc_return;
+ bool get_crc_called;
+ bool get_crc_return;
+};
+
+static struct dm_test_crc_dc_fixture *dm_test_crc_dc_ctx;
+
+static bool dm_test_configure_crc(struct timing_generator *tg,
+ const struct crc_params *params)
+{
+ if (!dm_test_crc_dc_ctx)
+ return false;
+
+ dm_test_crc_dc_ctx->configure_crc_called = true;
+ dm_test_crc_dc_ctx->crc_params = *params;
+
+ return dm_test_crc_dc_ctx->configure_crc_return;
+}
+
+static bool dm_test_get_crc(struct timing_generator *tg, uint8_t idx,
+ uint32_t *r_cr, uint32_t *g_y, uint32_t *b_cb)
+{
+ if (!dm_test_crc_dc_ctx)
+ return false;
+
+ dm_test_crc_dc_ctx->get_crc_called = true;
+ *r_cr = dm_test_crc_dc_ctx->crc_r;
+ *g_y = dm_test_crc_dc_ctx->crc_g;
+ *b_cb = dm_test_crc_dc_ctx->crc_b;
+
+ return dm_test_crc_dc_ctx->get_crc_return;
+}
+
+static void dm_test_opp_set_dyn_expansion(struct output_pixel_processor *opp,
+ enum dc_color_space color_sp,
+ enum dc_color_depth color_dpth,
+ enum signal_type signal)
+{
+ if (!dm_test_crc_dc_ctx)
+ return;
+
+ dm_test_crc_dc_ctx->dyn_expansion_called = true;
+ dm_test_crc_dc_ctx->dyn_expansion = opp->dyn_expansion;
+}
+
+static void dm_test_opp_program_bit_depth_reduction(struct output_pixel_processor *opp,
+ const struct bit_depth_reduction_params *params)
+{
+ if (!dm_test_crc_dc_ctx)
+ return;
+
+ dm_test_crc_dc_ctx->bit_depth_reduction_called = true;
+}
+
+static const struct timing_generator_funcs dm_test_tg_funcs = {
+ .configure_crc = dm_test_configure_crc,
+ .get_crc = dm_test_get_crc,
+};
+
+static const struct opp_funcs dm_test_opp_funcs = {
+ .opp_set_dyn_expansion = dm_test_opp_set_dyn_expansion,
+ .opp_program_bit_depth_reduction = dm_test_opp_program_bit_depth_reduction,
+};
+
+static struct dm_test_crc_dc_fixture *dm_test_alloc_crc_dc_fixture(struct kunit *test,
+ struct amdgpu_device *adev)
+{
+ struct dm_test_crc_dc_fixture *fixture;
+ struct pipe_ctx *pipe;
+
+ fixture = kunit_kzalloc(test, sizeof(*fixture), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_NULL(test, fixture);
+
+ fixture->dm_state = kunit_kzalloc(test, sizeof(*fixture->dm_state), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_NULL(test, fixture->dm_state);
+ fixture->dc = kunit_kzalloc(test, sizeof(*fixture->dc), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_NULL(test, fixture->dc);
+ fixture->dc_ctx = kunit_kzalloc(test, sizeof(*fixture->dc_ctx), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_NULL(test, fixture->dc_ctx);
+ fixture->dc_state = kunit_kzalloc(test, sizeof(*fixture->dc_state), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_NULL(test, fixture->dc_state);
+ fixture->tg = kunit_kzalloc(test, sizeof(*fixture->tg), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_NULL(test, fixture->tg);
+ fixture->opp = kunit_kzalloc(test, sizeof(*fixture->opp), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_NULL(test, fixture->opp);
+ fixture->logger = kunit_kzalloc(test, sizeof(*fixture->logger), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_NULL(test, fixture->logger);
+ fixture->link = dm_kunit_alloc_link(test);
+ fixture->stream = dm_kunit_alloc_stream(test, fixture->link);
+
+ mutex_init(&adev->dm.dc_lock);
+ adev->dm.dc = fixture->dc;
+ fixture->dc->ctx = fixture->dc_ctx;
+ fixture->dc->current_state = fixture->dc_state;
+ fixture->dc_ctx->dc = fixture->dc;
+ fixture->dc_ctx->logger = fixture->logger;
+ fixture->link->dc = fixture->dc;
+ fixture->stream->ctx = fixture->dc_ctx;
+ fixture->stream->link = fixture->link;
+ fixture->stream->timing.h_addressable = 1920;
+ fixture->stream->timing.v_addressable = 1080;
+ fixture->configure_crc_return = true;
+ fixture->tg->funcs = &dm_test_tg_funcs;
+ fixture->opp->funcs = &dm_test_opp_funcs;
+ fixture->dm_state->stream = fixture->stream;
+
+ pipe = &fixture->dc_state->res_ctx.pipe_ctx[0];
+ pipe->stream = fixture->stream;
+ pipe->pipe_idx = 0;
+ pipe->stream_res.tg = fixture->tg;
+ pipe->stream_res.opp = fixture->opp;
+
+ return fixture;
+}
+
static struct amdgpu_crtc *dm_test_alloc_crc_crtc(struct kunit *test,
struct amdgpu_device *adev)
{
@@ -182,6 +320,203 @@ static void dm_test_crtc_verify_crc_source_invalid(struct kunit *test)
KUNIT_EXPECT_EQ(test, values_cnt, 7);
}
+/**
+ * dm_test_crtc_configure_crc_source_no_stream() - Test missing stream handling.
+ * @test: KUnit test context.
+ *
+ * Verifies that configuration is deferred/rejected before any DC access when
+ * the CRTC state does not have a stream.
+ */
+static void dm_test_crtc_configure_crc_source_no_stream(struct kunit *test)
+{
+ struct amdgpu_device *adev = dm_kunit_alloc_adev(test);
+ struct amdgpu_crtc *acrtc = dm_test_alloc_crc_crtc(test, adev);
+ struct dm_crtc_state *dm_state;
+ int ret;
+
+ dm_state = kunit_kzalloc(test, sizeof(*dm_state), GFP_KERNEL);
+ KUNIT_ASSERT_NOT_NULL(test, dm_state);
+
+ ret = amdgpu_dm_crtc_configure_crc_source(&acrtc->base, dm_state,
+ AMDGPU_DM_PIPE_CRC_SOURCE_CRTC);
+
+ KUNIT_EXPECT_EQ(test, ret, -EINVAL);
+}
+
+/**
+ * dm_test_crtc_configure_crc_source_dprx() - Test DPRX configure path.
+ * @test: KUnit test context.
+ *
+ * Verifies that a DPRX source can be configured with an empty DC resource
+ * state, covering the non-CRTC path that only updates dither/dynamic expansion.
+ */
+static void dm_test_crtc_configure_crc_source_dprx(struct kunit *test)
+{
+ struct amdgpu_device *adev = dm_kunit_alloc_adev(test);
+ struct amdgpu_crtc *acrtc = dm_test_alloc_crc_crtc(test, adev);
+ struct dm_test_crc_dc_fixture *fixture;
+ int ret;
+
+ fixture = dm_test_alloc_crc_dc_fixture(test, adev);
+ dm_test_crc_dc_ctx = fixture;
+
+ ret = amdgpu_dm_crtc_configure_crc_source(&acrtc->base, fixture->dm_state,
+ AMDGPU_DM_PIPE_CRC_SOURCE_DPRX);
+ dm_test_crc_dc_ctx = NULL;
+
+ KUNIT_EXPECT_EQ(test, ret, 0);
+ KUNIT_EXPECT_FALSE(test, fixture->configure_crc_called);
+ KUNIT_EXPECT_TRUE(test, fixture->dyn_expansion_called);
+ KUNIT_EXPECT_EQ(test, fixture->dyn_expansion, DYN_EXPANSION_DISABLE);
+ KUNIT_EXPECT_TRUE(test, fixture->bit_depth_reduction_called);
+}
+
+/**
+ * dm_test_crtc_configure_crc_source_dprx_dither() - Test DPRX dither path.
+ * @test: KUnit test context.
+ *
+ * Verifies that a DPRX dither source reaches the default dither/dynamic
+ * expansion path without requiring timing-generator callbacks.
+ */
+static void dm_test_crtc_configure_crc_source_dprx_dither(struct kunit *test)
+{
+ struct amdgpu_device *adev = dm_kunit_alloc_adev(test);
+ struct amdgpu_crtc *acrtc = dm_test_alloc_crc_crtc(test, adev);
+ struct dm_test_crc_dc_fixture *fixture;
+ int ret;
+
+ fixture = dm_test_alloc_crc_dc_fixture(test, adev);
+ dm_test_crc_dc_ctx = fixture;
+
+ ret = amdgpu_dm_crtc_configure_crc_source(&acrtc->base, fixture->dm_state,
+ AMDGPU_DM_PIPE_CRC_SOURCE_DPRX_DITHER);
+ dm_test_crc_dc_ctx = NULL;
+
+ KUNIT_EXPECT_EQ(test, ret, 0);
+ KUNIT_EXPECT_FALSE(test, fixture->configure_crc_called);
+ KUNIT_EXPECT_TRUE(test, fixture->dyn_expansion_called);
+ KUNIT_EXPECT_EQ(test, fixture->dyn_expansion, DYN_EXPANSION_AUTO);
+ KUNIT_EXPECT_TRUE(test, fixture->bit_depth_reduction_called);
+}
+
+/**
+ * dm_test_crtc_configure_crc_source_crtc() - Test CRTC enable path.
+ * @test: KUnit test context.
+ *
+ * Verifies that a CRTC source enables DC CRC capture and disables dither.
+ */
+static void dm_test_crtc_configure_crc_source_crtc(struct kunit *test)
+{
+ struct amdgpu_device *adev = dm_kunit_alloc_adev(test);
+ struct amdgpu_crtc *acrtc = dm_test_alloc_crc_crtc(test, adev);
+ struct dm_test_crc_dc_fixture *fixture;
+ int ret;
+
+ fixture = dm_test_alloc_crc_dc_fixture(test, adev);
+ dm_test_crc_dc_ctx = fixture;
+
+ ret = amdgpu_dm_crtc_configure_crc_source(&acrtc->base, fixture->dm_state,
+ AMDGPU_DM_PIPE_CRC_SOURCE_CRTC);
+ dm_test_crc_dc_ctx = NULL;
+
+ KUNIT_EXPECT_EQ(test, ret, 0);
+ KUNIT_EXPECT_TRUE(test, fixture->configure_crc_called);
+ KUNIT_EXPECT_TRUE(test, fixture->crc_params.enable);
+ KUNIT_EXPECT_TRUE(test, fixture->crc_params.continuous_mode);
+ KUNIT_EXPECT_TRUE(test, fixture->crc_params.reset);
+ KUNIT_EXPECT_EQ(test, fixture->crc_params.windowa_x_end, 1920);
+ KUNIT_EXPECT_EQ(test, fixture->crc_params.windowa_y_end, 1080);
+ KUNIT_EXPECT_TRUE(test, fixture->dyn_expansion_called);
+ KUNIT_EXPECT_EQ(test, fixture->dyn_expansion, DYN_EXPANSION_DISABLE);
+ KUNIT_EXPECT_TRUE(test, fixture->bit_depth_reduction_called);
+}
+
+/**
+ * dm_test_crtc_configure_crc_source_crtc_dcn36_poly() - Test CRC poly select.
+ * @test: KUnit test context.
+ *
+ * Verifies that DCN3.6+ configurations use the CRTC-selected CRC polynomial.
+ */
+static void dm_test_crtc_configure_crc_source_crtc_dcn36_poly(struct kunit *test)
+{
+ struct amdgpu_device *adev = dm_kunit_alloc_adev(test);
+ struct amdgpu_crtc *acrtc = dm_test_alloc_crc_crtc(test, adev);
+ struct dm_test_crc_dc_fixture *fixture;
+ int ret;
+
+ fixture = dm_test_alloc_crc_dc_fixture(test, adev);
+ adev->ip_versions[DCE_HWIP][0] = IP_VERSION(3, 6, 0);
+ acrtc->dm_irq_params.crc_poly_mode = CRC_POLY_MODE_32;
+ dm_test_crc_dc_ctx = fixture;
+
+ ret = amdgpu_dm_crtc_configure_crc_source(&acrtc->base, fixture->dm_state,
+ AMDGPU_DM_PIPE_CRC_SOURCE_CRTC);
+ dm_test_crc_dc_ctx = NULL;
+
+ KUNIT_EXPECT_EQ(test, ret, 0);
+ KUNIT_EXPECT_TRUE(test, fixture->configure_crc_called);
+ KUNIT_EXPECT_EQ(test, fixture->crc_params.crc_poly_mode, CRC_POLY_MODE_32);
+}
+
+/**
+ * dm_test_crtc_configure_crc_source_crtc_configure_fails() - Test failure path.
+ * @test: KUnit test context.
+ *
+ * Verifies that a DC CRC configuration failure is reported as -EINVAL and
+ * stops before dither/dynamic expansion programming.
+ */
+static void dm_test_crtc_configure_crc_source_crtc_configure_fails(struct kunit *test)
+{
+ struct amdgpu_device *adev = dm_kunit_alloc_adev(test);
+ struct amdgpu_crtc *acrtc = dm_test_alloc_crc_crtc(test, adev);
+ struct dm_test_crc_dc_fixture *fixture;
+ int ret;
+
+ fixture = dm_test_alloc_crc_dc_fixture(test, adev);
+ fixture->configure_crc_return = false;
+ dm_test_crc_dc_ctx = fixture;
+
+ ret = amdgpu_dm_crtc_configure_crc_source(&acrtc->base, fixture->dm_state,
+ AMDGPU_DM_PIPE_CRC_SOURCE_CRTC);
+ dm_test_crc_dc_ctx = NULL;
+
+ KUNIT_EXPECT_EQ(test, ret, -EINVAL);
+ KUNIT_EXPECT_TRUE(test, fixture->configure_crc_called);
+ KUNIT_EXPECT_FALSE(test, fixture->dyn_expansion_called);
+ KUNIT_EXPECT_FALSE(test, fixture->bit_depth_reduction_called);
+}
+
+/**
+ * dm_test_crtc_configure_crc_source_none() - Test CRC disable path.
+ * @test: KUnit test context.
+ *
+ * Verifies that source NONE disables DC CRC capture and restores default
+ * dither/dynamic expansion.
+ */
+static void dm_test_crtc_configure_crc_source_none(struct kunit *test)
+{
+ struct amdgpu_device *adev = dm_kunit_alloc_adev(test);
+ struct amdgpu_crtc *acrtc = dm_test_alloc_crc_crtc(test, adev);
+ struct dm_test_crc_dc_fixture *fixture;
+ int ret;
+
+ fixture = dm_test_alloc_crc_dc_fixture(test, adev);
+ dm_test_crc_dc_ctx = fixture;
+
+ ret = amdgpu_dm_crtc_configure_crc_source(&acrtc->base, fixture->dm_state,
+ AMDGPU_DM_PIPE_CRC_SOURCE_NONE);
+ dm_test_crc_dc_ctx = NULL;
+
+ KUNIT_EXPECT_EQ(test, ret, 0);
+ KUNIT_EXPECT_TRUE(test, fixture->configure_crc_called);
+ KUNIT_EXPECT_FALSE(test, fixture->crc_params.enable);
+ KUNIT_EXPECT_FALSE(test, fixture->crc_params.continuous_mode);
+ KUNIT_EXPECT_TRUE(test, fixture->crc_params.reset);
+ KUNIT_EXPECT_TRUE(test, fixture->dyn_expansion_called);
+ KUNIT_EXPECT_EQ(test, fixture->dyn_expansion, DYN_EXPANSION_AUTO);
+ KUNIT_EXPECT_TRUE(test, fixture->bit_depth_reduction_called);
+}
+
/**
* dm_test_need_dp_aux() - Test dm_need_dp_aux().
* @test: KUnit test context.
@@ -314,6 +649,14 @@ static struct kunit_case dm_crc_test_cases[] = {
/* amdgpu_dm_crtc_verify_crc_source() */
KUNIT_CASE(dm_test_crtc_verify_crc_source_valid),
KUNIT_CASE(dm_test_crtc_verify_crc_source_invalid),
+ /* amdgpu_dm_crtc_configure_crc_source() */
+ KUNIT_CASE(dm_test_crtc_configure_crc_source_no_stream),
+ KUNIT_CASE(dm_test_crtc_configure_crc_source_dprx),
+ KUNIT_CASE(dm_test_crtc_configure_crc_source_dprx_dither),
+ KUNIT_CASE(dm_test_crtc_configure_crc_source_crtc),
+ KUNIT_CASE(dm_test_crtc_configure_crc_source_crtc_dcn36_poly),
+ KUNIT_CASE(dm_test_crtc_configure_crc_source_crtc_configure_fails),
+ KUNIT_CASE(dm_test_crtc_configure_crc_source_none),
/* dm_need_dp_aux() */
KUNIT_CASE(dm_test_need_dp_aux),
/* dm_crc_source_should_start_dprx() */
--
2.43.0
next prev parent reply other threads:[~2026-07-15 13:47 UTC|newest]
Thread overview: 72+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-15 13:37 [PATCH 00/70] DC Patches July 13, 2026 Wayne Lin
2026-07-15 13:37 ` [PATCH 01/70] drm/amd/display: Correct pipe usage for populating stream config Wayne Lin
2026-07-15 13:37 ` [PATCH 02/70] drm/amd/display: Add Writeback Watermarks and Latency Fields Wayne Lin
2026-07-15 13:37 ` [PATCH 03/70] drm/amd/display: Add MCIF ARB programming structures Wayne Lin
2026-07-15 13:37 ` [PATCH 04/70] drm/amd/display: Increase HDMI AV mute wait from 2 to 3 frames Wayne Lin
2026-07-15 13:37 ` [PATCH 05/70] drm/amd/display: add dm_dmub_hw_init KUnit coverage Wayne Lin
2026-07-15 13:37 ` [PATCH 06/70] drm/amd/display: add dm_dmub_hw_resume " Wayne Lin
2026-07-15 13:37 ` [PATCH 07/70] drm/amd/display: add fused IO " Wayne Lin
2026-07-15 13:37 ` [PATCH 08/70] drm/amd/display: add DMUB command sync " Wayne Lin
2026-07-15 13:37 ` [PATCH 09/70] drm/amd/display: add VBIOS bounding box KUnit test Wayne Lin
2026-07-15 13:37 ` [PATCH 10/70] drm/amd/display: Drop CONFIG_DRM_AMD_DC_DCN4_2 from 3dlut code Wayne Lin
2026-07-15 13:37 ` [PATCH 11/70] drm/amd/display: Refactor DPP_PROGRAM_GAMUT_REMAP to drop pipe_ctx param Wayne Lin
2026-07-15 13:37 ` [PATCH 12/70] drm/amd/display: Refactor DPP_SET_OUTPUT_TRANSFER_FUNC to drop pipe_ctx Wayne Lin
2026-07-15 13:37 ` [PATCH 13/70] drm/amd/display: Fix DP LT failure logging Wayne Lin
2026-07-15 13:37 ` [PATCH 14/70] drm/amd/display: Add updated MCIF ARB register definitions Wayne Lin
2026-07-15 13:37 ` [PATCH 15/70] drm/amd/display: Replace amdgpu_dm_kunit_helpers.h with dm_helpers.h Wayne Lin
2026-07-15 13:37 ` [PATCH 16/70] drm/amd/display: Add stream creation tests for connector Wayne Lin
2026-07-15 13:37 ` [PATCH 17/70] drm/amd/display: Add detect and poll " Wayne Lin
2026-07-15 13:37 ` [PATCH 18/70] drm/amd/display: Add register and unregister " Wayne Lin
2026-07-15 13:37 ` [PATCH 19/70] drm/amd/display: Add destroy " Wayne Lin
2026-07-15 13:37 ` [PATCH 20/70] drm/amd/display: Add encoder helper " Wayne Lin
2026-07-15 13:37 ` [PATCH 21/70] drm/amd/display: Add EDID management " Wayne Lin
2026-07-15 13:37 ` [PATCH 22/70] drm/amd/display: fix debug flags assignment in dmub_replay.c Wayne Lin
2026-07-15 13:37 ` [PATCH 23/70] drm/amd/display: Add DWB validation support to DML2.1 wrapper Wayne Lin
2026-07-15 13:37 ` [PATCH 24/70] drm/amd/display: Split DPMS ON into parts Wayne Lin
2026-07-15 13:37 ` [PATCH 25/70] drm/amd/display: Test color mod init and 3D LUT size Wayne Lin
2026-07-15 13:37 ` [PATCH 26/70] drm/amd/display: Test plane colorop helper walkers Wayne Lin
2026-07-15 13:37 ` [PATCH 27/70] drm/amd/display: Test CRTC color management update Wayne Lin
2026-07-15 13:37 ` [PATCH 28/70] drm/amd/display: Test plane " Wayne Lin
2026-07-15 13:37 ` [PATCH 29/70] drm/amd/display: Test plane colorop pipeline update Wayne Lin
2026-07-15 13:37 ` [PATCH 30/70] drm/amd/display: add KUnit tests for DM IP-block callbacks Wayne Lin
2026-07-15 13:37 ` [PATCH 31/70] drm/amd/display: add KUnit tests for DM CRTC vblank/scanout Wayne Lin
2026-07-15 13:37 ` [PATCH 32/70] drm/amd/display: add KUnit tests for DM atomic state helpers Wayne Lin
2026-07-15 13:37 ` [PATCH 33/70] drm/amd/display: add KUnit tests for DM stream scaling Wayne Lin
2026-07-15 13:37 ` [PATCH 34/70] drm/amd/display: add KUnit tests for HDCP state diffing Wayne Lin
2026-07-15 13:37 ` [PATCH 35/70] drm/amd/display: add KUnit tests for freesync config Wayne Lin
2026-07-15 13:37 ` [PATCH 36/70] drm/amd/display: add KUnit tests for per-frame master sync Wayne Lin
2026-07-15 13:37 ` [PATCH 37/70] drm/amd/display: add KUnit tests for stutter quirk Wayne Lin
2026-07-15 13:37 ` [PATCH 38/70] drm/amd/display: add KUnit tests for DPCD poweroff delay Wayne Lin
2026-07-15 13:37 ` [PATCH 39/70] drm/amd/display: add CRC source list KUnit coverage Wayne Lin
2026-07-15 13:37 ` [PATCH 40/70] drm/amd/display: add CRC source verify " Wayne Lin
2026-07-15 13:37 ` Wayne Lin [this message]
2026-07-15 13:37 ` [PATCH 42/70] drm/amd/display: add CRC set-source " Wayne Lin
2026-07-15 13:37 ` [PATCH 43/70] drm/amd/display: add CRC IRQ handler " Wayne Lin
2026-07-15 13:37 ` [PATCH 44/70] drm/amd/display: Adjust the structure dml2_dchub_watermark_regs Wayne Lin
2026-07-15 13:37 ` [PATCH 45/70] drm/amd/display: Add mode helper tests for connector Wayne Lin
2026-07-15 13:37 ` [PATCH 46/70] drm/amd/display: Add i2c and EDID parsing " Wayne Lin
2026-07-15 13:37 ` [PATCH 47/70] drm/amd/display: Add mode validation and CEC " Wayne Lin
2026-07-15 13:37 ` [PATCH 48/70] drm/amd/display: Add stream validation " Wayne Lin
2026-07-15 13:37 ` [PATCH 49/70] drm/amd/display: Adjust structure dml2_display_dlg_regs Wayne Lin
2026-07-15 13:38 ` [PATCH 50/70] drm/amd/display: Revert Fix DMSS not triggering for HDR to SDR transition Wayne Lin
2026-07-15 13:38 ` [PATCH 51/70] drm/amd/display: Introduce dc_probe public object model Wayne Lin
2026-07-15 13:38 ` [PATCH 52/70] drm/amd/display: Introduce dc_update_state unified commit interface Wayne Lin
2026-07-15 13:38 ` [PATCH 53/70] drm/amd/display: Refactor dc_validation_set array into single root struct Wayne Lin
2026-07-15 13:38 ` [PATCH 54/70] drm/amd/display: Introduce dc_state_get_status unified status accessor Wayne Lin
2026-07-15 13:38 ` [PATCH 55/70] drm/amd/display: Introduce program_perfmon hwss hook and BLS perfmon sequence Wayne Lin
2026-07-15 13:38 ` [PATCH 56/70] drm/amd/display: Wire probe commit path into dc_update_state Wayne Lin
2026-07-15 13:38 ` [PATCH 57/70] drm/amd/display: Make dc_state_update const in commit path Wayne Lin
2026-07-15 13:38 ` [PATCH 58/70] drm/amd/display: Remove unused-but-set variable hubp from Wayne Lin
2026-07-15 13:38 ` [PATCH 59/70] drm/amd/display: set new_stream to NULL after release Wayne Lin
2026-07-15 13:38 ` [PATCH 60/70] drm/amd/display: Register DCN as a PMFW DF C-state client on DCN42 Wayne Lin
2026-07-15 13:38 ` [PATCH 61/70] drm/amd/display: fix wrong register field in dccg35_set_hdmistreamclk_src_new Wayne Lin
2026-07-15 13:38 ` [PATCH 62/70] drm/amd/display: wire DCN42B mcache programming callback Wayne Lin
2026-07-15 13:38 ` [PATCH 63/70] drm/amd/display: Trim DCE from DCN-only builds Wayne Lin
2026-07-15 13:38 ` [PATCH 64/70] drm/amd/display: hide Apple Studio Display secondary tile Wayne Lin
2026-07-15 13:38 ` [PATCH 65/70] drm/amd/display: Reduce DML reinitialization when params don't change Wayne Lin
2026-07-15 13:38 ` [PATCH 66/70] drm/amd/display: Add DCHUBBUB_HW_DEBUG offset/mask Wayne Lin
2026-07-15 13:38 ` [PATCH 67/70] drm/amd/display: Fix missing dc_3dlut forward declaration Wayne Lin
2026-07-15 13:38 ` [PATCH 68/70] drm/amd/display: Flush IRQ workqueue in schedule-work tests Wayne Lin
2026-07-15 15:38 ` McRae, Geoffrey
2026-07-15 13:38 ` [PATCH 69/70] drm/amd/display: Add SPL UPSP upsampling and YUV422 scaling support Wayne Lin
2026-07-15 13:38 ` [PATCH 70/70] drm/amd/display: Promote DC to 3.2.390 Wayne Lin
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=20260715134432.1975118-42-Wayne.Lin@amd.com \
--to=wayne.lin@amd.com \
--cc=Chen-Yu.Chen@amd.com \
--cc=PingLei.Lin@amd.com \
--cc=Ray.Wu@amd.com \
--cc=alex.hung@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=aurabindo.pillai@amd.com \
--cc=bhawanpreet.lakha@amd.com \
--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 \
/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.