Hi Linus, Please pull the watchdog changes for the v5.19 release cycle. This series contains: * Add MediaTek MT8186 support * Add Mediatek MT7986 reset-controller support * Add i.MX93 support * Add watchdog driver for Sunplus SP7021 * Add SC8180X and SC8280XP compatibles * Add Renesas RZ/N1 Watchdog driver and support for RZ/N1 * rzg2l_wdt improvements and fixes * Several other improvements and fixes The output from git request-pull: ---------------------------------------------------------------- The following changes since commit 672c0c5173427e6b3e2a9bbb7be51ceeec78093a: Linux 5.18-rc5 (2022-05-01 13:57:58 -0700) are available in the git repository at: git://www.linux-watchdog.org/linux-watchdog.git tags/linux-watchdog-5.19-rc1 for you to fetch changes up to 5d24df3d690809952528e7a19a43d84bc5b99d44: watchdog: ts4800_wdt: Fix refcount leak in ts4800_wdt_probe (2022-05-21 10:09:31 +0200) ---------------------------------------------------------------- linux-watchdog 5.19-rc1 tag ---------------------------------------------------------------- Andre Przywara (2): dt-bindings: watchdog: sunxi: fix F1C100s compatible dt-bindings: watchdog: sunxi: clarify clock support Andrej Picej (1): dt-bindings: watchdog: da9062: add watchdog timeout mode Biju Das (8): watchdog: rzg2l_wdt: Fix 32bit overflow issue watchdog: rzg2l_wdt: Fix Runtime PM usage watchdog: rzg2l_wdt: Fix 'BUG: Invalid wait context' watchdog: rzg2l_wdt: Fix reset control imbalance watchdog: rzg2l_wdt: Add error check for reset_control_deassert watchdog: rzg2l_wdt: Use force reset for WDT reset watchdog: rzg2l_wdt: Add set_timeout callback dt-bindings: watchdog: renesas,wdt: Document RZ/G2UL SoC Bjorn Andersson (1): dt-bindings: watchdog: Add SC8180X and SC8280XP compatibles Corentin Labbe (1): dt-bindings: watchdog: convert faraday,ftwdt010 to yaml David Heidelberg (1): dt-bindings: watchdog: improve QCOM compatible parsing for modern chips Eliav Farber (1): watchdog: sp805: disable watchdog on remove Geert Uytterhoeven (1): dt-bindings: watchdog: renesas,wdt: R-Car V3U is R-Car Gen4 Jan Kiszka (1): watchdog: rti_wdt: Fix calculation and evaluation of preset heartbeat Jean-Jacques Hiblot (1): dt-bindings: watchdog: renesas,wdt: Add support for RZ/N1 Kunihiko Hayashi (1): dt-bindings: watchdog: uniphier: Use unevaluatedProperties Lad Prabhakar (1): dt-bindings: watchdog: renesas,wdt: Document RZ/V2L SoC Liu Xinpeng (4): watchdog: iTCO_wdt: Using existing macro define covers more scenarios watchdog: wdat_wdt: Using the existing function to check parameter timeout watchdog: wdat_wdt: Stop watchdog when rebooting the system watchdog: wdat_wdt: Stop watchdog when uninstalling module Miaoqian Lin (2): watchdog: rti-wdt: Fix pm_runtime_get_sync() error checking watchdog: ts4800_wdt: Fix refcount leak in ts4800_wdt_probe Peng Fan (1): dt-bindings: watchdog: imx7ulp-wdt: Add imx93 compatible string Phil Edworthy (1): watchdog: Add Renesas RZ/N1 Watchdog driver Primoz Fiser (2): dt-bindings: mfd: da9063: watchdog: add suspend disable option watchdog: da9063: optionally disable watchdog during suspend Rafał Miłecki (1): watchdog: bcm7038_wdt: Support BCM6345 compatible string Rex-BC Chen (1): dt-bindings: watchdog: Add compatible for MediaTek MT8186 Runyang Chen (2): dt-bindings: reset: mt8186: add reset-controller header file watchdog: mediatek: mt8186: add wdt support Sam Shih (2): watchdog: mtk_wdt: mt7986: Add toprgu reset controller support dt-bindings: reset: mt7986: Add reset-controller header file Xiantao Hu (2): dt-bindings: watchdog: Add watchdog yaml file for Sunplus SP7021 watchdog: Add watchdog driver for Sunplus SP7021 Documentation/devicetree/bindings/mfd/da9063.txt | 9 +- .../bindings/watchdog/allwinner,sun4i-a10-wdt.yaml | 24 +-- .../devicetree/bindings/watchdog/da9062-wdt.txt | 6 + .../bindings/watchdog/faraday,ftwdt010.txt | 22 --- .../bindings/watchdog/faraday,ftwdt010.yaml | 67 +++++++ .../bindings/watchdog/fsl-imx7ulp-wdt.yaml | 1 + .../devicetree/bindings/watchdog/mtk-wdt.txt | 1 + .../devicetree/bindings/watchdog/qcom-wdt.yaml | 39 ++-- .../devicetree/bindings/watchdog/renesas,wdt.yaml | 12 +- .../bindings/watchdog/socionext,uniphier-wdt.yaml | 2 +- .../bindings/watchdog/sunplus,sp7021-wdt.yaml | 47 +++++ MAINTAINERS | 7 + drivers/watchdog/Kconfig | 19 ++ drivers/watchdog/Makefile | 2 + drivers/watchdog/bcm7038_wdt.c | 1 + drivers/watchdog/da9063_wdt.c | 36 ++++ drivers/watchdog/iTCO_wdt.c | 20 +- drivers/watchdog/mtk_wdt.c | 12 ++ drivers/watchdog/rti_wdt.c | 10 +- drivers/watchdog/rzg2l_wdt.c | 83 ++++---- drivers/watchdog/rzn1_wdt.c | 203 +++++++++++++++++++ drivers/watchdog/sp805_wdt.c | 1 + drivers/watchdog/sunplus_wdt.c | 220 +++++++++++++++++++++ drivers/watchdog/ts4800_wdt.c | 5 +- drivers/watchdog/wdat_wdt.c | 6 +- include/dt-bindings/reset/mt7986-resets.h | 55 ++++++ include/dt-bindings/reset/mt8186-resets.h | 36 ++++ 27 files changed, 831 insertions(+), 115 deletions(-) delete mode 100644 Documentation/devicetree/bindings/watchdog/faraday,ftwdt010.txt create mode 100644 Documentation/devicetree/bindings/watchdog/faraday,ftwdt010.yaml create mode 100644 Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml create mode 100644 drivers/watchdog/rzn1_wdt.c create mode 100644 drivers/watchdog/sunplus_wdt.c create mode 100644 include/dt-bindings/reset/mt7986-resets.h create mode 100644 include/dt-bindings/reset/mt8186-resets.h ---------------------------------------------------------------- Kind regards, Wim.