All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rcar-vin: Limit NV12 availability to supported VIN channels only
@ 2019-11-06 23:23 Niklas Söderlund
  2019-11-07  7:41 ` Geert Uytterhoeven
  0 siblings, 1 reply; 4+ messages in thread
From: Niklas Söderlund @ 2019-11-06 23:23 UTC (permalink / raw)
  To: Laurent Pinchart, linux-media; +Cc: linux-renesas-soc, Niklas Söderlund

When adding support for NV12 it was overlooked that the pixel format is
only supported on some VIN channels. Fix this by adding a check to only
accept NV12 on the supported channels (0, 1, 4, 5, 8, 9, 12 and 13).

Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
---
 drivers/media/platform/rcar-vin/rcar-v4l2.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/media/platform/rcar-vin/rcar-v4l2.c b/drivers/media/platform/rcar-vin/rcar-v4l2.c
index 9e2e63ffcc47acad..62d308a4ddaee82e 100644
--- a/drivers/media/platform/rcar-vin/rcar-v4l2.c
+++ b/drivers/media/platform/rcar-vin/rcar-v4l2.c
@@ -76,7 +76,12 @@ const struct rvin_video_format *rvin_format_from_pixel(struct rvin_dev *vin,
 	if (vin->info->model == RCAR_M1 && pixelformat == V4L2_PIX_FMT_XBGR32)
 		return NULL;
 
-	if (pixelformat == V4L2_PIX_FMT_NV12 && !vin->info->nv12)
+	/*
+	 * If NV12 is supported it's only supported on some channels (0, 1, 4,
+	 * 5, 8, 9, 12 and 13).
+	 */
+	if (pixelformat == V4L2_PIX_FMT_NV12 &&
+	    (!vin->info->nv12 || BIT(vin->id) & 0xcccc))
 		return NULL;
 
 	for (i = 0; i < ARRAY_SIZE(rvin_formats); i++)
-- 
2.23.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-11-07  8:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-06 23:23 [PATCH] rcar-vin: Limit NV12 availability to supported VIN channels only Niklas Söderlund
2019-11-07  7:41 ` Geert Uytterhoeven
2019-11-07  7:47   ` Niklas Söderlund
2019-11-07  8:13     ` Geert Uytterhoeven

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.