From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757527AbZELPtP (ORCPT ); Tue, 12 May 2009 11:49:15 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758418AbZELPrn (ORCPT ); Tue, 12 May 2009 11:47:43 -0400 Received: from hera.kernel.org ([140.211.167.34]:51119 "EHLO hera.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758391AbZELPrm (ORCPT ); Tue, 12 May 2009 11:47:42 -0400 Subject: [PATCH 7/10 -tip] x86: early_init_amd() user of Advanced Power Management features From: Jaswinder Singh Rajput To: Ingo Molnar Cc: "H. Peter Anvin" , Robert Richter , Dave Jones , LKML , x86 maintainers In-Reply-To: <1242142908.2547.20.camel@ht.satnam> References: <1242142530.2547.11.camel@ht.satnam> <1242142623.2547.13.camel@ht.satnam> <1242142692.2547.15.camel@ht.satnam> <1242142753.2547.16.camel@ht.satnam> <1242142807.2547.18.camel@ht.satnam> <1242142849.2547.19.camel@ht.satnam> <1242142908.2547.20.camel@ht.satnam> Content-Type: text/plain Date: Tue, 12 May 2009 21:12:21 +0530 Message-Id: <1242142941.2547.21.camel@ht.satnam> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 (2.24.5-1.fc10) Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org use X86_FEATURE_CONSTANT_TSC to determine TSC Invariant Signed-off-by: Jaswinder Singh Rajput --- arch/x86/kernel/cpu/amd.c | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c index 7e4a459..1d36ac4 100644 --- a/arch/x86/kernel/cpu/amd.c +++ b/arch/x86/kernel/cpu/amd.c @@ -334,13 +334,12 @@ static void __cpuinit early_init_amd(struct cpuinfo_x86 *c) early_init_amd_mc(c); /* - * c->x86_power is 8000_0007 edx. Bit 8 is TSC runs at constant rate - * with P/T states and does not stop in deep C-states + * Advanced power management is 8000_0007 edx. + * Bit 8 is TSC runs at constant rate with P/T states + * and does not stop in deep C-states */ - if (c->x86_power & (1 << 8)) { - set_cpu_cap(c, X86_FEATURE_CONSTANT_TSC); + if (cpu_has(c, X86_FEATURE_CONSTANT_TSC)) set_cpu_cap(c, X86_FEATURE_NONSTOP_TSC); - } #ifdef CONFIG_X86_64 set_cpu_cap(c, X86_FEATURE_SYSCALL32); -- 1.6.0.6