Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934211AbdC3PQr (ORCPT ); Thu, 30 Mar 2017 11:16:47 -0400 Received: from mx08-00178001.pphosted.com ([91.207.212.93]:58255 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S933407AbdC3PQm (ORCPT ); Thu, 30 Mar 2017 11:16:42 -0400 From: Yannick Fertre To: Wim Van Sebroeck , Guenter Roeck , Rob Herring , Alexandre TORGUE , Benjamin Gaignard , Yannick Fertre , Maxime Coquelin CC: , , Philippe Cornu , Gabriel FERNANDEZ , , Subject: [PATCH v4 1/5] dt-bindings: watchdog: Document STM32 IWDG bindings Date: Thu, 30 Mar 2017 17:15:22 +0200 Message-ID: <1490886926-20585-2-git-send-email-yannick.fertre@st.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1490886926-20585-1-git-send-email-yannick.fertre@st.com> References: <1490886926-20585-1-git-send-email-yannick.fertre@st.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.48.1.53] X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-03-30_12:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1082 Lines: 34 This adds documentation of device tree bindings for the STM32 IWDG (Independent WatchDoG). Signed-off-by: Yannick Fertre Author: Yannick Fertre --- .../devicetree/bindings/watchdog/st,stm32-iwdg.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Documentation/devicetree/bindings/watchdog/st,stm32-iwdg.txt diff --git a/Documentation/devicetree/bindings/watchdog/st,stm32-iwdg.txt b/Documentation/devicetree/bindings/watchdog/st,stm32-iwdg.txt new file mode 100644 index 0000000..15fef87 --- /dev/null +++ b/Documentation/devicetree/bindings/watchdog/st,stm32-iwdg.txt @@ -0,0 +1,15 @@ +STM32 Independent WatchDoG (IWDG) +--------------------------------- + +Required properties: +- compatible: "st,stm32-iwdg" +- reg: physical base address and length of the registers set for the device +- clocks: must contain a single entry describing the clock input + +Example: + +iwdg: watchdog@40003000 { + compatible = "st,stm32-iwdg"; + reg = <0x40003000 0x400>; + clocks = <&clk_lsi>; +}; -- 1.9.1