Added support for the Sun SC scsi controller.
This commit is contained in:
parent
451d8d47e1
commit
026720119b
196
sys/arch/sun2/dev/sc_mbmem.c
Normal file
196
sys/arch/sun2/dev/sc_mbmem.c
Normal file
@ -0,0 +1,196 @@
|
||||
/* $NetBSD: sc_mbmem.c,v 1.1 2001/04/18 03:38:39 fredette Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Adam Glass, David Jones, Gordon W. Ross, and Matthew Fredette.
|
||||
*
|
||||
* 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 the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/*
|
||||
* This file contains only the machine-dependent parts of the
|
||||
* Sun-2 SCSI driver. (Autoconfig stuff and DMA functions.)
|
||||
* The machine-independent parts are in sunscpal.c
|
||||
*
|
||||
* Supported hardware includes:
|
||||
* Sun SCSI-2 on Multibus (Sun2/120,Sun2/170)
|
||||
* Sun SCSI-2 on VME (Sun2/50,Sun3/160,Sun3/260,others?)
|
||||
*
|
||||
* Credits, history:
|
||||
*
|
||||
* Matthew Fredette took revision 1.15 of si_vme.c, and then heavily
|
||||
* modified it to support the Sun sc. The remaining credits
|
||||
* are from si_vme.c:
|
||||
*
|
||||
* David Jones wrote the initial version of this module, which
|
||||
* included support for the VME adapter only. (no reselection).
|
||||
*
|
||||
* Gordon Ross added support for the OBIO adapter, and re-worked
|
||||
* both the VME and OBIO code to support disconnect/reselect.
|
||||
* (Required figuring out the hardware "features" noted above.)
|
||||
*
|
||||
* The autoconfiguration boilerplate came from Adam Glass.
|
||||
*/
|
||||
|
||||
/*****************************************************************
|
||||
* Multibus functions for sc
|
||||
****************************************************************/
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/errno.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/malloc.h>
|
||||
#include <sys/device.h>
|
||||
#include <sys/buf.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/user.h>
|
||||
|
||||
#include <dev/scsipi/scsi_all.h>
|
||||
#include <dev/scsipi/scsipi_all.h>
|
||||
#include <dev/scsipi/scsipi_debug.h>
|
||||
#include <dev/scsipi/scsiconf.h>
|
||||
|
||||
#include <machine/autoconf.h>
|
||||
#include <machine/bus.h>
|
||||
|
||||
/* #define DEBUG XXX */
|
||||
|
||||
#include <dev/ic/sunscpalreg.h>
|
||||
#include <dev/ic/sunscpalvar.h>
|
||||
|
||||
#include "screg.h"
|
||||
|
||||
/*
|
||||
* Transfers smaller than this are done using PIO
|
||||
* (on assumption they're not worth DMA overhead)
|
||||
*/
|
||||
#define MIN_DMA_LEN 128
|
||||
|
||||
/*
|
||||
* New-style autoconfig attachment
|
||||
*/
|
||||
|
||||
static int sunsc_mbmem_match __P((struct device *, struct cfdata *, void *));
|
||||
static void sunsc_mbmem_attach __P((struct device *, struct device *, void *));
|
||||
static int sunsc_mbmem_intr __P((void *));
|
||||
|
||||
struct cfattach sc_mbmem_ca = {
|
||||
sizeof(struct sunscpal_softc), sunsc_mbmem_match, sunsc_mbmem_attach
|
||||
};
|
||||
|
||||
/*
|
||||
* Options for parity, DMA, and interrupts.
|
||||
*/
|
||||
int sunsc_mbmem_options = 0x00;
|
||||
|
||||
static int
|
||||
sunsc_mbmem_match(parent, cf, aux)
|
||||
struct device *parent;
|
||||
struct cfdata *cf;
|
||||
void *aux;
|
||||
{
|
||||
struct confargs *ca = aux;
|
||||
|
||||
/* No default Multibus address. */
|
||||
if (ca->ca_paddr == -1)
|
||||
return (0);
|
||||
|
||||
/* Make sure something is there... */
|
||||
if (!bus_space_probe(ca->ca_bustag, 0, ca->ca_paddr,
|
||||
1, /* probe size */
|
||||
1, /* offset */
|
||||
0, /* flags */
|
||||
NULL, NULL))
|
||||
return (0);
|
||||
|
||||
/* Default interrupt priority. */
|
||||
if (ca->ca_intpri == -1)
|
||||
ca->ca_intpri = 2;
|
||||
|
||||
return (1);
|
||||
}
|
||||
|
||||
static void
|
||||
sunsc_mbmem_attach(parent, self, args)
|
||||
struct device *parent, *self;
|
||||
void *args;
|
||||
{
|
||||
struct sunscpal_softc *sc = (void *) self;
|
||||
struct cfdata *cf = self->dv_cfdata;
|
||||
struct confargs *ca = args;
|
||||
|
||||
/* Map in the device. */
|
||||
sc->sunscpal_regt = ca->ca_bustag;
|
||||
sc->sunscpal_dmat = ca->ca_dmatag;
|
||||
if (bus_space_map(ca->ca_bustag, ca->ca_paddr, sizeof(struct sunsc_regs),
|
||||
0, &sc->sunscpal_regh))
|
||||
panic("sunsc_mbmem_attach: can't map");
|
||||
|
||||
/* Device register offsets. */
|
||||
sc->sunscpal_data = offsetof(struct sunsc_regs, sunsc_data);
|
||||
sc->sunscpal_cmd_stat = offsetof(struct sunsc_regs, sunsc_cmd_stat);
|
||||
sc->sunscpal_icr = offsetof(struct sunsc_regs, sunsc_icr);
|
||||
sc->sunscpal_dma_addr_h = offsetof(struct sunsc_regs, sunsc_dma_addr_h);
|
||||
sc->sunscpal_dma_addr_l = offsetof(struct sunsc_regs, sunsc_dma_addr_l);
|
||||
sc->sunscpal_dma_count = offsetof(struct sunsc_regs, sunsc_dma_count);
|
||||
sc->sunscpal_intvec = offsetof(struct sunsc_regs, sunsc_intvec);
|
||||
|
||||
/* Miscellaneous. */
|
||||
sc->sc_min_dma_len = MIN_DMA_LEN;
|
||||
sc->sc_rev = SUNSCPAL_VARIANT_501_1006;
|
||||
|
||||
/* Attach interrupt handler. */
|
||||
bus_intr_establish(ca->ca_bustag, ca->ca_intpri, IPL_BIO, 0,
|
||||
sunsc_mbmem_intr, sc);
|
||||
|
||||
/* Do the common attach stuff. */
|
||||
sunscpal_attach(sc, (cf->cf_flags ? cf->cf_flags : sunsc_mbmem_options));
|
||||
}
|
||||
|
||||
static int
|
||||
sunsc_mbmem_intr(void *arg)
|
||||
{
|
||||
struct sunscpal_softc *sc = arg;
|
||||
int claimed;
|
||||
|
||||
claimed = sunscpal_intr(sc);
|
||||
#ifdef DEBUG
|
||||
if (!claimed) {
|
||||
printf("sunsc_intr: spurious from SBC\n");
|
||||
}
|
||||
#endif
|
||||
/* Yes, we DID cause this interrupt. */
|
||||
claimed = 1;
|
||||
|
||||
return (claimed);
|
||||
}
|
56
sys/arch/sun2/dev/screg.h
Normal file
56
sys/arch/sun2/dev/screg.h
Normal file
@ -0,0 +1,56 @@
|
||||
/* $NetBSD: screg.h,v 1.1 2001/04/18 03:38:38 fredette Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2001 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Matthew Fredette.
|
||||
*
|
||||
* 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 the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Register map for the Sun2 SCSI Interface (sc)
|
||||
*/
|
||||
|
||||
struct sunsc_regs {
|
||||
volatile u_char sunsc_data; /* data register */
|
||||
volatile u_char sunsc_unused0;
|
||||
volatile u_char sunsc_cmd_stat; /* command/status register */
|
||||
volatile u_char sunsc_unused1;
|
||||
volatile u_short sunsc_icr; /* interface control register */
|
||||
volatile u_short sunsc_unused2;
|
||||
volatile u_short sunsc_dma_addr_h; /* DMA address, high 16 */
|
||||
volatile u_short sunsc_dma_addr_l; /* DMA address, low 16 */
|
||||
volatile u_short sunsc_dma_count;/* DMA count */
|
||||
volatile u_char sunsc_unused3;
|
||||
volatile u_char sunsc_intvec; /* interrupt vector (VME only) */
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user