From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dominik Brodowski Subject: Re: ACPI PM-Timer on K6-3 SiS5591: Houston... Date: Sun, 10 Aug 2008 22:02:24 +0200 Message-ID: <20080810200224.GA6551@comet.dominikbrodowski.net> References: <20080810101730.GA10024@rhlx01.hs-esslingen.de> <20080810162920.GA9860@comet.dominikbrodowski.net> <20080810190759.GA1879@rhlx01.hs-esslingen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from isilmar.linta.de ([213.133.102.198]:41722 "EHLO linta.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753391AbYHJUCf (ORCPT ); Sun, 10 Aug 2008 16:02:35 -0400 Content-Disposition: inline In-Reply-To: <20080810190759.GA1879@rhlx01.hs-esslingen.de> Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: Andreas Mohr Cc: LKML , john stultz , OGAWA Hirofumi , Alan Cox , linux-acpi@vger.kernel.org, Arjan van de Ven Hi Andreas, On Sun, Aug 10, 2008 at 09:08:02PM +0200, Andreas Mohr wrote: > And it's in fact not this triple-read which has any weakness here but rather > the init check. right. > IMHO the current init check is too weak, it will catch the very simplest > types of problems only, and that's not a good thing. what about this? Best, Dominik acpi_pm.c: check for monotonicity Expand the check for monotonicity by doing ten tests instead of one. Applies on top of "acpi_pm.c: use proper read function also in errata mode." Signed-off-by: Dominik Brodowski diff --git a/drivers/clocksource/acpi_pm.c b/drivers/clocksource/acpi_pm.c index 2c00edd..f05c4fb 100644 --- a/drivers/clocksource/acpi_pm.c +++ b/drivers/clocksource/acpi_pm.c @@ -178,7 +178,7 @@ static int verify_pmtmr_rate(void) static int __init init_acpi_pm_clocksource(void) { cycle_t value1, value2; - unsigned int i; + unsigned int i, j, good = 0; if (!pmtmr_ioport) return -ENODEV; @@ -187,24 +187,32 @@ static int __init init_acpi_pm_clocksource(void) clocksource_acpi_pm.shift); /* "verify" this timing source: */ - value1 = clocksource_acpi_pm.read(); - for (i = 0; i < 10000; i++) { - value2 = clocksource_acpi_pm.read(); - if (value2 == value1) - continue; - if (value2 > value1) - goto pm_good; - if ((value2 < value1) && ((value2) < 0xFFF)) - goto pm_good; - printk(KERN_INFO "PM-Timer had inconsistent results:" - " 0x%#llx, 0x%#llx - aborting.\n", value1, value2); - return -EINVAL; + for (j = 0; j < 10; j++) { + value1 = clocksource_acpi_pm.read(); + for (i = 0; i < 10000; i++) { + value2 = clocksource_acpi_pm.read(); + if (value2 == value1) + continue; + if (value2 > value1) + good++; + break; + if ((value2 < value1) && ((value2) < 0xFFF)) + good++; + break; + printk(KERN_INFO "PM-Timer had inconsistent results:" + " 0x%#llx, 0x%#llx - aborting.\n", + value1, value2); + return -EINVAL; + } + udelay(300 * i); + } + + if (good != 10) { + printk(KERN_INFO "PM-Timer had no reasonable result:" + " 0x%#llx - aborting.\n", value1); + return -ENODEV; } - printk(KERN_INFO "PM-Timer had no reasonable result:" - " 0x%#llx - aborting.\n", value1); - return -ENODEV; -pm_good: if (verify_pmtmr_rate() != 0) return -ENODEV;