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] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 9 Oct 2013 14:19:17 +0200
From:	Linus Walleij <linus.walleij@...aro.org>
To:	Christian Ruppert <christian.ruppert@...lis.com>
Cc:	Stephen Warren <swarren@...dotorg.org>,
	Patrice CHOTARD <patrice.chotard@...com>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
	Grant Likely <grant.likely@...retlab.ca>,
	Rob Herring <rob.herring@...xeda.com>,
	Rob Landley <rob@...dley.net>,
	Sascha Leuenberger <sascha.leuenberger@...lis.com>,
	Pierrick Hascoet <pierrick.hascoet@...lis.com>,
	"linux-doc@...r.kernel.org" <linux-doc@...r.kernel.org>,
	Alexandre Courbot <acourbot@...dia.com>,
	"devicetree@...r.kernel.org" <devicetree@...r.kernel.org>,
	Thomas Gleixner <tglx@...utronix.de>
Subject: Re: [PATCH 03/03] GPIO: Add TB10x GPIO driver

On Tue, Oct 8, 2013 at 2:25 PM, Christian Ruppert
<christian.ruppert@...lis.com> wrote:

Overall this driver is looking very nice, we just need to figure out this
group range concept in the other patch.

> +Example:
> +
> +       gpioa: gpio@...40000 {
> +               compatible = "abilis,tb10x-gpio";
> +               interrupt-controller;
> +               #interrupt-cells = <1>;
> +               interrupt-parent = <&tb10x_ictl>;
> +               interrupts = <27 2>;

So this is cascaded off some HWIRQ offset 27 on some interrupt
controller, OK...

> +               reg = <0xFF140000 0x1000>;
> +               gpio-controller;
> +               #gpio-cells = <2>;
> +               abilis,ngpio = <3>;
> +               gpio-ranges = <&iomux 0 0 0>;
> +               gpio-ranges-group-names = "gpioa_pins";
> +       };


But this thing:

(...)
> +static irqreturn_t tb10x_gpio_irq_cascade(int irq, void *data)
> +{
> +       struct tb10x_gpio *tb10x_gpio = data;
> +       u32 r = tb10x_reg_read(tb10x_gpio, OFFSET_TO_REG_CHANGE);
> +       u32 m = tb10x_reg_read(tb10x_gpio, OFFSET_TO_REG_INT_EN);
> +       const unsigned long bits = r & m;
> +       int i;
> +
> +       for_each_set_bit(i, &bits, 32)
> +               generic_handle_irq(irq_find_mapping(tb10x_gpio->domain, i));
> +
> +       return IRQ_HANDLED;
> +}

(...)
> +               ret = platform_get_irq(pdev, 0);
> +               if (ret < 0) {
> +                       dev_err(&pdev->dev, "No interrupt specified.\n");
> +                       goto fail_get_irq;
> +               }
> +
> +               tb10x_gpio->gc.to_irq   = tb10x_gpio_to_irq;
> +               tb10x_gpio->irq         = ret;
> +
> +               ret = devm_request_irq(&pdev->dev, ret, tb10x_gpio_irq_cascade,
> +                               IRQF_TRIGGER_NONE | IRQF_SHARED,
> +                               dev_name(&pdev->dev), tb10x_gpio);

Why aren't you simply using

irq_set_chained_handler()
irq_set_handler_data(tb10x_gpio);

And in the handler function that need a signature like
this:

static void tb10x_gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
{
   struct tb10x_gpio *tb10x_gpio = = irq_get_handler_data(irq);
   struct irq_chip *host_chip = irq_get_chip(irq);
   chained_irq_enter(host_chip, desc);
(...)
   chained_irq_exit(host_chip, desc);
}

?

It's not like I'm 100% certain on where to use one or the other
construct (a mechanism like the above is needed for threaded
IRQs I've noticed) but the chained handler seems more to the
point does it not?

The only downside I've seen is that the parent IRQ does not get
a name and the accumulated IRQ stats in /proc/interrupts but
surely we can live without that (or fix it).

Since I'm a bit rusty on chained IRQs correct me if I'm wrong...

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ