camera: enable the FP6 ultra-wide pipeline (kernel config + patched libcamera)
All checks were successful
image / image (push) Successful in 1h51m52s
All checks were successful
image / image (push) Successful in 1h51m52s
Kernel config: CONFIG_VIDEO_OV13B10=m + CONFIG_VIDEO_DW9714=m — the camss core, CAMCC and CCI were already enabled; the sensor and VCM drivers were the only missing pieces. The camera carries themselves land via milos-linux combined-stable (merge of the 'camera' topic branch, nondescriptpointer's 5 patches, authorship preserved). libcamera: new temp/ aport overriding pmOS 99990.7.2-r1 with -r2, adding nondescriptpointer's OV13B10 sensor helper (gain = code/128, enables the software-ISP AGC/AWB) and sensor properties patches on top of the pmOS 0.7.2 APKBUILD. Patch sha512s re-recorded from the actual files (his APKBUILD diff carried stale hashes); all four patches verified to apply against the v0.7.2 tarball. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
9e60bb8c0a
commit
34cfc098d8
16 changed files with 578 additions and 2 deletions
|
|
@ -0,0 +1,34 @@
|
|||
From be67f67c4ac44b571d1740c1da10669fe6a5c75b Mon Sep 17 00:00:00 2001
|
||||
From: Robert Mader <robert.mader@collabora.com>
|
||||
Date: Wed, 1 May 2024 18:12:02 +0200
|
||||
Subject: [PATCH 1/2] libcamera: simple: Enable softISP for the Pinephone
|
||||
|
||||
In theory the PP should be able to use the actual HW ISP, however in
|
||||
practice this does not work well yet - especially as the driver for the
|
||||
front camera in Megi differs heavily from the upstream one.
|
||||
|
||||
Thus enable the swISP to make both cameras work reliably for now. This
|
||||
is essentially what Megapixels does as well. If the HW ISP situation
|
||||
improves, this can be dropped again.
|
||||
|
||||
Signed-off-by: Robert Mader <robert.mader@collabora.com>
|
||||
---
|
||||
src/libcamera/pipeline/simple/simple.cpp | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/libcamera/pipeline/simple/simple.cpp b/src/libcamera/pipeline/simple/simple.cpp
|
||||
index e26f438d9..24538649c 100644
|
||||
--- a/src/libcamera/pipeline/simple/simple.cpp
|
||||
+++ b/src/libcamera/pipeline/simple/simple.cpp
|
||||
@@ -264,7 +264,7 @@ static const SimplePipelineInfo supportedDevices[] = {
|
||||
{ "mtk-seninf", { { "mtk-mdp", 3 } }, false },
|
||||
{ "mxc-isi", {}, false },
|
||||
{ "qcom-camss", {}, true },
|
||||
- { "sun6i-csi", {}, false },
|
||||
+ { "sun6i-csi", {}, true },
|
||||
};
|
||||
|
||||
bool isRaw(const StreamConfiguration &cfg)
|
||||
--
|
||||
2.55.0
|
||||
|
||||
Loading…
Reference in a new issue