summaryrefslogtreecommitdiffstats
path: root/sys/amd64/isa
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2008-03-26 15:03:24 +0000
committerphk <phk@FreeBSD.org>2008-03-26 15:03:24 +0000
commit632e5d39f769e15274575347233e9d7aa364c0d6 (patch)
tree1da2fb656ceba413a6d80ca5348362fc5404d1e1 /sys/amd64/isa
parent44bfb30efdba0d9e7610adc1f78c743a11e6e49d (diff)
downloadFreeBSD-src-632e5d39f769e15274575347233e9d7aa364c0d6.zip
FreeBSD-src-632e5d39f769e15274575347233e9d7aa364c0d6.tar.gz
Rename timer0_max_count to i8254_max_count.
Rename timer0_real_max_count to i8254_real_max_count and make it static. Rename timer_freq to i8254_freq and make it a loader tunable.
Diffstat (limited to 'sys/amd64/isa')
-rw-r--r--sys/amd64/isa/clock.c93
1 files changed, 47 insertions, 46 deletions
diff --git a/sys/amd64/isa/clock.c b/sys/amd64/isa/clock.c
index 64d2208..31ec862 100644
--- a/sys/amd64/isa/clock.c
+++ b/sys/amd64/isa/clock.c
@@ -94,18 +94,19 @@ __FBSDID("$FreeBSD$");
#define LEAPYEAR(y) (((u_int)(y) % 4 == 0) ? 1 : 0)
#define DAYSPERYEAR (31+28+31+30+31+30+31+31+30+31+30+31)
-#define TIMER_DIV(x) ((timer_freq + (x) / 2) / (x))
+#define TIMER_DIV(x) ((i8254_freq + (x) / 2) / (x))
int clkintr_pending;
-static int pscnt = 1;
-static int psdiv = 1;
+static int pscnt = 1;
+static int psdiv = 1;
int statclock_disable;
#ifndef TIMER_FREQ
#define TIMER_FREQ 1193182
#endif
-u_int timer_freq = TIMER_FREQ;
-int timer0_max_count;
-int timer0_real_max_count;
+u_int i8254_freq = TIMER_FREQ;
+TUNABLE_INT("hw.i8254.freq", &i8254_freq);
+int i8254_max_count;
+static int i8254_real_max_count;
#define RTC_LOCK mtx_lock_spin(&clock_lock)
#define RTC_UNLOCK mtx_unlock_spin(&clock_lock)
@@ -132,7 +133,7 @@ static u_char timer2_state;
static unsigned i8254_get_timecount(struct timecounter *tc);
static unsigned i8254_simple_get_timecount(struct timecounter *tc);
-static void set_timer_freq(u_int freq, int intr_freq);
+static void set_i8254_freq(u_int freq, int intr_freq);
static struct timecounter i8254_timecounter = {
i8254_get_timecount, /* get_timecount */
@@ -152,7 +153,7 @@ clkintr(struct trapframe *frame)
if (i8254_ticked)
i8254_ticked = 0;
else {
- i8254_offset += timer0_max_count;
+ i8254_offset += i8254_max_count;
i8254_lastcount = 0;
}
clkintr_pending = 0;
@@ -265,7 +266,7 @@ getit(void)
/*
* Wait "n" microseconds.
- * Relies on timer 1 counting down from (timer_freq / hz)
+ * Relies on timer 1 counting down from (i8254_freq / hz)
* Note: timer had better have been programmed before this is first used!
*/
void
@@ -322,7 +323,7 @@ DELAY(int n)
prev_tick = getit();
n -= 0; /* XXX actually guess no initial overhead */
/*
- * Calculate (n * (timer_freq / 1e6)) without using floating point
+ * Calculate (n * (i8254_freq / 1e6)) without using floating point
* and without any avoidable overflows.
*/
if (n <= 0)
@@ -342,7 +343,7 @@ DELAY(int n)
* division, since even the slow way will complete long
* before the delay is up (unless we're interrupted).
*/
- ticks_left = ((u_int)n * (long long)timer_freq + 999999)
+ ticks_left = ((u_int)n * (long long)i8254_freq + 999999)
/ 1000000;
while (ticks_left > 0) {
@@ -351,7 +352,7 @@ DELAY(int n)
inb(0x84);
tick = prev_tick - 1;
if (tick <= 0)
- tick = timer0_max_count;
+ tick = i8254_max_count;
} else
#endif
tick = getit();
@@ -361,11 +362,11 @@ DELAY(int n)
delta = prev_tick - tick;
prev_tick = tick;
if (delta < 0) {
- delta += timer0_max_count;
+ delta += i8254_max_count;
/*
- * Guard against timer0_max_count being wrong.
+ * Guard against i8254_max_count being wrong.
* This shouldn't happen in normal operation,
- * but it may happen if set_timer_freq() is
+ * but it may happen if set_i8254_freq() is
* traced.
*/
if (delta < 0)
@@ -492,7 +493,7 @@ calibrate_clocks(void)
/* Start keeping track of the i8254 counter. */
prev_count = getit();
- if (prev_count == 0 || prev_count > timer0_max_count)
+ if (prev_count == 0 || prev_count > i8254_max_count)
goto fail;
tot_count = 0;
@@ -511,10 +512,10 @@ calibrate_clocks(void)
if (!(rtcin(RTC_STATUSA) & RTCSA_TUP))
sec = rtcin(RTC_SEC);
count = getit();
- if (count == 0 || count > timer0_max_count)
+ if (count == 0 || count > i8254_max_count)
goto fail;
if (count > prev_count)
- tot_count += prev_count - (count - timer0_max_count);
+ tot_count += prev_count - (count - i8254_max_count);
else
tot_count += prev_count - count;
prev_count = count;
@@ -532,31 +533,31 @@ calibrate_clocks(void)
fail:
if (bootverbose)
printf("failed, using default i8254 clock of %u Hz\n",
- timer_freq);
- return (timer_freq);
+ i8254_freq);
+ return (i8254_freq);
}
static void
-set_timer_freq(u_int freq, int intr_freq)
+set_i8254_freq(u_int freq, int intr_freq)
{
- int new_timer0_real_max_count;
+ int new_i8254_real_max_count;
i8254_timecounter.tc_frequency = freq;
mtx_lock_spin(&clock_lock);
- timer_freq = freq;
+ i8254_freq = freq;
if (using_lapic_timer)
- new_timer0_real_max_count = 0x10000;
+ new_i8254_real_max_count = 0x10000;
else
- new_timer0_real_max_count = TIMER_DIV(intr_freq);
- if (new_timer0_real_max_count != timer0_real_max_count) {
- timer0_real_max_count = new_timer0_real_max_count;
- if (timer0_real_max_count == 0x10000)
- timer0_max_count = 0xffff;
+ new_i8254_real_max_count = TIMER_DIV(intr_freq);
+ if (new_i8254_real_max_count != i8254_real_max_count) {
+ i8254_real_max_count = new_i8254_real_max_count;
+ if (i8254_real_max_count == 0x10000)
+ i8254_max_count = 0xffff;
else
- timer0_max_count = timer0_real_max_count;
+ i8254_max_count = i8254_real_max_count;
outb(TIMER_MODE, TIMER_SEL0 | TIMER_RATEGEN | TIMER_16BIT);
- outb(TIMER_CNTR0, timer0_real_max_count & 0xff);
- outb(TIMER_CNTR0, timer0_real_max_count >> 8);
+ outb(TIMER_CNTR0, i8254_real_max_count & 0xff);
+ outb(TIMER_CNTR0, i8254_real_max_count >> 8);
}
mtx_unlock_spin(&clock_lock);
}
@@ -567,7 +568,7 @@ i8254_init(void)
{
mtx_init(&clock_lock, "clk", NULL, MTX_SPIN | MTX_NOPROFILE);
- set_timer_freq(timer_freq, hz);
+ set_i8254_freq(i8254_freq, hz);
}
void
@@ -593,23 +594,23 @@ startrtclock()
* Otherwise use the default, and don't use the calibrated i586
* frequency.
*/
- delta = freq > timer_freq ? freq - timer_freq : timer_freq - freq;
- if (delta < timer_freq / 100) {
+ delta = freq > i8254_freq ? freq - i8254_freq : i8254_freq - freq;
+ if (delta < i8254_freq / 100) {
#ifndef CLK_USE_I8254_CALIBRATION
if (bootverbose)
printf(
"CLK_USE_I8254_CALIBRATION not specified - using default frequency\n");
- freq = timer_freq;
+ freq = i8254_freq;
#endif
- timer_freq = freq;
+ i8254_freq = freq;
} else {
if (bootverbose)
printf(
"%d Hz differs from default of %d Hz by more than 1%%\n",
- freq, timer_freq);
+ freq, i8254_freq);
}
- set_timer_freq(timer_freq, hz);
+ set_i8254_freq(i8254_freq, hz);
tc_init(&i8254_timecounter);
init_TSC();
@@ -775,7 +776,7 @@ cpu_initclocks()
i8254_timecounter.tc_get_timecount =
i8254_simple_get_timecount;
i8254_timecounter.tc_counter_mask = 0xffff;
- set_timer_freq(timer_freq, hz);
+ set_i8254_freq(i8254_freq, hz);
}
/* Initialize RTC. */
@@ -841,10 +842,10 @@ sysctl_machdep_i8254_freq(SYSCTL_HANDLER_ARGS)
* Use `i8254' instead of `timer' in external names because `timer'
* is is too generic. Should use it everywhere.
*/
- freq = timer_freq;
+ freq = i8254_freq;
error = sysctl_handle_int(oidp, &freq, 0, req);
if (error == 0 && req->newptr != NULL)
- set_timer_freq(freq, hz);
+ set_i8254_freq(freq, hz);
return (error);
}
@@ -855,7 +856,7 @@ static unsigned
i8254_simple_get_timecount(struct timecounter *tc)
{
- return (timer0_max_count - getit());
+ return (i8254_max_count - getit());
}
static unsigned
@@ -873,13 +874,13 @@ i8254_get_timecount(struct timecounter *tc)
low = inb(TIMER_CNTR0);
high = inb(TIMER_CNTR0);
- count = timer0_max_count - ((high << 8) | low);
+ count = i8254_max_count - ((high << 8) | low);
if (count < i8254_lastcount ||
(!i8254_ticked && (clkintr_pending ||
- ((count < 20 || (!(rflags & PSL_I) && count < timer0_max_count / 2u)) &&
+ ((count < 20 || (!(rflags & PSL_I) && count < i8254_max_count / 2u)) &&
i8254_pending != NULL && i8254_pending(i8254_intsrc))))) {
i8254_ticked = 1;
- i8254_offset += timer0_max_count;
+ i8254_offset += i8254_max_count;
}
i8254_lastcount = count;
count += i8254_offset;
OpenPOWER on IntegriCloud