mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-11 15:08:19 -04:00
432 lines
12 KiB
C
432 lines
12 KiB
C
/* $NetBSD: pci_intr_machdep.c,v 1.26 2013/01/26 17:37:39 dyoung Exp $ */
|
|
|
|
/*-
|
|
* Copyright (c) 1997, 1998, 2009 The NetBSD Foundation, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
* by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
|
|
* NASA Ames Research Center.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
|
|
* Copyright (c) 1994 Charles M. Hannum. All rights reserved.
|
|
*
|
|
* 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.
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
* must display the following acknowledgement:
|
|
* This product includes software developed by Charles M. Hannum.
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
*/
|
|
|
|
/*
|
|
* Machine-specific functions for PCI autoconfiguration.
|
|
*
|
|
* On PCs, there are two methods of generating PCI configuration cycles.
|
|
* We try to detect the appropriate mechanism for this machine and set
|
|
* up a few function pointers to access the correct method directly.
|
|
*
|
|
* The configuration method can be hard-coded in the config file by
|
|
* using `options PCI_CONF_MODE=N', where `N' is the configuration mode
|
|
* as defined section 3.6.4.1, `Generating Configuration Cycles'.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__KERNEL_RCSID(0, "$NetBSD: pci_intr_machdep.c,v 1.26 2013/01/26 17:37:39 dyoung Exp $");
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/param.h>
|
|
#include <sys/time.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/errno.h>
|
|
#include <sys/device.h>
|
|
#include <sys/intr.h>
|
|
#include <sys/malloc.h>
|
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include "ioapic.h"
|
|
#include "eisa.h"
|
|
#include "acpica.h"
|
|
#include "opt_mpbios.h"
|
|
#include "opt_acpi.h"
|
|
|
|
#include <machine/i82489reg.h>
|
|
|
|
#if NIOAPIC > 0 || NACPICA > 0
|
|
#include <machine/i82093reg.h>
|
|
#include <machine/i82093var.h>
|
|
#include <machine/mpconfig.h>
|
|
#include <machine/mpbiosvar.h>
|
|
#include <machine/pic.h>
|
|
#endif
|
|
|
|
#ifdef MPBIOS
|
|
#include <machine/mpbiosvar.h>
|
|
#endif
|
|
|
|
#if NACPICA > 0
|
|
#include <machine/mpacpi.h>
|
|
#endif
|
|
|
|
#define MPSAFE_MASK 0x80000000
|
|
|
|
int
|
|
pci_intr_map(const struct pci_attach_args *pa, pci_intr_handle_t *ihp)
|
|
{
|
|
int pin = pa->pa_intrpin;
|
|
int line = pa->pa_intrline;
|
|
pci_chipset_tag_t ipc, pc = pa->pa_pc;
|
|
#if NIOAPIC > 0 || NACPICA > 0
|
|
int rawpin = pa->pa_rawintrpin;
|
|
int bus, dev, func;
|
|
#endif
|
|
|
|
for (ipc = pc; ipc != NULL; ipc = ipc->pc_super) {
|
|
if ((ipc->pc_present & PCI_OVERRIDE_INTR_MAP) == 0)
|
|
continue;
|
|
return (*ipc->pc_ov->ov_intr_map)(ipc->pc_ctx, pa, ihp);
|
|
}
|
|
|
|
if (pin == 0) {
|
|
/* No IRQ used. */
|
|
goto bad;
|
|
}
|
|
|
|
*ihp = 0;
|
|
|
|
if (pin > PCI_INTERRUPT_PIN_MAX) {
|
|
aprint_normal("pci_intr_map: bad interrupt pin %d\n", pin);
|
|
goto bad;
|
|
}
|
|
|
|
#if NIOAPIC > 0 || NACPICA > 0
|
|
KASSERT(rawpin >= PCI_INTERRUPT_PIN_A);
|
|
KASSERT(rawpin <= PCI_INTERRUPT_PIN_D);
|
|
pci_decompose_tag(pc, pa->pa_tag, &bus, &dev, &func);
|
|
if (mp_busses != NULL) {
|
|
/*
|
|
* Note: PCI_INTERRUPT_PIN_A == 1 where intr_find_mpmapping
|
|
* wants pci bus_pin encoding which uses INT_A == 0.
|
|
*/
|
|
if (intr_find_mpmapping(bus,
|
|
(dev << 2) | (rawpin - PCI_INTERRUPT_PIN_A), ihp) == 0) {
|
|
if (APIC_IRQ_LEGACY_IRQ(*ihp) == 0)
|
|
*ihp |= line;
|
|
return 0;
|
|
}
|
|
/*
|
|
* No explicit PCI mapping found. This is not fatal,
|
|
* we'll try the ISA (or possibly EISA) mappings next.
|
|
*/
|
|
}
|
|
#endif
|
|
|
|
/*
|
|
* Section 6.2.4, `Miscellaneous Functions', says that 255 means
|
|
* `unknown' or `no connection' on a PC. We assume that a device with
|
|
* `no connection' either doesn't have an interrupt (in which case the
|
|
* pin number should be 0, and would have been noticed above), or
|
|
* wasn't configured by the BIOS (in which case we punt, since there's
|
|
* no real way we can know how the interrupt lines are mapped in the
|
|
* hardware).
|
|
*
|
|
* XXX
|
|
* Since IRQ 0 is only used by the clock, and we can't actually be sure
|
|
* that the BIOS did its job, we also recognize that as meaning that
|
|
* the BIOS has not configured the device.
|
|
*/
|
|
if (line == 0 || line == X86_PCI_INTERRUPT_LINE_NO_CONNECTION) {
|
|
aprint_normal("pci_intr_map: no mapping for pin %c (line=%02x)\n",
|
|
'@' + pin, line);
|
|
goto bad;
|
|
} else {
|
|
if (line >= NUM_LEGACY_IRQS) {
|
|
aprint_normal("pci_intr_map: bad interrupt line %d\n", line);
|
|
goto bad;
|
|
}
|
|
if (line == 2) {
|
|
aprint_normal("pci_intr_map: changed line 2 to line 9\n");
|
|
line = 9;
|
|
}
|
|
}
|
|
#if NIOAPIC > 0 || NACPICA > 0
|
|
if (mp_busses != NULL) {
|
|
if (intr_find_mpmapping(mp_isa_bus, line, ihp) == 0) {
|
|
if ((*ihp & 0xff) == 0)
|
|
*ihp |= line;
|
|
return 0;
|
|
}
|
|
#if NEISA > 0
|
|
if (intr_find_mpmapping(mp_eisa_bus, line, ihp) == 0) {
|
|
if ((*ihp & 0xff) == 0)
|
|
*ihp |= line;
|
|
return 0;
|
|
}
|
|
#endif
|
|
aprint_normal("pci_intr_map: bus %d dev %d func %d pin %d; line %d\n",
|
|
bus, dev, func, pin, line);
|
|
aprint_normal("pci_intr_map: no MP mapping found\n");
|
|
}
|
|
#endif
|
|
|
|
*ihp = line;
|
|
return 0;
|
|
|
|
bad:
|
|
*ihp = -1;
|
|
return 1;
|
|
}
|
|
|
|
const char *
|
|
pci_intr_string(pci_chipset_tag_t pc, pci_intr_handle_t ih)
|
|
{
|
|
pci_chipset_tag_t ipc;
|
|
|
|
for (ipc = pc; ipc != NULL; ipc = ipc->pc_super) {
|
|
if ((ipc->pc_present & PCI_OVERRIDE_INTR_STRING) == 0)
|
|
continue;
|
|
return (*ipc->pc_ov->ov_intr_string)(ipc->pc_ctx, pc, ih);
|
|
}
|
|
|
|
return intr_string(ih & ~MPSAFE_MASK);
|
|
}
|
|
|
|
|
|
const struct evcnt *
|
|
pci_intr_evcnt(pci_chipset_tag_t pc, pci_intr_handle_t ih)
|
|
{
|
|
pci_chipset_tag_t ipc;
|
|
|
|
for (ipc = pc; ipc != NULL; ipc = ipc->pc_super) {
|
|
if ((ipc->pc_present & PCI_OVERRIDE_INTR_EVCNT) == 0)
|
|
continue;
|
|
return (*ipc->pc_ov->ov_intr_evcnt)(ipc->pc_ctx, pc, ih);
|
|
}
|
|
|
|
/* XXX for now, no evcnt parent reported */
|
|
return NULL;
|
|
}
|
|
|
|
int
|
|
pci_intr_setattr(pci_chipset_tag_t pc, pci_intr_handle_t *ih,
|
|
int attr, uint64_t data)
|
|
{
|
|
|
|
switch (attr) {
|
|
case PCI_INTR_MPSAFE:
|
|
if (data) {
|
|
*ih |= MPSAFE_MASK;
|
|
} else {
|
|
*ih &= ~MPSAFE_MASK;
|
|
}
|
|
/* XXX Set live if already mapped. */
|
|
return 0;
|
|
default:
|
|
return ENODEV;
|
|
}
|
|
}
|
|
|
|
void *
|
|
pci_intr_establish(pci_chipset_tag_t pc, pci_intr_handle_t ih,
|
|
int level, int (*func)(void *), void *arg)
|
|
{
|
|
int pin, irq;
|
|
struct pic *pic;
|
|
#if NIOAPIC > 0
|
|
struct ioapic_softc *ioapic;
|
|
#endif
|
|
bool mpsafe;
|
|
pci_chipset_tag_t ipc;
|
|
|
|
for (ipc = pc; ipc != NULL; ipc = ipc->pc_super) {
|
|
if ((ipc->pc_present & PCI_OVERRIDE_INTR_ESTABLISH) == 0)
|
|
continue;
|
|
return (*ipc->pc_ov->ov_intr_establish)(ipc->pc_ctx,
|
|
pc, ih, level, func, arg);
|
|
}
|
|
|
|
pic = &i8259_pic;
|
|
pin = irq = (ih & ~MPSAFE_MASK);
|
|
mpsafe = ((ih & MPSAFE_MASK) != 0);
|
|
|
|
#if NIOAPIC > 0
|
|
if (ih & APIC_INT_VIA_APIC) {
|
|
ioapic = ioapic_find(APIC_IRQ_APIC(ih));
|
|
if (ioapic == NULL) {
|
|
aprint_normal("pci_intr_establish: bad ioapic %d\n",
|
|
APIC_IRQ_APIC(ih));
|
|
return NULL;
|
|
}
|
|
pic = &ioapic->sc_pic;
|
|
pin = APIC_IRQ_PIN(ih);
|
|
irq = APIC_IRQ_LEGACY_IRQ(ih);
|
|
if (irq < 0 || irq >= NUM_LEGACY_IRQS)
|
|
irq = -1;
|
|
}
|
|
#endif
|
|
|
|
return intr_establish(irq, pic, pin, IST_LEVEL, level, func, arg,
|
|
mpsafe);
|
|
}
|
|
|
|
void
|
|
pci_intr_disestablish(pci_chipset_tag_t pc, void *cookie)
|
|
{
|
|
pci_chipset_tag_t ipc;
|
|
|
|
for (ipc = pc; ipc != NULL; ipc = ipc->pc_super) {
|
|
if ((ipc->pc_present & PCI_OVERRIDE_INTR_DISESTABLISH) == 0)
|
|
continue;
|
|
(*ipc->pc_ov->ov_intr_disestablish)(ipc->pc_ctx, pc, cookie);
|
|
return;
|
|
}
|
|
|
|
intr_disestablish(cookie);
|
|
}
|
|
|
|
#if NIOAPIC > 0
|
|
/*
|
|
* experimental support for MSI, does support a single vector,
|
|
* no MSI-X, 8-bit APIC IDs
|
|
* (while it doesn't need the ioapic technically, it borrows
|
|
* from its kernel support)
|
|
*/
|
|
|
|
/* dummies, needed by common intr_establish code */
|
|
static void
|
|
msipic_hwmask(struct pic *pic, int pin)
|
|
{
|
|
}
|
|
static void
|
|
msipic_addroute(struct pic *pic, struct cpu_info *ci,
|
|
int pin, int vec, int type)
|
|
{
|
|
}
|
|
|
|
static struct pic msi_pic = {
|
|
.pic_name = "msi",
|
|
.pic_type = PIC_SOFT,
|
|
.pic_vecbase = 0,
|
|
.pic_apicid = 0,
|
|
.pic_lock = __SIMPLELOCK_UNLOCKED,
|
|
.pic_hwmask = msipic_hwmask,
|
|
.pic_hwunmask = msipic_hwmask,
|
|
.pic_addroute = msipic_addroute,
|
|
.pic_delroute = msipic_addroute,
|
|
.pic_edge_stubs = ioapic_edge_stubs,
|
|
};
|
|
|
|
struct msi_hdl {
|
|
struct intrhand *ih;
|
|
pci_chipset_tag_t pc;
|
|
pcitag_t tag;
|
|
int co;
|
|
};
|
|
|
|
void *
|
|
pci_msi_establish(struct pci_attach_args *pa, int level,
|
|
int (*func)(void *), void *arg)
|
|
{
|
|
int co;
|
|
struct intrhand *ih;
|
|
struct msi_hdl *msih;
|
|
struct cpu_info *ci;
|
|
struct intrsource *is;
|
|
pcireg_t reg;
|
|
|
|
if (!pci_get_capability(pa->pa_pc, pa->pa_tag, PCI_CAP_MSI, &co, 0))
|
|
return NULL;
|
|
|
|
ih = intr_establish(-1, &msi_pic, -1, IST_EDGE, level, func, arg, 0);
|
|
if (ih == NULL)
|
|
return NULL;
|
|
|
|
msih = malloc(sizeof(*msih), M_DEVBUF, M_WAITOK);
|
|
msih->ih = ih;
|
|
msih->pc = pa->pa_pc;
|
|
msih->tag = pa->pa_tag;
|
|
msih->co = co;
|
|
|
|
ci = ih->ih_cpu;
|
|
is = ci->ci_isources[ih->ih_slot];
|
|
reg = pci_conf_read(pa->pa_pc, pa->pa_tag, co + PCI_MSI_CTL);
|
|
pci_conf_write(pa->pa_pc, pa->pa_tag, co + PCI_MSI_MADDR64_LO,
|
|
LAPIC_MSIADDR_BASE |
|
|
__SHIFTIN(ci->ci_cpuid, LAPIC_MSIADDR_DSTID_MASK));
|
|
if (reg & PCI_MSI_CTL_64BIT_ADDR) {
|
|
pci_conf_write(pa->pa_pc, pa->pa_tag, co + PCI_MSI_MADDR64_HI,
|
|
0);
|
|
/* XXX according to the manual, ASSERT is unnecessary if
|
|
* EDGE
|
|
*/
|
|
pci_conf_write(pa->pa_pc, pa->pa_tag, co + PCI_MSI_MDATA64,
|
|
__SHIFTIN(is->is_idtvec, LAPIC_MSIDATA_VECTOR_MASK) |
|
|
LAPIC_MSIDATA_TRGMODE_EDGE | LAPIC_MSIDATA_LEVEL_ASSERT |
|
|
LAPIC_MSIDATA_DM_FIXED);
|
|
} else {
|
|
/* XXX according to the manual, ASSERT is unnecessary if
|
|
* EDGE
|
|
*/
|
|
pci_conf_write(pa->pa_pc, pa->pa_tag, co + PCI_MSI_MDATA,
|
|
__SHIFTIN(is->is_idtvec, LAPIC_MSIDATA_VECTOR_MASK) |
|
|
LAPIC_MSIDATA_TRGMODE_EDGE | LAPIC_MSIDATA_LEVEL_ASSERT |
|
|
LAPIC_MSIDATA_DM_FIXED);
|
|
}
|
|
pci_conf_write(pa->pa_pc, pa->pa_tag, co + PCI_MSI_CTL,
|
|
PCI_MSI_CTL_MSI_ENABLE);
|
|
return msih;
|
|
}
|
|
|
|
void
|
|
pci_msi_disestablish(void *ih)
|
|
{
|
|
struct msi_hdl *msih = ih;
|
|
|
|
pci_conf_write(msih->pc, msih->tag, msih->co + PCI_MSI_CTL, 0);
|
|
intr_disestablish(msih->ih);
|
|
free(msih, M_DEVBUF);
|
|
}
|
|
#endif
|