From: Thomas Zimmermann <tzimmermann@suse.de>
To: Ze Huang <ze.huang@oss.qualcomm.com>,
Alexey Brodkin <abrodkin@synopsys.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Joel Stanley <joel@jms.id.au>,
Andrew Jeffery <andrew@codeconstruct.com.au>,
Frank Li <Frank.Li@nxp.com>,
Sascha Hauer <s.hauer@pengutronix.de>,
Pengutronix Kernel Team <kernel@pengutronix.de>,
Fabio Estevam <festevam@gmail.com>,
Linus Walleij <linusw@kernel.org>,
Hans de Goede <hansg@kernel.org>,
Alex Lanzano <lanzano.alex@gmail.com>,
Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
linux-aspeed@lists.ozlabs.org,
linux-arm-kernel@lists.infradead.org, imx@lists.linux.dev,
xen-devel@lists.xenproject.org
Subject: Re: [PATCH 0/9] drm: replace simple display pipe users with atomic helpers
Date: Mon, 6 Jul 2026 09:27:47 +0200 [thread overview]
Message-ID: <9612bb41-db52-4169-a7fa-e57268d69e24@suse.de> (raw)
In-Reply-To: <20260705-drm-simple-kms-removal-v1-0-b4e1ca053623@oss.qualcomm.com>
Hi
Am 04.07.26 um 20:31 schrieb Ze Huang:
> struct drm_simple_display_pipe was meant to simplify simple DRM
> drivers, but instead adds an extra wrapper around normal DRM atomic
> helper setup. As noted in Documentation/gpu/todo.rst, remaining users
> should be converted to regular atomic helpers and stop depending on the
> simple-KMS interfaces.
>
> This series converts the following drivers:
>
> - arcpgu
> - aspeed
> - imx lcdc
> - mcde
> - pl111
> - gm12u320
> - repaper
> - tve200
> - xen frontend
>
> Each patch replaces drm_simple_display_pipe_init() with explicit
> primary plane, CRTC and encoder setup, and moves the old simple-pipe
> callbacks into regular plane and CRTC helper callbacks named according
> to local driver conventions.
>
> The conversions preserve helper behavior that used to be implicit in
> drm_simple_kms_helper.c, including plane-state validation, CRTC
> primary-plane checks, affected-plane propagation, framebuffer prepare
> handling, and existing event/vblank flow where applicable.
>
> Result is less helper indirection and more explicit driver-side atomic
> wiring, with no remaining simple-KMS dependency in these drivers.
>
> These changes are build-tested only. No hardware testing has been
> performed on the affected devices.
Thanks a lot for the series. That's quite a nice cleanup. Did you use
any AI to create these patches?
Best regards
Thomas
>
> This series is based on drm-next-2026-06-27.
>
> Thanks,
> Ze Huang
>
> Signed-off-by: Ze Huang <ze.huang@oss.qualcomm.com>
> ---
> Ze Huang (9):
> drm/arcpgu: replace struct drm_simple_display_pipe with regular atomic helpers
> drm/aspeed: replace struct drm_simple_display_pipe with regular atomic helpers
> drm/imx: replace struct drm_simple_display_pipe with regular atomic helpers
> drm/mcde: replace struct drm_simple_display_pipe with regular atomic helpers
> drm/pl111: replace struct drm_simple_display_pipe with regular atomic helpers
> drm/gm12u320: replace struct drm_simple_display_pipe with regular atomic helpers
> drm/repaper: replace struct drm_simple_display_pipe with regular atomic helpers
> drm/tve200: replace struct drm_simple_display_pipe with regular atomic helpers
> drm/xen: replace struct drm_simple_display_pipe with regular atomic helpers
>
> drivers/gpu/drm/aspeed/aspeed_gfx.h | 5 +-
> drivers/gpu/drm/aspeed/aspeed_gfx_crtc.c | 156 ++++++++++++++++------
> drivers/gpu/drm/aspeed/aspeed_gfx_drv.c | 3 +-
> drivers/gpu/drm/imx/lcdc/imx-lcdc.c | 178 ++++++++++++++++++-------
> drivers/gpu/drm/mcde/mcde_display.c | 162 ++++++++++++++++------
> drivers/gpu/drm/mcde/mcde_drm.h | 6 +-
> drivers/gpu/drm/mcde/mcde_drv.c | 3 +-
> drivers/gpu/drm/pl111/pl111_display.c | 174 ++++++++++++++++++------
> drivers/gpu/drm/pl111/pl111_drm.h | 5 +-
> drivers/gpu/drm/pl111/pl111_drv.c | 3 +-
> drivers/gpu/drm/tiny/arcpgu.c | 165 ++++++++++++++++++-----
> drivers/gpu/drm/tiny/gm12u320.c | 128 ++++++++++++++----
> drivers/gpu/drm/tiny/repaper.c | 130 ++++++++++++++----
> drivers/gpu/drm/tve200/tve200_display.c | 221 +++++++++++++++++++++----------
> drivers/gpu/drm/tve200/tve200_drm.h | 6 +-
> drivers/gpu/drm/tve200/tve200_drv.c | 17 ++-
> drivers/gpu/drm/xen/xen_drm_front.h | 6 +-
> drivers/gpu/drm/xen/xen_drm_front_kms.c | 177 +++++++++++++++++++------
> 18 files changed, 1164 insertions(+), 381 deletions(-)
> ---
> base-commit: 3696d07837d1df13a5603d77f667685e7dfb3c53
> change-id: 20260704-drm-simple-kms-removal-01a031c6a129
>
> Best regards,
> --
> Ze Huang <ze.huang@oss.qualcomm.com>
>
--
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstr. 146, 90461 Nürnberg, Germany, www.suse.com
GF: Jochen Jaser, Andrew McDonald, Werner Knoblich, (HRB 36809, AG Nürnberg)
next prev parent reply other threads:[~2026-07-06 7:27 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-04 18:31 [PATCH 0/9] drm: replace simple display pipe users with atomic helpers Ze Huang
2026-07-04 18:31 ` [PATCH 1/9] drm/arcpgu: replace struct drm_simple_display_pipe with regular " Ze Huang
2026-07-04 18:43 ` sashiko-bot
2026-07-06 7:43 ` Thomas Zimmermann
2026-07-06 8:01 ` Thomas Zimmermann
2026-07-06 13:26 ` Ze Huang
2026-07-04 18:31 ` [PATCH 2/9] drm/aspeed: " Ze Huang
2026-07-04 18:52 ` sashiko-bot
2026-07-06 8:31 ` Thomas Zimmermann
2026-07-06 13:32 ` Ze Huang
2026-07-04 18:31 ` [PATCH 3/9] drm/imx: " Ze Huang
2026-07-04 18:46 ` sashiko-bot
2026-07-04 18:31 ` [PATCH 4/9] drm/mcde: " Ze Huang
2026-07-04 18:44 ` sashiko-bot
2026-07-04 18:31 ` [PATCH 5/9] drm/pl111: " Ze Huang
2026-07-04 18:45 ` sashiko-bot
2026-07-04 18:31 ` [PATCH 6/9] drm/gm12u320: " Ze Huang
2026-07-04 18:45 ` sashiko-bot
2026-07-04 18:31 ` [PATCH 7/9] drm/repaper: " Ze Huang
2026-07-04 18:31 ` [PATCH 8/9] drm/tve200: " Ze Huang
2026-07-04 18:46 ` sashiko-bot
2026-07-04 18:31 ` [PATCH 9/9] drm/xen: " Ze Huang
2026-07-04 18:53 ` sashiko-bot
2026-07-06 7:27 ` Thomas Zimmermann [this message]
2026-07-06 8:22 ` [PATCH 0/9] drm: replace simple display pipe users with " Ze Huang
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=9612bb41-db52-4169-a7fa-e57268d69e24@suse.de \
--to=tzimmermann@suse.de \
--cc=Frank.Li@nxp.com \
--cc=abrodkin@synopsys.com \
--cc=airlied@gmail.com \
--cc=andrew@codeconstruct.com.au \
--cc=dri-devel@lists.freedesktop.org \
--cc=festevam@gmail.com \
--cc=hansg@kernel.org \
--cc=imx@lists.linux.dev \
--cc=joel@jms.id.au \
--cc=kernel@pengutronix.de \
--cc=lanzano.alex@gmail.com \
--cc=linusw@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-aspeed@lists.ozlabs.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=mripard@kernel.org \
--cc=oleksandr_andrushchenko@epam.com \
--cc=s.hauer@pengutronix.de \
--cc=simona@ffwll.ch \
--cc=xen-devel@lists.xenproject.org \
--cc=ze.huang@oss.qualcomm.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