* [PATCH v3 01/12] drm/ingenic: Fix incorrect assumption about plane->index
@ 2020-07-16 16:38 Paul Cercueil
2020-07-16 17:43 ` Sam Ravnborg
2020-07-21 14:20 ` Sasha Levin
0 siblings, 2 replies; 4+ messages in thread
From: Paul Cercueil @ 2020-07-16 16:38 UTC (permalink / raw)
To: David Airlie, Daniel Vetter
Cc: Sam Ravnborg, od, dri-devel, devicetree, linux-kernel,
Paul Cercueil, stable
plane->index is NOT the index of the color plane in a YUV frame.
Actually, a YUV frame is represented by a single drm_plane, even though
it contains three Y, U, V planes.
v2-v3: No change
Cc: stable@vger.kernel.org # v5.3
Fixes: 90b86fcc47b4 ("DRM: Add KMS driver for the Ingenic JZ47xx SoCs")
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
---
drivers/gpu/drm/ingenic/ingenic-drm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/ingenic/ingenic-drm.c b/drivers/gpu/drm/ingenic/ingenic-drm.c
index deb37b4a8e91..606d8acb0954 100644
--- a/drivers/gpu/drm/ingenic/ingenic-drm.c
+++ b/drivers/gpu/drm/ingenic/ingenic-drm.c
@@ -386,7 +386,7 @@ static void ingenic_drm_plane_atomic_update(struct drm_plane *plane,
addr = drm_fb_cma_get_gem_addr(state->fb, state, 0);
width = state->src_w >> 16;
height = state->src_h >> 16;
- cpp = state->fb->format->cpp[plane->index];
+ cpp = state->fb->format->cpp[0];
priv->dma_hwdesc->addr = addr;
priv->dma_hwdesc->cmd = width * height * cpp / 4;
--
2.27.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH v3 01/12] drm/ingenic: Fix incorrect assumption about plane->index
2020-07-16 16:38 [PATCH v3 01/12] drm/ingenic: Fix incorrect assumption about plane->index Paul Cercueil
@ 2020-07-16 17:43 ` Sam Ravnborg
2020-07-16 20:25 ` Paul Cercueil
2020-07-21 14:20 ` Sasha Levin
1 sibling, 1 reply; 4+ messages in thread
From: Sam Ravnborg @ 2020-07-16 17:43 UTC (permalink / raw)
To: Paul Cercueil
Cc: David Airlie, Daniel Vetter, od, dri-devel, devicetree,
linux-kernel, stable
Hi Paul.
On Thu, Jul 16, 2020 at 06:38:35PM +0200, Paul Cercueil wrote:
> plane->index is NOT the index of the color plane in a YUV frame.
> Actually, a YUV frame is represented by a single drm_plane, even though
> it contains three Y, U, V planes.
>
> v2-v3: No change
>
> Cc: stable@vger.kernel.org # v5.3
> Fixes: 90b86fcc47b4 ("DRM: Add KMS driver for the Ingenic JZ47xx SoCs")
> Signed-off-by: Paul Cercueil <paul@crapouillou.net>
> Acked-by: Sam Ravnborg <sam@ravnborg.org>
A cover letter would have been useful. Please consider that in the
future.
All patches in this set are:
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
A few requires some trivial issues fixed. They can be fixed while
applying.
I consider the patch-set ready to go in and I expect you to commit them.
Sam
> ---
> drivers/gpu/drm/ingenic/ingenic-drm.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/ingenic/ingenic-drm.c b/drivers/gpu/drm/ingenic/ingenic-drm.c
> index deb37b4a8e91..606d8acb0954 100644
> --- a/drivers/gpu/drm/ingenic/ingenic-drm.c
> +++ b/drivers/gpu/drm/ingenic/ingenic-drm.c
> @@ -386,7 +386,7 @@ static void ingenic_drm_plane_atomic_update(struct drm_plane *plane,
> addr = drm_fb_cma_get_gem_addr(state->fb, state, 0);
> width = state->src_w >> 16;
> height = state->src_h >> 16;
> - cpp = state->fb->format->cpp[plane->index];
> + cpp = state->fb->format->cpp[0];
>
> priv->dma_hwdesc->addr = addr;
> priv->dma_hwdesc->cmd = width * height * cpp / 4;
> --
> 2.27.0
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v3 01/12] drm/ingenic: Fix incorrect assumption about plane->index
2020-07-16 17:43 ` Sam Ravnborg
@ 2020-07-16 20:25 ` Paul Cercueil
0 siblings, 0 replies; 4+ messages in thread
From: Paul Cercueil @ 2020-07-16 20:25 UTC (permalink / raw)
To: Sam Ravnborg
Cc: David Airlie, Daniel Vetter, od, dri-devel, devicetree,
linux-kernel, stable
Hi Sam,
Le jeu. 16 juil. 2020 à 19:43, Sam Ravnborg <sam@ravnborg.org> a
écrit :
> Hi Paul.
>
> On Thu, Jul 16, 2020 at 06:38:35PM +0200, Paul Cercueil wrote:
>> plane->index is NOT the index of the color plane in a YUV frame.
>> Actually, a YUV frame is represented by a single drm_plane, even
>> though
>> it contains three Y, U, V planes.
>>
>> v2-v3: No change
>>
>> Cc: stable@vger.kernel.org # v5.3
>> Fixes: 90b86fcc47b4 ("DRM: Add KMS driver for the Ingenic JZ47xx
>> SoCs")
>> Signed-off-by: Paul Cercueil <paul@crapouillou.net>
>> Acked-by: Sam Ravnborg <sam@ravnborg.org>
>
> A cover letter would have been useful. Please consider that in the
> future.
> All patches in this set are:
> Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
>
> A few requires some trivial issues fixed. They can be fixed while
> applying.
>
> I consider the patch-set ready to go in and I expect you to commit
> them.
Great! Thanks!
-Paul
> Sam
>
>> ---
>> drivers/gpu/drm/ingenic/ingenic-drm.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/ingenic/ingenic-drm.c
>> b/drivers/gpu/drm/ingenic/ingenic-drm.c
>> index deb37b4a8e91..606d8acb0954 100644
>> --- a/drivers/gpu/drm/ingenic/ingenic-drm.c
>> +++ b/drivers/gpu/drm/ingenic/ingenic-drm.c
>> @@ -386,7 +386,7 @@ static void
>> ingenic_drm_plane_atomic_update(struct drm_plane *plane,
>> addr = drm_fb_cma_get_gem_addr(state->fb, state, 0);
>> width = state->src_w >> 16;
>> height = state->src_h >> 16;
>> - cpp = state->fb->format->cpp[plane->index];
>> + cpp = state->fb->format->cpp[0];
>>
>> priv->dma_hwdesc->addr = addr;
>> priv->dma_hwdesc->cmd = width * height * cpp / 4;
>> --
>> 2.27.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3 01/12] drm/ingenic: Fix incorrect assumption about plane->index
2020-07-16 16:38 [PATCH v3 01/12] drm/ingenic: Fix incorrect assumption about plane->index Paul Cercueil
2020-07-16 17:43 ` Sam Ravnborg
@ 2020-07-21 14:20 ` Sasha Levin
1 sibling, 0 replies; 4+ messages in thread
From: Sasha Levin @ 2020-07-21 14:20 UTC (permalink / raw)
To: Sasha Levin, Paul Cercueil, David Airlie, Daniel Vetter
Cc: Sam Ravnborg, od, stable
Hi
[This is an automated email]
This commit has been processed because it contains a "Fixes:" tag
fixing commit: 90b86fcc47b4 ("DRM: Add KMS driver for the Ingenic JZ47xx SoCs").
The bot has tested the following trees: v5.7.9, v5.4.52.
v5.4.52: Failed to apply! Possible dependencies:
52e4607dace1e ("gpu/drm: ingenic: Use the plane's src_[x,y] to configure DMA length")
NOTE: The patch will not be queued to stable trees until it is upstream.
How should we proceed with this patch?
--
Thanks
Sasha
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-07-21 14:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-07-16 16:38 [PATCH v3 01/12] drm/ingenic: Fix incorrect assumption about plane->index Paul Cercueil
2020-07-16 17:43 ` Sam Ravnborg
2020-07-16 20:25 ` Paul Cercueil
2020-07-21 14:20 ` Sasha Levin
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).