Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934989AbdCVOOq (ORCPT ); Wed, 22 Mar 2017 10:14:46 -0400 Received: from mx08-00178001.pphosted.com ([91.207.212.93]:28729 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S934687AbdCVOOT (ORCPT ); Wed, 22 Mar 2017 10:14:19 -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 v2 0/5] STM32 Independant watchdog Date: Wed, 22 Mar 2017 15:12:49 +0100 Message-ID: <1490191974-29722-1-git-send-email-yannick.fertre@st.com> X-Mailer: git-send-email 1.9.1 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-22_11:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1136 Lines: 30 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: 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: Add watchdog support in STM32 defconfig .../devicetree/bindings/watchdog/st,stm32-iwdg.txt | 15 ++ arch/arm/boot/dts/stm32429i-eval.dts | 4 + arch/arm/boot/dts/stm32f429.dtsi | 9 +- arch/arm/configs/stm32_defconfig | 1 + drivers/watchdog/Kconfig | 11 + drivers/watchdog/Makefile | 1 + drivers/watchdog/stm32_iwdg.c | 289 +++++++++++++++++++++ 7 files changed, 329 insertions(+), 1 deletion(-) create mode 100644 Documentation/devicetree/bindings/watchdog/st,stm32-iwdg.txt create mode 100644 drivers/watchdog/stm32_iwdg.c -- 1.9.1