linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: iio: counter: Add Milbeaut Updown Counter
@ 2019-03-26  6:33 Shinji Kanematsu
  2019-03-31  6:42 ` Rob Herring
  0 siblings, 1 reply; 3+ messages in thread
From: Shinji Kanematsu @ 2019-03-26  6:33 UTC (permalink / raw)
  To: jic23, robh+dt, mark.rutland
  Cc: knaack.h, lars, pmeerw, linux-iio, devicetree, linux-kernel,
	masami.hiramatsu, jaswinder.singh, orito.takao, sugaya.taichi,
	kasai.kazuhiro, kanematsu.shinji

Add documentation for Milbeaut Updown Counter device
quadrature encoder and counter binding.

Signed-off-by: Shinji Kanematsu <kanematsu.shinji@socionext.com>
---
 .../bindings/iio/counter/milbeaut-updown_cnt.txt   | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt

diff --git a/Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt b/Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt
new file mode 100644
index 0000000..6771567
--- /dev/null
+++ b/Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt
@@ -0,0 +1,22 @@
+SOCIONEXT Milbeaut Updown counter
+
+Required properties:
+- compatible:       Must be "socionext,milbeaut-updown-counter".
+- reg:              Offset and length of the device's register set.
+- clocks:           Phandle to the clock used by the Updown counter module.
+- clock-names:      Must be "mux".
+- interrupts:       SPI number of the device's set.
+- cms_type:         connected_device
+                     1: updown button  (updown counter mode)
+                     2: rotary encoder (phase difference counter mode)
+
+Example:
+
+	updown0: updown@1e002000 {
+		compatible = "socionext,milbeaut-updown-counter";
+		reg = <0x1e002000 0x20>;
+		clocks = <&clk 4>;
+		clock-names = "mux";
+		interrupts = <0 104 0x4>;
+		cms_type = <1>;
+	};
-- 
1.9.1


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

* Re: [PATCH 1/2] dt-bindings: iio: counter: Add Milbeaut Updown Counter
  2019-03-26  6:33 [PATCH 1/2] dt-bindings: iio: counter: Add Milbeaut Updown Counter Shinji Kanematsu
@ 2019-03-31  6:42 ` Rob Herring
  2019-04-02  6:26   ` Kanematsu, Shinji/兼松 伸次
  0 siblings, 1 reply; 3+ messages in thread
From: Rob Herring @ 2019-03-31  6:42 UTC (permalink / raw)
  To: Shinji Kanematsu
  Cc: jic23, mark.rutland, knaack.h, lars, pmeerw, linux-iio,
	devicetree, linux-kernel, masami.hiramatsu, jaswinder.singh,
	orito.takao, sugaya.taichi, kasai.kazuhiro

On Tue, Mar 26, 2019 at 03:33:09PM +0900, Shinji Kanematsu wrote:
> Add documentation for Milbeaut Updown Counter device
> quadrature encoder and counter binding.
> 
> Signed-off-by: Shinji Kanematsu <kanematsu.shinji@socionext.com>
> ---
>  .../bindings/iio/counter/milbeaut-updown_cnt.txt   | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt
> 
> diff --git a/Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt b/Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt
> new file mode 100644
> index 0000000..6771567
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt
> @@ -0,0 +1,22 @@
> +SOCIONEXT Milbeaut Updown counter
> +
> +Required properties:
> +- compatible:       Must be "socionext,milbeaut-updown-counter".
> +- reg:              Offset and length of the device's register set.
> +- clocks:           Phandle to the clock used by the Updown counter module.
> +- clock-names:      Must be "mux".
> +- interrupts:       SPI number of the device's set.
> +- cms_type:         connected_device
> +                     1: updown button  (updown counter mode)
> +                     2: rotary encoder (phase difference counter mode)

We should have a common property for describing what's attached. 
IIRC, just had a similar binding recently.

> +
> +Example:
> +
> +	updown0: updown@1e002000 {
> +		compatible = "socionext,milbeaut-updown-counter";
> +		reg = <0x1e002000 0x20>;
> +		clocks = <&clk 4>;
> +		clock-names = "mux";
> +		interrupts = <0 104 0x4>;
> +		cms_type = <1>;
> +	};
> -- 
> 1.9.1
> 


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

* Re: [PATCH 1/2] dt-bindings: iio: counter: Add Milbeaut Updown Counter
  2019-03-31  6:42 ` Rob Herring
@ 2019-04-02  6:26   ` Kanematsu, Shinji/兼松 伸次
  0 siblings, 0 replies; 3+ messages in thread
From: Kanematsu, Shinji/兼松 伸次 @ 2019-04-02  6:26 UTC (permalink / raw)
  To: Rob Herring
  Cc: kanematsu.shinji, jic23, mark.rutland, knaack.h, lars, pmeerw,
	linux-iio, devicetree, linux-kernel, masami.hiramatsu,
	jaswinder.singh, orito.takao, sugaya.taichi, kasai.kazuhiro

Hi Rob,

Thank you for your review.

On 2019/03/31 15:42, Rob Herring wrote:
> On Tue, Mar 26, 2019 at 03:33:09PM +0900, Shinji Kanematsu wrote:
>> Add documentation for Milbeaut Updown Counter device
>> quadrature encoder and counter binding.
>>
>> Signed-off-by: Shinji Kanematsu <kanematsu.shinji@socionext.com>
>> ---
>>   .../bindings/iio/counter/milbeaut-updown_cnt.txt   | 22 ++++++++++++++++++++++
>>   1 file changed, 22 insertions(+)
>>   create mode 100644 Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt
>>
>> diff --git a/Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt b/Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt
>> new file mode 100644
>> index 0000000..6771567
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/iio/counter/milbeaut-updown_cnt.txt
>> @@ -0,0 +1,22 @@
>> +SOCIONEXT Milbeaut Updown counter
>> +
>> +Required properties:
>> +- compatible:       Must be "socionext,milbeaut-updown-counter".
>> +- reg:              Offset and length of the device's register set.
>> +- clocks:           Phandle to the clock used by the Updown counter module.
>> +- clock-names:      Must be "mux".
>> +- interrupts:       SPI number of the device's set.
>> +- cms_type:         connected_device
>> +                     1: updown button  (updown counter mode)
>> +                     2: rotary encoder (phase difference counter mode)
> 
> We should have a common property for describing what's attached.
> IIRC, just had a similar binding recently.
> 

OK, I search the similar binding.

Thank you,
Kanematsu

>> +
>> +Example:
>> +
>> +	updown0: updown@1e002000 {
>> +		compatible = "socionext,milbeaut-updown-counter";
>> +		reg = <0x1e002000 0x20>;
>> +		clocks = <&clk 4>;
>> +		clock-names = "mux";
>> +		interrupts = <0 104 0x4>;
>> +		cms_type = <1>;
>> +	};
>> -- 
>> 1.9.1
>>
> 


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

end of thread, other threads:[~2019-04-02  6:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-26  6:33 [PATCH 1/2] dt-bindings: iio: counter: Add Milbeaut Updown Counter Shinji Kanematsu
2019-03-31  6:42 ` Rob Herring
2019-04-02  6:26   ` Kanematsu, Shinji/兼松 伸次

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