From patchwork Thu Mar 24 12:54:44 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 15533 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 1A2CFBD80A for ; Thu, 24 Mar 2022 12:54:50 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id BA59C604DB; Thu, 24 Mar 2022 13:54:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=libcamera.org; s=mail; t=1648126489; bh=r8abn2wbWyXLuB6RSKE4ndCrIde3rzlxR/EdsK9rr1s=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=kK3kHLLRSjvE1YQpwmOnku7bBRAyWVbDj/QXJbHFFZ/k+lyoJR2YsRpuGmKjjSMBM 6o1HtatgFWXWYoM1gizQt9LJxa5SD1CrJGMDNVwem5tafT6yJmE811Q7CUB98OHUFK 464g7K/d80J68QLGAwJnrvJ8cNFjDt0qpKyqvYt996RHphOGUGT6mtF/YgZIzLo2gJ SEO5wuhG74weKXTpW/HlH4+97UG/InEFPb2DOO+WsfhmDOKNkiP/6kvWL03eROVQoy tpLB/AURfK51yQoJIhsl88iCIdwBUtDQHpkffeI8VymHyRnuw5q9LNwDrx+Ky6bFWo BNrwayp6z/c5A== Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id C1BBC60397 for ; Thu, 24 Mar 2022 13:54:48 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="Hhbldodo"; dkim-atps=neutral Received: from Monstersaurus.ksquared.org.uk.beta.tailscale.net (cpc89244-aztw30-2-0-cust3082.18-1.cable.virginm.net [86.31.172.11]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 7322C1844; Thu, 24 Mar 2022 13:54:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1648126488; bh=r8abn2wbWyXLuB6RSKE4ndCrIde3rzlxR/EdsK9rr1s=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HhbldodoPpGNIWUGETLoyFUlHf1v2LOz5x4Uu4hDL0NUVF1GGVzsbcYTTvVdJvK2C SCoab6mTjfbl/xqsLZELwRm9+6kACOc+MuDdu3Lt3iXtDLPYZA04dfaJa4h+5cSuTP xtM0+XrT8wibhOdwr0yOTCn4lOIcIdjv1FhwwHIk= To: libcamera devel Date: Thu, 24 Mar 2022 12:54:44 +0000 Message-Id: <20220324125444.1389060-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220324093409.29247-1-naush@raspberrypi.com> References: <20220324093409.29247-1-naush@raspberrypi.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] test: v4l2_videodevice: Verify the Dequeue Watchdog 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: , X-Patchwork-Original-From: Kieran Bingham via libcamera-devel From: Kieran Bingham Reply-To: Kieran Bingham Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Add a test that captures 5 frames, with a short (5ms) watchdog. The default framerate of the VIMC pipeline should ensure that we never meet this watchdog, and the timeout should activate. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- test/v4l2_videodevice/dequeue_watchdog.cpp | 100 +++++++++++++++++++++ test/v4l2_videodevice/meson.build | 1 + 2 files changed, 101 insertions(+) create mode 100644 test/v4l2_videodevice/dequeue_watchdog.cpp diff --git a/test/v4l2_videodevice/dequeue_watchdog.cpp b/test/v4l2_videodevice/dequeue_watchdog.cpp new file mode 100644 index 000000000000..db0c65ff482e --- /dev/null +++ b/test/v4l2_videodevice/dequeue_watchdog.cpp @@ -0,0 +1,100 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* + * Copyright (C) 2022, Ideas on Board Oy. + * + * libcamera V4L2 dequeue watchdog test + */ + +#include + +#include +#include +#include + +#include + +#include "v4l2_videodevice_test.h" + +using namespace std::chrono_literals; +using namespace libcamera; + +class DequeueWatchdogTest : public V4L2VideoDeviceTest +{ +public: + DequeueWatchdogTest() + : V4L2VideoDeviceTest("vimc", "Raw Capture 0"), frames(0), barks(0) {} + + void receiveBuffer(FrameBuffer *buffer) + { + if (buffer->metadata().status == FrameMetadata::FrameCancelled) + return; + + std::cout << "Buffer received" << std::endl; + frames++; + + /* Requeue the buffer for further use. */ + capture_->queueBuffer(buffer); + } + + void barkCounter() + { + std::cout << "Watchdog is barking" << std::endl; + barks++; + } + +protected: + int run() + { + const unsigned int bufferCount = 8; + + EventDispatcher *dispatcher = Thread::current()->eventDispatcher(); + Timer timeout; + + int ret = capture_->allocateBuffers(bufferCount, &buffers_); + if (ret < 0) + return TestFail; + + capture_->dequeueTimeout.connect(this, &DequeueWatchdogTest::barkCounter); + capture_->setDequeueTimeout(5ms); + + capture_->bufferReady.connect(this, &DequeueWatchdogTest::receiveBuffer); + + for (const std::unique_ptr &buffer : buffers_) { + if (capture_->queueBuffer(buffer.get())) { + std::cout << "Failed to queue buffer" << std::endl; + return TestFail; + } + } + + ret = capture_->streamOn(); + if (ret) + return TestFail; + + timeout.start(5s); + while (timeout.isRunning()) { + dispatcher->processEvents(); + if (frames > 5) + break; + } + + std::cout << "Processed " << frames << " frames and heard " + << barks << " barks" << std::endl; + + if (barks < 1) { + std::cout << "Failed to hear any barks." << std::endl; + return TestFail; + } + + ret = capture_->streamOff(); + if (ret) + return TestFail; + + return TestPass; + } + +private: + unsigned int frames; + unsigned int barks; +}; + +TEST_REGISTER(DequeueWatchdogTest) diff --git a/test/v4l2_videodevice/meson.build b/test/v4l2_videodevice/meson.build index 643f82edce5e..7a26f53d106a 100644 --- a/test/v4l2_videodevice/meson.build +++ b/test/v4l2_videodevice/meson.build @@ -6,6 +6,7 @@ v4l2_videodevice_tests = [ ['double_open', 'double_open.cpp'], ['controls', 'controls.cpp'], ['formats', 'formats.cpp'], + ['dequeue_watchdog', 'dequeue_watchdog.cpp'], ['request_buffers', 'request_buffers.cpp'], ['buffer_cache', 'buffer_cache.cpp'], ['stream_on_off', 'stream_on_off.cpp'],