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>
41 lines
1.2 KiB
Diff
41 lines
1.2 KiB
Diff
From 56a45c9987220d267d734a7031f2551f8f6a74dd Mon Sep 17 00:00:00 2001
|
|
From: Ben Benson <ben.benson@raspberrypi.com>
|
|
Date: Fri, 21 Jul 2023 15:59:51 +0100
|
|
Subject: [PATCH 0488/1085] drivers: media: imx296: Updated imx296 driver for
|
|
external trigger
|
|
|
|
Updated imx296 driver to support external trigger mode via XTR pin.
|
|
Added module parameter to control this mode.
|
|
|
|
Signed-off-by: Ben Benson <ben.benson@raspberrypi.com>
|
|
---
|
|
drivers/media/i2c/imx296.c | 10 ++++++++++
|
|
1 file changed, 10 insertions(+)
|
|
|
|
--- a/drivers/media/i2c/imx296.c
|
|
+++ b/drivers/media/i2c/imx296.c
|
|
@@ -20,6 +20,10 @@
|
|
#include <media/v4l2-fwnode.h>
|
|
#include <media/v4l2-subdev.h>
|
|
|
|
+static int trigger_mode;
|
|
+module_param(trigger_mode, int, 0644);
|
|
+MODULE_PARM_DESC(trigger_mode, "Set trigger mode: 0=default, 1=XTRIG");
|
|
+
|
|
#define IMX296_PIXEL_ARRAY_WIDTH 1456
|
|
#define IMX296_PIXEL_ARRAY_HEIGHT 1088
|
|
|
|
@@ -578,6 +582,12 @@ static int imx296_stream_on(struct imx29
|
|
|
|
imx296_write(sensor, IMX296_CTRL00, 0, &ret);
|
|
usleep_range(2000, 5000);
|
|
+
|
|
+ if (trigger_mode == 1) {
|
|
+ imx296_write(sensor, IMX296_CTRL0B, IMX296_CTRL0B_TRIGEN, &ret);
|
|
+ imx296_write(sensor, IMX296_LOWLAGTRG, IMX296_LOWLAGTRG_FAST, &ret);
|
|
+ }
|
|
+
|
|
imx296_write(sensor, IMX296_CTRL0A, 0, &ret);
|
|
|
|
return ret;
|