hverkuil: ping pinchartl: pong quick question for you about HDMI sure in your experience can bad cables and/or noisy environments cause artifacts on the screen, such as low amplitude noise ? what exactly do you observe? Kieran is working on a display engine validation system that loops the HDMI output to an HDMI input on the same board (it thus can also be used to validate the rcar-vin driver, so it's V4L2-related :-)) the images don't match perfectly Usually bad cables will result in flickering or the screen temporarily losing signal. he didn't notice any visible noise but when diffing images, there are differences Ah. especially in the black areas, there's a low amplitude noise (~1-2/255 I believe) I can show you the pictures First possibility: colorspace conversion: either from rgb to yuv or vice versa, and/or full/limited range conversion. http://www.ideasonboard.org/images/ http://www.ideasonboard.org/images/frame-*.pnm.sub.png are the diffs between the original image and the captured image they are computed with convert "$A" "$B" \ -compose subtract \ -composite \ -threshold 0.001 \ -negate \ -alpha copy \ -negate \ "$OUT" as you can see, it's mostly in the dark areas bit errors should be distributed equally Is the output image static (i.e. always the same), but the diffs keep changing over time? hverkuil: pinchartl: I can send the raw pnm's if needed. larsc: that would have been my guess too, thanks for the confirmation hverkuil: yes, the output image is static Hmm, that's not random noise. Also not from colorspace conversion issues, since those would be static as well. it could be a combination of colorspace conversion noise with something else though kbingham: could you compute a histogram of the noise ? s/noise/diff/ There is no GPU involved? nope the R-Car display engine, the internal HDMI encoder, the HDMI cable, the external HDMI decoder (ADV7482) and the R-Car VIN that's all What are the subX.pnm.png files? diffs between the first captured image and the subsequent captured images Originals at : http://janet.linuxembedded.co.uk/?dir=vin-loopback/ with : http://janet.linuxembedded.co.uk/vin-loopback/frame-000000.png showing the expected output which leads me to think that there are static differences possibly caused by colorspace conversion, and dynamic differences caused by something else Sorry - that's a captured frame :) kbingham: do you output YUV or RGB ? if in doubt blame the adv7482 YUYV https://github.com/kbingham/kms-tests/blob/master/tests/kms-test-vin-loopback.py for the hacked together test :) and what do you capture? larsc: :-) kbingham: the DU doesn't support YUV output, so there's a YUV to RGB conversion in the DU, and possibly an RGB to YUB conversion in the HDMI encoder if the VIN EDID reports YUV support only the patterns don't really look random pinchartl: Ok - so best remove that from the equation And the other issue could be the RGB quantization range. The output might convert from full to limited range and the input should do the same in reverse. kbingham: do you know if you transmit RGB or YUV over HDMI ? What resolution do you pick? larsc: no they don't hverkuil: Resolution is 1024x768 I believe ... same as the captured images OK, that *should* be transmitted as RGB full range if everyone sticks to the rules... hverkuil: I agree on the quantization range issue (if that's the 0-255, 16-235 conversion) so I'll have to dig though to see where that got mixed. It would be handy if the adv7482 driver could dump the AVI InfoFrame information with 'v4l2-ctl --log-status'. Like adv7604 does. The subX.pnm.png files show differences between the captured images ... which worry me a little Also get edid-decode from git://anongit.freedesktop.org/xorg/app/edid-decode it has many fixes and improvements and you can use v4l2-ctl --get-edid|edid-decode to see the EDID. or edid-decode /sys/..../edid kbingham: most of the differences might be caused by colorspace conversion. if we can get rid of that, the rest of the differences might give us more clues But knowing the AVI InfoFrame the transmitter sends is the most important piece of info. hverkuil: thank you for your help larsc: thank you as well are you doing chroma subsampling? kbingham: that's a question for you :-) I mean if it was just color space conversion I'd expect all pixels of the same color to have the same error larsc: pinchartl: I don't know at the moment :) larsc: good point it looks a bit like some game of life variant or the output of some image enhancement filter My recommendation: add log_status support to adv748x and use it to dump the infoframes. See adv7604 for code. I never can understand how anyone can develop HDMI drivers without that. hverkuil: it's easy when your eyes don't notice full range/limited range conversion errors :-) pinchartl: Maybe we should leave the tests as 'Perform a visual verification that it looks OK' :D hverkuil: Thanks - I'll put that in quickly now too. kbingham: the test can fail, I have no issue with that. then we can be contracted to make it pass :-D pinchartl: hey! don't tell our secret! It's how we sw engineers make our money! :-) no, we make our money because the hardware engineers smoke substances that shouldn't even exist on this planet :-) kbingham: how is the adv7482 connected to the host? CSI2 or BT656? larsc: CSI2 I'd put my money on chroma subsampling and maybe some random initial conditions that cause the noise kbingham: could you check all components in the pipeline to see what they transmit ? (formats transmitted over HDMI and over CSI-2) well moving away from YUYV has removed the random noise between frames, and the errors in the dark black areas. However I've clearly got my colours wrong currently :) : http://janet.linuxembedded.co.uk/?dir=vin-loopback.xrgb8888 http://janet.linuxembedded.co.uk/vin-loopback.xrgb8888/captured0.1024x768.raw.png isn't quite right - and neither is http://janet.linuxembedded.co.uk/vin-loopback.xrgb8888/original.bin.png Ho hum ... more work to do. indeed :-) it looks like you've lost one color component