All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/8] iio: mma8452: improve driver and support more chips
@ 2015-07-27 14:08 ` Martin Kepplinger
  0 siblings, 0 replies; 49+ messages in thread
From: Martin Kepplinger @ 2015-07-27 14:08 UTC (permalink / raw)
  To: jic23, knaack.h, lars, pmeerw, mfuzzey, roberta.dobrescu,
	robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak
  Cc: devicetree, linux-iio, linux-kernel, christoph.muellner

Before I go away for holidays, this is version 5 of the mma8452 driver
improvements. This version removes the unnessasary DRIVER_NAME define and
improves the DT property "use_int2" to be extendible for any future additions
to the driver.

This is based on today's -next.


These changes add support for motion interrupts and 3 more accelerometer
chips, two of which use them because they don't support the until now
included transient interrupt sources:

MMA8453Q, MMA8652FC and MMA8653FC; datasheets are in the commit messages.
The driver and module name remains the same, seperating it from the device
names it now supports.

On top of this, there are minor documentation additions, and more notably,
it allows to use the driver, no matter how the interrupt pins are wired
on your board.

Please review and test if you can. For MMA8452Q, nothing should have
changed.

revision history
----------------
v5   DRIVER_NAME define removed; more flexible DT property
v4   cleanup; one bugfix patch removed from series; DT people added
v3   adds one patch to allow all possible pin wirings; adds more email
recipients
v2   splits the work into a series of smaller pieces
v1   initial post



^ permalink raw reply	[flat|nested] 49+ messages in thread
* [PATCH v4 0/8] iio:mma8452: improve driver and support more chips
@ 2015-07-06 12:34 Martin Kepplinger
  2015-07-06 12:34   ` Martin Kepplinger
  0 siblings, 1 reply; 49+ messages in thread
From: Martin Kepplinger @ 2015-07-06 12:34 UTC (permalink / raw)
  To: jic23, knaack.h, lars, pmeerw, mfuzzey, roberta.dobrescu,
	robh+dt, pawel.moll, mark.rutland, ijc+devicetree, galak
  Cc: devicetree, linux-iio, linux-kernel, christoph.muellner

This is version 4 of the mma8452 driver improvements. This version removes
one patch that changed the iio event type for existing users. It can be
dealt with seperately and this series applies without it.

Also, changes according to Jonathan's review are applied and a few
devicetree maintainers are added as recipients.


These changes add support for motion interrupts and 3 more accelerometer
chips, two of which use them because they don't support the until now
included transient interrupt sources:

MMA8453Q, MMA8652FC and MMA8653FC; datasheets are in the commit messages.

The driver and module name remains the same, seperating it from the device
names it now supports.

On top of this, there are minor documentation additions, and more notably,
 it allows to use the driver, no matter how the interrupt pins are wired
on your board.

Please review and test if you can. For MMA8452Q, nothing should have
changed.

revision history
----------------
v4   cleanup; one bugfix patch removed from series; DT people added
v3   adds one patch to allow all possible pin wirings; adds more email
     recipients
v2   splits the work into a series of smaller pieces
v1   initial post



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

end of thread, other threads:[~2015-08-08 16:42 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-27 14:08 [PATCH v5 0/8] iio: mma8452: improve driver and support more chips Martin Kepplinger
2015-07-27 14:08 ` Martin Kepplinger
2015-07-27 14:08 ` [PATCH 1/8] iio: mma8452: refactor for seperating chip specific data Martin Kepplinger
2015-07-27 14:08 ` [PATCH 2/8] iio: mma8452: add support for MMA8453Q accelerometer chip Martin Kepplinger
2015-07-27 14:08 ` [PATCH 3/8] iio: mma8452: add freefall / motion interrupt source Martin Kepplinger
2015-07-27 14:08   ` Martin Kepplinger
2015-07-27 14:08 ` [PATCH 4/8] iio: mma8452: add support for MMA8652FC and MMA8653FC accelerometers Martin Kepplinger
2015-07-27 14:08   ` Martin Kepplinger
2015-07-27 14:08 ` [PATCH 5/8] iio: mma8452: add devicetree binding document Martin Kepplinger
2015-07-27 14:20   ` Mark Rutland
2015-07-27 14:20     ` Mark Rutland
2015-07-27 14:59     ` [PATCHv2 " Martin Kepplinger
2015-07-27 14:59       ` Martin Kepplinger
2015-07-27 14:08 ` [PATCH 6/8] iio: mma8452: add copyright notice comment Martin Kepplinger
2015-07-27 14:08 ` [PATCH 7/8] iio: mma8452: leave sysfs namings to the iio core Martin Kepplinger
2015-07-27 14:08 ` [PATCH 8/8] iio: mma8452: add devicetree property to allow all pin wirings Martin Kepplinger
2015-07-27 14:23   ` Mark Rutland
2015-07-27 14:23     ` Mark Rutland
2015-07-27 14:37     ` Martin Kepplinger
2015-07-27 14:37       ` Martin Kepplinger
2015-07-27 14:37       ` Martin Kepplinger
2015-07-27 17:33       ` Mark Rutland
2015-07-27 17:33         ` Mark Rutland
2015-07-27 17:33         ` Mark Rutland
2015-07-28  9:11         ` Martin Kepplinger
2015-07-28  9:11           ` Martin Kepplinger
2015-07-28  9:11           ` Martin Kepplinger
2015-07-28  9:28           ` Mark Rutland
2015-07-28  9:28             ` Mark Rutland
2015-07-28 23:12             ` Martin Kepplinger
2015-07-28 23:12               ` Martin Kepplinger
2015-07-28 23:12               ` Martin Kepplinger
2015-08-02 16:24               ` Jonathan Cameron
2015-08-02 16:24                 ` Jonathan Cameron
2015-08-02 16:24                 ` Jonathan Cameron
2015-07-27 14:56     ` [PATCHv2 " Martin Kepplinger
2015-07-27 14:56       ` Martin Kepplinger
2015-08-08 16:42 ` [PATCH v5 0/8] iio: mma8452: improve driver and support more chips Jonathan Cameron
2015-08-08 16:42   ` Jonathan Cameron
  -- strict thread matches above, loose matches on Subject: below --
2015-07-06 12:34 [PATCH v4 0/8] iio:mma8452: " Martin Kepplinger
2015-07-06 12:34 ` [PATCH 8/8] iio: mma8452: add devicetree property to allow all pin wirings Martin Kepplinger
2015-07-06 12:34   ` Martin Kepplinger
2015-07-19 13:47   ` Jonathan Cameron
2015-07-19 13:47     ` Jonathan Cameron
2015-07-19 18:42     ` Martin Kepplinger
2015-07-19 18:42       ` Martin Kepplinger
2015-07-20  8:38     ` Martin Fuzzey
2015-07-20  8:38       ` Martin Fuzzey
2015-07-20 10:01       ` Martin Kepplinger
2015-07-20 10:01         ` Martin Kepplinger

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.