[04:25] *** rshanmu has quit IRC (Ping timeout: 252 seconds)
[09:43] <linusw> hverkuil: OM all my friends are here! :D
[09:43] <hverkuil> It's all happening here :-)
[09:43] <hverkuil> First question is from my cover letter: https://www.spinics.net/lists/linux-gpio/msg31983.html
[09:44] <hverkuil> can the same struct irq_chip be added to different struct gpio_chip instances?
[09:46] <hverkuil> It makes a difference when overriding the irqchip hooks: if the same irq_chip is used by different gpio_chip instances, then I need to keep a counter, otherwise a WARN_ON might be useful.
[09:58] <hverkuil> linusw: ping?
[09:59] <svarbanov> ndufresne: you can file bugs here https://bugs.96boards.org/
[10:01] <linusw> sorry a bit busy on my end
[10:02] <hverkuil> np
[10:02] <hverkuil> if now is not a good time, just let me know
[10:03] <linusw> I guess you are referring to drivers using GPIOLIB_IRQCHIP.
[10:03] <hverkuil> yes
[10:03] <linusw> OK
[10:03] <hverkuil> (sorry, should have mentioned that)
[10:03] <linusw> I usually think they are 1 GPIO chip to many IRQCHIPs.
[10:03] <linusw> The most common 1-to-1.
[10:03] <linusw> So I need to think about that...
[10:04] <linusw> We have drivers with 1:1 gpio_chip to irq_chip, but several chained interrupts to the same irqchip as well.
[10:05] <linusw> So I do not think you need a counter.
[10:05] <hverkuil> OK. I'm not sure how the chaining affects the patch, if at all.
[10:05] <hverkuil> It's really not my area of expertise, so I will need some help with that.
[10:06] <hverkuil> I'll add just a WARN_ON, in that case instead of a counter.
[10:08] <hverkuil> Other question: am I correct in that gpiolib-sysfs can be used by drivers whether or not they use the gpiolib irqchip helpers?
[10:08] <linusw> hverkuil: don't worry, noone understand irq_chip.
[10:08] <hverkuil> And if a driver doesn't use the helpers, then sysfs still needs to call gpiochip_lock_as_irq().
[10:08] <linusw> Yes the legacy sysfs API can be used by any driver.
[10:09] <hverkuil> Right, I'll update the patch accordingly.
[10:09] <linusw> If the gpio_chip doesn't support IRQs at all it will bail.
[10:10] <hverkuil> As far as I can see the gpiolib-acpi.c doesn't use the gpiolib irqchip helpers, and I think I can just drop my patch. I think it is good as it is today.
[10:10] <linusw> hverkuil: no the ACPI business is always necessarily different
[10:11] <linusw> their IRQ path involves the driver calling back into ACPI to handle IRQs somehow, I never understood it.
[10:11] <hverkuil> Regarding drivers that do not use the gpiolib irqchip helpers:
[10:11] <linusw> but Andy Shevchenko can probably help you with the ACPI stuff if needed.
[10:12] <hverkuil> I was planning to convert one or two in the next patch series to see if everyone agrees with the changes.
[10:12] <hverkuil> I'll just have to CC the maintainer of each driver, since presumably they can test this?
[10:12] <linusw> sounds good.
[10:12] <linusw> If they can't test it they should not maintain it.
[10:13] <hverkuil> I don't know how testing is done in the gpio world.
[10:13] <linusw> I toss things at the maintainers.
[10:13] <hverkuil> Are there any utilities to help with testing?
[10:13] <linusw> If there is no maintainer responding to patches I apply them anyway.
[10:13] <linusw> Then we test in linux-next and people report regressions :)
[10:13] <hverkuil> Ah, OK.
[10:13] <linusw> I think libgpiod has the best tests.
[10:14] <linusw> Also the tools in the kernel tools/gpio can be used
[10:14] <linusw> For example gpio-event-mon to listen to events on the character device
[10:15] <linusw> or gpio-hammer to e.g. drive a gpio high/low
[10:15] <linusw> This is all from userspace.
[10:15] <linusw> There is also a mock GPIO driver for testing the core library, but the above is used to exercise it.
[10:15] <hverkuil> Thank you for your help! If all goes well I'll have a new series for you today.
[10:15] <linusw> There i naturally no way to test a driver you don't have hardware for, as usual.
[10:15] <hverkuil> of course
[10:16] <linusw> hverkuil: no problem, and by the way I'm a fan of this series.
[10:16] <linusw> I never liked that we had to use that resource request hook TGLX put in.
[10:16] <hverkuil> Nice to here. But the irqchip hooks are scary...
[10:16] <linusw> Yeah :/
[10:16] <hverkuil> hear :-)
[10:17] <linusw> The problem is that all other hooks are fastpath, I don't know why.
[10:17] <linusw> So the reference needs to be taken there.
[10:17] <linusw> But apart from that I prefer we just use the standard callbacks.
[10:18] <linusw> Though request/unmask mask/disable semantics are really confusing.
[10:18] <linusw> Hopefully Marc tells us if we get it wrong.
[10:18] <hverkuil> This try_module_get(), is that something that gpio drivers that do not use the irqchip helpers should use as well? No one does, as far as I could see.
[10:18] <linusw> hverkuil: they definately should
[10:18] <hverkuil> I'm don't understand why it is needed, to be honest.
[10:19] <linusw> hverkuil: it is there so that you are blocked from unloading a module for e.g. a GPIO line that is in use by another module or userspace.
[10:19] <linusw> that is supplied by that module.
[10:19] <linusw> I guess one can still force unload it...
[10:19] <linusw> I think clocks and regulators have the same module grab.
[10:20] <hverkuil> wouldn't it make sense to export gpiochip_irq_reqres/relres so those drivers can call it?
[10:20] <linusw> Hmmmm....
[10:20] <linusw> Good point.
[10:20] <hverkuil> or just set it as their own irq_request/release_resources hook?
[10:21] <linusw> I think you're spot on a hole in the implementation.
[10:21] <linusw> That we fixed it for these drivers and forgot about all others..
[10:21] <hverkuil> of course, this is the version after my changes where reqres/relres only obtain the module and do not call gpiochip_lock_as_irq()
[10:22] <linusw> You are onto something very nice.
[10:22] <linusw> That makes a lot of sense.
[10:22] <hverkuil> OK, I'll do this as well.
[10:22] <linusw> This would block unloading of a module providing an IRQ that is in use.
[10:22] <linusw> Which would be really sweet.
[10:23] <linusw> Even if not using the generic chip+helpers.
[10:23] <linusw> Thanks Hans!
[10:23] <hverkuil> No problem. I'll start coding!
[10:24] <linusw> :)
[10:24] <hverkuil> A lot of work to fix just two cec drivers :-(
[10:25] <larsc> blocking unloading for a module will do nothing if you can just unbind the driver
[10:27] <hverkuil> larsc: at least it prevents rmmod, which is what 99% of the people use. v4l also dies horrible deaths if you forcibly unbind an i2c driver, unless there is special code to support that.
[11:07] <hverkuil> linusw: forget my patch series, I just realized it is all wrong. The gpiolib_lock_as_irq really has to be called when the irq is requested, since gpiolib needs to know this.
[11:07] <hverkuil> With my patch a driver could request an irq, then disable the irq and at that time userspace can request an irq as well using sysfs.
[11:08] <hverkuil> We need two flags: one whether or not an irq is installed, and one to tell if the irq is enabled or disabled.
[11:08] <hverkuil> back to the drawing board...
[12:28] <sailus> jmondi: A quick question --- you and Hugues seem to be both busy working on the ov5640 driver. Are there patches that work for everyone that could be applied? It would beem there's been discussion but I haven't seen an exact conclusion suggesting all issues would have been resolved, apart from odd fixes.
[13:41] <linusw> hverkuil: sorry, but I am sure what comes out of this will be even more awesome.
[14:54] *** prabhakarlad has left 
[15:13] <ezequielg> hverkuil: ping
[15:14] <ezequielg> would like to pick your brain about v4l tests
[15:40] <mchehab> hverkuil: it seems that the request API patchset is breaking compilation for i386
[15:40] <mchehab> drivers/media/platform/vivid/vivid-osd.c:./include/linux/slab.h:631:13: error: undefined identifier '__builtin_mul_overflow'
[15:41] <mchehab> I'm doing a full build here in order to double-check
[15:42] <mchehab> culpit seems to be this one 945b07b1630f (\"media: vivid: add mc\")
[15:44] <mchehab> (I got just a warning, as I built just the modules)
[15:48] <mchehab> hmm... false alarm
[15:52] <mchehab> make -j50  ARCH=i386 CONFIG_DEBUG_SECTION_MISMATCH=y C=1 CHECK="/devel/sparse/sparse"
[15:52] <mchehab>   CHECK   drivers/media/platform/vivid/vivid-osd.c
[15:52] <mchehab> drivers/media/platform/vivid/vivid-osd.c:./include/linux/slab.h:631:13: error: undefined identifier '__builtin_mul_overflow'
[15:52] <mchehab> drivers/media/platform/vivid/vivid-osd.c:./include/linux/slab.h:631:13: warning: call with no type!
[15:52] <mchehab> it seems to be a sparse bug
[15:55] <javier__> sailus: adding support to this ipu3 camera sensor seems to be a rabbit hole
[15:55] <javier__> I've spent some time again on this today, just adding an ACPI device ID table to the ov2680 driver I can have a media device
[15:55] <javier__> but the camera needs some regulators and a clock, so probably I'm missing in my DSDT a PMIC or something that provides those
[15:57] <javier__> I probably won't be able figure out that without the machine schematics and datasheets
[15:59] <javier__> this is the patch I'm using for testing, but as mentioned is not enough https://paste.fedoraproject.org/paste/LqWK3IZkPjxnNuyNgZEyIA
[21:17] <ndufresne> svarbanov, https://bugs.96boards.org/show_bug.cgi?id=769
[21:22] <sailus> javier__: Could you extract the ACPI tables?
[21:23] <sailus> acpidump -o file should do the trick.
[21:26] <sailus> javier__: You'll need to make sure the ov2680_power_{on,off} functions won't cause trouble --- it's not trivial to do. You could just comment out the code to be sure.
[21:27] <sailus> Well, until ov2680_mode_restore(), that is.
[23:25] <javier__> sailus: yes, I did extract the ACPI tables, that's how I'm patching them to add the port / endpoints _dsd extensions
[23:27] <javier__> but there's nothing in the cameras ACPI device nodes about the regulators and clocks there
[23:28] <javier__> I see the Chromebooks .asl in Coreboot define that info though for other similar sensors
[23:28] <javier__> and also the DTS in mainline for the ov2680
[23:30] <javier__> but I don't know how to figure out that info for this particular machine, the Windows driver doesn't seem to need it
[23:32] <javier__> sailus: and tried commenting out that code, but I2C transfer fails
[23:33] <javier__> my guess is due the chip not being properly initialized due the lack of regulators, clock and reset GPIO