All of lore.kernel.org
 help / color / mirror / Atom feed
From: Eduardo Valentin <eduardo.valentin@ti.com>
To: Viresh Kumar <viresh.kumar@linaro.org>
Cc: Eduardo Valentin <eduardo.valentin@ti.com>,
	Stephen Warren <swarren@wwwdotorg.org>,
	Pawel Moll <pawel.moll@arm.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Ian Campbell <ian.campbell@citrix.com>,
	Grant Likely <grant.likely@linaro.org>,
	Rob Herring <rob.herring@calxeda.com>,
	Guenter Roeck <linux@roeck-us.net>,
	Zhang Rui <rui.zhang@intel.com>,
	wni@nvidia.com, "R, Durgadoss" <durgadoss.r@intel.com>,
	"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	lm-sensors@lm-sensors.org,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	"Rafael J. Wysocki" <rjw@sisk.pl>,
	"cpufreq@vger.kernel.org" <cpufreq@vger.kernel.org>,
	devicetree-discuss <devicetree-discuss@lists.ozlabs.org>
Subject: Re: [RFC PATCH 01/14] cpufreq: cpufreq-cpu0: add dt node parsing for 'cooling-zones'
Date: Mon, 26 Aug 2013 08:13:26 -0400	[thread overview]
Message-ID: <521B4666.3050509@ti.com> (raw)
In-Reply-To: <CAKohpomuFWyH6ss4_L-0j9WyXtsZEygWrFLYXE6Oj_AD-DJUjA@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 1314 bytes --]

On 26-08-2013 00:42, Viresh Kumar wrote:
> On 24 August 2013 04:45, Eduardo Valentin <eduardo.valentin@ti.com> wrote:
>> diff --git a/drivers/cpufreq/cpufreq-cpu0.c b/drivers/cpufreq/cpufreq-cpu0.c
>> index ad1fde2..ede6487 100644
>> --- a/drivers/cpufreq/cpufreq-cpu0.c
>> +++ b/drivers/cpufreq/cpufreq-cpu0.c
>> @@ -20,6 +20,9 @@
>>  #include <linux/platform_device.h>
>>  #include <linux/regulator/consumer.h>
>>  #include <linux/slab.h>
>> +#include <linux/thermal.h>
>> +#include <linux/cpu_cooling.h>
>> +#include <linux/cpumask.h>
> 
> In alphabetical order please..
> 

OK.

>> @@ -268,6 +272,13 @@ static int cpu0_cpufreq_probe(struct platform_device *pdev)
>>                 goto out_free_table;
>>         }
>>
>> +       /*
>> +        * For now, just loading the cooling device;
>> +        * thermal DT code takes care of matching them.
>> +        */
>> +       if (of_find_property(np, "cooling-zones", NULL))
>> +               cdev = cpufreq_cooling_register(cpu_present_mask);
> 
> Should we check if it passed or failed? And if failed Atleast flag an
> appropriate message?
> 

Yes, we need error checking code. I will add in next version. Thanks Kumar.

> 


-- 
You have got to be excited about what you are doing. (L. Lamport)

Eduardo Valentin


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 295 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Eduardo Valentin <eduardo.valentin@ti.com>
To: Viresh Kumar <viresh.kumar@linaro.org>
Cc: Eduardo Valentin <eduardo.valentin@ti.com>,
	Stephen Warren <swarren@wwwdotorg.org>,
	Pawel Moll <pawel.moll@arm.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Ian Campbell <ian.campbell@citrix.com>,
	Grant Likely <grant.likely@linaro.org>,
	Rob Herring <rob.herring@calxeda.com>,
	Guenter Roeck <linux@roeck-us.net>,
	Zhang Rui <rui.zhang@intel.com>,
	wni@nvidia.com, "R, Durgadoss" <durgadoss.r@intel.com>,
	"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	lm-sensors@lm-sensors.org,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	"Rafael J. Wysocki" <rjw@sisk.pl>,
	"cpufreq@vger.kernel.org" <cpufreq@vger.kernel.org>,
	devicetree-discuss <devicetree-discuss@lists.ozlabs.org>
Subject: Re: [lm-sensors] [RFC PATCH 01/14] cpufreq: cpufreq-cpu0: add dt node parsing for 'cooling-zones'
Date: Mon, 26 Aug 2013 12:13:26 +0000	[thread overview]
Message-ID: <521B4666.3050509@ti.com> (raw)
In-Reply-To: <CAKohpomuFWyH6ss4_L-0j9WyXtsZEygWrFLYXE6Oj_AD-DJUjA@mail.gmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 1314 bytes --]

On 26-08-2013 00:42, Viresh Kumar wrote:
> On 24 August 2013 04:45, Eduardo Valentin <eduardo.valentin@ti.com> wrote:
>> diff --git a/drivers/cpufreq/cpufreq-cpu0.c b/drivers/cpufreq/cpufreq-cpu0.c
>> index ad1fde2..ede6487 100644
>> --- a/drivers/cpufreq/cpufreq-cpu0.c
>> +++ b/drivers/cpufreq/cpufreq-cpu0.c
>> @@ -20,6 +20,9 @@
>>  #include <linux/platform_device.h>
>>  #include <linux/regulator/consumer.h>
>>  #include <linux/slab.h>
>> +#include <linux/thermal.h>
>> +#include <linux/cpu_cooling.h>
>> +#include <linux/cpumask.h>
> 
> In alphabetical order please..
> 

OK.

>> @@ -268,6 +272,13 @@ static int cpu0_cpufreq_probe(struct platform_device *pdev)
>>                 goto out_free_table;
>>         }
>>
>> +       /*
>> +        * For now, just loading the cooling device;
>> +        * thermal DT code takes care of matching them.
>> +        */
>> +       if (of_find_property(np, "cooling-zones", NULL))
>> +               cdev = cpufreq_cooling_register(cpu_present_mask);
> 
> Should we check if it passed or failed? And if failed Atleast flag an
> appropriate message?
> 

Yes, we need error checking code. I will add in next version. Thanks Kumar.

> 


-- 
You have got to be excited about what you are doing. (L. Lamport)

Eduardo Valentin


[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 295 bytes --]

[-- Attachment #2: Type: text/plain, Size: 153 bytes --]

_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

WARNING: multiple messages have this Message-ID (diff)
From: Eduardo Valentin <eduardo.valentin@ti.com>
To: Viresh Kumar <viresh.kumar@linaro.org>
Cc: Eduardo Valentin <eduardo.valentin@ti.com>,
	Stephen Warren <swarren@wwwdotorg.org>,
	Pawel Moll <pawel.moll@arm.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Ian Campbell <ian.campbell@citrix.com>,
	Grant Likely <grant.likely@linaro.org>,
	Rob Herring <rob.herring@calxeda.com>,
	Guenter Roeck <linux@roeck-us.net>,
	Zhang Rui <rui.zhang@intel.com>, <wni@nvidia.com>,
	"R, Durgadoss" <durgadoss.r@intel.com>,
	"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	<lm-sensors@lm-sensors.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	"Rafael J. Wysocki" <rjw@sisk.pl>,
	"cpufreq@vger.kernel.org" <cpufreq@vger.kernel.org>,
	devicetree-discuss <devicetree-discuss@lists.ozlabs.org>
Subject: Re: [RFC PATCH 01/14] cpufreq: cpufreq-cpu0: add dt node parsing for 'cooling-zones'
Date: Mon, 26 Aug 2013 08:13:26 -0400	[thread overview]
Message-ID: <521B4666.3050509@ti.com> (raw)
In-Reply-To: <CAKohpomuFWyH6ss4_L-0j9WyXtsZEygWrFLYXE6Oj_AD-DJUjA@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 1314 bytes --]

On 26-08-2013 00:42, Viresh Kumar wrote:
> On 24 August 2013 04:45, Eduardo Valentin <eduardo.valentin@ti.com> wrote:
>> diff --git a/drivers/cpufreq/cpufreq-cpu0.c b/drivers/cpufreq/cpufreq-cpu0.c
>> index ad1fde2..ede6487 100644
>> --- a/drivers/cpufreq/cpufreq-cpu0.c
>> +++ b/drivers/cpufreq/cpufreq-cpu0.c
>> @@ -20,6 +20,9 @@
>>  #include <linux/platform_device.h>
>>  #include <linux/regulator/consumer.h>
>>  #include <linux/slab.h>
>> +#include <linux/thermal.h>
>> +#include <linux/cpu_cooling.h>
>> +#include <linux/cpumask.h>
> 
> In alphabetical order please..
> 

OK.

>> @@ -268,6 +272,13 @@ static int cpu0_cpufreq_probe(struct platform_device *pdev)
>>                 goto out_free_table;
>>         }
>>
>> +       /*
>> +        * For now, just loading the cooling device;
>> +        * thermal DT code takes care of matching them.
>> +        */
>> +       if (of_find_property(np, "cooling-zones", NULL))
>> +               cdev = cpufreq_cooling_register(cpu_present_mask);
> 
> Should we check if it passed or failed? And if failed Atleast flag an
> appropriate message?
> 

Yes, we need error checking code. I will add in next version. Thanks Kumar.

> 


-- 
You have got to be excited about what you are doing. (L. Lamport)

Eduardo Valentin


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 295 bytes --]

  reply	other threads:[~2013-08-26 12:13 UTC|newest]

Thread overview: 99+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-08-23 23:15 [RFC PATCH 00/14] RFCv2: device thermal limits represented in device tree nodes Eduardo Valentin
2013-08-23 23:15 ` Eduardo Valentin
2013-08-23 23:15 ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 01/14] cpufreq: cpufreq-cpu0: add dt node parsing for 'cooling-zones' Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-26  4:42   ` Viresh Kumar
2013-08-26  4:54     ` [lm-sensors] " Viresh Kumar
2013-08-26 12:13     ` Eduardo Valentin [this message]
2013-08-26 12:13       ` Eduardo Valentin
2013-08-26 12:13       ` [lm-sensors] " Eduardo Valentin
2013-08-27  9:29   ` Mark Rutland
2013-08-27  9:29     ` [lm-sensors] " Mark Rutland
2013-08-27 13:05     ` Eduardo Valentin
2013-08-27 13:05       ` Eduardo Valentin
2013-08-27 13:05       ` [lm-sensors] " Eduardo Valentin
2013-08-27 13:05       ` Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 02/14] drivers: thermal: introduce device tree parser Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-27 10:22   ` Mark Rutland
2013-08-27 10:22     ` [lm-sensors] " Mark Rutland
2013-08-27 13:44     ` Eduardo Valentin
2013-08-27 13:44       ` [lm-sensors] " Eduardo Valentin
2013-08-27 16:23       ` Mark Rutland
2013-08-27 16:23         ` [lm-sensors] " Mark Rutland
2013-08-27 18:17         ` Eduardo Valentin
2013-08-27 18:17           ` [lm-sensors] " Eduardo Valentin
2013-08-29 23:19           ` Eduardo Valentin
2013-08-29 23:19             ` [lm-sensors] " Eduardo Valentin
2013-09-02  8:14             ` Wei Ni
2013-09-02  8:14               ` [lm-sensors] " Wei Ni
2013-09-02 16:28             ` Eduardo Valentin
2013-09-02 16:28               ` [lm-sensors] " Eduardo Valentin
2013-09-03 13:15             ` Mark Rutland
2013-09-03 13:15               ` [lm-sensors] " Mark Rutland
2013-09-03 17:12               ` Eduardo Valentin
2013-09-03 17:12                 ` [lm-sensors] " Eduardo Valentin
2013-09-07  0:19               ` Eduardo Valentin
2013-09-07  0:19                 ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 03/14] hwmon: lm75: expose to thermal fw via DT nodes Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:39   ` Guenter Roeck
2013-08-23 23:39     ` [lm-sensors] " Guenter Roeck
2013-08-26 12:11     ` Eduardo Valentin
2013-08-26 12:11       ` Eduardo Valentin
2013-08-26 12:11       ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:50   ` Guenter Roeck
2013-08-23 23:50     ` [lm-sensors] " Guenter Roeck
2013-08-26 12:15     ` Eduardo Valentin
2013-08-26 12:15       ` Eduardo Valentin
2013-08-26 12:15       ` [lm-sensors] " Eduardo Valentin
2013-08-27 10:26   ` Mark Rutland
2013-08-27 10:26     ` [lm-sensors] " Mark Rutland
2013-08-23 23:15 ` [RFC PATCH 04/14] hwmon: tmp102: " Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-27 10:27   ` Mark Rutland
2013-08-27 10:27     ` [lm-sensors] " Mark Rutland
2013-08-23 23:15 ` [RFC PATCH 05/14] thermal: ti-soc-thermal: use thermal DT infrastructure Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 06/14] arm: dts: add omap4 CPU thermal data Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 07/14] arm: dts: add omap4430 " Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 08/14] arm: dts: add omap4460 " Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 09/14] arm: dts: point to cooling-zones on omap4430 cpu node Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 10/14] arm: dts: point to cooling-zones on omap4460 " Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 11/14] arm: dts: add omap5 GPU thermal data Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 12/14] arm: dts: add omap5 CORE " Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 13/14] arm: dts: add omap5 " Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin
2013-08-23 23:15 ` [RFC PATCH 14/14] arm: dts: point to cooling-zones on omap5 cpu node Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` Eduardo Valentin
2013-08-23 23:15   ` [lm-sensors] " Eduardo Valentin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=521B4666.3050509@ti.com \
    --to=eduardo.valentin@ti.com \
    --cc=cpufreq@vger.kernel.org \
    --cc=devicetree-discuss@lists.ozlabs.org \
    --cc=devicetree@vger.kernel.org \
    --cc=durgadoss.r@intel.com \
    --cc=grant.likely@linaro.org \
    --cc=ian.campbell@citrix.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=lm-sensors@lm-sensors.org \
    --cc=mark.rutland@arm.com \
    --cc=pawel.moll@arm.com \
    --cc=rjw@sisk.pl \
    --cc=rob.herring@calxeda.com \
    --cc=rui.zhang@intel.com \
    --cc=swarren@wwwdotorg.org \
    --cc=viresh.kumar@linaro.org \
    --cc=wni@nvidia.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.