1. 25 3月, 2020 1 次提交
  2. 16 1月, 2020 1 次提交
  3. 10 1月, 2020 1 次提交
    • R
      i2c: fix bus recovery stop mode timing · cf8ce8b8
      Russell King 提交于
      The I2C specification states that tsu:sto for standard mode timing must
      be at minimum 4us. Pictographically, this is:
      
      SCL: ____/~~~~~~~~~
      SDA: _________/~~~~
             ->|    |<- 4us minimum
      
      We are currently waiting 2.5us between asserting SCL and SDA, which is
      in violation of the standard. Adjust the timings to ensure that we meet
      what is stipulated as the minimum timings to ensure that all devices
      correctly interpret the STOP bus transition.
      
      This is more important than trying to generate a square wave with even
      duty cycle.
      Signed-off-by: NRussell King <rmk+kernel@armlinux.org.uk>
      Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
      cf8ce8b8
  4. 17 12月, 2019 1 次提交
  5. 11 12月, 2019 1 次提交
  6. 29 11月, 2019 1 次提交
  7. 16 11月, 2019 1 次提交
  8. 25 10月, 2019 1 次提交
  9. 30 8月, 2019 1 次提交
  10. 14 8月, 2019 1 次提交
    • W
      i2c: replace i2c_new_secondary_device with an ERR_PTR variant · af80559b
      Wolfram Sang 提交于
      In the general move to have i2c_new_*_device functions which return
      ERR_PTR instead of NULL, this patch converts i2c_new_secondary_device().
      
      There are only few users, so this patch converts the I2C core and all
      users in one go. The function gets renamed to i2c_new_ancillary_device()
      so out-of-tree users will get a build failure to understand they need to
      adapt their error checking code.
      Signed-off-by: NWolfram Sang <wsa+renesas@sang-engineering.com>
      Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> # adv748x
      Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> # adv7511 + adv7604
      Reviewed-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> # adv7604
      Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
      af80559b
  11. 07 8月, 2019 1 次提交
  12. 01 8月, 2019 1 次提交
  13. 29 6月, 2019 4 次提交
  14. 26 6月, 2019 1 次提交
  15. 15 6月, 2019 1 次提交
  16. 31 5月, 2019 1 次提交
    • T
      treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 157 · c942fddf
      Thomas Gleixner 提交于
      Based on 3 normalized pattern(s):
      
        this program is free software you can redistribute it and or modify
        it under the terms of the gnu general public license as published by
        the free software foundation either version 2 of the license or at
        your option any later version this program is distributed in the
        hope that it will be useful but without any warranty without even
        the implied warranty of merchantability or fitness for a particular
        purpose see the gnu general public license for more details
      
        this program is free software you can redistribute it and or modify
        it under the terms of the gnu general public license as published by
        the free software foundation either version 2 of the license or at
        your option any later version [author] [kishon] [vijay] [abraham]
        [i] [kishon]@[ti] [com] this program is distributed in the hope that
        it will be useful but without any warranty without even the implied
        warranty of merchantability or fitness for a particular purpose see
        the gnu general public license for more details
      
        this program is free software you can redistribute it and or modify
        it under the terms of the gnu general public license as published by
        the free software foundation either version 2 of the license or at
        your option any later version [author] [graeme] [gregory]
        [gg]@[slimlogic] [co] [uk] [author] [kishon] [vijay] [abraham] [i]
        [kishon]@[ti] [com] [based] [on] [twl6030]_[usb] [c] [author] [hema]
        [hk] [hemahk]@[ti] [com] this program is distributed in the hope
        that it will be useful but without any warranty without even the
        implied warranty of merchantability or fitness for a particular
        purpose see the gnu general public license for more details
      
      extracted by the scancode license scanner the SPDX license identifier
      
        GPL-2.0-or-later
      
      has been chosen to replace the boilerplate/reference in 1105 file(s).
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      Reviewed-by: NAllison Randal <allison@lohutok.net>
      Reviewed-by: NRichard Fontana <rfontana@redhat.com>
      Reviewed-by: NKate Stewart <kstewart@linuxfoundation.org>
      Cc: linux-spdx@vger.kernel.org
      Link: https://lkml.kernel.org/r/20190527070033.202006027@linutronix.deSigned-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      c942fddf
  17. 18 5月, 2019 2 次提交
  18. 03 5月, 2019 3 次提交
  19. 02 5月, 2019 1 次提交
  20. 16 4月, 2019 3 次提交
    • W
      i2c: core: introduce callbacks for atomic transfers · 63b96983
      Wolfram Sang 提交于
      We had the request to access devices very late when interrupts are not
      available anymore multiple times now. Mostly to prepare shutdown or
      reboot. Allow adapters to specify a specific callback for this case.
      Note that we fall back to the generic {master|smbus}_xfer callback if
      this new atomic one is not present. This is intentional to preserve the
      previous behaviour and avoid regressions. Because there are drivers not
      using interrupts or because it might have worked "accidently" before.
      Signed-off-by: NWolfram Sang <wsa+renesas@sang-engineering.com>
      Reviewed-by Andy Shevchenko <andriy.shevchenko@linux.intel.com>
      Tested-by: NStefan Lengfeld <contact@stefanchrist.eu>
      Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
      63b96983
    • W
      i2c: core: use I2C locking behaviour also for SMBUS · 83c42212
      Wolfram Sang 提交于
      If I2C transfers are executed in atomic contexts, trylock is used
      instead of lock. This behaviour was missing for SMBUS, although a lot of
      transfers are of SMBUS type, either emulated or direct. So, factor out
      the locking routine into a helper and use it for I2C and SMBUS.
      Signed-off-by: NWolfram Sang <wsa+renesas@sang-engineering.com>
      Reviewed-by Andy Shevchenko <andriy.shevchenko@linux.intel.com>
      Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
      83c42212
    • W
      i2c: core: remove use of in_atomic() · bae1d3a0
      Wolfram Sang 提交于
      Commit cea443a8 ("i2c: Support i2c_transfer in atomic contexts")
      added in_atomic() to the I2C core. However, the use of in_atomic()
      outside of core kernel code is discouraged and was already[1] when this
      code was added in early 2008. The above commit was a preparation for
      commit b7a36701 ("i2c-pxa: Add polling transfer"). Its commit
      message says explicitly it was added "for cases where I2C transactions
      have to occur at times interrup[t]s are disabled". So, the intention was
      'disabled interrupts'. This matches the use cases for atomic I2C
      transfers I have seen so far: very late communication (mostly to a PMIC)
      to powerdown or reboot the system. For those cases, interrupts are
      disabled then. It doesn't seem that in_atomic() adds value.
      
      After a discussion with Peter Zijlstra[2], we came up with a better set
      of conditionals to match the use case.
      
      The I2C core will soon gain an extra callback into bus drivers
      especially for atomic transfers to make them more generic. The code
      deciding which transfer to use (atomic/non-atomic) should mimic the
      behaviour which locking to use (trylock/lock). This is why we add a
      helper for it.
      
      [1] https://lwn.net/Articles/274695/
      [2] http://patchwork.ozlabs.org/patch/1067437/Signed-off-by: NWolfram Sang <wsa+renesas@sang-engineering.com>
      Reviewed-by Andy Shevchenko <andriy.shevchenko@linux.intel.com>
      Tested-by: NStefan Lengfeld <contact@stefanchrist.eu>
      Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
      bae1d3a0
  21. 14 3月, 2019 1 次提交
  22. 24 2月, 2019 1 次提交
  23. 09 1月, 2019 1 次提交
  24. 01 11月, 2018 2 次提交
  25. 12 10月, 2018 1 次提交
  26. 06 10月, 2018 2 次提交
  27. 31 8月, 2018 1 次提交
  28. 24 8月, 2018 1 次提交
  29. 09 8月, 2018 1 次提交
  30. 05 8月, 2018 1 次提交