From patchwork Mon Apr 25 18:45:07 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christopher Obbard X-Patchwork-Id: 82667 Received: from vger.kernel.org ([23.128.96.18]) by www.linuxtv.org with esmtp (Exim 4.92) (envelope-from ) id 1nj3iA-001BaE-UR; Mon, 25 Apr 2022 18:45:27 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S244519AbiDYSs2 (ORCPT + 1 other); Mon, 25 Apr 2022 14:48:28 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41392 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244516AbiDYSs1 (ORCPT ); Mon, 25 Apr 2022 14:48:27 -0400 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [IPv6:2a00:1098:0:82:1000:25:2eeb:e3e3]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8101125D5; Mon, 25 Apr 2022 11:45:19 -0700 (PDT) Received: from obbardc-laptop.home (unknown [IPv6:2a00:23c7:6883:e501:cf51:f3a2:10b5:accf]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: obbardc) by bhuna.collabora.co.uk (Postfix) with ESMTPSA id 696C11F42FFF; Mon, 25 Apr 2022 19:45:18 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1650912318; bh=6WX0YykginR4rs3mKf/Gy2eH7P20D1yl5xmmnw4gzAI=; h=From:To:Cc:Subject:Date:From; b=hBHdhWOxKse9yEF0khUOx+cNRA4mTQyt7Rh9RKH9rFYVYCpmaIO7bJhRLZizFRufk BI4g+MSg05TnFlSFL/hngaRgu1QV+2V8RbXRzgZXROSTjgATZiDm2WQwT8VU3bp9cF aZXtAj5zhMzUBdW0SjhW4ER45f3oYENcwT+t1o8hxteCSQIzkZWf29QXABqFIHJ+ng 0vB1RdIPjzOMr1DyGAzUEibgrdiTUYwkSY7VA5PVAPi3458tSMnk9bQw8Lf09flgv0 9Tp3bYXN6d/sCRxJLgaAJRcnHM1+II7pIvho62HwAA5yYS3/coeNVF0uza3z7YzR8e MiS8pOjbLZRlA== From: Christopher Obbard To: Ezequiel Garcia , Mauro Carvalho Chehab , Rob Herring , Krzysztof Kozlowski , Heiko Stuebner , Johan Jonker , Elaine Zhang Cc: linux-media@vger.kernel.org, linux-rockchip@lists.infradead.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, kernel@collabora.com, Christopher Obbard Subject: [PATCH v3 0/3] Rockchip RK3328 VDEC support Date: Mon, 25 Apr 2022 19:45:07 +0100 Message-Id: <20220425184510.1138446-1-chris.obbard@collabora.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-Spam-Status: No, score=-2.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on lindbergh.monkeyblade.net Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-LSpam-Score: -2.5 (--) X-LSpam-Report: No, score=-2.5 required=5.0 tests=BAYES_00=-1.9,DKIM_SIGNED=0.1,DKIM_VALID=-0.1,DKIM_VALID_AU=-0.1,HEADER_FROM_DIFFERENT_DOMAINS=0.5,MAILING_LIST_MULTI=-1 autolearn=ham autolearn_force=no This series adds VDEC support for the Rockchip RK3328 SoC which uses the staging rkvdec driver. Testing was performed using both v4l-compliance and (mainline) gstreamer using the fluster framework: $ v4l2-compliance -m0 v4l2-compliance 1.22.1, 64 bits, 64-bit time_t ... Grand Total for rkvdec device /dev/media0: 54, Succeeded: 54, Failed: 0, Warnings: 0 $ python3 fluster.py run -j1 -ts JVT-AVC_V1 -d GStreamer-H.264-V4L2SL-Gst1.0 ... Ran 111/135 tests successfully in 392.885 secs $ python3 fluster.py run -j1 -ts VP9-TEST-VECTORS -d GStreamer-VP9-V4L2SL-Gst1.0 ... Ran 206/303 tests successfully in 1170.120 secs Changes in v3: - Finally fix mistable in dt-binding compatible documentation Changes in v2: - Fix mistake in dt-binding compatible documentation - Remove unused reset nodes from devicetree - Improve some commit messages - Check all dts files against dtbs_check - Collect review tags on unchanged patches Christopher Obbard (3): media: dt-bindings: media: rockchip-vdec: Add RK3328 compatible arm64: dts: rockchip: Rename vdec_mmu node for RK3328 arm64: dts: rockchip: Add vdec support for RK3328 .../bindings/media/rockchip,vdec.yaml | 3 +++ arch/arm64/boot/dts/rockchip/rk3328.dtsi | 22 +++++++++++++++++-- 2 files changed, 23 insertions(+), 2 deletions(-)