[libcamera-devel] [PATCH] libcamera: add hi846 camera sensor properties

Martin Kepplinger martin.kepplinger at puri.sm
Thu Sep 2 08:44:16 CEST 2021


Add camera sensor properties for the Hynix hi846 sensor.
The part is also called YACG4D0C9SHC and a datasheet can be found at
https://product.skhynix.com/products/cis/cis.go

This is the selfie camera in the Librem 5 phone.

Signed-off-by: Martin Kepplinger <martin.kepplinger at puri.sm>
---

Note that the driver is not yet merged into the mainline but being
reviewed:
https://lore.kernel.org/linux-media/20210831134344.1673318-1-martin.kepplinger@puri.sm/
libcamera doesn't warn about anything when using the camera. `cam` streams
and qcam shows a (non-debayered) image.

thanks,
                  martin


 src/libcamera/camera_sensor_properties.cpp | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/src/libcamera/camera_sensor_properties.cpp b/src/libcamera/camera_sensor_properties.cpp
index 4ee45e72..39bb282d 100644
--- a/src/libcamera/camera_sensor_properties.cpp
+++ b/src/libcamera/camera_sensor_properties.cpp
@@ -52,6 +52,24 @@ LOG_DEFINE_CATEGORY(CameraSensorProperties)
 const CameraSensorProperties *CameraSensorProperties::get(const std::string &sensor)
 {
 	static const std::map<std::string, const CameraSensorProperties> sensorProps = {
+		{ "hi846", {
+			.unitCellSize = { 1120, 1120 },
+			.testPatternModes = {
+				{ 0, controls::draft::TestPatternModeOff },
+				{ 1, controls::draft::TestPatternModeSolidColor },
+				{ 2, controls::draft::TestPatternModeColorBars },
+				{ 3, controls::draft::TestPatternModeColorBarsFadeToGray },
+				{ 4, controls::draft::TestPatternModePn9 },
+				/*
+				 * No corresponding test pattern mode for:
+				 * 5: "Gradient Horizontal"
+				 * 6: "Gradient Vertical"
+				 * 7: "Check Board"
+				 * 8: "Slant Pattern"
+				 * 9: "Resolution Pattern"
+				 */
+			},
+		} },
 		{ "imx219", {
 			.unitCellSize = { 1120, 1120 },
 			.testPatternModes = {
-- 
2.30.2



More information about the libcamera-devel mailing list