From patchwork Wed Apr 21 04:23:44 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hirokazu Honda X-Patchwork-Id: 12022 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id C74A7BDB16 for ; Wed, 21 Apr 2021 04:24:05 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 8520668846; Wed, 21 Apr 2021 06:24:05 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=chromium.org header.i=@chromium.org header.b="IVe/hgRN"; dkim-atps=neutral Received: from mail-pf1-x42a.google.com (mail-pf1-x42a.google.com [IPv6:2607:f8b0:4864:20::42a]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 6C0DA602C3 for ; Wed, 21 Apr 2021 06:24:03 +0200 (CEST) Received: by mail-pf1-x42a.google.com with SMTP id a12so27472953pfc.7 for ; Tue, 20 Apr 2021 21:24:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=DgyIxqKBQJt6BM45ov5SUpTjBy04mX0jLBNjwW3YiL4=; b=IVe/hgRNVyHVfvt0I6aYNROHZwRu9SHOFBwKBtvvzHSmDb+gCxz+NnIXkqq5NtpeHv QSCMxDk7GvhyTz5REBlIGhfMq0Ey/AVAHdewf16Bd+EaYXUykVvAH575Wnt0/1BqdIvC vLEMHHduBHkYEZpokWIwd2dBgTGiDhSTqPNq0= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=DgyIxqKBQJt6BM45ov5SUpTjBy04mX0jLBNjwW3YiL4=; b=tvSE1YBCSvtORab3O9cxPlzTAzafZVV9BPtxZGyWB2Et18N+q9LBpbhkKhCiQeI9B5 cClOy5UZOKxbNpei5fgJe5igJpWq8r+roZfL7hRi6vptNxfqJ30NbnKaaFqMIg3AdADj d4nbyHuEuI8R5aWu0kt+iGhnfBWWFDDZsTe8jW6G/cDEYHrY5t/EMmCaV1mXErswUMdW sq1XMUEhlZVhjVrWTZBJH3IGmVzq8m7N7Lmjnlv6uCK8KxHpNzXli7PADl7ebund2kyK 8r2O7GeAQXRgCamFfQBPogYhYvcuXbGh1vctaxF40dJJhc+Z6mtgL87xNT/sWBphhCDu OIog== X-Gm-Message-State: AOAM530PUW8RMMo24rC+AL/IO/Qwb3BtQe5dLyUbFSA8mQ6eN3OSG9Vc 92IptSyazG1GOWljnBNlQRe+CxyiF7QWPA== X-Google-Smtp-Source: ABdhPJwOgQrS3d/ueLzok3I9H+uUCFcI9Hxeoqg68VOSghsg8GCPuhbDga8QuIGSU+6GWjG7NTCagQ== X-Received: by 2002:a65:61a1:: with SMTP id i1mr20075098pgv.411.1618979041841; Tue, 20 Apr 2021 21:24:01 -0700 (PDT) Received: from hiroh2.tok.corp.google.com ([2401:fa00:8f:2:7aaa:cbeb:5d87:4ab6]) by smtp.gmail.com with ESMTPSA id z18sm461316pfa.39.2021.04.20.21.24.00 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 20 Apr 2021 21:24:01 -0700 (PDT) From: Hirokazu Honda To: libcamera-devel@lists.libcamera.org Date: Wed, 21 Apr 2021 13:23:44 +0900 Message-Id: <20210421042346.312854-6-hiroh@chromium.org> X-Mailer: git-send-email 2.31.1.368.gbe11c130af-goog In-Reply-To: <20210421042346.312854-1-hiroh@chromium.org> References: <20210421042346.312854-1-hiroh@chromium.org> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v2 5/7] libcamera: CameraSensor: Attach available test pattern modes X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" This add available test pattern modes to libcamera to CameraSensorInfo. Signed-off-by: Hirokazu Honda --- include/libcamera/internal/camera_sensor.h | 2 ++ src/libcamera/camera_sensor.cpp | 38 ++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/include/libcamera/internal/camera_sensor.h b/include/libcamera/internal/camera_sensor.h index 3fa3a419..75b884db 100644 --- a/include/libcamera/internal/camera_sensor.h +++ b/include/libcamera/internal/camera_sensor.h @@ -38,6 +38,8 @@ struct CameraSensorInfo { uint32_t minFrameLength; uint32_t maxFrameLength; + + std::vector availableTestPatternModes; }; class CameraSensor : protected Loggable diff --git a/src/libcamera/camera_sensor.cpp b/src/libcamera/camera_sensor.cpp index 850c94b3..d20cfb4c 100644 --- a/src/libcamera/camera_sensor.cpp +++ b/src/libcamera/camera_sensor.cpp @@ -840,6 +840,44 @@ int CameraSensor::sensorInfo(CameraSensorInfo *info) const info->minFrameLength = info->outputSize.height + vblank.min().get(); info->maxFrameLength = info->outputSize.height + vblank.max().get(); + const SensorInfo *staticInfo = SensorDatabase::get(model_); + if (!staticInfo) { + LOG(CameraSensor, Warning) + << "No static properties available for '" << model_ << "'"; + LOG(CameraSensor, Warning) + << "Please consider updating the sensor database"; + return -EINVAL; + } + + const auto &v4l2TestPattern = controls().find(V4L2_CID_TEST_PATTERN); + if (v4l2TestPattern == controls().end()) { + LOG(CameraSensor, Debug) << "No static test pattern map for \'" + << model() << "\'"; + return 0; + } + + for (const ControlValue &value : v4l2TestPattern->second.values()) { + const ControlMenu &menu = value.get(); + ASSERT(menu.isName); + + int32_t matchedTestPattern = -1; + for (const auto &[name, testPattern] : staticInfo->testPatternModeMap) { + if (strcmp(menu.name, name) == 0) { + matchedTestPattern = testPattern; + break; + } + } + + if (matchedTestPattern != -1) { + LOG(CameraSensor, Debug) << "Test pattern mode named \'" + << menu.name << "\' added"; + info->availableTestPatternModes.push_back(matchedTestPattern); + } else { + LOG(CameraSensor, Debug) << "Test pattern mode named \'" + << menu.name << "\' ignored"; + } + } + return 0; }