public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Cc: Sakari Ailus <sakari.ailus@linux.intel.com>,
	linux-media@vger.kernel.org, bingbu.cao@intel.com,
	hongju.wang@intel.com, hverkuil@xs4all.nl,
	Andrey Konovalov <andrey.konovalov@linaro.org>,
	Jacopo Mondi <jacopo.mondi@ideasonboard.com>,
	Dmitry Perchanov <dmitry.perchanov@intel.com>
Subject: Re: [PATCH v3 04/10] media: uapi: Add generic serial metadata mbus formats
Date: Wed, 6 Sep 2023 14:31:17 +0300	[thread overview]
Message-ID: <20230906113117.GD17308@pendragon.ideasonboard.com> (raw)
In-Reply-To: <5e9c8fb5-6ae1-5f2c-2c1d-0a948c901dce@ideasonboard.com>

Hi Tomi,

On Wed, Sep 06, 2023 at 11:28:37AM +0300, Tomi Valkeinen wrote:
> On 05/09/2023 19:38, Laurent Pinchart wrote:
> > On Thu, Aug 24, 2023 at 11:26:56AM +0300, Tomi Valkeinen wrote:
> >> On 24/08/2023 10:24, Sakari Ailus wrote:
> >>> On Wed, Aug 23, 2023 at 04:16:13PM +0300, Tomi Valkeinen wrote:
> >>>> On 08/08/2023 10:55, Sakari Ailus wrote:
> >>>>> Add generic serial metadata mbus formats. These formats describe data
> >>>>> width and packing but not the content itself. The reason for specifying
> >>>>> such formats is that the formats as such are fairly device specific but
> >>>>> they are still handled by CSI-2 receiver drivers that should not be aware
> > 
> > Do we want these formats to be CSI-2-specific ?
> >
> >>>>> of device specific formats. What makes generic metadata formats possible
> >>>>> is that these formats are parsed by software only, after capturing the
> >>>>> data to system memory.
> >>>>
> >>>> If I'm not mistaken, the CSI-2 spec doesn't say much about embedded data,
> >>>> except that it may exist. Afaics, in CSI-2, the embedded data is split into
> >>>> "lines", although the amount of data can be different than in the video
> >>>> lines.
> >>>>
> >>>> The CCS specs talks more about embedded data. Some of it is quite odd, like:
> >>>> "The length of the embedded data line shall not exceed the length of the
> >>>> image data line. The embedded data line should have the same length as the
> >>>> image data line.". I think it means the embedded line can be shorter than
> >>>> image line, but not longer.
> >>>
> >>> That's what it means, yes. The CCS also has means to obtain the actual
> >>> length --- frame format descriptors.
> >>>
> >>>> CCS also says that an embedded line should use 0x07 as padding at the end of
> >>>> the line, if there's less data than the image line.
> >>>>
> >>>> CCS also talks about how the embedded data would be packed, and in some
> >>>> cases that packing would be the same as for pixel data.
> >>>
> >>> In fact the packing is the same as for pixel data: the CSI-2 does not
> >>> really differentiate there.
> >>
> >> If I understand the CCS spec right, the packing is not the same as for
> >> the pixel data. You can have RAW12 pixel data but 8-byte embedded data.
> >> But if you meant that the different packing style options are the same
> >> for pixel and embedded data, yes.
> > 
> > The idea is to allow CSI-2 receivers to unpack embedded data the same
> > way as pixel data at the hardware level, and guarantee that no embedded
> 
> Yes, but my comment was to Sakari's "the packing is the same as for 
> pixel data" comment. Afaics, there's nothing in CSI-2 or CCS that says 
> the packing is the same for pixel data and embedded data.
> 
> In fact, the CSS says "By default, top-embedded data shall use the same 
> data packing as the Visible pixel data with one embedded data byte per 
> pixel", implying that it would not always be the case. It continues that 
> for RAW16/RAW20/RAW24 pixels the embedded data could be sent with 
> RAW8/RAW10/RAW12.

The spec if a bit ambiguous :-S "by default" implies that something else
could be done, but it's not clear what the other options are.

> That was just for top-embedded data, and I couldn't right away see 
> mention of other embedded data.

The specification also mentions PDAF data for instance.

> > data significant byte gets split across multiple samples. When unpacking
> > RAW10 pixel data, the CSI-2 receiver will take 5 bytes and output 4
> > samples on a 10-bit wide bus. For embedded data, it can conceptually do
> > that same, and output embedded data with one byte per sample, aligned on
> > the MSB of the 10-bit bus. However, in practice, I think the CSI-2
> > receiver will simply receive the bytes and send them to the DMA engine,
> > without unpacking and then repacking.
> 
> At least TI CAL CSI-2 RX can extract the data from the CSI-2 stream 
> using different unpacking for pixel and embedded data, and then 
> (optionally) pack it in different ways when writing to memory.

Does this mean that the CAL could take RAW10 embedded data and drop the
padding bytes when writing to memory ?

> > This can also be viewed as away to allow CSI-2 transmitters to serialize
> > pixel data and embedded data the same way. For a RAW10 sensor, for
> > instance, the embedded data would be generated on an internal 10-bit
> > wide bus, aligned to the MSB, and would go through CSI-2 packing the
> > same way that pixels do. That's nice, but it's internal to the sensor,
> > so we don't need to expose it to userspace on that side.
> > 
> >>>> But I don't think these formats are generic. They're defined in CCS, so
> >>>> shouldn't the format be, e.g., MEDIA_BUS_FMT_META_CCS_RAW_12 or such?
> >>>
> >>> The reason for having generic definitions is that we do not need receiver
> >>> drivers to be aware of formats that are specific to another driver.
> >>
> >> Yes, I agree with that, and that's not my point here. But "generic"
> >> doesn't mean the definitions are not for some particular bus or
> >> standard, "generic" just means that it doesn't specify the content, only
> >> the packing.
> >>
> >> My point is that these packings seem to be specific to CCS. While
> >> non-CCS compliant sensors may use the same packing, the packing itself
> >> is still a "CCS packing".
> > 
> > Agreed.
> > 
> >> So why not call them that? The 8-bit format is
> >> fully generic, whereas the rest are CCS packings, as defined in the CCS
> >> spec (the CCS spec also specifies the content, but here were only using
> >> the CCS packing).
> > 
> > I think an additional question is whether we actually need multiple
> > media bus codes here. Are there CSI-2 receivers, or other downstream
> > blocks, that will need to be configured differently to receive embedded
> > data from a CCS (in the sense of using CCS packing, not being fully
> > CCS-compliant) RAW10 sensor compared to a RAW12 sensor ? Or will the
> > CSI-2 receiver just send bytes to memory without caring ? In the latter
> > case, it will be the application that will need to know how the data is
> > packed to ignore one byte out of three for RAW12 and out of five for
> > RAW10.
> 
> I would presume all receivers can operate in "just write what you 
> receive" mode, in which case the packing doesn't matter as you say, but 
> then again, I think it's safer to have mbus codes for the different 
> packings.
> 
> >> Maybe they shouldn't be called "generic", but... umm... Content unaware
> >> metadata formats... doesn't sound very good =).
> >>
> >> Also, I'm a bit confused about CSI-2 pixel and embedded data formats and
> >> how we handle them.
> >>
> >> For MEDIA_BUS_FMT_SBGGR10_1X10, we define that the data contains 10 bits
> >> per pixel, from bit 0 to 9. But CSI-2, for RAW10, actually sends it
> >> differently, with the higher bits first, and the lowest bits in the
> >> fourth byte. So that CSI-2 packing is implicit, kind of hidden here.
> > 
> > Usage of MEDIA_BUS_FMT_SBGGR10_1X10 for CSI-2 is a historical decision
> > (or mistake, depending on how you look at it). It doesn't match what
> > actually happens on the bus.
> > 
> >> Which is probably fine, as we're really only interested in the unpacked
> >> data, not the CSI-2 packed. And when writing this data to memory, the
> >> DMA engine can write it either as is, or unpack each pixel to a 16-bit
> >> container.
> >>
> >> For MEDIA_BUS_FMT_META_10, we define it similarly to
> >> MEDIA_BUS_FMT_SBGGR10_1X10, except the lowest 2 bits are marked as
> >> padding bits. And, I think, MEDIA_BUS_FMT_META_10 implies RAW10 CSI-2
> >> format.
> > 
> > That's how I understand it too
> > 
> >> However, when writing the data to memory, we don't want either
> >> of the modes used in the above pixel data case, but rather we want to
> >> write the data as it is in the CSI-2 bus. So, the DMA engine can either
> >> reverse the RAW10 unpacking to get the wanted output format, or
> >> alternatively the CSI-2 receiver could instead use RAW8 mode to avoid
> >> any unpacking.
> > 
> > I don't think the DMA engine would "reverse the RAW10 packing" here. It
> > will write bytes as they arrive (or more likely, a set of bytes at a
> > time to operate on bursts). The other option would be for the DMA engine
> > to drop the padding bytes, but I don't know of any CSI-2 receiver that
> > can do that.
> 
> Well, for pixel data, TI CAL has the following options when writing to 
> memory for, e.g. RAW12:
> - RAW12 MIPI (a separate byte for lsbs)
> - RAW12 Linear (12 consecutive bits per pixel)
> - RAW16 (12 consecutive bits per pixel in a 16bit container)
> 
> Of these, only the RAW12 MIPI makes sense for embedded data (actually 
> the whole processing block can be and should be skipped for embedded 
> data, so it's more like CAL is receiving RAW8 and writing out RAW8).
> 
> Or, if it would be possible, skipping the padding bytes. Which looks 
> like it is almost possible with TI CAL, but not quite: it can write with 
> RAW8, but afaics that always takes the lowest bits of the 12-bit pixel, 
> but here we'd like it to take the highest bits.

That's a weird one, even for image data, dropping the MSBs doesn't make
much sense, while writing the RAW8 MSB when receiving RAW10 or RAW12
would be useful.

> Anyway, I don't think there's any issue here, I was just writing down my 
> thoughts. As long as we have good mbus formats which describe the 
> packing fully, and V4L2 formats which describe the memory formats, we 
> should be fine.
> 
> >> Does the above make any sense? I'm a bit confused about all the packings
> >> and unpackings =). Does MEDIA_BUS_FMT_META_10 mean that the CSI-2 TX
> >> uses RAW10 CSI-2 packing, but the receiver uses RAW8 CSI-2 packing?
> >>
> >>> If there is a need for new generic formats that do not match this, we can
> >>> always add more. But the point is: drivers for devices that do not produce
> >>> the data should never deal with (device) specific formats.
> >>>
> >>> What comes to CSI-2 and these formats --- on parallel buses you might have
> >>> the data aligned to the least significant bits instead. But is there a need
> >>> to transport such data on parallel buses, at least so it would be expressed
> >>> in mbus formats?
> >>
> >> I have a parallel sensor that sends embedded data. I'll have a look how
> >> it organizes the data.

-- 
Regards,

Laurent Pinchart

  reply	other threads:[~2023-09-06 11:31 UTC|newest]

Thread overview: 84+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-08  7:55 [PATCH v3 00/10] Generic line based metadata support, internal pads Sakari Ailus
2023-08-08  7:55 ` [PATCH v3 01/10] media: Documentation: Align numbered list Sakari Ailus
2023-09-05 13:06   ` Laurent Pinchart
2023-09-06 12:43     ` Sakari Ailus
2023-09-06 12:50       ` Laurent Pinchart
2023-09-07 10:58         ` Sakari Ailus
2023-08-08  7:55 ` [PATCH v3 02/10] media: mc: Check pad flag validity Sakari Ailus
2023-08-10 13:54   ` Jacopo Mondi
2023-08-14  8:49     ` Sakari Ailus
2023-09-05 13:13       ` Laurent Pinchart
2023-08-08  7:55 ` [PATCH v3 03/10] media: mc: Add INTERNAL pad flag Sakari Ailus
2023-08-08  8:15   ` Hans Verkuil
2023-08-11 11:48     ` Sakari Ailus
2023-08-10 14:12   ` Jacopo Mondi
2023-08-11  9:09     ` Sakari Ailus
2023-09-05 13:50   ` Laurent Pinchart
2023-08-08  7:55 ` [PATCH v3 04/10] media: uapi: Add generic serial metadata mbus formats Sakari Ailus
2023-08-23 13:16   ` Tomi Valkeinen
2023-08-24  7:24     ` Sakari Ailus
2023-08-24  8:26       ` Tomi Valkeinen
2023-09-05 16:38         ` Laurent Pinchart
2023-09-06  8:28           ` Tomi Valkeinen
2023-09-06 11:31             ` Laurent Pinchart [this message]
2023-09-06 11:39               ` Tomi Valkeinen
2023-09-06 12:34               ` Sakari Ailus
2023-09-06 12:50                 ` Laurent Pinchart
2023-09-07 11:04                   ` Sakari Ailus
2023-08-08  7:55 ` [PATCH v3 05/10] media: uapi: Document which mbus format fields are valid for metadata Sakari Ailus
2023-08-10 15:19   ` Jacopo Mondi
2023-08-14 10:23     ` Sakari Ailus
2023-09-05 16:44       ` Laurent Pinchart
2023-08-08  7:55 ` [PATCH v3 06/10] media: uapi: Add a macro to tell whether an mbus code is metadata Sakari Ailus
2023-08-08  8:14   ` Hans Verkuil
2023-08-08  8:16     ` Sakari Ailus
2023-09-05  9:47   ` Tomi Valkeinen
2023-09-05 10:37     ` Sakari Ailus
2023-09-05 17:06       ` Laurent Pinchart
2023-09-06 11:33         ` Sakari Ailus
2023-09-06 12:23           ` Laurent Pinchart
2023-09-06 13:06             ` Sakari Ailus
2023-09-07  8:20               ` Sakari Ailus
2023-08-08  7:55 ` [PATCH v3 07/10] media: uapi: Add generic 8-bit metadata format definitions Sakari Ailus
2023-08-08  8:22   ` Hans Verkuil
2023-08-11  6:31     ` Jacopo Mondi
2023-08-11  9:11       ` Sakari Ailus
2023-08-11  9:43         ` Jacopo Mondi
2023-08-11 10:55           ` Sakari Ailus
2023-09-05 16:47         ` Laurent Pinchart
2023-09-06 11:36           ` Sakari Ailus
2023-09-06 12:36             ` Laurent Pinchart
2023-09-06 13:25               ` Sakari Ailus
2023-09-06 13:30                 ` Laurent Pinchart
2023-09-06 13:39                   ` Sakari Ailus
2023-09-06 13:47                     ` Laurent Pinchart
2023-09-07  8:06                       ` Sakari Ailus
2023-09-07  8:16                         ` Sakari Ailus
2023-08-11 11:12     ` Sakari Ailus
2023-09-05 16:55   ` Laurent Pinchart
2023-09-06 11:56     ` Sakari Ailus
2023-09-06 13:07       ` Laurent Pinchart
2023-09-22  8:50         ` Sakari Ailus
2023-09-22 10:25           ` Laurent Pinchart
2023-09-07  8:36       ` Sakari Ailus
2023-09-07  8:47         ` Laurent Pinchart
2023-09-07  9:49           ` Sakari Ailus
2023-08-08  7:55 ` [PATCH v3 08/10] media: v4l: Support line-based metadata capture Sakari Ailus
2023-08-10 15:24   ` Jacopo Mondi
2023-08-14 11:02     ` Sakari Ailus
2023-09-05 17:15       ` Laurent Pinchart
2023-09-06  7:21         ` Jacopo Mondi
2023-09-06 12:24           ` Sakari Ailus
2023-09-06 13:20             ` Laurent Pinchart
2023-09-22  8:47               ` Sakari Ailus
2023-09-07  8:48             ` Sakari Ailus
2023-08-08  7:55 ` [PATCH v3 09/10] media: Add media bus codes for MIPI CCS embedded data Sakari Ailus
2023-09-05 17:25   ` Laurent Pinchart
2023-09-06 13:03     ` Sakari Ailus
2023-09-06 13:15       ` Laurent Pinchart
2023-09-07 11:10         ` Sakari Ailus
2023-08-08  7:55 ` [PATCH v3 10/10] media: uapi: v4l: Document source routes Sakari Ailus
2023-08-08  8:55   ` Hans Verkuil
2023-08-11 10:44     ` Sakari Ailus
2023-09-05 23:17       ` Laurent Pinchart
2023-09-06 12:11         ` Sakari Ailus

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=20230906113117.GD17308@pendragon.ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=andrey.konovalov@linaro.org \
    --cc=bingbu.cao@intel.com \
    --cc=dmitry.perchanov@intel.com \
    --cc=hongju.wang@intel.com \
    --cc=hverkuil@xs4all.nl \
    --cc=jacopo.mondi@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=sakari.ailus@linux.intel.com \
    --cc=tomi.valkeinen@ideasonboard.com \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox