From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 27814C4360F for ; Mon, 25 Mar 2019 07:56:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 012F42085A for ; Mon, 25 Mar 2019 07:56:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729955AbfCYH4D (ORCPT ); Mon, 25 Mar 2019 03:56:03 -0400 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:55887 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729849AbfCYH4C (ORCPT ); Mon, 25 Mar 2019 03:56:02 -0400 Received: from pps.filterd (m0046668.ppops.net [127.0.0.1]) by mx07-00178001.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x2P7kA4l026013; Mon, 25 Mar 2019 08:55:29 +0100 Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx07-00178001.pphosted.com with ESMTP id 2rddhb9t12-1 (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 25 Mar 2019 08:55:29 +0100 Received: from zeta.dmz-eu.st.com (zeta.dmz-eu.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 6BB6B31; Mon, 25 Mar 2019 07:55:26 +0000 (GMT) Received: from Webmail-eu.st.com (Safex1hubcas22.st.com [10.75.90.92]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 0F2F226D1; Mon, 25 Mar 2019 07:55:26 +0000 (GMT) Received: from SAFEX1HUBCAS21.st.com (10.75.90.45) by Safex1hubcas22.st.com (10.75.90.92) with Microsoft SMTP Server (TLS) id 14.3.361.1; Mon, 25 Mar 2019 08:55:25 +0100 Received: from localhost (10.129.172.100) by Webmail-ga.st.com (10.75.90.48) with Microsoft SMTP Server (TLS) id 14.3.361.1; Mon, 25 Mar 2019 08:55:25 +0100 From: Mickael Guene To: CC: , Mickael Guene , "Mauro Carvalho Chehab" , Arnd Bergmann , , Todor Tomov , "Nicolas Ferre" , Tianshu Qiu , Ben Kao , Greg Kroah-Hartman , Matt Ranostay , Sakari Ailus , Hans Verkuil , "Mark Rutland" , Bingbu Cao , , "David S. Miller" , "Rob Herring" , Rui Miguel Silva , Akinobu Mita , Ricardo Ribalda Delgado , Jacopo Mondi Subject: [PATCH v2 0/2] Add support for MIPID02 CSI-2 to PARALLEL bridge I2C device Date: Mon, 25 Mar 2019 08:55:08 +0100 Message-ID: <1553500510-153260-1-git-send-email-mickael.guene@st.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1552373045-134493-1-git-send-email-mickael.guene@st.com> References: <1552373045-134493-1-git-send-email-mickael.guene@st.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.129.172.100] X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:,, definitions=2019-03-25_05:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, This is the v2 of my MIPID02 series which introduces support of STMicroelectronics MIPID02 CSI-2 to PARALLEL I2C bridge. It allows using a CSI-2 sensor with a PARALLEL interface. Current driver implementation doesn't support CSI-2 second input port usage. It doesn't support also YUV420, RGB565 and RGB444 input formats. Thanks to Sakari for v1 series review. Changes in v2: - Add precision about first CSI-2 port data rate - Document endpoints supported properties - Rename 'mipid02@14' into generic 'csi2rx@14' in example - Merge MAINTAINERS patch 3 into patch 1 and 2 - Fix line too long in Kconfig - Add missing delay after reset release - Various style fixes - Fix mipid02_stream_enable returning no error when mipid02_find_sensor failed Mickael Guene (2): dt-bindings: Document MIPID02 bindings media:st-mipid02: MIPID02 CSI-2 to PARALLEL bridge driver .../bindings/media/i2c/st,st-mipid02.txt | 83 ++ MAINTAINERS | 8 + drivers/media/i2c/Kconfig | 14 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/st-mipid02.c | 877 +++++++++++++++++++++ 5 files changed, 983 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt create mode 100644 drivers/media/i2c/st-mipid02.c -- 2.7.4 From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mickael Guene Subject: [PATCH v2 0/2] Add support for MIPID02 CSI-2 to PARALLEL bridge I2C device Date: Mon, 25 Mar 2019 08:55:08 +0100 Message-ID: <1553500510-153260-1-git-send-email-mickael.guene@st.com> References: <1552373045-134493-1-git-send-email-mickael.guene@st.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: In-Reply-To: <1552373045-134493-1-git-send-email-mickael.guene@st.com> Sender: linux-kernel-owner@vger.kernel.org To: linux-media@vger.kernel.org Cc: hugues.fruchet@st.com, Mickael Guene , Mauro Carvalho Chehab , Arnd Bergmann , devicetree@vger.kernel.org, Todor Tomov , Nicolas Ferre , Tianshu Qiu , Ben Kao , Greg Kroah-Hartman , Matt Ranostay , Sakari Ailus , Hans Verkuil , Mark Rutland , Bingbu Cao , linux-kernel@vger.kernel.org, "David S. Miller" , Rob Herring , Rui Miguel Silva , Akinobu Mita List-Id: devicetree@vger.kernel.org Hi, This is the v2 of my MIPID02 series which introduces support of STMicroelectronics MIPID02 CSI-2 to PARALLEL I2C bridge. It allows using a CSI-2 sensor with a PARALLEL interface. Current driver implementation doesn't support CSI-2 second input port usage. It doesn't support also YUV420, RGB565 and RGB444 input formats. Thanks to Sakari for v1 series review. Changes in v2: - Add precision about first CSI-2 port data rate - Document endpoints supported properties - Rename 'mipid02@14' into generic 'csi2rx@14' in example - Merge MAINTAINERS patch 3 into patch 1 and 2 - Fix line too long in Kconfig - Add missing delay after reset release - Various style fixes - Fix mipid02_stream_enable returning no error when mipid02_find_sensor failed Mickael Guene (2): dt-bindings: Document MIPID02 bindings media:st-mipid02: MIPID02 CSI-2 to PARALLEL bridge driver .../bindings/media/i2c/st,st-mipid02.txt | 83 ++ MAINTAINERS | 8 + drivers/media/i2c/Kconfig | 14 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/st-mipid02.c | 877 +++++++++++++++++++++ 5 files changed, 983 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt create mode 100644 drivers/media/i2c/st-mipid02.c -- 2.7.4