All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] dt-bindings: thermal: imx: update the binding to new method
@ 2018-01-25  6:37 ` Dong Aisheng
  0 siblings, 0 replies; 6+ messages in thread
From: Dong Aisheng @ 2018-01-25  6:37 UTC (permalink / raw)
  To: linux-pm, devicetree
  Cc: linux-arm-kernel, linux-imx, Dong Aisheng, Shawn Guo,
	Leonard Crestez, Zhang Rui, Eduardo Valentin, Rob Herring,
	Mark Rutland

Due to the old method has already been marked as deprecated in binding
doc, so obviously it's better to update the example to new bindings
as well.

Cc: Shawn Guo <shawn.guo@linaro.org>
Cc: Leonard Crestez <leonard.crestez@nxp.com>
Cc: Zhang Rui <rui.zhang@intel.com>
Cc: Eduardo Valentin <edubezval@gmail.com>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
---
 .../devicetree/bindings/thermal/imx-thermal.txt    | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/Documentation/devicetree/bindings/thermal/imx-thermal.txt b/Documentation/devicetree/bindings/thermal/imx-thermal.txt
index 28be51a..379eb76 100644
--- a/Documentation/devicetree/bindings/thermal/imx-thermal.txt
+++ b/Documentation/devicetree/bindings/thermal/imx-thermal.txt
@@ -22,7 +22,32 @@ Optional properties:
 - clocks : thermal sensor's clock source.
 
 Example:
+ocotp: ocotp@21bc000 {
+	#address-cells = <1>;
+	#size-cells = <1>;
+	compatible = "fsl,imx6sx-ocotp", "syscon";
+	reg = <0x021bc000 0x4000>;
+	clocks = <&clks IMX6SX_CLK_OCOTP>;
 
+	tempmon_calib: calib@38 {
+		reg = <0x38 4>;
+	};
+
+	tempmon_temp_grade: temp-grade@20 {
+		reg = <0x20 4>;
+	};
+};
+
+tempmon: tempmon {
+	compatible = "fsl,imx6sx-tempmon", "fsl,imx6q-tempmon";
+	interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
+	fsl,tempmon = <&anatop>;
+	nvmem-cells = <&tempmon_calib>, <&tempmon_temp_grade>;
+	nvmem-cell-names = "calib", "temp_grade";
+	clocks = <&clks IMX6SX_CLK_PLL3_USB_OTG>;
+};
+
+Legacy method (Deprecated):
 tempmon {
 	compatible = "fsl,imx6q-tempmon";
 	fsl,tempmon = <&anatop>;
-- 
2.7.4

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

* [PATCH 1/1] dt-bindings: thermal: imx: update the binding to new method
@ 2018-01-25  6:37 ` Dong Aisheng
  0 siblings, 0 replies; 6+ messages in thread
From: Dong Aisheng @ 2018-01-25  6:37 UTC (permalink / raw)
  To: linux-arm-kernel

Due to the old method has already been marked as deprecated in binding
doc, so obviously it's better to update the example to new bindings
as well.

Cc: Shawn Guo <shawn.guo@linaro.org>
Cc: Leonard Crestez <leonard.crestez@nxp.com>
Cc: Zhang Rui <rui.zhang@intel.com>
Cc: Eduardo Valentin <edubezval@gmail.com>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
---
 .../devicetree/bindings/thermal/imx-thermal.txt    | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/Documentation/devicetree/bindings/thermal/imx-thermal.txt b/Documentation/devicetree/bindings/thermal/imx-thermal.txt
index 28be51a..379eb76 100644
--- a/Documentation/devicetree/bindings/thermal/imx-thermal.txt
+++ b/Documentation/devicetree/bindings/thermal/imx-thermal.txt
@@ -22,7 +22,32 @@ Optional properties:
 - clocks : thermal sensor's clock source.
 
 Example:
+ocotp: ocotp at 21bc000 {
+	#address-cells = <1>;
+	#size-cells = <1>;
+	compatible = "fsl,imx6sx-ocotp", "syscon";
+	reg = <0x021bc000 0x4000>;
+	clocks = <&clks IMX6SX_CLK_OCOTP>;
 
+	tempmon_calib: calib at 38 {
+		reg = <0x38 4>;
+	};
+
+	tempmon_temp_grade: temp-grade at 20 {
+		reg = <0x20 4>;
+	};
+};
+
+tempmon: tempmon {
+	compatible = "fsl,imx6sx-tempmon", "fsl,imx6q-tempmon";
+	interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
+	fsl,tempmon = <&anatop>;
+	nvmem-cells = <&tempmon_calib>, <&tempmon_temp_grade>;
+	nvmem-cell-names = "calib", "temp_grade";
+	clocks = <&clks IMX6SX_CLK_PLL3_USB_OTG>;
+};
+
+Legacy method (Deprecated):
 tempmon {
 	compatible = "fsl,imx6q-tempmon";
 	fsl,tempmon = <&anatop>;
-- 
2.7.4

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

* Re: [PATCH 1/1] dt-bindings: thermal: imx: update the binding to new method
  2018-01-25  6:37 ` Dong Aisheng
@ 2018-01-29  1:48   ` Shawn Guo
  -1 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2018-01-29  1:48 UTC (permalink / raw)
  To: Dong Aisheng
  Cc: linux-pm, devicetree, linux-arm-kernel, linux-imx,
	Leonard Crestez, Zhang Rui, Eduardo Valentin, Rob Herring,
	Mark Rutland

On Thu, Jan 25, 2018 at 02:37:49PM +0800, Dong Aisheng wrote:
> Due to the old method has already been marked as deprecated in binding
> doc, so obviously it's better to update the example to new bindings
> as well.
> 
> Cc: Shawn Guo <shawn.guo@linaro.org>

Acked-by: Shawn Guo <shawnguo@kernel.org>

Please use my kernel.org address for kernel patches.

Shawn

> Cc: Leonard Crestez <leonard.crestez@nxp.com>
> Cc: Zhang Rui <rui.zhang@intel.com>
> Cc: Eduardo Valentin <edubezval@gmail.com>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Mark Rutland <mark.rutland@arm.com>
> Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
> ---
>  .../devicetree/bindings/thermal/imx-thermal.txt    | 25 ++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/thermal/imx-thermal.txt b/Documentation/devicetree/bindings/thermal/imx-thermal.txt
> index 28be51a..379eb76 100644
> --- a/Documentation/devicetree/bindings/thermal/imx-thermal.txt
> +++ b/Documentation/devicetree/bindings/thermal/imx-thermal.txt
> @@ -22,7 +22,32 @@ Optional properties:
>  - clocks : thermal sensor's clock source.
>  
>  Example:
> +ocotp: ocotp@21bc000 {
> +	#address-cells = <1>;
> +	#size-cells = <1>;
> +	compatible = "fsl,imx6sx-ocotp", "syscon";
> +	reg = <0x021bc000 0x4000>;
> +	clocks = <&clks IMX6SX_CLK_OCOTP>;
>  
> +	tempmon_calib: calib@38 {
> +		reg = <0x38 4>;
> +	};
> +
> +	tempmon_temp_grade: temp-grade@20 {
> +		reg = <0x20 4>;
> +	};
> +};
> +
> +tempmon: tempmon {
> +	compatible = "fsl,imx6sx-tempmon", "fsl,imx6q-tempmon";
> +	interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
> +	fsl,tempmon = <&anatop>;
> +	nvmem-cells = <&tempmon_calib>, <&tempmon_temp_grade>;
> +	nvmem-cell-names = "calib", "temp_grade";
> +	clocks = <&clks IMX6SX_CLK_PLL3_USB_OTG>;
> +};
> +
> +Legacy method (Deprecated):
>  tempmon {
>  	compatible = "fsl,imx6q-tempmon";
>  	fsl,tempmon = <&anatop>;
> -- 
> 2.7.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe devicetree" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 1/1] dt-bindings: thermal: imx: update the binding to new method
@ 2018-01-29  1:48   ` Shawn Guo
  0 siblings, 0 replies; 6+ messages in thread
From: Shawn Guo @ 2018-01-29  1:48 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jan 25, 2018 at 02:37:49PM +0800, Dong Aisheng wrote:
> Due to the old method has already been marked as deprecated in binding
> doc, so obviously it's better to update the example to new bindings
> as well.
> 
> Cc: Shawn Guo <shawn.guo@linaro.org>

Acked-by: Shawn Guo <shawnguo@kernel.org>

Please use my kernel.org address for kernel patches.

Shawn

> Cc: Leonard Crestez <leonard.crestez@nxp.com>
> Cc: Zhang Rui <rui.zhang@intel.com>
> Cc: Eduardo Valentin <edubezval@gmail.com>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Mark Rutland <mark.rutland@arm.com>
> Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
> ---
>  .../devicetree/bindings/thermal/imx-thermal.txt    | 25 ++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
> 
> diff --git a/Documentation/devicetree/bindings/thermal/imx-thermal.txt b/Documentation/devicetree/bindings/thermal/imx-thermal.txt
> index 28be51a..379eb76 100644
> --- a/Documentation/devicetree/bindings/thermal/imx-thermal.txt
> +++ b/Documentation/devicetree/bindings/thermal/imx-thermal.txt
> @@ -22,7 +22,32 @@ Optional properties:
>  - clocks : thermal sensor's clock source.
>  
>  Example:
> +ocotp: ocotp at 21bc000 {
> +	#address-cells = <1>;
> +	#size-cells = <1>;
> +	compatible = "fsl,imx6sx-ocotp", "syscon";
> +	reg = <0x021bc000 0x4000>;
> +	clocks = <&clks IMX6SX_CLK_OCOTP>;
>  
> +	tempmon_calib: calib at 38 {
> +		reg = <0x38 4>;
> +	};
> +
> +	tempmon_temp_grade: temp-grade at 20 {
> +		reg = <0x20 4>;
> +	};
> +};
> +
> +tempmon: tempmon {
> +	compatible = "fsl,imx6sx-tempmon", "fsl,imx6q-tempmon";
> +	interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
> +	fsl,tempmon = <&anatop>;
> +	nvmem-cells = <&tempmon_calib>, <&tempmon_temp_grade>;
> +	nvmem-cell-names = "calib", "temp_grade";
> +	clocks = <&clks IMX6SX_CLK_PLL3_USB_OTG>;
> +};
> +
> +Legacy method (Deprecated):
>  tempmon {
>  	compatible = "fsl,imx6q-tempmon";
>  	fsl,tempmon = <&anatop>;
> -- 
> 2.7.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe devicetree" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH 1/1] dt-bindings: thermal: imx: update the binding to new method
  2018-01-25  6:37 ` Dong Aisheng
@ 2018-02-12 14:40   ` Rob Herring
  -1 siblings, 0 replies; 6+ messages in thread
From: Rob Herring @ 2018-02-12 14:40 UTC (permalink / raw)
  To: Dong Aisheng
  Cc: linux-pm, devicetree, linux-arm-kernel, linux-imx, Shawn Guo,
	Leonard Crestez, Zhang Rui, Eduardo Valentin, Mark Rutland

On Thu, Jan 25, 2018 at 02:37:49PM +0800, Dong Aisheng wrote:
> Due to the old method has already been marked as deprecated in binding
> doc, so obviously it's better to update the example to new bindings
> as well.
> 
> Cc: Shawn Guo <shawn.guo@linaro.org>
> Cc: Leonard Crestez <leonard.crestez@nxp.com>
> Cc: Zhang Rui <rui.zhang@intel.com>
> Cc: Eduardo Valentin <edubezval@gmail.com>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Mark Rutland <mark.rutland@arm.com>
> Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
> ---
>  .../devicetree/bindings/thermal/imx-thermal.txt    | 25 ++++++++++++++++++++++
>  1 file changed, 25 insertions(+)

Applied, thanks.

Rob

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

* [PATCH 1/1] dt-bindings: thermal: imx: update the binding to new method
@ 2018-02-12 14:40   ` Rob Herring
  0 siblings, 0 replies; 6+ messages in thread
From: Rob Herring @ 2018-02-12 14:40 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Jan 25, 2018 at 02:37:49PM +0800, Dong Aisheng wrote:
> Due to the old method has already been marked as deprecated in binding
> doc, so obviously it's better to update the example to new bindings
> as well.
> 
> Cc: Shawn Guo <shawn.guo@linaro.org>
> Cc: Leonard Crestez <leonard.crestez@nxp.com>
> Cc: Zhang Rui <rui.zhang@intel.com>
> Cc: Eduardo Valentin <edubezval@gmail.com>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Mark Rutland <mark.rutland@arm.com>
> Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
> ---
>  .../devicetree/bindings/thermal/imx-thermal.txt    | 25 ++++++++++++++++++++++
>  1 file changed, 25 insertions(+)

Applied, thanks.

Rob

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

end of thread, other threads:[~2018-02-12 14:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-25  6:37 [PATCH 1/1] dt-bindings: thermal: imx: update the binding to new method Dong Aisheng
2018-01-25  6:37 ` Dong Aisheng
2018-01-29  1:48 ` Shawn Guo
2018-01-29  1:48   ` Shawn Guo
2018-02-12 14:40 ` Rob Herring
2018-02-12 14:40   ` Rob Herring

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.