Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752591AbdFLKIv (ORCPT ); Mon, 12 Jun 2017 06:08:51 -0400 Received: from mx08-00178001.pphosted.com ([91.207.212.93]:36076 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751992AbdFLKIt (ORCPT ); Mon, 12 Jun 2017 06:08:49 -0400 Subject: Re: [PATCH v5 0/5] STM32 Independent watchdog To: Yannick Fertre , Wim Van Sebroeck , Guenter Roeck , Rob Herring , Benjamin Gaignard , Maxime Coquelin CC: , , Philippe Cornu , Gabriel FERNANDEZ , , References: <1491481168-22213-1-git-send-email-yannick.fertre@st.com> From: Alexandre Torgue Message-ID: <3b9b5da7-28e4-f349-41a3-1854c374def5@st.com> Date: Mon, 12 Jun 2017 12:07:35 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: <1491481168-22213-1-git-send-email-yannick.fertre@st.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.75.127.50] X-ClientProxiedBy: SFHDAG7NODE2.st.com (10.75.127.20) To SFHDAG3NODE2.st.com (10.75.127.8) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-06-12_06:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1841 Lines: 53 Hi Yannick On 04/06/2017 02:19 PM, Yannick Fertre wrote: > Version 5: > - Update bindings (add field timeout-sec) > - Update driver (rework start, rework settings & remove max_timeout) > > Version 4: > - Update bindings (iwdg > watchdog) > - Update typo > - Update commit header > - remove gerrit tags > - Update driver (remove unnecessary tests) a add watchdog_init_timeout > > Version 3: > - Update typo into bindings file > - Reorder node in devicetree (ordering by address) > - Remove unnecessary lines in commits > > Version 2: > - Add commit messages > > Version 1: > - Initial commit > > The purpose of this set of patches is to add a new watchdog driver for > stm32f429. > This driver was developed and tested on evaluation board stm32429i. > > Yannick Fertre (5): > dt-bindings: watchdog: Document STM32 IWDG bindings > drivers: watchdog: Add STM32 IWDG driver > ARM: dts: stm32: Add watchdog support for STM32F429 SoC > ARM: dts: stm32: Add watchdog support for STM32F429 eval board > ARM: configs: stm32: Add watchdog support in STM32 defconfig > > .../devicetree/bindings/watchdog/st,stm32-iwdg.txt | 19 ++ > arch/arm/boot/dts/stm32429i-eval.dts | 5 + > arch/arm/boot/dts/stm32f429.dtsi | 9 +- > arch/arm/configs/stm32_defconfig | 1 + > drivers/watchdog/Kconfig | 12 + > drivers/watchdog/Makefile | 1 + > drivers/watchdog/stm32_iwdg.c | 253 +++++++++++++++++++++ > 7 files changed, 299 insertions(+), 1 deletion(-) > create mode 100644 Documentation/devicetree/bindings/watchdog/st,stm32-iwdg.txt > create mode 100644 drivers/watchdog/stm32_iwdg.c > Patches 3&4 applied on stm32-dt-for-v4.13 Patch 5 applied on stm32-defconfig-for-v4.13 regards Alex