All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Add R8A77980 support to the Renesas R-Car gen3 thermal driver
@ 2018-10-09 19:07 Sergei Shtylyov
  2018-10-09 19:10 ` [PATCH 1/2] dt-bindings: thermal: rcar-gen3-thermal: document R8A77980 bindings Sergei Shtylyov
  2018-10-09 19:11 ` [PATCH 2/2] thermal: rcar_gen3_thermal: add R8A77980 support Sergei Shtylyov
  0 siblings, 2 replies; 8+ messages in thread
From: Sergei Shtylyov @ 2018-10-09 19:07 UTC (permalink / raw)
  To: Zhang Rui, Eduardo Valentin, linux-pm, Rob Herring, devicetree
  Cc: linux-renesas-soc, Mark Rutland

Hello!

Here's the set of 2 patches against the 'next' branch of Eduardo Valentin's
'linux-soc-thermal.git' repo. We're adding support for the R8A77980 thermal
sensor controller to the R-Car gen3 thermal driver.

[1/2] dt-bindings: thermal: rcar-gen3-thermal: document R8A77980 bindings
[2/2] thermal: rcar_gen3_thermal: add R8A77980 support

MBR, Sergei

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

* [PATCH 1/2] dt-bindings: thermal: rcar-gen3-thermal: document R8A77980 bindings
  2018-10-09 19:07 [PATCH 0/2] Add R8A77980 support to the Renesas R-Car gen3 thermal driver Sergei Shtylyov
@ 2018-10-09 19:10 ` Sergei Shtylyov
  2018-10-10  8:28   ` Simon Horman
                     ` (2 more replies)
  2018-10-09 19:11 ` [PATCH 2/2] thermal: rcar_gen3_thermal: add R8A77980 support Sergei Shtylyov
  1 sibling, 3 replies; 8+ messages in thread
From: Sergei Shtylyov @ 2018-10-09 19:10 UTC (permalink / raw)
  To: Zhang Rui, Eduardo Valentin, linux-pm, Rob Herring, devicetree
  Cc: linux-renesas-soc, Mark Rutland

Document the R-Car V3H (R8A77980) SoC in the Renesas R-Car gen3 thermal
bindings.

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

---
 Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Index: linux-soc-thermal/Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt
===================================================================
--- linux-soc-thermal.orig/Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt
+++ linux-soc-thermal/Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt
@@ -10,6 +10,7 @@ Required properties:
 			    - "renesas,r8a7795-thermal" (R-Car H3)
 			    - "renesas,r8a7796-thermal" (R-Car M3-W)
 			    - "renesas,r8a77965-thermal" (R-Car M3-N)
+			    - "renesas,r8a77980-thermal" (R-Car V3H)
 - reg			: Address ranges of the thermal registers. Each sensor
 			  needs one address range. Sorting must be done in
 			  increasing order according to datasheet, i.e.
@@ -19,7 +20,8 @@ Required properties:
 
 Optional properties:
 
-- interrupts           : interrupts routed to the TSC (3 for H3, M3-W and M3-N)
+- interrupts		: interrupts routed to the TSC (3 for H3, M3-W, M3-N,
+			  and V3H)
 - power-domain		: Must contain a reference to the power domain. This
 			  property is mandatory if the thermal sensor instance
 			  is part of a controllable power domain.

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

* [PATCH 2/2] thermal: rcar_gen3_thermal: add R8A77980 support
  2018-10-09 19:07 [PATCH 0/2] Add R8A77980 support to the Renesas R-Car gen3 thermal driver Sergei Shtylyov
  2018-10-09 19:10 ` [PATCH 1/2] dt-bindings: thermal: rcar-gen3-thermal: document R8A77980 bindings Sergei Shtylyov
@ 2018-10-09 19:11 ` Sergei Shtylyov
  2018-10-10  8:29   ` Simon Horman
  2018-10-10 10:24   ` Niklas Söderlund
  1 sibling, 2 replies; 8+ messages in thread
From: Sergei Shtylyov @ 2018-10-09 19:11 UTC (permalink / raw)
  To: Zhang Rui, Eduardo Valentin, linux-pm; +Cc: linux-renesas-soc

Add the R-Car V3H (R8A77980) SoC support to the R-Car gen3 thermal driver.

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

---
 drivers/thermal/rcar_gen3_thermal.c |    1 +
 1 file changed, 1 insertion(+)

Index: linux-soc-thermal/drivers/thermal/rcar_gen3_thermal.c
===================================================================
--- linux-soc-thermal.orig/drivers/thermal/rcar_gen3_thermal.c
+++ linux-soc-thermal/drivers/thermal/rcar_gen3_thermal.c
@@ -321,6 +321,7 @@ static const struct of_device_id rcar_ge
 	{ .compatible = "renesas,r8a7795-thermal", },
 	{ .compatible = "renesas,r8a7796-thermal", },
 	{ .compatible = "renesas,r8a77965-thermal", },
+	{ .compatible = "renesas,r8a77980-thermal", },
 	{},
 };
 MODULE_DEVICE_TABLE(of, rcar_gen3_thermal_dt_ids);

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

* Re: [PATCH 1/2] dt-bindings: thermal: rcar-gen3-thermal: document R8A77980 bindings
  2018-10-09 19:10 ` [PATCH 1/2] dt-bindings: thermal: rcar-gen3-thermal: document R8A77980 bindings Sergei Shtylyov
@ 2018-10-10  8:28   ` Simon Horman
  2018-10-10 10:23   ` Niklas Söderlund
  2018-10-17 16:00   ` Rob Herring
  2 siblings, 0 replies; 8+ messages in thread
From: Simon Horman @ 2018-10-10  8:28 UTC (permalink / raw)
  To: Sergei Shtylyov
  Cc: Zhang Rui, Eduardo Valentin, linux-pm, Rob Herring, devicetree,
	linux-renesas-soc, Mark Rutland

On Tue, Oct 09, 2018 at 10:10:14PM +0300, Sergei Shtylyov wrote:
> Document the R-Car V3H (R8A77980) SoC in the Renesas R-Car gen3 thermal
> bindings.
> 
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>

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

* Re: [PATCH 2/2] thermal: rcar_gen3_thermal: add R8A77980 support
  2018-10-09 19:11 ` [PATCH 2/2] thermal: rcar_gen3_thermal: add R8A77980 support Sergei Shtylyov
@ 2018-10-10  8:29   ` Simon Horman
  2018-10-10 10:24   ` Niklas Söderlund
  1 sibling, 0 replies; 8+ messages in thread
From: Simon Horman @ 2018-10-10  8:29 UTC (permalink / raw)
  To: Sergei Shtylyov; +Cc: Zhang Rui, Eduardo Valentin, linux-pm, linux-renesas-soc

On Tue, Oct 09, 2018 at 10:11:51PM +0300, Sergei Shtylyov wrote:
> Add the R-Car V3H (R8A77980) SoC support to the R-Car gen3 thermal driver.
> 
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>

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

* Re: [PATCH 1/2] dt-bindings: thermal: rcar-gen3-thermal: document R8A77980 bindings
  2018-10-09 19:10 ` [PATCH 1/2] dt-bindings: thermal: rcar-gen3-thermal: document R8A77980 bindings Sergei Shtylyov
  2018-10-10  8:28   ` Simon Horman
@ 2018-10-10 10:23   ` Niklas Söderlund
  2018-10-17 16:00   ` Rob Herring
  2 siblings, 0 replies; 8+ messages in thread
From: Niklas Söderlund @ 2018-10-10 10:23 UTC (permalink / raw)
  To: Sergei Shtylyov
  Cc: Zhang Rui, Eduardo Valentin, linux-pm, Rob Herring, devicetree,
	linux-renesas-soc, Mark Rutland

Hi Sergei,

Thanks for your work.

On 2018-10-09 22:10:14 +0300, Sergei Shtylyov wrote:
> Document the R-Car V3H (R8A77980) SoC in the Renesas R-Car gen3 thermal
> bindings.
> 
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

Reviewed-by: Niklas S�derlund <niklas.soderlund+renesas@ragnatech.se>

> 
> ---
>  Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt |    4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> Index: linux-soc-thermal/Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt
> ===================================================================
> --- linux-soc-thermal.orig/Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt
> +++ linux-soc-thermal/Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt
> @@ -10,6 +10,7 @@ Required properties:
>  			    - "renesas,r8a7795-thermal" (R-Car H3)
>  			    - "renesas,r8a7796-thermal" (R-Car M3-W)
>  			    - "renesas,r8a77965-thermal" (R-Car M3-N)
> +			    - "renesas,r8a77980-thermal" (R-Car V3H)
>  - reg			: Address ranges of the thermal registers. Each sensor
>  			  needs one address range. Sorting must be done in
>  			  increasing order according to datasheet, i.e.
> @@ -19,7 +20,8 @@ Required properties:
>  
>  Optional properties:
>  
> -- interrupts           : interrupts routed to the TSC (3 for H3, M3-W and M3-N)
> +- interrupts		: interrupts routed to the TSC (3 for H3, M3-W, M3-N,
> +			  and V3H)
>  - power-domain		: Must contain a reference to the power domain. This
>  			  property is mandatory if the thermal sensor instance
>  			  is part of a controllable power domain.

-- 
Regards,
Niklas S�derlund

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

* Re: [PATCH 2/2] thermal: rcar_gen3_thermal: add R8A77980 support
  2018-10-09 19:11 ` [PATCH 2/2] thermal: rcar_gen3_thermal: add R8A77980 support Sergei Shtylyov
  2018-10-10  8:29   ` Simon Horman
@ 2018-10-10 10:24   ` Niklas Söderlund
  1 sibling, 0 replies; 8+ messages in thread
From: Niklas Söderlund @ 2018-10-10 10:24 UTC (permalink / raw)
  To: Sergei Shtylyov; +Cc: Zhang Rui, Eduardo Valentin, linux-pm, linux-renesas-soc

Hi Sergei,

Thanks for your patch.

On 2018-10-09 22:11:51 +0300, Sergei Shtylyov wrote:
> Add the R-Car V3H (R8A77980) SoC support to the R-Car gen3 thermal driver.
> 
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

Reviewed-by: Niklas S�derlund <niklas.soderlund+renesas@ragnatech.se>

> 
> ---
>  drivers/thermal/rcar_gen3_thermal.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> Index: linux-soc-thermal/drivers/thermal/rcar_gen3_thermal.c
> ===================================================================
> --- linux-soc-thermal.orig/drivers/thermal/rcar_gen3_thermal.c
> +++ linux-soc-thermal/drivers/thermal/rcar_gen3_thermal.c
> @@ -321,6 +321,7 @@ static const struct of_device_id rcar_ge
>  	{ .compatible = "renesas,r8a7795-thermal", },
>  	{ .compatible = "renesas,r8a7796-thermal", },
>  	{ .compatible = "renesas,r8a77965-thermal", },
> +	{ .compatible = "renesas,r8a77980-thermal", },
>  	{},
>  };
>  MODULE_DEVICE_TABLE(of, rcar_gen3_thermal_dt_ids);

-- 
Regards,
Niklas S�derlund

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

* Re: [PATCH 1/2] dt-bindings: thermal: rcar-gen3-thermal: document R8A77980 bindings
  2018-10-09 19:10 ` [PATCH 1/2] dt-bindings: thermal: rcar-gen3-thermal: document R8A77980 bindings Sergei Shtylyov
  2018-10-10  8:28   ` Simon Horman
  2018-10-10 10:23   ` Niklas Söderlund
@ 2018-10-17 16:00   ` Rob Herring
  2 siblings, 0 replies; 8+ messages in thread
From: Rob Herring @ 2018-10-17 16:00 UTC (permalink / raw)
  To: Sergei Shtylyov
  Cc: Zhang Rui, Eduardo Valentin, linux-pm, devicetree,
	linux-renesas-soc, Mark Rutland

On Tue, 9 Oct 2018 22:10:14 +0300, Sergei Shtylyov wrote:
> Document the R-Car V3H (R8A77980) SoC in the Renesas R-Car gen3 thermal
> bindings.
> 
> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
> 
> ---
>  Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.txt |    4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 

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

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

end of thread, other threads:[~2018-10-17 16:00 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-09 19:07 [PATCH 0/2] Add R8A77980 support to the Renesas R-Car gen3 thermal driver Sergei Shtylyov
2018-10-09 19:10 ` [PATCH 1/2] dt-bindings: thermal: rcar-gen3-thermal: document R8A77980 bindings Sergei Shtylyov
2018-10-10  8:28   ` Simon Horman
2018-10-10 10:23   ` Niklas Söderlund
2018-10-17 16:00   ` Rob Herring
2018-10-09 19:11 ` [PATCH 2/2] thermal: rcar_gen3_thermal: add R8A77980 support Sergei Shtylyov
2018-10-10  8:29   ` Simon Horman
2018-10-10 10:24   ` Niklas Söderlund

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.