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 C39C4C43381 for ; Tue, 12 Mar 2019 06:45:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9D9B3214D8 for ; Tue, 12 Mar 2019 06:45:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727300AbfCLGpc (ORCPT ); Tue, 12 Mar 2019 02:45:32 -0400 Received: from mx08-00178001.pphosted.com ([91.207.212.93]:42903 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725848AbfCLGpb (ORCPT ); Tue, 12 Mar 2019 02:45:31 -0400 Received: from pps.filterd (m0046661.ppops.net [127.0.0.1]) by mx08-00178001.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x2C6aKc3013526; Tue, 12 Mar 2019 07:45:07 +0100 Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx08-00178001.pphosted.com with ESMTP id 2r458m87d1-1 (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 12 Mar 2019 07:45:07 +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 CD55F3D; Tue, 12 Mar 2019 06:45:04 +0000 (GMT) Received: from Webmail-eu.st.com (Safex1hubcas21.st.com [10.75.90.44]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 804FA147B; Tue, 12 Mar 2019 06:45:04 +0000 (GMT) Received: from SAFEX1HUBCAS23.st.com (10.75.90.47) by SAFEX1HUBCAS21.st.com (10.75.90.44) with Microsoft SMTP Server (TLS) id 14.3.361.1; Tue, 12 Mar 2019 07:45:04 +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.435.0; Tue, 12 Mar 2019 07:45:03 +0100 From: Mickael Guene To: CC: Mickael Guene , Mauro Carvalho Chehab , Arnd Bergmann , , Mauro Carvalho Chehab , Todor Tomov , "Nicolas Ferre" , Ben Kao , "Greg Kroah-Hartman" , Matt Ranostay , Wolfram Sang , Sakari Ailus , Tianshu Qiu , "Bingbu Cao" , , "David S. Miller" , Rob Herring , Rui Miguel Silva , Akinobu Mita , Hans Verkuil , Mark Rutland , Jason Chen , Jacopo Mondi Subject: [PATCH v1 0/3] Add support for MIPID02 CSI-2 to PARALLEL bridge I2C device Date: Tue, 12 Mar 2019 07:44:02 +0100 Message-ID: <1552373045-134493-1-git-send-email-mickael.guene@st.com> X-Mailer: git-send-email 2.7.4 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-12_05:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patchset 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. Mickael Guene (3): dt-bindings: Document MIPID02 bindings media:st-mipid02: MIPID02 CSI-2 to PARALLEL bridge driver media: MAINTAINERS: add entry for STMicroelectronics MIPID02 media driver .../bindings/media/i2c/st,st-mipid02.txt | 69 ++ MAINTAINERS | 8 + drivers/media/i2c/Kconfig | 13 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/st-mipid02.c | 878 +++++++++++++++++++++ 5 files changed, 969 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