linux-watchdog.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 06/14] dt-bindings: watchdog: npcm: Add nuvoton,wpcm450-wdt
       [not found] <20210320181610.680870-1-j.neuschaefer@gmx.net>
@ 2021-03-20 18:16 ` Jonathan Neuschäfer
  2021-03-27 16:39   ` Rob Herring
  2021-03-20 18:16 ` [PATCH 11/14] watchdog: npcm: Add support for WPCM450 Jonathan Neuschäfer
  1 sibling, 1 reply; 5+ messages in thread
From: Jonathan Neuschäfer @ 2021-03-20 18:16 UTC (permalink / raw)
  To: openbmc
  Cc: linux-kernel, devicetree, linux-arm-kernel,
	Jonathan Neuschäfer, Avi Fishman, Tomer Maimon, Tali Perry,
	Patrick Venture, Nancy Yuen, Benjamin Fair, Wim Van Sebroeck,
	Guenter Roeck, Rob Herring, linux-watchdog

Add a compatible string for the WPCM450 SoC, which has the same watchdog
timer.

Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
---
 .../devicetree/bindings/watchdog/nuvoton,npcm-wdt.txt          | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/watchdog/nuvoton,npcm-wdt.txt b/Documentation/devicetree/bindings/watchdog/nuvoton,npcm-wdt.txt
index 6d593003c933b..9059f54dc023d 100644
--- a/Documentation/devicetree/bindings/watchdog/nuvoton,npcm-wdt.txt
+++ b/Documentation/devicetree/bindings/watchdog/nuvoton,npcm-wdt.txt
@@ -5,7 +5,8 @@ The watchdog supports a pre-timeout interrupt that fires 10ms before the
 expiry.

 Required properties:
-- compatible      : "nuvoton,npcm750-wdt" for NPCM750 (Poleg).
+- compatible      : "nuvoton,npcm750-wdt" for NPCM750 (Poleg), or
+                    "nuvoton,wpcm450-wdt" for WPCM450 (Hermon).
 - reg             : Offset and length of the register set for the device.
 - interrupts      : Contain the timer interrupt with flags for
                     falling edge.
--
2.30.2


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

* [PATCH 11/14] watchdog: npcm: Add support for WPCM450
       [not found] <20210320181610.680870-1-j.neuschaefer@gmx.net>
  2021-03-20 18:16 ` [PATCH 06/14] dt-bindings: watchdog: npcm: Add nuvoton,wpcm450-wdt Jonathan Neuschäfer
@ 2021-03-20 18:16 ` Jonathan Neuschäfer
  2021-03-20 20:24   ` Guenter Roeck
  1 sibling, 1 reply; 5+ messages in thread
From: Jonathan Neuschäfer @ 2021-03-20 18:16 UTC (permalink / raw)
  To: openbmc
  Cc: linux-kernel, devicetree, linux-arm-kernel,
	Jonathan Neuschäfer, Avi Fishman, Tomer Maimon, Tali Perry,
	Patrick Venture, Nancy Yuen, Benjamin Fair, Wim Van Sebroeck,
	Guenter Roeck, linux-watchdog

Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
---
 drivers/watchdog/npcm_wdt.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/watchdog/npcm_wdt.c b/drivers/watchdog/npcm_wdt.c
index 765577f11c8db..28a24caa2627c 100644
--- a/drivers/watchdog/npcm_wdt.c
+++ b/drivers/watchdog/npcm_wdt.c
@@ -229,6 +229,7 @@ static int npcm_wdt_probe(struct platform_device *pdev)

 #ifdef CONFIG_OF
 static const struct of_device_id npcm_wdt_match[] = {
+	{.compatible = "nuvoton,wpcm450-wdt"},
 	{.compatible = "nuvoton,npcm750-wdt"},
 	{},
 };
--
2.30.2


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

* Re: [PATCH 11/14] watchdog: npcm: Add support for WPCM450
  2021-03-20 18:16 ` [PATCH 11/14] watchdog: npcm: Add support for WPCM450 Jonathan Neuschäfer
@ 2021-03-20 20:24   ` Guenter Roeck
  2021-03-20 20:43     ` Jonathan Neuschäfer
  0 siblings, 1 reply; 5+ messages in thread
From: Guenter Roeck @ 2021-03-20 20:24 UTC (permalink / raw)
  To: Jonathan Neuschäfer, openbmc
  Cc: linux-kernel, devicetree, linux-arm-kernel, Avi Fishman,
	Tomer Maimon, Tali Perry, Patrick Venture, Nancy Yuen,
	Benjamin Fair, Wim Van Sebroeck, linux-watchdog

On 3/20/21 11:16 AM, Jonathan Neuschäfer wrote:

Patch description goes here.

Guenter

> Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>

> ---
>  drivers/watchdog/npcm_wdt.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/watchdog/npcm_wdt.c b/drivers/watchdog/npcm_wdt.c
> index 765577f11c8db..28a24caa2627c 100644
> --- a/drivers/watchdog/npcm_wdt.c
> +++ b/drivers/watchdog/npcm_wdt.c
> @@ -229,6 +229,7 @@ static int npcm_wdt_probe(struct platform_device *pdev)
> 
>  #ifdef CONFIG_OF
>  static const struct of_device_id npcm_wdt_match[] = {
> +	{.compatible = "nuvoton,wpcm450-wdt"},
>  	{.compatible = "nuvoton,npcm750-wdt"},
>  	{},
>  };
> --
> 2.30.2
> 


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

* Re: [PATCH 11/14] watchdog: npcm: Add support for WPCM450
  2021-03-20 20:24   ` Guenter Roeck
@ 2021-03-20 20:43     ` Jonathan Neuschäfer
  0 siblings, 0 replies; 5+ messages in thread
From: Jonathan Neuschäfer @ 2021-03-20 20:43 UTC (permalink / raw)
  To: Guenter Roeck
  Cc: Jonathan Neuschäfer, openbmc, devicetree, linux-watchdog,
	Tomer Maimon, Avi Fishman, Patrick Venture, linux-kernel,
	Tali Perry, Wim Van Sebroeck, linux-arm-kernel, Benjamin Fair

[-- Attachment #1: Type: text/plain, Size: 235 bytes --]

On Sat, Mar 20, 2021 at 01:24:31PM -0700, Guenter Roeck wrote:
> On 3/20/21 11:16 AM, Jonathan Neuschäfer wrote:
> 
> Patch description goes here.

Ah right, I forgot to add one. I'll fix it in the next iteration.


Jonathan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH 06/14] dt-bindings: watchdog: npcm: Add nuvoton,wpcm450-wdt
  2021-03-20 18:16 ` [PATCH 06/14] dt-bindings: watchdog: npcm: Add nuvoton,wpcm450-wdt Jonathan Neuschäfer
@ 2021-03-27 16:39   ` Rob Herring
  0 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2021-03-27 16:39 UTC (permalink / raw)
  To: Jonathan Neuschäfer
  Cc: linux-kernel, Patrick Venture, Wim Van Sebroeck, openbmc,
	Nancy Yuen, Tali Perry, Guenter Roeck, Benjamin Fair,
	Rob Herring, linux-arm-kernel, Tomer Maimon, linux-watchdog,
	devicetree, Avi Fishman

On Sat, 20 Mar 2021 19:16:02 +0100, Jonathan Neuschäfer wrote:
> Add a compatible string for the WPCM450 SoC, which has the same watchdog
> timer.
> 
> Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
> ---
>  .../devicetree/bindings/watchdog/nuvoton,npcm-wdt.txt          | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 

Acked-by: Rob Herring <robh@kernel.org>

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

end of thread, other threads:[~2021-03-27 16:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20210320181610.680870-1-j.neuschaefer@gmx.net>
2021-03-20 18:16 ` [PATCH 06/14] dt-bindings: watchdog: npcm: Add nuvoton,wpcm450-wdt Jonathan Neuschäfer
2021-03-27 16:39   ` Rob Herring
2021-03-20 18:16 ` [PATCH 11/14] watchdog: npcm: Add support for WPCM450 Jonathan Neuschäfer
2021-03-20 20:24   ` Guenter Roeck
2021-03-20 20:43     ` Jonathan Neuschäfer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).