From patchwork Thu Aug 8 00:04:00 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Niklas_S=C3=B6derlund?= X-Patchwork-Id: 1744 Return-Path: Received: from vsp-unauthed02.binero.net (vsp-unauthed02.binero.net [195.74.38.227]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 3E5BB6161A for ; Thu, 8 Aug 2019 02:04:10 +0200 (CEST) X-Halon-ID: 04edfe64-b970-11e9-bdc3-005056917a89 Authorized-sender: niklas@soderlund.pp.se Received: from bismarck.berto.se (unknown [145.14.112.32]) by bin-vsp-out-01.atm.binero.net (Halon) with ESMTPA id 04edfe64-b970-11e9-bdc3-005056917a89; Thu, 08 Aug 2019 02:04:00 +0200 (CEST) From: =?utf-8?q?Niklas_S=C3=B6derlund?= To: libcamera-devel@lists.libcamera.org Date: Thu, 8 Aug 2019 02:04:00 +0200 Message-Id: <20190808000404.10841-1-niklas.soderlund@ragnatech.se> X-Mailer: git-send-email 2.22.0 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v3 0/4] libcamera: Fix issues with vimc and Linux v5.2 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: Thu, 08 Aug 2019 00:04:10 -0000 Hi, The recently release Linux v5.2 changes the vimc drivers behavior in a way which breaks libcameras vimc pipeline and some of our tests. This small series aims to solve this and keep libcamera functioning on both v5.1 (and earlier) and v5.2. Patch 1/4 is a small preparation patch. While 2/4 switches the vimc pipeline to use the RGB/YUV capture video node instead of a raw capture node. Patch 3/4 fixes issues introduced by [1] and finally 4/4 fixes an issue introduced by [2]. The whole series is tested on v5.1 and v5.2 on top of libcamera master branch and all tests pass again. 1. 85ab1aa1fac17bcd ("media: vimc: deb: fix default sink bayer format") 2. b6c61a6c37317efd ("media: vimc: propagate pixel format in the stream") * Changes since v2 - Switch to vimc RGB/YUV capture video node. Niklas Söderlund (4): libcamera: pipeline: vimc: Initialize device pointers libcamera: pipeline: vimc: Switch to using the RGB/YUV Capture video node tests: v4l2_videodevice: Set media bus and pixel formats for vimc tests: camera-sensor: Test using invalid media bus format src/libcamera/pipeline/vimc.cpp | 112 ++++++++++++++++-- test/camera-sensor.cpp | 3 +- test/camera/buffer_import.cpp | 8 +- .../v4l2_videodevice_test.cpp | 26 ++++ test/v4l2_videodevice/v4l2_videodevice_test.h | 7 +- 5 files changed, 138 insertions(+), 18 deletions(-)