linux-mediatek.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] MediaTek watchdog: MT6795 support and YAML conversion
@ 2022-10-05 11:35 AngeloGioacchino Del Regno
  2022-10-05 11:35 ` [PATCH 1/5] arm64: dts: mediatek: mt8186: Fix watchdog compatible AngeloGioacchino Del Regno
                   ` (4 more replies)
  0 siblings, 5 replies; 16+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-10-05 11:35 UTC (permalink / raw)
  To: wim
  Cc: linux, robh+dt, krzysztof.kozlowski+dt, matthias.bgg,
	allen-kh.cheng, seiya.wang, angelogioacchino.delregno,
	tinghan.shen, linux-watchdog, devicetree, linux-arm-kernel,
	linux-mediatek, linux-kernel

This series converts mtk-wdt.txt to dt-schema, fixes watchdog compatibles
for MT8186 and MT8195, and adds support for the watchdog and toprgu reset
found on the MediaTek Helio X10 MT6795 SoC.

AngeloGioacchino Del Regno (5):
  arm64: dts: mediatek: mt8186: Fix watchdog compatible
  arm64: dts: mediatek: mt8195: Fix watchdog compatible
  dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema
  dt-bindings: watchdog: mediatek,mtk-wdt: Add compatible for MT6795
  watchdog: mtk_wdt: Add support for MT6795 Helio X10 watchdog and
    toprgu

 .../bindings/watchdog/mediatek,mtk-wdt.yaml   | 81 +++++++++++++++++++
 .../devicetree/bindings/watchdog/mtk-wdt.txt  | 42 ----------
 arch/arm64/boot/dts/mediatek/mt8186.dtsi      |  3 +-
 arch/arm64/boot/dts/mediatek/mt8195.dtsi      |  3 +-
 drivers/watchdog/mtk_wdt.c                    |  6 ++
 5 files changed, 89 insertions(+), 46 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
 delete mode 100644 Documentation/devicetree/bindings/watchdog/mtk-wdt.txt

-- 
2.37.2



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

* [PATCH 1/5] arm64: dts: mediatek: mt8186: Fix watchdog compatible
  2022-10-05 11:35 [PATCH 0/5] MediaTek watchdog: MT6795 support and YAML conversion AngeloGioacchino Del Regno
@ 2022-10-05 11:35 ` AngeloGioacchino Del Regno
  2022-10-05 11:35 ` [PATCH 2/5] arm64: dts: mediatek: mt8195: " AngeloGioacchino Del Regno
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 16+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-10-05 11:35 UTC (permalink / raw)
  To: wim
  Cc: linux, robh+dt, krzysztof.kozlowski+dt, matthias.bgg,
	allen-kh.cheng, seiya.wang, angelogioacchino.delregno,
	tinghan.shen, linux-watchdog, devicetree, linux-arm-kernel,
	linux-mediatek, linux-kernel

MT8186's watchdog embeds a reset controller and needs only the
mediatek,mt8186-wdt compatible string as the MT6589 one is there
for watchdogs that don't have any reset controller capability.

Fixes: 2e78620b1350 ("arm64: dts: Add MediaTek MT8186 dts and evaluation board and Makefile")
Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
---
 arch/arm64/boot/dts/mediatek/mt8186.dtsi | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/mediatek/mt8186.dtsi b/arch/arm64/boot/dts/mediatek/mt8186.dtsi
index 64693c17af9e..e4366144cca5 100644
--- a/arch/arm64/boot/dts/mediatek/mt8186.dtsi
+++ b/arch/arm64/boot/dts/mediatek/mt8186.dtsi
@@ -330,8 +330,7 @@ pio: pinctrl@10005000 {
 		};
 
 		watchdog: watchdog@10007000 {
-			compatible = "mediatek,mt8186-wdt",
-				     "mediatek,mt6589-wdt";
+			compatible = "mediatek,mt8186-wdt";
 			mediatek,disable-extrst;
 			reg = <0 0x10007000 0 0x1000>;
 			#reset-cells = <1>;
-- 
2.37.2



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

* [PATCH 2/5] arm64: dts: mediatek: mt8195: Fix watchdog compatible
  2022-10-05 11:35 [PATCH 0/5] MediaTek watchdog: MT6795 support and YAML conversion AngeloGioacchino Del Regno
  2022-10-05 11:35 ` [PATCH 1/5] arm64: dts: mediatek: mt8186: Fix watchdog compatible AngeloGioacchino Del Regno
@ 2022-10-05 11:35 ` AngeloGioacchino Del Regno
  2022-10-05 11:35 ` [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema AngeloGioacchino Del Regno
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 16+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-10-05 11:35 UTC (permalink / raw)
  To: wim
  Cc: linux, robh+dt, krzysztof.kozlowski+dt, matthias.bgg,
	allen-kh.cheng, seiya.wang, angelogioacchino.delregno,
	tinghan.shen, linux-watchdog, devicetree, linux-arm-kernel,
	linux-mediatek, linux-kernel

MT8195's watchdog embeds a reset controller and needs only the
mediatek,mt8195-wdt compatible string as the MT6589 one is there
for watchdogs that don't have any reset controller capability.

Fixes: 37f2582883be ("arm64: dts: Add mediatek SoC mt8195 and evaluation board")
Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
---
 arch/arm64/boot/dts/mediatek/mt8195.dtsi | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/mediatek/mt8195.dtsi b/arch/arm64/boot/dts/mediatek/mt8195.dtsi
index 0b85b5874a4f..58ed83d97cc3 100644
--- a/arch/arm64/boot/dts/mediatek/mt8195.dtsi
+++ b/arch/arm64/boot/dts/mediatek/mt8195.dtsi
@@ -683,8 +683,7 @@ power-domain@MT8195_POWER_DOMAIN_AUDIO {
 		};
 
 		watchdog: watchdog@10007000 {
-			compatible = "mediatek,mt8195-wdt",
-				     "mediatek,mt6589-wdt";
+			compatible = "mediatek,mt8195-wdt";
 			mediatek,disable-extrst;
 			reg = <0 0x10007000 0 0x100>;
 			#reset-cells = <1>;
-- 
2.37.2



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

* [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema
  2022-10-05 11:35 [PATCH 0/5] MediaTek watchdog: MT6795 support and YAML conversion AngeloGioacchino Del Regno
  2022-10-05 11:35 ` [PATCH 1/5] arm64: dts: mediatek: mt8186: Fix watchdog compatible AngeloGioacchino Del Regno
  2022-10-05 11:35 ` [PATCH 2/5] arm64: dts: mediatek: mt8195: " AngeloGioacchino Del Regno
@ 2022-10-05 11:35 ` AngeloGioacchino Del Regno
  2022-10-05 13:38   ` Rob Herring
  2022-10-05 16:33   ` Krzysztof Kozlowski
  2022-10-05 11:35 ` [PATCH 4/5] dt-bindings: watchdog: mediatek,mtk-wdt: Add compatible for MT6795 AngeloGioacchino Del Regno
  2022-10-05 11:35 ` [PATCH 5/5] watchdog: mtk_wdt: Add support for MT6795 Helio X10 watchdog and toprgu AngeloGioacchino Del Regno
  4 siblings, 2 replies; 16+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-10-05 11:35 UTC (permalink / raw)
  To: wim
  Cc: linux, robh+dt, krzysztof.kozlowski+dt, matthias.bgg,
	allen-kh.cheng, seiya.wang, angelogioacchino.delregno,
	tinghan.shen, linux-watchdog, devicetree, linux-arm-kernel,
	linux-mediatek, linux-kernel

Convert the MediaTek watchdog bindings to schema.

Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
---
 .../bindings/watchdog/mediatek,mtk-wdt.yaml   | 80 +++++++++++++++++++
 .../devicetree/bindings/watchdog/mtk-wdt.txt  | 42 ----------
 2 files changed, 80 insertions(+), 42 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
 delete mode 100644 Documentation/devicetree/bindings/watchdog/mtk-wdt.txt

diff --git a/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
new file mode 100644
index 000000000000..f43b5af92d40
--- /dev/null
+++ b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
@@ -0,0 +1,80 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/watchdog/mediatek,mtk-wdt.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: MediaTek SoCs Watchdog timer
+
+maintainers:
+  - Matthias Brugger <matthias.bgg@gmail.com>
+
+description:
+  The watchdog supports a pre-timeout interrupt that fires
+  timeout-sec/2 before the expiry.
+
+allOf:
+  - $ref: watchdog.yaml#
+
+properties:
+  compatible:
+    oneOf:
+      - items:
+          - enum:
+              - mediatek,mt2712-wdt
+              - mediatek,mt6589-wdt
+              - mediatek,mt7986-wdt
+              - mediatek,mt8183-wdt
+              - mediatek,mt8186-wdt
+              - mediatek,mt8192-wdt
+              - mediatek,mt8195-wdt
+      - items:
+          - enum:
+              - mediatek,mt2701-wdt
+              - mediatek,mt6582-wdt
+              - mediatek,mt6797-wdt
+              - mediatek,mt7622-wdt
+              - mediatek,mt7623-wdt
+              - mediatek,mt7629-wdt
+              - mediatek,mt8516-wdt
+          - const: mediatek,mt6589-wdt
+
+  reg:
+    maxItems: 1
+
+  interrupts:
+    items:
+      - description: Watchdog pre-timeout (bark) interrupt
+
+  mediatek,disable-extrst:
+    description: Disable sending output reset signal
+    type: boolean
+
+  timeout-sec: true
+
+  '#reset-cells':
+    const: 1
+
+required:
+  - compatible
+  - reg
+
+additionalProperties: false
+
+examples:
+  - |
+    #include <dt-bindings/interrupt-controller/arm-gic.h>
+
+    soc {
+        #address-cells = <2>;
+        #size-cells = <2>;
+
+        watchdog: watchdog@10007000 {
+            compatible = "mediatek,mt8183-wdt";
+            reg = <0 0x10007000 0 0x100>;
+            interrupts = <GIC_SPI 139 IRQ_TYPE_LEVEL_LOW>;
+            mediatek,disable-extrst;
+            timeout-sec = <10>;
+            #reset-cells = <1>;
+        };
+    };
diff --git a/Documentation/devicetree/bindings/watchdog/mtk-wdt.txt b/Documentation/devicetree/bindings/watchdog/mtk-wdt.txt
deleted file mode 100644
index 762c62e428ef..000000000000
--- a/Documentation/devicetree/bindings/watchdog/mtk-wdt.txt
+++ /dev/null
@@ -1,42 +0,0 @@
-Mediatek SoCs Watchdog timer
-
-The watchdog supports a pre-timeout interrupt that fires timeout-sec/2
-before the expiry.
-
-Required properties:
-
-- compatible should contain:
-	"mediatek,mt2701-wdt", "mediatek,mt6589-wdt": for MT2701
-	"mediatek,mt2712-wdt": for MT2712
-	"mediatek,mt6582-wdt", "mediatek,mt6589-wdt": for MT6582
-	"mediatek,mt6589-wdt": for MT6589
-	"mediatek,mt6797-wdt", "mediatek,mt6589-wdt": for MT6797
-	"mediatek,mt7622-wdt", "mediatek,mt6589-wdt": for MT7622
-	"mediatek,mt7623-wdt", "mediatek,mt6589-wdt": for MT7623
-	"mediatek,mt7629-wdt", "mediatek,mt6589-wdt": for MT7629
-	"mediatek,mt7986-wdt", "mediatek,mt6589-wdt": for MT7986
-	"mediatek,mt8183-wdt": for MT8183
-	"mediatek,mt8186-wdt", "mediatek,mt6589-wdt": for MT8186
-	"mediatek,mt8516-wdt", "mediatek,mt6589-wdt": for MT8516
-	"mediatek,mt8192-wdt": for MT8192
-	"mediatek,mt8195-wdt", "mediatek,mt6589-wdt": for MT8195
-
-- reg : Specifies base physical address and size of the registers.
-
-Optional properties:
-- mediatek,disable-extrst: disable send output reset signal
-- interrupts: Watchdog pre-timeout (bark) interrupt.
-- timeout-sec: contains the watchdog timeout in seconds.
-- #reset-cells: Should be 1.
-
-Example:
-
-watchdog: watchdog@10007000 {
-	compatible = "mediatek,mt8183-wdt",
-		     "mediatek,mt6589-wdt";
-	mediatek,disable-extrst;
-	reg = <0 0x10007000 0 0x100>;
-	interrupts = <GIC_SPI 139 IRQ_TYPE_NONE>;
-	timeout-sec = <10>;
-	#reset-cells = <1>;
-};
-- 
2.37.2



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

* [PATCH 4/5] dt-bindings: watchdog: mediatek,mtk-wdt: Add compatible for MT6795
  2022-10-05 11:35 [PATCH 0/5] MediaTek watchdog: MT6795 support and YAML conversion AngeloGioacchino Del Regno
                   ` (2 preceding siblings ...)
  2022-10-05 11:35 ` [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema AngeloGioacchino Del Regno
@ 2022-10-05 11:35 ` AngeloGioacchino Del Regno
  2022-10-05 13:39   ` Rob Herring
  2022-10-14 16:46   ` Guenter Roeck
  2022-10-05 11:35 ` [PATCH 5/5] watchdog: mtk_wdt: Add support for MT6795 Helio X10 watchdog and toprgu AngeloGioacchino Del Regno
  4 siblings, 2 replies; 16+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-10-05 11:35 UTC (permalink / raw)
  To: wim
  Cc: linux, robh+dt, krzysztof.kozlowski+dt, matthias.bgg,
	allen-kh.cheng, seiya.wang, angelogioacchino.delregno,
	tinghan.shen, linux-watchdog, devicetree, linux-arm-kernel,
	linux-mediatek, linux-kernel

Add the mediatek,mt6795-wdt compatible.

Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
---
 Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
index f43b5af92d40..54dfe7941d53 100644
--- a/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
+++ b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
@@ -23,6 +23,7 @@ properties:
           - enum:
               - mediatek,mt2712-wdt
               - mediatek,mt6589-wdt
+              - mediatek,mt6795-wdt
               - mediatek,mt7986-wdt
               - mediatek,mt8183-wdt
               - mediatek,mt8186-wdt
-- 
2.37.2



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

* [PATCH 5/5] watchdog: mtk_wdt: Add support for MT6795 Helio X10 watchdog and toprgu
  2022-10-05 11:35 [PATCH 0/5] MediaTek watchdog: MT6795 support and YAML conversion AngeloGioacchino Del Regno
                   ` (3 preceding siblings ...)
  2022-10-05 11:35 ` [PATCH 4/5] dt-bindings: watchdog: mediatek,mtk-wdt: Add compatible for MT6795 AngeloGioacchino Del Regno
@ 2022-10-05 11:35 ` AngeloGioacchino Del Regno
  2022-10-06 18:15   ` Guenter Roeck
  4 siblings, 1 reply; 16+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-10-05 11:35 UTC (permalink / raw)
  To: wim
  Cc: linux, robh+dt, krzysztof.kozlowski+dt, matthias.bgg,
	allen-kh.cheng, seiya.wang, angelogioacchino.delregno,
	tinghan.shen, linux-watchdog, devicetree, linux-arm-kernel,
	linux-mediatek, linux-kernel

Add support for the toprgu reset controller and watchdog for the
MediaTek MT6795 SoC.

Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
---
 drivers/watchdog/mtk_wdt.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/watchdog/mtk_wdt.c b/drivers/watchdog/mtk_wdt.c
index e97787536792..5fa42b7d4b4d 100644
--- a/drivers/watchdog/mtk_wdt.c
+++ b/drivers/watchdog/mtk_wdt.c
@@ -10,6 +10,7 @@
  */
 
 #include <dt-bindings/reset/mt2712-resets.h>
+#include <dt-bindings/reset/mediatek,mt6795-resets.h>
 #include <dt-bindings/reset/mt7986-resets.h>
 #include <dt-bindings/reset/mt8183-resets.h>
 #include <dt-bindings/reset/mt8186-resets.h>
@@ -78,6 +79,10 @@ static const struct mtk_wdt_data mt2712_data = {
 	.toprgu_sw_rst_num = MT2712_TOPRGU_SW_RST_NUM,
 };
 
+static const struct mtk_wdt_data mt6795_data = {
+	.toprgu_sw_rst_num = MT6795_TOPRGU_SW_RST_NUM,
+};
+
 static const struct mtk_wdt_data mt7986_data = {
 	.toprgu_sw_rst_num = MT7986_TOPRGU_SW_RST_NUM,
 };
@@ -426,6 +431,7 @@ static int mtk_wdt_resume(struct device *dev)
 static const struct of_device_id mtk_wdt_dt_ids[] = {
 	{ .compatible = "mediatek,mt2712-wdt", .data = &mt2712_data },
 	{ .compatible = "mediatek,mt6589-wdt" },
+	{ .compatible = "mediatek,mt6795-wdt", .data = &mt6795_data },
 	{ .compatible = "mediatek,mt7986-wdt", .data = &mt7986_data },
 	{ .compatible = "mediatek,mt8183-wdt", .data = &mt8183_data },
 	{ .compatible = "mediatek,mt8186-wdt", .data = &mt8186_data },
-- 
2.37.2



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

* Re: [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema
  2022-10-05 11:35 ` [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema AngeloGioacchino Del Regno
@ 2022-10-05 13:38   ` Rob Herring
  2022-10-05 13:42     ` AngeloGioacchino Del Regno
  2022-10-05 16:33   ` Krzysztof Kozlowski
  1 sibling, 1 reply; 16+ messages in thread
From: Rob Herring @ 2022-10-05 13:38 UTC (permalink / raw)
  To: AngeloGioacchino Del Regno
  Cc: wim, linux, krzysztof.kozlowski+dt, matthias.bgg, allen-kh.cheng,
	seiya.wang, tinghan.shen, linux-watchdog, devicetree,
	linux-arm-kernel, linux-mediatek, linux-kernel

On Wed, Oct 05, 2022 at 01:35:15PM +0200, AngeloGioacchino Del Regno wrote:
> Convert the MediaTek watchdog bindings to schema.
> 
> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
> ---
>  .../bindings/watchdog/mediatek,mtk-wdt.yaml   | 80 +++++++++++++++++++
>  .../devicetree/bindings/watchdog/mtk-wdt.txt  | 42 ----------
>  2 files changed, 80 insertions(+), 42 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
>  delete mode 100644 Documentation/devicetree/bindings/watchdog/mtk-wdt.txt
> 
> diff --git a/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
> new file mode 100644
> index 000000000000..f43b5af92d40
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
> @@ -0,0 +1,80 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/watchdog/mediatek,mtk-wdt.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: MediaTek SoCs Watchdog timer
> +
> +maintainers:
> +  - Matthias Brugger <matthias.bgg@gmail.com>
> +
> +description:
> +  The watchdog supports a pre-timeout interrupt that fires
> +  timeout-sec/2 before the expiry.
> +
> +allOf:
> +  - $ref: watchdog.yaml#
> +
> +properties:
> +  compatible:
> +    oneOf:
> +      - items:
> +          - enum:
> +              - mediatek,mt2712-wdt
> +              - mediatek,mt6589-wdt
> +              - mediatek,mt7986-wdt
> +              - mediatek,mt8183-wdt
> +              - mediatek,mt8186-wdt
> +              - mediatek,mt8192-wdt
> +              - mediatek,mt8195-wdt

The original binding only had 4 without a fallback. It's fine to add or 
change, but note the changes in the commit msg. Are all of these really 
each unique and not the same?


> +      - items:
> +          - enum:
> +              - mediatek,mt2701-wdt
> +              - mediatek,mt6582-wdt
> +              - mediatek,mt6797-wdt
> +              - mediatek,mt7622-wdt
> +              - mediatek,mt7623-wdt
> +              - mediatek,mt7629-wdt
> +              - mediatek,mt8516-wdt
> +          - const: mediatek,mt6589-wdt
> +
> +  reg:
> +    maxItems: 1
> +
> +  interrupts:
> +    items:
> +      - description: Watchdog pre-timeout (bark) interrupt
> +
> +  mediatek,disable-extrst:
> +    description: Disable sending output reset signal
> +    type: boolean
> +
> +  timeout-sec: true

Drop this and use 'unevaluatedProperties'.

> +
> +  '#reset-cells':
> +    const: 1
> +
> +required:
> +  - compatible
> +  - reg
> +
> +additionalProperties: false
> +
> +examples:
> +  - |
> +    #include <dt-bindings/interrupt-controller/arm-gic.h>
> +
> +    soc {
> +        #address-cells = <2>;
> +        #size-cells = <2>;
> +
> +        watchdog: watchdog@10007000 {
> +            compatible = "mediatek,mt8183-wdt";
> +            reg = <0 0x10007000 0 0x100>;
> +            interrupts = <GIC_SPI 139 IRQ_TYPE_LEVEL_LOW>;
> +            mediatek,disable-extrst;
> +            timeout-sec = <10>;
> +            #reset-cells = <1>;
> +        };
> +    };


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

* Re: [PATCH 4/5] dt-bindings: watchdog: mediatek,mtk-wdt: Add compatible for MT6795
  2022-10-05 11:35 ` [PATCH 4/5] dt-bindings: watchdog: mediatek,mtk-wdt: Add compatible for MT6795 AngeloGioacchino Del Regno
@ 2022-10-05 13:39   ` Rob Herring
  2022-10-14 16:46   ` Guenter Roeck
  1 sibling, 0 replies; 16+ messages in thread
From: Rob Herring @ 2022-10-05 13:39 UTC (permalink / raw)
  To: AngeloGioacchino Del Regno
  Cc: linux-kernel, devicetree, tinghan.shen, linux, linux-mediatek,
	robh+dt, linux-arm-kernel, matthias.bgg, wim, allen-kh.cheng,
	krzysztof.kozlowski+dt, linux-watchdog, seiya.wang

On Wed, 05 Oct 2022 13:35:16 +0200, AngeloGioacchino Del Regno wrote:
> Add the mediatek,mt6795-wdt compatible.
> 
> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
> ---
>  Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 

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


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

* Re: [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema
  2022-10-05 13:38   ` Rob Herring
@ 2022-10-05 13:42     ` AngeloGioacchino Del Regno
  0 siblings, 0 replies; 16+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-10-05 13:42 UTC (permalink / raw)
  To: Rob Herring
  Cc: wim, linux, krzysztof.kozlowski+dt, matthias.bgg, allen-kh.cheng,
	seiya.wang, tinghan.shen, linux-watchdog, devicetree,
	linux-arm-kernel, linux-mediatek, linux-kernel

Il 05/10/22 15:38, Rob Herring ha scritto:
> On Wed, Oct 05, 2022 at 01:35:15PM +0200, AngeloGioacchino Del Regno wrote:
>> Convert the MediaTek watchdog bindings to schema.
>>
>> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
>> ---
>>   .../bindings/watchdog/mediatek,mtk-wdt.yaml   | 80 +++++++++++++++++++
>>   .../devicetree/bindings/watchdog/mtk-wdt.txt  | 42 ----------
>>   2 files changed, 80 insertions(+), 42 deletions(-)
>>   create mode 100644 Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
>>   delete mode 100644 Documentation/devicetree/bindings/watchdog/mtk-wdt.txt
>>
>> diff --git a/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
>> new file mode 100644
>> index 000000000000..f43b5af92d40
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
>> @@ -0,0 +1,80 @@
>> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
>> +%YAML 1.2
>> +---
>> +$id: http://devicetree.org/schemas/watchdog/mediatek,mtk-wdt.yaml#
>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>> +
>> +title: MediaTek SoCs Watchdog timer
>> +
>> +maintainers:
>> +  - Matthias Brugger <matthias.bgg@gmail.com>
>> +
>> +description:
>> +  The watchdog supports a pre-timeout interrupt that fires
>> +  timeout-sec/2 before the expiry.
>> +
>> +allOf:
>> +  - $ref: watchdog.yaml#
>> +
>> +properties:
>> +  compatible:
>> +    oneOf:
>> +      - items:
>> +          - enum:
>> +              - mediatek,mt2712-wdt
>> +              - mediatek,mt6589-wdt
>> +              - mediatek,mt7986-wdt
>> +              - mediatek,mt8183-wdt
>> +              - mediatek,mt8186-wdt
>> +              - mediatek,mt8192-wdt
>> +              - mediatek,mt8195-wdt
> 
> The original binding only had 4 without a fallback. It's fine to add or
> change, but note the changes in the commit msg. Are all of these really
> each unique and not the same?
> 

Ok I will note the changes in the commit for v2. And... yes, they're really
each unique and not the same, as these are exposing a reset controller of
their own (as well with different platform data in the driver).

> 
>> +      - items:
>> +          - enum:
>> +              - mediatek,mt2701-wdt
>> +              - mediatek,mt6582-wdt
>> +              - mediatek,mt6797-wdt
>> +              - mediatek,mt7622-wdt
>> +              - mediatek,mt7623-wdt
>> +              - mediatek,mt7629-wdt
>> +              - mediatek,mt8516-wdt
>> +          - const: mediatek,mt6589-wdt
>> +
>> +  reg:
>> +    maxItems: 1
>> +
>> +  interrupts:
>> +    items:
>> +      - description: Watchdog pre-timeout (bark) interrupt
>> +
>> +  mediatek,disable-extrst:
>> +    description: Disable sending output reset signal
>> +    type: boolean
>> +
>> +  timeout-sec: true
> 
> Drop this and use 'unevaluatedProperties'.
> 

Noted. Will do for v2.

Thanks!
Angelo




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

* Re: [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema
  2022-10-05 11:35 ` [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema AngeloGioacchino Del Regno
  2022-10-05 13:38   ` Rob Herring
@ 2022-10-05 16:33   ` Krzysztof Kozlowski
  2022-10-06  2:26     ` Allen-KH Cheng (程冠勳)
  2022-10-06  8:36     ` AngeloGioacchino Del Regno
  1 sibling, 2 replies; 16+ messages in thread
From: Krzysztof Kozlowski @ 2022-10-05 16:33 UTC (permalink / raw)
  To: AngeloGioacchino Del Regno, wim
  Cc: linux, robh+dt, krzysztof.kozlowski+dt, matthias.bgg,
	allen-kh.cheng, seiya.wang, tinghan.shen, linux-watchdog,
	devicetree, linux-arm-kernel, linux-mediatek, linux-kernel

On 05/10/2022 13:35, AngeloGioacchino Del Regno wrote:
> Convert the MediaTek watchdog bindings to schema.
> 
> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>

There is already work in progress:

https://lore.kernel.org/all/20220422121017.23920-3-allen-kh.cheng@mediatek.com/

Best regards,
Krzysztof



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

* Re: [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema
  2022-10-05 16:33   ` Krzysztof Kozlowski
@ 2022-10-06  2:26     ` Allen-KH Cheng (程冠勳)
  2022-10-06  8:36     ` AngeloGioacchino Del Regno
  1 sibling, 0 replies; 16+ messages in thread
From: Allen-KH Cheng (程冠勳) @ 2022-10-06  2:26 UTC (permalink / raw)
  To: wim, krzysztof.kozlowski, angelogioacchino.delregno
  Cc: linux-mediatek, robh+dt, linux-kernel, devicetree, linux,
	linux-watchdog, Seiya Wang (王迺君),
	linux-arm-kernel, krzysztof.kozlowski+dt, matthias.bgg,
	TingHan Shen (沈廷翰)

Hi Krzysztof,

Thanks for the reminder.

There is also a series [1] for mediatek watchdog.

I would have to wait until [2] merged before sending a series for
"Convert mtk-wdt" in order to prevent a conflict, but [2] has not yet
been merged.


[1] 
https://patchwork.kernel.org/project/linux-mediatek/list/?series=661669

[2] 
https://lore.kernel.org/all/20220920105622.25666-2-Runyang.Chen@mediatek.com/


Best regards,
Allen

On Wed, 2022-10-05 at 18:33 +0200, Krzysztof Kozlowski wrote:
> On 05/10/2022 13:35, AngeloGioacchino Del Regno wrote:
> > Convert the MediaTek watchdog bindings to schema.
> > 
> > Signed-off-by: AngeloGioacchino Del Regno <
> > angelogioacchino.delregno@collabora.com>
> 
> There is already work in progress:
> 
> 
https://lore.kernel.org/all/20220422121017.23920-3-allen-kh.cheng@mediatek.com/
> 
> Best regards,
> Krzysztof
> 

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

* Re: [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema
  2022-10-05 16:33   ` Krzysztof Kozlowski
  2022-10-06  2:26     ` Allen-KH Cheng (程冠勳)
@ 2022-10-06  8:36     ` AngeloGioacchino Del Regno
  2022-10-06  8:43       ` Allen-KH Cheng (程冠勳)
  1 sibling, 1 reply; 16+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-10-06  8:36 UTC (permalink / raw)
  To: Krzysztof Kozlowski, wim
  Cc: linux, robh+dt, krzysztof.kozlowski+dt, matthias.bgg,
	allen-kh.cheng, seiya.wang, tinghan.shen, linux-watchdog,
	devicetree, linux-arm-kernel, linux-mediatek, linux-kernel

Il 05/10/22 18:33, Krzysztof Kozlowski ha scritto:
> On 05/10/2022 13:35, AngeloGioacchino Del Regno wrote:
>> Convert the MediaTek watchdog bindings to schema.
>>
>> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
> 
> There is already work in progress:
> 
> https://lore.kernel.org/all/20220422121017.23920-3-allen-kh.cheng@mediatek.com/
> 
> Best regards,
> Krzysztof
> 

I'm sorry, I forgot about that.

Allen, how do we proceed? Do you want to send a new version of yours, or should
I go on with a v2 for this one?

Regards,
Angelo


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

* Re: [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema
  2022-10-06  8:36     ` AngeloGioacchino Del Regno
@ 2022-10-06  8:43       ` Allen-KH Cheng (程冠勳)
  2022-10-06  8:45         ` AngeloGioacchino Del Regno
  0 siblings, 1 reply; 16+ messages in thread
From: Allen-KH Cheng (程冠勳) @ 2022-10-06  8:43 UTC (permalink / raw)
  To: wim, krzysztof.kozlowski, angelogioacchino.delregno
  Cc: linux-mediatek, robh+dt, linux-kernel, devicetree, linux,
	linux-watchdog, Seiya Wang (王迺君),
	linux-arm-kernel, krzysztof.kozlowski+dt, matthias.bgg,
	TingHan Shen (沈廷翰)

Hi Angelo,

I can send a new version with this series.

Thanks for help convert schema. 

Best regards,
Allen

On Thu, 2022-10-06 at 10:36 +0200, AngeloGioacchino Del Regno wrote:
> Il 05/10/22 18:33, Krzysztof Kozlowski ha scritto:
> > On 05/10/2022 13:35, AngeloGioacchino Del Regno wrote:
> > > Convert the MediaTek watchdog bindings to schema.
> > > 
> > > Signed-off-by: AngeloGioacchino Del Regno <
> > > angelogioacchino.delregno@collabora.com>
> > 
> > There is already work in progress:
> > 
> > 
https://lore.kernel.org/all/20220422121017.23920-3-allen-kh.cheng@mediatek.com/
> > 
> > Best regards,
> > Krzysztof
> > 
> 
> I'm sorry, I forgot about that.
> 
> Allen, how do we proceed? Do you want to send a new version of yours,
> or should
> I go on with a v2 for this one?
> 
> Regards,
> Angelo

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

* Re: [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema
  2022-10-06  8:43       ` Allen-KH Cheng (程冠勳)
@ 2022-10-06  8:45         ` AngeloGioacchino Del Regno
  0 siblings, 0 replies; 16+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-10-06  8:45 UTC (permalink / raw)
  To: Allen-KH Cheng (程冠勳), wim, krzysztof.kozlowski
  Cc: linux-mediatek, robh+dt, linux-kernel, devicetree, linux,
	linux-watchdog, Seiya Wang (王迺君),
	linux-arm-kernel, krzysztof.kozlowski+dt, matthias.bgg,
	TingHan Shen (沈廷翰)

Il 06/10/22 10:43, Allen-KH Cheng (程冠勳) ha scritto:
> Hi Angelo,
> 
> I can send a new version with this series.
> 
> Thanks for help convert schema.
> 

That's perfect! I will wait for your new version then.

Thank you!
Angelo



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

* Re: [PATCH 5/5] watchdog: mtk_wdt: Add support for MT6795 Helio X10 watchdog and toprgu
  2022-10-05 11:35 ` [PATCH 5/5] watchdog: mtk_wdt: Add support for MT6795 Helio X10 watchdog and toprgu AngeloGioacchino Del Regno
@ 2022-10-06 18:15   ` Guenter Roeck
  0 siblings, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2022-10-06 18:15 UTC (permalink / raw)
  To: AngeloGioacchino Del Regno
  Cc: wim, robh+dt, krzysztof.kozlowski+dt, matthias.bgg,
	allen-kh.cheng, seiya.wang, tinghan.shen, linux-watchdog,
	devicetree, linux-arm-kernel, linux-mediatek, linux-kernel

On Wed, Oct 05, 2022 at 01:35:17PM +0200, AngeloGioacchino Del Regno wrote:
> Add support for the toprgu reset controller and watchdog for the
> MediaTek MT6795 SoC.
> 
> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>

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

> ---
>  drivers/watchdog/mtk_wdt.c | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/drivers/watchdog/mtk_wdt.c b/drivers/watchdog/mtk_wdt.c
> index e97787536792..5fa42b7d4b4d 100644
> --- a/drivers/watchdog/mtk_wdt.c
> +++ b/drivers/watchdog/mtk_wdt.c
> @@ -10,6 +10,7 @@
>   */
>  
>  #include <dt-bindings/reset/mt2712-resets.h>
> +#include <dt-bindings/reset/mediatek,mt6795-resets.h>
>  #include <dt-bindings/reset/mt7986-resets.h>
>  #include <dt-bindings/reset/mt8183-resets.h>
>  #include <dt-bindings/reset/mt8186-resets.h>
> @@ -78,6 +79,10 @@ static const struct mtk_wdt_data mt2712_data = {
>  	.toprgu_sw_rst_num = MT2712_TOPRGU_SW_RST_NUM,
>  };
>  
> +static const struct mtk_wdt_data mt6795_data = {
> +	.toprgu_sw_rst_num = MT6795_TOPRGU_SW_RST_NUM,
> +};
> +
>  static const struct mtk_wdt_data mt7986_data = {
>  	.toprgu_sw_rst_num = MT7986_TOPRGU_SW_RST_NUM,
>  };
> @@ -426,6 +431,7 @@ static int mtk_wdt_resume(struct device *dev)
>  static const struct of_device_id mtk_wdt_dt_ids[] = {
>  	{ .compatible = "mediatek,mt2712-wdt", .data = &mt2712_data },
>  	{ .compatible = "mediatek,mt6589-wdt" },
> +	{ .compatible = "mediatek,mt6795-wdt", .data = &mt6795_data },
>  	{ .compatible = "mediatek,mt7986-wdt", .data = &mt7986_data },
>  	{ .compatible = "mediatek,mt8183-wdt", .data = &mt8183_data },
>  	{ .compatible = "mediatek,mt8186-wdt", .data = &mt8186_data },
> -- 
> 2.37.2
> 


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

* Re: [PATCH 4/5] dt-bindings: watchdog: mediatek,mtk-wdt: Add compatible for MT6795
  2022-10-05 11:35 ` [PATCH 4/5] dt-bindings: watchdog: mediatek,mtk-wdt: Add compatible for MT6795 AngeloGioacchino Del Regno
  2022-10-05 13:39   ` Rob Herring
@ 2022-10-14 16:46   ` Guenter Roeck
  1 sibling, 0 replies; 16+ messages in thread
From: Guenter Roeck @ 2022-10-14 16:46 UTC (permalink / raw)
  To: AngeloGioacchino Del Regno
  Cc: wim, robh+dt, krzysztof.kozlowski+dt, matthias.bgg,
	allen-kh.cheng, seiya.wang, tinghan.shen, linux-watchdog,
	devicetree, linux-arm-kernel, linux-mediatek, linux-kernel

On Wed, Oct 05, 2022 at 01:35:16PM +0200, AngeloGioacchino Del Regno wrote:
> Add the mediatek,mt6795-wdt compatible.
> 
> Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
> Acked-by: Rob Herring <robh@kernel.org>

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

> ---
>  Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
> index f43b5af92d40..54dfe7941d53 100644
> --- a/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
> +++ b/Documentation/devicetree/bindings/watchdog/mediatek,mtk-wdt.yaml
> @@ -23,6 +23,7 @@ properties:
>            - enum:
>                - mediatek,mt2712-wdt
>                - mediatek,mt6589-wdt
> +              - mediatek,mt6795-wdt
>                - mediatek,mt7986-wdt
>                - mediatek,mt8183-wdt
>                - mediatek,mt8186-wdt


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

end of thread, other threads:[~2022-10-14 16:47 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-05 11:35 [PATCH 0/5] MediaTek watchdog: MT6795 support and YAML conversion AngeloGioacchino Del Regno
2022-10-05 11:35 ` [PATCH 1/5] arm64: dts: mediatek: mt8186: Fix watchdog compatible AngeloGioacchino Del Regno
2022-10-05 11:35 ` [PATCH 2/5] arm64: dts: mediatek: mt8195: " AngeloGioacchino Del Regno
2022-10-05 11:35 ` [PATCH 3/5] dt-bindings: watchdog: mediatek: Convert mtk-wdt to json-schema AngeloGioacchino Del Regno
2022-10-05 13:38   ` Rob Herring
2022-10-05 13:42     ` AngeloGioacchino Del Regno
2022-10-05 16:33   ` Krzysztof Kozlowski
2022-10-06  2:26     ` Allen-KH Cheng (程冠勳)
2022-10-06  8:36     ` AngeloGioacchino Del Regno
2022-10-06  8:43       ` Allen-KH Cheng (程冠勳)
2022-10-06  8:45         ` AngeloGioacchino Del Regno
2022-10-05 11:35 ` [PATCH 4/5] dt-bindings: watchdog: mediatek,mtk-wdt: Add compatible for MT6795 AngeloGioacchino Del Regno
2022-10-05 13:39   ` Rob Herring
2022-10-14 16:46   ` Guenter Roeck
2022-10-05 11:35 ` [PATCH 5/5] watchdog: mtk_wdt: Add support for MT6795 Helio X10 watchdog and toprgu AngeloGioacchino Del Regno
2022-10-06 18:15   ` 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).