/*-
* Copyright (c) 1996, 1998 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Jason R. Thorpe.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Match PCI-ISA bridge.
*/
if (PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE &&
PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_ISA) {
return (1);
}
/*
* some special cases:
*/
switch (PCI_VENDOR(pa->pa_id)) {
case PCI_VENDOR_INTEL:
switch (PCI_PRODUCT(pa->pa_id)) {
case PCI_PRODUCT_INTEL_SIO:
/*
* The Intel SIO identifies itself as a
* miscellaneous prehistoric.
*/
return (1);
}
break;
}
/*
* Just print out a description and defer configuration
* until all PCI devices have been attached.
*/
pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
aprint_normal(": %s (rev. 0x%02x)\n", devinfo,
PCI_REVISION(pa->pa_class));
v = pci_conf_read(pa->pa_pc, pa->pa_tag, 0x40);
if ((v & 0x20) == 0) {
aprint_verbose_dev(self, "PIRQ[0-3] not used\n");
} else {
v = pci_conf_read(pa->pa_pc, pa->pa_tag, 0x60);
if ((v & 0x80808080) == 0x80808080) {
aprint_verbose_dev(self, "PIRQ[0-3] disabled\n");
} else {
int i;
aprint_verbose("%s:", device_xname(self));
for (i = 0; i < 4; i++, v >>= 8) {
if ((v & 0x80) == 0 && (v & 0x0f) != 0) {
aprint_verbose(" PIRQ[%d]=%d", i,
v & 0x0f);
lvlmask |= (1 << (v & 0x0f));
}
}
aprint_verbose("\n");
}
}
/*
* If we have an 83C553F-G sitting on a RAVEN host bridge,
* then we need to rewire some interrupts.
* The IDE Interrupt Routing Control Register lives at 0x43,
* and defaults to 0xEF, which means the primary controller
* interrupts on ivr-14, and the secondary on ivr-15. We
* reset it to 0xEE to fire them both at ivr-14.
* We have to rewrite the interrupt map, because the bridge map told
* us that the interrupt is MPIC 0, which is the bridge intr for
* the 8259.
* Additionally, sometimes the PCI Interrupt Routing Control Register
* is improperly initialized, causing all sorts of weird interrupt
* issues on the machine. The manual says it should default to
* 0000h (index 45-44h) however it would appear that PPCBUG is
* setting it up differently. Reset it to 0000h.
*/