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>
28 lines
1,016 B
Diff
28 lines
1,016 B
Diff
From c5a6331c10de88a30b50f2c19342a2f9b642fa13 Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Thu, 25 Jun 2020 18:03:47 +0100
|
|
Subject: [PATCH] media: bcm2835-unicam: Add support for 14bit mono sources
|
|
|
|
Now that V4L2_PIX_FMT_Y14 and V4L2_PIX_FMT_Y14P are defined,
|
|
allow passing 14bit mono data through the peripheral.
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/media/platform/bcm2835/bcm2835-unicam.c | 6 ++++++
|
|
1 file changed, 6 insertions(+)
|
|
|
|
--- a/drivers/media/platform/bcm2835/bcm2835-unicam.c
|
|
+++ b/drivers/media/platform/bcm2835/bcm2835-unicam.c
|
|
@@ -446,6 +446,12 @@ static const struct unicam_fmt formats[]
|
|
.code = MEDIA_BUS_FMT_Y12_1X12,
|
|
.depth = 12,
|
|
.csi_dt = MIPI_CSI2_DT_RAW12,
|
|
+ }, {
|
|
+ .fourcc = V4L2_PIX_FMT_Y14P,
|
|
+ .repacked_fourcc = V4L2_PIX_FMT_Y14,
|
|
+ .code = MEDIA_BUS_FMT_Y14_1X14,
|
|
+ .depth = 14,
|
|
+ .csi_dt = MIPI_CSI2_DT_RAW14,
|
|
.valid_colorspaces = MASK_CS_RAW,
|
|
}, {
|
|
.fourcc = V4L2_PIX_FMT_Y16,
|