[07:34] <GBenji> hverkuil: Hello, I have changed the hantro hevc dedicated control implementation. Does it match with your advices ? https://www.spinics.net/lists/linux-media/msg189752.html
[10:41] <pinchartl> paulk-leonov: you've authored "phy: Distinguish between Rx and Tx for MIPI D-PHY with submodes". what PHY was that for ?
[10:42] <pinchartl> scratch this, found it on the mailing list
[10:42] <pinchartl> does the sun6i DPHY really support both RX and TX in the same instance of the IP core ?
[11:15] <sinajit> Are there any good code samples on using DRM/KMS API from userspace applications? Just the basic things, writing to a framebuffer (possibly some material on overlays too). I'm having a hard time going through the official specification...
[11:16] <ezequielg> sinajit: you were not able to convince your boss, I suppose.
[11:16] <sinajit> Ah, glad you remembered :)
[11:16] <sinajit> But no :(
[11:17] <ezequielg> the only value in doing this yourself is learning. Anything else is almost 100% a Very Bad Idea (tm).
[11:19] <ezequielg> https://github.com/dvdhrm/docs/tree/master/drm-howto
[11:19] <ezequielg> https://gitlab.freedesktop.org/daniels/kms-quads
[11:19] <ezequielg> https://cgit.freedesktop.org/wayland/weston/tree/libweston/backend-drm/kms.c
[11:19] <ezequielg> sinajit: ^
[11:19] <sinajit> Thanks! I'll look at it ASAP.
[11:19] <ezequielg> note that this is the wrong channel to ask about KMS :)
[11:19] <sinajit> Is there a specific channel for that on freenode?
[11:20] <pinchartl> #dri-devel
[11:20] <ezequielg> and please keep in mind, this is a Very Bad Idea. Expect people to keep telling you this.
[11:20] <sinajit> pinchartl, I thought #dri-devel was for driver developers, not writers of userland applications?
[11:21] <sinajit> ezequielg, will keep in mind
[11:29] <pinchartl> sinajit: it's mostly related to driver development (in both kernelspace and userspace, in particular mesa), but it's not limited to that
[11:30] <pinchartl> ezequielg: aren't there very niche use cases for direct usage of DRM/KMS, in very resource-constrained embedded systems that don't need a display server ?
[11:48] * ezequielg shrugs
[13:14] <paulk-leonov> pinchartl: yes correct, the same IP does TX and RX
[13:14] <paulk-leonov> (not at the same time though I guess)
[13:15] <paulk-leonov> it's unclear if there are cases of the same IP being wired to do both
[13:20] <paulk-leonov> btw I managed to get cedrus to decode on cachable buffers with explicit cache sync: https://paste.ack.tf/d77f93 (it's very very ugly)
[14:02] <ezequielg> paulk-leonov: is that for the ancillary buffers?
[14:03] <paulk-leonov> ezequielg: there's an explicit sync for the ancillary buffers since they need to be memset 0 for the VPU to operate
[14:03] <paulk-leonov> just after their alloc
[14:03] <paulk-leonov> but most importantly it's for the output/capture buffers
[14:04] <ezequielg> you also need to read/write the output/capture buffers?
[14:04] <ezequielg> ouch, coherent on those really murders your performance, doesn't it?
[14:05] <paulk-leonov> yes the use case we have is software encode from the decoded frames in a transcoding scenario
[14:05] <paulk-leonov> and accessing the decoded capture buffers was painfully slow
[14:05] <paulk-leonov> because coherent makes them non-cachable
[14:05] <ezequielg> ah, right.
[14:06] <paulk-leonov> I'm not sure what makes the most sense as standard behavior
[14:06] <paulk-leonov> you probably want to avoid the cache sync in a fully hardware pipeline
[14:06] <paulk-leonov> but on the other hand when userspace requests mmap memory it's kinda legit that it will want to access it
[14:07] <paulk-leonov> and for that it's best to have cache enabled
[14:07] <paulk-leonov> on the other hand cache sync doesn't take a huge time either
[14:08] <paulk-leonov> so I suppose the question is whether that would make sense as default behavior for the dma-contig allocator
[14:09] <paulk-leonov> maybe the two could coexist as well with a dma-contig-coherent fashion of the allocator
[14:10] <ezequielg> i think the short answer is that whenever you get a cpu mapping, the kernel should do some sync for you.
[14:11] <ezequielg> in general, at the kernel/app or kernel/kernel interface.
[14:11] <paulk-leonov> sounds fair to me
[16:13] *** GBenji has left 
[17:21] <jernej> paulk-leonov: do you have any performance stats?
[17:21] <paulk-leonov> jernej: well, I just have some fps comparison on the same sample
[17:22] <jernej> is it noticeably faster?
[17:22] <paulk-leonov> it goes from 25 fps to 37
[17:22] <paulk-leonov> so yeah :)
[17:22] <jernej> that's nice
[17:22] <paulk-leonov> that includes a memcpy to retreive the data from the cma-allocated buffer to system memory
[17:22] <paulk-leonov> which is the bottleneck
[17:23] <paulk-leonov> this will probably be quite important for an encoder case too
[17:23] <paulk-leonov> because in that case we definitely have to access the buffer cpu-side to write it to a file
[17:23] <jernej> ah, true
[17:24] <jernej> what's the state with stateless encoders?
[17:25] <paulk-leonov> I think many people are interested in the topic
[17:25] <paulk-leonov> personally I'm focused on other things these days but also have interest
[17:25] <jernej> I'm just curious, I personally don't have any use case for them
[17:26] <jernej> but now and them someone asks about that
[17:26] <jernej> *then
[17:28] <jernej> hverkuil: mchehab: Not sure who is responsible for linuxtv.org but #v4l irc log search doesn't work "*** ERROR: agrep not found!***"
[21:16] <pinchartl> paulk-leonov: I was wondering if the same IP *instance* could do both. otherwise setting the type in DT would sound like a better idea