From patchwork Tue Oct 27 18:34:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?TcOlbnMgUnVsbGfDpXJk?= X-Patchwork-Id: 536785 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 33108141332 for ; Wed, 28 Oct 2015 05:35:10 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965011AbbJ0SfJ (ORCPT ); Tue, 27 Oct 2015 14:35:09 -0400 Received: from unicorn.mansr.com ([81.2.72.234]:54832 "EHLO unicorn.mansr.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964913AbbJ0SfI (ORCPT ); Tue, 27 Oct 2015 14:35:08 -0400 Received: by unicorn.mansr.com (Postfix, from userid 51770) id D528A1538A; Tue, 27 Oct 2015 18:34:57 +0000 (GMT) From: Mans Rullgard To: Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Cc: slash.tmp@free.fr Subject: [PATCH 1/2] devicetree: watchdog: add binding for Sigma Designs SMP8642 watchdog Date: Tue, 27 Oct 2015 18:34:20 +0000 Message-Id: <1445970861-19832-1-git-send-email-mans@mansr.com> X-Mailer: git-send-email 2.6.2 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org This adds a binding for the watchdog in Sigma Designs SMP8642 and similar devices. Signed-off-by: Mans Rullgard Acked-by: Rob Herring --- .../devicetree/bindings/watchdog/sigma,8642-wdt.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Documentation/devicetree/bindings/watchdog/sigma,8642-wdt.txt diff --git a/Documentation/devicetree/bindings/watchdog/sigma,8642-wdt.txt b/Documentation/devicetree/bindings/watchdog/sigma,8642-wdt.txt new file mode 100644 index 0000000..31fef37 --- /dev/null +++ b/Documentation/devicetree/bindings/watchdog/sigma,8642-wdt.txt @@ -0,0 +1,14 @@ +Sigma Designs SMP86xx watchdog + +Required properties: +- compatible: Should be "sigma,smp8642-wdt" +- reg: Specifies the physical address region +- clocks: Should be a phandle to the clock + +Example: + +watchdog@1fd00 { + compatible = "sigma,smp8642-wdt"; + reg = <0x1fd00 8>; + clocks = <&xtal_in_clk>; +};