From: Neil Armstrong <neil.armstrong@linaro.org>
To: david@ixit.cz, Joel Selvaraj <foss@joelselvaraj.com>,
Jessica Zhang <jesszhan0024@gmail.com>,
Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
Maxime Ripard <mripard@kernel.org>,
Thomas Zimmermann <tzimmermann@suse.de>,
David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Sam Ravnborg <sam@ravnborg.org>,
Marco Mattiolo <marco.mattiolo@hotmail.it>,
Linus Walleij <linusw@kernel.org>
Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org,
phone-devel@vger.kernel.org
Subject: Re: [PATCH v2 3/3] drm/panel: ebbg-ft8719: Split initialization into enable/disable fn
Date: Thu, 24 Sep 2026 15:16:48 +0200 [thread overview]
Message-ID: <78aa5e0b-b3ab-4e33-a17e-a353d65d86bc@linaro.org> (raw)
In-Reply-To: <20260908-ebbg-ft8719-fixups-v2-3-5454ae1f5581@ixit.cz>
On 9/8/26 14:45, David Heidelberg via B4 Relay wrote:
> From: David Heidelberg <david@ixit.cz>
>
> Move the MIPI commands into enable/disable callbacks since they
> are called between prepare/unprepare callbacks.
>
> Signed-off-by: David Heidelberg <david@ixit.cz>
> ---
> drivers/gpu/drm/panel/panel-ebbg-ft8719.c | 19 ++++++++-----------
> 1 file changed, 8 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/gpu/drm/panel/panel-ebbg-ft8719.c b/drivers/gpu/drm/panel/panel-ebbg-ft8719.c
> index 14982263a94f1..1652de70900f1 100644
> --- a/drivers/gpu/drm/panel/panel-ebbg-ft8719.c
> +++ b/drivers/gpu/drm/panel/panel-ebbg-ft8719.c
> @@ -49,74 +49,69 @@ static void ebbg_ft8719_reset(struct ebbg_ft8719 *ctx)
> gpiod_set_value_cansleep(ctx->reset_gpio, 0);
> usleep_range(4000, 5000);
> gpiod_set_value_cansleep(ctx->reset_gpio, 1);
> usleep_range(1000, 2000);
> gpiod_set_value_cansleep(ctx->reset_gpio, 0);
> usleep_range(15000, 16000);
> }
>
> -static int ebbg_ft8719_on(struct ebbg_ft8719 *ctx)
> +static int ebbg_ft8719_enable(struct drm_panel *panel)
> {
> + struct ebbg_ft8719 *ctx = to_ebbg_ft8719(panel);
> struct mipi_dsi_device *dsi = ctx->dsi;
> struct mipi_dsi_multi_context dsi_ctx = { .dsi = dsi };
>
> dsi->mode_flags |= MIPI_DSI_MODE_LPM;
>
> mipi_dsi_dcs_set_display_brightness_multi(&dsi_ctx, 0x00ff);
> mipi_dsi_dcs_write_seq_multi(&dsi_ctx, MIPI_DCS_WRITE_CONTROL_DISPLAY, 0x24);
> mipi_dsi_dcs_write_seq_multi(&dsi_ctx, MIPI_DCS_WRITE_POWER_SAVE, 0x00);
>
> mipi_dsi_dcs_exit_sleep_mode_multi(&dsi_ctx);
> mipi_dsi_msleep(&dsi_ctx, 90);
> mipi_dsi_dcs_set_display_on_multi(&dsi_ctx);
>
> return dsi_ctx.accum_err;
> }
>
> -static int ebbg_ft8719_off(struct ebbg_ft8719 *ctx)
> +static int ebbg_ft8719_disable(struct drm_panel *panel)
> {
> + struct ebbg_ft8719 *ctx = to_ebbg_ft8719(panel);
> struct mipi_dsi_device *dsi = ctx->dsi;
> struct mipi_dsi_multi_context dsi_ctx = { .dsi = dsi };
>
> - dsi->mode_flags &= ~MIPI_DSI_MODE_LPM;
> + ctx->dsi->mode_flags &= ~MIPI_DSI_MODE_LPM;
>
> mipi_dsi_dcs_set_display_off_multi(&dsi_ctx);
> mipi_dsi_usleep_range(&dsi_ctx, 10000, 11000);
> mipi_dsi_dcs_enter_sleep_mode_multi(&dsi_ctx);
> mipi_dsi_msleep(&dsi_ctx, 90);
>
> - return dsi_ctx.accum_err;
> + return 0;
> }
>
> static int ebbg_ft8719_prepare(struct drm_panel *panel)
> {
> struct ebbg_ft8719 *ctx = to_ebbg_ft8719(panel);
> int ret;
>
> ret = regulator_bulk_enable(ARRAY_SIZE(ctx->supplies), ctx->supplies);
> if (ret < 0)
> return ret;
>
> ebbg_ft8719_reset(ctx);
>
> - ret = ebbg_ft8719_on(ctx);
> - if (ret < 0) {
> - gpiod_set_value_cansleep(ctx->reset_gpio, 1);
> - return ret;
> - }
> -
> return 0;
> }
>
> static int ebbg_ft8719_unprepare(struct drm_panel *panel)
> {
> struct ebbg_ft8719 *ctx = to_ebbg_ft8719(panel);
>
> - ebbg_ft8719_off(ctx);
> gpiod_set_value_cansleep(ctx->reset_gpio, 1);
> regulator_bulk_disable(ARRAY_SIZE(ctx->supplies), ctx->supplies);
>
> return 0;
> }
>
> static const struct drm_display_mode ebbg_ft8719_mode = {
> .clock = (1080 + 28 + 4 + 16) * (2246 + 120 + 4 + 12) * 60 / 1000,
> @@ -148,16 +143,18 @@ static int ebbg_ft8719_get_modes(struct drm_panel *panel,
> connector->display_info.height_mm = mode->height_mm;
> drm_mode_probed_add(connector, mode);
>
> return 1;
> }
>
> static const struct drm_panel_funcs ebbg_ft8719_panel_funcs = {
> .prepare = ebbg_ft8719_prepare,
> + .enable = ebbg_ft8719_enable,
> + .disable = ebbg_ft8719_disable,
> .unprepare = ebbg_ft8719_unprepare,
> .get_modes = ebbg_ft8719_get_modes,
> };
>
> static int ebbg_ft8719_probe(struct mipi_dsi_device *dsi)
> {
> struct device *dev = &dsi->dev;
> struct ebbg_ft8719 *ctx;
>
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
Thanks,
Neil
next prev parent reply other threads:[~2026-09-24 13:16 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-08 12:45 [PATCH v2 0/3] Xiaomi Poco F1 (ebbg display variant) fixes David Heidelberg via B4 Relay
2026-09-08 12:45 ` [PATCH v2 1/3] drm/panel: ebbg-ft8719: Set prepare_prev_first David Heidelberg via B4 Relay
2026-09-08 12:45 ` [PATCH v2 2/3] drm/panel: ebbg-ft8719: Fix the MODULE_LICENSE() string David Heidelberg via B4 Relay
2026-09-08 12:45 ` [PATCH v2 3/3] drm/panel: ebbg-ft8719: Split initialization into enable/disable fn David Heidelberg via B4 Relay
2026-09-24 13:16 ` Neil Armstrong [this message]
2026-09-16 16:40 ` [PATCH v2 0/3] Xiaomi Poco F1 (ebbg display variant) fixes Linus Walleij
2026-09-17 9:34 ` David Heidelberg
2026-09-24 13:59 ` Neil Armstrong
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=78aa5e0b-b3ab-4e33-a17e-a353d65d86bc@linaro.org \
--to=neil.armstrong@linaro.org \
--cc=airlied@gmail.com \
--cc=david@ixit.cz \
--cc=dri-devel@lists.freedesktop.org \
--cc=foss@joelselvaraj.com \
--cc=jesszhan0024@gmail.com \
--cc=linusw@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maarten.lankhorst@linux.intel.com \
--cc=marco.mattiolo@hotmail.it \
--cc=mripard@kernel.org \
--cc=phone-devel@vger.kernel.org \
--cc=sam@ravnborg.org \
--cc=simona@ffwll.ch \
--cc=tzimmermann@suse.de \
/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®