Devicetree
 help / color / mirror / Atom feed
From: Neil Armstrong <neil.armstrong@linaro.org>
To: William Bright <william.bright@imd-tec.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>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Thierry Reding <thierry.reding@gmail.com>,
	Sam Ravnborg <sam@ravnborg.org>
Cc: dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 2/2] drm/panel: simple: Add Team Source Display TST070WSBE-196C panel
Date: Thu, 30 Apr 2026 11:44:50 +0200	[thread overview]
Message-ID: <5d0c4fc6-5d50-45e8-b323-23015fa52021@linaro.org> (raw)
In-Reply-To: <20260428-imdt-dsi-display-v2-2-cf7294b5d7d6@imd-tec.com>

On 4/28/26 17:17, William Bright wrote:
> Add a dedicated panel driver for the Team Source Display
> TST070WSBE-196C, a 7" 1024x600 MIPI-DSI TFT LCD panel
> using an EK79007AD controller.
> 
> The DSI timings were calculated using
> "linux-mdss-dsi-panel-driver-generator" [1], reading the downstream
> file "dsi-panel-imdt-tst070wsbe165c-video.dtsi" [2].
> 
> [1] https://github.com/msm8916-mainline/linux-mdss-dsi-panel-driver-generator
> [2] https://raw.githubusercontent.com/imd-tec/meta-imdt-qcom/refs/heads/kirkstone/recipes-display/displaydevicetree/displaydevicetree/0001-Initial-bringup-of-IMDT-Display-3.patch
> 
> Signed-off-by: William Bright <william.bright@imd-tec.com>
> ---
>   drivers/gpu/drm/panel/panel-simple.c | 36 ++++++++++++++++++++++++++++++++++++
>   1 file changed, 36 insertions(+)
> 
> diff --git a/drivers/gpu/drm/panel/panel-simple.c b/drivers/gpu/drm/panel/panel-simple.c
> index 236bd56208cc..0010bb3db484 100644
> --- a/drivers/gpu/drm/panel/panel-simple.c
> +++ b/drivers/gpu/drm/panel/panel-simple.c
> @@ -5936,6 +5936,39 @@ static const struct panel_desc_dsi osd101t2045_53ts = {
>   	.lanes = 4,
>   };
>   
> +static const struct drm_display_mode tsd_tst070wsbe_196c_mode = {
> +	.clock = 52477,
> +	.hdisplay = 1024,
> +	.hsync_start = 1024 + 160,
> +	.hsync_end = 1024 + 160 + 12,
> +	.htotal = 1024 + 160 + 160 + 12,
> +	.vdisplay = 600,
> +	.vsync_start = 600 + 12,
> +	.vsync_end = 600 + 12 + 10,
> +	.vtotal = 600 + 12 + 10 + 23,
> +};
> +
> +static const struct panel_desc_dsi tsd_tst070wsbe_196c = {
> +	.desc = {
> +		.modes = &tsd_tst070wsbe_196c_mode,
> +		.num_modes = 1,
> +		.bpc = 8,
> +		.size = {
> +			.width = 190,
> +			.height = 121,
> +		},
> +		.delay = {
> +			.prepare = 20,
> +		},
> +		.connector_type = DRM_MODE_CONNECTOR_DSI,
> +	},
> +	.flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_LPM |
> +		 MIPI_DSI_MODE_VIDEO_BURST |
> +		 MIPI_DSI_MODE_VIDEO_SYNC_PULSE,
> +	.format = MIPI_DSI_FMT_RGB888,
> +	.lanes = 4,
> +};
> +
>   static const struct of_device_id dsi_of_match[] = {
>   	{
>   		.compatible = "auo,b080uan01",
> @@ -5955,6 +5988,9 @@ static const struct of_device_id dsi_of_match[] = {
>   	}, {
>   		.compatible = "osddisplays,osd101t2045-53ts",
>   		.data = &osd101t2045_53ts
> +	}, {
> +		.compatible = "team-source-display,tst070wsbe-196c",
> +		.data = &tsd_tst070wsbe_196c
>   	}, {
>   		/* sentinel */
>   	}
> 

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

Thanks,
Neil

  reply	other threads:[~2026-04-30  9:44 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-04-28 15:17 [PATCH v2 0/2] drm/panel: Add support for TSD TST070WSBE-196C 8" MIPI-DSI panel William Bright
2026-04-28 15:17 ` [PATCH v2 1/2] dt-bindings: panel-simple-dsi: Add Team Source Display TST070WSNE-196C William Bright
2026-04-30  8:52   ` Krzysztof Kozlowski
2026-04-28 15:17 ` [PATCH v2 2/2] drm/panel: simple: Add Team Source Display TST070WSBE-196C panel William Bright
2026-04-30  9:44   ` Neil Armstrong [this message]
2026-05-05 10:05 ` [PATCH v2 0/2] drm/panel: Add support for TSD TST070WSBE-196C 8" MIPI-DSI panel 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=5d0c4fc6-5d50-45e8-b323-23015fa52021@linaro.org \
    --to=neil.armstrong@linaro.org \
    --cc=airlied@gmail.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jesszhan0024@gmail.com \
    --cc=krzk+dt@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=robh@kernel.org \
    --cc=sam@ravnborg.org \
    --cc=simona@ffwll.ch \
    --cc=thierry.reding@gmail.com \
    --cc=tzimmermann@suse.de \
    --cc=william.bright@imd-tec.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