From patchwork Fri Apr 21 08:39:20 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ludovic Desroches X-Patchwork-Id: 753208 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3w8Tmt5zk8z9ryk for ; Fri, 21 Apr 2017 18:44:14 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1036905AbdDUImW (ORCPT ); Fri, 21 Apr 2017 04:42:22 -0400 Received: from esa3.microchip.iphmx.com ([68.232.153.233]:18883 "EHLO esa3.microchip.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1036742AbdDUIkW (ORCPT ); Fri, 21 Apr 2017 04:40:22 -0400 X-IronPort-AV: E=Sophos;i="5.37,229,1488870000"; d="scan'208";a="1783714" Received: from smtpout.microchip.com (HELO email.microchip.com) ([198.175.253.82]) by esa3.microchip.iphmx.com with ESMTP/TLS/AES256-SHA; 21 Apr 2017 01:40:21 -0700 Received: from ibiza.rfo.atmel.com (10.10.76.4) by chn-sv-exch04.mchp-main.com (10.10.76.105) with Microsoft SMTP Server id 14.3.181.6; Fri, 21 Apr 2017 01:40:20 -0700 From: Ludovic Desroches To: , , CC: , , , , Ludovic Desroches Subject: [PATCH v2 1/5] dt-bindings: input: Add Atmel PTC subsystem bindings Date: Fri, 21 Apr 2017 10:39:20 +0200 Message-ID: <20170421083924.15096-2-ludovic.desroches@microchip.com> X-Mailer: git-send-email 2.9.0 In-Reply-To: <20170421083924.15096-1-ludovic.desroches@microchip.com> References: <20170421083924.15096-1-ludovic.desroches@microchip.com> MIME-Version: 1.0 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Add description of the Atmel PTC subsystem bindings. Signed-off-by: Ludovic Desroches Acked-by: Rob Herring --- .../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>; + };