All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wim Van Sebroeck <wim@linux-watchdog.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: "Andrew Morton" <akpm@linux-foundation.org>,
	LKML <linux-kernel@vger.kernel.org>,
	"Linux Watchdog Mailing List" <linux-watchdog@vger.kernel.org>,
	"Guenter Roeck" <linux@roeck-us.net>,
	"Ahmad Fatoum" <a.fatoum@pengutronix.de>,
	"Artem Lapkin" <email2tema@gmail.com>,
	"Cai Huoqing" <caihuoqing@baidu.com>,
	"Fengquan Chen" <Fengquan.Chen@mediatek.com>,
	"Geert Uytterhoeven" <geert+renesas@glider.be>,
	"Jackie Liu" <liuyun01@kylinos.cn>,
	"Krzysztof Kozlowski" <krzysztof.kozlowski@canonical.com>,
	"Linus Walleij" <linus.walleij@linaro.org>,
	"Lukas Bulwahn" <lukas.bulwahn@gmail.com>,
	"Mika Westerberg" <mika.westerberg@linux.intel.com>,
	"Philipp Zabel" <p.zabel@pengutronix.de>,
	"Primoz Fiser" <primoz.fiser@norik.com>,
	"Rafał Miłecki" <rafal@milecki.pl>,
	"Samuel Holland" <samuel@sholland.org>,
	"Tang Bin" <tangbin@cmss.chinamobile.com>,
	"Thomas Weißschuh" <linux@weissschuh.net>
Subject: [GIT PULL REQUEST] watchdog - v5.16 Merge window
Date: Tue, 9 Nov 2021 15:05:40 +0100	[thread overview]
Message-ID: <20211109140540.GA29107@www.linux-watchdog.org> (raw)

Hi Linus,

Please pull the watchdog changes for the v5.16 release cycle.

This series contains:
* f71808e_wdt: convert to watchdog framework
* db8500_wdt: Rename driver (was ux500_wdt.c)
* sunxi: Add compatibles for R329 and D1
* mtk: add disable_wdt_extrst support
* several other small fixes and improvements

The output from git request-pull:
----------------------------------------------------------------
The following changes since commit cd004d8299f1dc6cfa6a4eea8f94cb45eaedf070:

  watchdog: Fix OMAP watchdog early handling (2021-10-26 20:22:51 +0200)

are available in the git repository at:

  git://www.linux-watchdog.org/linux-watchdog.git tags/linux-watchdog-5.16-rc1

for you to fetch changes up to c738888032ffafa1bbb971cd55b3d43b05b344cf:

  watchdog: db8500_wdt: Rename symbols (2021-11-01 20:18:09 +0100)

----------------------------------------------------------------
linux-watchdog 5.16-rc1 tag

----------------------------------------------------------------
Ahmad Fatoum (7):
      watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT
      watchdog: f71808e_wdt: remove superfluous global
      watchdog: f71808e_wdt: constify static array
      watchdog: f71808e_wdt: rename variant-independent identifiers appropriately
      watchdog: f71808e_wdt: migrate to new kernel watchdog API
      watchdog: f71808e_wdt: refactor to platform device/driver pair
      watchdog: f71808e_wdt: dynamically allocate watchdog driver data

Artem Lapkin (2):
      watchdog: meson_gxbb_wdt: add nowayout parameter
      watchdog: meson_gxbb_wdt: add timeout parameter

Cai Huoqing (3):
      watchdog: ar7_wdt: Make use of the helper function devm_platform_ioremap_resource_byname()
      watchdog: iTCO_wdt: Make use of the helper function devm_platform_ioremap_resource()
      watchdog: rti-wdt: Make use of the helper function devm_platform_ioremap_resource()

Fengquan Chen (2):
      dt-bindings: watchdog: mtk-wdt: add disable_wdt_extrst support
      watchdog: mtk: add disable_wdt_extrst support

Geert Uytterhoeven (1):
      watchdog: rza_wdt: Use semicolons instead of commas

Jackie Liu (1):
      ar7: fix kernel builds for compiler test

Krzysztof Kozlowski (1):
      watchdog: s3c2410: describe driver in KConfig

Linus Walleij (3):
      watchdog: ux500_wdt: Drop platform data
      watchdog: db8500_wdt: Rename driver
      watchdog: db8500_wdt: Rename symbols

Lukas Bulwahn (1):
      watchdog: remove dead iop watchdog timer driver

Mika Westerberg (1):
      watchdog: iTCO_wdt: No need to stop the timer in probe

Philipp Zabel (1):
      watchdog: mlx-wdt: Use regmap_write_bits()

Primoz Fiser (1):
      watchdog: da9062: da9063: prevent pings ahead of machine reset

Rafał Miłecki (1):
      watchdog: bcm63xx_wdt: fix fallthrough warning

Samuel Holland (3):
      dt-bindings: watchdog: sunxi: Add compatibles for R329
      dt-bindings: watchdog: sunxi: Add compatibles for D1
      watchdog: sunxi_wdt: Add support for D1

Tang Bin (1):
      watchdog: stm32_iwdg: drop superfluous error message

Thomas Weißschuh (1):
      watchdog: sp5100_tco: Add support for get_timeleft

 .../bindings/watchdog/allwinner,sun4i-a10-wdt.yaml |  48 +-
 .../devicetree/bindings/watchdog/mtk-wdt.txt       |   2 +
 drivers/mfd/db8500-prcmu.c                         |  13 +-
 drivers/watchdog/Kconfig                           |  35 +-
 drivers/watchdog/Makefile                          |   3 +-
 drivers/watchdog/ar7_wdt.c                         |   6 +-
 drivers/watchdog/bcm63xx_wdt.c                     |   2 +
 drivers/watchdog/da9062_wdt.c                      |   7 +
 drivers/watchdog/da9063_wdt.c                      |   7 +
 drivers/watchdog/{ux500_wdt.c => db8500_wdt.c}     |  89 ++-
 drivers/watchdog/f71808e_wdt.c                     | 615 +++++++--------------
 drivers/watchdog/iTCO_wdt.c                        |  19 +-
 drivers/watchdog/iop_wdt.c                         | 250 ---------
 drivers/watchdog/meson_gxbb_wdt.c                  |  12 +
 drivers/watchdog/mlx_wdt.c                         |   5 +-
 drivers/watchdog/mtk_wdt.c                         |   7 +
 drivers/watchdog/rti_wdt.c                         |   4 +-
 drivers/watchdog/rza_wdt.c                         |   4 +-
 drivers/watchdog/sp5100_tco.c                      |   9 +
 drivers/watchdog/stm32_iwdg.c                      |   4 +-
 drivers/watchdog/sunxi_wdt.c                       |  20 +-
 include/linux/platform_data/ux500_wdt.h            |  18 -
 22 files changed, 384 insertions(+), 795 deletions(-)
 rename drivers/watchdog/{ux500_wdt.c => db8500_wdt.c} (54%)
 delete mode 100644 drivers/watchdog/iop_wdt.c
 delete mode 100644 include/linux/platform_data/ux500_wdt.h
----------------------------------------------------------------

Kind regards,
Wim.


             reply	other threads:[~2021-11-09 15:31 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-09 14:05 Wim Van Sebroeck [this message]
2021-11-10 17:44 ` [GIT PULL REQUEST] watchdog - v5.16 Merge window pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211109140540.GA29107@www.linux-watchdog.org \
    --to=wim@linux-watchdog.org \
    --cc=Fengquan.Chen@mediatek.com \
    --cc=a.fatoum@pengutronix.de \
    --cc=akpm@linux-foundation.org \
    --cc=caihuoqing@baidu.com \
    --cc=email2tema@gmail.com \
    --cc=geert+renesas@glider.be \
    --cc=krzysztof.kozlowski@canonical.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-watchdog@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=linux@weissschuh.net \
    --cc=liuyun01@kylinos.cn \
    --cc=lukas.bulwahn@gmail.com \
    --cc=mika.westerberg@linux.intel.com \
    --cc=p.zabel@pengutronix.de \
    --cc=primoz.fiser@norik.com \
    --cc=rafal@milecki.pl \
    --cc=samuel@sholland.org \
    --cc=tangbin@cmss.chinamobile.com \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.