Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1606542 > unrolled thread

[PATCH v2 0/5] STM32 Independant watchdog

Started byYannick Fertre <yannick.fertre@st.com>
First post2017-03-22 15:20 +0100
Last post2017-03-22 15:20 +0100
Articles 2 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH v2 0/5] STM32 Independant watchdog Yannick Fertre <yannick.fertre@st.com> - 2017-03-22 15:20 +0100
    [PATCH v2 5/5] ARM: configs: Add watchdog support in STM32 defconfig Yannick Fertre <yannick.fertre@st.com> - 2017-03-22 15:20 +0100

#1606542 — [PATCH v2 0/5] STM32 Independant watchdog

FromYannick Fertre <yannick.fertre@st.com>
Date2017-03-22 15:20 +0100
Subject[PATCH v2 0/5] STM32 Independant watchdog
Message-ID<tnPhf-3Fu-9@gated-at.bofh.it>
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

[toc] | [next] | [standalone]


#1606558 — [PATCH v2 5/5] ARM: configs: Add watchdog support in STM32 defconfig

FromYannick Fertre <yannick.fertre@st.com>
Date2017-03-22 15:20 +0100
Subject[PATCH v2 5/5] ARM: configs: Add watchdog support in STM32 defconfig
Message-ID<tnPhh-3Fu-57@gated-at.bofh.it>
In reply to#1606542
This patch adds STM32 watchdog support in stm32_defconfig file

Signed-off-by: Yannick Fertre <yannick.fertre@st.com>
---
 arch/arm/configs/stm32_defconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/configs/stm32_defconfig b/arch/arm/configs/stm32_defconfig
index a9d8e3c..83afa73 100644
--- a/arch/arm/configs/stm32_defconfig
+++ b/arch/arm/configs/stm32_defconfig
@@ -48,6 +48,7 @@ CONFIG_SERIAL_STM32=y
 CONFIG_SERIAL_STM32_CONSOLE=y
 # CONFIG_HW_RANDOM is not set
 # CONFIG_HWMON is not set
+CONFIG_WATCHDOG=y
 CONFIG_REGULATOR=y
 CONFIG_REGULATOR_FIXED_VOLTAGE=y
 # CONFIG_USB_SUPPORT is not set
-- 
1.9.1

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web