From: YoungAndSure <yangshuorex@foxmail.com>
To: dri-devel@lists.freedesktop.org
Cc: neil.armstrong@linaro.org, dianders@chromium.org,
YoungAndSure <yangshuorex@foxmail.com>
Subject: [PATCH] drm/panel: jdi-lt070me05000: Transition to mipi_dsi *_multi() functions
Date: Sat, 28 Mar 2026 20:03:21 +0800 [thread overview]
Message-ID: <tencent_E0E7D83DF383CC08960CF0070BF1E7CC8505@qq.com> (raw)
Replace deprecated mipi_dsi_generic_write() and mipi_dsi_dcs_*()
functions with their *_multi() variants in jdi_panel_init() for better
error handling. The multi versions handle errors automatically and
accumulate them in mipi_dsi_multi_context, removing the need for
repetitive error checking code.
Signed-off-by: YoungAndSure <yangshuorex@foxmail.com>
---
.../gpu/drm/panel/panel-jdi-lt070me05000.c | 71 ++++---------------
1 file changed, 13 insertions(+), 58 deletions(-)
diff --git a/drivers/gpu/drm/panel/panel-jdi-lt070me05000.c b/drivers/gpu/drm/panel/panel-jdi-lt070me05000.c
index 3513e5c4dd..e5deb39e75 100644
--- a/drivers/gpu/drm/panel/panel-jdi-lt070me05000.c
+++ b/drivers/gpu/drm/panel/panel-jdi-lt070me05000.c
@@ -48,34 +48,17 @@ static inline struct jdi_panel *to_jdi_panel(struct drm_panel *panel)
static int jdi_panel_init(struct jdi_panel *jdi)
{
struct mipi_dsi_device *dsi = jdi->dsi;
- struct device *dev = &jdi->dsi->dev;
- int ret;
+ struct mipi_dsi_multi_context ctx = { .dsi = dsi };
dsi->mode_flags |= MIPI_DSI_MODE_LPM;
- ret = mipi_dsi_dcs_soft_reset(dsi);
- if (ret < 0)
- return ret;
+ mipi_dsi_dcs_soft_reset_multi(&ctx);
usleep_range(10000, 20000);
- ret = mipi_dsi_dcs_set_pixel_format(dsi, MIPI_DCS_PIXEL_FMT_24BIT << 4);
- if (ret < 0) {
- dev_err(dev, "failed to set pixel format: %d\n", ret);
- return ret;
- }
-
- ret = mipi_dsi_dcs_set_column_address(dsi, 0, jdi->mode->hdisplay - 1);
- if (ret < 0) {
- dev_err(dev, "failed to set column address: %d\n", ret);
- return ret;
- }
-
- ret = mipi_dsi_dcs_set_page_address(dsi, 0, jdi->mode->vdisplay - 1);
- if (ret < 0) {
- dev_err(dev, "failed to set page address: %d\n", ret);
- return ret;
- }
+ mipi_dsi_dcs_set_pixel_format_multi(&ctx, MIPI_DCS_PIXEL_FMT_24BIT << 4);
+ mipi_dsi_dcs_set_column_address_multi(&ctx, 0, jdi->mode->hdisplay - 1);
+ mipi_dsi_dcs_set_page_address_multi(&ctx, 0, jdi->mode->vdisplay - 1);
/*
* BIT(5) BCTRL = 1 Backlight Control Block On, Brightness registers
@@ -83,56 +66,28 @@ static int jdi_panel_init(struct jdi_panel *jdi)
* BIT(3) BL = 1 Backlight Control On
* BIT(2) DD = 0 Display Dimming is Off
*/
- ret = mipi_dsi_dcs_write(dsi, MIPI_DCS_WRITE_CONTROL_DISPLAY,
- (u8[]){ 0x24 }, 1);
- if (ret < 0) {
- dev_err(dev, "failed to write control display: %d\n", ret);
- return ret;
- }
+ mipi_dsi_dcs_write_seq_multi(&ctx, MIPI_DCS_WRITE_CONTROL_DISPLAY, 0x24);
/* CABC off */
- ret = mipi_dsi_dcs_write(dsi, MIPI_DCS_WRITE_POWER_SAVE,
- (u8[]){ 0x00 }, 1);
- if (ret < 0) {
- dev_err(dev, "failed to set cabc off: %d\n", ret);
- return ret;
- }
+ mipi_dsi_dcs_write_seq_multi(&ctx, MIPI_DCS_WRITE_POWER_SAVE, 0x00);
- ret = mipi_dsi_dcs_exit_sleep_mode(dsi);
- if (ret < 0) {
- dev_err(dev, "failed to set exit sleep mode: %d\n", ret);
- return ret;
- }
+ mipi_dsi_dcs_exit_sleep_mode_multi(&ctx);
msleep(120);
- ret = mipi_dsi_generic_write(dsi, (u8[]){0xB0, 0x00}, 2);
- if (ret < 0) {
- dev_err(dev, "failed to set mcap: %d\n", ret);
- return ret;
- }
+ mipi_dsi_generic_write_multi(&ctx, (u8[]){0xB0, 0x00}, 2);
mdelay(10);
/* Interface setting, video mode */
- ret = mipi_dsi_generic_write(dsi, (u8[])
- {0xB3, 0x26, 0x08, 0x00, 0x20, 0x00}, 6);
- if (ret < 0) {
- dev_err(dev, "failed to set display interface setting: %d\n"
- , ret);
- return ret;
- }
+ mipi_dsi_generic_write_multi(&ctx,
+ (u8[]){0xB3, 0x26, 0x08, 0x00, 0x20, 0x00}, 6);
mdelay(20);
- ret = mipi_dsi_generic_write(dsi, (u8[]){0xB0, 0x03}, 2);
- if (ret < 0) {
- dev_err(dev, "failed to set default values for mcap: %d\n"
- , ret);
- return ret;
- }
+ mipi_dsi_generic_write_multi(&ctx, (u8[]){0xB0, 0x03}, 2);
- return 0;
+ return ctx.accum_err;
}
static int jdi_panel_on(struct jdi_panel *jdi)
--
2.34.1
next reply other threads:[~2026-03-29 9:53 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-28 12:03 YoungAndSure [this message]
2026-03-31 7:44 ` Claude review: drm/panel: jdi-lt070me05000: Transition to mipi_dsi *_multi() functions Claude Code Review Bot
2026-03-31 7:44 ` Claude Code Review Bot
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=tencent_E0E7D83DF383CC08960CF0070BF1E7CC8505@qq.com \
--to=yangshuorex@foxmail.com \
--cc=dianders@chromium.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=neil.armstrong@linaro.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