libcamera: Test sensor's ability to discover ancillary devices

Use vimc lens to test sensor's ability to discover ancillary lens.

Tested with the recent kernel patch for vimc lens:
https://lore.kernel.org/linux-media/20220415023855.2568366-1-yunkec@google.com/

Signed-off-by: Yunke Cao <yunkec@google.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Yunke Cao
2022-04-25 18:27:10 +09:00
committed by Kieran Bingham
parent 1d8fb31759
commit 3d612720fb
2 changed files with 17 additions and 1 deletions

View File

@@ -152,7 +152,12 @@ int CameraSensor::init()
*/
if (entity_->device()->driver() == "vimc") {
initVimcDefaultProperties();
return initProperties();
ret = initProperties();
if (ret)
return ret;
return discoverAncillaryDevices();
}
/* Get the color filter array pattern (only for RAW sensors). */