From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from relay11.mail.gandi.net (relay11.mail.gandi.net [217.70.178.231]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6B7776FA1; Fri, 24 Mar 2023 15:12:07 +0000 (UTC) Received: (Authenticated sender: paul.kocialkowski@bootlin.com) by mail.gandi.net (Postfix) with ESMTPSA id A446A10000C; Fri, 24 Mar 2023 15:11:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=gm1; t=1679670723; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=uEOh0qZu1a2y7GIksVmAUhkUm9kTU1yLtPR9HJ3ihj8=; b=ZokWZYJTGNn9ygnjiqhAgA2WsmQttAsCsQZ9b7QYA3tysT5jhchh0sMl2nn702pbQ2/O60 nYX5hlcdhazB/sVPex+KwLJ5iRrRAY/9e8dWA5Lc3S6oXBGUSO32n8GVFHtD8WQv1I5wt6 7/q8iwSjbX6S7Clm9bj11ZdwL43mljrADDhH30NectMuY7gkiJMg7R23bbULsrefrPQLrT hnQflll/cqzMKsFLgWKAkUJNX007IghfE6XrPI8x/SFqWkfXTzbzo7LqqWoDBytphe/GqK vzDNuIN7x0TYi29ZkUZ1xomVvrRYlnwg8bfMQ4NhxB5aHNkmaeObMR3kQxyRSg== From: Paul Kocialkowski To: linux-arm-kernel@lists.infradead.org, linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org, linux-staging@lists.linux.dev Cc: Paul Kocialkowski , Mauro Carvalho Chehab , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , Laurent Pinchart , "Adam Pigg --to=linux-media @ vger . kernel . org" , Thomas Petazzoni Subject: [PATCH 0/9] media: sun6i-csi/isp: Implement MC I/O support Date: Fri, 24 Mar 2023 16:11:40 +0100 Message-Id: <20230324151149.2777981-1-paul.kocialkowski@bootlin.com> X-Mailer: git-send-email 2.39.2 Precedence: bulk X-Mailing-List: linux-sunxi@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This series is a follow-up to Adam Pigg's "suns6-csi changes to support libcamera" series, with the same purpose. As discussed in the original thread, it takes a different approach and ensures input/output format matching is maintained without regression. New v4l2 format info is also added about unusual formats used by the driver so that no specific logic is required to handle them. The same functionality is also added to the sun6i-isp driver. Paul Kocialkowski (9): media: v4l2: Add RGB565X pixel format to v4l2 format info media: v4l2: Add NV12_16L16 pixel format to v4l2 format info media: v4l2: Introduce compressed pixel encoding definition and helper media: v4l2: Add JPEG pixel format to v4l2 format info media: sun6i-csi: capture: Rework and separate format validation media: sun6i-csi: capture: Implement MC I/O with extended enum_fmt media: sun6i-csi: capture: Implement enum_framesizes media: sun6i-isp: capture: Implement MC I/O with extended enum_fmt media: sun6i-isp: capture: Implement enum_framesizes .../sunxi/sun6i-csi/sun6i_csi_capture.c | 157 ++++++++++++------ drivers/media/v4l2-core/v4l2-common.c | 6 + .../media/sunxi/sun6i-isp/sun6i_isp_capture.c | 35 +++- include/media/v4l2-common.h | 7 + 4 files changed, 154 insertions(+), 51 deletions(-) -- 2.39.2