aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64
diff options
context:
space:
mode:
authorSteve Passe <fsmp@FreeBSD.org>1997-05-05 22:56:13 +0000
committerSteve Passe <fsmp@FreeBSD.org>1997-05-05 22:56:13 +0000
commit08896efb1a05c586b37d8e5077683aab45436780 (patch)
tree79c2b337b7073736738ce39bd6c186c709f46128 /sys/amd64
parentdc01e23eda85615febc052a3546c67e6cf664324 (diff)
downloadsrc-08896efb1a05c586b37d8e5077683aab45436780.tar.gz
src-08896efb1a05c586b37d8e5077683aab45436780.zip
Code to handle SMP/APIC_IO mapping of ISA INTs to APIC pins above IRQ15.
- doesn't break my system. - NOT yet verified on the affected motherboard. Stifle an annoying dma_start busy message for the sound cards. Submitted by: "John S. Dyson" <toor@dyson.iquest.net>
Notes
Notes: svn path=/head/; revision=25498
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/isa/isa.c26
1 files changed, 25 insertions, 1 deletions
diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c
index e18d73d05392..def0ae4a7b0b 100644
--- a/sys/amd64/isa/isa.c
+++ b/sys/amd64/isa/isa.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
- * $Id: isa.c,v 1.82 1997/04/27 21:18:58 fsmp Exp $
+ * $Id: isa.c,v 1.1 1997/05/05 21:54:26 smp Exp smp $
*/
/*
@@ -462,6 +462,23 @@ config_isadev_c(isdp, mp, reconfig)
}
(*dp->attach)(isdp);
if (isdp->id_irq) {
+#if defined(APIC_IO)
+ /*
+ * Some motherboards use upper IRQs for traditional
+ * ISA INTerrupt sources. In particular we have
+ * seen the secondary IDE connected to IRQ20.
+ * This code detects and fixes this situation.
+ */
+ u_int apic_mask;
+ int rirq;
+
+ apic_mask = get_isa_apic_mask( isdp->id_irq );
+ if ( apic_mask != isdp->id_irq ) {
+ rirq = ffs( isdp->id_irq ) - 1;
+ isdp->id_irq = apic_mask;
+ undirect_isa_irq( rirq ); /* free for ISA */
+ }
+#endif /* APIC_IO */
if (mp)
INTRMASK(*mp, isdp->id_irq);
register_intr(ffs(isdp->id_irq) - 1, isdp->id_id,
@@ -676,8 +693,15 @@ void isa_dmastart(int flags, caddr_t addr, u_int nbytes, int chan)
printf("isa_dmastart: channel %d not acquired\n", chan);
#endif
+#if 0
+ /*
+ * XXX This should be checked, but drivers like ad1848 only call
+ * isa_dmastart() once because they use Auto DMA mode. If we
+ * leave this in, drivers that do this will print this continuously.
+ */
if (dma_busy & (1 << chan))
printf("isa_dmastart: channel %d busy\n", chan);
+#endif
dma_busy |= (1 << chan);