From: "Pallipadi, Venkatesh" <venkatesh.pallipadi@intel.com>
To: "Li, Shaohua" <shaohua.li@intel.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"mingo@elte.hu" <mingo@elte.hu>
Subject: Re: [PATCH] disable per-cpu hpet timer if ARAT is supported
Date: Fri, 14 Aug 2009 14:41:03 -0700 [thread overview]
Message-ID: <1250286063.11545.43904.camel@localhost.localdomain> (raw)
In-Reply-To: <20090812031612.GA10062@sli10-desk.sh.intel.com>
Acked-by: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
On Tue, 2009-08-11 at 20:16 -0700, Li, Shaohua wrote:
> If CPU support always running local APIC timer, per-cpu hpet timer could be
> disabled, which is useless and wasteful in such case. Let's leave the timers
> to others.
> Impact: should have no impact except reserving less timers.
>
> Signed-off-by: Shaohua Li <shaohua.li@intel.com>
> diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c
> index dedc2bd..5969e10 100644
> --- a/arch/x86/kernel/hpet.c
> +++ b/arch/x86/kernel/hpet.c
> @@ -584,6 +584,8 @@ static void hpet_msi_capability_lookup(unsigned int start_timer)
> unsigned int num_timers_used = 0;
> int i;
>
> + if (boot_cpu_has(X86_FEATURE_ARAT))
> + return;
> id = hpet_readl(HPET_ID);
>
> num_timers = ((id & HPET_ID_NUMBER) >> HPET_ID_NUMBER_SHIFT);
> @@ -872,10 +874,8 @@ int __init hpet_enable(void)
>
> if (id & HPET_ID_LEGSUP) {
> hpet_legacy_clockevent_register();
> - hpet_msi_capability_lookup(2);
> return 1;
> }
> - hpet_msi_capability_lookup(0);
> return 0;
>
> out_nohpet:
> @@ -908,9 +908,17 @@ static __init int hpet_late_init(void)
> if (!hpet_virt_address)
> return -ENODEV;
>
> + if (hpet_readl(HPET_ID) & HPET_ID_LEGSUP)
> + hpet_msi_capability_lookup(2);
> + else
> + hpet_msi_capability_lookup(0);
> +
> hpet_reserve_platform_timers(hpet_readl(HPET_ID));
> hpet_print_config();
>
> + if (boot_cpu_has(X86_FEATURE_ARAT))
> + return 0;
> +
> for_each_online_cpu(cpu) {
> hpet_cpuhp_notify(NULL, CPU_ONLINE, (void *)(long)cpu);
> }
prev parent reply other threads:[~2009-08-14 21:41 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-12 3:16 Shaohua Li
2009-08-12 20:52 ` [tip:timers/hpet] x86, hpet: Disable " tip-bot for Shaohua Li
2009-08-14 21:41 ` Pallipadi, Venkatesh [this message]
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=1250286063.11545.43904.camel@localhost.localdomain \
--to=venkatesh.pallipadi@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=shaohua.li@intel.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
all inboxes | Powered by JetHome®