From: "Ze Huang" <ze.huang@oss.qualcomm.com>
To: "Thomas Zimmermann" <tzimmermann@suse.de>,
"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 2/9] drm/aspeed: replace struct drm_simple_display_pipe with regular atomic helpers
Date: Mon, 06 Jul 2026 21:32:03 +0800 [thread overview]
Message-ID: <DJRIY04KAKRH.2XJRADHKJ4G55@oss.qualcomm.com> (raw)
In-Reply-To: <4e35e133-364a-4743-9ca0-f0799bdf28f8@suse.de>
On Mon Jul 6, 2026 at 4:31 PM CST, Thomas Zimmermann wrote:
> Hi,
>
> common points from my arcgpu review applied here as well. See below for
> a new other things.
>
> Am 04.07.26 um 20:31 schrieb Ze Huang:
>> Replace simple display pipe with explicit plane, CRTC and encoder
>> objects. Move callbacks to plane and CRTC helpers, with vblank handling
>> through drm_crtc_funcs.
>>
>> This removes intermediate simple-pipe layer and uses standard atomic
>> helper wiring.
>>
>> Signed-off-by: Ze Huang <ze.huang@oss.qualcomm.com>
>> ---
>> 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 +-
>> 3 files changed, 123 insertions(+), 41 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/aspeed/aspeed_gfx.h b/drivers/gpu/drm/aspeed/aspeed_gfx.h
>> index 4e6a442c3886..a34811564c0d 100644
>> --- a/drivers/gpu/drm/aspeed/aspeed_gfx.h
>> +++ b/drivers/gpu/drm/aspeed/aspeed_gfx.h
>> @@ -2,7 +2,6 @@
>> /* Copyright 2018 IBM Corporation */
>>
>> #include <drm/drm_device.h>
>> -#include <drm/drm_simple_kms_helper.h>
>>
>> struct aspeed_gfx {
>> struct drm_device drm;
>> @@ -17,7 +16,9 @@ struct aspeed_gfx {
>> u32 throd_val;
>> u32 scan_line_max;
>>
>> - struct drm_simple_display_pipe pipe;
>> + struct drm_plane plane;
>> + struct drm_crtc crtc;
>> + struct drm_encoder encoder;
>> struct drm_connector connector;
>> };
>> #define to_aspeed_gfx(x) container_of(x, struct aspeed_gfx, drm)
>> diff --git a/drivers/gpu/drm/aspeed/aspeed_gfx_crtc.c b/drivers/gpu/drm/aspeed/aspeed_gfx_crtc.c
>> index 7877a57b8e26..3294795c31c4 100644
>> --- a/drivers/gpu/drm/aspeed/aspeed_gfx_crtc.c
>> +++ b/drivers/gpu/drm/aspeed/aspeed_gfx_crtc.c
>> @@ -5,6 +5,8 @@
>> #include <linux/reset.h>
>> #include <linux/regmap.h>
>>
>> +#include <drm/drm_atomic.h>
>> +#include <drm/drm_atomic_helper.h>
>> #include <drm/drm_device.h>
>> #include <drm/drm_fb_dma_helper.h>
>> #include <drm/drm_fourcc.h>
>> @@ -12,20 +14,13 @@
>> #include <drm/drm_gem_atomic_helper.h>
>> #include <drm/drm_gem_dma_helper.h>
>> #include <drm/drm_panel.h>
>> -#include <drm/drm_simple_kms_helper.h>
>> #include <drm/drm_vblank.h>
>>
>> #include "aspeed_gfx.h"
>>
>> -static struct aspeed_gfx *
>> -drm_pipe_to_aspeed_gfx(struct drm_simple_display_pipe *pipe)
>> -{
>> - return container_of(pipe, struct aspeed_gfx, pipe);
>> -}
>> -
>
> Please create a new helper
>
> struct drm_aspeed_gfx *to_aspeed_gfx(drm_device *drm)
>
> that does the upcast.
>
Will do
>> static int aspeed_gfx_set_pixel_fmt(struct aspeed_gfx *priv, u32 *bpp)
>> {
>> - struct drm_crtc *crtc = &priv->pipe.crtc;
>> + struct drm_crtc *crtc = &priv->crtc;
>> struct drm_device *drm = crtc->dev;
>> const u32 format = crtc->primary->state->fb->format->format;
>> u32 ctrl1;
>> @@ -79,7 +74,7 @@ static void aspeed_gfx_disable_controller(struct aspeed_gfx *priv)
>>
>> static void aspeed_gfx_crtc_mode_set_nofb(struct aspeed_gfx *priv)
>> {
>> - struct drm_display_mode *m = &priv->pipe.crtc.state->adjusted_mode;
>> + struct drm_display_mode *m = &priv->crtc.state->adjusted_mode;
>> u32 ctrl1, d_offset, t_count, bpp;
>> int err;
>>
>> @@ -139,33 +134,31 @@ static void aspeed_gfx_crtc_mode_set_nofb(struct aspeed_gfx *priv)
>> writel(priv->throd_val, priv->base + CRT_THROD);
>> }
>>
>> -static void aspeed_gfx_pipe_enable(struct drm_simple_display_pipe *pipe,
>> - struct drm_crtc_state *crtc_state,
>> - struct drm_plane_state *plane_state)
>> +static void aspeed_gfx_crtc_helper_atomic_enable(struct drm_crtc *crtc,
>> + struct drm_atomic_commit *state)
>
> Please see my comment on arcgpu for the new naming of 'state'.
>
OK
>> {
>> - struct aspeed_gfx *priv = drm_pipe_to_aspeed_gfx(pipe);
>> - struct drm_crtc *crtc = &pipe->crtc;
>> + struct aspeed_gfx *priv = container_of(crtc, struct aspeed_gfx, crtc);
>
> Please use your helper to_aspeed_gfx(crtc->dev) to do the upcast.
> Here any in other places.
>
OK
>>
>> aspeed_gfx_crtc_mode_set_nofb(priv);
>> aspeed_gfx_enable_controller(priv);
>> drm_crtc_vblank_on(crtc);
>> }
>>
>> -static void aspeed_gfx_pipe_disable(struct drm_simple_display_pipe *pipe)
>> +static void aspeed_gfx_crtc_helper_atomic_disable(struct drm_crtc *crtc,
>> + struct drm_atomic_commit *state)
>> {
>> - struct aspeed_gfx *priv = drm_pipe_to_aspeed_gfx(pipe);
>> - struct drm_crtc *crtc = &pipe->crtc;
>> + struct aspeed_gfx *priv = container_of(crtc, struct aspeed_gfx, crtc);
>
> Another upcast issue
>
Acknowledged
>>
>> drm_crtc_vblank_off(crtc);
>> aspeed_gfx_disable_controller(priv);
>> }
>>
>> -static void aspeed_gfx_pipe_update(struct drm_simple_display_pipe *pipe,
>> - struct drm_plane_state *plane_state)
>> +static void aspeed_gfx_plane_helper_atomic_update(struct drm_plane *plane,
>> + struct drm_atomic_commit *state)
>> {
>> - struct aspeed_gfx *priv = drm_pipe_to_aspeed_gfx(pipe);
>> - struct drm_crtc *crtc = &pipe->crtc;
>> - struct drm_framebuffer *fb = pipe->plane.state->fb;
>> + struct aspeed_gfx *priv = container_of(plane, struct aspeed_gfx, plane);
>
> to_aspeed_gfx(plane->dev)
>
Acknowledged
>> + struct drm_crtc *crtc = &priv->crtc;
>> + struct drm_framebuffer *fb = plane->state->fb;
>> struct drm_pending_vblank_event *event;
>> struct drm_gem_dma_object *gem;
>>
>> @@ -190,9 +183,9 @@ static void aspeed_gfx_pipe_update(struct drm_simple_display_pipe *pipe,
>> writel(gem->dma_addr, priv->base + CRT_ADDR);
>> }
>>
>> -static int aspeed_gfx_enable_vblank(struct drm_simple_display_pipe *pipe)
>> +static int aspeed_gfx_crtc_enable_vblank(struct drm_crtc *crtc)
>> {
>> - struct aspeed_gfx *priv = drm_pipe_to_aspeed_gfx(pipe);
>> + struct aspeed_gfx *priv = container_of(crtc, struct aspeed_gfx, crtc);
>> u32 reg = readl(priv->base + CRT_CTRL1);
>>
>> /* Clear pending VBLANK IRQ */
>> @@ -204,9 +197,9 @@ static int aspeed_gfx_enable_vblank(struct drm_simple_display_pipe *pipe)
>> return 0;
>> }
>>
>> -static void aspeed_gfx_disable_vblank(struct drm_simple_display_pipe *pipe)
>> +static void aspeed_gfx_crtc_disable_vblank(struct drm_crtc *crtc)
>> {
>> - struct aspeed_gfx *priv = drm_pipe_to_aspeed_gfx(pipe);
>> + struct aspeed_gfx *priv = container_of(crtc, struct aspeed_gfx, crtc);
>> u32 reg = readl(priv->base + CRT_CTRL1);
>>
>> reg &= ~CRT_CTRL_VERTICAL_INTR_EN;
>> @@ -216,12 +209,75 @@ static void aspeed_gfx_disable_vblank(struct drm_simple_display_pipe *pipe)
>> writel(reg | CRT_CTRL_VERTICAL_INTR_STS, priv->base + CRT_CTRL1);
>> }
>>
>> -static const struct drm_simple_display_pipe_funcs aspeed_gfx_funcs = {
>> - .enable = aspeed_gfx_pipe_enable,
>> - .disable = aspeed_gfx_pipe_disable,
>> - .update = aspeed_gfx_pipe_update,
>> - .enable_vblank = aspeed_gfx_enable_vblank,
>> - .disable_vblank = aspeed_gfx_disable_vblank,
>> +static int aspeed_gfx_plane_helper_atomic_check(struct drm_plane *plane,
>> + struct drm_atomic_commit *state)
>> +{
>> + struct drm_plane_state *plane_state = drm_atomic_get_new_plane_state(state, plane);
>> + struct drm_crtc *crtc = plane_state->crtc;
>> + struct drm_crtc_state *crtc_state = NULL;
>> + int ret;
>> +
>> + if (crtc)
>> + crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
>> +
>> + ret = drm_atomic_helper_check_plane_state(plane_state, crtc_state,
>> + DRM_PLANE_NO_SCALING,
>> + DRM_PLANE_NO_SCALING,
>> + false, false);
>> + return ret;
>> +}
>
> Return directly.
>
OK
>> +
>> +static const struct drm_plane_helper_funcs aspeed_gfx_plane_helper_funcs = {
>> + .prepare_fb = drm_gem_plane_helper_prepare_fb,
>> + .atomic_check = aspeed_gfx_plane_helper_atomic_check,
>> + .atomic_update = aspeed_gfx_plane_helper_atomic_update,
>> +};
>> +
>> +static const struct drm_plane_funcs aspeed_gfx_plane_funcs = {
>> + .update_plane = drm_atomic_helper_update_plane,
>> + .disable_plane = drm_atomic_helper_disable_plane,
>> + .destroy = drm_plane_cleanup,
>> + .reset = drm_atomic_helper_plane_reset,
>> + .atomic_duplicate_state = drm_atomic_helper_plane_duplicate_state,
>> + .atomic_destroy_state = drm_atomic_helper_plane_destroy_state,
>> +};
>> +
>> +static int aspeed_gfx_crtc_helper_atomic_check(struct drm_crtc *crtc,
>> + struct drm_atomic_commit *state)
>> +{
>> + struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state, crtc);
>> + int ret;
>> +
>> + if (!crtc_state->enable)
>> + goto out;
>> +
>> + ret = drm_atomic_helper_check_crtc_primary_plane(crtc_state);
>> + if (ret)
>> + return ret;
>> +
>> +out:
>> + return drm_atomic_add_affected_planes(state, crtc);
>> +}
>
> See arcpgu on a possible style improvement.
>
Will do, thanks
> Best regards
> Thomas
>
[ ... ]
next prev parent reply other threads:[~2026-07-06 13:32 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 [this message]
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 ` [PATCH 0/9] drm: replace simple display pipe users with " Thomas Zimmermann
2026-07-06 8:22 ` 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=DJRIY04KAKRH.2XJRADHKJ4G55@oss.qualcomm.com \
--to=ze.huang@oss.qualcomm.com \
--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=tzimmermann@suse.de \
--cc=xen-devel@lists.xenproject.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