mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
2e715fb4fc
Add support for BCM2712 (Raspberry Pi 5).
3bb5880ab3
Patches were generated from the diff between linux kernel branch linux-6.1.y
and rpi-6.1.y from raspberry pi kernel source:
- git format-patch linux-6.1.y...rpi-6.1.y
Build system: x86_64
Build-tested: bcm2708, bcm2709, bcm2710, bcm2711
Run-tested: bcm2710/RPi3B, bcm2711/RPi4B
Signed-off-by: Marty Jones <mj8263788@gmail.com>
[Remove applied and reverted patches, squash patches and config commits]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
26 lines
949 B
Diff
26 lines
949 B
Diff
From 47fd9528bc1d93dd07ce9baa19c736966b536bd9 Mon Sep 17 00:00:00 2001
|
|
From: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
Date: Mon, 2 Oct 2023 14:38:07 +0300
|
|
Subject: [PATCH] media: rp1: cfe: Fix default meta format's field
|
|
|
|
Set default meta format's field to V4L2_FIELD_NONE, instead of zeroing
|
|
it which indicates V4L2_FIELD_ANY. Metadata doesn't have fields, so NONE
|
|
makes sense, and furthermore the default v4l2 link validation will check
|
|
for matching fields, or that the sink field is NONE.
|
|
|
|
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
---
|
|
drivers/media/platform/raspberrypi/rp1_cfe/cfe.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
|
|
+++ b/drivers/media/platform/raspberrypi/rp1_cfe/cfe.c
|
|
@@ -110,6 +110,7 @@ const struct v4l2_mbus_framefmt cfe_defa
|
|
.width = 8192,
|
|
.height = 1,
|
|
.code = MEDIA_BUS_FMT_SENSOR_DATA,
|
|
+ .field = V4L2_FIELD_NONE,
|
|
};
|
|
|
|
enum node_ids {
|