From patchwork Tue Aug 13 09:40:18 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 1803 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [IPv6:2001:4b98:dc2:55:216:3eff:fef7:d647]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 3010E61624 for ; Tue, 13 Aug 2019 11:40:26 +0200 (CEST) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id ACBDB30F; Tue, 13 Aug 2019 11:40:25 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1565689225; bh=+h3NGbgpj3N9PBiKaHYzFyXp8tC94Xb5e0DlfDTfRl0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=eq3mhVu6DrHq8D2fWXVjmk4kARzqKAPabIx0iPIEC/bzGbnSY4euPZBj1pUCLYfdP COW/UMqIWvX6UQOKEVWwzP6yEkEHkU5EUYP6fzowoFpOB/0jLTAX4lH6yfPDCy1wbc YHSWZ4uSWiqDVge1cTgQX4n3TUtfI/dXS5DmbpNk= From: Kieran Bingham To: LibCamera Devel Date: Tue, 13 Aug 2019 10:40:18 +0100 Message-Id: <20190813094020.10277-5-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190813094020.10277-1-kieran.bingham@ideasonboard.com> References: <20190813094020.10277-1-kieran.bingham@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v3 4/6] test: v4l2_videodevice: Add M2M device test X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Aug 2019 09:40:26 -0000 The V4L2M2MDevice requires two video devices to be configured. This makes it unsuitable to reuse the existing V4L2DeviceTest test library in its current form. Implement a full test to run the two M2M pipelines through VIM2M. Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- test/v4l2_videodevice/meson.build | 1 + test/v4l2_videodevice/v4l2_m2mdevice.cpp | 212 +++++++++++++++++++++++ 2 files changed, 213 insertions(+) create mode 100644 test/v4l2_videodevice/v4l2_m2mdevice.cpp diff --git a/test/v4l2_videodevice/meson.build b/test/v4l2_videodevice/meson.build index 76be5e142bb6..ad41898b5f8b 100644 --- a/test/v4l2_videodevice/meson.build +++ b/test/v4l2_videodevice/meson.build @@ -7,6 +7,7 @@ v4l2_videodevice_tests = [ [ 'stream_on_off', 'stream_on_off.cpp' ], [ 'capture_async', 'capture_async.cpp' ], [ 'buffer_sharing', 'buffer_sharing.cpp' ], + [ 'v4l2_m2mdevice', 'v4l2_m2mdevice.cpp' ], ] foreach t : v4l2_videodevice_tests diff --git a/test/v4l2_videodevice/v4l2_m2mdevice.cpp b/test/v4l2_videodevice/v4l2_m2mdevice.cpp new file mode 100644 index 000000000000..d132b1db2432 --- /dev/null +++ b/test/v4l2_videodevice/v4l2_m2mdevice.cpp @@ -0,0 +1,212 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* + * Copyright (C) 2019, Google Inc. + * + * libcamera V4L2 M2M video device tests + */ + +#include + +#include +#include +#include +#include + +#include "device_enumerator.h" +#include "media_device.h" +#include "v4l2_videodevice.h" + +#include "test.h" + +using namespace std; +using namespace libcamera; + +class V4L2M2MDeviceTest : public Test +{ +public: + V4L2M2MDeviceTest() + : vim2m_(nullptr), outputFrames_(0), captureFrames_(0) + { + } + + void outputBufferComplete(Buffer *buffer) + { + cout << "Received output buffer " << buffer->index() << endl; + + outputFrames_++; + + /* Requeue the buffer for further use. */ + vim2m_->output()->queueBuffer(buffer); + } + + void receiveCaptureBuffer(Buffer *buffer) + { + cout << "Received capture buffer " << buffer->index() << endl; + + captureFrames_++; + + /* Requeue the buffer for further use. */ + vim2m_->capture()->queueBuffer(buffer); + } + +protected: + int init() + { + enumerator_ = DeviceEnumerator::create(); + if (!enumerator_) { + cerr << "Failed to create device enumerator" << endl; + return TestFail; + } + + if (enumerator_->enumerate()) { + cerr << "Failed to enumerate media devices" << endl; + return TestFail; + } + + DeviceMatch dm("vim2m"); + dm.add("vim2m-source"); + dm.add("vim2m-sink"); + + media_ = enumerator_->search(dm); + if (!media_) { + cerr << "No vim2m device found" << endl; + return TestSkip; + } + + return TestPass; + } + + int run() + { + constexpr unsigned int bufferCount = 4; + + EventDispatcher *dispatcher = CameraManager::instance()->eventDispatcher(); + int ret; + + MediaEntity *entity = media_->getEntityByName("vim2m-source"); + vim2m_ = new V4L2M2MDevice(entity->deviceNode()); + if (vim2m_->open()) { + cerr << "Failed to open VIM2M device" << endl; + return TestFail; + } + + V4L2VideoDevice *capture = vim2m_->capture(); + V4L2VideoDevice *output = vim2m_->output(); + + V4L2DeviceFormat format = {}; + if (capture->getFormat(&format)) { + cerr << "Failed to get capture format" << endl; + return TestFail; + } + + format.size.width = 640; + format.size.height = 480; + + if (capture->setFormat(&format)) { + cerr << "Failed to set capture format" << endl; + return TestFail; + } + + if (output->setFormat(&format)) { + cerr << "Failed to set output format" << endl; + return TestFail; + } + + capturePool_.createBuffers(bufferCount); + outputPool_.createBuffers(bufferCount); + + ret = capture->exportBuffers(&capturePool_); + if (ret) { + cerr << "Failed to export Capture Buffers" << endl; + return TestFail; + } + + ret = output->exportBuffers(&outputPool_); + if (ret) { + cerr << "Failed to export Output Buffers" << endl; + return TestFail; + } + + capture->bufferReady.connect(this, &V4L2M2MDeviceTest::receiveCaptureBuffer); + output->bufferReady.connect(this, &V4L2M2MDeviceTest::outputBufferComplete); + + std::vector> captureBuffers; + captureBuffers = capture->queueAllBuffers(); + if (captureBuffers.empty()) { + cerr << "Failed to queue all Capture Buffers" << endl; + return TestFail; + } + + /* We can't "queueAllBuffers()" on an output device, so we do it manually */ + std::vector> outputBuffers; + for (unsigned int i = 0; i < outputPool_.count(); ++i) { + Buffer *buffer = new Buffer(i); + outputBuffers.emplace_back(buffer); + ret = output->queueBuffer(buffer); + if (ret) { + cerr << "Failed to queue output buffer" << i << endl; + return TestFail; + } + } + + ret = capture->streamOn(); + if (ret) { + cerr << "Failed to streamOn capture" << endl; + return TestFail; + } + + ret = output->streamOn(); + if (ret) { + cerr << "Failed to streamOn output" << endl; + return TestFail; + } + + Timer timeout; + timeout.start(5000); + while (timeout.isRunning()) { + dispatcher->processEvents(); + if (captureFrames_ > 30) + break; + } + + cerr << "Output " << outputFrames_ << " frames" << std::endl; + cerr << "Captured " << captureFrames_ << " frames" << std::endl; + + if (captureFrames_ < 30) { + cerr << "Failed to capture 30 frames within timeout." << std::endl; + return TestFail; + } + + ret = capture->streamOff(); + if (ret) { + cerr << "Failed to StreamOff the capture device." << std::endl; + return TestFail; + } + + ret = output->streamOff(); + if (ret) { + cerr << "Failed to StreamOff the output device." << std::endl; + return TestFail; + } + + return TestPass; + } + + void cleanup() + { + delete vim2m_; + }; + +private: + std::unique_ptr enumerator_; + std::shared_ptr media_; + V4L2M2MDevice *vim2m_; + + BufferPool capturePool_; + BufferPool outputPool_; + + unsigned int outputFrames_; + unsigned int captureFrames_; +}; + +TEST_REGISTER(V4L2M2MDeviceTest);