From: Kevin Hilman <khilman@deeprootsystems.com>
To: Jean Pihet <jean.pihet@newoldbits.com>
Cc: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
tony@atomide.com, Anton Vorontsov <cbou@mail.ru>,
J Keerthy <j-keerthy@ti.com>, Jean Pihet <j-pihet@ti.com>
Subject: Re: [PATCH 2/2] ARM: OMAP: SmartReflex: pass device dependent data via platform data
Date: Tue, 02 Oct 2012 15:21:12 -0700 [thread overview]
Message-ID: <877gr87bxj.fsf@deeprootsystems.com> (raw)
In-Reply-To: <1348496201-6378-3-git-send-email-j-pihet@ti.com> (Jean Pihet's message of "Mon, 24 Sep 2012 16:16:41 +0200")
Hi Jean,
Jean Pihet <jean.pihet@newoldbits.com> writes:
> Remove the device dependent settings (cpu_is_xxx(), IP fck etc.)
> from the driver code and pass them instead via the platform
> data.
> This allows a clean separation of the driver code and the platform
> code, as required by the move of the platform header files to
> include/linux/platform_data.
>
> Signed-off-by: Jean Pihet <j-pihet@ti.com>
Could you make pdata change and the clock change should be two different
patches? Also, your previous patch to align SR clock names should be
combined with the changes made here.
Some comments on the clock change below...
> ---
> arch/arm/mach-omap2/sr_device.c | 13 ++++++++++++
> drivers/power/avs/smartreflex.c | 40 ++++++++++--------------------------
> include/linux/power/smartreflex.h | 14 +++++++++++-
> 3 files changed, 36 insertions(+), 31 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/sr_device.c b/arch/arm/mach-omap2/sr_device.c
> index d033a65..2885a77 100644
> --- a/arch/arm/mach-omap2/sr_device.c
> +++ b/arch/arm/mach-omap2/sr_device.c
> @@ -122,6 +122,19 @@ static int __init sr_dev_init(struct omap_hwmod *oh, void *user)
> sr_data->senn_mod = 0x1;
> sr_data->senp_mod = 0x1;
>
> + if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
> + sr_data->err_weight = OMAP3430_SR_ERRWEIGHT;
> + sr_data->err_maxlimit = OMAP3430_SR_ERRMAXLIMIT;
> + sr_data->accum_data = OMAP3430_SR_ACCUMDATA;
> + if (!(strcmp(sr_data->name, "smartreflex_mpu"))) {
> + sr_data->senn_avgweight = OMAP3430_SR1_SENNAVGWEIGHT;
> + sr_data->senp_avgweight = OMAP3430_SR1_SENPAVGWEIGHT;
> + } else {
> + sr_data->senn_avgweight = OMAP3430_SR2_SENNAVGWEIGHT;
> + sr_data->senp_avgweight = OMAP3430_SR2_SENPAVGWEIGHT;
> + }
> + }
> +
> sr_data->voltdm = voltdm_lookup(sr_dev_attr->sensor_voltdm_name);
> if (IS_ERR(sr_data->voltdm)) {
> pr_err("%s: Unable to get voltage domain pointer for VDD %s\n",
> diff --git a/drivers/power/avs/smartreflex.c b/drivers/power/avs/smartreflex.c
> index 92f6728..7c03c90 100644
> --- a/drivers/power/avs/smartreflex.c
> +++ b/drivers/power/avs/smartreflex.c
> @@ -128,17 +128,16 @@ static irqreturn_t sr_interrupt(int irq, void *data)
>
> static void sr_set_clk_length(struct omap_sr *sr)
> {
> + char fck_name[16]; /* "smartreflex.0" fits in 16 chars */
> struct clk *sys_ck;
> u32 sys_clk_speed;
>
> - if (cpu_is_omap34xx())
> - sys_ck = clk_get(NULL, "sys_ck");
> - else
> - sys_ck = clk_get(NULL, "sys_clkin_ck");
> + sprintf(fck_name, "smartreflex.%d", sr->srid);
hmm, isn't this the same as dev_name(&sr->pdev.dev) ?
Combined with your earlier patch to align clock names, this should just
be:
sys_ck = clk_get(&sr->pdev.dev, "fck");
Also note that you've changed this from sys_clk to the SR functional
clock, which seems to be the same clock on 34xx and 44xx, but that change
should be clearly documented in the changelog.
Kevin
WARNING: multiple messages have this Message-ID (diff)
From: khilman@deeprootsystems.com (Kevin Hilman)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 2/2] ARM: OMAP: SmartReflex: pass device dependent data via platform data
Date: Tue, 02 Oct 2012 15:21:12 -0700 [thread overview]
Message-ID: <877gr87bxj.fsf@deeprootsystems.com> (raw)
In-Reply-To: <1348496201-6378-3-git-send-email-j-pihet@ti.com> (Jean Pihet's message of "Mon, 24 Sep 2012 16:16:41 +0200")
Hi Jean,
Jean Pihet <jean.pihet@newoldbits.com> writes:
> Remove the device dependent settings (cpu_is_xxx(), IP fck etc.)
> from the driver code and pass them instead via the platform
> data.
> This allows a clean separation of the driver code and the platform
> code, as required by the move of the platform header files to
> include/linux/platform_data.
>
> Signed-off-by: Jean Pihet <j-pihet@ti.com>
Could you make pdata change and the clock change should be two different
patches? Also, your previous patch to align SR clock names should be
combined with the changes made here.
Some comments on the clock change below...
> ---
> arch/arm/mach-omap2/sr_device.c | 13 ++++++++++++
> drivers/power/avs/smartreflex.c | 40 ++++++++++--------------------------
> include/linux/power/smartreflex.h | 14 +++++++++++-
> 3 files changed, 36 insertions(+), 31 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/sr_device.c b/arch/arm/mach-omap2/sr_device.c
> index d033a65..2885a77 100644
> --- a/arch/arm/mach-omap2/sr_device.c
> +++ b/arch/arm/mach-omap2/sr_device.c
> @@ -122,6 +122,19 @@ static int __init sr_dev_init(struct omap_hwmod *oh, void *user)
> sr_data->senn_mod = 0x1;
> sr_data->senp_mod = 0x1;
>
> + if (cpu_is_omap34xx() || cpu_is_omap44xx()) {
> + sr_data->err_weight = OMAP3430_SR_ERRWEIGHT;
> + sr_data->err_maxlimit = OMAP3430_SR_ERRMAXLIMIT;
> + sr_data->accum_data = OMAP3430_SR_ACCUMDATA;
> + if (!(strcmp(sr_data->name, "smartreflex_mpu"))) {
> + sr_data->senn_avgweight = OMAP3430_SR1_SENNAVGWEIGHT;
> + sr_data->senp_avgweight = OMAP3430_SR1_SENPAVGWEIGHT;
> + } else {
> + sr_data->senn_avgweight = OMAP3430_SR2_SENNAVGWEIGHT;
> + sr_data->senp_avgweight = OMAP3430_SR2_SENPAVGWEIGHT;
> + }
> + }
> +
> sr_data->voltdm = voltdm_lookup(sr_dev_attr->sensor_voltdm_name);
> if (IS_ERR(sr_data->voltdm)) {
> pr_err("%s: Unable to get voltage domain pointer for VDD %s\n",
> diff --git a/drivers/power/avs/smartreflex.c b/drivers/power/avs/smartreflex.c
> index 92f6728..7c03c90 100644
> --- a/drivers/power/avs/smartreflex.c
> +++ b/drivers/power/avs/smartreflex.c
> @@ -128,17 +128,16 @@ static irqreturn_t sr_interrupt(int irq, void *data)
>
> static void sr_set_clk_length(struct omap_sr *sr)
> {
> + char fck_name[16]; /* "smartreflex.0" fits in 16 chars */
> struct clk *sys_ck;
> u32 sys_clk_speed;
>
> - if (cpu_is_omap34xx())
> - sys_ck = clk_get(NULL, "sys_ck");
> - else
> - sys_ck = clk_get(NULL, "sys_clkin_ck");
> + sprintf(fck_name, "smartreflex.%d", sr->srid);
hmm, isn't this the same as dev_name(&sr->pdev.dev) ?
Combined with your earlier patch to align clock names, this should just
be:
sys_ck = clk_get(&sr->pdev.dev, "fck");
Also note that you've changed this from sys_clk to the SR functional
clock, which seems to be the same clock on 34xx and 44xx, but that change
should be clearly documented in the changelog.
Kevin
next prev parent reply other threads:[~2012-10-02 22:21 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-20 14:47 [PATCH 0/2] ARM: OMAP: SmartReflex: pass device dependent data via platform data Jean Pihet
2012-09-20 14:47 ` Jean Pihet
2012-09-20 14:47 ` [PATCH 1/2] ARM: OMAP: SmartReflex: fix error path in init function Jean Pihet
2012-09-20 14:47 ` Jean Pihet
2012-09-20 14:47 ` [PATCH 2/2] ARM: OMAP: SmartReflex: pass device dependent data via platform data Jean Pihet
2012-09-20 14:47 ` Jean Pihet
2012-09-20 22:15 ` Tony Lindgren
2012-09-20 22:15 ` Tony Lindgren
2012-09-21 6:30 ` Jean Pihet
2012-09-21 6:30 ` Jean Pihet
2012-09-21 19:07 ` Tony Lindgren
2012-09-21 19:07 ` Tony Lindgren
2012-09-24 14:10 ` Jean Pihet
2012-09-24 14:10 ` Jean Pihet
2012-09-24 14:16 ` [PATCH 0/2] " Jean Pihet
2012-09-24 14:16 ` Jean Pihet
2012-09-24 14:16 ` [PATCH 1/2] ARM: OMAP: SmartReflex: fix error path in init function Jean Pihet
2012-09-24 14:16 ` Jean Pihet
2012-10-02 21:59 ` Kevin Hilman
2012-10-02 21:59 ` Kevin Hilman
2012-09-24 14:16 ` [PATCH 2/2] ARM: OMAP: SmartReflex: pass device dependent data via platform data Jean Pihet
2012-09-24 14:16 ` Jean Pihet
2012-10-02 22:21 ` Kevin Hilman [this message]
2012-10-02 22:21 ` Kevin Hilman
2012-10-03 13:05 ` Jean Pihet
2012-10-03 13:05 ` Jean Pihet
2012-10-03 13:32 ` jean.pihet
2012-10-03 13:32 ` jean.pihet at newoldbits.com
2012-10-03 14:29 ` Kevin Hilman
2012-10-03 14:29 ` Kevin Hilman
2012-10-03 15:51 ` Jean Pihet
2012-10-03 15:51 ` Jean Pihet
-- strict thread matches above, loose matches on Subject: below --
2012-10-03 15:47 [PATCH 0/2] " jean.pihet
2012-10-03 15:47 ` [PATCH 2/2] " jean.pihet
2012-10-03 15:47 ` jean.pihet at newoldbits.com
2012-10-04 16:47 [PATCH 0/2] " jean.pihet
2012-10-04 16:47 ` [PATCH 2/2] " jean.pihet
2012-10-04 16:47 ` jean.pihet at newoldbits.com
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=877gr87bxj.fsf@deeprootsystems.com \
--to=khilman@deeprootsystems.com \
--cc=cbou@mail.ru \
--cc=j-keerthy@ti.com \
--cc=j-pihet@ti.com \
--cc=jean.pihet@newoldbits.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=tony@atomide.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.