diff options
author | Niklas Söderlund <[email protected]> | 2023-02-11 21:54:31 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <[email protected]> | 2023-05-08 12:11:24 +0100 |
commit | 879c5a458e532b95783ce27f704d1b21573066f7 (patch) | |
tree | 3ab90165c6d6ad97de7bdf6ad21eaaf6ad8a1b87 | |
parent | ba0ad6ed89fd5dada3b7b65ef2b08e95d449d4ab (diff) |
media: rcar-vin: Gen3 can not scale NV12
The VIN modules on Gen3 can not scale NV12, fail format validation if
the user tries. Currently no frames are produced if this is attempted.
Signed-off-by: Niklas Söderlund <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
-rw-r--r-- | drivers/media/platform/renesas/rcar-vin/rcar-dma.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/media/platform/renesas/rcar-vin/rcar-dma.c b/drivers/media/platform/renesas/rcar-vin/rcar-dma.c index 98bfd445a649..cc6b59e5621a 100644 --- a/drivers/media/platform/renesas/rcar-vin/rcar-dma.c +++ b/drivers/media/platform/renesas/rcar-vin/rcar-dma.c @@ -1312,6 +1312,11 @@ static int rvin_mc_validate_format(struct rvin_dev *vin, struct v4l2_subdev *sd, } if (rvin_scaler_needed(vin)) { + /* Gen3 can't scale NV12 */ + if (vin->info->model == RCAR_GEN3 && + vin->format.pixelformat == V4L2_PIX_FMT_NV12) + return -EPIPE; + if (!vin->scaler) return -EPIPE; } else { |