1. 29 11月, 2019 1 次提交
  2. 16 11月, 2019 1 次提交
  3. 25 10月, 2019 1 次提交
  4. 30 8月, 2019 1 次提交
  5. 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
  6. 07 8月, 2019 1 次提交
  7. 01 8月, 2019 1 次提交
  8. 29 6月, 2019 4 次提交
  9. 26 6月, 2019 1 次提交
  10. 15 6月, 2019 1 次提交
  11. 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
  12. 18 5月, 2019 2 次提交
  13. 03 5月, 2019 3 次提交
  14. 02 5月, 2019 1 次提交
  15. 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
  16. 14 3月, 2019 1 次提交
  17. 24 2月, 2019 1 次提交
  18. 09 1月, 2019 1 次提交
  19. 01 11月, 2018 2 次提交
  20. 12 10月, 2018 1 次提交
  21. 06 10月, 2018 2 次提交
  22. 31 8月, 2018 1 次提交
  23. 24 8月, 2018 1 次提交
  24. 09 8月, 2018 1 次提交
  25. 05 8月, 2018 1 次提交
  26. 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
  27. 21 7月, 2018 1 次提交
  28. 17 7月, 2018 3 次提交