On Wed, Sep 10, 2025 at 08:08:20PM -0700, Paul Sajna wrote: > From: Amir Dahan <system64f...@protonmail.com> > > Added panel driver used by LG G7 ThinQ (judyln) > > Signed-off-by: Amir Dahan <system64f...@protonmail.com> > Signed-off-by: Paul Sajna <sajatt...@postmarketos.org> > Co-authored-by: Paul Sajna <sajatt...@postmarketos.org> > --- > drivers/gpu/drm/panel/Kconfig | 14 + > drivers/gpu/drm/panel/Makefile | 1 + > drivers/gpu/drm/panel/panel-lg-sw49410.c | 513 > +++++++++++++++++++++++++++++++ > 3 files changed, 528 insertions(+) > > diff --git a/drivers/gpu/drm/panel/Kconfig b/drivers/gpu/drm/panel/Kconfig > index > cfebb08e8a62680a14a500d28decfafc2daf743a..48144848c8d3282d231d7495d694381456dde63b > 100644 > --- a/drivers/gpu/drm/panel/Kconfig > +++ b/drivers/gpu/drm/panel/Kconfig > @@ -406,6 +406,20 @@ config DRM_PANEL_LG_SW43408 > pixel. It provides a MIPI DSI interface to the host and has a > built-in LED backlight. > > +config DRM_PANEL_LG_SW49410 > + tristate "LG SW49410 panel" > + depends on OF > + depends on DRM_MIPI_DSI > + depends on BACKLIGHT_CLASS_DEVICE > + select DRM_DISPLAY_DSC_HELPER > + select DRM_DISPLAY_DP_HELPER
You should not need DP helper for DSI panel > + select DRM_DISPLAY_HELPER > + help > + Say Y here if you want to enable support for LG sw49410 panel. > + The panel has a 1440x3120@60Hz resolution and uses 24 bit RGB per > + pixel. It provides a MIPI DSI interface to the host and has a > + built-in LED backlight. > + > config DRM_PANEL_MAGNACHIP_D53E6EA8966 > tristate "Magnachip D53E6EA8966 DSI panel" > depends on OF && SPI > diff --git a/drivers/gpu/drm/panel/Makefile b/drivers/gpu/drm/panel/Makefile > index > 714cbac830e3f0be3659f1907c5dbacef863bbd8..f7f6d232ad9c7163f328d94f4461fcb3379f998b > 100644 > --- a/drivers/gpu/drm/panel/Makefile > +++ b/drivers/gpu/drm/panel/Makefile > @@ -41,6 +41,7 @@ obj-$(CONFIG_DRM_PANEL_LINCOLNTECH_LCD197) += > panel-lincolntech-lcd197.o > obj-$(CONFIG_DRM_PANEL_LG_LB035Q02) += panel-lg-lb035q02.o > obj-$(CONFIG_DRM_PANEL_LG_LG4573) += panel-lg-lg4573.o > obj-$(CONFIG_DRM_PANEL_LG_SW43408) += panel-lg-sw43408.o > +obj-$(CONFIG_DRM_PANEL_LG_SW49410) += panel-lg-sw49410.o > obj-$(CONFIG_DRM_PANEL_MAGNACHIP_D53E6EA8966) += > panel-magnachip-d53e6ea8966.o > obj-$(CONFIG_DRM_PANEL_NEC_NL8048HL11) += panel-nec-nl8048hl11.o > obj-$(CONFIG_DRM_PANEL_NEWVISION_NV3051D) += panel-newvision-nv3051d.o > diff --git a/drivers/gpu/drm/panel/panel-lg-sw49410.c > b/drivers/gpu/drm/panel/panel-lg-sw49410.c > new file mode 100644 > index > 0000000000000000000000000000000000000000..1243577f9280ecf3e906d2ad001c6c313b3af495 > --- /dev/null > +++ b/drivers/gpu/drm/panel/panel-lg-sw49410.c > @@ -0,0 +1,513 @@ > +// SPDX-License-Identifier: GPL-2.0-only > +// Generated with linux-mdss-dsi-panel-driver-generator from vendor device > tree: > +// Copyright (c) 2025, The Linux Foundation. All rights reserved. > + > +#include <linux/backlight.h> > +#include <linux/delay.h> > +#include <linux/gpio/consumer.h> > +#include <linux/module.h> > +#include <linux/of.h> > +#include <linux/regulator/consumer.h> > + > +#include <video/mipi_display.h> > + > +#include <drm/drm_mipi_dsi.h> > +#include <drm/drm_panel.h> > +#include <drm/drm_probe_helper.h> > +#include <drm/display/drm_dsc.h> > +#include <drm/display/drm_dsc_helper.h> > + > +struct sw49410_panel { > + struct drm_panel panel; > + struct mipi_dsi_device *dsi; > + struct drm_dsc_config dsc; > + struct gpio_desc *reset_gpio; > +}; > + > +static inline > +struct sw49410_panel *to_sw49410_panel(struct drm_panel *panel) > +{ > + return container_of(panel, struct sw49410_panel, panel); > +} > + > +static void sw49410_panel_reset(struct sw49410_panel *ctx) > +{ > + gpiod_set_value_cansleep(ctx->reset_gpio, 0); > + usleep_range(10000, 11000); > + gpiod_set_value_cansleep(ctx->reset_gpio, 1); > + usleep_range(10000, 11000); > + gpiod_set_value_cansleep(ctx->reset_gpio, 0); > + usleep_range(10000, 11000); > +} > + > +static int sw49410_panel_on(struct sw49410_panel *ctx) > +{ > + struct mipi_dsi_multi_context dsi_ctx = { .dsi = ctx->dsi }; > + > + ctx->dsi->mode_flags |= MIPI_DSI_MODE_LPM; > + > + mipi_dsi_dcs_set_tear_on_multi(&dsi_ctx, MIPI_DSI_DCS_TEAR_MODE_VBLANK); > + mipi_dsi_dcs_set_page_address(ctx->dsi, 0x0000, 0x0c2f); Please rewrite this function to only use _multi() functions. Don't use functions that take mipi_dsi_device directly. If anything is missing, please add new wrappers. > + mipi_dsi_dcs_set_display_brightness(ctx->dsi, 0x00ff); > + mipi_dsi_dcs_write_seq_multi(&dsi_ctx, MIPI_DCS_WRITE_CONTROL_DISPLAY, > + 0x2c); [..] > + > +static int sw49410_panel_prepare(struct drm_panel *panel) > +{ > + struct sw49410_panel *ctx = to_sw49410_panel(panel); > + struct device *dev = &ctx->dsi->dev; > + struct drm_dsc_picture_parameter_set pps; > + int ret; > + > + sw49410_panel_reset(ctx); > + > + ret = sw49410_panel_on(ctx); > + if (ret < 0) { > + dev_err(dev, "Failed to initialize panel: %d\n", ret); > + gpiod_set_value_cansleep(ctx->reset_gpio, 1); > + return ret; > + } > + > + drm_dsc_pps_payload_pack(&pps, &ctx->dsc); > + > + ret = mipi_dsi_picture_parameter_set(ctx->dsi, &pps); mipi_dsi_picture_parameter_set_multi(), move this call and the next ones to sw49410_panel_on(). > + if (ret < 0) { > + dev_err(panel->dev, "failed to transmit PPS: %d\n", ret); > + return ret; > + } > + > + ret = mipi_dsi_compression_mode(ctx->dsi, true); mipi_dsi_compression_mode_multi > + if (ret < 0) { > + dev_err(dev, "failed to enable compression mode: %d\n", ret); > + return ret; > + } > + > + msleep(28); mipi_dsi_msleep > + > + return 0; > +} > + -- With best wishes Dmitry