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.9 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT autolearn=no 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 5E7ACC10DCE for ; Thu, 12 Mar 2020 23:47:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 28B1E206FA for ; Thu, 12 Mar 2020 23:47:34 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=ideasonboard.com header.i=@ideasonboard.com header.b="N0D9+ehi" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726910AbgCLXrd (ORCPT ); Thu, 12 Mar 2020 19:47:33 -0400 Received: from perceval.ideasonboard.com ([213.167.242.64]:34468 "EHLO perceval.ideasonboard.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726772AbgCLXrd (ORCPT ); Thu, 12 Mar 2020 19:47:33 -0400 Received: from pendragon.bb.dnainternet.fi (81-175-216-236.bb.dnainternet.fi [81.175.216.236]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 14A165F; Fri, 13 Mar 2020 00:47:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1584056851; bh=VQo6wr03XF8jK1LbwDfisrdHhwf+JXe/C4OLZ+So+Pc=; h=From:To:Cc:Subject:Date:From; b=N0D9+ehiNbGXHJA5HSzpo6cbomqk3xD6vQt/MFxFC30gnf/abxFXekgx/SqrlVLo9 up0jTocfedyclOanXvrZYo1jkbNKNyojT5tBG+bYI5YCK9k2MqyyV2bX692UjLKO5y Mtd1rOAIo6l191D3hMh5DZ2yqGp01iJbLyJAGu2I= From: Laurent Pinchart To: linux-media@vger.kernel.org Cc: Steve Longerbeam , Philipp Zabel , Rui Miguel Silva Subject: [PATCH 00/14] media: imx: Miscellaneous fixes for i.MX7 CSI-2 receiver Date: Fri, 13 Mar 2020 01:47:08 +0200 Message-Id: <20200312234722.23483-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Hello, This patch series completes (for now :-)) my rework of the CSI-2 receiver found in the i.MX7 SoCs. Patches 01/14 and 02/14 have already been tested and acked. The next four patches (03/14 to 06/14) fix format handling by adding missing formats and removing unsupported formats, and patches 07/14 to 09/14 then clean up and fix image width alignment handling. The next three patches (10/14 to 12/14) are again miscellaneous cleanups. Patch 13/14 removes usage of the only imx-media-utils helper used in this driver as the helper isn't compatible with the i.MX7 CSI-2 receiver formats. Patch 14/14 finally implements the subdev .enum_mbus_code() pad operation to allow enumeration of media bus codes from userspace. The patches have been tested on an i.MX7Q with a 10-bit greyscale MIPI CSI-2 sensor. Laurent Pinchart (14): media: imx: imx7-mipi-csis: Cleanup and fix subdev pad format handling media: imx: imx7-mipi-csis: Centralize initialization of pad formats media: imx: imx7-mipi-csis: Add missing RAW formats media: imx: imx7-mipi-csis: Expose correct YUV formats media: imx: imx7-mipi-csis: Fix MEDIA_BUS_FMT_UYVY8_2X8 data alignment media: imx: imx7-mipi-csis: Add MEDIA_BUS_FMT_UYVY10_2X10 support media: imx: imx7-mipi-csis: Rename data_alignment field to width media: imx: imx7-mipi-csis: Align image width based on format media: imx: imx7-mipi-csis: Never set MIPI_CSIS_ISPCFG_ALIGN_32BIT media: imx: imx7-mipi-csis: Align macro definitions media: imx: imx7-mipi-csis: Remove link setup on source pad media: imx: imx7-mipi-csis: Cleanup includes media: imx: imx7-mipi-csis: Don't use imx-media-utils helpers media: imx: imx7-mipi-csis: Implement the .enum_mbus_code() operation drivers/staging/media/imx/imx7-mipi-csis.c | 446 +++++++++++++-------- 1 file changed, 274 insertions(+), 172 deletions(-) -- Regards, Laurent Pinchart