LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Ming Qian <ming.qian@nxp.com>
To: Nicolas Dufresne <nicolas@ndufresne.ca>,
	"mchehab@kernel.org" <mchehab@kernel.org>,
	"shawnguo@kernel.org" <shawnguo@kernel.org>,
	"robh+dt@kernel.org" <robh+dt@kernel.org>,
	"s.hauer@pengutronix.de" <s.hauer@pengutronix.de>
Cc: "hverkuil-cisco@xs4all.nl" <hverkuil-cisco@xs4all.nl>,
	"kernel@pengutronix.de" <kernel@pengutronix.de>,
	"festevam@gmail.com" <festevam@gmail.com>,
	dl-linux-imx <linux-imx@nxp.com>,
	Aisheng Dong <aisheng.dong@nxp.com>,
	"linux-media@vger.kernel.org" <linux-media@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>
Subject: RE: [EXT] Re: [PATCH v5 02/14] media:Add nt8 and nt10 video format.
Date: Wed, 28 Jul 2021 01:41:10 +0000	[thread overview]
Message-ID: <AM6PR04MB6341EF298D521EC922CF1F53E7EA9@AM6PR04MB6341.eurprd04.prod.outlook.com> (raw)
In-Reply-To: <e88f70b1438d4e5b5313aacccb1f369cabe513bc.camel@ndufresne.ca>



> -----Original Message-----
> From: Nicolas Dufresne [mailto:nicolas@ndufresne.ca]
> Sent: Wednesday, July 28, 2021 1:58 AM
> To: Ming Qian <ming.qian@nxp.com>; mchehab@kernel.org;
> shawnguo@kernel.org; robh+dt@kernel.org; s.hauer@pengutronix.de
> Cc: hverkuil-cisco@xs4all.nl; kernel@pengutronix.de; festevam@gmail.com;
> dl-linux-imx <linux-imx@nxp.com>; Aisheng Dong <aisheng.dong@nxp.com>;
> linux-media@vger.kernel.org; linux-kernel@vger.kernel.org;
> devicetree@vger.kernel.org; linux-arm-kernel@lists.infradead.org
> Subject: [EXT] Re: [PATCH v5 02/14] media:Add nt8 and nt10 video format.
> 
> Caution: EXT Email
> 
> Le mardi 27 juillet 2021 à 11:20 +0800, Ming Qian a écrit :
> > NT8 is 8-bit tiled nv12 format used by amphion decoder.
> > NT10 is 10-bit tiled format used by amphion decoder.
> > The tile size is 8x128
> >
> > Signed-off-by: Ming Qian <ming.qian@nxp.com>
> > Signed-off-by: Shijie Qin <shijie.qin@nxp.com>
> > Signed-off-by: Zhou Peng <eagle.zhou@nxp.com>
> > ---
> >  .../userspace-api/media/v4l/pixfmt-reserved.rst   | 15 +++++++++++++++
> >  drivers/media/v4l2-core/v4l2-ioctl.c              |  2 ++
> >  include/uapi/linux/videodev2.h                    |  2 ++
> >  3 files changed, 19 insertions(+)
> >
> > diff --git a/Documentation/userspace-api/media/v4l/pixfmt-reserved.rst
> > b/Documentation/userspace-api/media/v4l/pixfmt-reserved.rst
> > index c9231e18859b..2deae49210a7 100644
> > --- a/Documentation/userspace-api/media/v4l/pixfmt-reserved.rst
> > +++ b/Documentation/userspace-api/media/v4l/pixfmt-reserved.rst
> > @@ -256,3 +256,18 @@ please make a proposal on the linux-media mailing
> list.
> >       of tiles, resulting in 32-aligned resolutions for the luminance plane
> >       and 16-aligned resolutions for the chrominance plane (with 2x2
> >       subsampling).
> > +    * .. _V4L2-PIX-FMT-NT8:
> > +
> > +      - ``V4L2_PIX_FMT_NT8``
> > +      - 'NA12'
> > +      - Two-planar NV12-based format used by the video engine found on
> Amphion decoder,
> > +    with 8x128 tiles for the luminance plane and chrominance plane.
> > +    The number of bytes in one luminance or chrominance row must be
> divisible by 256.
> > +    * .. _V4L2-PIX-FMT-NT10:
> 
> There is a large spread of "vendor specific" format that aren't really specific, or
> complex enough to be worth being marked as vendor format. As per my
> reading of this description, this is linearly layout 8x128 tiled format, with no
> compression or anything (well unless you forgot to mention). As a side effect,
> we should give that format an explicit name (NT8 is cryptic). What about
> V4L2_PIX_FMT_NV12_8L128, my colleague is about to send a proposal in that
> direction. That would be NV12 with plane tiled 8x128 bytes and layout linearly,
> row by row, left to right. We already have cryptic formats like SUNXI, HM12
> that are literally just that, simple tiling, and we endup having to use obscure
> vendor name whenever other HW uses the same.
> 
> (this comment extends to the other formats here)

Hi Nicolas,
   Thanks for your advice, I'll change the format name from NT8 to NV12_8L128

> 
> > +
> > +      - ``V4L2_PIX_FMT_NT10``
> > +      - 'NT12'
> > +      - NT10 is a tiled YUV format with 10-bits per pixel with interleaved
> UV.
> > +    It's used by the video engine found on Amphion decoder,
> > +    with 8x128 tiles for the luminance plane and chrominance plane.
> > +    The number of bytes in one luminance or chrominance row must be
> divisible by 256.
> > diff --git a/drivers/media/v4l2-core/v4l2-ioctl.c
> > b/drivers/media/v4l2-core/v4l2-ioctl.c
> > index eeff398fbdcc..34e6415e5722 100644
> > --- a/drivers/media/v4l2-core/v4l2-ioctl.c
> > +++ b/drivers/media/v4l2-core/v4l2-ioctl.c
> > @@ -1402,6 +1402,8 @@ static void v4l_fill_fmtdesc(struct v4l2_fmtdesc
> *fmt)
> >       case V4L2_META_FMT_UVC:         descr = "UVC Payload Header
> Metadata"; break;
> >       case V4L2_META_FMT_D4XX:        descr = "Intel D4xx UVC
> Metadata"; break;
> >       case V4L2_META_FMT_VIVID:       descr = "Vivid Metadata";
> break;
> > +     case V4L2_PIX_FMT_NT8:          descr = "Amphion Tiled 8x128
> NV12"; break;
> > +     case V4L2_PIX_FMT_NT10:         descr = "Amphion Tiled 8x128
> 10-bit"; break;
> >
> >       default:
> >               /* Compressed formats */ diff --git
> > a/include/uapi/linux/videodev2.h b/include/uapi/linux/videodev2.h
> > index 534eaa4d39bc..4836590a690c 100644
> > --- a/include/uapi/linux/videodev2.h
> > +++ b/include/uapi/linux/videodev2.h
> > @@ -740,6 +740,8 @@ struct v4l2_pix_format {
> >  #define V4L2_PIX_FMT_INZI     v4l2_fourcc('I', 'N', 'Z', 'I') /* Intel Planar
> Greyscale 10-bit and Depth 16-bit */
> >  #define V4L2_PIX_FMT_SUNXI_TILED_NV12 v4l2_fourcc('S', 'T', '1', '2') /*
> Sunxi Tiled NV12 Format */
> >  #define V4L2_PIX_FMT_CNF4     v4l2_fourcc('C', 'N', 'F', '4') /* Intel 4-bit
> packed depth confidence information */
> > +#define V4L2_PIX_FMT_NT8      v4l2_fourcc('N', 'A', '1', '2') /* Amphion
> Tiled 8x128 NV12 Format */
> > +#define V4L2_PIX_FMT_NT10     v4l2_fourcc('N', 'T', '1', '2') /* Amphion
> Tiled 8x128 10 bit Format */
> >
> >  /* 10bit raw bayer packed, 32 bytes for every 25 pixels, last LSB 6 bits
> unused */
> >  #define V4L2_PIX_FMT_IPU3_SBGGR10    v4l2_fourcc('i', 'p', '3', 'b') /*
> IPU3 packed 10-bit BGGR bayer */
> 


  parent reply	other threads:[~2021-07-28  1:41 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-27  3:20 [PATCH v5 00/14] imx8q video decoder/encoder driver Ming Qian
2021-07-27  3:20 ` [PATCH v5 01/14] dt-bindings: media: imx8q: add imx video codec bindings Ming Qian
2021-08-02 19:33   ` Rob Herring
2021-07-27  3:20 ` [PATCH v5 02/14] media:Add nt8 and nt10 video format Ming Qian
2021-07-27 17:58   ` Nicolas Dufresne
2021-07-27 18:03     ` Ezequiel Garcia
2021-07-28  1:41     ` Ming Qian [this message]
2021-07-27  3:20 ` [PATCH v5 03/14] media:Add v4l2 buf flag codec data Ming Qian
2021-07-27  3:20 ` [PATCH v5 04/14] media: imx: imx8q: add imx8q vpu device driver Ming Qian
2021-07-27  3:20 ` [PATCH v5 05/14] media: imx: imx8q: add vpu core driver Ming Qian
2021-07-27  3:20 ` [PATCH v5 06/14] media: imx: imx8q: implement vpu core communication based on mailbox Ming Qian
2021-07-27  3:20 ` [PATCH v5 07/14] media: imx: imx8q: add vpu v4l2 m2m support Ming Qian
2021-07-27  3:20 ` [PATCH v5 08/14] media: imx: imx8q: add v4l2 m2m vpu encoder stateful driver Ming Qian
2021-07-27  3:20 ` [PATCH v5 09/14] media: imx: imx8q: add v4l2 m2m vpu decoder " Ming Qian
2021-07-27  3:20 ` [PATCH v5 10/14] media: imx: imx8q: implement windsor encoder rpc interface Ming Qian
2021-07-27  3:20 ` [PATCH v5 11/14] media: imx: imx8q: implement malone decoder " Ming Qian
2021-07-27  3:20 ` [PATCH v5 12/14] ARM64: dts: freescale: imx8q: add imx vpu codec entries Ming Qian
2021-07-27  3:20 ` [PATCH v5 13/14] firmware: imx: scu-pd: imx8q: add vpu mu resources Ming Qian
2021-07-27  3:20 ` [PATCH v5 14/14] MAINTAINERS: add NXP IMX8Q VPU CODEC V4L2 driver entry Ming Qian
2021-07-28  3:27   ` Joe Perches

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=AM6PR04MB6341EF298D521EC922CF1F53E7EA9@AM6PR04MB6341.eurprd04.prod.outlook.com \
    --to=ming.qian@nxp.com \
    --cc=aisheng.dong@nxp.com \
    --cc=devicetree@vger.kernel.org \
    --cc=festevam@gmail.com \
    --cc=hverkuil-cisco@xs4all.nl \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab@kernel.org \
    --cc=nicolas@ndufresne.ca \
    --cc=robh+dt@kernel.org \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    --subject='RE: [EXT] Re: [PATCH v5 02/14] media:Add nt8 and nt10 video format.' \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).