public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
From: "Cousson, Benoit" <b-cousson@ti.com>
To: "DebBarma, Tarun Kanti" <tarun.kanti@ti.com>
Cc: "linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>
Subject: Re: [PATCH] OMAP2+: hwmod: incorrect computation of autoidle_mask
Date: Mon, 3 Jan 2011 15:42:16 +0100	[thread overview]
Message-ID: <4D21E048.2040005@ti.com> (raw)
In-Reply-To: <1294091991-2078-1-git-send-email-tarun.kanti@ti.com>

Hi Tarun,

On 1/3/2011 10:59 PM, DebBarma, Tarun Kanti wrote:
> Autoidle is just a single bit setting across OMAP platforms.
> In _set_module_autoidle() I am seeing 0x3 where the mask is
> computed. I believe this should be 0x1.

Just a minor comment; it looks from this description that you are not 
100% sure it is a bug :-)
You need to refer to the various TRMs, stating that this is indeed a bug 
for all OMAPs!

Adding a "fix" in the subject seems more accurate to describe the patch.
OMAP2+: Fix incorrect computation of autoidle_mask

Since is it harmless for the moment, I think it will probably go for 2.6.39.

> Baseline:
> git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
>
> Tested Info:
> Boot tested on OMAP 2/3/4.
>
> Signed-off-by: Tarun Kanti DebBarma<tarun.kanti@ti.com>
> Acked-by: Rajendra Nayak<rnayak@ti.com>

Acked-by: Benoit Cousson <b-cousson@ti.com>


Thanks,
Benoit

> ---
>   arch/arm/mach-omap2/omap_hwmod.c |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
> index 5a30658..da49b56 100644
> --- a/arch/arm/mach-omap2/omap_hwmod.c
> +++ b/arch/arm/mach-omap2/omap_hwmod.c
> @@ -373,7 +373,7 @@ static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
>   	}
>
>   	autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
> -	autoidle_mask = (0x3<<  autoidle_shift);
> +	autoidle_mask = (0x1<<  autoidle_shift);
>
>   	*v&= ~autoidle_mask;
>   	*v |= autoidle<<  autoidle_shift;


  reply	other threads:[~2011-01-03 14:42 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-03 21:59 [PATCH] OMAP2+: hwmod: incorrect computation of autoidle_mask Tarun Kanti DebBarma
2011-01-03 14:42 ` Cousson, Benoit [this message]
2011-01-04  4:52   ` DebBarma, Tarun Kanti

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=4D21E048.2040005@ti.com \
    --to=b-cousson@ti.com \
    --cc=linux-omap@vger.kernel.org \
    --cc=tarun.kanti@ti.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox