devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/5] Add support to LIS2DW12 accel sensor
@ 2017-08-30 11:50 Lorenzo Bianconi
       [not found] ` <20170830115043.3738-1-lorenzo.bianconi-qxv4g6HH51o@public.gmane.org>
  0 siblings, 1 reply; 22+ messages in thread
From: Lorenzo Bianconi @ 2017-08-30 11:50 UTC (permalink / raw)
  To: jic23-DgEjT+Ai2ygdnm+yROfE0A
  Cc: linux-iio-u79uwXL29TY76Z2rM5mHXA,
	linus.walleij-QSEj5FYQhm4dnm+yROfE0A,
	lorenzo.bianconi-qxv4g6HH51o, devicetree-u79uwXL29TY76Z2rM5mHXA

Modify management of drdy line and status register in order to support
LIS2DW12 device

Changes since v2:
- swap status register patch (3rd in v2) with irq{1,2} definition one
  (1st in v2)
- patchset rebased onto 'fix drdy line configuration for LIS3MDL' patch
Changes since v1:
- remove drdy_irq parameter from LPS001WP settings since the sensor
does not support data-ready interrupts

Lorenzo Bianconi (5):
  iio: st_sensors: add register mask for status register
  iio: st_sensors: decouple irq1 configuration parameters from the irq2
    ones
  iio: st_sensors: do not always write enable_axis register
  iio: accel: add support to LIS2DW12
  dt-bindings: iio: accel: add LIS2DW12 sensor device binding

 .../devicetree/bindings/iio/st-sensors.txt         |   1 +
 drivers/iio/accel/st_accel.h                       |   2 +
 drivers/iio/accel/st_accel_core.c                  | 180 +++++++++++++++++----
 drivers/iio/accel/st_accel_i2c.c                   |   5 +
 drivers/iio/accel/st_accel_spi.c                   |   5 +
 drivers/iio/common/st_sensors/st_sensors_core.c    |  35 ++--
 drivers/iio/common/st_sensors/st_sensors_trigger.c |  16 +-
 drivers/iio/gyro/st_gyro_core.c                    |  33 ++--
 drivers/iio/magnetometer/st_magn_core.c            |  16 +-
 drivers/iio/pressure/st_pressure_core.c            |  46 ++++--
 include/linux/iio/common/st_sensors.h              |  23 ++-
 11 files changed, 270 insertions(+), 92 deletions(-)

-- 
2.14.1

^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2017-10-09 21:02 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-30 11:50 [PATCH v3 0/5] Add support to LIS2DW12 accel sensor Lorenzo Bianconi
     [not found] ` <20170830115043.3738-1-lorenzo.bianconi-qxv4g6HH51o@public.gmane.org>
2017-08-30 11:50   ` [PATCH v3 1/5] iio: st_sensors: add register mask for status register Lorenzo Bianconi
     [not found]     ` <20170830115043.3738-2-lorenzo.bianconi-qxv4g6HH51o@public.gmane.org>
2017-09-21 11:13       ` Linus Walleij
     [not found]         ` <CACRpkdaT-G_fRYVjhwiQiYuhjVHG7f_D1R=GHZVUpH7_6j7OHw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-09-21 15:36           ` Lorenzo Bianconi
     [not found]             ` <CAA2SeN+0rjAB-84tZi81wu8AGRWOShwLGbW1OffO3GZ92-QOzQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-10-09 20:03               ` Jonathan Cameron
2017-08-30 11:50   ` [PATCH v3 2/5] iio: st_sensors: decouple irq1 configuration parameters from the irq2 ones Lorenzo Bianconi
     [not found]     ` <20170830115043.3738-3-lorenzo.bianconi-qxv4g6HH51o@public.gmane.org>
2017-09-21 11:14       ` Linus Walleij
     [not found]         ` <CACRpkdY-xgQ_Eu_Zf1EH-AnSo1pxTq8Pfg37UorMKCk_N7_TEg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-09-21 15:38           ` Lorenzo Bianconi
     [not found]             ` <CAA2SeNJ8cq+hdEQP4d9Ped9SBQnwCgmSydbShtOexuSEwRGzeA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-10-09 20:05               ` Jonathan Cameron
2017-08-30 11:50   ` [PATCH v3 3/5] iio: st_sensors: do not always write enable_axis register Lorenzo Bianconi
     [not found]     ` <20170830115043.3738-4-lorenzo.bianconi-qxv4g6HH51o@public.gmane.org>
2017-09-21 11:15       ` Linus Walleij
     [not found]         ` <CACRpkdbFvAr26d_ExN-PuazsA_ZbPoOFuCKn-k-s3uwVvd64jg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-10-09 20:59           ` Jonathan Cameron
2017-08-30 11:50   ` [PATCH v3 4/5] iio: accel: add support to LIS2DW12 Lorenzo Bianconi
     [not found]     ` <20170830115043.3738-5-lorenzo.bianconi-qxv4g6HH51o@public.gmane.org>
2017-09-21 11:17       ` Linus Walleij
     [not found]         ` <CACRpkdZE_67Qq8=E+Hs1kSH5cjUv_EOMiogZ+ss_wd_KNmzLfw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-10-09 21:00           ` Jonathan Cameron
2017-08-30 11:50   ` [PATCH v3 5/5] dt-bindings: iio: accel: add LIS2DW12 sensor device binding Lorenzo Bianconi
     [not found]     ` <20170830115043.3738-6-lorenzo.bianconi-qxv4g6HH51o@public.gmane.org>
2017-09-21 11:18       ` Linus Walleij
     [not found]         ` <CACRpkdbKkctx3t3J36HBwkaYRq_CTadDed-ZkfL8ynXYBKVytg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-10-09 21:02           ` Jonathan Cameron
2017-09-03 16:52   ` [PATCH v3 0/5] Add support to LIS2DW12 accel sensor Jonathan Cameron
2017-10-01 13:15     ` Lorenzo Bianconi
     [not found]       ` <CAA2SeNKaUhLvLV6iUoirotMtz+nitW5LzLS0una3=BH9v7=0qA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-10-02 10:33         ` Jonathan Cameron
     [not found]           ` <20171002113312.00000064-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>
2017-10-02 10:37             ` Lorenzo Bianconi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).