From patchwork Fri Nov 2 15:47:19 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 992409 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=devicetree-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ideasonboard.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="TT4N49T7"; dkim-atps=neutral Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 42mmgb0xwTzB4Wx for ; Sat, 3 Nov 2018 02:48:11 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727704AbeKCAzC (ORCPT ); Fri, 2 Nov 2018 20:55:02 -0400 Received: from perceval.ideasonboard.com ([213.167.242.64]:47862 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726098AbeKCAzB (ORCPT ); Fri, 2 Nov 2018 20:55:01 -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 F22101263; Fri, 2 Nov 2018 16:47:27 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1541173648; bh=Ms4hjbvTv+PKmxqfSMMcssF//6lL6ZGceG49gfjDyZ4=; h=From:To:Cc:Subject:Date:From; b=TT4N49T7IorZxhS/RhRbT6ylhfvuJGpYSxuLRWZlZthuDLMyAHCfnrQk/bwYYYy+V gktOFAcQwczk6wgKh/Obc2P13tgtxsLgtJEppSsVB/DtJBwgLqnW2oKc1NzceXSFrx AfwHfICCWyQ09zWbVafMf3SbjcflVfJm3+FKR8g4= From: Kieran Bingham To: linux-renesas-soc@vger.kernel.org, linux-media@vger.kernel.org, devicetree@vger.kernel.org, sakari.ailus@iki.fi Cc: =?utf-8?q?Niklas_S=C3=B6derlund?= , Jacopo Mondi , Laurent Pinchart , Kieran Bingham , linux-kernel@vger.kernel.org, Kieran Bingham Subject: [PATCH v4 0/4] MAX9286 GMSL Support Date: Fri, 2 Nov 2018 15:47:19 +0000 Message-Id: <20181102154723.23662-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org This series provides 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. This series makes use of Sakari's VC developments and is based upon the most recent rebase of this series by Niklas at: git://git.ragnatech.se/linux/ v4l2/mux Thanks to the VC developments, this driver is capable of streaming from all 4 input ports simultaneously through the RCar-VIN capture system. This driver along with the associated platform support for the Renesas R-Car Salvator-X, and the Eagle-V3M can be found at: git://git.kernel.org/pub/scm/linux/kernel/git/kbingham/rcar.git gmsl/v4 Further anticipated work in this area includes supporting the RDACM21 camera, at which point the RDACM20 will be adapted to separate out the MAX9271 and the OV10635 sensor components. 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 | 65 + .../bindings/media/i2c/maxim,max9286.txt | 182 +++ .../devicetree/bindings/vendor-prefixes.txt | 1 + MAINTAINERS | 20 + drivers/media/i2c/Kconfig | 22 + drivers/media/i2c/Makefile | 2 + drivers/media/i2c/max9286.c | 1189 +++++++++++++++++ drivers/media/i2c/rdacm20-ov10635.h | 953 +++++++++++++ drivers/media/i2c/rdacm20.c | 635 +++++++++ 9 files changed, 3069 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