summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Bara <benjamin.bara@skidata.com>2023-05-19 17:48:13 +0200
committerKieran Bingham <kieran.bingham@ideasonboard.com>2023-05-19 18:25:59 +0100
commit7d5b38e2ef413ebdf8fc333b8b9814cf34ac3bf7 (patch)
tree639233cc77dc96f65d4ece5bb63795b15655fc05
parenta3178dd0391f716d01fe216449e977d1e1bd5591 (diff)
libipa: camera_sensor_helper: Add IMX327 helper
Add support for the Sony IMX327, which is added to the kernel with commit 2d41947ec2c0 ("media: i2c: imx290: Add support for imx327 variant"). It is basically a derivate of the IMX290, therefore also derive the helper. Signed-off-by: Benjamin Bara <benjamin.bara@skidata.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r--src/ipa/libipa/camera_sensor_helper.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ipa/libipa/camera_sensor_helper.cpp b/src/ipa/libipa/camera_sensor_helper.cpp
index 21cdabd1..2eebd7ab 100644
--- a/src/ipa/libipa/camera_sensor_helper.cpp
+++ b/src/ipa/libipa/camera_sensor_helper.cpp
@@ -428,6 +428,11 @@ public:
};
REGISTER_CAMERA_SENSOR_HELPER("imx290", CameraSensorHelperImx290)
+class CameraSensorHelperImx327 : public CameraSensorHelperImx290
+{
+};
+REGISTER_CAMERA_SENSOR_HELPER("imx327", CameraSensorHelperImx327)
+
class CameraSensorHelperImx296 : public CameraSensorHelper
{
public: