From: linux@arm.linux.org.uk (Russell King - ARM Linux)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: TWD: fix the clock calculation for TWD
Date: Thu, 20 Jan 2011 14:08:11 +0000 [thread overview]
Message-ID: <20110120140811.GE6335@n2100.arm.linux.org.uk> (raw)
In-Reply-To: <1295505237-5735-1-git-send-email-chao.xie@marvell.com>
On Thu, Jan 20, 2011 at 02:33:57PM +0800, Chao Xie wrote:
> The original code will do count * (HZ /5). It will make the twd
> timer rate decreased if HZ can not be excatly divided. For
> example HZ=128.
>
> Signed-off-by: Chao Xie <chao.xie@marvell.com>
> ---
> arch/arm/kernel/smp_twd.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/kernel/smp_twd.c b/arch/arm/kernel/smp_twd.c
> index 35882fb..ca6405b 100644
> --- a/arch/arm/kernel/smp_twd.c
> +++ b/arch/arm/kernel/smp_twd.c
> @@ -111,7 +111,8 @@ static void __cpuinit twd_calibrate_rate(void)
>
> count = __raw_readl(twd_base + TWD_TIMER_COUNTER);
>
> - twd_timer_rate = (0xFFFFFFFFU - count) * (HZ / 5);
> + twd_timer_rate = ((unsigned long)(0xFFFFFFFFU - count))
> + * HZ / 5;
>
> printk("%lu.%02luMHz.\n", twd_timer_rate / 1000000,
> (twd_timer_rate / 100000) % 100);
I don't think this patch has any effect what so ever, so I just tried:
#define HZ 128
unsigned long twd_timer_rate;
void calc1(unsigned long count)
{
twd_timer_rate = (0xffffffffU - count) * (HZ / 5);
}
void calc2(unsigned long count)
{
twd_timer_rate = ((unsigned long)(0xffffffffU - count)) * (HZ / 5);
}
calc1:
@ args = 0, pretend = 0, frame = 0
@ frame_needed = 0, uses_anonymous_args = 0
@ link register save eliminated.
mvn r0, r0
add r0, r0, r0, asl #2
ldr r3, .L2
add r0, r0, r0, asl #2
@ lr needed for prologue
str r0, [r3, #0]
mov pc, lr
calc2:
@ args = 0, pretend = 0, frame = 0
@ frame_needed = 0, uses_anonymous_args = 0
@ link register save eliminated.
mvn r0, r0
add r0, r0, r0, asl #2
ldr r3, .L5
add r0, r0, r0, asl #2
@ lr needed for prologue
str r0, [r3, #0]
mov pc, lr
The code looks identical to me, so the patch appears to have no effect.
next prev parent reply other threads:[~2011-01-20 14:08 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-20 6:33 [PATCH] ARM: TWD: fix the clock calculation for TWD Chao Xie
2011-01-20 14:08 ` Russell King - ARM Linux [this message]
2011-01-20 14:44 ` Jamie Iles
2011-01-20 16:38 ` Russell King - ARM Linux
2011-01-20 18:10 ` Jamie Iles
2011-01-24 1:35 ` Chao Xie
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=20110120140811.GE6335@n2100.arm.linux.org.uk \
--to=linux@arm.linux.org.uk \
--cc=linux-arm-kernel@lists.infradead.org \
/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;
as well as URLs for NNTP newsgroup(s).