linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] [1/3] dt-bindings: watchdog: Add compatible for MediaTek MT8188
       [not found] ` <20220722072316.582-2-Runyang.Chen@mediatek.com>
@ 2022-07-22  7:49   ` AngeloGioacchino Del Regno
  2022-07-25 22:43   ` Rob Herring
  1 sibling, 0 replies; 5+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-07-22  7:49 UTC (permalink / raw)
  To: Runyang Chen, Wim Van Sebroeck, Guenter Roeck,
	Krzysztof Kozlowski, Matthias Brugger, Rob Herring, nfraprado
  Cc: Project_Global_Chrome_Upstream_Group, devicetree,
	linux-arm-kernel, linux-kernel, linux-mediatek

Il 22/07/22 09:23, Runyang Chen ha scritto:
> From: Runyang Chen <runyang.chen@mediatek.com>
> 
> Add dt-binding documentation of watchdog for MediaTek MT8188 SoC
> 
> Signed-off-by: Runyang Chen <runyang.chen@mediatek.com>

Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] [3/3] watchdog: mediatek: mt8188: add wdt support
       [not found] ` <20220722072316.582-4-Runyang.Chen@mediatek.com>
@ 2022-07-22  7:49   ` AngeloGioacchino Del Regno
  2022-07-22 15:10   ` Guenter Roeck
  1 sibling, 0 replies; 5+ messages in thread
From: AngeloGioacchino Del Regno @ 2022-07-22  7:49 UTC (permalink / raw)
  To: Runyang Chen, Wim Van Sebroeck, Guenter Roeck,
	Krzysztof Kozlowski, Matthias Brugger, Rob Herring, nfraprado
  Cc: Project_Global_Chrome_Upstream_Group, devicetree,
	linux-arm-kernel, linux-kernel, linux-mediatek

Il 22/07/22 09:23, Runyang Chen ha scritto:
> From: Runyang Chen <runyang.chen@mediatek.com>
> 
> Support MT8188 watchdog device.
> 
> Signed-off-by: Runyang Chen <runyang.chen@mediatek.com>

Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] [3/3] watchdog: mediatek: mt8188: add wdt support
       [not found] ` <20220722072316.582-4-Runyang.Chen@mediatek.com>
  2022-07-22  7:49   ` [PATCH] [3/3] watchdog: mediatek: mt8188: add wdt support AngeloGioacchino Del Regno
@ 2022-07-22 15:10   ` Guenter Roeck
  1 sibling, 0 replies; 5+ messages in thread
From: Guenter Roeck @ 2022-07-22 15:10 UTC (permalink / raw)
  To: Runyang Chen, Wim Van Sebroeck, Krzysztof Kozlowski,
	Matthias Brugger, Rob Herring, nfraprado
  Cc: angelogioacchino.delregno, Project_Global_Chrome_Upstream_Group,
	devicetree, linux-arm-kernel, linux-kernel, linux-mediatek

On 7/22/22 00:23, Runyang Chen wrote:
> From: Runyang Chen <runyang.chen@mediatek.com>
> 
> Support MT8188 watchdog device.
> 
> Signed-off-by: Runyang Chen <runyang.chen@mediatek.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 f0d4e3cc7459..ce7dc96bfa4b 100644
> --- a/drivers/watchdog/mtk_wdt.c
> +++ b/drivers/watchdog/mtk_wdt.c
> @@ -13,6 +13,7 @@
>   #include <dt-bindings/reset/mt7986-resets.h>
>   #include <dt-bindings/reset/mt8183-resets.h>
>   #include <dt-bindings/reset/mt8186-resets.h>
> +#include <dt-bindings/reset/mt8188-resets.h>
>   #include <dt-bindings/reset/mt8192-resets.h>
>   #include <dt-bindings/reset/mt8195-resets.h>
>   #include <linux/delay.h>
> @@ -90,6 +91,10 @@ static const struct mtk_wdt_data mt8186_data = {
>   	.toprgu_sw_rst_num = MT8186_TOPRGU_SW_RST_NUM,
>   };
>   
> +static const struct mtk_wdt_data mt8188_data = {
> +	.toprgu_sw_rst_num = MT8188_TOPRGU_SW_RST_NUM,
> +};
> +
>   static const struct mtk_wdt_data mt8192_data = {
>   	.toprgu_sw_rst_num = MT8192_TOPRGU_SW_RST_NUM,
>   };
> @@ -431,6 +436,7 @@ static const struct of_device_id mtk_wdt_dt_ids[] = {
>   	{ .compatible = "mediatek,mt7986-wdt", .data = &mt7986_data },
>   	{ .compatible = "mediatek,mt8183-wdt", .data = &mt8183_data },
>   	{ .compatible = "mediatek,mt8186-wdt", .data = &mt8186_data },
> +	{ .compatible = "mediatek,mt8188-wdt", .data = &mt8188_data },
>   	{ .compatible = "mediatek,mt8192-wdt", .data = &mt8192_data },
>   	{ .compatible = "mediatek,mt8195-wdt", .data = &mt8195_data },
>   	{ /* sentinel */ }


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] [1/3] dt-bindings: watchdog: Add compatible for MediaTek MT8188
       [not found] ` <20220722072316.582-2-Runyang.Chen@mediatek.com>
  2022-07-22  7:49   ` [PATCH] [1/3] dt-bindings: watchdog: Add compatible for MediaTek MT8188 AngeloGioacchino Del Regno
@ 2022-07-25 22:43   ` Rob Herring
  1 sibling, 0 replies; 5+ messages in thread
From: Rob Herring @ 2022-07-25 22:43 UTC (permalink / raw)
  To: Runyang Chen
  Cc: Matthias Brugger, Krzysztof Kozlowski, Runyang Chen,
	Project_Global_Chrome_Upstream_Group, linux-arm-kernel,
	linux-kernel, linux-mediatek, Wim Van Sebroeck, Rob Herring,
	nfraprado, devicetree, Guenter Roeck, angelogioacchino.delregno

On Fri, 22 Jul 2022 15:23:14 +0800, Runyang Chen wrote:
> From: Runyang Chen <runyang.chen@mediatek.com>
> 
> Add dt-binding documentation of watchdog for MediaTek MT8188 SoC
> 
> Signed-off-by: Runyang Chen <runyang.chen@mediatek.com>
> ---
>  Documentation/devicetree/bindings/watchdog/mtk-wdt.txt | 1 +
>  1 file changed, 1 insertion(+)
> 

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

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] [2/3] dt-bindings: reset: mt8188: add toprgu reset-controller header file
       [not found] ` <20220722072316.582-3-Runyang.Chen@mediatek.com>
@ 2022-07-25 22:44   ` Rob Herring
  0 siblings, 0 replies; 5+ messages in thread
From: Rob Herring @ 2022-07-25 22:44 UTC (permalink / raw)
  To: Runyang Chen
  Cc: Project_Global_Chrome_Upstream_Group, Matthias Brugger, nfraprado,
	Guenter Roeck, angelogioacchino.delregno, Wim Van Sebroeck,
	Runyang Chen, devicetree, Krzysztof Kozlowski, linux-mediatek,
	linux-arm-kernel, Rob Herring, linux-kernel

On Fri, 22 Jul 2022 15:23:15 +0800, Runyang Chen wrote:
> From: Runyang Chen <runyang.chen@mediatek.com>
> 
> Add toprgu reset-controller header file for MT8188
> 
> Signed-off-by: Runyang Chen <runyang.chen@mediatek.com>
> ---
>  include/dt-bindings/reset/mt8188-resets.h | 36 +++++++++++++++++++++++
>  1 file changed, 36 insertions(+)
>  create mode 100644 include/dt-bindings/reset/mt8188-resets.h
> 

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

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2022-07-25 22:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <20220722072316.582-1-Runyang.Chen@mediatek.com>
     [not found] ` <20220722072316.582-2-Runyang.Chen@mediatek.com>
2022-07-22  7:49   ` [PATCH] [1/3] dt-bindings: watchdog: Add compatible for MediaTek MT8188 AngeloGioacchino Del Regno
2022-07-25 22:43   ` Rob Herring
     [not found] ` <20220722072316.582-4-Runyang.Chen@mediatek.com>
2022-07-22  7:49   ` [PATCH] [3/3] watchdog: mediatek: mt8188: add wdt support AngeloGioacchino Del Regno
2022-07-22 15:10   ` Guenter Roeck
     [not found] ` <20220722072316.582-3-Runyang.Chen@mediatek.com>
2022-07-25 22:44   ` [PATCH] [2/3] dt-bindings: reset: mt8188: add toprgu reset-controller header file Rob Herring

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