From addef3dae6bf35d945d474f819f5d9ab7d3caef0 Mon Sep 17 00:00:00 2001 From: Naushir Patuck Date: Thu, 5 Feb 2026 13:53:04 +0000 Subject: [PATCH] drivers: media: pispbe: Add V4L2_PIX_FMT_NV12MT_COL128 format support Add support for NV12 based 128-pixel coloumn output format in the pisp_be device. Signed-off-by: Naushir Patuck --- .../platform/raspberrypi/pisp_be/pisp_be_formats.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/drivers/media/platform/raspberrypi/pisp_be/pisp_be_formats.h b/drivers/media/platform/raspberrypi/pisp_be/pisp_be_formats.h index 1b0386c49281de..7304a1354ccabb 100644 --- a/drivers/media/platform/raspberrypi/pisp_be/pisp_be_formats.h +++ b/drivers/media/platform/raspberrypi/pisp_be/pisp_be_formats.h @@ -170,6 +170,16 @@ static const struct pisp_be_format supported_formats[] = { .colorspace_mask = V4L2_COLORSPACE_MASK_ALL_SRGB, .colorspace_default = V4L2_COLORSPACE_SMPTE170M, }, + { + .fourcc = V4L2_PIX_FMT_NV12MT_COL128, + .opt_align = 128, + .min_align = 128, + .bit_depth = 8, + .plane_factor = { P3(1), P3(0.5) }, + .num_planes = 2, + .colorspace_mask = V4L2_COLORSPACE_MASK_ALL_SRGB, + .colorspace_default = V4L2_COLORSPACE_SMPTE170M, + }, { .fourcc = V4L2_PIX_FMT_NV21M, .opt_align = 32,