Home | History | Annotate | Line # | Download | only in pcmcia
nca_pcmcia.c revision 1.9.6.5
      1  1.9.6.5    skrll /*	$NetBSD: nca_pcmcia.c,v 1.9.6.5 2005/03/04 16:49:38 skrll Exp $	*/
      2      1.1  mycroft 
      3      1.1  mycroft /*-
      4  1.9.6.1    skrll  * Copyright (c) 2000, 2004 The NetBSD Foundation, Inc.
      5      1.1  mycroft  * All rights reserved.
      6      1.1  mycroft  *
      7      1.1  mycroft  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1  mycroft  * by Charles M. Hannum.
      9      1.1  mycroft  *
     10      1.1  mycroft  * Redistribution and use in source and binary forms, with or without
     11      1.1  mycroft  * modification, are permitted provided that the following conditions
     12      1.1  mycroft  * are met:
     13      1.1  mycroft  * 1. Redistributions of source code must retain the above copyright
     14      1.1  mycroft  *    notice, this list of conditions and the following disclaimer.
     15      1.1  mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1  mycroft  *    notice, this list of conditions and the following disclaimer in the
     17      1.1  mycroft  *    documentation and/or other materials provided with the distribution.
     18      1.1  mycroft  * 3. All advertising materials mentioning features or use of this software
     19      1.1  mycroft  *    must display the following acknowledgement:
     20      1.1  mycroft  *        This product includes software developed by the NetBSD
     21      1.1  mycroft  *        Foundation, Inc. and its contributors.
     22      1.1  mycroft  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.1  mycroft  *    contributors may be used to endorse or promote products derived
     24      1.1  mycroft  *    from this software without specific prior written permission.
     25      1.1  mycroft  *
     26      1.1  mycroft  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.1  mycroft  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.1  mycroft  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.1  mycroft  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.1  mycroft  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.1  mycroft  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.1  mycroft  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.1  mycroft  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.1  mycroft  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.1  mycroft  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.1  mycroft  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1  mycroft  */
     38      1.5    lukem 
     39      1.5    lukem #include <sys/cdefs.h>
     40  1.9.6.5    skrll __KERNEL_RCSID(0, "$NetBSD: nca_pcmcia.c,v 1.9.6.5 2005/03/04 16:49:38 skrll Exp $");
     41      1.1  mycroft 
     42      1.1  mycroft #include <sys/param.h>
     43      1.1  mycroft #include <sys/systm.h>
     44      1.1  mycroft #include <sys/device.h>
     45      1.1  mycroft #include <sys/buf.h>
     46      1.1  mycroft 
     47      1.1  mycroft #include <machine/bus.h>
     48      1.1  mycroft #include <machine/intr.h>
     49      1.1  mycroft 
     50      1.1  mycroft #include <dev/scsipi/scsi_all.h>
     51      1.1  mycroft #include <dev/scsipi/scsipi_all.h>
     52      1.1  mycroft #include <dev/scsipi/scsiconf.h>
     53      1.1  mycroft 
     54      1.1  mycroft #include <dev/pcmcia/pcmciareg.h>
     55      1.1  mycroft #include <dev/pcmcia/pcmciavar.h>
     56      1.1  mycroft #include <dev/pcmcia/pcmciadevs.h>
     57      1.1  mycroft 
     58      1.1  mycroft #include <dev/ic/ncr5380reg.h>
     59      1.1  mycroft #include <dev/ic/ncr5380var.h>
     60      1.1  mycroft #include <dev/ic/ncr53c400reg.h>
     61      1.1  mycroft 
     62      1.1  mycroft struct nca_pcmcia_softc {
     63      1.1  mycroft 	struct ncr5380_softc	sc_ncr5380;	/* glue to MI code */
     64      1.1  mycroft 
     65      1.1  mycroft 	/* PCMCIA-specific goo. */
     66      1.1  mycroft 	struct pcmcia_function *sc_pf;		/* our PCMCIA function */
     67      1.1  mycroft 	void *sc_ih;				/* interrupt handler */
     68  1.9.6.1    skrll 
     69  1.9.6.1    skrll 	int sc_state;
     70  1.9.6.1    skrll #define NCA_PCMCIA_ATTACHED	3
     71      1.1  mycroft };
     72      1.1  mycroft 
     73  1.9.6.5    skrll int	nca_pcmcia_match(struct device *, struct cfdata *, void *);
     74  1.9.6.4    skrll int	nca_pcmcia_validate_config(struct pcmcia_config_entry *);
     75  1.9.6.5    skrll void	nca_pcmcia_attach(struct device *, struct device *, void *);
     76  1.9.6.4    skrll int	nca_pcmcia_detach(struct device *, int);
     77  1.9.6.4    skrll int	nca_pcmcia_enable(struct device *, int);
     78      1.1  mycroft 
     79      1.8  thorpej CFATTACH_DECL(nca_pcmcia, sizeof(struct nca_pcmcia_softc),
     80      1.9  thorpej     nca_pcmcia_match, nca_pcmcia_attach, nca_pcmcia_detach, NULL);
     81      1.1  mycroft 
     82      1.1  mycroft #define MIN_DMA_LEN 128
     83      1.1  mycroft 
     84      1.1  mycroft /* Options for disconnect/reselect, DMA, and interrupts. */
     85      1.1  mycroft #define NCA_NO_DISCONNECT	0x00ff
     86      1.1  mycroft #define NCA_NO_PARITY_CHK	0xff00
     87      1.1  mycroft 
     88      1.1  mycroft const struct pcmcia_product nca_pcmcia_products[] = {
     89  1.9.6.1    skrll 	{ PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
     90  1.9.6.1    skrll 	  PCMCIA_CIS_INVALID },
     91      1.1  mycroft };
     92  1.9.6.1    skrll const size_t nca_pcmcia_nproducts =
     93  1.9.6.1    skrll     sizeof(nca_pcmcia_products) / sizeof(nca_pcmcia_products[0]);
     94      1.1  mycroft 
     95      1.1  mycroft int
     96      1.1  mycroft nca_pcmcia_match(parent, match, aux)
     97      1.1  mycroft 	struct device *parent;
     98      1.1  mycroft 	struct cfdata *match;
     99      1.1  mycroft 	void *aux;
    100      1.1  mycroft {
    101      1.1  mycroft 	struct pcmcia_attach_args *pa = aux;
    102      1.1  mycroft 
    103  1.9.6.1    skrll 	if (pcmcia_product_lookup(pa, nca_pcmcia_products, nca_pcmcia_nproducts,
    104  1.9.6.1    skrll 	    sizeof(nca_pcmcia_products[0]), NULL))
    105      1.1  mycroft 		return (1);
    106      1.1  mycroft 	return (0);
    107      1.1  mycroft }
    108      1.1  mycroft 
    109  1.9.6.1    skrll int
    110  1.9.6.1    skrll nca_pcmcia_validate_config(cfe)
    111  1.9.6.1    skrll 	struct pcmcia_config_entry *cfe;
    112  1.9.6.1    skrll {
    113  1.9.6.1    skrll 	if (cfe->iftype != PCMCIA_IFTYPE_IO ||
    114  1.9.6.1    skrll 	    cfe->num_memspace != 0 ||
    115  1.9.6.1    skrll 	    cfe->num_iospace != 1)
    116  1.9.6.1    skrll 		return (EINVAL);
    117  1.9.6.1    skrll 	return (0);
    118  1.9.6.1    skrll }
    119  1.9.6.1    skrll 
    120      1.1  mycroft void
    121      1.1  mycroft nca_pcmcia_attach(parent, self, aux)
    122      1.1  mycroft 	struct device *parent, *self;
    123      1.1  mycroft 	void *aux;
    124      1.1  mycroft {
    125      1.1  mycroft 	struct nca_pcmcia_softc *esc = (void *)self;
    126      1.1  mycroft 	struct ncr5380_softc *sc = &esc->sc_ncr5380;
    127      1.1  mycroft 	struct pcmcia_attach_args *pa = aux;
    128      1.1  mycroft 	struct pcmcia_config_entry *cfe;
    129      1.1  mycroft 	struct pcmcia_function *pf = pa->pf;
    130      1.1  mycroft 	int flags;
    131  1.9.6.1    skrll 	int error;
    132      1.1  mycroft 
    133      1.1  mycroft 	esc->sc_pf = pf;
    134      1.1  mycroft 
    135  1.9.6.1    skrll 	error = pcmcia_function_configure(pf, nca_pcmcia_validate_config);
    136  1.9.6.1    skrll 	if (error) {
    137  1.9.6.1    skrll 		aprint_error("%s: configure failed, error=%d\n", self->dv_xname,
    138  1.9.6.1    skrll 		    error);
    139  1.9.6.1    skrll 		return;
    140      1.1  mycroft 	}
    141      1.1  mycroft 
    142  1.9.6.1    skrll 	cfe = pf->cfe;
    143  1.9.6.1    skrll 	sc->sc_regt = cfe->iospace[0].handle.iot;
    144  1.9.6.1    skrll 	sc->sc_regh = cfe->iospace[0].handle.ioh;
    145      1.1  mycroft 
    146      1.1  mycroft 	/* Initialize 5380 compatible register offsets. */
    147      1.1  mycroft 	sc->sci_r0 = C400_5380_REG_OFFSET + 0;
    148      1.1  mycroft 	sc->sci_r1 = C400_5380_REG_OFFSET + 1;
    149      1.1  mycroft 	sc->sci_r2 = C400_5380_REG_OFFSET + 2;
    150      1.1  mycroft 	sc->sci_r3 = C400_5380_REG_OFFSET + 3;
    151      1.1  mycroft 	sc->sci_r4 = C400_5380_REG_OFFSET + 4;
    152      1.1  mycroft 	sc->sci_r5 = C400_5380_REG_OFFSET + 5;
    153      1.1  mycroft 	sc->sci_r6 = C400_5380_REG_OFFSET + 6;
    154      1.1  mycroft 	sc->sci_r7 = C400_5380_REG_OFFSET + 7;
    155      1.3  tsutsui 
    156      1.3  tsutsui 	sc->sc_rev = NCR_VARIANT_NCR53C400;
    157      1.1  mycroft 
    158      1.1  mycroft 	/*
    159      1.1  mycroft 	 * MD function pointers used by the MI code.
    160      1.1  mycroft 	 */
    161      1.1  mycroft 	sc->sc_pio_out = ncr5380_pio_out;
    162      1.1  mycroft 	sc->sc_pio_in =  ncr5380_pio_in;
    163      1.1  mycroft 	sc->sc_dma_alloc = NULL;
    164      1.1  mycroft 	sc->sc_dma_free  = NULL;
    165      1.1  mycroft 	sc->sc_dma_setup = NULL;
    166      1.1  mycroft 	sc->sc_dma_start = NULL;
    167      1.1  mycroft 	sc->sc_dma_poll  = NULL;
    168      1.1  mycroft 	sc->sc_dma_eop   = NULL;
    169      1.1  mycroft 	sc->sc_dma_stop  = NULL;
    170      1.1  mycroft 	sc->sc_intr_on   = NULL;
    171      1.1  mycroft 	sc->sc_intr_off  = NULL;
    172      1.1  mycroft 
    173      1.1  mycroft 	/*
    174      1.1  mycroft 	 * Support the "options" (config file flags).
    175      1.1  mycroft 	 * Disconnect/reselect is a per-target mask.
    176      1.1  mycroft 	 * Interrupts and DMA are per-controller.
    177      1.1  mycroft 	 */
    178      1.1  mycroft #if 0
    179      1.1  mycroft 	flags = 0x0000;	/* no options */
    180      1.1  mycroft #else
    181      1.1  mycroft 	flags = 0xffff;	/* all options except force poll */
    182      1.1  mycroft #endif
    183      1.1  mycroft 
    184      1.1  mycroft 	sc->sc_no_disconnect = (flags & NCA_NO_DISCONNECT);
    185      1.1  mycroft 	sc->sc_parity_disable = (flags & NCA_NO_PARITY_CHK) >> 8;
    186      1.1  mycroft 	sc->sc_min_dma_len = MIN_DMA_LEN;
    187      1.1  mycroft 
    188  1.9.6.1    skrll 	error = nca_pcmcia_enable(self, 1);
    189  1.9.6.1    skrll 	if (error)
    190  1.9.6.1    skrll 		goto fail;
    191  1.9.6.1    skrll 
    192  1.9.6.1    skrll 	sc->sc_adapter.adapt_enable = nca_pcmcia_enable;
    193  1.9.6.1    skrll 	sc->sc_adapter.adapt_refcnt = 1;
    194      1.1  mycroft 
    195      1.1  mycroft 	ncr5380_attach(sc);
    196  1.9.6.1    skrll 	scsipi_adapter_delref(&sc->sc_adapter);
    197  1.9.6.1    skrll 	esc->sc_state = NCA_PCMCIA_ATTACHED;
    198      1.1  mycroft 	return;
    199      1.1  mycroft 
    200  1.9.6.1    skrll fail:
    201  1.9.6.1    skrll 	pcmcia_function_unconfigure(pf);
    202      1.1  mycroft }
    203      1.1  mycroft 
    204      1.1  mycroft int
    205      1.1  mycroft nca_pcmcia_detach(self, flags)
    206      1.1  mycroft 	struct device *self;
    207      1.1  mycroft 	int flags;
    208      1.1  mycroft {
    209  1.9.6.1    skrll 	struct nca_pcmcia_softc *sc = (void *)self;
    210      1.1  mycroft 	int error;
    211      1.1  mycroft 
    212  1.9.6.1    skrll 	if (sc->sc_state != NCA_PCMCIA_ATTACHED)
    213      1.1  mycroft 		return (0);
    214      1.1  mycroft 
    215  1.9.6.1    skrll 	error = ncr5380_detach(&sc->sc_ncr5380, flags);
    216  1.9.6.1    skrll 	if (error)
    217      1.1  mycroft 		return (error);
    218      1.1  mycroft 
    219  1.9.6.1    skrll 	pcmcia_function_unconfigure(sc->sc_pf);
    220      1.1  mycroft 
    221      1.1  mycroft 	return (0);
    222      1.1  mycroft }
    223      1.1  mycroft 
    224      1.1  mycroft int
    225      1.1  mycroft nca_pcmcia_enable(arg, onoff)
    226      1.4     joda 	struct device *arg;
    227      1.1  mycroft 	int onoff;
    228      1.1  mycroft {
    229  1.9.6.1    skrll 	struct nca_pcmcia_softc *sc = (struct nca_pcmcia_softc*)arg;
    230  1.9.6.1    skrll 	int error;
    231      1.1  mycroft 
    232      1.1  mycroft 	if (onoff) {
    233      1.1  mycroft 		/* Establish the interrupt handler. */
    234  1.9.6.1    skrll 		sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_BIO,
    235  1.9.6.1    skrll 		    ncr5380_intr, &sc->sc_ncr5380);
    236  1.9.6.1    skrll 		if (!sc->sc_ih)
    237      1.1  mycroft 			return (EIO);
    238      1.1  mycroft 
    239  1.9.6.1    skrll 		error = pcmcia_function_enable(sc->sc_pf);
    240  1.9.6.1    skrll 		if (error) {
    241  1.9.6.1    skrll 			pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
    242  1.9.6.1    skrll 			sc->sc_ih = 0;
    243  1.9.6.1    skrll 			return (error);
    244      1.1  mycroft 		}
    245  1.9.6.1    skrll 
    246  1.9.6.1    skrll 		/* Initialize only chip.  */
    247  1.9.6.1    skrll 		ncr5380_init(&sc->sc_ncr5380);
    248      1.1  mycroft 	} else {
    249  1.9.6.1    skrll 		pcmcia_function_disable(sc->sc_pf);
    250  1.9.6.1    skrll 		pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
    251  1.9.6.1    skrll 		sc->sc_ih = 0;
    252      1.1  mycroft 	}
    253      1.1  mycroft 
    254      1.1  mycroft 	return (0);
    255      1.1  mycroft }
    256