pinchartl: thanks! you're welcome my comments don't address specific patches, they're more about the overall API I think this is what needs to be agreed on first then we can care about the patches Huomenta! morning bonjour pinchartl: why would you like to see the diffstat with the cover letter? Each patch has already a diffstat, isn't that sufficient? Just wondering. because it gives a quick overview of the patches included, and the files changed Hmm. pinchartl: I'll try to remember :-) Has sleeping overnight helped you? :-) pinchartl: let me read your posts on the MC/DVB topic, haven't done that yet. git format-patch --cover creates a nice cover letter with a diffstat, just don't delete it :-) sailus: sleeping always helps So, when are we ready to start? :-) What I think we have concluded so far: - The name field (31 characters) is too short to uniquely identify a sub-device in a complete system. (sorry, still reading Laurent's emails, I got distracted) - The names need to be unique system-wide so that we can later on switch to a system-wide Media controller device, which has many benefits associated with it. I don't remember having concluded that names should be unique system-wide :-) they should be stable, and unique per media device - hwdev information has been proposed as an amendment to name so that together hwdev and name would be unique. In the vast majority of cases the hwdev would simply be a bus address. I am however not opposed to making them unique system-wide pinchartl: I thought we had concluded that. :-) but I don't think we've concluded that yesterday I wonder what hverkuil thinks. :-) However if you don't think so, perhaps we did not then. another interesting case if you want to have system-wide unique names are USB devices we would need to include a stable usb id What if drivers could choose whether they like to use the system-wide device or register one on their own? when I plug my webcam in, that stable device id is pci-0000:00:1d.0-usb-0:1.4:1.0 it's definitely too long to be reported in the entity names pinchartl: Couldn't that be "fixed" using udev? Static netdev names work, too. They are system specific though. But they still do not change. kernel drivers are not aware of udev They're not. There's an IOCTL to rename the device. do you really want an ioctl to rename entities ? :-) hotpluggable devices really can't have stable names. You might want to expose a serial or model property but those tend to be hit and miss, esp. for cheap devices. sure they can, the above usb name is stable pinchartl: What if you plug it into a different port? Which is handled by a different PCI device? then it's a different name, but I think that's fine pinchartl: The entity name is too short to report an unique device identifier. I thought we concluded that yesterday as well. :-) So this needs to be another field. that I agree with Hans seemed a bit doubtful about it, but I agree we need something else Alternatively we could continue the way we've done this so far, and introduce something new later on. The topic came up this time due to Jacek's flash patches where the name of the sub-device comes from a DT label. I don't think we're doing really good when it comes to names, so I think we should fix that I wonder if it'd be exactly the same discussion we'd have when we introduce the system-wide media device. :-) it might affect DVB too and possibly other subsystems pinchartl: Good point. While not entirely happy about it, I do agree that a new field can be added to make entity names unique. so I believe this should be fixed not s/not/now/ And the user space would have more time to adapt this way as well. The system wide media device is not an API change, but it requires that the entities have to be uniquely identifiable in a system. I agree I'd prefer to be able to agree on a solution now rather than later. I'm not sure now whether we'll need a system-wide media device at some point, but we could at least try to be prepared for that I think the problem boils down to this: we need a way to address entities in userspace, using stable and unique identifiers the entity ids are not stable, so that's not an option unless we introduce something new and completely different, we need to use a name for that let's refer to it as the userspace name at the moment the userspace name is the media_entity_desc name field but that causes issues - there's no guideline on how the name should be constructed, causing potential conflicts for some devices (I'm thinking about several instance of a given hardware device in a media controller graph for instance) - the name field is too small to hold both a unique device "name" and an entity-specific name (16 for the base address on 64-bit systems, long USB names, ...) so my idea would be to construct the userspace name from various information reported by the kernel there's actually already two pieces of information entity names, and which media device they belong to and that's already combined by media-ctl, albeit not by creating a single userspace name string but the -d argument is used to select the media device, and entity names are interpreted in the context of that media device that's not enough though, as we've conclude yesterday so I think we should introduce an additional string in the context of which entity names would be interpreted that string could be independently reported for each entity through media_entity_desc but that would use quite a bit of space it could also be reported through the new entity properties api but I believe it's a core piece of information, it would be nice not to be forced to use the properties api for this we have more than enough space. I don't think it would be a problem to carve out 32 bytes (or even more) for such a field. another alternative I've been thinking of, and proposed yesterday, is to introduce the concept of hardware devices (they could be renamed though) and report in media_entity_desc which hwdev an entity belongs to using an integer I believe that that approach has an additional benefit it reports how entities are grouped at the hardware level pinchartl: So you'd need to enumerate the hardware devices as well? They would have to have stable names then, I guess? for instance, if you have an I2C smart sensor with an integrated ISP in the I2C chip, the sensor subdev and ISP subdev would report the same hwdev id showing to userspace that they belong together or they just have the same i2c bus info, showing the same thing. now, I could also agree that we could use some of the media_entity_desc reserved space for names, or that enumerating hwdevs would be overkill but I like my proposal :-) I feel the whole hw device concept is very fuzzy, esp. when dealing with SoCs and FPGAs. That's my big concern here. I at least like the idea of splitting the name into two parts, with a hwdev name and an entity name in the context of that hwdev I agree that the hwdev is still fuzzy and needs to be better defined and possibly renamed but leaving that aside just for a minute we're already using some kind of hwdev smia sensors, for instance, expose several entities each prefixed with the i2c name we thus combine a hwdev name and an entity name into a single name field brb in a way that makes it difficult for userspace to separate the two, as there's no naming guideline on which automatic parsing could be based so in practice we already have hwdev names in some cases pinchartl: Correct. which is why I think it would be nice to generalize the concept and make it more useful The same basically applies to any device exposing multiple sub-devices. I agree that it's not clearly defined in all cases yet, but I think we could at least give it a try and see if we can define it sailus: not exactly or, in a way, it does but we've worked around it so far in some cases if you look at the omap3isp driver it exposes multiple subdevs but only prefixes their names with "OMAP3 ISP" without any hwdev instance information that's because the names are interpreted in the context of a media device and because we didn't expect multiple OMAP3 ISP instances in a media device or even system-wide but other SoCs have multiple ISP instances (the i.MX6 IPUs for instance) in some cases they will each be part of a different media device but in other cases a media device will need to cover at least two of them not even mentioning the idea of a system-wide media device back so, in the light of all this, I would like to give the hwdev idea a try pinchartl: Would you use an integer in struct media_entity_desc for that, or what? whether we expose it as a list of hwdevs and an id in media_entity_desc, or by reporting the full hwdev name in media_entity_desc, is something we can decide a bit later Fine. I'd first like to explore whether we can come up with a well-defined hwdev concept possibly naming it something different than hwdev but basically creating the userspace name from 3 parts : the media device, the hwdev name, the entity name I just want to point out that to some extent this has been done for querycap and the bus_info field (note that in this context "userspace name" doesn't mean a single string, it could be -d /dev/mediaX + "hwdev.entity" for instance) The contents of bus_info is well-defined for usb, pci and i2c devices. For platform devices it's less specific other than that it has to be prefixed with 'platform:'. it's a similar idea, yes For making i2c, usb and pci entities unique I see no reason to depart from what we did for querycap. the only issue I have with bus_info is that the names are not stable or is it ? let me check something quickly ok, for usb it seems fine It is. These are physical bus descriptions, so unless the device is plugged into a different port you'll get the same result. actually we don't mandate anywhere in the documentation how the USB name should be created we just say it should start with "usb-" Documentation/media-framework.txt documents the media controller bus_info and explicitly mentions usb_make_path() I thought I documented it somewhere. and for PCI, "PCI:" or "PCIe:" followed by pci_name() Hmm, I didn't. I can't find any occurence of usb_make_path() in the v4l documentation so we need something more clearly defined I should add this. but the idea is the same at least for i2c the bus number isn't always stable although in DT-based systems it should work properly we might need to think about it in more details, but the idea is there for platform devices, it's more open Right, that's the real problem. for devices controlled through a CPU memory mapped interface the CPU physical address could be used but not all platform devices are controlled in such a way Currently I just leave it up to the driver (except for the required platform: prefix) as Jacek mentioned yesterday, platform devices could be controlled by GPIOs or, possibly, not controlled by the CPU at all I can imagine a system where an external flash controller would be controlled completely by the sensor we'll also have to consider other busses such as unipro/csi-3 Why shouldn't we leave it up to the driver? Probably with some guidelines that cover 95% of the cases (if not more), but leave it open for the seriously weird cases. we could, but we must still ensure uniqueness that at least is a guideline that must be enforced in 100% of the cases Sure. For many platform devices you can probably get away with "platform:physaddr". another option for DT-based systems would be to use the DT node name, or even DT node full name I'm not saying it's the best idea though I would prefer something that relates to a physical property. In a sense a memory base address for such device *is* the bus info. I'm certainly not opposed to that so, do we agree that we have a plan that we can at least explore ? The PCI device's base address and other resources may be determined by other devices in the system. how do you mean ? If you insert a card to a system and reboot, you could have different physical MMIO base address on the next boot on your video capture card. I agree with the bus_info approach. W.r.t. the hwdev idea I have serious reservations and I am not in favor of that. The bus address itself should probably be stable in that case, but I'm not sure if there's a guarantee on it. sailus: really ? :-/ hverkuil: bus_info and hwdev are two ways to describe the same concept hwdev goes slightly further I think it depends on in which order the devices are probed. Then remember that PCI express is a hotplug bus, too. yes So it's the same as for USB, I guess. well, bus_info I understand, hwdev I don't :-) And frankly, we have too many 'devices' already, so you need really good arguments to convince me to add another. hwdev is just a name I came up with for this discussion we could call the concept differently pinchartl: In which case the hwdev would be different from bus_info? If I understood you right, there might not be so many of them. but I believe there's value in reporting that several subdevs are part of the same I2C chip, or the same ISP instance bus_info reports that in a way too just thinking about it now, hierachical entities would be another option again, not saying it's the best option but it would be an option at least with a full entity name being constructed from the names of all entities in the hierarchy That would be something that could be really useful. I actually thought about that as well A heck of a lot of work, though. indeed :-) but something to consider as a possible solution That would get interesting from the link point of view. And user space as well. Unless you'd just consider the outer sub-devices as containers and nothing else. that needs to be discussed I have no clear idea at the moment but it's one possible solution and one that would also support additional use cases, so it could be interesting pinchartl: Such as? it's why I would prefer a bus_info field. It's useful in any case and solves the uniqueness problem. sailus: I'll think about it ;-) hverkuil: bus_info essentially creates one additional level of hierarchy but it's ill-defined in some cases (think about devices not controlled by the CPU) if we introduce that level of hierarchy maybe it would be a good idea to go all the way to hierarchical entities possible implemented as containers only, as Sakari mentioned, I'm not sure yet should we explore the needs for hierachical entities in other subsystems, in particular alsa ? if they turn out to be needed, we could possibly go straight for that alsa, that's a good point. I've no idea if they would need this. we should at the very least discuss the naming problem with alsa is this a candidate for the media summit ? I'd say so. I don't know if Mauro reached out to the alsa people yet. sailus: you're unlikely to attend the summit, right ? pinchartl: Looks like that, yes. :-( Do we have more to discuss? Otherwise I'm off for lunch. I think we now need to work on a proposal short term, lunch is good :-) s/we/you/ :-) you as in Sakari and me ? ;-) s/we/I/ (sorry as in: not me :-) lunch! I'll save the log, let's propose the topic for the media summit lunch time for me as well pinchartl: ping prabhakarlad: pong just going through your reply for this patch https://patchwork.linuxtv.org/patch/28365/ If the reference was released on of_node_put() the driver would have crashed in the first place itself, but I don't see that case. Also the soc-camera/exynos do the same. Which means some one else is holding the reference as well becoz of which its not freed someone probably holds a reference or dynamic OF isn't enabled in the kernel but I think there's a bug somewhere hverkuil: would you have a bit of time at some point to discuss DT bindings for media bus formats (in the context of the Xilinx driver) hey, is it possible that the timestamp from struct v4l2_buffer itsnt correct set ? having problems to sync to cameras it's possible, yes which driver(s) are you using ? pinchartl, atm im not sure, i just used the v4l2 :-/ im really new to this area what cameras are you using ? Hello folks pinchartl, i will collect more details and ask again Analog cameras sometimes output sync pulses that analog capture cards don't handle well (but a real analog monitor handles just fine). are they USB cameras ? no I never got around fixing the timestamp issue with the uvcvideo driver :-/ was working on that, and then completely forgot so there is a known bug ? I think I need a little (may be big) help from you robstr: for uvc webcams, yes but you're not using webcams, so it's unrelated pinchartl, i had to check this, im working on a "blackbox" for me ^^ just tried something out and got these problems jfoucry: shoot... I try to make working a silvercrest usvb key (http://www.linuxtv.org/wiki/index.php/SilverCrest_USB_2.0_Video_Grabber_VG_2000) with a Raspberry 2. Did you know if someone already try ? jfoucry: I'm the wrong person for that, sorry No problem. :-) last time I checked, though, the rpi usb controller was pretty flacky unless they have improved the driver I don't expect usb devices to work reliably especially if they use isochronous transfers The new one is really better. I didn't ready all the specs :-) it was a driver problem, not a hardware problem pinchartl, is there a way to easily check if these cams are uvc ? I try to compile en em28xx driver but the build script did not recognize the linux distrib (raspbian). I will try to ask here tomorrow, may be other user could help me :-) jfoucry: I've just checked, all rpi models use the same broadcomm soc. I'd thus expect usb to be flacky on all of them robstr: uvc = usb video class it only applies to usb webcams are you're not using usb cameras, it's not applicable for you Argh.... That's not a good news :-( Thanks for checking your problem might be unrelated though, I can't ell s/ell/tell/ but given that your device uses isochronous transfers, I wouldn't expect a miracle fixes to the usb host controller driver would be welcome ;-) sure, but I am not the right person for that. :-) pinchartl,ok whats the best way to get 2 synced images ? I've use mmap and xioctl VIDIOC_DQBUF for both cams, then copy memory and then for both VIDIOC_QBUF is this a valid way ? that's a valid way to capture images but what makes you think the two streams would be in sync if you do that ? compare the 2 timestamps and if the difference is really small... they are synced enough for me :) it depens how accurate the synchronization needs to be <= 1 msec would be ok what frame rate and image size do you use ? I've get ~ 60 frames for a image with 752 x 480 30 frames/sec is 33.3 msec per frame so you want to be withing +/- 16.67 msecs to be synched For 60 frames/sec, halve those numbers. *within if you want a better synchronization than that, your cameras will need to be synchronized at the hardware level You will also have some system jitter. If you feed 1 analog camera to two analog capture cards, then the timestamps still won't be perfectly synchronized. hm sounds clear, but i wrote these "synced" images out and draw them ( my fingers are the moving objekt) and then in a few images there is in one camera a cap with a jump, but the timestamp looks correct But the difference should jitter around 0, with some finite variance, pinchartl: thanks for your help, have a good day jfoucry: you too. sorry for the bad news Are these analog cameras or digital cameras? Is either the camera or capture device performing compression (e.g. converting to MJEPG or MPEG or H.264)? awalls, im not 100ure but i think no compression and they are analog Hmmm. Identical capture cards? PCI or USB connected? It sounds like you have something buffering more than another. These are more rhetorical questions. The end result is going to be tuning system latencies and buffering to get your desired result. For that you really need to know what capture hardware and drivers are in use and what their behaviors are. awalls, big thanks, im trying to find these thinks out :) pinchartl, big thanks for you're help too :) you're welcome Hi, I can't make work my EZ grabber 2 USB.. video it's ok, audio it's ok, VIDEO + AUDIO freeze keyboard and mouse and don't works together mplayer, vlc, same thing I've took a look at http://www.linuxtv.org/wiki/index.php/OTG102.. I don't understand where is the problem xubuntu 14.04 Cx231xx Audio is turned OFF in Pulse audio Volume Control BUT it's seems that pulseaudio in general, still cause issues How can I do? tnx! hi, does anybody use si2165 chip for dvb-c? did anyone see zzam last days? I've understood something, if I capture ONLY the video, through VLC, nothing special happens. BUT If during this operation, I execute "arecord -f dat -d 20 -D hw:2,0 test.wav" ALL SYSTEM FREEZE INSTANTLY (some input output problem !!) It seems that the use of two devices (audio/video) on the same USB device causes a blocking. WHY? hello excuse me, if someone can, I need help I have a RTL2832U USB DVB-T key I'm using linux mint 17.1 (with kernel 3.13) with lsusb command I see Afatech USB RTL2832U device connected but I can't find the driver for that key