summaryrefslogtreecommitdiffstats
path: root/sys/isa
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2007-01-23 08:01:20 +0000
committerbde <bde@FreeBSD.org>2007-01-23 08:01:20 +0000
commitb12ed0640c857dc93ba125eb06170e17027fd27a (patch)
treef0e1eb361836da7c3492fa9da1f26ee29d68baa6 /sys/isa
parentae205e357394497283a47a0e9c42c058fb72bd32 (diff)
downloadFreeBSD-src-b12ed0640c857dc93ba125eb06170e17027fd27a.zip
FreeBSD-src-b12ed0640c857dc93ba125eb06170e17027fd27a.tar.gz
Cleaned up declaration and initialization of clock_lock. It is only
used by clock code, so don't export it to the world for machdep.c to initialize. There is a minor problem initializing it before it is used, since although clock initialization is split up so that parts of it can be done early, the first part was never done early enough to actually work. Split it up a bit more and do the first part as late as possible to document the necessary order. The functions that implement the split are still bogusly exported. Cleaned up initialization of the i8254 clock hardware using the new split. Actually initialize it early enough, and don't work around it not being initialized in DELAY() when DELAY() is called early for initialization of some console drivers. This unfortunately moves a little more code before the early debugger breakpoint so that it is harder to debug. The ordering of console and related initialization is delicate because we want to do as little as possible before the breakpoint, but must initialize a console.
Diffstat (limited to 'sys/isa')
-rw-r--r--sys/isa/atrtc.c23
1 files changed, 10 insertions, 13 deletions
diff --git a/sys/isa/atrtc.c b/sys/isa/atrtc.c
index bc0bf61..29ddd39 100644
--- a/sys/isa/atrtc.c
+++ b/sys/isa/atrtc.c
@@ -106,11 +106,11 @@ int statclock_disable;
u_int timer_freq = TIMER_FREQ;
int timer0_max_count;
int timer0_real_max_count;
-struct mtx clock_lock;
#define RTC_LOCK mtx_lock_spin(&clock_lock)
#define RTC_UNLOCK mtx_unlock_spin(&clock_lock)
static int beeping = 0;
+static struct mtx clock_lock;
static struct intsrc *i8254_intsrc;
static u_int32_t i8254_lastcount;
static u_int32_t i8254_offset;
@@ -302,13 +302,6 @@ DELAY(int n)
printf("DELAY(%d)...", n);
#endif
/*
- * Guard against the timer being uninitialized if we are called
- * early for console i/o.
- */
- if (timer0_max_count == 0)
- set_timer_freq(timer_freq, hz);
-
- /*
* Read the counter first, so that the rest of the setup overhead is
* counted. Guess the initial overhead is 20 usec (on most systems it
* takes about 1.5 usec for each of the i/o's in getit(). The loop
@@ -605,10 +598,15 @@ timer_restore(void)
rtc_restore(); /* reenable RTC interrupts */
}
-/*
- * Initialize 8254 timer 0 early so that it can be used in DELAY().
- * XXX initialization of other timers is unintentionally left blank.
- */
+/* This is separate from startrtclock() so that it can be called early. */
+void
+i8254_init(void)
+{
+
+ mtx_init(&clock_lock, "clk", NULL, MTX_SPIN | MTX_NOPROFILE);
+ set_timer_freq(timer_freq, hz);
+}
+
void
startrtclock()
{
@@ -617,7 +615,6 @@ startrtclock()
writertc(RTC_STATUSA, rtc_statusa);
writertc(RTC_STATUSB, RTCSB_24HR);
- set_timer_freq(timer_freq, hz);
freq = calibrate_clocks();
#ifdef CLK_CALIBRATION_LOOP
if (bootverbose) {
OpenPOWER on IntegriCloud