1. 04 7月, 2019 1 次提交
  2. 10 6月, 2019 1 次提交
  3. 08 6月, 2019 1 次提交
  4. 28 5月, 2019 1 次提交
  5. 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
  6. 21 5月, 2019 1 次提交
  7. 08 5月, 2019 1 次提交
  8. 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
  9. 19 4月, 2019 1 次提交
  10. 05 4月, 2019 1 次提交
  11. 27 3月, 2019 2 次提交
  12. 22 3月, 2019 2 次提交
  13. 21 3月, 2019 1 次提交
  14. 23 2月, 2019 1 次提交
  15. 09 2月, 2019 1 次提交
  16. 28 1月, 2019 1 次提交
  17. 21 1月, 2019 1 次提交
  18. 22 12月, 2018 1 次提交
  19. 21 12月, 2018 2 次提交
  20. 17 12月, 2018 1 次提交
  21. 07 12月, 2018 1 次提交
    • V
      gpio: lpc18xx: add GPIO pin interrupt controller support · 5ddabfe8
      Vladimir Zapolskiy 提交于
      The change adds support of LPC18xx/LPC43xx GPIO pin interrupt controller
      block within SoC GPIO controller. The new interrupt controller driver
      allows to configure and capture edge or level interrupts on 8 arbitrary
      selectedinput GPIO pins, and lift the signals to be reported as NVIC rising
      edge interrupts. Configuration of a particular GPIO pin to serve as
      interrupt and its mapping to an interrupt on NVIC is done by SCU pin
      controller, for more details see description of 'nxp,gpio-pin-interrupt'
      device tree property of a GPIO pin [1].
      
      From LPC18xx and LPC43xx User Manuals the GPIO controller consists of
      the following blocks:
      * GPIO pin interrupt block at 0x40087000, this change adds its support,
      * GPIO GROUP0 interrupt block at 0x40088000,
      * GPIO GROUP1 interrupt block at 0x40089000,
      * GPIO port block at 0x400F4000, it is supported by the original driver.
      
      While all 4 sub-controller blocks have their own I/O addresses, moreover
      all 3 interrupt blocks are APB0 peripherals and high-speed GPIO block is
      an AHB slave, according to the hardware manual the GPIO controller is
      seen as a single block, and 4 sub-controllers have the shared reset signal
      RGU #28 and clock to register interface CLK_CPU_GPIO on CCU1.
      
      Likely support of two GPIO group interrupt blocks won't be added in short
      term, because the mechanism to mask several interrupt sources is not well
      defined.
      
      [1] Documentation/devicetree/bindings/pinctrl/nxp,lpc1850-scu.txt
      Signed-off-by: NVladimir Zapolskiy <vz@mleia.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      5ddabfe8
  22. 15 10月, 2018 1 次提交
    • R
      gpio: fix SNPS_CREG kconfig dependency warning · a7c0b4b8
      Randy Dunlap 提交于
      Fix kconfig warning for GPIO_SNPS_CREG:
      
      WARNING: unmet direct dependencies detected for OF_GPIO
        Depends on [n]: GPIOLIB [=y] && OF [=n] && HAS_IOMEM [=y]
        Selected by [y]:
        - GPIO_SNPS_CREG [=y] && GPIOLIB [=y] && HAS_IOMEM [=y] && (ARC || COMPILE_TEST [=y])
      
      Drivers in drivers/gpio/Kconfig depend on OF_GPIO, not select it.
      This prevents attempting to build when OF is not enabled.
      Signed-off-by: NRandy Dunlap <rdunlap@infradead.org>
      Cc: Linus Walleij <linus.walleij@linaro.org>
      Cc: linux-gpio@vger.kernel.org
      Cc: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      a7c0b4b8
  23. 10 10月, 2018 1 次提交
  24. 28 9月, 2018 1 次提交
  25. 29 8月, 2018 3 次提交
  26. 11 8月, 2018 1 次提交
  27. 13 7月, 2018 1 次提交
  28. 09 7月, 2018 1 次提交
  29. 05 6月, 2018 1 次提交
  30. 23 5月, 2018 1 次提交
  31. 27 3月, 2018 2 次提交
  32. 26 3月, 2018 1 次提交
  33. 02 3月, 2018 2 次提交