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,28 @@
|
|||
From: nondescriptpointer <public@nondescriptpointer.com>
|
||||
Date: Tue, 21 Jul 2026 00:00:00 +0000
|
||||
Subject: [PATCH] libcamera: sensor: Add OV13B10 sensor properties
|
||||
|
||||
Adds the OV13B10 (Fairphone 6 ultra-wide) to the sensor properties
|
||||
database: 1.12um unit cell and its test-pattern mode mapping. Removes
|
||||
the "No static properties available for 'ov13b10'" warning.
|
||||
---
|
||||
src/libcamera/sensor/camera_sensor_properties.cpp | 7 +++++++
|
||||
1 file changed, 7 insertions(+)
|
||||
|
||||
--- a/src/libcamera/sensor/camera_sensor_properties.cpp
|
||||
+++ b/src/libcamera/sensor/camera_sensor_properties.cpp
|
||||
@@ -503,6 +503,14 @@
|
||||
},
|
||||
.sensorDelays = { },
|
||||
} },
|
||||
+ { "ov13b10", {
|
||||
+ .unitCellSize = { 1120, 1120 },
|
||||
+ .testPatternModes = {
|
||||
+ { controls::draft::TestPatternModeOff, 0 },
|
||||
+ { controls::draft::TestPatternModeColorBars, 1 },
|
||||
+ },
|
||||
+ .sensorDelays = { },
|
||||
+ } },
|
||||
{ "vd55g1", {
|
||||
.unitCellSize = { 2160, 2160 },
|
||||
.testPatternModes = {
|
||||
Loading…
Reference in a new issue