From: Mark Brown <broonie@kernel.org>
To: Alex Deucher <alexdeucher@gmail.com>
Cc: Alex Deucher <alexander.deucher@amd.com>,
Alex Hung <alex.hung@amd.com>,
George Zhang <george.zhang@amd.com>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
Linux Next Mailing List <linux-next@vger.kernel.org>,
Mark Brown <broonie@kernel.org>
Subject: linux-next: manual merge of the amdgpu tree with the drm,drm-misc tree
Date: Thu, 24 Sep 2026 17:13:37 +0100 [thread overview]
Message-ID: <arVMMQKr301Co9RF@sirena.org.uk> (raw)
[-- Attachment #1: Type: text/plain, Size: 7180 bytes --]
Hi all,
Today's linux-next merge of the amdgpu tree got a conflict in:
drivers/gpu/drm/amd/display/amdgpu_dm/tests/amdgpu_dm_crtc_test.c
between commits:
dae05bc4c8351 ("next-20260921/drm")
02ac945db0d1e ("next-20260921/drm-misc")
from the drm,drm-misc tree and commits:
cbb329ca3b386 ("drm/amd/display: Fix KUnit CRTC warnings")
a3e8dc37a616d ("drm/amd/display: Fix KUnit checkpatch warnings")
from the amdgpu tree.
I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging. You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.
diff --combined drivers/gpu/drm/amd/display/amdgpu_dm/tests/amdgpu_dm_crtc_test.c
index ade20e6506780,489dd56474b91..0000000000000
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/tests/amdgpu_dm_crtc_test.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/tests/amdgpu_dm_crtc_test.c
@@@ -42,10 -42,10 +42,10 @@@ static void dm_test_crtc_modeset_requir
}
/**
- * dm_test_crtc_modeset_required_active_active_changed - Test Crtc modeset required active active changed
+ * dm_test_crtc_modeset_required_active_state_changed - Test modeset required when the active state changes
* @test: The KUnit test context
*/
- static void dm_test_crtc_modeset_required_active_active_changed(struct kunit *test)
+ static void dm_test_crtc_modeset_required_active_state_changed(struct kunit *test)
{
struct drm_crtc_state state = {};
@@@ -877,10 -877,39 +877,39 @@@ static bool dm_test_crtc_get_vblank_tim
return false;
}
+ static int dm_test_crtc_enable_vblank(struct drm_crtc *crtc)
+ {
+ return 0;
+ }
+
+ static void dm_test_crtc_disable_vblank(struct drm_crtc *crtc)
+ {
+ }
+
+ static u32 dm_test_crtc_get_vblank_counter(struct drm_crtc *crtc)
+ {
+ return 0;
+ }
+
static const struct drm_crtc_funcs dm_test_crtc_funcs = {
+ .destroy = amdgpu_dm_crtc_destroy,
+ .atomic_duplicate_state = amdgpu_dm_crtc_duplicate_state,
+ .atomic_destroy_state = amdgpu_dm_crtc_destroy_state,
+ .enable_vblank = dm_test_crtc_enable_vblank,
+ .disable_vblank = dm_test_crtc_disable_vblank,
+ .get_vblank_counter = dm_test_crtc_get_vblank_counter,
.get_vblank_timestamp = dm_test_crtc_get_vblank_timestamp,
};
+ static void dm_test_crtc_cleanup(void *data)
+ {
+ struct amdgpu_crtc *acrtc = data;
+
+ if (acrtc->base.dev && drm_dev_has_vblank(acrtc->base.dev))
+ drm_crtc_vblank_off(&acrtc->base);
+ list_del_init(&acrtc->base.head);
+ }
+
/*
* dm_test_crtc_arm_irq_src - Prime an IRQ source so get()/put() short-circuit.
* @test: The KUnit test context
@@@ -947,8 -976,13 +976,13 @@@ dm_test_crtc_setup_enable(struct kunit
acrtc = kunit_kzalloc(test, sizeof(*acrtc), GFP_KERNEL);
KUNIT_ASSERT_NOT_ERR_OR_NULL(test, acrtc);
acrtc->base.dev = &adev->ddev;
+ acrtc->base.funcs = &dm_test_crtc_funcs;
acrtc->base.enabled = true;
acrtc->crtc_id = 0;
+ INIT_LIST_HEAD(&acrtc->base.head);
+ list_add_tail(&acrtc->base.head, &adev->ddev.mode_config.crtc_list);
+ KUNIT_ASSERT_EQ(test,
+ kunit_add_action_or_reset(test, dm_test_crtc_cleanup, acrtc), 0);
link = dm_kunit_alloc_link(test);
stream = dm_kunit_alloc_stream(test, link);
@@@ -1508,8 -1542,6 +1542,6 @@@ static void dm_test_crtc_duplicate_stat
amdgpu_dm_crtc_destroy_state(crtc, dup);
}
- /* Tests for amdgpu_dm_crtc_create_state() */
-
/**
* dm_test_crtc_duplicate_state_retains_stream - Test duplicate retains the stream
* @test: The KUnit test context
@@@ -1569,6 -1601,8 +1601,6 @@@ static void dm_test_crtc_duplicate_stat
KUNIT_EXPECT_NULL(test, amdgpu_dm_crtc_duplicate_state(crtc));
}
-/* Tests for amdgpu_dm_crtc_destroy() */
-
/**
* dm_test_crtc_destroy_cleans_up_and_frees - Test destroy tears down the CRTC
* @test: The KUnit test context
@@@ -1608,7 -1642,7 +1640,7 @@@ static void dm_test_crtc_destroy_cleans
KUNIT_EXPECT_EQ(test, adev->ddev.mode_config.num_crtc, 0);
}
- /* Tests for amdgpu_dm_crtc_destroy() */
+ /* Tests for amdgpu_dm_crtc_create_state() */
/**
* dm_test_crtc_create_state_allocates_state - Test create_state allocates a fresh state
@@@ -1666,7 -1700,7 +1698,7 @@@ static void dm_test_crtc_reset_state_re
old->stream = stream;
crtc->state = &old->base;
- amdgpu_dm_crtc_reset_state(crtc);
+ amdgpu_dm_crtc_create_state(crtc);
/* Old state was destroyed (stream ref dropped) and a new one installed. */
KUNIT_EXPECT_EQ(test, kref_read(&stream->refcount), 1);
@@@ -1782,6 -1816,11 +1814,11 @@@ static void dm_test_crtc_handle_vblank_
KUNIT_ASSERT_NOT_ERR_OR_NULL(test, event);
acrtc->base.dev = &adev->ddev;
+ acrtc->base.funcs = &dm_test_crtc_funcs;
+ INIT_LIST_HEAD(&acrtc->base.head);
+ list_add_tail(&acrtc->base.head, &adev->ddev.mode_config.crtc_list);
+ KUNIT_ASSERT_EQ(test,
+ kunit_add_action_or_reset(test, dm_test_crtc_cleanup, acrtc), 0);
acrtc->event = event;
acrtc->pflip_status = AMDGPU_FLIP_SUBMITTED;
@@@ -1818,6 -1857,11 +1855,11 @@@ static void dm_test_crtc_handle_vblank_
KUNIT_ASSERT_NOT_ERR_OR_NULL(test, event);
acrtc->base.dev = &adev->ddev;
+ acrtc->base.funcs = &dm_test_crtc_funcs;
+ INIT_LIST_HEAD(&acrtc->base.head);
+ list_add_tail(&acrtc->base.head, &adev->ddev.mode_config.crtc_list);
+ KUNIT_ASSERT_EQ(test,
+ kunit_add_action_or_reset(test, dm_test_crtc_cleanup, acrtc), 0);
acrtc->event = event;
acrtc->pflip_status = AMDGPU_FLIP_NONE;
@@@ -2577,7 -2621,7 +2619,7 @@@ static void dm_test_crtc_atomic_check_i
static struct kunit_case amdgpu_dm_crtc_tests[] = {
/* amdgpu_dm_crtc_modeset_required */
KUNIT_CASE(dm_test_crtc_modeset_required_active_mode_changed),
- KUNIT_CASE(dm_test_crtc_modeset_required_active_active_changed),
+ KUNIT_CASE(dm_test_crtc_modeset_required_active_state_changed),
KUNIT_CASE(dm_test_crtc_modeset_required_active_connectors_changed),
KUNIT_CASE(dm_test_crtc_modeset_required_inactive),
KUNIT_CASE(dm_test_crtc_modeset_required_no_changes),
@@@ -2637,12 -2681,13 +2679,13 @@@
KUNIT_CASE(dm_test_count_crtc_active_planes_mixed),
/* amdgpu_dm_crtc_duplicate_state */
KUNIT_CASE(dm_test_crtc_duplicate_state_copies_fields),
- /* amdgpu_dm_crtc_create_state */
- KUNIT_CASE(dm_test_crtc_create_state_allocates_state),
KUNIT_CASE(dm_test_crtc_duplicate_state_retains_stream),
KUNIT_CASE(dm_test_crtc_duplicate_state_null_state_returns_null),
/* amdgpu_dm_crtc_destroy */
KUNIT_CASE(dm_test_crtc_destroy_cleans_up_and_frees),
+ /* amdgpu_dm_crtc_create_state */
+ KUNIT_CASE(dm_test_crtc_create_state_allocates_state),
+ KUNIT_CASE(dm_test_crtc_reset_state_replaces_existing),
/* amdgpu_dm_crtc_destroy_state */
KUNIT_CASE(dm_test_crtc_destroy_state_no_stream),
KUNIT_CASE(dm_test_crtc_destroy_state_releases_stream),
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
reply other threads:[~2026-09-24 16:13 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=arVMMQKr301Co9RF@sirena.org.uk \
--to=broonie@kernel.org \
--cc=alex.hung@amd.com \
--cc=alexander.deucher@amd.com \
--cc=alexdeucher@gmail.com \
--cc=george.zhang@amd.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-next@vger.kernel.org \
/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
all inboxes | Powered by JetHome®