linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: watchdog: realtek,otto-wdt: add RTL9310
@ 2022-06-27 19:00 Sander Vanheule
  2022-06-27 19:00 ` [PATCH 2/2] watchdog: realtek-otto: add RTL9310 support Sander Vanheule
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Sander Vanheule @ 2022-06-27 19:00 UTC (permalink / raw)
  To: linux-watchdog, devicetree
  Cc: Wim Van Sebroeck, Guenter Roeck, Rob Herring,
	Krzysztof Kozlowski, linux-kernel, Sander Vanheule

Add the realtek,rtl9310-wdt compatible to the Realtek Otto watchdog
binding.

Signed-off-by: Sander Vanheule <sander@svanheule.net>
---
 Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml b/Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
index 11b220a5e0f6..099245fe7b10 100644
--- a/Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
+++ b/Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
@@ -29,6 +29,7 @@ properties:
       - realtek,rtl8380-wdt
       - realtek,rtl8390-wdt
       - realtek,rtl9300-wdt
+      - realtek,rtl9310-wdt
 
   reg:
     maxItems: 1
-- 
2.36.1


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

* [PATCH 2/2] watchdog: realtek-otto: add RTL9310 support
  2022-06-27 19:00 [PATCH 1/2] dt-bindings: watchdog: realtek,otto-wdt: add RTL9310 Sander Vanheule
@ 2022-06-27 19:00 ` Sander Vanheule
  2022-06-29 13:28   ` Guenter Roeck
  2022-06-29 10:38 ` [PATCH 1/2] dt-bindings: watchdog: realtek,otto-wdt: add RTL9310 Krzysztof Kozlowski
  2022-06-29 13:28 ` Guenter Roeck
  2 siblings, 1 reply; 5+ messages in thread
From: Sander Vanheule @ 2022-06-27 19:00 UTC (permalink / raw)
  To: linux-watchdog, devicetree
  Cc: Wim Van Sebroeck, Guenter Roeck, Rob Herring,
	Krzysztof Kozlowski, linux-kernel, Sander Vanheule

The RTL9310 SoC series has a watchdog timer identical to the already
supported SoCs. The peripheral is memory mapped at 0x18003260 and driven
by the Lexra bus clock.

Signed-off-by: Sander Vanheule <sander@svanheule.net>
---
 drivers/watchdog/realtek_otto_wdt.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/watchdog/realtek_otto_wdt.c b/drivers/watchdog/realtek_otto_wdt.c
index 60058a0c3ec4..2a5298c5e8e4 100644
--- a/drivers/watchdog/realtek_otto_wdt.c
+++ b/drivers/watchdog/realtek_otto_wdt.c
@@ -366,6 +366,7 @@ static const struct of_device_id otto_wdt_ids[] = {
 	{ .compatible = "realtek,rtl8380-wdt" },
 	{ .compatible = "realtek,rtl8390-wdt" },
 	{ .compatible = "realtek,rtl9300-wdt" },
+	{ .compatible = "realtek,rtl9310-wdt" },
 	{ }
 };
 MODULE_DEVICE_TABLE(of, otto_wdt_ids);
-- 
2.36.1


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

* Re: [PATCH 1/2] dt-bindings: watchdog: realtek,otto-wdt: add RTL9310
  2022-06-27 19:00 [PATCH 1/2] dt-bindings: watchdog: realtek,otto-wdt: add RTL9310 Sander Vanheule
  2022-06-27 19:00 ` [PATCH 2/2] watchdog: realtek-otto: add RTL9310 support Sander Vanheule
@ 2022-06-29 10:38 ` Krzysztof Kozlowski
  2022-06-29 13:28 ` Guenter Roeck
  2 siblings, 0 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2022-06-29 10:38 UTC (permalink / raw)
  To: Sander Vanheule, linux-watchdog, devicetree
  Cc: Wim Van Sebroeck, Guenter Roeck, Rob Herring,
	Krzysztof Kozlowski, linux-kernel

On 27/06/2022 21:00, Sander Vanheule wrote:
> Add the realtek,rtl9310-wdt compatible to the Realtek Otto watchdog
> binding.
> 
> Signed-off-by: Sander Vanheule <sander@svanheule.net>
> ---


Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>


Best regards,
Krzysztof

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

* Re: [PATCH 1/2] dt-bindings: watchdog: realtek,otto-wdt: add RTL9310
  2022-06-27 19:00 [PATCH 1/2] dt-bindings: watchdog: realtek,otto-wdt: add RTL9310 Sander Vanheule
  2022-06-27 19:00 ` [PATCH 2/2] watchdog: realtek-otto: add RTL9310 support Sander Vanheule
  2022-06-29 10:38 ` [PATCH 1/2] dt-bindings: watchdog: realtek,otto-wdt: add RTL9310 Krzysztof Kozlowski
@ 2022-06-29 13:28 ` Guenter Roeck
  2 siblings, 0 replies; 5+ messages in thread
From: Guenter Roeck @ 2022-06-29 13:28 UTC (permalink / raw)
  To: Sander Vanheule, linux-watchdog, devicetree
  Cc: Wim Van Sebroeck, Rob Herring, Krzysztof Kozlowski, linux-kernel

On 6/27/22 12:00, Sander Vanheule wrote:
> Add the realtek,rtl9310-wdt compatible to the Realtek Otto watchdog
> binding.
> 
> Signed-off-by: Sander Vanheule <sander@svanheule.net>

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

> ---
>   Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml b/Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
> index 11b220a5e0f6..099245fe7b10 100644
> --- a/Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
> +++ b/Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
> @@ -29,6 +29,7 @@ properties:
>         - realtek,rtl8380-wdt
>         - realtek,rtl8390-wdt
>         - realtek,rtl9300-wdt
> +      - realtek,rtl9310-wdt
>   
>     reg:
>       maxItems: 1


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

* Re: [PATCH 2/2] watchdog: realtek-otto: add RTL9310 support
  2022-06-27 19:00 ` [PATCH 2/2] watchdog: realtek-otto: add RTL9310 support Sander Vanheule
@ 2022-06-29 13:28   ` Guenter Roeck
  0 siblings, 0 replies; 5+ messages in thread
From: Guenter Roeck @ 2022-06-29 13:28 UTC (permalink / raw)
  To: Sander Vanheule, linux-watchdog, devicetree
  Cc: Wim Van Sebroeck, Rob Herring, Krzysztof Kozlowski, linux-kernel

On 6/27/22 12:00, Sander Vanheule wrote:
> The RTL9310 SoC series has a watchdog timer identical to the already
> supported SoCs. The peripheral is memory mapped at 0x18003260 and driven
> by the Lexra bus clock.
> 
> Signed-off-by: Sander Vanheule <sander@svanheule.net>

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

> ---
>   drivers/watchdog/realtek_otto_wdt.c | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/watchdog/realtek_otto_wdt.c b/drivers/watchdog/realtek_otto_wdt.c
> index 60058a0c3ec4..2a5298c5e8e4 100644
> --- a/drivers/watchdog/realtek_otto_wdt.c
> +++ b/drivers/watchdog/realtek_otto_wdt.c
> @@ -366,6 +366,7 @@ static const struct of_device_id otto_wdt_ids[] = {
>   	{ .compatible = "realtek,rtl8380-wdt" },
>   	{ .compatible = "realtek,rtl8390-wdt" },
>   	{ .compatible = "realtek,rtl9300-wdt" },
> +	{ .compatible = "realtek,rtl9310-wdt" },
>   	{ }
>   };
>   MODULE_DEVICE_TABLE(of, otto_wdt_ids);


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

end of thread, other threads:[~2022-06-29 13:28 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-27 19:00 [PATCH 1/2] dt-bindings: watchdog: realtek,otto-wdt: add RTL9310 Sander Vanheule
2022-06-27 19:00 ` [PATCH 2/2] watchdog: realtek-otto: add RTL9310 support Sander Vanheule
2022-06-29 13:28   ` Guenter Roeck
2022-06-29 10:38 ` [PATCH 1/2] dt-bindings: watchdog: realtek,otto-wdt: add RTL9310 Krzysztof Kozlowski
2022-06-29 13:28 ` Guenter Roeck

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).