2005-02-27 03:26:58 +03:00
|
|
|
/* $NetBSD: nca_pcmcia.c,v 1.20 2005/02/27 00:27:43 perry Exp $ */
|
2000-03-18 20:59:52 +03:00
|
|
|
|
|
|
|
/*-
|
2004-08-10 11:03:14 +04:00
|
|
|
* Copyright (c) 2000, 2004 The NetBSD Foundation, Inc.
|
2000-03-18 20:59:52 +03:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Charles M. Hannum.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2001-11-13 10:24:43 +03:00
|
|
|
#include <sys/cdefs.h>
|
2005-02-27 03:26:58 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: nca_pcmcia.c,v 1.20 2005/02/27 00:27:43 perry Exp $");
|
2001-11-13 10:24:43 +03:00
|
|
|
|
2000-03-18 20:59:52 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <machine/intr.h>
|
|
|
|
|
|
|
|
#include <dev/scsipi/scsi_all.h>
|
|
|
|
#include <dev/scsipi/scsipi_all.h>
|
|
|
|
#include <dev/scsipi/scsiconf.h>
|
|
|
|
|
|
|
|
#include <dev/pcmcia/pcmciareg.h>
|
|
|
|
#include <dev/pcmcia/pcmciavar.h>
|
|
|
|
#include <dev/pcmcia/pcmciadevs.h>
|
|
|
|
|
|
|
|
#include <dev/ic/ncr5380reg.h>
|
|
|
|
#include <dev/ic/ncr5380var.h>
|
|
|
|
#include <dev/ic/ncr53c400reg.h>
|
|
|
|
|
|
|
|
struct nca_pcmcia_softc {
|
|
|
|
struct ncr5380_softc sc_ncr5380; /* glue to MI code */
|
|
|
|
|
|
|
|
/* PCMCIA-specific goo. */
|
|
|
|
struct pcmcia_function *sc_pf; /* our PCMCIA function */
|
|
|
|
void *sc_ih; /* interrupt handler */
|
2004-08-10 11:03:14 +04:00
|
|
|
|
|
|
|
int sc_state;
|
|
|
|
#define NCA_PCMCIA_ATTACHED 3
|
2000-03-18 20:59:52 +03:00
|
|
|
};
|
|
|
|
|
2005-02-27 03:26:58 +03:00
|
|
|
int nca_pcmcia_match(struct device *, struct cfdata *, void *);
|
2005-02-04 05:10:35 +03:00
|
|
|
int nca_pcmcia_validate_config(struct pcmcia_config_entry *);
|
2005-02-27 03:26:58 +03:00
|
|
|
void nca_pcmcia_attach(struct device *, struct device *, void *);
|
2005-02-04 05:10:35 +03:00
|
|
|
int nca_pcmcia_detach(struct device *, int);
|
|
|
|
int nca_pcmcia_enable(struct device *, int);
|
2000-03-18 20:59:52 +03:00
|
|
|
|
2002-10-01 01:57:46 +04:00
|
|
|
CFATTACH_DECL(nca_pcmcia, sizeof(struct nca_pcmcia_softc),
|
2002-10-02 20:51:16 +04:00
|
|
|
nca_pcmcia_match, nca_pcmcia_attach, nca_pcmcia_detach, NULL);
|
2000-03-18 20:59:52 +03:00
|
|
|
|
|
|
|
#define MIN_DMA_LEN 128
|
|
|
|
|
|
|
|
/* Options for disconnect/reselect, DMA, and interrupts. */
|
|
|
|
#define NCA_NO_DISCONNECT 0x00ff
|
|
|
|
#define NCA_NO_PARITY_CHK 0xff00
|
|
|
|
|
|
|
|
const struct pcmcia_product nca_pcmcia_products[] = {
|
2004-08-10 22:39:08 +04:00
|
|
|
{ PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
|
|
|
|
PCMCIA_CIS_INVALID },
|
2000-03-18 20:59:52 +03:00
|
|
|
};
|
2004-08-10 22:39:08 +04:00
|
|
|
const size_t nca_pcmcia_nproducts =
|
|
|
|
sizeof(nca_pcmcia_products) / sizeof(nca_pcmcia_products[0]);
|
2000-03-18 20:59:52 +03:00
|
|
|
|
|
|
|
int
|
|
|
|
nca_pcmcia_match(parent, match, aux)
|
|
|
|
struct device *parent;
|
|
|
|
struct cfdata *match;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct pcmcia_attach_args *pa = aux;
|
|
|
|
|
2004-08-10 22:39:08 +04:00
|
|
|
if (pcmcia_product_lookup(pa, nca_pcmcia_products, nca_pcmcia_nproducts,
|
|
|
|
sizeof(nca_pcmcia_products[0]), NULL))
|
2000-03-18 20:59:52 +03:00
|
|
|
return (1);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2004-08-10 11:03:14 +04:00
|
|
|
int
|
|
|
|
nca_pcmcia_validate_config(cfe)
|
|
|
|
struct pcmcia_config_entry *cfe;
|
|
|
|
{
|
|
|
|
if (cfe->iftype != PCMCIA_IFTYPE_IO ||
|
|
|
|
cfe->num_memspace != 0 ||
|
|
|
|
cfe->num_iospace != 1)
|
|
|
|
return (EINVAL);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2000-03-18 20:59:52 +03:00
|
|
|
void
|
|
|
|
nca_pcmcia_attach(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct nca_pcmcia_softc *esc = (void *)self;
|
|
|
|
struct ncr5380_softc *sc = &esc->sc_ncr5380;
|
|
|
|
struct pcmcia_attach_args *pa = aux;
|
|
|
|
struct pcmcia_config_entry *cfe;
|
|
|
|
struct pcmcia_function *pf = pa->pf;
|
|
|
|
int flags;
|
2004-08-10 11:03:14 +04:00
|
|
|
int error;
|
2000-03-18 20:59:52 +03:00
|
|
|
|
|
|
|
esc->sc_pf = pf;
|
|
|
|
|
2004-08-10 11:03:14 +04:00
|
|
|
error = pcmcia_function_configure(pf, nca_pcmcia_validate_config);
|
|
|
|
if (error) {
|
|
|
|
aprint_error("%s: configure failed, error=%d\n", self->dv_xname,
|
|
|
|
error);
|
|
|
|
return;
|
2000-03-18 20:59:52 +03:00
|
|
|
}
|
|
|
|
|
2004-08-10 11:03:14 +04:00
|
|
|
cfe = pf->cfe;
|
|
|
|
sc->sc_regt = cfe->iospace[0].handle.iot;
|
|
|
|
sc->sc_regh = cfe->iospace[0].handle.ioh;
|
2000-03-18 20:59:52 +03:00
|
|
|
|
|
|
|
/* Initialize 5380 compatible register offsets. */
|
|
|
|
sc->sci_r0 = C400_5380_REG_OFFSET + 0;
|
|
|
|
sc->sci_r1 = C400_5380_REG_OFFSET + 1;
|
|
|
|
sc->sci_r2 = C400_5380_REG_OFFSET + 2;
|
|
|
|
sc->sci_r3 = C400_5380_REG_OFFSET + 3;
|
|
|
|
sc->sci_r4 = C400_5380_REG_OFFSET + 4;
|
|
|
|
sc->sci_r5 = C400_5380_REG_OFFSET + 5;
|
|
|
|
sc->sci_r6 = C400_5380_REG_OFFSET + 6;
|
|
|
|
sc->sci_r7 = C400_5380_REG_OFFSET + 7;
|
|
|
|
|
2000-03-25 18:27:54 +03:00
|
|
|
sc->sc_rev = NCR_VARIANT_NCR53C400;
|
|
|
|
|
2000-03-18 20:59:52 +03:00
|
|
|
/*
|
|
|
|
* MD function pointers used by the MI code.
|
|
|
|
*/
|
|
|
|
sc->sc_pio_out = ncr5380_pio_out;
|
|
|
|
sc->sc_pio_in = ncr5380_pio_in;
|
|
|
|
sc->sc_dma_alloc = NULL;
|
|
|
|
sc->sc_dma_free = NULL;
|
|
|
|
sc->sc_dma_setup = NULL;
|
|
|
|
sc->sc_dma_start = NULL;
|
|
|
|
sc->sc_dma_poll = NULL;
|
|
|
|
sc->sc_dma_eop = NULL;
|
|
|
|
sc->sc_dma_stop = NULL;
|
|
|
|
sc->sc_intr_on = NULL;
|
|
|
|
sc->sc_intr_off = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Support the "options" (config file flags).
|
|
|
|
* Disconnect/reselect is a per-target mask.
|
|
|
|
* Interrupts and DMA are per-controller.
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
flags = 0x0000; /* no options */
|
|
|
|
#else
|
|
|
|
flags = 0xffff; /* all options except force poll */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
sc->sc_no_disconnect = (flags & NCA_NO_DISCONNECT);
|
|
|
|
sc->sc_parity_disable = (flags & NCA_NO_PARITY_CHK) >> 8;
|
|
|
|
sc->sc_min_dma_len = MIN_DMA_LEN;
|
|
|
|
|
2004-08-10 11:03:14 +04:00
|
|
|
error = nca_pcmcia_enable(self, 1);
|
2004-08-10 19:29:56 +04:00
|
|
|
if (error)
|
2004-08-10 11:03:14 +04:00
|
|
|
goto fail;
|
2000-03-18 20:59:52 +03:00
|
|
|
|
2004-08-10 11:03:14 +04:00
|
|
|
sc->sc_adapter.adapt_enable = nca_pcmcia_enable;
|
2004-08-11 02:49:12 +04:00
|
|
|
sc->sc_adapter.adapt_refcnt = 1;
|
2004-08-10 11:03:14 +04:00
|
|
|
|
2000-03-18 20:59:52 +03:00
|
|
|
ncr5380_attach(sc);
|
2004-08-11 02:49:12 +04:00
|
|
|
scsipi_adapter_delref(&sc->sc_adapter);
|
2004-08-10 11:03:14 +04:00
|
|
|
esc->sc_state = NCA_PCMCIA_ATTACHED;
|
2000-03-18 20:59:52 +03:00
|
|
|
return;
|
|
|
|
|
2004-08-10 11:03:14 +04:00
|
|
|
fail:
|
|
|
|
pcmcia_function_unconfigure(pf);
|
2000-03-18 20:59:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
nca_pcmcia_detach(self, flags)
|
|
|
|
struct device *self;
|
|
|
|
int flags;
|
|
|
|
{
|
2004-08-10 11:03:14 +04:00
|
|
|
struct nca_pcmcia_softc *sc = (void *)self;
|
2000-03-18 20:59:52 +03:00
|
|
|
int error;
|
|
|
|
|
2004-08-10 11:03:14 +04:00
|
|
|
if (sc->sc_state != NCA_PCMCIA_ATTACHED)
|
2000-03-18 20:59:52 +03:00
|
|
|
return (0);
|
|
|
|
|
2004-08-10 11:03:14 +04:00
|
|
|
error = ncr5380_detach(&sc->sc_ncr5380, flags);
|
|
|
|
if (error)
|
2000-03-18 20:59:52 +03:00
|
|
|
return (error);
|
|
|
|
|
2004-08-10 11:03:14 +04:00
|
|
|
pcmcia_function_unconfigure(sc->sc_pf);
|
2000-03-18 20:59:52 +03:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
nca_pcmcia_enable(arg, onoff)
|
2001-04-27 12:06:33 +04:00
|
|
|
struct device *arg;
|
2000-03-18 20:59:52 +03:00
|
|
|
int onoff;
|
|
|
|
{
|
2004-08-10 11:03:14 +04:00
|
|
|
struct nca_pcmcia_softc *sc = (struct nca_pcmcia_softc*)arg;
|
2004-08-10 19:29:56 +04:00
|
|
|
int error;
|
2000-03-18 20:59:52 +03:00
|
|
|
|
|
|
|
if (onoff) {
|
2004-08-11 02:49:12 +04:00
|
|
|
/* Establish the interrupt handler. */
|
|
|
|
sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_BIO,
|
|
|
|
ncr5380_intr, &sc->sc_ncr5380);
|
|
|
|
if (!sc->sc_ih)
|
|
|
|
return (EIO);
|
|
|
|
|
|
|
|
error = pcmcia_function_enable(sc->sc_pf);
|
|
|
|
if (error) {
|
|
|
|
pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
|
|
|
|
sc->sc_ih = 0;
|
|
|
|
return (error);
|
2000-03-18 20:59:52 +03:00
|
|
|
}
|
2004-08-11 02:49:12 +04:00
|
|
|
|
|
|
|
/* Initialize only chip. */
|
|
|
|
ncr5380_init(&sc->sc_ncr5380);
|
2000-03-18 20:59:52 +03:00
|
|
|
} else {
|
2004-08-10 11:03:14 +04:00
|
|
|
pcmcia_function_disable(sc->sc_pf);
|
|
|
|
pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
|
|
|
|
sc->sc_ih = 0;
|
2000-03-18 20:59:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|