From patchwork Mon May 25 08:19:59 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sakari Ailus X-Patchwork-Id: 11568273 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id A15A9912 for ; Mon, 25 May 2020 08:20:47 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9418A2068D for ; Mon, 25 May 2020 08:20:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731384AbgEYIUn (ORCPT ); Mon, 25 May 2020 04:20:43 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44848 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730015AbgEYIUn (ORCPT ); Mon, 25 May 2020 04:20:43 -0400 Received: from hillosipuli.retiisi.org.uk (hillosipuli.retiisi.org.uk [IPv6:2a01:4f9:c010:4572::81:2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0CAB8C03E96D for ; Mon, 25 May 2020 01:20:43 -0700 (PDT) Received: from valkosipuli.localdomain (valkosipuli.retiisi.org.uk [IPv6:2a01:4f9:c010:4572::80:2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by hillosipuli.retiisi.org.uk (Postfix) with ESMTPS id E5FDA634C87 for ; Mon, 25 May 2020 11:19:58 +0300 (EEST) Received: from sailus by valkosipuli.localdomain with local (Exim 4.92) (envelope-from ) id 1jd8L1-0002HY-1q for linux-media@vger.kernel.org; Mon, 25 May 2020 11:19:59 +0300 Date: Mon, 25 May 2020 11:19:59 +0300 From: Sakari Ailus To: linux-media@vger.kernel.org Subject: [GIT PULL v2 for 5.8] More camera sensor, documentation patches Message-ID: <20200525081959.GB8214@valkosipuli.retiisi.org.uk> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Hi Mauro, Here's a set of camera sensor patches and a lone documentation patch for 5.8. In particular, there's a driver for ov2740 and DT support for ov8856. It'd be nice to get this in to 5.8 if it's still possible. Please pull. since v1: - Fixed trailing whitespaces in docs. The following changes since commit 960b2dee908b0fc51cf670841de13b40b44aaaae: media: dt-bindings: phy: phy-rockchip-dphy-rx0: move rockchip dphy rx0 bindings out of staging (2020-05-20 15:22:27 +0200) are available in the Git repository at: git://linuxtv.org/sailus/media_tree.git tags/for-5.8-4.1-signed for you to fetch changes up to 0b62b41321497ad0e11e7162184b5a2c6512bac0: Documentation: media: Refer to mbus format documentation from CSI-2 docs (2020-05-25 11:18:21 +0300) ---------------------------------------------------------------- More camera sensor patches for 5.8 ---------------------------------------------------------------- Bingbu Cao (1): media: i2c: Add ov2740 image sensor driver Dongchun Zhu (1): media: dt-bindings: ov8856: Document YAML bindings Geert Uytterhoeven (1): media: i2c: imx219: Drop and Gustavo A. R. Silva (1): media: s5k5baf: Replace zero-length array with flexible-array Robert Foss (2): media: ov8856: Add devicetree support media: ov8856: Implement sensor module revision identification Sakari Ailus (1): Documentation: media: Refer to mbus format documentation from CSI-2 docs .../devicetree/bindings/media/i2c/ov8856.yaml | 142 +++ Documentation/driver-api/media/csi2.rst | 6 + MAINTAINERS | 12 +- drivers/media/i2c/Kconfig | 13 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/imx219.c | 2 - drivers/media/i2c/ov2740.c | 1016 ++++++++++++++++++++ drivers/media/i2c/ov8856.c | 191 +++- drivers/media/i2c/s5k5baf.c | 2 +- 9 files changed, 1367 insertions(+), 18 deletions(-) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov8856.yaml create mode 100644 drivers/media/i2c/ov2740.c