All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Andrew F. Davis" <afd@ti.com>
To: Jonathan Cameron <jic23@kernel.org>,
	Hartmut Knaack <knaack.h@gmx.de>,
	Lars-Peter Clausen <lars@metafoo.de>,
	Peter Meerwald <pmeerw@pmeerw.net>, Dan Murphy <dmurphy@ti.com>,
	Rob Herring <robh+dt@kernel.org>, Pawel Moll <pawel.moll@arm.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Ian Campbell <ijc+devicetree@hellion.org.uk>,
	Kumar Gala <galak@codeaurora.org>
Cc: linux-iio@vger.kernel.org, linux-api@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Andrew
Subject: [PATCH v4 0/4] iio: AFE4404 Heart Rate Monitor and Bio-Sensing
Date: Mon, 25 Jan 2016 11:28:57 -0600	[thread overview]
Message-ID: <1453742941-12086-1-git-send-email-afd@ti.com> (raw)

This series adds the TI AFE4404 "Ultra-small, Integrated AFE for
Wearable, Optical Heart Rate Monitoring and Bio-Sensing".

Changes from v3:
 - Removed attempt to factor out common code
 - Rebased on v4.5-rc1
 - Small fixes

Changes from v2:
 - Added afe4403 driver to this series
 - Added patch to export needed IIO function
 - Table lookup for magic numbers
 - Other small fixes

Please see [0] for more background.

[0] http://www.spinics.net/lists/linux-iio/msg21619.html

Andrew F. Davis (4):
  Documentation: afe4404: Add DT bindings for the AFE4404 heart monitor
  iio: health: Add driver for the TI AFE4404 heart monitor
  Documentation: afe4403: Add DT bindings for the AFE4403 heart monitor
  iio: health: Add driver for the TI AFE4403 heart monitor

 .../ABI/testing/sysfs-bus-iio-health-afe440x       |  54 ++
 .../devicetree/bindings/iio/health/afe4403.txt     |  34 +
 .../devicetree/bindings/iio/health/afe4404.txt     |  30 +
 drivers/iio/health/Kconfig                         |  31 +-
 drivers/iio/health/Makefile                        |   2 +
 drivers/iio/health/afe4403.c                       | 698 +++++++++++++++++++++
 drivers/iio/health/afe4404.c                       | 665 ++++++++++++++++++++
 drivers/iio/health/afe440x.h                       | 193 ++++++
 8 files changed, 1706 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/ABI/testing/sysfs-bus-iio-health-afe440x
 create mode 100644 Documentation/devicetree/bindings/iio/health/afe4403.txt
 create mode 100644 Documentation/devicetree/bindings/iio/health/afe4404.txt
 create mode 100644 drivers/iio/health/afe4403.c
 create mode 100644 drivers/iio/health/afe4404.c
 create mode 100644 drivers/iio/health/afe440x.h

-- 
2.7.0

WARNING: multiple messages have this Message-ID (diff)
From: "Andrew F. Davis" <afd@ti.com>
To: Jonathan Cameron <jic23@kernel.org>,
	Hartmut Knaack <knaack.h@gmx.de>,
	Lars-Peter Clausen <lars@metafoo.de>,
	Peter Meerwald <pmeerw@pmeerw.net>, Dan Murphy <dmurphy@ti.com>,
	Rob Herring <robh+dt@kernel.org>, Pawel Moll <pawel.moll@arm.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Ian Campbell <ijc+devicetree@hellion.org.uk>,
	Kumar Gala <galak@codeaurora.org>
Cc: <linux-iio@vger.kernel.org>, <linux-api@vger.kernel.org>,
	<devicetree@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
	"Andrew F. Davis" <afd@ti.com>
Subject: [PATCH v4 0/4] iio: AFE4404 Heart Rate Monitor and Bio-Sensing
Date: Mon, 25 Jan 2016 11:28:57 -0600	[thread overview]
Message-ID: <1453742941-12086-1-git-send-email-afd@ti.com> (raw)

This series adds the TI AFE4404 "Ultra-small, Integrated AFE for
Wearable, Optical Heart Rate Monitoring and Bio-Sensing".

Changes from v3:
 - Removed attempt to factor out common code
 - Rebased on v4.5-rc1
 - Small fixes

Changes from v2:
 - Added afe4403 driver to this series
 - Added patch to export needed IIO function
 - Table lookup for magic numbers
 - Other small fixes

Please see [0] for more background.

[0] http://www.spinics.net/lists/linux-iio/msg21619.html

Andrew F. Davis (4):
  Documentation: afe4404: Add DT bindings for the AFE4404 heart monitor
  iio: health: Add driver for the TI AFE4404 heart monitor
  Documentation: afe4403: Add DT bindings for the AFE4403 heart monitor
  iio: health: Add driver for the TI AFE4403 heart monitor

 .../ABI/testing/sysfs-bus-iio-health-afe440x       |  54 ++
 .../devicetree/bindings/iio/health/afe4403.txt     |  34 +
 .../devicetree/bindings/iio/health/afe4404.txt     |  30 +
 drivers/iio/health/Kconfig                         |  31 +-
 drivers/iio/health/Makefile                        |   2 +
 drivers/iio/health/afe4403.c                       | 698 +++++++++++++++++++++
 drivers/iio/health/afe4404.c                       | 665 ++++++++++++++++++++
 drivers/iio/health/afe440x.h                       | 193 ++++++
 8 files changed, 1706 insertions(+), 1 deletion(-)
 create mode 100644 Documentation/ABI/testing/sysfs-bus-iio-health-afe440x
 create mode 100644 Documentation/devicetree/bindings/iio/health/afe4403.txt
 create mode 100644 Documentation/devicetree/bindings/iio/health/afe4404.txt
 create mode 100644 drivers/iio/health/afe4403.c
 create mode 100644 drivers/iio/health/afe4404.c
 create mode 100644 drivers/iio/health/afe440x.h

-- 
2.7.0

             reply	other threads:[~2016-01-25 17:28 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-25 17:28 Andrew F. Davis [this message]
2016-01-25 17:28 ` [PATCH v4 0/4] iio: AFE4404 Heart Rate Monitor and Bio-Sensing Andrew F. Davis
2016-01-25 17:28 ` [PATCH v4 1/4] Documentation: afe4404: Add DT bindings for the AFE4404 heart monitor Andrew F. Davis
2016-01-25 17:28   ` Andrew F. Davis
2016-01-25 20:06   ` Peter Meerwald-Stadler
2016-01-25 20:24     ` Andrew F. Davis
2016-01-25 17:28 ` [PATCH v4 2/4] iio: health: Add driver for the TI " Andrew F. Davis
2016-01-25 17:28   ` Andrew F. Davis
2016-01-25 20:17   ` Peter Meerwald-Stadler
2016-01-25 20:30     ` Andrew F. Davis
2016-01-30 14:59   ` Jonathan Cameron
2016-01-30 14:59     ` Jonathan Cameron
2016-02-02 15:50     ` Andrew F. Davis
2016-02-02 15:50       ` Andrew F. Davis
2016-01-25 17:29 ` [PATCH v4 3/4] Documentation: afe4403: Add DT bindings for the AFE4403 " Andrew F. Davis
2016-01-25 17:29   ` Andrew F. Davis
2016-01-25 17:29 ` [PATCH v4 4/4] iio: health: Add driver for the TI " Andrew F. Davis
2016-01-25 17:29   ` Andrew F. Davis
2016-01-25 20:21   ` Peter Meerwald-Stadler
2016-01-25 20:21     ` Peter Meerwald-Stadler
2016-01-25 20:36     ` Andrew F. Davis
2016-01-25 20:36       ` Andrew F. Davis
2016-01-30 15:10   ` Jonathan Cameron
2016-02-02 17:38     ` Andrew F. Davis
2016-02-02 17:38       ` Andrew F. Davis

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=1453742941-12086-1-git-send-email-afd@ti.com \
    --to=afd@ti.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dmurphy@ti.com \
    --cc=galak@codeaurora.org \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=jic23@kernel.org \
    --cc=knaack.h@gmx.de \
    --cc=lars@metafoo.de \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=pawel.moll@arm.com \
    --cc=pmeerw@pmeerw.net \
    --cc=robh+dt@kernel.org \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.