<!-- Some styling for better description lists --><style type='text/css'>dt { font-weight: bold;float: left;display:inline;margin-right: 1em} dd { display:block; margin-left: 2em}</style>

   LazyGrizzly: Hi all, I want to add non existing bayer 12 bit packed formats to v4l2 and uvc since the existing ones are not in the order the devices require. since SBGGR12P is already taken i was wondering what naming scheme would be prefered. Could anyone help?
   pinchartl: <u>LazyGrizzly</u>: could you describe your format and how it differs from SBGGR12P ?
   angelo_ts: Hi, looking for a sample of vidioc_g_chip_ident implementation. nxp uses it in an out-of-tree implementation but seenms not properly implementyed
   <br> couldn't find any linux driver using it
   <br> ok found something in a more recent kernel.
   pinchartl: <u>angelo_ts</u>: why do you need to implement that ?
   LazyGrizzly: <u>pinchartl</u>: the current packed is [pix0_hi][pix0_lo | pix1_lo][pix1_hi] whereas mine is [pix0_lo][pix0_hi | pix1_hi][pix1_lo]
   angelo_ts: pinchartl, sry, seen now. No problem, it was imx-nxp implementing that, and in a wrong way
   pinchartl: <u>LazyGrizzly</u>: unless I'm mistaken SBGGR12P is defined as B00high, G01high, G01low | B00low, ...
   <br> so two MSB bytes followed by a "shared" byte (containing the LSBs of two pixels)
   <br> does your format have the "shared" byte between the two LSB bytes, not after them ?
   LazyGrizzly: <u>pinchartl</u>: yes it's between
   pinchartl: endless combinations :-/
   LazyGrizzly: aye^^
   pinchartl: one option could be SBGGR12P_LE as your format stores the LSB first for the first pixel
   <br> but it stores the MSB first for the second pixel
   <br> maybe SBGGR12P_ME for mixed endian ?
   <br> I don't think there's a really good name, you need to be a bit creative and find something acceptable :-)
   LazyGrizzly: ok, i'd take the ME
   <br> Would the name 'Bayer 12-bit ME packed (SBGGR12P)' be ok?
   pinchartl: I'd spell it out (mixed-endian packed)
   <br> fine by me, other people may bikeshed though
   LazyGrizzly: no problem, just wanted it to be short in case there are any restrictions concerning the name field i am not aware of
   pinchartl: ah yes it's probably limited
   <br> 32 or 64 characters
   <br> 32 characters
   <br> even 'Bayer 12-bit ME packed (SBGGR12P)' is too long
   <br> 'Bayer 12-bit ME packed (BGGR)' is one option
   <br> nobody will know what ME means though
   <br> <u>sailus</u>: hverkuil: ^^
   LazyGrizzly: which also brings up the question: should i try add documentation or just keep my hands off
   pinchartl: a new format won't be accepted without documentation
   LazyGrizzly: i was afraid you'd say that...
   pinchartl: sorry :-)
   <br> it shouldn't be very difficult
   LazyGrizzly: once you know where the documents lie, no is manageable
   hverkuil: I'd probably call it SBGGR12P_ALT
   <br> it's next to impossible to come up with reasonable understandable names.
   sailus: LazyGrizzly, pinchartl: Where is this format being used?
   <br> The existing packed raw formats are used with CSI-2, for instance.
   LazyGrizzly: <u>sailus</u>: industrial usb3 camera
   sailus: While this could end up being used on just this hardware, it's not far off from what's already there.
   pinchartl: <u>sailus</u>: this is a pixel format, not a bus format
   sailus: The same packed formats exist as pixel formats.
   <br> On the bus there's no need to differentiate them.
   <br> There are some a bit more special formats for IPU3 and they are labelled as such.
   <br> I think calling it "mixed endian" seems fine.
   <br> If people really need to know, they'll need to read the documentation. :-)
   ***: chron0 has quit IRC (Ping timeout: 245 seconds)
   LazyGrizzly: ...
   <br> my firmware developer got confused and mixed something up
   <br> its actually [pix0_lo][pix0_hi | pix1_lo][pix1_hi] so a continues stream ob bytes with no separation of high and low bits
   pinchartl: <u>LazyGrizzly</u>: any chance your firmware developper could make it match the existing SBGGR12P ? :-)
   LazyGrizzly: <u>pinchartl</u>: and i quote: "HA! no."
   <br> since there is no mixing would SBGGR12SP for Bayer 12-bit simple packed be ok?
   sailus: How would it be more simple than the other one?
   LazyGrizzly: there is no separation of high and low bits whereas the existing packed format splits them
   sailus: Thinking about this, it's unlikely that this format would be seen in a lot of places, possibly only for just this piece of hardware.
   <br> How about naming it accordingly, as was done for IPU3 specific formats?
   LazyGrizzly: i am open for suggestions. i just want to see it included in the driver
   <br> with ipu3 you mean V4L2_PIX_FMT_IPU3_SGRBG10 ? there is a camera on my table that needs mapping for it...
   sailus: Yeah, I think this could be made similarly a hardware specific format.
   <br> <u>pinchartl</u>: Any opinion?
   pinchartl: <u>LazyGrizzly</u>: you have a camera that produces the bayer pixel format expected by the IPU3 ?
   sailus: I think it'd be unlikely we'll find another piece of hardware using this anyway.
   <br> As this is not a standard format.
   grohne: is there any reasonable way to expose a numeric parameter via v4l2 with semantic values 1, 2, 4, 8 (gain factor)? I've been looking at all drivers/media/i2c/*.c now and gain control appears to be a gross mess
   pinchartl: <u>sailus</u>: not really, it's bikeshedding, as long as you come up with a solution I like I'll be fine :-D
   <br> <u>grohne</u>: you can make it an integer menu control
   sailus: <u>pinchartl</u>: :-) Yes, by calling this specific to some piece of hardware, we don't need to come up with a generic name. :-)
   grohne: <u>pinchartl</u>: wouldn't that confuse users when V4L2_CID_ANALOGUE_GAIN is expected to be a ranged parameter?
   sailus: <u>grohne</u>: There's no means currently to convey arbitrary parameter value limits.
   LazyGrizzly: <u>pinchartl</u>: the DFK 33UP1300 from 'The Imaging Source' has V4L2_PIX_FMT_IPU3_SRGGB10
   sailus: If the limits are arbitrary, the application likely needs to know the limits to be able to meaningfully set the parameters anyway.
   LazyGrizzly: i just need to know what naming you want so that i can prepare the patch
   pinchartl: <u>grohne</u>: if you reuse V4L2_CID_ANALOGUE_GAIN then it would, yes
   <br> another option would be to round the gain value in the ctrl set handler
   sailus: <u>LazyGrizzly</u>: Seriously?
   pinchartl: to 1, 2, 4 or 8
   <br> <u>LazyGrizzly</u>: was it made specifically to be used with the IPU3, or is that just a coincidence ?
   grohne: <u>pinchartl</u>: I considered that, but makes writing clients difficult as they wouldn't be able to easily tell which values do exist
   LazyGrizzly: sailus, pinchartl to my knowledge the camera simply passes that sensor data, so that may be coincidence
   grohne: <u>pinchartl</u>: in the application, I'd actually like to know which exact gain stages there are (including the factors they represent). should I go for custom parameters in such a case?
   sailus: <u>grohne</u>: An alternative would be to expose just the exponent of 2. I wonder if there are precedents.
   grohne: <u>sailus</u>: I just checked all of drivers/media/i2c/*.c. there are not. I considered the idea as well, yes.
   <br> V4L2_CID_DIGITAL_GAIN has a certain meaning nowadays: 0x100 is the recommended default and it should mean "factor 1". can we reasonably achieve something similar for analogue gains?
   <br> does it make sense to refer these questions to the mailing list? it kinda is clarifying API use to achieve at more consistency among drivers
   sailus: Possibly for some classes of devices.
   pinchartl: <u>grohne</u>: then you'd need an integer menu control
   sailus: Others need something more complicated since some devices have a different gain model that does not fit very well to that.
   pinchartl: I suppose it would confuse existing applications, yes
   sailus: I might just expose it as an integer control. The user will be able to get the actual value set back from the driver.
   pinchartl: although, the index of the menu entry would be the power of 2
   grohne: <u>pinchartl</u>: I'm not used to menu controls and I will have to read up on that before contributing anything useful here. Will do. Thank you!
   pinchartl: so applications that don't deal with menu controls would see values in range 0 to 3
   grohne: <u>pinchartl</u>: I'm faced with one where gain = 2**coarse_gain * (1 + fine_gain/16)
   pinchartl: <u>grohne</u>: good luck then :-)
   <br> I don't think you can meaningfully do anything with that
   <br> or at least
   <br> meaningfully enumerate the allowed values from userspace
   <br> I'd use an integer control
   grohne: that's what I have to.
   pinchartl: map it to the coarse and fine gain values internally
   <br> and return the rounded value
   <br> an application that wants to know beforehand what exact gain values are acceptable will need to be device-specific
   grohne: I really do need the enumeration part unfortunately. :/
   pinchartl: we can't create an API that can expose random constraints to userspace in a generic way, that would be too difficult
   grohne: I understand that, but could I maybe just try all values in the range and see which ones work or something like that?
   pinchartl: I assume coarse_gain is in the range [0..3] and fine_gain [0..15] ?
   grohne: in this particular case coarse is 0..7
   <br> but in another it is 0..3
   pinchartl: 128*16 values would be too many to enumerate meaningfully
   <br> sorry, but we have no API for that
   <br> your best option is to use an integer control and round the value
   grohne: that still helps as it furthers the constraints on the solution.
   <br> though menus with up to 256 entries might be doable. hmm
   pinchartl: but they would be very inconvenient for both applications and users
   grohne: I discussed this forwards and backwards on the other side and no matter whether it is upstreamable, I need the possible gains + their representing factors
   <br> inconvenient may be better than nothing
   <br> thank you very much.
   LazyGrizzly: pinchartl, sailus are there any objections or can i go forward with SBGGR12SP - Bayer 12-Bit simple packed ?
   <br> well i'm off for today. see you tomorrow
   ***: LazyGrizzly has left
   pinchartl: <u>grohne</u>: why do you need them in userspace ?
   sailus: My preference is to use a hardware specific format.
   <br> "Simple packed" does not really describe the format.
   <br> Add a device name there, as was done for IPU3.
   <br> <u>pinchartl</u>: ^
   pinchartl: <u>sailus</u>: how is the existing SBGGR12P format not device-specific ?
   <br> or should it have been made device-specific too ?
   sailus: It comes from CSI-2.
   pinchartl: does it ?
   sailus: And CSI-2 is a standard.
   pinchartl: CSI-2 doesn't specify memory formats, does it ?
   sailus: That's the format on the bus. The CSI-2 does not define an in-memory format, but just DMA'ing that to memory results in what is described in that pixelformat.
   <br> This is what a lot of the hardware just does.
   <br> In retrospect, it could have been labelled as CSI-2 packed.
   <br> I think there was a device not exposing CSI-2 outside using it as well but I don't remember what it was.
   <br> I need to leave for today.
   <br> Have a nice evening!
   pinchartl: kiitos, samoin
   angelo_ts: <u>question</u>: what should be the MEDIA_BUS_FMT_ to use for a CSI data type 0x24 (RGB888) ?
   <br> i am supposing MEDIA_BUS_FMT_RGB888_1X24
   kbingham: angelo_ts, Yes - in the rcar-csi2.c we use { .code = MEDIA_BUS_FMT_RGB888_1X24,	.datatype = 0x24, .bpp = 24 },
   angelo_ts: kbingham,  👍
   <br> thanks
   emaczen: <u>ndufresne</u>: Thanks, that is definitely the right field!
   ***: padovan has quit IRC (*.net *.split)
   <br> kbingham has quit IRC (*.net *.split)
   <br> paul374 has quit IRC (*.net *.split)
   <br> ldts has quit IRC (*.net *.split)
   <br> arnd has quit IRC (*.net *.split)
   <br> d0ggie has quit IRC (*.net *.split)