From patchwork Wed Aug 8 16:55:55 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 10560361 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id ADA4B139A for ; Wed, 8 Aug 2018 16:56:08 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 9AD182A129 for ; Wed, 8 Aug 2018 16:56:08 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8E7E42B1A0; Wed, 8 Aug 2018 16:56: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=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,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 36E312A129 for ; Wed, 8 Aug 2018 16:56:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727177AbeHHTQk (ORCPT ); Wed, 8 Aug 2018 15:16:40 -0400 Received: from perceval.ideasonboard.com ([213.167.242.64]:33470 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727062AbeHHTQk (ORCPT ); Wed, 8 Aug 2018 15:16:40 -0400 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 79867CD; Wed, 8 Aug 2018 18:56:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1533747365; bh=I6Zs+jUNSBO81My+nLFZjr00/tZDuBN+wojlOxvLFdk=; h=From:To:Cc:Subject:Date:From; b=NbL+8nYuRpeL4PNrgkBa1UVz5iT+jTxD9/COhSgmAXgyneGM4cf0YKYdkNnIDnqt/ ek2B9nZ90pd0cQPd0IQAAgmCFUPKv9NSxomu2iF18Cwhf6w7dVVai+b59kYqaEhZsT 9owx9E3hpBnoCmomryVDJck4WTuxBZNijrbzn2+o= From: Kieran Bingham To: linux-media@vger.kernel.org, linux-renesas-soc@vger.kernel.org Cc: Laurent Pinchart , =?utf-8?q?Niklas_S?= =?utf-8?q?=C3=B6derlund?= , Jacopo Mondi , Kieran Bingham , Kieran Bingham Subject: [PATCH v2 0/4] GMSL Drivers Date: Wed, 8 Aug 2018 17:55:55 +0100 Message-Id: <20180808165559.29957-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Sender: linux-renesas-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This series provides an early release of a pair of drivers for GMSL cameras on the R-Car ADAS platforms. These drivers originate from Cogent Embedded, and have been refactored to split the MAX9286 away from the RDACM20 drivers which were once very tightly coupled. This posting is the culmination of ~100 changesets spread across Jacopo, Niklas, Laurent, and myself - thus they contain all of our SoB tags currently. This may be better suited to be Co-Author tags or such, along with the original Cogent developer - I'm not sure. But it has certainly been a considerable effort to get this far. And of course there are still a few TODO's scattered throughout. The previous posting of this driver set required Sakari's VC patchset to function. This post removes this dependancy at the cost of supporting only the first camera on the MAX9286. Reducing this functionality could therefore allow integration into the mainline now, and we can add the VC support in as it arrives. This driver along with the associated platform support for the Renesas R-Car Salvator-X, and Eagle-V3M can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/kbingham/rcar.git gmsl/v2 --- v2: - Add Jacopo's dt-binding patches - Fix MAINTAINERS entries - Add imi vendor prefix to Jacopo's patches - Remove VC support Jacopo Mondi (1): dt-bindings: media: i2c: Add bindings for IMI RDACM20 Kieran Bingham (2): media: i2c: Add MAX9286 driver media: i2c: Add RDACM20 driver Laurent Pinchart (1): dt-bindings: media: i2c: Add bindings for Maxim Integrated MAX9286 .../bindings/media/i2c/imi,rdacm20.txt | 62 + .../bindings/media/i2c/maxim,max9286.txt | 180 +++ .../devicetree/bindings/vendor-prefixes.txt | 1 + MAINTAINERS | 20 + drivers/media/i2c/Kconfig | 22 + drivers/media/i2c/Makefile | 2 + drivers/media/i2c/max9286.c | 1132 +++++++++++++++++ drivers/media/i2c/rdacm20-ov10635.h | 953 ++++++++++++++ drivers/media/i2c/rdacm20.c | 635 +++++++++ 9 files changed, 3007 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/imi,rdacm20.txt create mode 100644 Documentation/devicetree/bindings/media/i2c/maxim,max9286.txt create mode 100644 drivers/media/i2c/max9286.c create mode 100644 drivers/media/i2c/rdacm20-ov10635.h create mode 100644 drivers/media/i2c/rdacm20.c