Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1628063

[PATCH v2 1/5] dt-bindings: input: Add Atmel PTC subsystem bindings

From Ludovic Desroches <ludovic.desroches@microchip.com>
Newsgroups linux.kernel
Subject [PATCH v2 1/5] dt-bindings: input: Add Atmel PTC subsystem bindings
Date 2017-04-21 10:50 +0200
Message-ID <tyCql-3El-17@gated-at.bofh.it> (permalink)
References <tyCql-3El-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Add description of the Atmel PTC subsystem bindings.

Signed-off-by: Ludovic Desroches <ludovic.desroches@microchip.com>
Acked-by: Rob Herring <robh@kernel.org>
---
 .../devicetree/bindings/input/atmel,ptc.txt        | 67 ++++++++++++++++++++++
 1 file changed, 67 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/input/atmel,ptc.txt

diff --git a/Documentation/devicetree/bindings/input/atmel,ptc.txt b/Documentation/devicetree/bindings/input/atmel,ptc.txt
new file mode 100644
index 0000000..a183fd5
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/atmel,ptc.txt
@@ -0,0 +1,67 @@
+Atmel PTC Subsystem
+
+The Atmel Peripheral Touch Controller subsystem offers built-in hardware
+for capacitive touch measurement on sensors that function as buttons, sliders
+and wheels.
+
+1) PTC Subsystem node
+
+Required properties:
+- compatible: 		Must be "atmel,sama5d2-ptc"
+- reg: 			Address, length of the shared memory and ppp registers location
+			and length.
+- clocks: 		Phandlers to the clocks.
+- clock-names: 		Must be "ptc_clk", "ptc_int_osc", "slow_clk".
+- #address-cells:	Must be one. The cell is the button or scroller id.
+- #size-cells: 		Must be zero.
+
+Example:
+	ptc@fc060000 {
+		compatible = "atmel,sama5d2-ptc";
+		reg = <0x00800000 0x10000
+		       0xfc060000 0xcf>;
+		interrupts = <58 IRQ_TYPE_LEVEL_HIGH 7>;
+		clocks = <&ptc_clk>, <&main>, <&clk32k>;
+		clock-names = "ptc_clk", "ptc_int_osc", "slow_clk";
+		#address-cells = <1>;
+		#size-cells = <0>;
+
+		[ child node definitions... ]
+	};
+
+2) Scroller / buttons subnodes
+
+Subnodes describe the kind of sensors the customer want to use. They have to be
+named according to their function: button, slider or wheel.
+
+2.1) Scroller subnodes
+
+Required properties:
+- reg:	Id of the scroller, each id must be different.
+
+Example:
+	slider@0 {
+		reg = <0>;
+	};
+
+	wheel@1 {
+		reg = <1>;
+	};
+
+2.2) Button subnodes
+
+Required properties:
+- reg:			Id of node used for the button, each id must be
+			different.
+- linux,keycode: 	Key code of the button.
+
+Example:
+		button@8 {
+			reg = <8>;
+			linux,keycode = <2>;
+		};
+
+		button@9 {
+			reg = <9>;
+			linux,keycode = <3>;
+		};
-- 
2.9.0

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2 0/5] Introduce the Atmel PTC subsystem Ludovic Desroches <ludovic.desroches@microchip.com> - 2017-04-21 10:50 +0200
  [PATCH v2 3/5] MAINTAINERS: add Atmel PTC entries Ludovic Desroches <ludovic.desroches@microchip.com> - 2017-04-21 10:50 +0200
    Re: [PATCH v2 3/5] MAINTAINERS: add Atmel PTC entries Ludovic Desroches <ludovic.desroches@microchip.com> - 2017-04-21 12:00 +0200
  [PATCH v2 5/5] ARM: at91/defconfig: add PTC driver to sama5_defconfig Ludovic Desroches <ludovic.desroches@microchip.com> - 2017-04-21 10:50 +0200
  [PATCH v2 1/5] dt-bindings: input: Add Atmel PTC subsystem bindings Ludovic Desroches <ludovic.desroches@microchip.com> - 2017-04-21 10:50 +0200
  [PATCH v2 4/5] ARM: dts: at91: sama5d2: add PTC subsystem device Ludovic Desroches <ludovic.desroches@microchip.com> - 2017-04-21 10:50 +0200
  [PATCH v2 2/5] input: misc: introduce Atmel PTC driver Ludovic Desroches <ludovic.desroches@microchip.com> - 2017-04-21 10:50 +0200

csiph-web