lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:   Wed, 9 May 2018 12:11:27 +0000
From:   Phil Edworthy <phil.edworthy@...esas.com>
To:     Andy Shevchenko <andy.shevchenko@...il.com>
CC:     Hoan Tran <hotran@....com>,
        Linus Walleij <linus.walleij@...aro.org>,
        "Rob Herring" <robh+dt@...nel.org>,
        Mark Rutland <mark.rutland@....com>,
        Lee Jones <lee.jones@...aro.org>,
        Michel Pollet <michel.pollet@...renesas.com>,
        "open list:GPIO SUBSYSTEM" <linux-gpio@...r.kernel.org>,
        devicetree <devicetree@...r.kernel.org>,
        Linux-Renesas <linux-renesas-soc@...r.kernel.org>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: RE: [PATCH v5] gpio: dwapb: Add support for 1 interrupt per port A
 GPIO

Hi Andy,

On 05 May 2018 11:49 Andy Shevchenko wrote:
> On Thu, Apr 26, 2018 at 7:19 PM, Phil Edworthy wrote:
> 
> Sotty fo a late response. Consider follow up fixes for below.
> 
> >         if (!pp->irq_shared) {
> > +               int i;
> > +
> > +               for (i = 0; i < pp->ngpio; i++) {
> > +                       if (pp->irq[i])
> > +                               irq_set_chained_handler_and_data(pp->irq[i],
> > +                                               dwapb_irq_handler, gpio);
> > +               }
> >         } else {
> >                 /*
> >                  * Request a shared IRQ since where MFD would have devices
> >                  * using the same irq pin
> >                  */
> > +               err = devm_request_irq(gpio->dev, pp->irq[0],
> >                                        dwapb_irq_handler_mfd,
> >                                        IRQF_SHARED, "gpio-dwapb-mfd",
> > gpio);
> 
> > +       if (pp->has_irq)
> >                 dwapb_configure_irqs(gpio, port, pp);
> 
> I would rather make irq array a type of signed int and move conditional into
> the function to test per IRQ based.
Ok, though since the driver can be used without interrupts, it has to check
if any are used before the driver does all the other interrupt related things.
 
> >         /* Add GPIO-signaled ACPI event support */
> > +       if (pp->has_irq)
> >                 acpi_gpiochip_request_interrupts(&port->gc);
> 
> Perhaps something similar.
> 
> >                 if (dev->of_node && pp->idx == 0 &&
> >                         fwnode_property_read_bool(fwnode,
> >
> > "interrupt-controller")) {
> 
> > +                       struct device_node *np = to_of_node(fwnode);
> > +                       unsigned int j;
> > +
> > +                       /*
> > +                        * The IP has configuration options to allow a single
> > +                        * combined interrupt or one per gpio. If one per gpio,
> > +                        * some might not be used.
> > +                        */
> > +                       for (j = 0; j < pp->ngpio; j++) {
> > +                               int irq = of_irq_get(np, j);
> > +                               if (irq < 0)
> > +                                       continue;
> > +
> > +                               pp->irq[j] = irq;
> > +                               pp->has_irq = true;
> > +                       }
> 
> for (...)
>  pp->irq = of_irq_get();
> 
> >                 }
> 
> > +               if (has_acpi_companion(dev) && pp->idx == 0) {
> > +                       unsigned int j;
> > +
> > +                       for (j = 0; j < pp->ngpio; j++) {
> > +                               pp->irq[j] = platform_get_irq(to_platform_device(dev), j);
> > +                               if (pp->irq[j])
> > +                                       pp->has_irq = true;
> > +                       }
> 
> Ditto.
> Moreover you have a bug here. See my proposal at the top of this message.
I guess you mean that it doesn’t check for errors returned?

> And now even better to ask, why platform_get_irq() wouldn't work for DT
> case?
The problem is that the interrupts are defined in the port sub-node in DT,
not in the gpio controller node, causing platform_get_irq() to fail. The
port sub-node doesn’t have an associated platform device. I don’t think
there is a way around this...

> > +
> > +                       if (!pp->has_irq)
> >                                 dev_warn(dev, "no irq for port%d\n",
> > pp->idx);
> 
> This could be issued in the actual function which will try to allocate IRQs
> (perhaps on debug level)
> 
> 
> P.S. Just think about it, perhaps you find even better solutions.
There's certainly some duplication between DT and ACPI that can be removed.

Thanks
Phil

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ