These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.12.y With the following command: git format-patch -N v6.12.27..HEAD (HEAD -> 8d3206ee456a5ecdf9ddbfd8e5e231e4f0cd716e) Exceptions: - (def)configs patches - github workflows patches - applied & reverted patches - readme patches - wireless patches Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
From 3e4bd959b78418cd30b904a9d58d6a1a654315a0 Mon Sep 17 00:00:00 2001
|
|
From: Naushir Patuck <naush@raspberrypi.com>
|
|
Date: Tue, 23 Apr 2024 12:50:23 +0100
|
|
Subject: [PATCH] drivers: media: cfe: Add remap entries for mono formats
|
|
|
|
The 8-bit and 16-bit mono formats were missing the appropriate remap
|
|
entries in the format table.
|
|
|
|
Signed-off-by: Naushir Patuck <naush@raspberrypi.com>
|
|
---
|
|
drivers/media/platform/raspberrypi/rp1_cfe/cfe_fmts.h | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/drivers/media/platform/raspberrypi/rp1_cfe/cfe_fmts.h
|
|
+++ b/drivers/media/platform/raspberrypi/rp1_cfe/cfe_fmts.h
|
|
@@ -256,6 +256,7 @@ static const struct cfe_fmt formats[] =
|
|
.code = MEDIA_BUS_FMT_Y8_1X8,
|
|
.depth = 8,
|
|
.csi_dt = MIPI_CSI2_DT_RAW8,
|
|
+ .remap = { V4L2_PIX_FMT_Y16, V4L2_PIX_FMT_PISP_COMP1_MONO },
|
|
},
|
|
{
|
|
.fourcc = V4L2_PIX_FMT_Y10P,
|
|
@@ -284,6 +285,7 @@ static const struct cfe_fmt formats[] =
|
|
.depth = 16,
|
|
.csi_dt = MIPI_CSI2_DT_RAW16,
|
|
.flags = CFE_FORMAT_FLAG_FE_OUT,
|
|
+ .remap = { V4L2_PIX_FMT_Y16, V4L2_PIX_FMT_PISP_COMP1_MONO },
|
|
},
|
|
{
|
|
.fourcc = V4L2_PIX_FMT_PISP_COMP1_MONO,
|