diff mbox

[v3,2/2] input: clps711x-keypad: dts: Add bindings documentation

Message ID 1395165888-17434-2-git-send-email-shc_work@mail.ru
State Superseded, archived
Headers show

Commit Message

Alexander Shiyan March 18, 2014, 6:04 p.m. UTC
This patch adds the devicetree documentation for the Cirrus Logic
CLPS711X keypad.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
---
 .../devicetree/bindings/input/clps711x-keypad.txt  | 27 ++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/input/clps711x-keypad.txt

Comments

Dmitry Torokhov March 28, 2014, 4:43 p.m. UTC | #1
On Tue, Mar 18, 2014 at 10:04:48PM +0400, Alexander Shiyan wrote:
> This patch adds the devicetree documentation for the Cirrus Logic
> CLPS711X keypad.
> 
> Signed-off-by: Alexander Shiyan <shc_work@mail.ru>

I picked this one up and folded into the driver patch.

> ---
>  .../devicetree/bindings/input/clps711x-keypad.txt  | 27 ++++++++++++++++++++++
>  1 file changed, 27 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/input/clps711x-keypad.txt
> 
> diff --git a/Documentation/devicetree/bindings/input/clps711x-keypad.txt b/Documentation/devicetree/bindings/input/clps711x-keypad.txt
> new file mode 100644
> index 0000000..93fa2c1
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/input/clps711x-keypad.txt
> @@ -0,0 +1,27 @@
> +* Cirrus Logic CLPS711X matrix keypad device tree bindings
> +
> +Required Properties:
> +- compatible:    Shall contain "cirrus,clps711x-keypad".
> +- row-gpios:     List of GPIOs used as row lines.
> +- poll-interval: Poll interval time in milliseconds.
> +- linux,keymap:  The definition can be found at
> +                 bindings/input/matrix-keymap.txt.
> +
> +Optional Properties:
> +- autorepeat:    Enable autorepeat feature.
> +
> +Example:
> +	keypad {
> +		compatible = "cirrus,ep7312-keypad", "cirrus,clps711x-keypad";
> +		autorepeat;
> +		poll-interval = <120>;
> +		row-gpios = <&porta 0 0>,
> +			    <&porta 1 0>;
> +
> +		linux,keymap = <
> +			MATRIX_KEY(0, 0, KEY_UP)
> +			MATRIX_KEY(0, 1, KEY_DOWN)
> +			MATRIX_KEY(1, 0, KEY_LEFT)
> +			MATRIX_KEY(1, 1, KEY_RIGHT)
> +		>;
> +	};
> -- 
> 1.8.3.2
>
diff mbox

Patch

diff --git a/Documentation/devicetree/bindings/input/clps711x-keypad.txt b/Documentation/devicetree/bindings/input/clps711x-keypad.txt
new file mode 100644
index 0000000..93fa2c1
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/clps711x-keypad.txt
@@ -0,0 +1,27 @@ 
+* Cirrus Logic CLPS711X matrix keypad device tree bindings
+
+Required Properties:
+- compatible:    Shall contain "cirrus,clps711x-keypad".
+- row-gpios:     List of GPIOs used as row lines.
+- poll-interval: Poll interval time in milliseconds.
+- linux,keymap:  The definition can be found at
+                 bindings/input/matrix-keymap.txt.
+
+Optional Properties:
+- autorepeat:    Enable autorepeat feature.
+
+Example:
+	keypad {
+		compatible = "cirrus,ep7312-keypad", "cirrus,clps711x-keypad";
+		autorepeat;
+		poll-interval = <120>;
+		row-gpios = <&porta 0 0>,
+			    <&porta 1 0>;
+
+		linux,keymap = <
+			MATRIX_KEY(0, 0, KEY_UP)
+			MATRIX_KEY(0, 1, KEY_DOWN)
+			MATRIX_KEY(1, 0, KEY_LEFT)
+			MATRIX_KEY(1, 1, KEY_RIGHT)
+		>;
+	};