X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=target%2Flinux%2Fbrcm2708%2Fpatches-4.19%2F950-0726-media-bcm2835-unicam-Add-support-for-raw14-formats.patch;fp=target%2Flinux%2Fbrcm2708%2Fpatches-4.19%2F950-0726-media-bcm2835-unicam-Add-support-for-raw14-formats.patch;h=0000000000000000000000000000000000000000;hp=f7fe151a2d9684387d7a56c4ba491a077a7f3fa4;hb=7d7aa2fd924c27829ec25f825481554dd81bce97;hpb=e7bfda2c243e66a75ff966ba04c28b1590b5d24c diff --git a/target/linux/brcm2708/patches-4.19/950-0726-media-bcm2835-unicam-Add-support-for-raw14-formats.patch b/target/linux/brcm2708/patches-4.19/950-0726-media-bcm2835-unicam-Add-support-for-raw14-formats.patch deleted file mode 100644 index f7fe151a2d..0000000000 --- a/target/linux/brcm2708/patches-4.19/950-0726-media-bcm2835-unicam-Add-support-for-raw14-formats.patch +++ /dev/null @@ -1,49 +0,0 @@ -From 13b916fa2b8a99c9953073316e102e9d027dd708 Mon Sep 17 00:00:00 2001 -From: Dave Stevenson -Date: Wed, 2 Oct 2019 16:09:24 +0100 -Subject: [PATCH] media: bcm2835-unicam: Add support for raw14 formats - -The V4L2 has gained defines for V4L2_PIX_FMT_Sxxxx14P, -therefore add support for it to bcm2835-unicam. - -Signed-off-by: Dave Stevenson ---- - .../media/platform/bcm2835/bcm2835-unicam.c | 25 +++++++++++++++++-- - 1 file changed, 23 insertions(+), 2 deletions(-) - ---- a/drivers/media/platform/bcm2835/bcm2835-unicam.c -+++ b/drivers/media/platform/bcm2835/bcm2835-unicam.c -@@ -273,10 +273,31 @@ static const struct unicam_fmt formats[] - .code = MEDIA_BUS_FMT_SRGGB12_1X12, - .depth = 12, - .csi_dt = 0x2c, -+ }, { -+ .fourcc = V4L2_PIX_FMT_SBGGR14P, -+ .code = MEDIA_BUS_FMT_SBGGR14_1X14, -+ .depth = 14, -+ .csi_dt = 0x2d, -+ }, { -+ .fourcc = V4L2_PIX_FMT_SGBRG14P, -+ .code = MEDIA_BUS_FMT_SGBRG14_1X14, -+ .depth = 14, -+ .csi_dt = 0x2d, -+ }, { -+ .fourcc = V4L2_PIX_FMT_SGRBG14P, -+ .code = MEDIA_BUS_FMT_SGRBG14_1X14, -+ .depth = 14, -+ .csi_dt = 0x2d, -+ }, { -+ .fourcc = V4L2_PIX_FMT_SRGGB14P, -+ .code = MEDIA_BUS_FMT_SRGGB14_1X14, -+ .depth = 14, -+ .csi_dt = 0x2d, - }, - /* -- * 14 and 16 bit Bayer formats could be supported, but there are no V4L2 -- * defines for 14bit packed Bayer, and no CSI2 data_type for raw 16. -+ * 16 bit Bayer formats could be supported, but there is no CSI2 -+ * data_type defined for raw 16, and no sensors that produce it at -+ * present. - */ - }; -