This is a follow-up to the plane reset removal series, and part of a larger effort to remove the reset hook from all KMS objects.
The CRTC reset hook is overloaded: it is called both at probe time to create the initial software state and during suspend/resume to reset hardware and software state. These two roles have different requirements, and the reset hook is not fallible, making error handling difficult for the initial state allocation path. While reset has the semantics to reset both the software and hardware state, the vast majority of implementations and all the helpers only reset the software state, making them equivalent to atomic_create_state in practice. The atomic_create_state hook makes this explicit: it only allocates and initializes a pristine state without any side effect, and returns the state pointer or an ERR_PTR on failure. This series converts all CRTC drivers tree-wide from the reset hook to atomic_create_state, then removes the reset hook from struct drm_crtc_funcs entirely. Two drivers (tilcdc and loongson) had actual hardware reset logic mixed into their reset hook; those are moved to CRTC creation instead. The conversions were done using a combination of Coccinelle semantic patches and manual adjustments. Signed-off-by: Maxime Ripard <[email protected]> --- Changes in v4: - Convert gm12u320 too - Link to v3: https://lore.kernel.org/r/[email protected] Changes in v3: - Test if crtc->helper_private is set before accessing it, and call the temp variable to store it helper_funcs - Rework outdated commit logs - Fix error path for amdgpu_dm_crtc_init - Fix new amdgpu tests doc - Rebased on drm-misc-next-2026-09-03 - Link to v2: https://lore.kernel.org/r/[email protected] Changes in v2: - Fix indentation in logicvc - Fix hardware reset at probe and suspend for loonsoon and tilcldc - Fix state creation for amdgpu - Rebase on current drm-misc-next - Fix commit message for st7920 - Fix merge conflict for mediatek - Link to v1: https://lore.kernel.org/r/[email protected] --- Maxime Ripard (4): drm/gm12u320: Switch to drm_atomic_helper_crtc_create_state drm/atomic-helper: Remove drm_atomic_helper_crtc_reset drm/atomic-helper: Remove __drm_atomic_helper_crtc_reset drm/crtc: Remove reset drivers/gpu/drm/drm_atomic_state_helper.c | 45 ------------------------------- drivers/gpu/drm/drm_mode_config.c | 4 +-- drivers/gpu/drm/tiny/gm12u320.c | 2 +- include/drm/drm_atomic_state_helper.h | 3 --- include/drm/drm_crtc.h | 12 --------- 5 files changed, 2 insertions(+), 64 deletions(-) --- base-commit: 17c6b88e85ffe5de5720004ae8c2176d52944aca change-id: 20260709-drm-no-more-crtc-reset-14a4d5bc8d41 Best regards, -- Maxime Ripard <[email protected]>
