1998-04-19 14:18:20 +04:00
|
|
|
|
/* $NetBSD: asic.c,v 1.27 1998/04/19 10:18:20 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>
|
1996-05-29 10:29:02 +04:00
|
|
|
|
#include <dev/tc/ioasicvar.h>
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
1997-06-16 08:18:57 +04:00
|
|
|
|
#include <machine/bus.h> /* wbflush() */
|
1995-08-07 11:07:43 +04:00
|
|
|
|
#include <machine/autoconf.h>
|
|
|
|
|
|
1998-03-25 09:22:19 +03:00
|
|
|
|
#ifdef alpha
|
1995-08-07 11:07:43 +04:00
|
|
|
|
#include <machine/rpb.h>
|
|
|
|
|
#include <alpha/tc/tc.h>
|
|
|
|
|
#include <alpha/tc/asic.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef pmax
|
|
|
|
|
#include <pmax/pmax/pmaxtype.h>
|
1998-03-25 09:22:19 +03:00
|
|
|
|
#include <pmax/pmax/machdep.h> /* XXX ioasic_init( */
|
1995-08-07 11:07:43 +04:00
|
|
|
|
#include <pmax/pmax/asic.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/kmin.h>
|
|
|
|
|
#include <pmax/pmax/nameglue.h>
|
|
|
|
|
|
1998-04-19 14:18:20 +04:00
|
|
|
|
/*
|
|
|
|
|
* Which system models were configured?
|
|
|
|
|
*/
|
|
|
|
|
#include "opt_dec_3max.h"
|
|
|
|
|
#include "opt_dec_3min.h"
|
|
|
|
|
#include "opt_dec_3maxplus.h"
|
|
|
|
|
#include "opt_dec_maxine.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define C(x) ((void*)(x))
|
|
|
|
|
#define ASIC_NDEVS(x) (sizeof(x)/sizeof(x[0]))
|
|
|
|
|
#define ARRAY_SIZEOF(x) (sizeof((x)) / sizeof ((x)[0]))
|
|
|
|
|
|
|
|
|
|
#if defined(DEC_3MAXPLUS) || defined(DEC_3MIN)
|
|
|
|
|
struct ioasicdev_attach_args kn03_ioasic_devs[] = {
|
|
|
|
|
/* 0 */ { "lance", 0x0C0000, 0, C(KN03_LANCE_SLOT) },
|
|
|
|
|
/* 1 */ { "scc", 0x100000, 0, C(KN03_SCC0_SLOT) },
|
|
|
|
|
/* 2 */ { "scc", 0x180000, 0, C(KN03_SCC1_SLOT) },
|
|
|
|
|
/* 3 */ { "mc146818", 0x200000, 0, C(0), },
|
|
|
|
|
/* 4 */ { "asc", 0x300000, 0, C(KN03_SCSI_SLOT) },
|
|
|
|
|
};
|
|
|
|
|
const int nkn03_ioasic_devs = ARRAY_SIZEOF(kn03_ioasic_devs);
|
|
|
|
|
#endif /* DEC_3MAXPLUS || DEC_3MIN */
|
|
|
|
|
|
|
|
|
|
#if defined(DEC_MAXINE)
|
|
|
|
|
struct ioasicdev_attach_args xine_ioasic_devs[] = {
|
|
|
|
|
/* 0 */ { "lance", 0x0C0000, 0, C(XINE_LANCE_SLOT), },
|
|
|
|
|
/* 1 */ { "scc", 0x100000, 0, C(XINE_SCC0_SLOT), },
|
|
|
|
|
/* 2 */ { "mc146818", 0x200000, 0, C(0), },
|
|
|
|
|
/* 3 */ { "isdn", 0x240000, 0, C(XINE_ISDN_SLOT), },
|
|
|
|
|
/* 4 */ { "dtop", 0x280000, 0, C(XINE_DTOP_SLOT), },
|
|
|
|
|
/* 5 */ { "fdc", 0x2C0000, 0, C(XINE_FLOPPY_SLOT), },
|
|
|
|
|
/* 6 */ { "asc", 0x300000, 0, C(XINE_SCSI_SLOT), },
|
|
|
|
|
};
|
|
|
|
|
const int nxine_ioasic_devs = ARRAY_SIZEOF(xine_ioasic_devs);
|
|
|
|
|
#endif /* DEC_MAXINE */
|
|
|
|
|
|
|
|
|
|
#if defined(DEC_3MAX)
|
|
|
|
|
struct ioasic_dev kn02_ioasic_devs[] = {
|
|
|
|
|
/* 0 */ { "dc", 0x200000, 0, C(7), },
|
|
|
|
|
/* 0 */ { "mc146818", 0x280000, 0, C(0), },
|
|
|
|
|
const int n3max_ioasic_devs = ARRAY_SIZEOF(3max_ioasic_devs);
|
|
|
|
|
};
|
|
|
|
|
#endif /* DEC_3MAX */
|
|
|
|
|
#endif /* pmax */
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
struct asic_softc {
|
|
|
|
|
struct device sc_dv;
|
1996-05-29 10:29:02 +04:00
|
|
|
|
tc_addr_t sc_base;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Definition of the driver for autoconfig. */
|
1998-04-19 14:18:20 +04:00
|
|
|
|
int ioasicmatch __P((struct device *, struct cfdata *, void *));
|
|
|
|
|
void ioasicattach __P((struct device *, struct device *, void *));
|
|
|
|
|
int ioasicprint(void *, const char *);
|
1996-01-31 11:46:42 +03:00
|
|
|
|
|
|
|
|
|
/* Device locators. */
|
1997-07-17 05:17:45 +04:00
|
|
|
|
#include "locators.h"
|
|
|
|
|
#define ioasiccf_offset cf_loc[IOASICCF_OFFSET] /* offset */
|
1996-01-31 11:46:42 +03:00
|
|
|
|
|
1996-03-17 04:38:52 +03:00
|
|
|
|
struct cfattach ioasic_ca = {
|
1998-04-19 14:18:20 +04:00
|
|
|
|
sizeof(struct asic_softc), ioasicmatch, ioasicattach
|
1996-03-17 04:38:52 +03:00
|
|
|
|
};
|
|
|
|
|
|
1995-08-07 11:07:43 +04:00
|
|
|
|
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
|
|
|
|
|
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;
|
|
|
|
|
intr_handler_t as_handler;
|
1998-04-19 14:18:20 +04:00
|
|
|
|
void *iada_cookie;
|
|
|
|
|
u_int iada_intrbits;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#ifdef pmax
|
1996-10-06 10:29:51 +04:00
|
|
|
|
/*#define IOASIC_DEBUG*/
|
|
|
|
|
|
1998-04-19 14:18:20 +04:00
|
|
|
|
struct ioasicdev_attach_args *asic_slots;
|
1998-03-25 09:22:19 +03:00
|
|
|
|
|
|
|
|
|
extern tc_addr_t ioasic_base;
|
|
|
|
|
tc_addr_t ioasic_base = 0;
|
1996-01-30 01:52:15 +03:00
|
|
|
|
#endif /*pmax*/
|
1995-08-29 13:43:37 +04:00
|
|
|
|
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
#ifdef IOASIC_DEBUG
|
1996-10-13 07:39:27 +04:00
|
|
|
|
#define IOASIC_DPRINTF(x) printf x
|
1996-01-30 01:52:15 +03:00
|
|
|
|
#else
|
1997-05-24 13:30:27 +04:00
|
|
|
|
#define IOASIC_DPRINTF(x) do { if (0) printf x ; } while (0)
|
1996-01-30 01:52:15 +03:00
|
|
|
|
#endif
|
|
|
|
|
|
1995-08-07 11:07:43 +04:00
|
|
|
|
int
|
1998-04-19 14:18:20 +04:00
|
|
|
|
ioasicmatch(parent, cf, aux)
|
1995-08-07 11:07:43 +04:00
|
|
|
|
struct device *parent;
|
1997-07-21 09:39:02 +04:00
|
|
|
|
struct cfdata *cf;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
void *aux;
|
|
|
|
|
{
|
1996-05-29 10:29:02 +04:00
|
|
|
|
struct tc_attach_args *ta = aux;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
1996-01-31 11:46:42 +03:00
|
|
|
|
IOASIC_DPRINTF(("asicmatch: %s slot %d offset 0x%x pri %d\n",
|
1996-05-29 10:29:02 +04:00
|
|
|
|
ta->ta_modname, ta->ta_slot, ta->ta_offset, (int)ta->ta_cookie));
|
1996-01-30 01:52:15 +03:00
|
|
|
|
|
|
|
|
|
/* 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
|
|
|
|
|
1998-03-26 09:35:27 +03:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* XXX This is wrong.
|
|
|
|
|
*/
|
1995-08-07 11:07:43 +04:00
|
|
|
|
/* The 3MAX (kn02) is special. */
|
1996-05-29 10:29:02 +04:00
|
|
|
|
if (TC_BUS_MATCHNAME(ta, KN02_ASIC_NAME)) {
|
1998-03-26 09:35:27 +03:00
|
|
|
|
#if 0
|
1996-10-13 07:39:27 +04:00
|
|
|
|
printf("(configuring KN02 system slot as asic)\n");
|
1998-03-26 09:35:27 +03:00
|
|
|
|
#endif
|
1995-08-07 11:07:43 +04:00
|
|
|
|
goto gotasic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make sure that we're looking for this type of device. */
|
1996-05-29 10:29:02 +04:00
|
|
|
|
if (!TC_BUS_MATCHNAME(ta, "IOCTL "))
|
1995-08-07 11:07:43 +04:00
|
|
|
|
return (0);
|
|
|
|
|
gotasic:
|
|
|
|
|
|
1998-04-19 14:18:20 +04:00
|
|
|
|
if (cf->cf_unit > 0)
|
1995-08-07 11:07:43 +04:00
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
1998-04-19 14:18:20 +04:00
|
|
|
|
ioasicattach(parent, self, aux)
|
1995-08-07 11:07:43 +04:00
|
|
|
|
struct device *parent, *self;
|
|
|
|
|
void *aux;
|
|
|
|
|
{
|
|
|
|
|
struct asic_softc *sc = (struct asic_softc *)self;
|
1996-05-29 10:29:02 +04:00
|
|
|
|
struct tc_attach_args *ta = aux;
|
1998-04-19 14:18:20 +04:00
|
|
|
|
struct ioasicdev_attach_args idev;
|
|
|
|
|
int i, nslots;
|
|
|
|
|
|
|
|
|
|
/* See if the unit number is valid. */
|
|
|
|
|
switch (systype) {
|
|
|
|
|
case DS_3MIN:
|
|
|
|
|
case DS_3MAXPLUS:
|
|
|
|
|
/* 3min ioasic addressees are the same as 3maxplus. */
|
|
|
|
|
asic_slots = kn03_ioasic_devs;
|
|
|
|
|
nslots = nkn03_ioasic_devs;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifdef DEC_MAXINE
|
|
|
|
|
case DS_MAXINE:
|
|
|
|
|
asic_slots = xine_ioasic_devs;
|
|
|
|
|
nslots = nxine_ioasic_devs;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef DEC_3MAX
|
|
|
|
|
case DS_3MAX:
|
|
|
|
|
asic_slots = kn02_ioasic_devs;
|
|
|
|
|
nslots = nkn02_ioasic_devs;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
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-05-29 10:29:02 +04:00
|
|
|
|
sc->sc_base = ta->ta_addr;
|
1996-01-30 01:52:15 +03:00
|
|
|
|
|
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
|
1996-10-13 07:39:27 +04:00
|
|
|
|
printf("\n");
|
1995-08-10 08:30:41 +04:00
|
|
|
|
#else /* Alpha AXP: select ASIC speed */
|
1995-08-07 11:07:43 +04:00
|
|
|
|
#ifdef DEC_3000_300
|
1998-03-25 06:57:53 +03:00
|
|
|
|
if (systype == 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();
|
1996-10-13 07:39:27 +04:00
|
|
|
|
printf(": slow mode\n");
|
1995-08-07 11:07:43 +04:00
|
|
|
|
} else
|
1995-08-10 08:30:41 +04:00
|
|
|
|
#endif /*DEC_3000_300*/
|
1996-10-13 07:39:27 +04:00
|
|
|
|
printf(": fast mode\n");
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
/* Decstations use hand-craft code to enable asic interrupts */
|
1996-05-29 10:29:02 +04:00
|
|
|
|
BUS_INTR_ESTABLISH(ta, asic_intr, sc);
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
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 */
|
1998-04-19 14:18:20 +04:00
|
|
|
|
for (i = 0; i < nslots; i++) {
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
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
|
|
|
|
|
1998-04-19 14:18:20 +04:00
|
|
|
|
/* Compute address at runtime. Leave table readonly. */
|
|
|
|
|
idev = asic_slots[i];
|
|
|
|
|
idev.iada_addr =((u_long)sc->sc_base) + idev.iada_offset;
|
|
|
|
|
|
|
|
|
|
if (idev.iada_modname == NULL || idev.iada_modname[0] == 0)
|
1995-08-07 11:07:43 +04:00
|
|
|
|
break;
|
|
|
|
|
|
1998-04-19 14:18:20 +04:00
|
|
|
|
IOASIC_DPRINTF((" adding %s offset %x addr %x\n",
|
|
|
|
|
idev.iada_modname, idev.iada_offset, idev.iada_addr));
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
/* Tell the autoconfig machinery we've found the hardware. */
|
1998-04-19 14:18:20 +04:00
|
|
|
|
config_found(self, &idev, ioasicprint);
|
1995-08-07 11:07:43 +04:00
|
|
|
|
}
|
1996-01-31 11:46:42 +03:00
|
|
|
|
IOASIC_DPRINTF(("asicattach: done\n"));
|
1995-08-07 11:07:43 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
1998-04-19 14:18:20 +04:00
|
|
|
|
ioasicprint(aux, pnp)
|
1995-08-07 11:07:43 +04:00
|
|
|
|
void *aux;
|
1996-08-28 01:53:46 +04:00
|
|
|
|
const char *pnp;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
{
|
1996-05-29 10:29:02 +04:00
|
|
|
|
struct ioasicdev_attach_args *d = aux;
|
1995-08-07 11:07:43 +04:00
|
|
|
|
|
|
|
|
|
if (pnp)
|
1996-10-13 07:39:27 +04:00
|
|
|
|
printf("%s at %s", d->iada_modname, pnp);
|
|
|
|
|
printf(" offset 0x%x", d->iada_offset);
|
|
|
|
|
printf(" priority %d", (int)d->iada_cookie);
|
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;
|
1996-05-29 10:29:02 +04:00
|
|
|
|
struct ioasicdev_attach_args *d;
|
1996-01-31 11:46:42 +03:00
|
|
|
|
{
|
|
|
|
|
|
1996-05-29 10:29:02 +04:00
|
|
|
|
return ((match->ioasiccf_offset == d->iada_offset) ||
|
1997-07-21 09:39:02 +04:00
|
|
|
|
(match->ioasiccf_offset == IOASICCF_OFFSET_DEFAULT));
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
1995-08-07 11:07:43 +04:00
|
|
|
|
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();
|
|
|
|
|
}
|
1998-03-25 09:22:19 +03:00
|
|
|
|
|
|
|
|
|
void ioasic_init(int flag);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Initialize the I/O asic
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
ioasic_init(isa_maxine)
|
|
|
|
|
int isa_maxine;
|
|
|
|
|
{
|
|
|
|
|
volatile u_int *decoder;
|
|
|
|
|
|
|
|
|
|
/* These are common between 3min and maxine */
|
|
|
|
|
decoder = (volatile u_int *)IOASIC_REG_LANCE_DECODE(ioasic_base);
|
|
|
|
|
*decoder = KMIN_LANCE_CONFIG;
|
|
|
|
|
|
|
|
|
|
/* set the SCSI DMA configuration map */
|
|
|
|
|
decoder = (volatile u_int *) IOASIC_REG_SCSI_DECODE(ioasic_base);
|
|
|
|
|
(*decoder) = 0x00000000e;
|
|
|
|
|
}
|