1. 05 1月, 2016 1 次提交
  2. 27 12月, 2015 1 次提交
  3. 19 11月, 2015 1 次提交
    • L
      gpio: change member .dev to .parent · 58383c78
      Linus Walleij 提交于
      The name .dev in a struct is normally reserved for a struct device
      that is let us say a superclass to the thing described by the struct.
      struct gpio_chip stands out by confusingly using a struct device *dev
      to point to the parent device (such as a platform_device) that
      represents the hardware. As we want to give gpio_chip:s real devices,
      this is not working. We need to rename this member to parent.
      
      This was done by two coccinelle scripts, I guess it is possible to
      combine them into one, but I don't know such stuff. They look like
      this:
      
      @@
      struct gpio_chip *var;
      @@
      -var->dev
      +var->parent
      
      and:
      
      @@
      struct gpio_chip var;
      @@
      -var.dev
      +var.parent
      
      and:
      
      @@
      struct bgpio_chip *var;
      @@
      -var->gc.dev
      +var->gc.parent
      
      Plus a few instances of bgpio that I couldn't figure out how
      to teach Coccinelle to rewrite.
      
      This patch hits all over the place, but I *strongly* prefer this
      solution to any piecemal approaches that just exercise patch
      mechanics all over the place. It mainly hits drivers/gpio and
      drivers/pinctrl which is my own backyard anyway.
      
      Cc: Haavard Skinnemoen <hskinnemoen@gmail.com>
      Cc: Rafał Miłecki <zajec5@gmail.com>
      Cc: Richard Purdie <rpurdie@rpsys.net>
      Cc: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
      Cc: Alek Du <alek.du@intel.com>
      Cc: Jaroslav Kysela <perex@perex.cz>
      Cc: Takashi Iwai <tiwai@suse.com>
      Acked-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      Acked-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      Acked-by: NLee Jones <lee.jones@linaro.org>
      Acked-by: NJiri Kosina <jkosina@suse.cz>
      Acked-by: NHans-Christian Egtvedt <egtvedt@samfundet.no>
      Acked-by: NJacek Anaszewski <j.anaszewski@samsung.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      58383c78
  4. 28 7月, 2015 1 次提交
    • R
      gpio: kill off set_irq_flags usage · 23393d49
      Rob Herring 提交于
      set_irq_flags is ARM specific with custom flags which have genirq
      equivalents. Convert drivers to use the genirq interfaces directly, so we
      can kill off set_irq_flags. The translation of flags is as follows:
      
      IRQF_VALID -> !IRQ_NOREQUEST
      IRQF_PROBE -> !IRQ_NOPROBE
      IRQF_NOAUTOEN -> IRQ_NOAUTOEN
      
      For IRQs managed by an irqdomain, the irqdomain core code handles clearing
      and setting IRQ_NOREQUEST already, so there is no need to do this in
      .map() functions and we can simply remove the set_irq_flags calls. Some
      users also modify IRQ_NOPROBE and this has been maintained although it
      is not clear that is really needed as most platforms don't use probing.
      There appears to be a great deal of blind copy and paste of this code.
      Signed-off-by: NRob Herring <robh@kernel.org>
      Cc: Michael Hennerich <michael.hennerich@analog.com>
      Acked-by: NLinus Walleij <linus.walleij@linaro.org>
      Cc: Alexandre Courbot <gnurou@gmail.com>
      Cc: Ray Jui <rjui@broadcom.com>
      Cc: Stephen Warren <swarren@wwwdotorg.org>
      Cc: Thierry Reding <thierry.reding@gmail.com>
      Cc: linux-gpio@vger.kernel.org
      Cc: bcm-kernel-feedback-list@broadcom.com
      Cc: linux-tegra@vger.kernel.org
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      23393d49
  5. 16 7月, 2015 1 次提交
  6. 06 5月, 2015 1 次提交
  7. 28 11月, 2014 1 次提交
  8. 29 10月, 2014 1 次提交
  9. 20 10月, 2014 1 次提交
  10. 22 7月, 2014 1 次提交
  11. 09 5月, 2014 1 次提交
  12. 04 5月, 2014 1 次提交
  13. 18 3月, 2014 1 次提交
    • L
      gpio: switch drivers to use new callback · 57ef0428
      Linus Walleij 提交于
      This switches all GPIO and pin control drivers with irqchips
      that were using .startup() and .shutdown() callbacks to lock
      GPIO lines for IRQ usage over to using the .request_resources()
      and .release_resources() callbacks just introduced into the
      irqchip vtable.
      
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Jean-Jacques Hiblot <jjhiblot@traphandler.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      57ef0428
  14. 04 12月, 2013 1 次提交
    • L
      gpio: em: lock IRQs when starting them · 0dc61623
      Linus Walleij 提交于
      This uses the new API for tagging GPIO lines as in use by
      IRQs. This enforces a few semantic checks on how the underlying
      GPIO line is used.
      
      Also assign the gpio_chip.dev pointer to be used for error
      messages.
      
      ChangeLog v1->v2:
      - Satisfy implicit semantics by calling .enable and .disable
        callbacks in the startup/shutdown callbacks.
      
      Cc: Ian Molton <ian.molton@codethink.co.uk>
      Cc: Simon Horman <horms+renesas@verge.net.au>
      Acked-by: NMagnus Damm <damm@opensource.se>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      0dc61623
  15. 25 11月, 2013 3 次提交
  16. 16 10月, 2013 1 次提交
  17. 19 9月, 2013 1 次提交
  18. 16 8月, 2013 1 次提交
  19. 21 7月, 2013 1 次提交
  20. 27 3月, 2013 1 次提交
  21. 06 3月, 2013 1 次提交
  22. 15 2月, 2013 1 次提交
  23. 29 11月, 2012 3 次提交
  24. 05 11月, 2012 1 次提交
    • A
      gpio: em: Fix build errors · 16310819
      Axel Lin 提交于
      Fix below build errors:
      
        CC [M]  drivers/gpio/gpio-em.o
      drivers/gpio/gpio-em.c: In function 'em_gio_probe':
      drivers/gpio/gpio-em.c:306: error: 'err' undeclared (first use in this function)
      drivers/gpio/gpio-em.c:306: error: (Each undeclared identifier is reported only once
      drivers/gpio/gpio-em.c:306: error: for each function it appears in.)
      drivers/gpio/gpio-em.c:308: error: label 'err3' used but not defined
      drivers/gpio/gpio-em.c:279: error: label 'err2' used but not defined
      drivers/gpio/gpio-em.c:265: error: label 'err1' used but not defined
      drivers/gpio/gpio-em.c:250: error: label 'err0' used but not defined
      drivers/gpio/gpio-em.c:309: warning: no return statement in function returning non-void
      drivers/gpio/gpio-em.c: At top level:
      drivers/gpio/gpio-em.c:311: error: expected identifier or '(' before 'if'
      drivers/gpio/gpio-em.c:317: error: expected identifier or '(' before 'if'
      drivers/gpio/gpio-em.c:323: warning: data definition has no type or storage class
      drivers/gpio/gpio-em.c:323: warning: type defaults to 'int' in declaration of 'ret'
      drivers/gpio/gpio-em.c:323: error: 'gpio_chip' undeclared here (not in a function)
      drivers/gpio/gpio-em.c:323: error: initializer element is not constant
      drivers/gpio/gpio-em.c:324: error: expected identifier or '(' before 'if'
      drivers/gpio/gpio-em.c:328: error: expected identifier or '(' before 'return'
      drivers/gpio/gpio-em.c:330: error: expected '=', ',', ';', 'asm' or '__attribute__' before ':' token
      drivers/gpio/gpio-em.c:332: error: expected '=', ',', ';', 'asm' or '__attribute__' before ':' token
      drivers/gpio/gpio-em.c:334: error: expected '=', ',', ';', 'asm' or '__attribute__' before ':' token
      drivers/gpio/gpio-em.c:336: error: expected '=', ',', ';', 'asm' or '__attribute__' before ':' token
      drivers/gpio/gpio-em.c:338: error: expected '=', ',', ';', 'asm' or '__attribute__' before ':' token
      drivers/gpio/gpio-em.c:340: error: expected '=', ',', ';', 'asm' or '__attribute__' before ':' token
      drivers/gpio/gpio-em.c:342: error: expected '=', ',', ';', 'asm' or '__attribute__' before ':' token
      drivers/gpio/gpio-em.c:344: error: expected identifier or '(' before '}' token
      drivers/gpio/gpio-em.c: In function 'em_gio_remove':
      drivers/gpio/gpio-em.c:361: error: implicit declaration of function 'em_gio_irq_domain_cleanup'
      make[2]: *** [drivers/gpio/gpio-em.o] Error 1
      make[1]: *** [drivers/gpio] Error 2
      make: *** [drivers] Error 2
      Signed-off-by: NAxel Lin <axel.lin@ingics.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      16310819
  25. 26 10月, 2012 1 次提交
    • L
      gpio/em: convert to linear IRQ domain · 7385500a
      Linus Walleij 提交于
      The code in the em driver seems to want to try to do the job of
      the linear IRQ domain (allocate descriptors and grab a virtual
      range). So why not just use the linear IRQ domain? The code is
      now cut down so we don't need isolated functions for this.
      
      Also note that we use irq_create_mapping() to make sure
      descriptors are allocated for these IRQs.
      
      Also fixed the FIXME to remove the domain after use.
      
      Cc: Grant Likely <grant.likely@secretlab.ca>
      Cc: Magnus Damm <damm@opensource.se>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      7385500a
  26. 06 9月, 2012 1 次提交
  27. 01 9月, 2012 1 次提交
  28. 10 8月, 2012 1 次提交
    • A
      gpio: em: do not discard em_gio_irq_domain_cleanup · 38eaed32
      Arnd Bergmann 提交于
      The newly added gpio-em driver marks its em_gio_irq_domain_cleanup
      function as __devexit, which would lead to that function being
      discarded in case CONFIG_HOTPLUG is disabled. However, the function
      is also called by the error handling logic em_gio_probe, which
      would cause a jump into a NULL pointer if it was removed from the
      kernel or module.
      
      Without this patch, building kzm9d_defconfig results in:
      
      WARNING: drivers/gpio/built-in.o(.devinit.text+0x330): Section mismatch in reference from the function em_gio_probe() to the function .devexit.text:em_gio_irq_domain_cleanup()
      The function __devinit em_gio_probe() references
      a function __devexit em_gio_irq_domain_cleanup().
      This is often seen when error handling in the init function
      uses functionality in the exit path.
      The fix is often to remove the __devexit annotation of
      em_gio_irq_domain_cleanup() so it may be used outside an exit section.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Cc: Magnus Damm <damm@opensource.se>
      Cc: Linus Walleij <linus.walleij@linaro.org>
      Cc: Rafael J. Wysocki <rjw@sisk.pl>
      38eaed32
  29. 18 5月, 2012 1 次提交
    • M
      gpio: Emma Mobile GPIO driver V2 · a07e103e
      Magnus Damm 提交于
      This patch is V2 of the Emma Mobile GPIO driver. This
      driver is designed to be reusable between multiple SoCs
      that share the same basic building block, but so far it
      has only been used on Emma Mobile EV2.
      
      Each driver instance handles 32 GPIOs with individually
      maskable IRQs. The driver operates on two I/O memory
      ranges and the 32 GPIOs are hooked up to two interrupts.
      
      In the case of Emma Mobile EV2 this GPIO building block
      is used as main external interrupt controller hooking up
      159 GPIOS as 159 interrupts via 5 driver instances and
      10 interrupts to the GIC and the Cortex-A9 Dual.
      Signed-off-by: NMagnus Damm <damm@opensource.se>
      Acked-by: NLinus Walleij <linus.walleij@linaro.org>
      Signed-off-by: NRafael J. Wysocki <rjw@sisk.pl>
      a07e103e