From patchwork Wed Nov 14 13:47:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lee Jones X-Patchwork-Id: 1741361 Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 8D82040E03 for ; Wed, 14 Nov 2012 13:48:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1422962Ab2KNNr7 (ORCPT ); Wed, 14 Nov 2012 08:47:59 -0500 Received: from mail-wg0-f44.google.com ([74.125.82.44]:62945 "EHLO mail-wg0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1422974Ab2KNNr5 (ORCPT ); Wed, 14 Nov 2012 08:47:57 -0500 Received: by mail-wg0-f44.google.com with SMTP id dr13so245976wgb.1 for ; Wed, 14 Nov 2012 05:47:56 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=cBLAYsUyK+wpqwgcYFpObiF1gx9kl2fgxQ+HkLYK6SE=; b=FxULbIv6xYVgcWdW+vnyQKqIuKmllNS8SiReXsIvtL3RFdfXyxetuyWLPO3Q+2E55e LQ/v21zutRioWHbPddR5K3SN37gv5jx8avF/TRPHoYhBFfhUY2aaGbScoNHljJhYrxv9 2PCqTMqnHWgiDXfck1ivvqOhSuSDARHRRVWOf20k/dhy8qazoSsWkBb8idVy+PwAqB// mMuI2z72DpZu38cRK24I4jt7RIt76CufVMmHs1Eo+rYCTCokWQa517qVIVG8rrAGraWt OBk3+a7FF48DuntTkyK1hlTfke1Wil0Wr91FcL4yygg4RHlmsITKYZD7R0MIqoNKRiC4 ovvw== Received: by 10.216.205.145 with SMTP id j17mr1603085weo.95.1352900876031; Wed, 14 Nov 2012 05:47:56 -0800 (PST) Received: from localhost.localdomain (cpc1-aztw13-0-0-cust473.18-1.cable.virginmedia.com. [77.102.241.218]) by mx.google.com with ESMTPS id b1sm2516537wix.11.2012.11.14.05.47.54 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 14 Nov 2012 05:47:55 -0800 (PST) From: Lee Jones To: linux-kernel@vger.kernel.org Cc: Lee Jones , Dmitry Torokhov , linux-input@vger.kernel.org Subject: [PATCH 5/5] Documentation: Describe bindings for STMPE Keypad driver Date: Wed, 14 Nov 2012 13:47:17 +0000 Message-Id: <1352900837-20759-6-git-send-email-lee.jones@linaro.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1352900837-20759-1-git-send-email-lee.jones@linaro.org> References: <1352900837-20759-1-git-send-email-lee.jones@linaro.org> X-Gm-Message-State: ALoCoQnol79WYL0wHxbQ4HPNjbQDmQ5wlxnC/+0SaPkF/6DPNQRP3VVoPIBykyuFcFw/XOB0gtjN Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org Here we add the required documentation for the STMPE Device Tree bindings. It describes all of the bindings currently supported by the driver. Cc: Dmitry Torokhov Cc: linux-input@vger.kernel.org Acked-by: Arnd Bergmann Acked-by: Linus Walleij Signed-off-by: Lee Jones --- .../devicetree/bindings/input/stmpe-keypad.txt | 39 ++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Documentation/devicetree/bindings/input/stmpe-keypad.txt diff --git a/Documentation/devicetree/bindings/input/stmpe-keypad.txt b/Documentation/devicetree/bindings/input/stmpe-keypad.txt new file mode 100644 index 0000000..1b97222 --- /dev/null +++ b/Documentation/devicetree/bindings/input/stmpe-keypad.txt @@ -0,0 +1,39 @@ +* STMPE Keypad + +Required properties: + - compatible : "st,stmpe-keypad" + - linux,keymap : See ./matrix-keymap.txt + +Optional properties: + - debounce-interval : Debouncing interval time in milliseconds + - st,scan-count : Scanning cycles elapsed before key data is updated + - st,no-autorepeat : If specified device will not autorepeat + +Example: + + stmpe_keypad { + compatible = "st,stmpe-keypad"; + + debounce-interval = <64>; + st,scan-count = <8>; + st,no-autorepeat; + + linux,keymap = <0x205006b + 0x4010074 + 0x3050072 + 0x1030004 + 0x502006a + 0x500000a + 0x5008b + 0x706001c + 0x405000b + 0x6070003 + 0x3040067 + 0x303006c + 0x60400e7 + 0x602009e + 0x4020073 + 0x5050002 + 0x4030069 + 0x3020008>; + };