devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/4] iio: pressure: bmp280: augment DT bindings
@ 2016-06-17 15:12 Linus Walleij
       [not found] ` <1466176341-17442-1-git-send-email-linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Linus Walleij @ 2016-06-17 15:12 UTC (permalink / raw)
  To: Jonathan Cameron, linux-iio-u79uwXL29TY76Z2rM5mHXA, Akinobu Mita,
	Irina Tirdea, Hartmut Knaack
  Cc: Linus Walleij, devicetree-u79uwXL29TY76Z2rM5mHXA

This adds standard device tree bindings for a reset GPIO line, and
the VDDD and VDDA power regulators.

Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Signed-off-by: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.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

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

* Re: [PATCH 1/4] iio: pressure: bmp280: augment DT bindings
       [not found] ` <1466176341-17442-1-git-send-email-linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
@ 2016-06-20 16:46   ` Rob Herring
  2016-06-26 16:47     ` Jonathan Cameron
  0 siblings, 1 reply; 4+ messages in thread
From: Rob Herring @ 2016-06-20 16:46 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Jonathan Cameron, linux-iio-u79uwXL29TY76Z2rM5mHXA, Akinobu Mita,
	Irina Tirdea, Hartmut Knaack, devicetree-u79uwXL29TY76Z2rM5mHXA

On Fri, Jun 17, 2016 at 05:12:18PM +0200, Linus Walleij wrote:
> This adds standard device tree bindings for a reset GPIO line, and
> the VDDD and VDDA power regulators.
> 
> Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
> Signed-off-by: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.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"

One per line is preferred, but I wouldn't respin just for that.

Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>

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

* Re: [PATCH 1/4] iio: pressure: bmp280: augment DT bindings
  2016-06-20 16:46   ` Rob Herring
@ 2016-06-26 16:47     ` Jonathan Cameron
       [not found]       ` <058533b8-a0a7-b7fa-9745-d72eb2a2db21-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Jonathan Cameron @ 2016-06-26 16:47 UTC (permalink / raw)
  To: Rob Herring, Linus Walleij
  Cc: linux-iio-u79uwXL29TY76Z2rM5mHXA, Akinobu Mita, Irina Tirdea,
	Hartmut Knaack, devicetree-u79uwXL29TY76Z2rM5mHXA

On 20/06/16 17:46, Rob Herring wrote:
> On Fri, Jun 17, 2016 at 05:12:18PM +0200, Linus Walleij wrote:
>> This adds standard device tree bindings for a reset GPIO line, and
>> the VDDD and VDDA power regulators.
>>
>> Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
>> Signed-off-by: Linus Walleij <linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.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"
> 
> One per line is preferred, but I wouldn't respin just for that.
> 
> Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
> 
Applied to the togreg branch of iio.git - initially pushed out
as testing.

thanks,

Jonathan

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

* Re: [PATCH 1/4] iio: pressure: bmp280: augment DT bindings
       [not found]       ` <058533b8-a0a7-b7fa-9745-d72eb2a2db21-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
@ 2016-06-27  8:52         ` Linus Walleij
  0 siblings, 0 replies; 4+ messages in thread
From: Linus Walleij @ 2016-06-27  8:52 UTC (permalink / raw)
  To: Jonathan Cameron
  Cc: Rob Herring, linux-iio-u79uwXL29TY76Z2rM5mHXA, Akinobu Mita,
	Irina Tirdea, Hartmut Knaack, devicetree-u79uwXL29TY76Z2rM5mHXA

On Sun, Jun 26, 2016 at 6:47 PM, Jonathan Cameron <jic23-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote:
> On 20/06/16 17:46, Rob Herring wrote:
>> On Fri, Jun 17, 2016 at 05:12:18PM +0200, Linus Walleij wrote:

>>>  Required properties:
>>> -- compatible: bosch,bmp085
>>> +- compatible: "bosch,bmp085" or "bosch,bmp180" or "bosch,bmp280"
>>
>> One per line is preferred, but I wouldn't respin just for that.
>>
>> Acked-by: Rob Herring <robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
>>
> Applied to the togreg branch of iio.git - initially pushed out
> as testing.

Actually I did fix Rob's minor comments and sent out as v2,
but no big deal.

Yours,
Linus Walleij
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2016-06-27  8:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-17 15:12 [PATCH 1/4] iio: pressure: bmp280: augment DT bindings Linus Walleij
     [not found] ` <1466176341-17442-1-git-send-email-linus.walleij-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2016-06-20 16:46   ` Rob Herring
2016-06-26 16:47     ` Jonathan Cameron
     [not found]       ` <058533b8-a0a7-b7fa-9745-d72eb2a2db21-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2016-06-27  8:52         ` Linus Walleij

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).