dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Frieder Schrempf <frieder.schrempf@kontron.de>
To: Marek Vasut <marex@denx.de>, dri-devel@lists.freedesktop.org
Cc: linux-samsung-soc@vger.kernel.org,
	"Guido Günther" <agx@sigxcpu.org>,
	"Michael Tretter" <m.tretter@pengutronix.de>,
	"Jaehoon Chung" <jh80.chung@samsung.com>,
	"NXP Linux Team" <linux-imx@nxp.com>,
	"Marek Szyprowski" <m.szyprowski@samsung.com>,
	"Shawn Guo" <shawnguo@kernel.org>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 2/3] drm/exynos: Scale the DSIM PHY HFP/HBP/HSA to lanes and bpp
Date: Thu, 10 Dec 2020 16:01:36 +0100	[thread overview]
Message-ID: <117ac9a9-3355-7d00-8e2b-2af05157b2f7@kontron.de> (raw)
In-Reply-To: <20201005134250.527153-2-marex@denx.de>

On 05.10.20 15:42, Marek Vasut wrote:
> The value programmed into horizontal porch and sync registers must be
> scaled to the correct number of DSI lanes and bpp, make it so.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Fabio Estevam <festevam@gmail.com>
> Cc: Guido Günther <agx@sigxcpu.org>
> Cc: Jaehoon Chung <jh80.chung@samsung.com>
> Cc: Lucas Stach <l.stach@pengutronix.de>
> Cc: Marek Szyprowski <m.szyprowski@samsung.com>
> Cc: Michael Tretter <m.tretter@pengutronix.de>
> Cc: NXP Linux Team <linux-imx@nxp.com>
> Cc: Shawn Guo <shawnguo@kernel.org>
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-samsung-soc@vger.kernel.org
> To: dri-devel@lists.freedesktop.org
> --
> NOTE: This depends on https://eur04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpatchwork.kernel.org%2Fproject%2Fdri-devel%2Flist%2F%3Fseries%3D347439&amp;data=02%7C01%7Cfrieder.schrempf%40kontron.de%7Ca88f0cdec137451033ab08d86934dbe6%7C8c9d3c973fd941c8a2b1646f3942daf1%7C0%7C0%7C637375023034158708&amp;sdata=l2pnC0dfueaAGSfwHOK3OpBUJ%2FxnbFKrlpRWlBakVvo%3D&amp;reserved=0
> ---
>   drivers/gpu/drm/bridge/samsung-dsim.c | 9 ++++++---
>   1 file changed, 6 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/gpu/drm/bridge/samsung-dsim.c b/drivers/gpu/drm/bridge/samsung-dsim.c
> index fbd87a74eb9f..42b49546dd00 100644
> --- a/drivers/gpu/drm/bridge/samsung-dsim.c
> +++ b/drivers/gpu/drm/bridge/samsung-dsim.c
> @@ -740,20 +740,23 @@ static void samsung_dsim_set_display_mode(struct samsung_dsim *dsi)
>   {
>   	struct drm_display_mode *m = &dsi->mode;
>   	unsigned int num_bits_resol = dsi->driver_data->num_bits_resol;
> +	int bpp;
>   	u32 reg;
>   
>   	if (dsi->mode_flags & MIPI_DSI_MODE_VIDEO) {
> +		bpp = mipi_dsi_pixel_format_to_bpp(dsi->format) / 8;
> +
>   		reg = DSIM_CMD_ALLOW(0xf)
>   			| DSIM_STABLE_VFP(m->vsync_start - m->vdisplay)
>   			| DSIM_MAIN_VBP(m->vtotal - m->vsync_end);
>   		samsung_dsim_write(dsi, DSIM_MVPORCH_REG, reg);
>   
> -		reg = DSIM_MAIN_HFP(m->hsync_start - m->hdisplay)
> -			| DSIM_MAIN_HBP(m->htotal - m->hsync_end);
> +		reg = DSIM_MAIN_HFP((m->hsync_start - m->hdisplay) * bpp / dsi->lanes)
> +			| DSIM_MAIN_HBP((m->htotal - m->hsync_end) * bpp / dsi->lanes);
>   		samsung_dsim_write(dsi, DSIM_MHPORCH_REG, reg);
>   
>   		reg = DSIM_MAIN_VSA(m->vsync_end - m->vsync_start)
> -			| DSIM_MAIN_HSA(m->hsync_end - m->hsync_start);
> +			| DSIM_MAIN_HSA((m->hsync_end - m->hsync_start) * bpp / dsi->lanes);
>   		samsung_dsim_write(dsi, DSIM_MSYNC_REG, reg);

I did a bit of testing with the DSIM and BLK-CTL on i.MX8MM and I'm 
seeing some issues with these settings. I think your changes are 
correct, but to get my display configuration working I still need to add 
this [1] ported from the downstream driver [2]. Though, I can't really 
tell if this is a correct fix or something else is wrong.

[1] 
https://github.com/fschrempf/linux/commit/65e50ebc38706ca9b5b3dec8a6ab9b28907f5d3a
[2] 
https://source.codeaurora.org/external/imx/linux-imx/tree/drivers/gpu/drm/bridge/sec-dsim.c?h=imx_5.4.47_2.2.0#n932

>   	}
>   	reg =  DSIM_MAIN_HRESOL(m->hdisplay, num_bits_resol) |
> 
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2020-12-11  8:16 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-05 13:42 [PATCH 1/3] drm/exynos: Init the DSIM PHY in samsung_dsim_enable() Marek Vasut
2020-10-05 13:42 ` [PATCH 2/3] drm/exynos: Scale the DSIM PHY HFP/HBP/HSA to lanes and bpp Marek Vasut
2020-12-10 15:01   ` Frieder Schrempf [this message]
2020-10-05 13:42 ` [PATCH 3/3] [RFC] drm/exynos: Add basic i.MX8MM support code Marek Vasut
2021-02-03 19:53   ` Michael Tretter
2021-05-10 14:12   ` Adam Ford
2021-05-10 16:20     ` Tim Harvey

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=117ac9a9-3355-7d00-8e2b-2af05157b2f7@kontron.de \
    --to=frieder.schrempf@kontron.de \
    --cc=agx@sigxcpu.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=jh80.chung@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    --cc=m.tretter@pengutronix.de \
    --cc=marex@denx.de \
    --cc=shawnguo@kernel.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;
as well as URLs for NNTP newsgroup(s).