hverkuil_, about the patch v4l2-device: add v4l2_device_req_queue
login register mail settings
 it would cause modules in dependency cycles
it better to be moved into the other module
v4l2-core/v4l2-common.c seems better right?
or just vidoebuf2-core
u
hverkuil_: ping
pinchartl: ping
~.
heading out now, should be there in 10mins
posciak: pong
Hi again! If I'm operating an m2m device that can only change its settings while it's not calculating a frame, what function should I put the settings register writes in?
should i just put it in device_run()?
http://muistio.tieke.fi/p/v4l2-requests-2016
Hey guys, I was going through the videobuf2 memory allocators and I am confused on the cleanup path
e.g. for the dma_sg allocator, there are two functions: put_userptr() and _put(), both of which do the cleanup
Is driver supposed to call only one of them?
_put gets called every time the dmabuf import is closed, and driver will call the put_userptr (provided get_userptr was called earlier) in the cleanup phase
But it may lead to crashes as the later function accesses freed memory
Am I missing something?
I see the vb2 layer only dumps the unbalanced queue
vb->cnt_mem_get_userptr != vb->cnt_mem_put_userptr
BanHammor: yes, you normally put anything that accesses hardware registers in the device_run() handler
full HW configuration would be applied there and the assumption is that it doesn't get changed until single job processing is completed
i.e. v4l2_m2m_job_finish() is called
snawrocki, on that note, how do i check if streaming is on from inside the driver?
BanHammor: you can check the vb2 queue streaming status with vb2_is_streaming()
yes, exactly, I just was going to write it
Thank you!
BanHammor: but the question is why do you need this, you could save that information in device_run, in driver's private data
snawrocki, well, i'm planning to have some changes (most of ctrls) apply on next frame, and some (s_fmt and some ctrls) apply only when streaming is stopped, since they require memory remapping.
BanHammor: and there are also start_streaming, stop_streaming vb2_ops callbacks to let the driver prepare for starting and clean up stopping streaming
i know, and i use them, but i fail to see the downside to checking the queue instead of storing a variable for that.
BanHammor: it should be fine to use vb2_is_streaming(), but we need to remember device_run() can be called from interrupt context
snawrocki, i don't call it from interrupt context. Does anyone?
yes, there are some drivers that call v4l2_m2m_job_finish() from interrupt handler context
IIRC if you don't call that helper from interrupt handler device_run() will not be called from interrupt context either
Oh. I see.
vb2_is_streaming() will be called from s_fmt() and s_ctrl() so this should be fine.
banHammor: anyway, if the device starts generating interrupts only after start_streaming and stops before exiting stop_streaming (which you normally do ensure) it should be fine to use vb2_is_streaming() for testing
BanHammor: yeah, that should be fine