mchehab: can you merge https://patchwork.linuxtv.org/patch/33023/ and https://patchwork.linuxtv.org/patch/33026/? The daily build fails because of these. I'll handle it in a few thanks! Also, the missing 33023 keeps causing krobot to spam me :-( don't let idoru hear you say that, otherwise before you know it you'll all be getting vlined everytime you say something perfectly sensible like libv4l or perhaps even patch, grr, stupid idoru grumble mumble... oh, my bitterness isn't showing is it ? excuse me hverkuil: applied hverkuil: I had to rebase the patch you wrote extending the numbering ranges for it to be send upstream... exceptionally, I merged it back on our main devel repository and fixed the conflicts (usually, I only merge back from Linus tree, but, in this case, as we're touching on ENT_F_CONN_TEST on both trees, I opted to merge it quicker, as it would make easier if someone has to bisect) pinchartl: what's the best distro to test rcar with the upstream Kernel? I should start looking on your patches later today mchehab: I use a home-brew bitbake rootfs over nfs, others in the team just have an initramfs an nothing else in all case you need to cross-compile both media-ctl and yavta I'm trying to build an image via bitbake, using the steps at: http://elinux.org/R-Car/Boards/Yocto, but it fails with: | /home/mchehab/devel/r-car/build/tmp/work/porter-poky-linux-gnueabi/linux-renesas/3.10+gitef3cb04de0d01178a64fea73ffa4c5e21e79f310-r0/git/kernel/Makefile:141: recipe for target 'kernel/timeconst.h' failed | make[1]: *** [kernel/timeconst.h] Error 127 I just use a stock 32-bit bitbake I mean without any renesas-specific repository or recipe well, at least some board-specific layer is needed could you please share your local.conf and the layers you're using? I'm not using any board-specific layer I'm not using any layer actually :-) oh and s/bitbake/buildroot/ sorry about that I used openembedded before and found it painful, so I switched to buildroot instead yeah, OE is sometimes painful the only OE configuration I might still have is one I've used years ago for an OMAP3-based system with a v3.0 kernel I suppose you're not interested in it no need ;) could you e-mail me the .config you're using with buildroot? done might be outdated though I've been using the same rootfs for a long time now mchehab: for all my ARMv7 boards I just use stock debian or fedora arm hard float rootfs and cross build the kernel and bootloader htop ahem, sorry for that ;) mchehab: just fyi yes, that would work if the board runs fine with vanilla uboot pinchartl: thanks, I'm running buildroot here with your config have fun thanks mchehab, ping bparrot: can't talk... in a conf now mchehab, ok i'll just post it for later, no problem mchehab, . looks like commit 7c3e1ec1f772c1f740fce3180bf419018582977f "[media] v4l2-async: call registered_async after subdev registration" breaks probing on any subdevice not implementing the "registered_async" callback. The only driver that as it implemented as far as i can see is the tvp5150.c. All other driver would fail probing with -ENOIOCTLCMD. and by all other drivers i meant drivers which rely on async registration bparrot: sorry about that, I'll look to fix it bparrot: javier__ is the one that should fix it, as he was the one that broke ;) I guess the fix should be as simple as ignoring -ENOIOCTLCMD there mchehab, javier__, agreed thanks mchehab: yes, that's exactly what my patch is doing bparrot, mchehab: something like this right? http://hastebin.com/agohenuged.coffee I guess so mchehab: so how do you like your porter board ? javier__, sorry can't access any of the haste/paste been behind our corporate firewall speaking of which, I'm not aware of anyone testing the vsp1 driver on that board, it may not work s/been/bin/ mchehab: Ok, even if is a simple patch I'll do some testing on my igepv2 and then post it yes, that would be good bparrot: no worries, what's your email address btw to add your Reported-by tag? bparrot: you can send me a private msg if you want pinchartl: Kernel is already booting, but I'm still setting a NFS server I used to have one NFS server for rootfs boot in the past, but I moved to another machine and didn't need to move such config so far maybe you could review the patches while the nfs server is being set up :-) oh, and nfsroot is half broken for me on v4.5-rc headless: NFS works fine for me on Fedora both F22 and F23 (I upgraded recently from F22 to F23) mchehab: I mean NFS server for the targets it doesn work when I mount locally headless: here, I fixed the NFS ports, to avoid firewall weirdness *does ah, and I don't use firewalld mchehab: yeah, firewall didn't know about NFS-over-TCP (!) but adding that didn't help firewall works, if you fix the ports actually tcpdump shows the packets being exchanged but the targets just don't mount weird I use NFS here to help building Kernels for some slow test machines mchehab: disabling firewalld also didn't help had to resort to a USB drive mchehab: any idea regarding how to fix is_media_entity_v4l2_subdev() ? is it broken? it is as soon as I add new functions without updating it :-) as you noted in your e-mail yesterday, updating the function every time we add a function will be a maintenance nightmare not even mentioning that it's not correct : inferring whether and entity implements the subdev API from the main entity function just doesn't seem right so I wonder whether we shouldn't reintroduce an entity type field *inside* the kernel only to report the type of structure in which the entity is embedded the alternative is to rewrite the kernel in C++ to use the native C++ support for that :-) rewriting the Kernel in c++ is above my paygrade ;) just read your email we might introduce an internal entity type, but that sounds a bad idea, IMHO the problem is that an entity function is not subsystem-specific I mean, an audio mixer, for example, could be a V4L2 subdev... or it could be an ALSA subdev correct different object types will implement different APIs if the entity is a V4L2 subdev the driver interacting with that entity will need to use the V4L2 subdev API if it's an ALSA subdev (whatever it's called in ALSA), it will need to use the ALSA API (all that inside the kernel) so the information is needed well, the same device could serve *both* APIs that's the case of em202 chip it is an AC97 audio mixer the same chip can be controlled by both ALSA and V4L the same struct media_entity can't be embedded inside a struct v4l2_subdev *and* a struct alsa_whatever at the same time it's one or the other we don't support multiple inheritance in our C object implementation I guess the proper logic to replace "is_media_entity_subdev" would be to check if a V4L2 subdev interface is connected to the entity but there's no V4L2 subdev interface if we don't create a subdev node as you pointed on your e-mail, this is v4l2-specific... so we need to move this to v4l2-mc.c this is about the in-kernel API, not the userspace API I guess only drivers that create V4L2 subdev interfaces call "is_media_entity_subdev" yes, this is a in-kernel trouble... that's why we needed to get rid of it from uapi/media.h (with is the userspace API) how is that related ? is_media_entity_subdev() is an pure in-kernel issue ah, sorry, misread you the is_media_entity_subdev() function is defined in include/media/media-entity.h it's not part of the userspace API yes, but previously we were relying on uapi/media.h numberspace to identify the entity "supertype" how about an in-kernel type to identify the structure that embeds struct media_entity ? do you mean a mapping table? if so, I guess it would be uglier... also, it will need to be updaded for every function, and not only the v4l2 ones no a type field enum media_entity_type (exact name to be defined) struct media_entity { ... enum media_entity_type type; ... }; defined as the type of the kernel object that embeds the struct media_entity instance could work javier__, your patch does not fix the issue.... but I would, instead, add some "void *priv" there... what for ? if the type is defined this way, it will be well-defined and let the subsystem to define what types are pertinent to it there won't be any question about what the type means, like we had with the previous API (or add extra-subsystem-specific data) how would a subsystem do that ? good point the subsystem already embeds struct media_entity inside a subsystem-specific structure ok, I suspect your proposal would work so it already adds subsystem-specific data ok, I'll give it a try then ok bparrot: yeah, v2 posted bparrot: sorry about that, It seems I need more coffee... javier__, let me give a whirl bparrot: thanks bparrot: this time at least the code does what the commit message says... javier__, it does work. thanks bparrot: you are welcome and again sorry for the inconvenience np