2012-05-23 20:11:37 +04:00
|
|
|
/* $NetBSD: apic.c,v 1.16 2012/05/23 16:11:37 skrll Exp $ */
|
2009-04-30 11:08:39 +04:00
|
|
|
|
2012-04-14 14:43:19 +04:00
|
|
|
/* $OpenBSD: apic.c,v 1.14 2011/05/01 21:59:39 kettenis Exp $ */
|
2009-04-30 11:08:39 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2005 Michael Shalayeff
|
|
|
|
* Copyright (c) 2007 Mark Kettenis
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER IN
|
|
|
|
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
|
|
|
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
|
|
|
|
#include <machine/autoconf.h>
|
|
|
|
#include <machine/pdc.h>
|
|
|
|
#include <machine/intr.h>
|
|
|
|
|
|
|
|
#include <dev/pci/pcireg.h>
|
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include <dev/pci/pcidevs.h>
|
|
|
|
|
|
|
|
#include <hp700/dev/elroyreg.h>
|
|
|
|
#include <hp700/dev/elroyvar.h>
|
|
|
|
|
|
|
|
#define APIC_INT_LINE_MASK 0x0000ff00
|
|
|
|
#define APIC_INT_LINE_SHIFT 8
|
|
|
|
#define APIC_INT_IRQ_MASK 0x0000001f
|
|
|
|
|
|
|
|
#define APIC_INT_LINE(x) (((x) & APIC_INT_LINE_MASK) >> APIC_INT_LINE_SHIFT)
|
|
|
|
#define APIC_INT_IRQ(x) ((x) & APIC_INT_IRQ_MASK)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Interrupt types match the Intel MP Specification.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define MPS_INTPO_DEF 0
|
|
|
|
#define MPS_INTPO_ACTHI 1
|
|
|
|
#define MPS_INTPO_ACTLO 3
|
|
|
|
#define MPS_INTPO_SHIFT 0
|
|
|
|
#define MPS_INTPO_MASK 3
|
|
|
|
|
|
|
|
#define MPS_INTTR_DEF 0
|
|
|
|
#define MPS_INTTR_EDGE 1
|
|
|
|
#define MPS_INTTR_LEVEL 3
|
|
|
|
#define MPS_INTTR_SHIFT 2
|
|
|
|
#define MPS_INTTR_MASK 3
|
|
|
|
|
|
|
|
#define MPS_INT(p,t) \
|
|
|
|
((((p) & MPS_INTPO_MASK) << MPS_INTPO_SHIFT) | \
|
|
|
|
(((t) & MPS_INTTR_MASK) << MPS_INTTR_SHIFT))
|
|
|
|
|
|
|
|
struct apic_iv {
|
|
|
|
struct elroy_softc *sc;
|
|
|
|
pci_intr_handle_t ih;
|
|
|
|
int (*handler)(void *);
|
|
|
|
void *arg;
|
|
|
|
struct apic_iv *next;
|
|
|
|
struct evcnt *cnt;
|
2010-12-05 15:19:09 +03:00
|
|
|
char aiv_name[32];
|
2009-04-30 11:08:39 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct apic_iv *apic_intr_list[CPU_NINTS];
|
|
|
|
|
|
|
|
void apic_write(volatile struct elroy_regs *, uint32_t, uint32_t);
|
|
|
|
uint32_t apic_read(volatile struct elroy_regs *, uint32_t reg);
|
|
|
|
|
|
|
|
void apic_get_int_tbl(struct elroy_softc *);
|
|
|
|
uint32_t apic_get_int_ent0(struct elroy_softc *, int);
|
|
|
|
#ifdef DEBUG
|
|
|
|
void apic_dump(struct elroy_softc *);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
|
|
|
apic_write(volatile struct elroy_regs *r, uint32_t reg, uint32_t val)
|
|
|
|
{
|
|
|
|
elroy_write32(&r->apic_addr, htole32(reg));
|
|
|
|
elroy_write32(&r->apic_data, htole32(val));
|
|
|
|
elroy_read32(&r->apic_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
apic_read(volatile struct elroy_regs *r, uint32_t reg)
|
|
|
|
{
|
|
|
|
elroy_write32(&r->apic_addr, htole32(reg));
|
|
|
|
return le32toh(elroy_read32(&r->apic_data));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
apic_attach(struct elroy_softc *sc)
|
|
|
|
{
|
|
|
|
volatile struct elroy_regs *r = sc->sc_regs;
|
|
|
|
uint32_t data;
|
|
|
|
|
|
|
|
data = apic_read(r, APIC_VERSION);
|
|
|
|
sc->sc_nints = (data & APIC_VERSION_NENT) >> APIC_VERSION_NENT_SHIFT;
|
2009-05-07 19:34:49 +04:00
|
|
|
aprint_normal(" APIC ver %x, %d pins",
|
2009-04-30 11:08:39 +04:00
|
|
|
data & APIC_VERSION_MASK, sc->sc_nints);
|
|
|
|
|
|
|
|
sc->sc_irq = malloc(sc->sc_nints * sizeof(int), M_DEVBUF,
|
|
|
|
M_NOWAIT | M_ZERO);
|
|
|
|
if (sc->sc_irq == NULL)
|
2009-05-07 19:34:49 +04:00
|
|
|
panic("apic_attach: can't allocate irq table\n");
|
2009-04-30 11:08:39 +04:00
|
|
|
|
|
|
|
apic_get_int_tbl(sc);
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
apic_dump(sc);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
Neither pci_dma64_available(), pci_probe_device(), pci_mapreg_map(9),
pci_find_rom(), pci_intr_map(9), pci_enumerate_bus(), nor the match
predicate passed to pciide_compat_intr_establish() should ever modify
their pci_attach_args argument, so make their pci_attach_args arguments
const and deal with the fallout throughout the kernel.
For the most part, these changes add a 'const' where there was no
'const' before, however, some drivers and MD code used to modify
pci_attach_args. Now those drivers either copy their pci_attach_args
and modify the copy, or refrain from modifying pci_attach_args:
Xen: according to Manuel Bouyer, writing to pci_attach_args in
pci_intr_map() was a leftover from Xen 2. Probably a bug. I
stopped writing it. I have not tested this change.
siside(4): sis_hostbr_match() needlessly wrote to pci_attach_args.
Probably a bug. I use a temporary variable. I have not tested this
change.
slide(4): sl82c105_chip_map() overwrote the caller's pci_attach_args.
Probably a bug. Use a local pci_attach_args. I have not tested
this change.
viaide(4): via_sata_chip_map() and via_sata_chip_map_new() overwrote the
caller's pci_attach_args. Probably a bug. Make a local copy of the
caller's pci_attach_args and modify the copy. I have not tested
this change.
While I'm here, make pci_mapreg_submap() static.
With these changes in place, I have tested the compilation of these
kernels:
alpha GENERIC
amd64 GENERIC XEN3_DOM0
arc GENERIC
atari HADES MILAN-PCIIDE
bebox GENERIC
cats GENERIC
cobalt GENERIC
evbarm-eb NSLU2
evbarm-el ADI_BRH ARMADILLO9 CP3100 GEMINI GEMINI_MASTER GEMINI_SLAVE GUMSTIX
HDL_G IMX31LITE INTEGRATOR IQ31244 IQ80310 IQ80321 IXDP425 IXM1200
KUROBOX_PRO LUBBOCK MARVELL_NAS NAPPI SHEEVAPLUG SMDK2800 TEAMASA_NPWR
TEAMASA_NPWR_FC TS7200 TWINTAIL ZAO425
evbmips-el AP30 DBAU1500 DBAU1550 MALTA MERAKI MTX-1 OMSAL400 RB153 WGT624V3
evbmips64-el XLSATX
evbppc EV64260 MPC8536DS MPC8548CDS OPENBLOCKS200 OPENBLOCKS266
OPENBLOCKS266_OPT P2020RDB PMPPC RB800 WALNUT
hp700 GENERIC
i386 ALL XEN3_DOM0 XEN3_DOMU
ibmnws GENERIC
macppc GENERIC
mvmeppc GENERIC
netwinder GENERIC
ofppc GENERIC
prep GENERIC
sandpoint GENERIC
sgimips GENERIC32_IP2x
sparc GENERIC_SUN4U KRUPS
sparc64 GENERIC
As of Sun Apr 3 15:26:26 CDT 2011, I could not compile these kernels
with or without my patches in place:
### evbmips-el GDIUM
nbmake: nbmake: don't know how to make /home/dyoung/pristine-nbsd/src/sys/arch/mips/mips/softintr.c. Stop
### evbarm-el MPCSA_GENERIC
src/sys/arch/evbarm/conf/MPCSA_GENERIC:318: ds1672rtc*: unknown device `ds1672rtc'
### ia64 GENERIC
/tmp/genassym.28085/assym.c: In function 'f111':
/tmp/genassym.28085/assym.c:67: error: invalid application of 'sizeof' to incomplete type 'struct pcb'
/tmp/genassym.28085/assym.c:76: error: dereferencing pointer to incomplete type
### sgimips GENERIC32_IP3x
crmfb.o: In function `crmfb_attach':
crmfb.c:(.text+0x2304): undefined reference to `ddc_read_edid'
crmfb.c:(.text+0x2304): relocation truncated to fit: R_MIPS_26 against `ddc_read_edid'
crmfb.c:(.text+0x234c): undefined reference to `edid_parse'
crmfb.c:(.text+0x234c): relocation truncated to fit: R_MIPS_26 against `edid_parse'
crmfb.c:(.text+0x2354): undefined reference to `edid_print'
crmfb.c:(.text+0x2354): relocation truncated to fit: R_MIPS_26 against `edid_print'
2011-04-05 00:37:49 +04:00
|
|
|
apic_intr_map(const struct pci_attach_args *pa, pci_intr_handle_t *ihp)
|
2009-04-30 11:08:39 +04:00
|
|
|
{
|
|
|
|
struct elroy_softc *sc = pa->pa_pc->_cookie;
|
2012-05-23 20:11:37 +04:00
|
|
|
struct cpu_info *ci = &cpus[0];
|
2009-04-30 11:08:39 +04:00
|
|
|
pci_chipset_tag_t pc = pa->pa_pc;
|
|
|
|
pcitag_t tag = pa->pa_tag;
|
|
|
|
pcireg_t reg;
|
|
|
|
int line;
|
|
|
|
|
|
|
|
reg = pci_conf_read(pc, tag, PCI_INTERRUPT_REG);
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf(" pin=%d line=%d ", PCI_INTERRUPT_PIN(reg),
|
|
|
|
PCI_INTERRUPT_LINE(reg));
|
|
|
|
#endif
|
|
|
|
line = PCI_INTERRUPT_LINE(reg);
|
|
|
|
if (sc->sc_irq[line] == 0)
|
2012-05-23 20:11:37 +04:00
|
|
|
sc->sc_irq[line] = hp700_intr_allocate_bit(&ci->ci_ir, -1);
|
|
|
|
KASSERT(sc->sc_irq[line] != -1);
|
2009-04-30 11:08:39 +04:00
|
|
|
*ihp = (line << APIC_INT_LINE_SHIFT) | sc->sc_irq[line];
|
2012-05-22 00:58:39 +04:00
|
|
|
|
|
|
|
return APIC_INT_IRQ(*ihp) == 0;
|
2009-04-30 11:08:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
apic_intr_string(void *v, pci_intr_handle_t ih)
|
|
|
|
{
|
|
|
|
static char buf[32];
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "line %ld irq %ld",
|
|
|
|
APIC_INT_LINE(ih), APIC_INT_IRQ(ih));
|
|
|
|
|
2012-05-22 00:58:39 +04:00
|
|
|
return buf;
|
2009-04-30 11:08:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
|
|
|
apic_intr_establish(void *v, pci_intr_handle_t ih,
|
|
|
|
int pri, int (*handler)(void *), void *arg)
|
|
|
|
{
|
|
|
|
struct elroy_softc *sc = v;
|
|
|
|
volatile struct elroy_regs *r = sc->sc_regs;
|
2012-04-03 16:07:26 +04:00
|
|
|
struct cpu_info *ci = &cpus[0];
|
|
|
|
hppa_hpa_t hpa = ci->ci_hpa;
|
2009-04-30 11:08:39 +04:00
|
|
|
struct evcnt *cnt;
|
|
|
|
struct apic_iv *aiv, *biv;
|
|
|
|
void *iv;
|
|
|
|
int irq = APIC_INT_IRQ(ih);
|
|
|
|
int line = APIC_INT_LINE(ih);
|
|
|
|
uint32_t ent0;
|
|
|
|
|
|
|
|
/* no mapping or bogus */
|
|
|
|
if (irq <= 0 || irq > 31)
|
2012-05-22 00:58:39 +04:00
|
|
|
return NULL;
|
2009-04-30 11:08:39 +04:00
|
|
|
|
|
|
|
aiv = malloc(sizeof(struct apic_iv), M_DEVBUF, M_NOWAIT);
|
|
|
|
if (aiv == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2012-04-14 14:43:19 +04:00
|
|
|
cnt = malloc(sizeof(struct evcnt), M_DEVBUF, M_NOWAIT);
|
|
|
|
if (cnt == NULL) {
|
|
|
|
free(aiv, M_DEVBUF);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-04-30 11:08:39 +04:00
|
|
|
aiv->sc = sc;
|
|
|
|
aiv->ih = ih;
|
|
|
|
aiv->handler = handler;
|
|
|
|
aiv->arg = arg;
|
|
|
|
aiv->next = NULL;
|
2012-04-14 14:43:19 +04:00
|
|
|
aiv->cnt = cnt;
|
|
|
|
|
|
|
|
biv = apic_intr_list[irq];
|
|
|
|
if (biv == NULL) {
|
2012-05-23 20:11:37 +04:00
|
|
|
iv = hp700_intr_establish(pri, apic_intr, aiv, &ci->ci_ir, irq);
|
2012-04-14 14:43:19 +04:00
|
|
|
if (iv == NULL) {
|
2009-04-30 11:08:39 +04:00
|
|
|
free(aiv, M_DEVBUF);
|
2012-04-14 14:43:19 +04:00
|
|
|
free(cnt, M_DEVBUF);
|
|
|
|
|
2009-04-30 11:08:39 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
2012-04-14 14:43:19 +04:00
|
|
|
}
|
2009-04-30 11:08:39 +04:00
|
|
|
|
2012-04-14 14:43:19 +04:00
|
|
|
snprintf(aiv->aiv_name, sizeof(aiv->aiv_name), "line %d irq %d",
|
|
|
|
line, irq);
|
2010-12-05 15:19:09 +03:00
|
|
|
|
2012-04-14 14:43:19 +04:00
|
|
|
evcnt_attach_dynamic(cnt, EVCNT_TYPE_INTR, NULL,
|
|
|
|
device_xname(sc->sc_dv), aiv->aiv_name);
|
|
|
|
|
|
|
|
if (biv) {
|
2009-04-30 11:08:39 +04:00
|
|
|
while (biv->next)
|
|
|
|
biv = biv->next;
|
|
|
|
biv->next = aiv;
|
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
2012-04-14 14:43:19 +04:00
|
|
|
ent0 = (31 - irq) & APIC_ENT0_VEC;
|
|
|
|
ent0 |= apic_get_int_ent0(sc, line);
|
2009-04-30 11:08:39 +04:00
|
|
|
#if 0
|
2012-04-14 14:43:19 +04:00
|
|
|
if (cold) {
|
|
|
|
sc->sc_imr |= (1 << irq);
|
|
|
|
ent0 |= APIC_ENT0_MASK;
|
|
|
|
}
|
2009-04-30 11:08:39 +04:00
|
|
|
#endif
|
2012-04-14 14:43:19 +04:00
|
|
|
apic_write(sc->sc_regs, APIC_ENT0(line), APIC_ENT0_MASK);
|
|
|
|
apic_write(sc->sc_regs, APIC_ENT1(line),
|
|
|
|
((hpa & 0x0ff00000) >> 4) | ((hpa & 0x000ff000) << 12));
|
|
|
|
apic_write(sc->sc_regs, APIC_ENT0(line), ent0);
|
2009-04-30 11:08:39 +04:00
|
|
|
|
2012-04-14 14:43:19 +04:00
|
|
|
/* Signal EOI. */
|
|
|
|
elroy_write32(&r->apic_eoi,
|
|
|
|
htole32((31 - irq) & APIC_ENT0_VEC));
|
2009-04-30 11:08:39 +04:00
|
|
|
|
2012-04-14 14:43:19 +04:00
|
|
|
apic_intr_list[irq] = aiv;
|
2009-04-30 11:08:39 +04:00
|
|
|
|
2012-05-22 00:58:39 +04:00
|
|
|
return arg;
|
2009-04-30 11:08:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
apic_intr_disestablish(void *v, void *cookie)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
apic_intr(void *v)
|
|
|
|
{
|
|
|
|
struct apic_iv *iv = v;
|
|
|
|
struct elroy_softc *sc = iv->sc;
|
|
|
|
volatile struct elroy_regs *r = sc->sc_regs;
|
2010-04-24 14:41:21 +04:00
|
|
|
uint32_t irq = APIC_INT_IRQ(iv->ih);
|
2009-04-30 11:08:39 +04:00
|
|
|
int claimed = 0;
|
|
|
|
|
|
|
|
while (iv) {
|
2012-04-14 14:43:19 +04:00
|
|
|
claimed = iv->handler(iv->arg);
|
|
|
|
if (claimed && iv->cnt)
|
|
|
|
iv->cnt->ev_count++;
|
|
|
|
if (claimed)
|
|
|
|
break;
|
2009-04-30 11:08:39 +04:00
|
|
|
iv = iv->next;
|
|
|
|
}
|
2010-04-24 14:41:21 +04:00
|
|
|
/* Signal EOI. */
|
|
|
|
elroy_write32(&r->apic_eoi, htole32((31 - irq) & APIC_ENT0_VEC));
|
2009-04-30 11:08:39 +04:00
|
|
|
|
2012-05-22 00:58:39 +04:00
|
|
|
return claimed;
|
2009-04-30 11:08:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
apic_get_int_tbl(struct elroy_softc *sc)
|
|
|
|
{
|
2011-01-04 13:42:33 +03:00
|
|
|
int nentries;
|
2009-04-30 11:08:39 +04:00
|
|
|
size_t size;
|
2011-01-04 13:42:33 +03:00
|
|
|
int err;
|
2009-04-30 11:08:39 +04:00
|
|
|
|
2011-01-04 13:42:33 +03:00
|
|
|
err = pdcproc_pci_inttblsz(&nentries);
|
|
|
|
if (err)
|
2009-04-30 11:08:39 +04:00
|
|
|
return;
|
2011-01-27 16:57:39 +03:00
|
|
|
|
2011-01-04 13:42:33 +03:00
|
|
|
size = nentries * sizeof(struct pdc_pat_pci_rt);
|
|
|
|
sc->sc_int_tbl_sz = nentries;
|
2009-04-30 11:08:39 +04:00
|
|
|
sc->sc_int_tbl = malloc(size, M_DEVBUF, M_NOWAIT);
|
|
|
|
if (sc->sc_int_tbl == NULL)
|
|
|
|
return;
|
|
|
|
|
2011-01-04 13:42:33 +03:00
|
|
|
pdcproc_pci_gettable(nentries, size, sc->sc_int_tbl);
|
2009-04-30 11:08:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t
|
|
|
|
apic_get_int_ent0(struct elroy_softc *sc, int line)
|
|
|
|
{
|
|
|
|
volatile struct elroy_regs *r = sc->sc_regs;
|
|
|
|
int trigger = MPS_INT(MPS_INTPO_DEF, MPS_INTTR_DEF);
|
|
|
|
uint32_t ent0 = APIC_ENT0_LOW | APIC_ENT0_LEV;
|
|
|
|
int bus, mpspo, mpstr;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
bus = le32toh(elroy_read32(&r->busnum)) & 0xff;
|
|
|
|
for (i = 0; i < sc->sc_int_tbl_sz; i++) {
|
|
|
|
if (bus == sc->sc_int_tbl[i].bus &&
|
|
|
|
line == sc->sc_int_tbl[i].line)
|
|
|
|
trigger = sc->sc_int_tbl[i].trigger;
|
|
|
|
}
|
|
|
|
|
|
|
|
mpspo = (trigger >> MPS_INTPO_SHIFT) & MPS_INTPO_MASK;
|
|
|
|
mpstr = (trigger >> MPS_INTTR_SHIFT) & MPS_INTTR_MASK;
|
|
|
|
|
|
|
|
switch (mpspo) {
|
|
|
|
case MPS_INTPO_DEF:
|
|
|
|
break;
|
|
|
|
case MPS_INTPO_ACTHI:
|
|
|
|
ent0 &= ~APIC_ENT0_LOW;
|
|
|
|
break;
|
|
|
|
case MPS_INTPO_ACTLO:
|
|
|
|
ent0 |= APIC_ENT0_LOW;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
panic("unknown MPS interrupt polarity %d", mpspo);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(mpstr) {
|
|
|
|
case MPS_INTTR_DEF:
|
|
|
|
break;
|
|
|
|
case MPS_INTTR_LEVEL:
|
|
|
|
ent0 |= APIC_ENT0_LEV;
|
|
|
|
break;
|
|
|
|
case MPS_INTTR_EDGE:
|
|
|
|
ent0 &= ~APIC_ENT0_LEV;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
panic("unknown MPS interrupt trigger %d", mpstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ent0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void
|
|
|
|
apic_dump(struct elroy_softc *sc)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < sc->sc_nints; i++)
|
|
|
|
printf("0x%04x 0x%04x\n", apic_read(sc->sc_regs, APIC_ENT0(i)),
|
|
|
|
apic_read(sc->sc_regs, APIC_ENT1(i)));
|
|
|
|
|
|
|
|
for (i = 0; i < sc->sc_int_tbl_sz; i++) {
|
|
|
|
printf("type=%x ", sc->sc_int_tbl[i].type);
|
|
|
|
printf("len=%d ", sc->sc_int_tbl[i].len);
|
2011-01-27 16:57:39 +03:00
|
|
|
printf("itype=%d ", sc->sc_int_tbl[i].itype);
|
|
|
|
printf("trigger=%x ", sc->sc_int_tbl[i].trigger);
|
|
|
|
printf("pin=%x ", sc->sc_int_tbl[i].pin);
|
2009-04-30 11:08:39 +04:00
|
|
|
printf("bus=%d ", sc->sc_int_tbl[i].bus);
|
|
|
|
printf("line=%d ", sc->sc_int_tbl[i].line);
|
|
|
|
printf("addr=%llx\n", sc->sc_int_tbl[i].addr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|