1. 07 1月, 2020 1 次提交
  2. 16 12月, 2019 1 次提交
  3. 01 11月, 2019 1 次提交
  4. 29 10月, 2019 2 次提交
  5. 09 10月, 2019 1 次提交
  6. 05 10月, 2019 1 次提交
  7. 01 10月, 2019 1 次提交
  8. 20 8月, 2019 1 次提交
  9. 16 8月, 2019 1 次提交
  10. 15 8月, 2019 2 次提交
    • L
      gpio: thunderx: Switch to GPIOLIB_IRQCHIP · a7fc89f9
      Linus Walleij 提交于
      Use the new infrastructure for hierarchical irqchips in
      gpiolib.
      
      The major part of the rewrite was dues to the fact that
      the driver was passing around a per-irq pointer to
      struct thunderx_line * data container, and the central
      handlers will assume struct gpio_chip * to be passed
      to we need to use the hwirq as index to look up the
      struct thunderx_line * for each IRQ.
      
      The pushing and pop:ing of the irqdomain was confusing
      because I've never seen this before, but I tried to
      replicate it as best I could.
      
      I have no chance to test or debug this so I need
      help.
      
      Cc: David Daney <david.daney@cavium.com>
      Cc: Thierry Reding <treding@nvidia.com>
      Cc: Brian Masney <masneyb@onstation.org>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      Link: https://lore.kernel.org/r/20190808123242.5359-4-linus.walleij@linaro.org
      a7fc89f9
    • L
      gpio: ixp4xx: Convert to hierarchical GPIOLIB_IRQCHIP · aa7d618a
      Linus Walleij 提交于
      This modifies the IXP4xx driver to use the new helpers
      to handle the remapping of parent to child hardware irqs
      in the gpiolib core.
      
      This pulls the majority of the code out of the driver
      and use the generic code in gpiolib.
      
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Marc Zyngier <marc.zyngier@arm.com>
      Cc: Lina Iyer <ilina@codeaurora.org>
      Cc: Jon Hunter <jonathanh@nvidia.com>
      Cc: Sowjanya Komatineni <skomatineni@nvidia.com>
      Cc: Bitan Biswas <bbiswas@nvidia.com>
      Cc: linux-tegra@vger.kernel.org
      Cc: Thierry Reding <treding@nvidia.com>
      Cc: Brian Masney <masneyb@onstation.org>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      Link: https://lore.kernel.org/r/20190808123242.5359-2-linus.walleij@linaro.org
      aa7d618a
  11. 14 8月, 2019 2 次提交
  12. 12 8月, 2019 1 次提交
  13. 15 7月, 2019 1 次提交
  14. 04 7月, 2019 1 次提交
  15. 27 6月, 2019 1 次提交
  16. 10 6月, 2019 1 次提交
  17. 08 6月, 2019 1 次提交
  18. 28 5月, 2019 1 次提交
  19. 24 5月, 2019 1 次提交
    • R
      gpio: fix gpio-adp5588 build errors · e9646f0f
      Randy Dunlap 提交于
      The gpio-adp5588 driver uses interfaces that are provided by
      GPIOLIB_IRQCHIP, so select that symbol in its Kconfig entry.
      
      Fixes these build errors:
      
      ../drivers/gpio/gpio-adp5588.c: In function ‘adp5588_irq_handler’:
      ../drivers/gpio/gpio-adp5588.c:266:26: error: ‘struct gpio_chip’ has no member named ‘irq’
                  dev->gpio_chip.irq.domain, gpio));
                                ^
      ../drivers/gpio/gpio-adp5588.c: In function ‘adp5588_irq_setup’:
      ../drivers/gpio/gpio-adp5588.c:298:2: error: implicit declaration of function ‘gpiochip_irqchip_add_nested’ [-Werror=implicit-function-declaration]
        ret = gpiochip_irqchip_add_nested(&dev->gpio_chip,
        ^
      ../drivers/gpio/gpio-adp5588.c:307:2: error: implicit declaration of function ‘gpiochip_set_nested_irqchip’ [-Werror=implicit-function-declaration]
        gpiochip_set_nested_irqchip(&dev->gpio_chip,
        ^
      
      Fixes: 459773ae ("gpio: adp5588-gpio: support interrupt controller")
      Reported-by: Nkbuild test robot <lkp@intel.com>
      Signed-off-by: NRandy Dunlap <rdunlap@infradead.org>
      Cc: linux-gpio@vger.kernel.org
      Reviewed-by: NBartosz Golaszewski <bgolaszewski@baylibre.com>
      Acked-by: NMichael Hennerich <michael.hennerich@analog.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      e9646f0f
  20. 21 5月, 2019 1 次提交
  21. 08 5月, 2019 1 次提交
  22. 23 4月, 2019 1 次提交
    • L
      gpio: ixp4xx: Add driver for the IXP4xx GPIO · 813e7d36
      Linus Walleij 提交于
      This adds a driver for the IXP4xx GPIO block found in
      the Intel XScale IXP4xx systems.
      
      The GPIO part of this block is pretty straight-forward and
      just uses the generic MMIO GPIO library.
      
      The irqchip side of this driver is hierarchical where
      the main irqchip will receive a processed level trigger
      in response to the edge detector of the GPIO block,
      so for this reason the v2 version of the irqdomain API
      is used (as well as in the parent IXP4xx irqchip) and
      masking, unmasking and setting up the type on IRQ
      happens on several levels.
      
      Currently this GPIO controller will grab the parent
      irqdomain using a special function, but as the platform
      move toward device tree probing, this will not be needed:
      we can just look up the parent irqdomain from the device
      tree.
      
      Cc: Bartosz Golaszewski <bgolaszewski@baylibre.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      813e7d36
  23. 19 4月, 2019 1 次提交
  24. 05 4月, 2019 1 次提交
  25. 27 3月, 2019 2 次提交
  26. 22 3月, 2019 2 次提交
  27. 21 3月, 2019 1 次提交
  28. 23 2月, 2019 1 次提交
  29. 09 2月, 2019 1 次提交
  30. 28 1月, 2019 1 次提交
  31. 21 1月, 2019 1 次提交
  32. 22 12月, 2018 1 次提交
  33. 21 12月, 2018 2 次提交
  34. 17 12月, 2018 1 次提交