LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Irina Tirdea <irina.tirdea@intel.com>
To: Jonathan Cameron <jic23@kernel.org>, linux-iio@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, Vlad Dogaru <vlad.dogaru@intel.com>,
Daniel Baluta <daniel.baluta@intel.com>,
Hartmut Knaack <knaack.h@gmx.de>,
Lars-Peter Clausen <lars@metafoo.de>,
Peter Meerwald <pmeerw@pmeerw.net>,
Irina Tirdea <irina.tirdea@intel.com>
Subject: [PATCH v2 00/10] Add MMA9553 driver & PM support for MMA9551
Date: Sun, 11 Jan 2015 21:10:06 +0200 [thread overview]
Message-ID: <1421003416-27557-1-git-send-email-irina.tirdea@intel.com> (raw)
This set of patches includes changes for the MMA9551 and MMA9553 drivers:
- add support for Freescale MMA9553L Intelligent Pedometer Platform
(http://www.freescale.com/files/sensors/doc/ref_manual/MMA9553LSWRM.pdf)
- add new iio channels types and modifiers needed by the pedometer
- add runtime PM support for MMA9551
Changes in v2:
- removed IIO_CHAN_INFO_CALIBGENDER and used extended attribute
enum interface instead
- renamed IIO_CALORIES channel to IIO_ENERGY
- replaced IIO_SPEED with IIO_VELOCITY and IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z
- introduced IIO_EV_TYPE_CHANGE to use for step detector instead of
IIO_EV_TYPE_INSTANCE
- introduce IIO_CHAN_INFO_FILTER_OUTLIERS_THRESH and
IIO_CHAN_INFO_FILTER_OUTLIERS_PERIOD
- add kernel-doc comments to functions exported in mma9551_core.c
- updated ABI documentation to include all exported attributes in mma9553
- updated mma9553 driver code according to comments from Jonathan
Irina Tirdea (10):
iio: core: Introduce ENERGY channel type
iio: core: Introduce DISTANCE channel type
iio: core: Introduce IIO_VELOCITY and IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z
iio: core: Introduce IO_CHAN_INFO_CALIBWEIGHT
iio: core: Introduce CHANGE event type
iio: core: Remove IIO_EV_TYPE_INSTANCE
iio: core: Introduce IIO_CHAN_INFO_FILTER_OUTLIERS_THRESH and _PERIOD
iio: accel: mma9551: Add runtime pm support
iio: accel: mma9551: split driver to expose mma955x api
iio: add driver for Freescale MMA9553
Documentation/ABI/testing/sysfs-bus-iio | 127 +-
drivers/iio/accel/Kconfig | 15 +
drivers/iio/accel/Makefile | 5 +-
drivers/iio/accel/mma9551.c | 489 ++------
drivers/iio/accel/mma9551_core.c | 798 ++++++++++++
drivers/iio/accel/mma9551_core.h | 81 ++
drivers/iio/accel/mma9553.c | 1321 ++++++++++++++++++++
drivers/iio/industrialio-core.c | 7 +
drivers/iio/industrialio-event.c | 2 +-
.../staging/iio/Documentation/iio_event_monitor.c | 4 +-
drivers/staging/iio/iio_simple_dummy.c | 2 +-
drivers/staging/iio/iio_simple_dummy_events.c | 4 +-
include/linux/iio/iio.h | 14 +
include/linux/iio/types.h | 6 +-
14 files changed, 2455 insertions(+), 420 deletions(-)
create mode 100644 drivers/iio/accel/mma9551_core.c
create mode 100644 drivers/iio/accel/mma9551_core.h
create mode 100644 drivers/iio/accel/mma9553.c
--
1.9.1
next reply other threads:[~2015-01-11 19:10 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-11 19:10 Irina Tirdea [this message]
2015-01-11 19:10 ` [PATCH v2 01/10] iio: core: Introduce ENERGY channel type Irina Tirdea
2015-01-25 22:58 ` Jonathan Cameron
2015-03-29 0:14 ` Hartmut Knaack
2015-03-30 11:18 ` Tirdea, Irina
2015-01-11 19:10 ` [PATCH v2 02/10] iio: core: Introduce DISTANCE " Irina Tirdea
2015-01-25 22:59 ` Jonathan Cameron
2015-01-11 19:10 ` [PATCH v2 03/10] iio: core: Introduce IIO_VELOCITY and IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z Irina Tirdea
2015-01-25 23:00 ` Jonathan Cameron
2015-01-11 19:10 ` [PATCH v2 04/10] iio: core: Introduce IO_CHAN_INFO_CALIBWEIGHT Irina Tirdea
2015-01-25 23:01 ` Jonathan Cameron
2015-01-11 19:10 ` [PATCH v2 05/10] iio: core: Introduce CHANGE event type Irina Tirdea
2015-01-25 23:03 ` Jonathan Cameron
2015-01-11 19:10 ` [PATCH v2 06/10] iio: core: Remove IIO_EV_TYPE_INSTANCE Irina Tirdea
2015-01-26 19:04 ` Jonathan Cameron
2015-01-11 19:10 ` [PATCH v2 07/10] iio: core: Introduce IIO_CHAN_INFO_FILTER_OUTLIERS_THRESH and _PERIOD Irina Tirdea
2015-01-25 23:07 ` Jonathan Cameron
2015-01-26 14:40 ` Daniel Baluta
2015-01-26 19:01 ` Jonathan Cameron
2015-01-27 16:20 ` Tirdea, Irina
2015-01-11 19:10 ` [PATCH v2 08/10] iio: accel: mma9551: Add runtime pm support Irina Tirdea
2015-01-26 19:08 ` Jonathan Cameron
2015-01-27 17:18 ` Tirdea, Irina
2015-01-11 19:10 ` [PATCH v2 09/10] iio: accel: mma9551: split driver to expose mma955x api Irina Tirdea
2015-01-26 19:25 ` Jonathan Cameron
2015-01-11 19:10 ` [PATCH v2 10/10] iio: add driver for Freescale MMA9553 Irina Tirdea
2015-01-26 20:44 ` Jonathan Cameron
2015-01-27 17:09 ` Tirdea, Irina
2015-01-27 17:31 ` Jonathan Cameron
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1421003416-27557-1-git-send-email-irina.tirdea@intel.com \
--to=irina.tirdea@intel.com \
--cc=daniel.baluta@intel.com \
--cc=jic23@kernel.org \
--cc=knaack.h@gmx.de \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pmeerw@pmeerw.net \
--cc=vlad.dogaru@intel.com \
--subject='Re: [PATCH v2 00/10] Add MMA9553 driver & PM support for MMA9551' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
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).