diff mbox series

thermal: qoriq: add i.mx8mq support

Message ID 1535595286-18371-1-git-send-email-Anson.Huang@nxp.com (mailing list archive)
State Accepted
Delegated to: Eduardo Valentin
Headers show
Series thermal: qoriq: add i.mx8mq support | expand

Commit Message

Anson Huang Aug. 30, 2018, 2:14 a.m. UTC
Add i.mx8mq specific compatible string.

Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
---
 Documentation/devicetree/bindings/thermal/qoriq-thermal.txt | 6 +++---
 drivers/thermal/qoriq_thermal.c                             | 1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

Comments

Anson Huang Sept. 13, 2018, 9:43 a.m. UTC | #1
Gentle ping...

Anson Huang
Best Regards!


> -----Original Message-----
> From: Rob Herring <robh@kernel.org>
> Sent: Tuesday, September 4, 2018 9:18 AM
> To: Anson Huang <anson.huang@nxp.com>
> Cc: rui.zhang@intel.com; edubezval@gmail.com; robh+dt@kernel.org;
> mark.rutland@arm.com; linux-pm@vger.kernel.org;
> devicetree@vger.kernel.org; linux-kernel@vger.kernel.org; dl-linux-imx
> <linux-imx@nxp.com>
> Subject: Re: [PATCH] thermal: qoriq: add i.mx8mq support
> 
> On Thu, 30 Aug 2018 10:14:46 +0800, Anson Huang wrote:
> > Add i.mx8mq specific compatible string.
> >
> > Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
> > ---
> >  Documentation/devicetree/bindings/thermal/qoriq-thermal.txt | 6 +++---
> >  drivers/thermal/qoriq_thermal.c                             | 1 +
> >  2 files changed, 4 insertions(+), 3 deletions(-)
> >
> 
> Reviewed-by: Rob Herring <robh@kernel.org>
Anson Huang Oct. 22, 2018, 1:43 a.m. UTC | #2
Ping...

Anson Huang
Best Regards!


> -----Original Message-----
> From: Anson Huang
> Sent: Thursday, September 13, 2018 5:44 PM
> To: 'Rob Herring' <robh@kernel.org>
> Cc: rui.zhang@intel.com; edubezval@gmail.com; robh+dt@kernel.org;
> mark.rutland@arm.com; linux-pm@vger.kernel.org;
> devicetree@vger.kernel.org; linux-kernel@vger.kernel.org; dl-linux-imx
> <linux-imx@nxp.com>
> Subject: RE: [PATCH] thermal: qoriq: add i.mx8mq support
> 
> Gentle ping...
> 
> Anson Huang
> Best Regards!
> 
> 
> > -----Original Message-----
> > From: Rob Herring <robh@kernel.org>
> > Sent: Tuesday, September 4, 2018 9:18 AM
> > To: Anson Huang <anson.huang@nxp.com>
> > Cc: rui.zhang@intel.com; edubezval@gmail.com; robh+dt@kernel.org;
> > mark.rutland@arm.com; linux-pm@vger.kernel.org;
> > devicetree@vger.kernel.org; linux-kernel@vger.kernel.org; dl-linux-imx
> > <linux-imx@nxp.com>
> > Subject: Re: [PATCH] thermal: qoriq: add i.mx8mq support
> >
> > On Thu, 30 Aug 2018 10:14:46 +0800, Anson Huang wrote:
> > > Add i.mx8mq specific compatible string.
> > >
> > > Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
> > > ---
> > >  Documentation/devicetree/bindings/thermal/qoriq-thermal.txt | 6 +++---
> > >  drivers/thermal/qoriq_thermal.c                             | 1 +
> > >  2 files changed, 4 insertions(+), 3 deletions(-)
> > >
> >
> > Reviewed-by: Rob Herring <robh@kernel.org>
diff mbox series

Patch

diff --git a/Documentation/devicetree/bindings/thermal/qoriq-thermal.txt b/Documentation/devicetree/bindings/thermal/qoriq-thermal.txt
index 20ca4ef..04cbb90 100644
--- a/Documentation/devicetree/bindings/thermal/qoriq-thermal.txt
+++ b/Documentation/devicetree/bindings/thermal/qoriq-thermal.txt
@@ -1,9 +1,9 @@ 
 * Thermal Monitoring Unit (TMU) on Freescale QorIQ SoCs
 
 Required properties:
-- compatible : Must include "fsl,qoriq-tmu". The version of the device is
-	determined by the TMU IP Block Revision Register (IPBRR0) at
-	offset 0x0BF8.
+- compatible : Must include "fsl,qoriq-tmu" or "fsl,imx8mq-tmu". The
+	version of the device is determined by the TMU IP Block Revision
+	Register (IPBRR0) at offset 0x0BF8.
 	Table of correspondences between IPBRR0 values and example  chips:
 		Value           Device
 		----------      -----
diff --git a/drivers/thermal/qoriq_thermal.c b/drivers/thermal/qoriq_thermal.c
index c866cc1..e0e7356 100644
--- a/drivers/thermal/qoriq_thermal.c
+++ b/drivers/thermal/qoriq_thermal.c
@@ -305,6 +305,7 @@  static SIMPLE_DEV_PM_OPS(qoriq_tmu_pm_ops,
 
 static const struct of_device_id qoriq_tmu_match[] = {
 	{ .compatible = "fsl,qoriq-tmu", },
+	{ .compatible = "fsl,imx8mq-tmu", },
 	{},
 };
 MODULE_DEVICE_TABLE(of, qoriq_tmu_match);