1996-01-31 11:46:42 +03:00
|
|
|
|
/* $NetBSD: asic.c,v 1.8 1996/01/31 08:47:14 jonathan Exp $ */
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 1994, 1995 Carnegie-Mellon University.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Author: Keith Bostic, Chris G. Demetriou, Jonathan Stone
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify and distribute this software and
|
|
|
|
|
* its documentation is hereby granted, provided that both the copyright
|
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
|
*
|
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
|
|
|
|
|
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
|
*
|
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
|
* School of Computer Science
|
|
|
|
|
* Carnegie Mellon University
|
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
|
*
|
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
|
#include <sys/systm.h>
|
|
|
|
|
#include <sys/device.h>
|
1996-01-30 01:52:15 +03:00
|
|
|
|
#include <dev/tc/tcvar.h>
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
#include <machine/autoconf.h>
|
|
|
|
|
#include <machine/pte.h>
|
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
#include <machine/rpb.h>
|
|
|
|
|
#include <alpha/tc/tc.h>
|
|
|
|
|
#include <alpha/tc/asic.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef pmax
|
|
|
|
|
#include <pmax/pmax/pmaxtype.h>
|
|
|
|
|
#include <pmax/pmax/asic.h>
|
|
|
|
|
#include <pmax/pmax/kn01.h>
|
|
|
|
|
#include <pmax/pmax/kn02.h>
|
|
|
|
|
#include <pmax/pmax/kmin.h>
|
|
|
|
|
#include <pmax/pmax/maxine.h>
|
|
|
|
|
#include <pmax/pmax/kn03.h>
|
|
|
|
|
#include <pmax/pmax/turbochannel.h> /* interrupt enable declaration */
|
|
|
|
|
|
|
|
|
|
#include <pmax/pmax/kn03.h>
|
|
|
|
|
#include <pmax/pmax/kmin.h>
|
|
|
|
|
#include <machine/machConst.h>
|
|
|
|
|
#include <pmax/pmax/nameglue.h>
|
|
|
|
|
|
|
|
|
|
extern int cputype;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
struct asic_softc {
|
|
|
|
|
struct device sc_dv;
|
|
|
|
|
caddr_t sc_base;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Definition of the driver for autoconfig. */
|
|
|
|
|
int asicmatch __P((struct device *, void *, void *));
|
|
|
|
|
void asicattach __P((struct device *, struct device *, void *));
|
|
|
|
|
int asicprint(void *, char *);
|
1996-01-31 11:46:42 +03:00
|
|
|
|
|
|
|
|
|
/* Device locators. */
|
|
|
|
|
#define ioasiccf_offset cf_loc[0] /* offset */
|
|
|
|
|
|
|
|
|
|
#define IOASIC_OFFSET_UNKNOWN -1
|
|
|
|
|
|
1995-08-18 14:15:09 +04:00
|
|
|
|
struct cfdriver ioasiccd =
|
1995-08-07 11:07:43 +04:00
|
|
|
|
{ NULL, "asic", asicmatch, asicattach, DV_DULL, sizeof(struct asic_softc) };
|
|
|
|
|
|
|
|
|
|
void asic_intr_establish __P((struct confargs *, intr_handler_t,
|
1995-09-12 11:28:06 +04:00
|
|
|
|
intr_arg_t));
|
1995-08-07 11:07:43 +04:00
|
|
|
|
void asic_intr_disestablish __P((struct confargs *));
|
1996-01-30 01:52:15 +03:00
|
|
|
|
caddr_t ioasic_cvtaddr __P((struct confargs *));
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
#ifndef pmax
|
|
|
|
|
int asic_intr __P((void *));
|
|
|
|
|
#endif
|
|
|
|
|
|
1995-09-12 11:28:06 +04:00
|
|
|
|
int asic_intrnull __P((intr_arg_t));
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
struct asic_slot {
|
|
|
|
|
struct confargs as_ca;
|
|
|
|
|
u_int as_bits;
|
|
|
|
|
intr_handler_t as_handler;
|
|
|
|
|
void *as_val;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#ifdef pmax
|
1996-01-31 11:46:42 +03:00
|
|
|
|
#define IOASIC_DEBUG
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
1996-01-30 01:52:15 +03:00
|
|
|
|
struct asic_slot *asic_slots;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
#include "ds-asic-conf.c"
|
1996-01-30 01:52:15 +03:00
|
|
|
|
#endif /*pmax*/
|
1995-08-29 13:43:37 +04:00
|
|
|
|
|
|
|
|
|
#ifdef alpha
|
1995-08-07 11:07:43 +04:00
|
|
|
|
struct asic_slot asic_slots[ASIC_MAX_NSLOTS] =
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
{ { "lance", /* XXX */ 0, 0x000c0000, },
|
1996-01-31 11:46:42 +03:00
|
|
|
|
ASIC_INTR_LANCE, asic_intrnull, (void *)(long)IOASIC_SLOT_LANCE, },
|
1995-08-07 11:07:43 +04:00
|
|
|
|
{ { "scc", /* XXX */ 1, 0x00100000, },
|
1996-01-31 11:46:42 +03:00
|
|
|
|
ASIC_INTR_SCC_0, asic_intrnull, (void *)(long)IOASIC_SLOT_SCC0, },
|
1995-08-07 11:07:43 +04:00
|
|
|
|
{ { "scc", /* XXX */ 2, 0x00180000, },
|
1996-01-31 11:46:42 +03:00
|
|
|
|
ASIC_INTR_SCC_1, asic_intrnull, (void *)(long)IOASIC_SLOT_SCC1, },
|
1995-08-07 11:07:43 +04:00
|
|
|
|
{ { "dallas_rtc", /* XXX */ 3, 0x00200000, },
|
1996-01-31 11:46:42 +03:00
|
|
|
|
0, asic_intrnull, (void *)(long)IOASIC_SLOT_RTC, },
|
1995-08-07 11:07:43 +04:00
|
|
|
|
{ { "AMD79c30", /* XXX */ 4, 0x00240000, },
|
1996-01-31 11:46:42 +03:00
|
|
|
|
0 /* XXX */, asic_intrnull, (void *)(long)IOASIC_SLOT_ISDN, },
|
1995-08-07 11:07:43 +04:00
|
|
|
|
};
|
1995-08-29 13:43:37 +04:00
|
|
|
|
#endif /*alpha*/
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
#ifdef IOASIC_DEBUG
|
|
|
|
|
#define IOASIC_DPRINTF(x) printf x
|
1996-01-30 01:52:15 +03:00
|
|
|
|
#else
|
1996-01-31 11:46:42 +03:00
|
|
|
|
#define IOASIC_DPRINTF(x) (void) x
|
1996-01-30 01:52:15 +03:00
|
|
|
|
#endif
|
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
caddr_t ioasic_base; /* XXX XXX XXX */
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
asicmatch(parent, cfdata, aux)
|
|
|
|
|
struct device *parent;
|
|
|
|
|
void *cfdata;
|
|
|
|
|
void *aux;
|
|
|
|
|
{
|
|
|
|
|
struct cfdata *cf = cfdata;
|
|
|
|
|
struct confargs *ca = aux;
|
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
IOASIC_DPRINTF(("asicmatch: %s slot %d offset 0x%x pri %d\n",
|
1996-01-30 01:52:15 +03:00
|
|
|
|
ca->ca_name, ca->ca_slot, ca->ca_offset, ca->ca_slotpri));
|
|
|
|
|
|
|
|
|
|
/* An IOCTL asic can only occur on the turbochannel, anyway. */
|
|
|
|
|
#ifdef notyet
|
|
|
|
|
if (parent != &tccd)
|
1995-08-07 11:07:43 +04:00
|
|
|
|
return (0);
|
1996-01-30 01:52:15 +03:00
|
|
|
|
#endif
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
/* The 3MAX (kn02) is special. */
|
1996-01-30 01:52:15 +03:00
|
|
|
|
if (TC_BUS_MATCHNAME(ca, KN02_ASIC_NAME)) {
|
1995-08-07 11:07:43 +04:00
|
|
|
|
printf("(configuring KN02 system slot as asic)\n");
|
|
|
|
|
goto gotasic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make sure that we're looking for this type of device. */
|
1996-01-30 01:52:15 +03:00
|
|
|
|
if (!TC_BUS_MATCHNAME(ca, "IOCTL "))
|
1995-08-07 11:07:43 +04:00
|
|
|
|
return (0);
|
|
|
|
|
gotasic:
|
|
|
|
|
|
|
|
|
|
/* See if the unit number is valid. */
|
|
|
|
|
switch (cputype) {
|
|
|
|
|
case DS_3MIN:
|
|
|
|
|
if (cf->cf_unit > 0)
|
|
|
|
|
return (0);
|
1995-08-18 14:15:09 +04:00
|
|
|
|
asic_slots = kn03_asic_slots; /* XXX - 3min same as kn03? */
|
1995-08-07 11:07:43 +04:00
|
|
|
|
break;
|
|
|
|
|
case DS_MAXINE:
|
|
|
|
|
if (cf->cf_unit > 0)
|
|
|
|
|
return (0);
|
1995-08-18 14:15:09 +04:00
|
|
|
|
asic_slots = xine_asic_slots;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
break;
|
|
|
|
|
case DS_3MAX:
|
|
|
|
|
if (cf->cf_unit > 0)
|
|
|
|
|
return (0);
|
|
|
|
|
asic_slots = kn02_asic_slots;
|
|
|
|
|
break;
|
|
|
|
|
case DS_3MAXPLUS:
|
|
|
|
|
if (cf->cf_unit > 0)
|
|
|
|
|
return (0);
|
|
|
|
|
asic_slots = kn03_asic_slots;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
printf("no ASIC config table for this machine\n");
|
|
|
|
|
return (0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
asicattach(parent, self, aux)
|
|
|
|
|
struct device *parent, *self;
|
|
|
|
|
void *aux;
|
|
|
|
|
{
|
|
|
|
|
struct asic_softc *sc = (struct asic_softc *)self;
|
|
|
|
|
struct confargs *ca = aux;
|
|
|
|
|
struct confargs *nca;
|
|
|
|
|
int i;
|
|
|
|
|
extern int cputype;
|
|
|
|
|
|
|
|
|
|
if (asic_slots == NULL)
|
|
|
|
|
panic("asicattach: no asic_slot map\n");
|
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
IOASIC_DPRINTF(("asicattach: %s\n", sc->sc_dv.dv_xname));
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
1996-01-30 01:52:15 +03:00
|
|
|
|
sc->sc_base = (caddr_t)ca->ca_addr;
|
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
ioasic_base = sc->sc_base; /* XXX XXX XXX */
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
1995-08-10 08:30:41 +04:00
|
|
|
|
#ifdef pmax
|
|
|
|
|
printf("\n");
|
|
|
|
|
#else /* Alpha AXP: select ASIC speed */
|
1995-08-07 11:07:43 +04:00
|
|
|
|
#ifdef DEC_3000_300
|
|
|
|
|
if (cputype == ST_DEC_3000_300) {
|
1996-01-31 11:46:42 +03:00
|
|
|
|
*(volatile u_int *)IOASIC_REG_CSR(sc->sc_base) |=
|
|
|
|
|
IOASIC_CSR_FASTMODE;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
MB();
|
|
|
|
|
printf(": slow mode\n");
|
|
|
|
|
} else
|
1995-08-10 08:30:41 +04:00
|
|
|
|
#endif /*DEC_3000_300*/
|
1995-08-07 11:07:43 +04:00
|
|
|
|
printf(": fast mode\n");
|
|
|
|
|
|
|
|
|
|
/* Decstations use hand-craft code to enable asic interrupts */
|
|
|
|
|
BUS_INTR_ESTABLISH(ca, asic_intr, sc);
|
|
|
|
|
|
1995-08-10 08:30:41 +04:00
|
|
|
|
#endif /* Alpha AXP: select ASIC speed */
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The MAXINE has seven pseudo-slots in its system slot */
|
|
|
|
|
#define ASIC_MAX_NSLOTS 7 /*XXX*/
|
|
|
|
|
|
|
|
|
|
/* Try to configure each CPU-internal device */
|
|
|
|
|
for (i = 0; i < ASIC_MAX_NSLOTS; i++) {
|
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
IOASIC_DPRINTF(("asicattach: entry %d, base addr %x\n",
|
1996-01-30 01:52:15 +03:00
|
|
|
|
i, sc->sc_base));
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
nca = &asic_slots[i].as_ca;
|
|
|
|
|
if (nca == NULL) panic ("bad asic table\n");
|
1996-01-30 01:52:15 +03:00
|
|
|
|
if (nca->ca_name == NULL || nca->ca_name[0] == 0)
|
1995-08-07 11:07:43 +04:00
|
|
|
|
break;
|
1996-01-30 01:52:15 +03:00
|
|
|
|
nca->ca_addr = ((u_int)sc->sc_base) + nca->ca_offset;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
IOASIC_DPRINTF((" adding %s subslot %d offset %x addr %x\n",
|
1996-01-30 01:52:15 +03:00
|
|
|
|
nca->ca_name, nca->ca_slot, nca->ca_offset,
|
|
|
|
|
nca->ca_addr));
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
/* Tell the autoconfig machinery we've found the hardware. */
|
|
|
|
|
config_found(self, nca, asicprint);
|
|
|
|
|
}
|
1996-01-31 11:46:42 +03:00
|
|
|
|
IOASIC_DPRINTF(("asicattach: done\n"));
|
1995-08-07 11:07:43 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
asicprint(aux, pnp)
|
|
|
|
|
void *aux;
|
|
|
|
|
char *pnp;
|
|
|
|
|
{
|
|
|
|
|
struct confargs *ca = aux;
|
|
|
|
|
|
|
|
|
|
if (pnp)
|
|
|
|
|
printf("%s at %s", ca->ca_name, pnp);
|
|
|
|
|
printf(" offset 0x%lx", ca->ca_offset);
|
1995-09-12 11:28:06 +04:00
|
|
|
|
printf(" priority %d", ca->ca_slotpri);
|
1995-08-07 11:07:43 +04:00
|
|
|
|
return (UNCONF);
|
|
|
|
|
}
|
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
int
|
|
|
|
|
ioasic_submatch(match, d)
|
|
|
|
|
struct cfdata *match;
|
|
|
|
|
/*struct ioasicdev_attach_args *d;*/
|
|
|
|
|
struct confargs *d;
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
return ((match->ioasiccf_offset == /*d->iada_offset*/ d->ca_offset) ||
|
|
|
|
|
(match->ioasiccf_offset == IOASIC_OFFSET_UNKNOWN));
|
|
|
|
|
}
|
|
|
|
|
|
1995-08-07 11:07:43 +04:00
|
|
|
|
/*
|
|
|
|
|
* Save interrupt slotname and enable mask (??)
|
1996-01-30 01:52:15 +03:00
|
|
|
|
* On decstations this isn't useful, as the turbochannel
|
1995-08-07 11:07:43 +04:00
|
|
|
|
* decstations all have incompatible ways of mapping interrupts
|
|
|
|
|
* to IO ASIC or r3000 interrupt bits.
|
|
|
|
|
* Instead of writing "as_bits" directly into an IOASIC interrupt-enable
|
|
|
|
|
* register, Decstations use a machine-dependent function that
|
|
|
|
|
* interpret (pseudo-) slot numbers and do ``the right thing'' to enable
|
|
|
|
|
* or disable interrupts for a specific slot (or pseudo-slot), by
|
|
|
|
|
* slot number, on that given CPU.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
asic_intr_establish(ca, handler, val)
|
|
|
|
|
struct confargs *ca;
|
|
|
|
|
intr_handler_t handler;
|
1995-09-12 11:28:06 +04:00
|
|
|
|
intr_arg_t val;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
{
|
|
|
|
|
|
1996-01-30 01:52:15 +03:00
|
|
|
|
#if defined(DIAGNOSTIC) && defined(alpha)
|
1996-01-31 11:46:42 +03:00
|
|
|
|
if (ca->ca_slot == IOASIC_SLOT_RTC)
|
1995-08-07 11:07:43 +04:00
|
|
|
|
panic("setting clock interrupt incorrectly");
|
1996-01-30 01:52:15 +03:00
|
|
|
|
#endif /*defined(DIAGNOSTIC) && defined(alpha)*/
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
/* XXX SHOULD NOT BE THIS LITERAL */
|
|
|
|
|
if (asic_slots[ca->ca_slot].as_handler != asic_intrnull)
|
|
|
|
|
/*panic*/ printf("asic_intr_establish: slot %d twice", ca->ca_slot);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* XXX We need to invent a better interface to machine-dependent
|
|
|
|
|
* interrupt-enable code, or redo the Decstation configuration
|
|
|
|
|
* tables with unused entries, so that slot is always equal
|
1996-01-30 01:52:15 +03:00
|
|
|
|
* to "priority" (software pseudo-slot number). FIXME.
|
1995-08-07 11:07:43 +04:00
|
|
|
|
*/
|
1996-01-31 11:46:42 +03:00
|
|
|
|
#if defined(IOASIC_DEBUG) && 0
|
1996-01-30 01:52:15 +03:00
|
|
|
|
printf("asic: %s: intr for entry %d slot %d pri %d\n",
|
|
|
|
|
ca->ca_name, ca->ca_slot, ca->ca_slotpri,
|
1995-08-07 11:07:43 +04:00
|
|
|
|
asic_slots[ca->ca_slot].as_val);
|
1996-01-31 11:46:42 +03:00
|
|
|
|
#endif /*IOASIC_DEBUG*/
|
1996-01-30 01:52:15 +03:00
|
|
|
|
|
|
|
|
|
#ifdef pmax
|
1995-09-25 23:33:26 +03:00
|
|
|
|
tc_enable_interrupt(ca->ca_slotpri, handler, val, 1);
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
#else /* Alpha AXP */
|
|
|
|
|
|
|
|
|
|
/* Save handler info so it can be enabled later (??) */
|
|
|
|
|
asic_slots[ca->ca_slot].as_handler = handler;
|
|
|
|
|
asic_slots[ca->ca_slot].as_val = val;
|
|
|
|
|
#endif /* Alpha AXP */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
asic_intr_disestablish(ca)
|
|
|
|
|
struct confargs *ca;
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
#ifdef pmax
|
|
|
|
|
panic("asic_intr_disestablish: shouldn't ever be called\n");
|
|
|
|
|
#else
|
1996-01-31 11:46:42 +03:00
|
|
|
|
if (ca->ca_slot == IOASIC_SLOT_RTC)
|
1995-08-07 11:07:43 +04:00
|
|
|
|
panic("asic_intr_disestablish: can't do clock interrupt");
|
|
|
|
|
|
|
|
|
|
/* XXX SHOULD NOT BE THIS LITERAL */
|
|
|
|
|
if (asic_slots[ca->ca_slot].as_handler == asic_intrnull)
|
|
|
|
|
panic("asic_intr_disestablish: slot %d missing intr",
|
|
|
|
|
ca->ca_slot);
|
|
|
|
|
|
|
|
|
|
asic_slots[ca->ca_slot].as_handler = dsasic_intrnull;
|
|
|
|
|
asic_slots[ca->ca_slot].as_val = (void *)(long)ca->ca_slot;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ioasic_intr_establish(dev, cookie, level, handler, val)
|
|
|
|
|
struct device *dev;
|
|
|
|
|
void *cookie;
|
|
|
|
|
tc_intrlevel_t level;
|
|
|
|
|
intr_handler_t handler;
|
|
|
|
|
void *val;
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
(*tc_enable_interrupt)((int)cookie, handler, val, 1);
|
|
|
|
|
}
|
|
|
|
|
|
1996-01-30 01:52:15 +03:00
|
|
|
|
#ifdef alpha
|
1995-08-07 11:07:43 +04:00
|
|
|
|
/*
|
|
|
|
|
* asic_intr --
|
|
|
|
|
* ASIC interrupt handler.
|
|
|
|
|
*/
|
|
|
|
|
int
|
|
|
|
|
asic_intr(val)
|
|
|
|
|
void *val;
|
|
|
|
|
{
|
|
|
|
|
register struct asic_softc *sc = val;
|
|
|
|
|
register int i, ifound;
|
|
|
|
|
int gifound;
|
|
|
|
|
u_int32_t sir, junk;
|
|
|
|
|
volatile u_int32_t *sirp, *junkp;
|
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
sirp = (volatile u_int32_t *)IOASIC_REG_INTR(sc->sc_base);
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
gifound = 0;
|
|
|
|
|
do {
|
|
|
|
|
ifound = 0;
|
|
|
|
|
MB();
|
|
|
|
|
MAGIC_READ;
|
|
|
|
|
MB();
|
|
|
|
|
|
|
|
|
|
sir = *sirp;
|
|
|
|
|
for (i = 0; i < ASIC_MAX_NSLOTS; i++)
|
|
|
|
|
if (sir & asic_slots[i].as_bits) {
|
|
|
|
|
(void)(*asic_slots[i].as_handler)
|
|
|
|
|
(asic_slots[i].as_val);
|
|
|
|
|
ifound = 1;
|
|
|
|
|
}
|
|
|
|
|
gifound |= ifound;
|
|
|
|
|
} while (ifound);
|
|
|
|
|
|
|
|
|
|
return (gifound);
|
|
|
|
|
}
|
|
|
|
|
#endif /*!pmax*/
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
asic_intrnull(val)
|
1995-09-12 11:28:06 +04:00
|
|
|
|
intr_arg_t val;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
panic("uncaught IOCTL ASIC intr for slot %ld\n", (long)val);
|
|
|
|
|
}
|
1996-01-31 11:46:42 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX */
|
|
|
|
|
char *
|
|
|
|
|
ioasic_lance_ether_address()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
return (u_char *)IOASIC_SYS_ETHER_ADDRESS(ioasic_base);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ioasic_lance_dma_setup(v)
|
|
|
|
|
void *v;
|
|
|
|
|
{
|
|
|
|
|
volatile u_int32_t *ldp;
|
|
|
|
|
tc_addr_t tca;
|
|
|
|
|
|
|
|
|
|
tca = (tc_addr_t)v;
|
|
|
|
|
|
|
|
|
|
ldp = (volatile u_int *)IOASIC_REG_LANCE_DMAPTR(ioasic_base);
|
|
|
|
|
*ldp = ((tca << 3) & ~(tc_addr_t)0x1f) | ((tca >> 29) & 0x1f);
|
|
|
|
|
tc_wmb();
|
|
|
|
|
|
|
|
|
|
*(volatile u_int32_t *)IOASIC_REG_CSR(ioasic_base) |=
|
|
|
|
|
IOASIC_CSR_DMAEN_LANCE;
|
|
|
|
|
tc_mb();
|
|
|
|
|
}
|