1. 12 3月, 2021 7 次提交
  2. 04 12月, 2020 1 次提交
    • N
      iio: buffer: Fix demux update · 19ef7b70
      Nuno Sá 提交于
      When updating the buffer demux, we will skip a scan element from the
      device in the case `in_ind != out_ind` and we enter the while loop.
      in_ind should only be refreshed with `find_next_bit()` in the end of the
      loop.
      
      Note, to cause problems we need a situation where we are skippig over
      an element (channel not enabled) that happens to not have the same size
      as the next element.   Whilst this is a possible situation we haven't
      actually identified any cases in mainline where it happens as most drivers
      have consistent channel storage sizes with the exception of the timestamp
      which is the last element and hence never skipped over.
      
      Fixes: 5ada4ea9 ("staging:iio: add demux optionally to path from device to buffer")
      Signed-off-by: NNuno Sá <nuno.sa@analog.com>
      Link: https://lore.kernel.org/r/20201112144323.28887-1-nuno.sa@analog.com
      Cc: <Stable@vger.kernel.org>
      Signed-off-by: NJonathan Cameron <Jonathan.Cameron@huawei.com>
      19ef7b70
  3. 21 11月, 2020 1 次提交
  4. 18 9月, 2020 1 次提交
  5. 15 7月, 2020 1 次提交
  6. 08 7月, 2020 1 次提交
  7. 21 6月, 2020 1 次提交
    • L
      iio: Move attach/detach of the poll func to the core · f11d59d8
      Lars-Peter Clausen 提交于
      All devices using a triggered buffer need to attach and detach the trigger
      to the device in order to properly work. Instead of doing this in each and
      every driver by hand move this into the core.
      
      At this point in time, all drivers should have been resolved to
      attach/detach the poll-function in the same order.
      
      This patch removes all explicit calls of iio_triggered_buffer_postenable()
      & iio_triggered_buffer_predisable() in all drivers, since the core handles
      now the pollfunc attach/detach.
      
      The more peculiar change is for the 'at91-sama5d2_adc' driver, since it's
      not immediately obvious that removing the hooks doesn't break anything.
      Eugen was able to test on at91-sama5d2-adc driver, sama5d2-xplained board.
      All seems to be fine.
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NAlexandru Ardelean <alexandru.ardelean@analog.com>
      Tested-by: Eugen Hristev <eugen.hristev@microchip.com> #for at91-sama5d2-adc
      Signed-off-by: NJonathan Cameron <Jonathan.Cameron@huawei.com>
      f11d59d8
  8. 17 5月, 2020 2 次提交
  9. 03 5月, 2020 1 次提交
  10. 19 4月, 2020 3 次提交
    • A
      iio: buffer: remove 'scan_el_attrs' attribute group from buffer struct · 2e036804
      Alexandru Ardelean 提交于
      This field doesn't seem used. It seems that only 'buffer->attrs' was ever
      used to extend sysfs attributes for an IIO buffer.
      
      Moving forward, it may not make sense to keep it. This patch removes the
      field and it's initialization code.
      
      Since we want to rework IIO buffer, to be able to add more buffers per IIO
      device, we will merge [somehow] the 'buffer' & 'scan_elements' groups, and
      we will continue to add the attributes to the 'buffer' group.
      
      Removing it here, will also make the rework here a bit smaller, since
      this code will not be present.
      Signed-off-by: NAlexandru Ardelean <alexandru.ardelean@analog.com>
      Signed-off-by: NJonathan Cameron <Jonathan.Cameron@huawei.com>
      2e036804
    • L
      iio: buffer: Don't allow buffers without any channels enabled to be activated · b7329249
      Lars-Peter Clausen 提交于
      Before activating a buffer make sure that at least one channel is enabled.
      Activating a buffer with 0 channels enabled doesn't make too much sense and
      disallowing this case makes sure that individual driver don't have to add
      special case code to handle it.
      
      Currently, without this patch enabling a buffer is possible and no error is
      produced. With this patch -EINVAL is returned.
      
      An example of execution with this patch and some instrumented print-code:
         root@analog:~# cd /sys/bus/iio/devices/iio\:device3/buffer
         root@analog:/sys/bus/iio/devices/iio:device3/buffer# echo 1 > enable
         0: iio_verify_update 748 indio_dev->masklength 2 *insert_buffer->scan_mask 00000000
         1: iio_verify_update 753
         2:__iio_update_buffers 1115 ret -22
         3: iio_buffer_store_enable 1241 ret -22
         -bash: echo: write error: Invalid argument
      1, 2 & 3 are exit-error paths. 0 the first print in iio_verify_update()
      rergardless of error path.
      
      Without this patch (and same instrumented print-code):
         root@analog:~# cd /sys/bus/iio/devices/iio\:device3/buffer
         root@analog:/sys/bus/iio/devices/iio:device3/buffer# echo 1 > enable
         0: iio_verify_update 748 indio_dev->masklength 2 *insert_buffer->scan_mask 00000000
         root@analog:/sys/bus/iio/devices/iio:device3/buffer#
      Buffer is enabled with no error.
      
      Note from Jonathan: Probably not suitable for automatic application to stable.
      This has been there from the very start.  It tidies up an odd corner
      case but won't effect any 'real' users.
      
      Fixes: 84b36ce5 ("staging:iio: Add support for multiple buffers")
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NAlexandru Ardelean <alexandru.ardelean@analog.com>
      Signed-off-by: NJonathan Cameron <Jonathan.Cameron@huawei.com>
      b7329249
    • A
      iio: buffer: re-introduce bitmap_zalloc() for trialmask · ccd428e4
      Alexandru Ardelean 提交于
      Commit 3862828a ("iio: buffer: Switch to bitmap_zalloc()") introduced
      bitmap_alloc(), but commit 20ea39ef ("iio: Fix scan mask selection")
      reverted it.
      
      This change adds it back. The only difference is that it's adding
      bitmap_zalloc(). There might be some changes later that would require
      initializing it to zero. In any case, now it's already zero-ing the
      trialmask.
      
      Appears to have been the result of merge conflict resolution rather
      than an intentional revert.
      Reviewed-by: NAndy Shevchenko <andriy.shevchenko@linux.intel.com>
      Signed-off-by: NAlexandru Ardelean <alexandru.ardelean@analog.com>
      Signed-off-by: NJonathan Cameron <Jonathan.Cameron@huawei.com>
      ccd428e4
  11. 13 1月, 2020 1 次提交
  12. 29 12月, 2019 1 次提交
  13. 19 6月, 2019 1 次提交
  14. 05 4月, 2019 1 次提交
  15. 10 3月, 2019 1 次提交
  16. 18 2月, 2018 1 次提交
  17. 12 2月, 2018 1 次提交
    • L
      vfs: do bulk POLL* -> EPOLL* replacement · a9a08845
      Linus Torvalds 提交于
      This is the mindless scripted replacement of kernel use of POLL*
      variables as described by Al, done by this script:
      
          for V in IN OUT PRI ERR RDNORM RDBAND WRNORM WRBAND HUP RDHUP NVAL MSG; do
              L=`git grep -l -w POLL$V | grep -v '^t' | grep -v /um/ | grep -v '^sa' | grep -v '/poll.h$'|grep -v '^D'`
              for f in $L; do sed -i "-es/^\([^\"]*\)\(\<POLL$V\>\)/\\1E\\2/" $f; done
          done
      
      with de-mangling cleanups yet to come.
      
      NOTE! On almost all architectures, the EPOLL* constants have the same
      values as the POLL* constants do.  But they keyword here is "almost".
      For various bad reasons they aren't the same, and epoll() doesn't
      actually work quite correctly in some cases due to this on Sparc et al.
      
      The next patch from Al will sort out the final differences, and we
      should be all done.
      Scripted-by: NAl Viro <viro@zeniv.linux.org.uk>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      a9a08845
  18. 08 1月, 2018 1 次提交
  19. 29 11月, 2017 1 次提交
  20. 02 3月, 2017 1 次提交
  21. 11 1月, 2017 6 次提交
  22. 24 9月, 2016 1 次提交
  23. 06 9月, 2016 1 次提交
  24. 21 8月, 2016 1 次提交
    • B
      iio: fix sched WARNING "do not call blocking ops when !TASK_RUNNING" · fcf68f3c
      Brian Norris 提交于
      When using CONFIG_DEBUG_ATOMIC_SLEEP, the scheduler nicely points out
      that we're calling sleeping primitives within the wait_event loop, which
      means we might clobber the task state:
      
      [   10.831289] do not call blocking ops when !TASK_RUNNING; state=1 set at [<ffffffc00026b610>]
      [   10.845531] ------------[ cut here ]------------
      [   10.850161] WARNING: at kernel/sched/core.c:7630
      ...
      [   12.164333] ---[ end trace 45409966a9a76438 ]---
      [   12.168942] Call trace:
      [   12.171391] [<ffffffc00024ed44>] __might_sleep+0x64/0x90
      [   12.176699] [<ffffffc000954774>] mutex_lock_nested+0x50/0x3fc
      [   12.182440] [<ffffffc0007b9424>] iio_kfifo_buf_data_available+0x28/0x4c
      [   12.189043] [<ffffffc0007b76ac>] iio_buffer_ready+0x60/0xe0
      [   12.194608] [<ffffffc0007b7834>] iio_buffer_read_first_n_outer+0x108/0x1a8
      [   12.201474] [<ffffffc000370d48>] __vfs_read+0x58/0x114
      [   12.206606] [<ffffffc000371740>] vfs_read+0x94/0x118
      [   12.211564] [<ffffffc0003720f8>] SyS_read+0x64/0xb4
      [   12.216436] [<ffffffc000203cb4>] el0_svc_naked+0x24/0x28
      
      To avoid this, we should (a la https://lwn.net/Articles/628628/) use the
      wait_woken() function, which avoids the nested sleeping while still
      handling races between waiting / wake-events.
      Signed-off-by: NBrian Norris <briannorris@chromium.org>
      Reviewed-by: NLars-Peter Clausen <lars@metafoo.de>
      Cc: <Stable@vger.kernel.org> # 3.19+ for introduction of wake_woken
      Signed-off-by: NJonathan Cameron <jic23@kernel.org>
      fcf68f3c
  25. 28 3月, 2016 1 次提交
    • I
      iio: fix config watermark initial value · 1bef2c1d
      Irina Tirdea 提交于
      config structure is set to 0 when updating the buffers, so by
      default config->watermark will be 0. When computing the minimum
      between config->watermark and the buffer->watermark or
      insert_buffer-watermark, this will always be 0 regardless of the
      value set by the user for the buffer.
      
      Set as initial value for config->watermark the maximum allowed
      value so that the minimum value will always be set from one of the
      buffers.
      Signed-off-by: NIrina Tirdea <irina.tirdea@intel.com>
      Fixes: f0566c0c ("iio: Set device watermark based on watermark of all
      attached buffers")
      Cc: <Stable@vger.kernel.org>
      Signed-off-by: NJonathan Cameron <jic23@kernel.org>
      1bef2c1d
  26. 07 2月, 2016 1 次提交