From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.7 required=3.0 tests=DKIM_ADSP_ALL,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C192FC43441 for ; Sat, 17 Nov 2018 13:06:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8743320854 for ; Sat, 17 Nov 2018 13:06:45 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=aussec.com header.i=@aussec.com header.b="gf3YMnvN" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8743320854 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=aussec.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726481AbeKQXXV (ORCPT ); Sat, 17 Nov 2018 18:23:21 -0500 Received: from csm1.csm-office.com.au ([165.228.118.109]:36462 "EHLO sleepy.aussec.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726020AbeKQXXV (ORCPT ); Sat, 17 Nov 2018 18:23:21 -0500 X-Virus-Scanned: amavisd-new at aussec.com Received: from hpdv6.aussec.com.com (c110-21-61-29.farfl4.nsw.optusnet.com.au [110.21.61.29]) (authenticated bits=0) by sleepy.aussec.com (8.15.2/8.15.2) with ESMTPSA id wAHD5ubn015913 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Sun, 18 Nov 2018 00:06:34 +1100 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=aussec.com; s=2016; t=1542459996; bh=VxbDn2ERucCe/efj0InIzv5N3YLJwkbfeQERfZB+d9g=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=gf3YMnvN3G0z8NELhBuzAMMCeYfETz/DT4+gv1oqRO/pAxOaeonbn4MlwIy/02Uhg +Ek1TGgJTQ+ufU1fZPNfSTH6GBj2y1e182fCTK4zGgXXJBusgl9bMIPnLCntrCumqw imxLAq0RfwVZdSwYf2i+hLTrcRPWRqqaj6aSGWKnNZD1Lz+xmXcbNfHK0FMUZmUyBQ GhxyUpouOesFYXvsLav4lg68CQpCElH48PA94Ac2hUft6EGiqjAMFqwk/OT1COqQoR 6W3oBR83INbj/yncMn6knqzRqyGWrzLHtTLVHtWzI3uel1mt/yVeP6s+LmsYf6sO91 NpuVyZq9kevsg== From: Tom Burkart To: Linux kernel mailing list Cc: Tom Burkart , devicetree@vger.kernel.org Subject: [PATCH v8 1/4] dt-bindings: pps: capture-clear addition Date: Sun, 18 Nov 2018 00:03:34 +1100 Message-Id: <20181117130337.5856-2-tom@aussec.com> X-Mailer: git-send-email 2.12.3 In-Reply-To: <20181117130337.5856-1-tom@aussec.com> References: <20181117130337.5856-1-tom@aussec.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org It adds documentation for the device tree capture-clear option. Signed-off-by: Tom Burkart --- Documentation/devicetree/bindings/pps/pps-gpio.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/devicetree/bindings/pps/pps-gpio.txt b/Documentation/devicetree/bindings/pps/pps-gpio.txt index 3683874832ae..1155d49c2699 100644 --- a/Documentation/devicetree/bindings/pps/pps-gpio.txt +++ b/Documentation/devicetree/bindings/pps/pps-gpio.txt @@ -10,6 +10,7 @@ Required properties: Optional properties: - assert-falling-edge: when present, assert is indicated by a falling edge (instead of by a rising edge) +- capture-clear: when present, also capture the PPS clear event Example: pps { @@ -18,6 +19,7 @@ Example: gpios = <&gpio1 26 GPIO_ACTIVE_HIGH>; assert-falling-edge; + capture-clear; compatible = "pps-gpio"; }; -- 2.12.3