From: Colin D Bennett <colin@gibibit.com>
To: grub-devel@gnu.org
Subject: Re: Higher resolution timers
Date: Tue, 20 May 2008 10:46:46 -0700 [thread overview]
Message-ID: <20080520104646.18dfaf47@gibibit.com> (raw)
In-Reply-To: <20080512093354.2770e1cf@gibibit.com>
[-- Attachment #1: Type: text/plain, Size: 1417 bytes --]
On Mon, 12 May 2008 09:33:54 -0700
Colin D Bennett <colin@gibibit.com> wrote:
> I think that using the TSC (w/ RDTSC instruction) and calibrating it
> with a quick 2-3 RTC tick loop at startup might be the easiest option.
Just wondered if something like this would be a practical way to go:
/*******************************************************************/
/* How many ticks to use for calibration loop. (>= 1) */
#define CALIBRATION_TICKS 2
/* Output: Number of TSC cycles per second. */
grub_uint64_t tsc_cycles_per_second;
void grub_timer_tsc_calibrate(void)
{
/* Calibrate to real time (relative, not absolute). */
grub_uint64_t start_tsc;
grub_uint64_t end_tsc;
grub_uint32_t initial_tick;
grub_uint32_t start_tick;
grub_uint32_t end_tick;
/* Wait for the start of the next tick;
we'll base out timing off this edge. */
initial_tick = grub_get_rtc();
do
{
start_tick = grub_get_rtc();
}
while (start_tick == initial_tick);
start_tsc = rdtsc();
/* Wait for the start of the next tick. This will
be the end of the 1-tick period. */
do
{
end_tick = grub_get_rtc();
}
while (end_tick - start_tick < CALIBRATION_TICKS);
end_tsc = rdtsc();
tsc_cycles_per_second =
(end_tsc - start_tsc) / (end_tick - start_tick)
* GRUB_TICKS_PER_SEC;
}
/*******************************************************************/
Colin
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 197 bytes --]
next prev parent reply other threads:[~2008-05-20 17:46 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-12 16:33 Higher resolution timers Colin D Bennett
2008-05-14 16:26 ` Vesa Jääskeläinen
2008-05-18 16:27 ` Vesa Jääskeläinen
2008-05-20 17:20 ` Colin D Bennett
2008-05-20 17:46 ` Colin D Bennett [this message]
2008-05-23 11:55 ` Marco Gerards
2008-05-23 14:28 ` Colin D Bennett
2008-05-24 9:23 ` Marco Gerards
2008-05-28 13:43 ` Robert Millan
2008-05-23 11:48 ` Marco Gerards
2008-05-24 15:25 ` Vesa Jääskeläinen
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=20080520104646.18dfaf47@gibibit.com \
--to=colin@gibibit.com \
--cc=grub-devel@gnu.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.