Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S968459AbXFHHeM (ORCPT ); Fri, 8 Jun 2007 03:34:12 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S938345AbXFHHXZ (ORCPT ); Fri, 8 Jun 2007 03:23:25 -0400 Received: from 216-99-217-87.dsl.aracnet.com ([216.99.217.87]:58311 "EHLO sous-sol.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S938328AbXFHHXX (ORCPT ); Fri, 8 Jun 2007 03:23:23 -0400 Message-Id: <20070608072145.369075000@sous-sol.org> References: <20070608072127.352723000@sous-sol.org> User-Agent: quilt/0.46-1 Date: Fri, 08 Jun 2007 00:21:28 -0700 From: Chris Wright To: linux-kernel@vger.kernel.org, stable@kernel.org, Andi Kleen Cc: Justin Forbes , Zwane Mwaikambo , "Theodore Ts'o" , Randy Dunlap , Dave Jones , Chuck Wolber , Chris Wedgwood , Michael Krufky , Chuck Ebbert , Domenico Andreoli , torvalds@linux-foundation.org, akpm@linux-foundation.org, alan@lxorguk.ukuu.org.uk, Thomas Gleixner , guilherme@centralinf.com.br, johnstul@us.ibm.com, Greg Kroah-Hartman Subject: [patch 01/54] i386: HPET, check if the counter works Content-Disposition: inline; filename=i386-hpet-check-if-the-counter-works.patch Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1743 Lines: 64 -stable review patch. If anyone has any objections, please let us know. --------------------- From: Thomas Gleixner Some systems have a HPET which is not incrementing, which leads to a complete hang. Detect it during HPET setup. Signed-off-by: Thomas Gleixner Signed-off-by: Chris Wright Signed-off-by: Greg Kroah-Hartman --- [chrisw: again, this time with feeling ;-) expected upstream soon] arch/i386/kernel/hpet.c | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) --- linux-2.6.21.4.orig/arch/i386/kernel/hpet.c +++ linux-2.6.21.4/arch/i386/kernel/hpet.c @@ -226,7 +226,8 @@ int __init hpet_enable(void) { unsigned long id; uint64_t hpet_freq; - u64 tmp; + u64 tmp, start, now; + cycle_t t1; if (!is_hpet_capable()) return 0; @@ -273,6 +274,27 @@ int __init hpet_enable(void) /* Start the counter */ hpet_start_counter(); + /* Verify whether hpet counter works */ + t1 = read_hpet(); + rdtscll(start); + + /* + * We don't know the TSC frequency yet, but waiting for + * 200000 TSC cycles is safe: + * 4 GHz == 50us + * 1 GHz == 200us + */ + do { + rep_nop(); + rdtscll(now); + } while ((now - start) < 200000UL); + + if (t1 == read_hpet()) { + printk(KERN_WARNING + "HPET counter not counting. HPET disabled\n"); + goto out_nohpet; + } + /* Initialize and register HPET clocksource * * hpet period is in femto seconds per cycle -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/