From patchwork Tue Jul 27 14:57:41 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ezequiel Garcia X-Patchwork-Id: 76054 Received: from vger.kernel.org ([23.128.96.18]) by www.linuxtv.org with esmtp (Exim 4.92) (envelope-from ) id 1m8OWs-007eBu-TM; Tue, 27 Jul 2021 14:57:59 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232344AbhG0O55 (ORCPT + 1 other); Tue, 27 Jul 2021 10:57:57 -0400 Received: from bhuna.collabora.co.uk ([46.235.227.227]:53124 "EHLO bhuna.collabora.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231825AbhG0O54 (ORCPT ); Tue, 27 Jul 2021 10:57:56 -0400 Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: ezequiel) with ESMTPSA id 71F221F432BB From: Ezequiel Garcia To: linux-media@vger.kernel.org Cc: Hans Verkuil , Paul Kocialkowski , Yong Deng , Laurent Pinchart , Nicolas Dufresne , Ezequiel Garcia Subject: [PATCH v2 0/4] media: visiting YUV tiled formats Date: Tue, 27 Jul 2021 11:57:41 -0300 Message-Id: <20210727145745.25203-1-ezequiel@collabora.com> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-LSpam-Score: -2.4 (--) X-LSpam-Report: No, score=-2.4 required=5.0 tests=BAYES_00=-1.9,HEADER_FROM_DIFFERENT_DOMAINS=0.5,MAILING_LIST_MULTI=-1,RCVD_IN_DNSWL_NONE=-0.0001,UNPARSEABLE_RELAY=0.001 autolearn=ham autolearn_force=no This series started with the addition of the V4L2_PIX_FMT_NV12_4L4 pixel format. Researching about tiled formats, we realized that V4L2_PIX_FMT_SUNXI_TILED_NV12 is actually a simple 32x32 linear tiled NV12, and also that so-called "HM12" is really a 16x16 linear tiled NV12. Therefore, I decided to tackle the big picture as much as possible and aim at cleaning all the NV12 tiled pixel formats. As you can expect, the current pixel formats are kept for userspace compatibility, but considered legacy in kernel code and deprecated. The new nomenclatures for pixel formats is already being used in GStreamer, it's cleaner and less surprising. v2: * Also take care of HM12. * Fix missing description for NV12_4L4. * Clean V4L2_PIX_FMT_NV12MT further. Ezequiel Garcia (4): media: Rename V4L2_PIX_FMT_SUNXI_TILED_NV12 to V4L2_PIX_FMT_NV12_32L32 media: Rename V4L2_PIX_FMT_HM12 to V4L2_PIX_FMT_NV12_16L16 media: Add NV12_4L4 tiled format media: Clean V4L2_PIX_FMT_NV12MT documentation Documentation/admin-guide/media/ivtv.rst | 2 +- .../media/drivers/cx2341x-uapi.rst | 8 ++- .../media/v4l/pixfmt-reserved.rst | 22 -------- .../media/v4l/pixfmt-yuv-planar.rst | 50 +++++++++++++------ drivers/media/pci/cx18/cx18-ioctl.c | 4 +- drivers/media/pci/cx18/cx18-streams.c | 8 +-- drivers/media/pci/ivtv/ivtv-ioctl.c | 8 +-- .../platform/sunxi/sun6i-csi/sun6i_csi.c | 10 ++-- .../platform/sunxi/sun6i-csi/sun6i_csi.h | 2 +- .../platform/sunxi/sun6i-csi/sun6i_video.c | 2 +- drivers/media/v4l2-core/v4l2-common.c | 3 ++ drivers/media/v4l2-core/v4l2-ioctl.c | 5 +- drivers/staging/media/sunxi/cedrus/cedrus.c | 2 +- .../staging/media/sunxi/cedrus/cedrus_hw.c | 2 +- .../staging/media/sunxi/cedrus/cedrus_video.c | 4 +- include/uapi/linux/videodev2.h | 19 +++++-- 16 files changed, 81 insertions(+), 70 deletions(-)