From patchwork Wed Jul 5 12:23:57 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Wim Van Sebroeck X-Patchwork-Id: 13302128 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0FD83EB64DA for ; Wed, 5 Jul 2023 12:29:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229730AbjGEM3f (ORCPT ); Wed, 5 Jul 2023 08:29:35 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44034 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229903AbjGEM3f (ORCPT ); Wed, 5 Jul 2023 08:29:35 -0400 X-Greylist: delayed 334 seconds by postgrey-1.37 at lindbergh.monkeyblade.net; Wed, 05 Jul 2023 05:29:33 PDT Received: from www.linux-watchdog.org (www.linux-watchdog.org [185.87.125.42]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 3F020C9; Wed, 5 Jul 2023 05:29:33 -0700 (PDT) Received: by www.linux-watchdog.org (Postfix, from userid 500) id 4CB1A40A03; Wed, 5 Jul 2023 14:23:57 +0200 (CEST) Date: Wed, 5 Jul 2023 14:23:57 +0200 From: Wim Van Sebroeck To: Linus Torvalds Cc: Andrew Morton , LKML , Linux Watchdog Mailing List , Guenter Roeck , Bagas Sanjaya , Keguang Zhang , Krzysztof Kozlowski , Srinivas Neeli , Uwe =?iso-8859-1?q?Kleine-K=F6nig?= , Yuechao Zhao Subject: [GIT PULL REQUEST] watchdog - v6.5 release cycle. Message-ID: <20230705122357.GA14855@www.linux-watchdog.org> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-12-10) Precedence: bulk List-ID: X-Mailing-List: linux-watchdog@vger.kernel.org Hi Linus, Please pull following watchdog changes for the v6.5 release cycle. This series contains: * Add Xilinx Versal watchdog * support Hygon FCH/SCH (Server Controller Hub) * Convert GPL notices to SPDX identifiers * Other improvements The output from git request-pull: ---------------------------------------------------------------- The following changes since commit 547cc9be86f4c51c51fd429ace6c2e1ef9050d15: Merge tag 'perf_urgent_for_v6.4' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip (2023-06-25 10:13:17 -0700) are available in the git repository at: git://www.linux-watchdog.org/linux-watchdog.git linux-watchdog-6.5-rc1 for you to fetch changes up to 009637de1f65cff452ad49554d1e8ef9fda99e43: watchdog: sp5100_tco: support Hygon FCH/SCH (Server Controller Hub) (2023-06-26 14:30:07 +0200) ---------------------------------------------------------------- linux-watchdog 6.5-rc1 tag ---------------------------------------------------------------- Bagas Sanjaya (2): watchdog: Convert GPL 2.0 notice to SPDX identifier watchdog: ibmasr: Replace GPL license notice with SPDX identifier Keguang Zhang (1): watchdog: loongson1_wdt: Add DT support Krzysztof Kozlowski (1): dt-bindings: watchdog: restrict node name suffixes Srinivas Neeli (3): dt-bindings: watchdog: xlnx,versal-wwdt: Add versal watchdog watchdog: xilinx_wwdt: Add Versal window watchdog support MAINTAINERS: Add support for Xilinx versal watchdog Uwe Kleine-König (1): watchdog: ziirave_wdt: Switch i2c driver back to use .probe() Yuechao Zhao (1): watchdog: sp5100_tco: support Hygon FCH/SCH (Server Controller Hub) .../devicetree/bindings/watchdog/watchdog.yaml | 4 +- .../bindings/watchdog/xlnx,versal-wwdt.yaml | 50 +++++ MAINTAINERS | 2 + drivers/watchdog/Kconfig | 18 ++ drivers/watchdog/Makefile | 1 + drivers/watchdog/ep93xx_wdt.c | 5 +- drivers/watchdog/ibmasr.c | 3 +- drivers/watchdog/loongson1_wdt.c | 13 +- drivers/watchdog/m54xx_wdt.c | 4 +- drivers/watchdog/max63xx_wdt.c | 5 +- drivers/watchdog/moxart_wdt.c | 4 +- drivers/watchdog/octeon-wdt-nmi.S | 5 +- drivers/watchdog/orion_wdt.c | 4 +- drivers/watchdog/rtd119x_wdt.c | 2 +- drivers/watchdog/sbc_fitpc2_wdt.c | 4 +- drivers/watchdog/sp5100_tco.c | 4 +- drivers/watchdog/ts4800_wdt.c | 4 +- drivers/watchdog/ts72xx_wdt.c | 4 +- drivers/watchdog/xilinx_wwdt.c | 201 +++++++++++++++++++++ drivers/watchdog/ziirave_wdt.c | 2 +- 20 files changed, 301 insertions(+), 38 deletions(-) create mode 100644 Documentation/devicetree/bindings/watchdog/xlnx,versal-wwdt.yaml create mode 100644 drivers/watchdog/xilinx_wwdt.c ---------------------------------------------------------------- Kind regards, Wim.