From patchwork Thu Jun 15 08:36:29 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sakari Ailus X-Patchwork-Id: 9788379 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id C29D3602CB for ; Thu, 15 Jun 2017 08:37:08 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B0D87284B0 for ; Thu, 15 Jun 2017 08:37:08 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A58032853A; Thu, 15 Jun 2017 08:37:08 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 39B86284B0 for ; Thu, 15 Jun 2017 08:37:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752072AbdFOIhE (ORCPT ); Thu, 15 Jun 2017 04:37:04 -0400 Received: from nblzone-211-213.nblnetworks.fi ([83.145.211.213]:34250 "EHLO hillosipuli.retiisi.org.uk" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750784AbdFOIhD (ORCPT ); Thu, 15 Jun 2017 04:37:03 -0400 Received: from valkosipuli.retiisi.org.uk (valkosipuli.retiisi.org.uk [IPv6:2001:1bc8:1a6:d3d5::80:2]) by hillosipuli.retiisi.org.uk (Postfix) with ESMTP id BFDA3600A3 for ; Thu, 15 Jun 2017 11:36:59 +0300 (EEST) Received: by valkosipuli.retiisi.org.uk (Postfix, from userid 1000) id 97B7E203D7; Thu, 15 Jun 2017 11:36:29 +0300 (EEST) Date: Thu, 15 Jun 2017 11:36:29 +0300 From: Sakari Ailus To: linux-media@vger.kernel.org Subject: [GIT PULL FOR v4.13] Add ov13858 and dw9714 drivers, digital gain control Message-ID: <20170615083629.GZ12407@valkosipuli.retiisi.org.uk> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi Mauro, Here are new drivers for the ov13858 sensor and the dw9714 lens voice coil driver, as well as the new V4L2_CID_DIGITAL_GAIN control. A small cleanup for the as3645a driver is included as well. Compared to the patches reviewed on the list, I've added MAINTAINERS entries to the drivers: Please pull. The following changes since commit acec3630155763c170c7ae6508cf973355464508: [media] s3c-camif: fix arguments position in a function call (2017-06-13 14:21:24 -0300) are available in the git repository at: ssh://linuxtv.org/git/sailus/media_tree.git for-4.13 for you to fetch changes up to d092459a1bd864a24589cee6ed8de8bb9081797a: as3645a: Join string literals back (2017-06-15 11:16:48 +0300) ---------------------------------------------------------------- Andy Shevchenko (1): as3645a: Join string literals back Hyungwoo Yang (1): ov13858: add support for OV13858 sensor Rajmohan Mani (1): dw9714: Initial driver for dw9714 VCM Sakari Ailus (2): v4l: ctrls: Add a control for digital gain v4l: controls: Improve documentation for V4L2_CID_GAIN Documentation/media/uapi/v4l/control.rst | 6 + Documentation/media/uapi/v4l/extended-controls.rst | 7 + MAINTAINERS | 14 + drivers/media/i2c/Kconfig | 18 + drivers/media/i2c/Makefile | 2 + drivers/media/i2c/as3645a.c | 12 +- drivers/media/i2c/dw9714.c | 291 ++++ drivers/media/i2c/ov13858.c | 1816 ++++++++++++++++++++ drivers/media/v4l2-core/v4l2-ctrls.c | 1 + include/uapi/linux/v4l2-controls.h | 2 +- 10 files changed, 2162 insertions(+), 7 deletions(-) create mode 100644 drivers/media/i2c/dw9714.c create mode 100644 drivers/media/i2c/ov13858.c diff --git a/MAINTAINERS b/MAINTAINERS index 053c3bd..7b5c99d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4692,6 +4692,13 @@ S: Maintained F: drivers/media/usb/dvb-usb-v2/dvb_usb* F: drivers/media/usb/dvb-usb-v2/usb_urb.c +DONGWOON DW9714 LENS VOICE COIL DRIVER +M: Sakari Ailus +L: linux-media@vger.kernel.org +T: git git://linuxtv.org/media_tree.git +S: Maintained +F: drivers/media/i2c/dw9714.c + DYNAMIC DEBUG M: Jason Baron S: Maintained @@ -9434,6 +9441,13 @@ S: Maintained F: drivers/media/i2c/ov7670.c F: Documentation/devicetree/bindings/media/i2c/ov7670.txt +OMNIVISION OV13858 SENSOR DRIVER +M: Sakari Ailus +L: linux-media@vger.kernel.org +T: git git://linuxtv.org/media_tree.git +S: Maintained +F: drivers/media/i2c/ov13858.c + ONENAND FLASH DRIVER M: Kyungmin Park L: linux-mtd@lists.infradead.org