1. 18 5月, 2019 2 次提交
  2. 03 5月, 2019 3 次提交
  3. 02 5月, 2019 1 次提交
  4. 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
  5. 14 3月, 2019 1 次提交
  6. 24 2月, 2019 1 次提交
  7. 09 1月, 2019 1 次提交
  8. 01 11月, 2018 2 次提交
  9. 12 10月, 2018 1 次提交
  10. 06 10月, 2018 2 次提交
  11. 31 8月, 2018 1 次提交
  12. 24 8月, 2018 1 次提交
  13. 09 8月, 2018 1 次提交
  14. 05 8月, 2018 1 次提交
  15. 25 7月, 2018 1 次提交
    • P
      i2c/mux, locking/core: Annotate the nested rt_mutex usage · 7b94ea50
      Peter Rosin 提交于
      If an i2c topology has instances of nested muxes, then a lockdep splat
      is produced when when i2c_parent_lock_bus() is called.  Here is an
      example:
      
        ============================================
        WARNING: possible recursive locking detected
        --------------------------------------------
        insmod/68159 is trying to acquire lock:
          (i2c_register_adapter#2){+.+.}, at: i2c_parent_lock_bus+0x32/0x50 [i2c_mux]
      
        but task is already holding lock:
          (i2c_register_adapter#2){+.+.}, at: i2c_parent_lock_bus+0x32/0x50 [i2c_mux]
      
        other info that might help us debug this:
          Possible unsafe locking scenario:
      
                CPU0
                ----
           lock(i2c_register_adapter#2);
           lock(i2c_register_adapter#2);
      
          *** DEADLOCK ***
      
          May be due to missing lock nesting notation
      
        1 lock held by insmod/68159:
          #0:  (i2c_register_adapter#2){+.+.}, at: i2c_parent_lock_bus+0x32/0x50 [i2c_mux]
      
        stack backtrace:
        CPU: 13 PID: 68159 Comm: insmod Tainted: G           O
        Call Trace:
          dump_stack+0x67/0x98
          __lock_acquire+0x162e/0x1780
          lock_acquire+0xba/0x200
          rt_mutex_lock+0x44/0x60
          i2c_parent_lock_bus+0x32/0x50 [i2c_mux]
          i2c_parent_lock_bus+0x3e/0x50 [i2c_mux]
          i2c_smbus_xfer+0xf0/0x700
          i2c_smbus_read_byte+0x42/0x70
          my2c_init+0xa2/0x1000 [my2c]
          do_one_initcall+0x51/0x192
          do_init_module+0x62/0x216
          load_module+0x20f9/0x2b50
          SYSC_init_module+0x19a/0x1c0
          SyS_init_module+0xe/0x10
          do_syscall_64+0x6c/0x1a0
          entry_SYSCALL_64_after_hwframe+0x42/0xb7
      Reported-by: NJohn Sperbeck <jsperbeck@google.com>
      Tested-by: NJohn Sperbeck <jsperbeck@google.com>
      Signed-off-by: NPeter Rosin <peda@axentia.se>
      Signed-off-by: NPeter Zijlstra (Intel) <peterz@infradead.org>
      Cc: Davidlohr Bueso <dave@stgolabs.net>
      Cc: Deepa Dinamani <deepadinamani@google.com>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Linus Torvalds <torvalds@linux-foundation.org>
      Cc: Peter Chang <dpf@google.com>
      Cc: Peter Zijlstra <peterz@infradead.org>
      Cc: Philippe Ombredanne <pombredanne@nexb.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Will Deacon <will.deacon@arm.com>
      Cc: Wolfram Sang <wsa@the-dreams.de>
      Link: http://lkml.kernel.org/r/20180720083914.1950-3-peda@axentia.seSigned-off-by: NIngo Molnar <mingo@kernel.org>
      7b94ea50
  16. 21 7月, 2018 1 次提交
  17. 17 7月, 2018 4 次提交
  18. 13 7月, 2018 1 次提交
  19. 22 5月, 2018 1 次提交
    • B
      i2c: Retain info->of_node in i2c_new_device() · 04782265
      Boris Brezillon 提交于
      Currently, of_i2c_register_devices() is responsible for retaining
      info->of_node, but we're about to expose a function to parse I2C board
      info without registering the I2C device.
      
      We could possibly let this function retain ->of_node, but this approach
      is prone to reference leak since people will have to remember to call
      of_node_put() if something goes wrong between the OF node parsing and
      the registration step.
      Let's just retain the ->of_node in i2c_new_register() instead.
      Signed-off-by: NBoris Brezillon <boris.brezillon@bootlin.com>
      Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
      04782265
  20. 15 5月, 2018 2 次提交
  21. 12 4月, 2018 1 次提交
  22. 04 4月, 2018 1 次提交
  23. 03 4月, 2018 1 次提交
  24. 24 3月, 2018 1 次提交
  25. 06 3月, 2018 1 次提交
  26. 05 3月, 2018 1 次提交
    • J
      i2c: core: report OF style module alias for devices registered via OF · af503716
      Javier Martinez Canillas 提交于
      The buses should honor the firmware interface used to register the device,
      but the I2C core reports a MODALIAS of the form i2c:<device> even for I2C
      devices registered via OF.
      
      This means that user-space will never get an OF stype uevent MODALIAS even
      when the drivers modules contain aliases exported from both the I2C and OF
      device ID tables. For example, an Atmel maXTouch Touchscreen registered by
      a DT node with compatible "atmel,maxtouch" has the following module alias:
      
      $ cat /sys/class/i2c-adapter/i2c-8/8-004b/modalias
      i2c:maxtouch
      
      So udev won't be able to auto-load a module for an OF-only device driver.
      Many OF-only drivers duplicate the OF device ID table entries in an I2C ID
      table only has a workaround for how the I2C core reports the module alias.
      
      This patch changes the I2C core to report an OF related MODALIAS uevent if
      the device was registered via OF. So for the previous example, after this
      patch, the reported MODALIAS for the Atmel maXTouch will be the following:
      
      $ cat /sys/class/i2c-adapter/i2c-8/8-004b/modalias
      of:NtrackpadT<NULL>Catmel,maxtouch
      
      NOTE: This patch may break out-of-tree drivers that were relying on this
            behavior, and only had an I2C device ID table even when the device
            was registered via OF. There are no remaining drivers in mainline
            that do this, but out-of-tree drivers have to be fixed and define
            a proper OF device ID table to have module auto-loading working.
      Signed-off-by: NJavier Martinez Canillas <javierm@redhat.com>
      Tested-by: NDmitry Mastykin <mastichi@gmail.com>
      Signed-off-by: NWolfram Sang <wsa@the-dreams.de>
      af503716
  27. 17 1月, 2018 1 次提交
  28. 16 1月, 2018 2 次提交