From: Linus Walleij <linus.walleij@linaro.org>
To: Jonathan Cameron <jic23@kernel.org>, linux-iio@vger.kernel.org
Cc: Akinobu Mita <akinobu.mita@gmail.com>,
Christoph Mair <christoph.mair@gmail.com>,
Vlad Dogaru <vlad.dogaru@intel.com>,
Hartmut Knaack <knaack.h@gmx.de>,
Marek Belisko <marek@goldelico.com>,
"H. Nikolaus Schaller" <hns@goldelico.com>,
Eric Andersson <eric.andersson@unixphere.com>,
Neil Brown <neilb@suse.de>,
Linus Walleij <linus.walleij@linaro.org>,
devicetree@vger.kernel.org
Subject: [PATCH 1/9] iio: pressure: bmp280: augment DT bindings
Date: Sun, 19 Jun 2016 20:33:54 +0200 [thread overview]
Message-ID: <1466361242-2994-2-git-send-email-linus.walleij@linaro.org> (raw)
In-Reply-To: <1466361242-2994-1-git-send-email-linus.walleij@linaro.org>
This adds standard device tree bindings for a reset GPIO line, and
the VDDD and VDDA power regulators.
Cc: devicetree@vger.kernel.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
Documentation/devicetree/bindings/iio/pressure/bmp085.txt | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/Documentation/devicetree/bindings/iio/pressure/bmp085.txt b/Documentation/devicetree/bindings/iio/pressure/bmp085.txt
index d7a6deb6b21e..06ad5feaea28 100644
--- a/Documentation/devicetree/bindings/iio/pressure/bmp085.txt
+++ b/Documentation/devicetree/bindings/iio/pressure/bmp085.txt
@@ -1,7 +1,7 @@
-BMP085/BMP18x digital pressure sensors
+BMP085/BMP18x/BMP28x digital pressure sensors
Required properties:
-- compatible: bosch,bmp085
+- compatible: "bosch,bmp085" or "bosch,bmp180" or "bosch,bmp280"
Optional properties:
- chip-id: configurable chip id for non-default chip revisions
@@ -10,6 +10,10 @@ Optional properties:
value range is 0-3 with rising sensitivity.
- interrupt-parent: should be the phandle for the interrupt controller
- interrupts: interrupt mapping for IRQ
+- reset-gpios: a GPIO line handling reset of the sensor: as the line is
+ active low, it should be marked GPIO_ACTIVE_LOW (see gpio/gpio.txt)
+- vddd-supply: digital voltage regulator (see regulator/regulator.txt)
+- vdda-supply: analog voltage regulator (see regulator/regulator.txt)
Example:
@@ -21,4 +25,7 @@ pressure@77 {
default-oversampling = <2>;
interrupt-parent = <&gpio0>;
interrupts = <25 IRQ_TYPE_EDGE_RISING>;
+ reset-gpios = <&gpio0 26 GPIO_ACTIVE_LOW>;
+ vddd-supply = <&foo>;
+ vdda-supply = <&bar>;
};
--
2.4.11
next prev parent reply other threads:[~2016-06-19 18:36 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-19 18:33 [PATCH 0/9] iio: bmp280: improve driver Linus Walleij
2016-06-19 18:33 ` Linus Walleij [this message]
2016-06-19 18:33 ` [PATCH 2/9] iio: pressure: bmp280: support device tree initialization Linus Walleij
2016-06-19 18:33 ` [PATCH 3/9] iio: pressure: bmp280: add reset GPIO line handling Linus Walleij
2016-06-19 18:33 ` [PATCH 4/9] iio: pressure: bmp280: support optional supply regulators Linus Walleij
2016-06-19 18:33 ` [PATCH 5/9] iio: pressure: bmp280: split driver in logical parts Linus Walleij
2016-06-19 18:33 ` [PATCH 6/9] iio: pressure: bmp280: split off an I2C Kconfig entry Linus Walleij
2016-06-19 18:34 ` [PATCH 7/9] iio: pressure: bmp280: add SPI interface driver Linus Walleij
2016-06-20 11:06 ` Akinobu Mita
2016-06-22 19:04 ` Linus Walleij
2016-06-25 10:27 ` Akinobu Mita
2016-06-19 18:34 ` [PATCH 8/9] iio: pressure: bmp280: add support for the BMP058 EOC interrupt Linus Walleij
2016-06-20 4:58 ` H. Nikolaus Schaller
2016-06-19 18:34 ` [PATCH 9/9] iio: pressure: bmp280: read calibration data once Linus Walleij
2016-06-20 4:56 ` [PATCH 0/9] iio: bmp280: improve driver H. Nikolaus Schaller
2016-06-22 7:31 ` Matt Ranostay
2016-06-22 15:18 ` Linus Walleij
2016-06-22 19:15 ` Linus Walleij
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=1466361242-2994-2-git-send-email-linus.walleij@linaro.org \
--to=linus.walleij@linaro.org \
--cc=akinobu.mita@gmail.com \
--cc=christoph.mair@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=eric.andersson@unixphere.com \
--cc=hns@goldelico.com \
--cc=jic23@kernel.org \
--cc=knaack.h@gmx.de \
--cc=linux-iio@vger.kernel.org \
--cc=marek@goldelico.com \
--cc=neilb@suse.de \
--cc=vlad.dogaru@intel.com \
/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 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).