1. 08 11月, 2017 11 次提交
  2. 20 10月, 2017 5 次提交
  3. 04 10月, 2017 2 次提交
    • L
      gpio: Alter semantics of *raw* operations to actually be raw · 02e47980
      Linus Walleij 提交于
      Currently calls to:
      gpiod_direction_output_raw()
      gpiod_set_raw_value()
      gpiod_set_raw_array_value()
      gpiod_set_raw_value_cansleep()
      gpiod_set_raw_array_value_cansleep()
      
      Respect that we do not want to invert the value written, but will
      still apply special open drain/open source semantics if the line has
      an open drain/open source flag.
      
      It also forbids us from driving an output marked as an interrupt
      line.
      
      This does not fit with the function name and expected semantics. In
      the w1 host driver (for example) we need to handle a line as open drain
      but sometimes force it to pull up, which means we should be able to
      use the gpiod_set_raw_value() for this, but it currently does not
      work.
      
      There are also use cases where users actually want to drive a line
      used by an interrupt. This is what they should be expected to use
      the *raw* accessors for.
      
      I have looked over the current users of this API and they do not seem
      to be using the *raw* accessors with open drain or open source so let's
      augment this behaviour before we have users expecting the inconsistent
      semantic.
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      02e47980
    • L
      gpio: Get rid of _prefix and __prefixes · fac9d885
      Linus Walleij 提交于
      The arbitrarily marking of a function with _ or __ is taking to mean
      "perform some inner core of the caller" or something like that. At other
      times, this syntax has a totally different meaning.
      
      I don't like this since it is unambious and unhelpful to people reading
      the code, so replace it with _commit() suffixes.
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      fac9d885
  4. 31 8月, 2017 1 次提交
  5. 23 8月, 2017 1 次提交
  6. 14 8月, 2017 4 次提交
    • T
      gpio: Cleanup kerneldoc · 950d55f5
      Thierry Reding 提交于
      Some kerneldoc has become stale or wasn't quite correct from the outset.
      Fix up the most serious issues to silence warnings when building the
      documentation.
      Signed-off-by: NThierry Reding <treding@nvidia.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      950d55f5
    • R
      gpio: Convert to using %pOF instead of full_name · 7eb6ce2f
      Rob Herring 提交于
      Now that we have a custom printf format specifier, convert users of
      full_name to use %pOF instead. This is preparation to remove storing
      of the full path string for each node.
      Signed-off-by: NRob Herring <robh@kernel.org>
      Cc: Tien Hock Loh <thloh@altera.com>
      Cc: Linus Walleij <linus.walleij@linaro.org>
      Cc: Alexandre Courbot <gnurou@gmail.com>
      Cc: Brian Norris <computersforpeace@gmail.com>
      Cc: Florian Fainelli <f.fainelli@gmail.com>
      Cc: bcm-kernel-feedback-list@broadcom.com
      Cc: Michal Simek <michal.simek@xilinx.com>
      Cc: "Sören Brinkmann" <soren.brinkmann@xilinx.com>
      Cc: linux-gpio@vger.kernel.org
      Cc: linux-arm-kernel@lists.infradead.org
      Acked-by: NGregory Fong <gregory.0xf0@gmail.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      7eb6ce2f
    • G
      gpiolib: allow gpio irqchip to map irqs dynamically · dc749a09
      Grygorii Strashko 提交于
      Now IRQ mappings are always created for all (allowed) GPIOs in gpiochip in
      gpiochip_irqchip_add_key() which goes against the idea of SPARSE_IRQ and,
      as result, leads to:
       - increasing of memory consumption for IRQ descriptors most of which will
      never ever be used (espessially on platform with a high number of GPIOs).
      (sizeof(struct irq_desc) == 256 on my tested platforms)
       - imposibility to use GPIO irqchip APIs by gpio drivers when HW implements
      GPIO IRQ functionality as IRQ crossbar/router which has only limited
      number of IRQ outputs (example from [1], all GPIOs can be mapped on only 8
      IRQs).
      
      Hence, remove static IRQ mapping code from gpiochip_irqchip_add_key() and
      instead replace irq_find_mapping() with irq_create_mapping() in
      gpiochip_to_irq(). Also add additional gpiochip_irqchip_irq_valid() calls
      in gpiochip_to_irq() and gpiochip_irq_map().
      
      After this change gpio2irq mapping will happen the following way when GPIO
      irqchip APIs are used by gpio driver:
       - IRQ mappings will be created statically if driver passes first_irq>0
      vlaue in gpiochip_irqchip_add_key().
       - IRQ mappings will be created dynamically from gpio_to_irq() or
      of_irq_get().
      
      Tested on am335x-evm and dra72-evm-revc.
      - dra72-evm-revc: number of created irq mappings decreased from 402 -> 135
        Mem savings 267*256 = 68352 (66kB)
      - am335x-evm: number of created irq mappings decreased from 188 -> 63
        Mem savings 125*256 = 32000 (31kB)
      
      [1] https://lkml.org/lkml/2017/6/15/428Signed-off-by: NGrygorii Strashko <grygorii.strashko@ti.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      dc749a09
    • T
      gpiolib: request the gpio before querying its direction · 108d23e3
      Timur Tabi 提交于
      Before querying a GPIO to determine its direction, the GPIO should be
      formally requested.  This allows the GPIO driver to block access to
      unavailable GPIOs, which makes it easier for some drivers to support
      sparse GPIO maps.
      Signed-off-by: NTimur Tabi <timur@codeaurora.org>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      108d23e3
  7. 01 8月, 2017 1 次提交
  8. 29 6月, 2017 1 次提交
  9. 31 5月, 2017 1 次提交
  10. 29 5月, 2017 4 次提交
  11. 22 5月, 2017 1 次提交
  12. 13 4月, 2017 1 次提交
  13. 07 4月, 2017 1 次提交
    • L
      gpio: core: Decouple open drain/source flag with active low/high · 4c0facdd
      Laxman Dewangan 提交于
      Currently, the GPIO interface is said to Open Drain if it is Single
      Ended and active LOW. Similarly, it is said as Open Source if it is
      Single Ended and active HIGH.
      
      The active HIGH/LOW is used in the interface for setting the pin
      state to HIGH or LOW when enabling/disabling the interface.
      
      In Open Drain interface, pin is set to HIGH by putting pin in
      high impedance and LOW by driving to the LOW.
      
      In Open Source interface, pin is set to HIGH by driving pin to
      HIGH and set to LOW by putting pin in high impedance.
      
      With above, the Open Drain/Source is unrelated to the active LOW/HIGH
      in interface. There is interface where the enable/disable of interface
      is ether active LOW or HIGH but it is Open Drain type.
      
      Hence decouple the Open Drain with Single Ended + Active LOW and
      Open Source with Single Ended + Active HIGH.
      
      Adding different flag for the Open Drain/Open Source which is valid
      only when Single ended flag is enabled.
      Signed-off-by: NLaxman Dewangan <ldewangan@nvidia.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      4c0facdd
  14. 21 3月, 2017 1 次提交
  15. 17 3月, 2017 1 次提交
  16. 14 3月, 2017 1 次提交
  17. 05 2月, 2017 1 次提交
  18. 31 1月, 2017 1 次提交
  19. 26 1月, 2017 1 次提交
    • M
      pinctrl / gpio: Introduce .set_config() callback for GPIO chips · 2956b5d9
      Mika Westerberg 提交于
      Currently we already have two pin configuration related callbacks
      available for GPIO chips .set_single_ended() and .set_debounce(). In
      future we expect to have even more, which does not scale well if we need
      to add yet another callback to the GPIO chip structure for each possible
      configuration parameter.
      
      Better solution is to reuse what we already have available in the
      generic pinconf.
      
      To support this, we introduce a new .set_config() callback for GPIO
      chips. The callback takes a single packed pin configuration value as
      parameter. This can then be extended easily beyond what is currently
      supported by just adding new types to the generic pinconf enum.
      
      If the GPIO driver is backed up by a pinctrl driver the GPIO driver can
      just assign gpiochip_generic_config() (introduced in this patch) to
      .set_config and that will take care configuration requests are directed
      to the pinctrl driver.
      
      We then convert the existing drivers over .set_config() and finally
      remove the .set_single_ended() and .set_debounce() callbacks.
      Suggested-by: NLinus Walleij <linus.walleij@linaro.org>
      Signed-off-by: NMika Westerberg <mika.westerberg@linux.intel.com>
      Reviewed-by: NAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      Signed-off-by: NLinus Walleij <linus.walleij@linaro.org>
      2956b5d9