Date: Thu, 12 Mar 1998 18:31:24 +0100 From: Tor Egge <Tor.Egge@idi.ntnu.no> To: smp@csn.net Cc: jkh@FreeBSD.ORG, daver@flag.blackened.net, phk@critter.freebsd.dk, freebsd-smp@FreeBSD.ORG Subject: Re: my linux box never did that Message-ID: <199803121731.SAA04218@pat.idi.ntnu.no> In-Reply-To: Your message of "Wed, 11 Mar 1998 22:25:54 -0700" References: <199803120525.WAA13249@Ilsa.StevesCafe.com>
index | next in thread | previous in thread | raw e-mail
> I suspect this will fix the other boxes that people have complained about
> having wild clocks in the past... So the question is, which
> motherboard 'brokenness' should we prefer? If you reorder the if .. else if
> test most boxes will work, but another subset will stop getting int2s at all.
> Why can't these people get the *%$# hardware right!!!
What about attempting to follow the MP spec, i.e. use the pin
specified by the MP configuration table, and detect brokenness when it
actually occurs ?
Compliant motherboards would get
APIC_IO: Testing 8254 interrupt delivery
APIC_IO: routing 8254 via pin 2
while broken motherboards would get
APIC_IO: Testing 8254 interrupt delivery
APIC_IO: Broken MP table detected: 8254 is not connected to IO APIC int pin 2
APIC_IO: routing 8254 via 8259 on pin 0
with the appended patch.
Index: clock.c
===================================================================
RCS file: /home/ncvs/src/sys/i386/isa/clock.c,v
retrieving revision 1.115
diff -u -r1.115 clock.c
--- clock.c 1998/03/05 21:45:48 1.115
+++ clock.c 1998/03/12 16:45:54
@@ -88,8 +88,13 @@
#define disable_intr() CLOCK_DISABLE_INTR()
#define enable_intr() CLOCK_ENABLE_INTR()
+#ifdef APIC_IO
+#include <i386/isa/intr_machdep.h>
/* The interrupt triggered by the 8254 (timer) chip */
int apic_8254_intr;
+static u_long read_intr_count __P((int vec));
+static void setup_8254_mixed_mode __P((void));
+#endif
#endif /* SMP */
/*
@@ -898,7 +905,7 @@
{
int diag;
#ifdef APIC_IO
- int x;
+ int apic_8254_trial;
#endif /* APIC_IO */
if (statclock_disable) {
@@ -919,46 +926,25 @@
/* Finish initializing 8253 timer 0. */
#ifdef APIC_IO
- /* 1st look for ExtInt on pin 0 */
- if (apic_int_type(0, 0) == 3) {
- /*
- * Allow 8254 timer to INTerrupt 8259:
- * re-initialize master 8259:
- * reset; prog 4 bytes, single ICU, edge triggered
- */
- outb(IO_ICU1, 0x13);
- outb(IO_ICU1 + 1, NRSVIDT); /* start vector (unused) */
- outb(IO_ICU1 + 1, 0x00); /* ignore slave */
- outb(IO_ICU1 + 1, 0x03); /* auto EOI, 8086 */
- outb(IO_ICU1 + 1, 0xfe); /* unmask INT0 */
-
- /* program IO APIC for type 3 INT on INT0 */
- if (ext_int_setup(0, 0) < 0)
- panic("8254 redirect via APIC pin0 impossible!");
-
- x = 0;
- /* XXX if (bootverbose) */
- printf("APIC_IO: routing 8254 via 8259 on pin 0\n");
- }
-
- /* failing that, look for 8254 on pin 2 */
- else if (isa_apic_pin(0) == 2) {
- x = 2;
- /* XXX if (bootverbose) */
- printf("APIC_IO: routing 8254 via pin 2\n");
+ apic_8254_intr = isa_apic_pin(0);
+ apic_8254_trial = 0;
+ if (apic_8254_intr >= 0 ) {
+ if (apic_int_type(0, 0) == 3)
+ apic_8254_trial = 1;
+ } else {
+ /* look for ExtInt on pin 0 */
+ if (apic_int_type(0, 0) == 3) {
+ apic_8254_intr = 0;
+ setup_8254_mixed_mode();
+ } else
+ panic("APIC_IO: Cannot route 8254 interrupt to CPU");
}
-
- /* better write that 8254 INT discover code... */
- else
- panic("neither pin 0 or pin 2 works for 8254");
-
- apic_8254_intr = x;
- register_intr(/* irq */ x, /* XXX id */ 0, /* flags */ 0,
+ register_intr(/* irq */ apic_8254_intr, /* XXX id */ 0, /* flags */ 0,
/* XXX */ (inthand2_t *)clkintr, &clk_imask,
/* unit */ 0);
- INTREN(1 << x);
-
+ INTREN(1 << apic_8254_intr);
+
#else /* APIC_IO */
register_intr(/* irq */ 0, /* XXX id */ 0, /* flags */ 0,
@@ -995,7 +981,75 @@
#endif /* APIC_IO */
writertc(RTC_STATUSB, rtc_statusb);
+
+#ifdef APIC_IO
+ if (apic_8254_trial) {
+
+ printf("APIC_IO: Testing 8254 interrupt delivery\n");
+ __asm __volatile("sti" : : : "memory");
+ while (read_intr_count(8) < 6)
+ __asm __volatile("sti" : : : "memory");
+ if (read_intr_count(apic_8254_intr) < 3) {
+ /*
+ * The MP table is broken.
+ * The 8254 was not connected to the specified pin
+ * on the IO APIC.
+ * Workaround: Limited variant of mixed mode.
+ */
+ INTRDIS(1 << apic_8254_intr);
+ unregister_intr(apic_8254_intr,
+ /* XXX */ (inthand2_t *) clkintr);
+ printf("APIC_IO: Broken MP table detected: "
+ "8254 is not connected to IO APIC int pin %d\n",
+ apic_8254_intr);
+
+ apic_8254_intr = 0;
+ setup_8254_mixed_mode();
+ register_intr(/* irq */ apic_8254_intr, /* XXX id */ 0, /* flags */ 0,
+ /* XXX */ (inthand2_t *)clkintr, &clk_imask,
+ /* unit */ 0);
+ INTREN(1 << apic_8254_intr);
+ }
+
+ }
+ if (apic_8254_intr)
+ printf("APIC_IO: routing 8254 via pin %d\n",apic_8254_intr);
+ else
+ printf("APIC_IO: routing 8254 via 8259 on pin 0\n");
+#endif
+
}
+
+#ifdef APIC_IO
+static u_long
+read_intr_count(int vec)
+{
+ u_long *up;
+ up = intr_countp[vec];
+ if (up)
+ return *up;
+ return 0UL;
+}
+
+static void
+setup_8254_mixed_mode()
+{
+ /*
+ * Allow 8254 timer to INTerrupt 8259:
+ * re-initialize master 8259:
+ * reset; prog 4 bytes, single ICU, edge triggered
+ */
+ outb(IO_ICU1, 0x13);
+ outb(IO_ICU1 + 1, NRSVIDT); /* start vector (unused) */
+ outb(IO_ICU1 + 1, 0x00); /* ignore slave */
+ outb(IO_ICU1 + 1, 0x03); /* auto EOI, 8086 */
+ outb(IO_ICU1 + 1, 0xfe); /* unmask INT0 */
+
+ /* program IO APIC for type 3 INT on INT0 */
+ if (ext_int_setup(0, 0) < 0)
+ panic("8254 redirect via APIC pin0 impossible!");
+}
+#endif
void
setstatclockrate(int newhz)
- Tor Egge
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-smp" in the body of the message
help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199803121731.SAA04218>
