mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-22 04:56:15 +00:00
8c405cdccc
The patches were generated from the RPi repo with the following command: git format-patch v6.6.34..rpi-6.1.y Some patches needed rebasing and, as usual, the applied and reverted, wireless drivers, Github workflows, READMEs and defconfigs patches were removed. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
30 lines
961 B
Diff
30 lines
961 B
Diff
From c2688afbd12c584c5e022922d08385f9af770e52 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 0229/1085] 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
|
|
@@ -343,6 +343,12 @@ static const struct unicam_fmt formats[]
|
|
.code = MEDIA_BUS_FMT_Y12_1X12,
|
|
.depth = 12,
|
|
.csi_dt = 0x2c,
|
|
+ }, {
|
|
+ .fourcc = V4L2_PIX_FMT_Y14P,
|
|
+ .repacked_fourcc = V4L2_PIX_FMT_Y14,
|
|
+ .code = MEDIA_BUS_FMT_Y14_1X14,
|
|
+ .depth = 14,
|
|
+ .csi_dt = 0x2d,
|
|
},
|
|
/* Embedded data format */
|
|
{
|