From: john stultz <johnstul@us.ibm.com>
To: George Spelvin <linux@horizon.com>
Cc: ulrich.windl@rz.uni-regensburg.de, linux-kernel@vger.kernel.org,
tglx@linutronix.de, Clark Williams <williams@redhat.com>,
zippel@linux-m68k.org, Ingo Molnar <mingo@elte.hu>
Subject: [RFC][PATCH] tsc_khz= boot option to avoid TSC calibration variance
Date: Thu, 07 May 2009 17:30:47 -0700 [thread overview]
Message-ID: <1241742647.7518.108.camel@localhost.localdomain> (raw)
All,
Despite recent tweaking, TSC calibration variance is still biting users
who care about keeping close sync with NTP servers over reboots.
Here's a recent example:
http://lkml.indiana.edu/hypermail/linux/kernel/0905.0/02061.html
The problem is, each reboot, we have to calibrate the TSC, and any
error, regardless of how small, in the calibrated freq has to be
corrected for by NTP. Assuming the error is within 500ppm NTP can
correct this, but until it finds the proper correction value for the new
TSC freq, users may see time offsets from the NTP server.
In my experience, its fairly easy to see 100khz variance from reboot to
reboot with 2.6.30-rc.
While I think its worth trying to improve the calibration further, there
will likely be a trade-off between very accurate calibration and fast
boot times.
To mitigate this, I wanted to provide a tsc_khz= boot option. This would
allow users to set the tsc_khz value at boot-up, assuming they are
within 1Mhz of the calibrated value (to protect against bad values).
Once the tsc_khz value is set in grub, the box will always boot with the
same value, so the NTP drift value prior to reboot will still be correct
after rebooting.
Thanks to George Spelvin for the idea:
http://lkml.indiana.edu/hypermail/linux/kernel/0905.0/02807.html
Thoughts or feedback?
Signed-off-by: John Stultz <johnstul@us.ibm.com>
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index 90b3924..1f9ee19 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -2396,6 +2396,13 @@ and is between 256 and 4096 characters. It is defined in the file
Used to enable high-resolution timer mode on older
hardware, and in virtualized environment.
+ tsc_khz= [x86] Set the TSC freq value.
+ Format: <khz>
+ Used to avoid TSC calibration error.
+ The specified tsc_khz value must be accurate to the
+ calibrated tsc value by 1MHz. Otherwise the calibrated
+ value will be used.
+
turbografx.map[2|3]= [HW,JOY]
TurboGraFX parallel port interface
Format:
diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c
index d57de05..93fc4c0 100644
--- a/arch/x86/kernel/tsc.c
+++ b/arch/x86/kernel/tsc.c
@@ -825,6 +825,16 @@ static void __init init_tsc_clocksource(void)
clocksource_register(&clocksource_tsc);
}
+unsigned long tsc_khz_specified;
+static int __init tsc_khz_specified_setup(char *str)
+{
+ tsc_khz_specified = simple_strtoul(str, NULL, 0);
+ return 1;
+}
+
+__setup("tsc_khz=", tsc_khz_specified_setup);
+
+
void __init tsc_init(void)
{
u64 lpj;
@@ -834,6 +844,20 @@ void __init tsc_init(void)
return;
tsc_khz = calibrate_tsc();
+
+ /*
+ * If the calibrated TSC freq and user specified
+ * TSC freq are close enough, pick the what the
+ * user told us.
+ */
+ if (tsc_khz_specified && ((tsc_khz+(tsc_khz/2))/1000 ==
+ (tsc_khz_specified+(tsc_khz_specified/2))/1000)) {
+ printk(KERN_INFO "Using user defined TSC freq: %lu.%03lu MHz\n",
+ tsc_khz_specified/1000,
+ tsc_khz_specified%1000);
+ tsc_khz = tsc_khz_specified;
+ }
+
cpu_khz = tsc_khz;
if (!tsc_khz) {
next reply other threads:[~2009-05-08 0:44 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-08 0:30 john stultz [this message]
2009-05-08 12:15 ` [RFC][PATCH] tsc_khz= boot option to avoid TSC calibration variance Ingo Molnar
2009-05-08 15:12 ` George Spelvin
2009-05-08 19:06 ` [RFC][PATCH] tsc_khz= boot option to avoid TSC calibrationvariance john stultz
2009-05-08 12:19 ` [RFC][PATCH] tsc_khz= boot option to avoid TSC calibration variance George Spelvin
2009-05-08 15:27 ` George Spelvin
2009-05-08 19:02 ` john stultz
2009-05-11 6:54 ` George Spelvin
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=1241742647.7518.108.camel@localhost.localdomain \
--to=johnstul@us.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@horizon.com \
--cc=mingo@elte.hu \
--cc=tglx@linutronix.de \
--cc=ulrich.windl@rz.uni-regensburg.de \
--cc=williams@redhat.com \
--cc=zippel@linux-m68k.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