[05:49] *** mmattice has quit IRC (Ping timeout: 268 seconds)
[07:00] <hverkuil> koike: you'd have to check for which older kernels that vimc series still applies cleanly.
[07:05] <hverkuil> koike: I'm also not really sure how useful it is to apply such a large change to older kernel versions for what it just a test driver.
[07:59] <lucaceresoli> kbingham, jmondi: hi there, I've been thinking (again) about the GMSL i2c-mux management and I can't remember why the i2c slave address reconfiguration is needed. :-?
[07:59] <lucaceresoli> since the GMSL chips act as an i2c-mux, and a plain i2c-mux allows to communicate with remote chips with the same address
[08:00] <lucaceresoli> (provided they are on different child busses)
[08:00] <lucaceresoli> I reviewed the v4 patches (Novermber 2018) and was unable to find an answer
[08:15] <kbingham> lucaceresoli, Interesting point :)
[08:17] <kbingham> lucaceresoli, I wonder if it was because of the fact that we have two deserialisers on the same bus, or it might also have been an aim to improve performance by not having to include extra i2c writes to open and close the mux channels for every device write.
[08:17] <kbingham> But yes, we can certainly communicate with cameras with the same address on a single mux, because that's how we ask for an address reconfiguration.
[08:18] <kbingham> The caveat is that we /must/ have the other max9286 (which is on the same parent i2c bus) configured with all of it's mux channels closed.
[08:19] <kbingham> So that could mean that theoretically a write to a single camera would first involve a write to *two* max9286's to configure all i2c-mux channels correctly, followed by the write to the actual device.
[08:20] <kbingham> I believe we looked at optimising the single max9286 so that it wouldn't have to open/close the mux-channels if it was a sequential write to the same device (otherwise, by default an i2c-mux will open, then close the channel for every i2c-write I beleive)
[08:20] <kbingham> And perhaps that optimisation could be extended with some intra-device communication such that only one channel could ever be open across both i2c-muxes.
[08:30] <lucaceresoli> kbingham: about having two max9286 on the same parent bus, the i2c-mux locking scheme locks access to all sibling muxes while accessing a device on a child bus (it also locks the entire parent bus if configured as parent-locked), so I expect this to be safe
[08:32] <kbingham> lucaceresoli, (rightly or wrongly) I'm sure we leave channels *open* after a write as a performance optimisation currently, so in our /current/ driver it is not safe.
[08:32] <lucaceresoli> except the initial configuration case, where all channels are open (aargh)
[08:35] <lucaceresoli> uhm, is performance so critical? Do you need so much more than 1~2 transactions/s/sensor for exposure setting and the like?
[08:36] <kbingham> lucaceresoli, I can't remember the "reasons" I'm afraid :( it was so long ago now. So I'm glad you're asking awkward questions :) - I kinda want to go and strip out the address configuration stages to see how the driver simplifies.
[08:47] <lucaceresoli> kbingham: haha, "awkward questions"... :)
[08:47] <lucaceresoli> kbingham: indeed I see three non-completely-orthogonal points here:
[08:48] <lucaceresoli> - are there performance requirements so we need to skip selecting/deselecting the child busses frequently?
[08:48] <lucaceresoli> - would the mux be able to work as a regular mux (without address reprogramming and with (de)select at each transaction)?
[08:49] <lucaceresoli> - how can the *two* mux9286s be initialized to at least close all their child busses initially, in order for point 2 to work?
[08:50] <lucaceresoli> point 1 is the blocker to even consider the two other ones
[08:50] <kbingham> point three we already have a hacky workaround for :) (because it's essential for us to run the two together)
[08:50] <kbingham> but I consider it not-upstreamable currently.
[08:51] <kbingham> poitn two, I belive yes, it should work doing channel (de)select at each transaction. But I don't know of the 'cost' of such transactions (other than a hypothetical, up to 3x more i2c writes)
[08:52] <lucaceresoli> should the performance requirement be removed, I suspect point 2 would bring a big simplification. with that done, I suspect oint 3 could be addresses with (at the worst) the same hack you have now, maybe a nicer one
[08:53] <lucaceresoli> kbingham: agreed, so it all boils down to how many number of transactions/s/sensor you need.
[08:53] <kbingham> point one. Well that's the key bit. If the number of writes are not so critical - that the costs of handling the channel select/muxing then it shoudl be ok :) And getting it fucnctional (if not performant) at least at first can always improve things later.
[08:53] <lucaceresoli> [yet another awkward question :)]
[08:54] <kbingham> I expect mostly at least currently - once we have the cameras running, there are no continuous writes to the cameras...
[08:54] <kbingham> (also I think removing the address configuration brings in a really nice feature that if the cameras are reset we don't have to worry about not knowing what address they are at )
[08:55] <kbingham> pinchartl, neg, jmondi, any opinions on the above discussions ?
[09:00] <kbingham> lucaceresoli, Here's the 'workaround' : https://git.kernel.org/pub/scm/linux/kernel/git/kbingham/rcar.git/commit/?h=gmsl/dev&id=8996ab704530f4b3154f301ada61496dee21a73c
[09:04] <kbingham> we check the *parent* device to see if all max9286 devices have been probed, and only then do we 'init' those devices. Meanwhile, having closed the mux for each one. So only the last max9286 actually does the initialisation for each one.
[09:05] <kbingham> hacky (and breaks compilation as a module due to use of device_is_bound() which is not exported) :D
[09:05] <neg> for (de)select and performance while streaming I think we can build upon what we have today, open all routes in the mux at that point so there will be no performance cost
[09:06] <kbingham> neg, No - that's the point - luca is suggesting that we *use* (de)select and have all cameras at the same address.
[09:06] <kbingham> The question is ... IS there actaulyl a performance issue ...
[09:06] <kbingham> or is it all in our heads :)
[09:07] <pinchartl> kbingham: there's several issues
[09:07] <neg> kbingham: ahh, then I don't know ;-)
[09:07] <pinchartl> at runtime it's likely a few writes only per frames, and performances may not be that degraded (but that remains to be measured)
[09:08] <pinchartl> when starting the stream, however, it's dozens if not hundreds of writes
[09:08] <pinchartl> same when power up and/or initialising the sensor
[09:08] <kbingham> yes, but thats per camera, so we can continue to optimise the path of sequential writes to the *same* child bus.
[09:08] <pinchartl> for that reason we need to *at least* delay closing the mux until a new transaction to a different device is received
[09:08] <pinchartl> (or possibly with a timeout)
[09:09] <pinchartl> deselecting after *each transaction* is not an option
[09:09] <pinchartl> (I've never understood why the I2C mux core does so btw, it should allow grouping transactions)
[09:10] <pinchartl> another issue is synchronisation of cameras
[09:10] <kbingham> pinchartl, Yes, I think that could be handled at the i2c-mux core.
[09:10] <pinchartl> and for that we should actually not reprogram addresses
[09:10] <pinchartl> the use case is to send a single I2C write that would address all the cameras with the same address
[09:10] <pinchartl> for instance to synchronise frames
[09:11] <pinchartl> that calls for not reprogramming
[09:11] <pinchartl> but we have zero infrastructure to do so in V4L2 today, as every camera has a device instance, and there's no way to do such cross-configurations
[09:11] <kbingham> (although theres' no 'api' within the mux that would let us write to all channels)
[09:16] <kbingham> pinchartl, so that hasn't necessarily answered luca's questions. Excepting the i2c-mux optimisation to reduce de-selects, is there a reason why we /must/ reconfigure the address of each camera? Or are you confirming that it would be a workable solution (if i2c-mux is performant enough)
[09:18] <pinchartl> there would still be an overhead. it has to be measured to see if it could cause issues
[09:18] <pinchartl> but in any case a better handling of deselection in i2c-mux would be required
[09:54] <lucaceresoli> pinchartl: I see, hundreds of transactions at stream start (times 8 cameras) is a lot
[09:54] <lucaceresoli> AFAICU the reason for i2c muxes to not allow grouping is quite simple
[09:58] <lucaceresoli> the mux instantiates one adapter per child bus, the slave chips don't know there's a mux out there, and the mux can't know if the slave is going to do a burst of transactions
[09:58] <lucaceresoli> it's a simplistic implementation in that respect, enough for most use cases
[09:59] <lucaceresoli> it could be probably be made more sophisticated at the i2c-mux.c level...
[10:01] <lucaceresoli> hm, wait! it you need lots of writes during e.g. sensor configuration, can you group them in a big 'struct i2c_msg' array, and pass it to a single i2c_transfer() call?
[10:02] <lucaceresoli> I think it would call the mux child adapter master_xfer function once, and that would to select/deselect once.
[10:02] <lucaceresoli> does it make sense?
[10:08] *** jherland_ has quit IRC (Ping timeout: 268 seconds)
[12:50] <newbieG> This is my dmesg --> http://dpaste.com/36J5AYE .... This is my lspci -k --> http://dpaste.com/15RC54M ..... This is my lsusb -vv --> http://dpaste.com/3EK7TZH
[12:50] <newbieG> It about one month trying to fix my webcam but till now no luck .....
[12:50] <newbieG> My webcam is recognised by kernel but I don't know why I don't have *videoX* inside /dev
[12:54] <pinchartl> newbieG: what does 'ls -l /sys/devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.5/1-1.5:1.0' report ?
[12:55] <newbieG> pinchartl:  http://dpaste.com/1EJ3729
[12:58] <pinchartl> and in /sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/video4linux/ ?
[13:02] <newbieG> pinchartl:  http://dpaste.com/1R8J7FG
[13:03] <pinchartl> so everything seems fine on the kernel side
[13:04] <pinchartl> and no /dev/video0 or /dev/video1 ?
[13:04] <pinchartl> I suspect a userspace issue then
[13:04] <pinchartl> with udev, systemd, or whatever you are using
[13:06] <newbieG> pinchartl: Any tips how to find whats causing the issue
[13:08] <pinchartl> what distribution are you running ?
[13:08] <newbieG> gentoo
[13:09] <newbieG> but very new to it
[13:09] <pinchartl> what does 'udevadm info /sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/video4linux/video0' report ?
[13:10] <newbieG> pinchartl: Unknown device, --name=, --path=, or absolute path in /dev/ or /sys expected.
[13:11] <pinchartl> and 'udevadm info /sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0' ?
[13:11] <pinchartl> oops sorry
[13:11] <pinchartl> udevadm info /sys/devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.5/1-1.5:1.0/video4linux/video0
[13:11] <pinchartl> (the other one was for my system :-))
[13:12] <newbieG> pinchartl: http://dpaste.com/2SYYRA3
[13:36] <pinchartl> newbieG: I'm afraid I can't spot anything wrong. I'm pretty sure it's a userspace issue
[13:42] <newbieG> pinchartl: Sorry due to network issue I got disconnected
[13:42] <pinchartl> no worries
[13:42] <pinchartl> newbieG: I'm afraid I can't spot anything wrong. I'm pretty sure it's a userspace issue
[13:43] <newbieG> pinchartl: I tried Skype from chrome and my webcam is working
[13:44] <pinchartl> ??? without any device in /dev ?
[15:53] *** rob_gries has quit IRC (Quit: Leaving)
[19:32] *** d0ggie_ has quit IRC (Ping timeout: 245 seconds)