Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1207512

Re: [PATCH] gpiolib: irqchip: use different lockdep class for each gpio irqchip

From Linus Walleij <linus.walleij@linaro.org>
Newsgroups linux.kernel
Subject Re: [PATCH] gpiolib: irqchip: use different lockdep class for each gpio irqchip
Date 2015-08-14 14:40 +0200
Message-ID <pXmr7-28w-5@gated-at.bofh.it> (permalink)
References <pX294-6rZ-11@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Thu, Aug 13, 2015 at 4:58 PM, Grygorii Strashko
<grygorii.strashko@ti.com> wrote:

> Since IRQ chip helpers were introduced drivers lose ability to
> register separate lockdep classes for each registered GPIO IRQ
> chip and the gpiolib now is using shared lockdep class for
> all GPIO IRQ chips (gpiochip_irq_lock_class).
> As result, lockdep will produce warning when there are min two
> stacked GPIO chips and all of them are interrupt controllers.
>
> HW configuration which generates lockdep warning (TI dra7-evm):
(...)
>
> Cc: Geert Uytterhoeven <geert@linux-m68k.org>
> Cc: Roger Quadros <rogerq@ti.com>
> Reported-by: Roger Quadros <rogerq@ti.com>
> Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>

Ah, I see...


>  *     implies that if the chip supports IRQs, these IRQs need to be threaded
>  *     as the chip access may sleep when e.g. reading out the IRQ status
>   *     registers.
> + * @exported: flags if the gpiochip is exported for use from sysfs. Private.
>   * @irq_not_threaded: flag must be set if @can_sleep is set but the
>   *     IRQs don't need to be threaded
>   *
> @@ -126,6 +128,7 @@ struct gpio_chip {
>         irq_flow_handler_t      irq_handler;
>         unsigned int            irq_default_type;
>         int                     irq_parent;
> +       struct lock_class_key   *lock_key;

There is something weird with the kerneldoc. It is documenting something
else but not documenting the new member.

Anyway, so here:

> +int _gpiochip_irqchip_add(struct gpio_chip *gpiochip,
> +                         struct irq_chip *irqchip,
> +                         unsigned int first_irq,
> +                         irq_flow_handler_t handler,
> +                         unsigned int type,
> +                         struct lock_class_key *lock_key);
> +
> +#ifdef CONFIG_LOCKDEP
> +#define gpiochip_irqchip_add(...)                              \
> +(                                                              \
> +       ({                                                      \
> +               static struct lock_class_key _key;              \
> +               _gpiochip_irqchip_add(__VA_ARGS__, &_key);      \
> +       })                                                      \
> +)
> +#else
> +#define gpiochip_irqchip_add(...)                              \
> +       _gpiochip_irqchip_add(__VA_ARGS__, NULL)
> +#endif

Every chip will get their own lock class on the heap.

But I think it is a bit kludgy.

Is it not possible to have  the lock key in struct gpio_chip
be a real member instead of a pointer and get a per-chip
lock that way?

(...)
struct lock_class_key lock_key;

instead of:

struct lock_class_key  *lock_key;

-> problem solved, without kludgy header defines?

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

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] gpiolib: irqchip: use different lockdep class for each gpio irqchip Grygorii Strashko <grygorii.strashko@ti.com> - 2015-08-13 17:00 +0200
  Re: [PATCH] gpiolib: irqchip: use different lockdep class for each  gpio irqchip Roger Quadros <rogerq@ti.com> - 2015-08-14 11:10 +0200
  Re: [PATCH] gpiolib: irqchip: use different lockdep class for each  gpio irqchip Linus Walleij <linus.walleij@linaro.org> - 2015-08-14 14:40 +0200
    Re: [PATCH] gpiolib: irqchip: use different lockdep class for each  gpio irqchip Lars-Peter Clausen <lars@metafoo.de> - 2015-08-14 14:50 +0200
      Re: [PATCH] gpiolib: irqchip: use different lockdep class for each  gpio irqchip Grygorii Strashko <grygorii.strashko@ti.com> - 2015-08-14 15:10 +0200
      Re: [PATCH] gpiolib: irqchip: use different lockdep class for each  gpio irqchip Linus Walleij <linus.walleij@linaro.org> - 2015-08-17 11:10 +0200
    Re: [PATCH] gpiolib: irqchip: use different lockdep class for each  gpio irqchip Grygorii Strashko <grygorii.strashko@ti.com> - 2015-08-17 11:50 +0200

csiph-web