Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752917AbbKVWN7 (ORCPT ); Sun, 22 Nov 2015 17:13:59 -0500 Received: from mail.kernel.org ([198.145.29.136]:39976 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752777AbbKVWN5 (ORCPT ); Sun, 22 Nov 2015 17:13:57 -0500 Date: Sun, 22 Nov 2015 16:13:52 -0600 From: Rob Herring To: Simon Arlott Cc: "devicetree@vger.kernel.org" , Ralf Baechle , Thomas Gleixner , Jason Cooper , Marc Zyngier , Kevin Cernekee , Florian Fainelli , Wim Van Sebroeck , Miguel Gaio , Maxime Bizon , Linux Kernel Mailing List , linux-mips@linux-mips.org, linux-watchdog@vger.kernel.org, Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala Subject: Re: [PATCH 3/4] watchdog: Add brcm,bcm6345-wdt device tree binding Message-ID: <20151122221352.GA13686@rob-hp-laptop> References: <5650BFD6.5030700@simon.arlott.org.uk> <5650C047.6040303@simon.arlott.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5650C047.6040303@simon.arlott.org.uk> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2001 Lines: 65 On Sat, Nov 21, 2015 at 07:04:39PM +0000, Simon Arlott wrote: > Add device tree binding for the BCM6345 watchdog. > > This uses the BCM6345 timer for its warning interrupt. > > Signed-off-by: Simon Arlott Acked-by: Rob Herring > --- > .../bindings/watchdog/brcm,bcm6345-wdt.txt | 35 ++++++++++++++++++++++ > 1 file changed, 35 insertions(+) > create mode 100644 Documentation/devicetree/bindings/watchdog/brcm,bcm6345-wdt.txt > > diff --git a/Documentation/devicetree/bindings/watchdog/brcm,bcm6345-wdt.txt b/Documentation/devicetree/bindings/watchdog/brcm,bcm6345-wdt.txt > new file mode 100644 > index 0000000..9d852d4 > --- /dev/null > +++ b/Documentation/devicetree/bindings/watchdog/brcm,bcm6345-wdt.txt > @@ -0,0 +1,35 @@ > +BCM6345 Watchdog timer > + > +Required properties: > + > +- compatible: should be "brcm,bcm63-wdt", "brcm,bcm6345-wdt" > +- reg: Specifies base physical address and size of the registers. > +- clocks: Specify the clock used for timing > + > +Optional properties: > + > +- interrupt-parent: phandle to the interrupt controller > +- interrupts: Specify the interrupt used for the watchdog timout warning > +- timeout-sec: Contains the default watchdog timeout in seconds > + > +Example: > + > +watchdog { > + compatible = "brcm,bcm63168-wdt", "brcm,bcm6345-wdt"; > + reg = <0x1000009c 0x0c>; > + clocks = <&periph_clk>; > + > + interrupt-parent = <&timer>; > + interrupts = <3>; > + timeout-sec = <30>; > +}; > + > +watchdog { > + compatible = "brcm,bcm6318-wdt", "brcm,bcm6345-wdt"; > + reg = <0x10000068 0x0c>; > + clocks = <&periph_clk>; > + > + interrupt-parent = <&timer>; > + interrupts = <3>; > + timeout-sec = <30>; > +}; > -- > 2.1.4 > > -- > Simon Arlott -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/