mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2 0/4] da9062/da9061 watchdog timeout mode
@ 2026-09-24  6:50 Primoz Fiser
  2026-09-24  6:50 ` [PATCH v2 1/4] mfd: da9062: Make register CONFIG_I writable Primoz Fiser
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Primoz Fiser @ 2026-09-24  6:50 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Frank Li,
	Sascha Hauer, Pengutronix Kernel Team, Fabio Estevam,
	Support Opensource, Lee Jones, Wim Van Sebroeck, Guenter Roeck
  Cc: devicetree, imx, linux-arm-kernel, linux-kernel, mfd,
	linux-watchdog, upstream, andrej.picej

This is a revival of a series originally posted by Andrej Picej in              
December 2021 [1]. It lets the DA9061/2 PMIC watchdog be configured via         
the "dlg,wdt-sd" DT property, to trigger a full SHUTDOWN instead of the         
default POWERDOWN on watchdog timeout, and enables that on the PHYTEC           
phyCORE-i.MX6 SOM.                                                              
                                                                                
From v5 of original series this resend drops patch 4/5 ("dt-bindings:           
watchdog: da9062: add watchdog timeout mode") because it already landed         
upstream as commit 382256b219fb, later converted from .txt to YAML by           
bd888a4377ae. Thus dlg,da9062-watchdog.yaml already documents dlg,wdt-sd        
property.                                                                       
                                                                                
Patches 1 and 2 (the mfd prerequisites making register CONFIG_I                 
writable) needed a rebase: an unrelated commit has since added                  
CONFIG_J, the register immediately adjacent to CONFIG_I, to the same            
writeable-range tables. Rather than reapplying the original single-             
register insert next to it, these merge CONFIG_I and CONFIG_J into one          
range, matching the existing CONFIG_G-CONFIG_K style already used in            
this file.                                                                      
                                                                                
Patch 3 (the watchdog driver support) still applies unmodified.                 
                                                                                
Patch 4 only needed its target path updated for the arch/arm/boot/dts           
vendor sub-directory move (imx6qdl-phytec-phycore-som.dtsi is now under         
nxp/imx/); its content is unchanged.

Changes in v2:

Patch 1 and 2: 
- capitalize subject description
 
Patch 3:
- implement Guenter's remarks (code refactor and update commit message)

Patch 4:
- capitalize subject description

Link to v1: https://lore.kernel.org/all/20260923111719.2032012-1-primoz.fiser@norik.com/                                         
                                                                                
[1] https://lore.kernel.org/all/20211206064732.280375-1-andrej.picej@norik.com/

Andrej Picej (3):
  mfd: da9061: Make register CONFIG_I writable
  watchdog: da9062: Add support for dlg,wdt-sd property
  ARM: dts: imx6: phycore-som: Set watchdog timeout mode to shutdown

Stefan Christ (1):
  mfd: da9062: Make register CONFIG_I writable

 .../nxp/imx/imx6qdl-phytec-phycore-som.dtsi    |  1 +
 drivers/mfd/da9062-core.c                      |  4 ++--
 drivers/watchdog/da9062_wdt.c                  | 18 ++++++++++++++++++
 3 files changed, 21 insertions(+), 2 deletions(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 7+ messages in thread
* [PATCH v2 1/4] mfd: da9062: make register CONFIG_I writable
@ 2021-11-30 13:42 Andrej Picej
  2021-11-30 13:49 ` Andrej Picej
  0 siblings, 1 reply; 7+ messages in thread
From: Andrej Picej @ 2021-11-30 13:42 UTC (permalink / raw)
  Cc: andrej.picej, support.opensource, wim, linux, linux-watchdog,
	linux-kernel, robh+dt, devicetree, shawnguo, s.hauer, kernel,
	festevam, linux-imx, linux-arm-kernel

From: Stefan Christ <s.christ@phytec.de>

Make the config register CONFIG_I writable to change the watchdog mode.

Signed-off-by: Stefan Christ <s.christ@phytec.de>
Signed-off-by: Andrej Picej <andrej.picej@norik.com>
---
 drivers/mfd/da9062-core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mfd/da9062-core.c b/drivers/mfd/da9062-core.c
index 01f8e10dfa55..7041ba53efb4 100644
--- a/drivers/mfd/da9062-core.c
+++ b/drivers/mfd/da9062-core.c
@@ -556,6 +556,7 @@ static const struct regmap_range da9062_aa_writeable_ranges[] = {
 	regmap_reg_range(DA9062AA_VBUCK3_B, DA9062AA_VBUCK3_B),
 	regmap_reg_range(DA9062AA_VLDO1_B, DA9062AA_VLDO4_B),
 	regmap_reg_range(DA9062AA_BBAT_CONT, DA9062AA_BBAT_CONT),
+	regmap_reg_range(DA9062AA_CONFIG_I, DA9062AA_CONFIG_I),
 	regmap_reg_range(DA9062AA_GP_ID_0, DA9062AA_GP_ID_19),
 };
 
-- 
2.25.1


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2026-09-24  6:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-24  6:50 [PATCH v2 0/4] da9062/da9061 watchdog timeout mode Primoz Fiser
2026-09-24  6:50 ` [PATCH v2 1/4] mfd: da9062: Make register CONFIG_I writable Primoz Fiser
2026-09-24  6:50 ` [PATCH v2 2/4] mfd: da9061: " Primoz Fiser
2026-09-24  6:50 ` [PATCH v2 3/4] watchdog: da9062: Add support for dlg,wdt-sd property Primoz Fiser
2026-09-24  6:50 ` [PATCH v2 4/4] ARM: dts: imx6: phycore-som: Set watchdog timeout mode to shutdown Primoz Fiser
  -- strict thread matches above, loose matches on Subject: below --
2021-11-30 13:42 [PATCH v2 1/4] mfd: da9062: make register CONFIG_I writable Andrej Picej
2021-11-30 13:49 ` Andrej Picej

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®