mchehab: how do you build the kABI documentation? Ideally just the media kABI?
make DOCBOOKS=device-drivers.xml htmldocs 2>&1|grep /media/
my script is actually:
rm Documentation/DocBook/device-drivers.aux.xml  Documentation/DocBook/device-dr
ivers.xml
make DOCBOOKS=device-drivers.xml htmldocs 2>&1|grep /media/
thanks!
please notice that you should have built before the media API docbook, as otherwise the makefile may fail
because of the lack of some media_api targets
pinchartl: any news with regards to MC patch series review?
you can also make DOCBOOKS=media_api.xml htmldocs
mchehab: ongoing, working on it today (along with patchwork)
ok
hverkuil: there will be lots of details to sort out with the request API
the more I work on it the more it gets complex in its interactions with the rest of the V4L2 API
for instance
parameters that are not specified in a request should use their current value, right ?
pinchartl: that's correct, unless they are changed as a side-effect of setting another parameter in the request.
hverkuil: now the question is
the current value at what time ?
when the request is queued ?
or ealier ?
the reason I'm asking
is that if I set the format on a pad of a subdev for a request
I need to define the format of all other pads at the same time in the same request
it would make sense to latch those formats when setting the subdev pad format
as I defined it it is the value at the time the request is applied by the driver. Remember that it was designed around the control framework and that's how the control framework behaves.
I am not sure what you mean with "to latch those formats when setting the subdev pad format"
subdev pad formats depend on one another
the source pad format typically depends on the sink pad format
and format mangling is done at s_fmt time
let's assume I have a scaler subdev
it can't change the pixel code
all it can do is scale the image
the device is configured with YUYV 1024x768 on the sink and source pads
if I try to set the source pad to UYVY 640x480
the driver will return YUYV 640x480
and that's what will be stored in the request
what if I then change the active format on the sink (and thus source) pads to UYVY and queue the request ?
it would make sense to copy the active value of all pad formats in the request when the user sets the format on a pad
and proceed with that when queuing the request
I have no objection against that. The question is what is easiest for the driver. Allowing complex format changes midstream is a nightmare to implement, and I feel that the driver implementation should be kept as simple as possible.
If that means that the application has to do things in a certain order, or always provide all formats in the request, then I am fine with that as well.
I think you are best placed to decide this since you're gaining some experience with how it works.
mchehab, javier__ : have you tested the MC next gen work with LOCK debug enabled? I am seeing problems when I do that
shuah: which Kconfig symbols exactly? I tested using the default omap2plus_defconfig and exynos_defconfig configs since my test platforms are an OMAP3 board with a tvp5151 video encoder and an Exynos Chromebook with a UVC camera
hverkuil: I'll propose something then :-)
(120 patches to go in patchwork)
javier__: I will share my config with me in a little bit. You will see these problems when you do device removal
Device removal might be the issue here, tends to be hard to do normally on embedded systems :)
no I am testing it on a laptop - so embedded isn't the issue
javier__: I have CONFIG_DEBUG_SPINLOCK, CONFIG_DEBUG_MUTEXES, CONFIG_DEBUG_LOCK_ALLOC, CONFIG_PROVE_LOCKING, CONFIG_DEBUG_LOCKDEP enabled
I will send you the dmesg in email in just a bit
shuah: probably I didn't enable any of those
I have gotten in the habit of doing that after the au0828 videlbuf to vb2 port
neither with or without the MC patches
ah ok - I know for sure this new warning is from MC next gen stuff - I didn't see any with MC - I have the same config on both
sometimes, the spinlock detection needs to be feed with additional info to do the right thing
(e. g. creating a spinlock group)
anyway, as I said, I didn't check
ah ok - maybe what I am seeing is okay - I just didn't want to walk away from it without understanding fully - Will send dmesg in a just a bit
I can test and debug - agenda for this week :)
good! thanks for that!
shuah: I mean if javier__ is testing on embedded systems there's no option to physically unplug the capture devices usually so you're testing something he most likely hasn't.
Or at least is likely to have tested less.
right I understand what you are saying. Our test setup is different
shuah: sorry I was having lunch
no problem - you should see dmesg in your inbox now
shuah: broonie is correct, in both systems there is no way to unplog the capture dev. Even for the Exynos Chromebooks where the camera is a USB UVC device, the camera is hardwired
hi
javier__: Hacksaw :)
broonie: haha
in hav prob my ting
dvb-s2
in a lot of cases you can force a USB controller to re-init, but that's all sorts of dirty
pctv 461e
on hd transponders
green screen n shite pic on certain mux
am using vdpau w/ decreaseed cpu usage but
still not good enough , not pleased w/ driver
or demod
c-band mux on pctv 461e
tried tvheadond vdr, even windows software mp and argus... same hd mux same result
this is off a 3 metre mesh dish with 76 % quality signal
absolute shite
clearly when they made this stick they ignored the cband side of dvbs
shuah: so from your logs, it seems the softlockup happens when the mdev->lock spinlock is held in media_device_unregister_entity()
right - after device removal during usb disconnect
nod
posciak: ping
(I assume you're asleep)
regarding UVC 1.5
how much work do you think it would be to have basic UVC 1.5 support without H.264 ?
just enough to get the device up and running with YUV and MJPEG
prabhakarlad: do you still maintain the staging davinci_vpfe driver ?
dinner time, bbiab
mchehab: down to 86 patches, I'll continue after dinner
hverkuil: what's the status of the the "y2038 conversion for subsystem" patch series ? superseded by our decision to create a new v4l2_buffer structure ?
mchehab: down to 37 patches. 8 of these are part of the current MC rework, and another 14 are for a libv4l plugin
that's as much as I can do for now
there's some omap3 isp and uvc patches that require quite a bit of work on my side and I won't have time for that in the near future