Home | History | Annotate | Line # | Download | only in pcmcia
nca_pcmcia.c revision 1.14
      1  1.14  mycroft /*	$NetBSD: nca_pcmcia.c,v 1.14 2004/08/10 18:39:08 mycroft Exp $	*/
      2   1.1  mycroft 
      3   1.1  mycroft /*-
      4  1.11  mycroft  * 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.14  mycroft __KERNEL_RCSID(0, "$NetBSD: nca_pcmcia.c,v 1.14 2004/08/10 18:39:08 mycroft 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.11  mycroft 
     69  1.11  mycroft 	int sc_state;
     70  1.11  mycroft #define	NCA_PCMCIA_ATTACH1	1
     71  1.11  mycroft #define	NCA_PCMCIA_ATTACH2	2
     72  1.11  mycroft #define NCA_PCMCIA_ATTACHED	3
     73   1.1  mycroft };
     74   1.1  mycroft 
     75   1.1  mycroft int	nca_pcmcia_match __P((struct device *, struct cfdata *, void *));
     76  1.11  mycroft int	nca_pcmcia_validate_config __P((struct pcmcia_config_entry *));
     77   1.1  mycroft void	nca_pcmcia_attach __P((struct device *, struct device *, void *));
     78   1.1  mycroft int	nca_pcmcia_detach __P((struct device *, int));
     79   1.4     joda int	nca_pcmcia_enable __P((struct device *, int));
     80   1.1  mycroft 
     81   1.8  thorpej CFATTACH_DECL(nca_pcmcia, sizeof(struct nca_pcmcia_softc),
     82   1.9  thorpej     nca_pcmcia_match, nca_pcmcia_attach, nca_pcmcia_detach, NULL);
     83   1.1  mycroft 
     84   1.1  mycroft #define MIN_DMA_LEN 128
     85   1.1  mycroft 
     86   1.1  mycroft /* Options for disconnect/reselect, DMA, and interrupts. */
     87   1.1  mycroft #define NCA_NO_DISCONNECT	0x00ff
     88   1.1  mycroft #define NCA_NO_PARITY_CHK	0xff00
     89   1.1  mycroft 
     90   1.1  mycroft const struct pcmcia_product nca_pcmcia_products[] = {
     91  1.14  mycroft 	{ PCMCIA_VENDOR_INVALID, PCMCIA_PRODUCT_INVALID,
     92  1.14  mycroft 	  PCMCIA_CIS_INVALID },
     93   1.1  mycroft };
     94  1.14  mycroft const size_t nca_pcmcia_nproducts =
     95  1.14  mycroft     sizeof(nca_pcmcia_products) / sizeof(nca_pcmcia_products[0]);
     96   1.1  mycroft 
     97   1.1  mycroft int
     98   1.1  mycroft nca_pcmcia_match(parent, match, aux)
     99   1.1  mycroft 	struct device *parent;
    100   1.1  mycroft 	struct cfdata *match;
    101   1.1  mycroft 	void *aux;
    102   1.1  mycroft {
    103   1.1  mycroft 	struct pcmcia_attach_args *pa = aux;
    104   1.1  mycroft 
    105  1.14  mycroft 	if (pcmcia_product_lookup(pa, nca_pcmcia_products, nca_pcmcia_nproducts,
    106  1.14  mycroft 	    sizeof(nca_pcmcia_products[0]), NULL))
    107   1.1  mycroft 		return (1);
    108   1.1  mycroft 	return (0);
    109   1.1  mycroft }
    110   1.1  mycroft 
    111  1.11  mycroft int
    112  1.11  mycroft nca_pcmcia_validate_config(cfe)
    113  1.11  mycroft 	struct pcmcia_config_entry *cfe;
    114  1.11  mycroft {
    115  1.11  mycroft 	if (cfe->iftype != PCMCIA_IFTYPE_IO ||
    116  1.11  mycroft 	    cfe->num_memspace != 0 ||
    117  1.11  mycroft 	    cfe->num_iospace != 1)
    118  1.11  mycroft 		return (EINVAL);
    119  1.11  mycroft 	return (0);
    120  1.11  mycroft }
    121  1.11  mycroft 
    122   1.1  mycroft void
    123   1.1  mycroft nca_pcmcia_attach(parent, self, aux)
    124   1.1  mycroft 	struct device *parent, *self;
    125   1.1  mycroft 	void *aux;
    126   1.1  mycroft {
    127   1.1  mycroft 	struct nca_pcmcia_softc *esc = (void *)self;
    128   1.1  mycroft 	struct ncr5380_softc *sc = &esc->sc_ncr5380;
    129   1.1  mycroft 	struct pcmcia_attach_args *pa = aux;
    130   1.1  mycroft 	struct pcmcia_config_entry *cfe;
    131   1.1  mycroft 	struct pcmcia_function *pf = pa->pf;
    132   1.1  mycroft 	int flags;
    133  1.11  mycroft 	int error;
    134   1.1  mycroft 
    135  1.11  mycroft 	aprint_normal("\n");
    136   1.1  mycroft 	esc->sc_pf = pf;
    137   1.1  mycroft 
    138  1.11  mycroft 	error = pcmcia_function_configure(pf, nca_pcmcia_validate_config);
    139  1.11  mycroft 	if (error) {
    140  1.11  mycroft 		aprint_error("%s: configure failed, error=%d\n", self->dv_xname,
    141  1.11  mycroft 		    error);
    142  1.11  mycroft 		return;
    143   1.1  mycroft 	}
    144   1.1  mycroft 
    145  1.11  mycroft 	cfe = pf->cfe;
    146  1.11  mycroft 	sc->sc_regt = cfe->iospace[0].handle.iot;
    147  1.11  mycroft 	sc->sc_regh = cfe->iospace[0].handle.ioh;
    148   1.1  mycroft 
    149   1.1  mycroft 	/* Initialize 5380 compatible register offsets. */
    150   1.1  mycroft 	sc->sci_r0 = C400_5380_REG_OFFSET + 0;
    151   1.1  mycroft 	sc->sci_r1 = C400_5380_REG_OFFSET + 1;
    152   1.1  mycroft 	sc->sci_r2 = C400_5380_REG_OFFSET + 2;
    153   1.1  mycroft 	sc->sci_r3 = C400_5380_REG_OFFSET + 3;
    154   1.1  mycroft 	sc->sci_r4 = C400_5380_REG_OFFSET + 4;
    155   1.1  mycroft 	sc->sci_r5 = C400_5380_REG_OFFSET + 5;
    156   1.1  mycroft 	sc->sci_r6 = C400_5380_REG_OFFSET + 6;
    157   1.1  mycroft 	sc->sci_r7 = C400_5380_REG_OFFSET + 7;
    158   1.3  tsutsui 
    159   1.3  tsutsui 	sc->sc_rev = NCR_VARIANT_NCR53C400;
    160   1.1  mycroft 
    161   1.1  mycroft 	/*
    162   1.1  mycroft 	 * MD function pointers used by the MI code.
    163   1.1  mycroft 	 */
    164   1.1  mycroft 	sc->sc_pio_out = ncr5380_pio_out;
    165   1.1  mycroft 	sc->sc_pio_in =  ncr5380_pio_in;
    166   1.1  mycroft 	sc->sc_dma_alloc = NULL;
    167   1.1  mycroft 	sc->sc_dma_free  = NULL;
    168   1.1  mycroft 	sc->sc_dma_setup = NULL;
    169   1.1  mycroft 	sc->sc_dma_start = NULL;
    170   1.1  mycroft 	sc->sc_dma_poll  = NULL;
    171   1.1  mycroft 	sc->sc_dma_eop   = NULL;
    172   1.1  mycroft 	sc->sc_dma_stop  = NULL;
    173   1.1  mycroft 	sc->sc_intr_on   = NULL;
    174   1.1  mycroft 	sc->sc_intr_off  = NULL;
    175   1.1  mycroft 
    176   1.1  mycroft 	/*
    177   1.1  mycroft 	 * Support the "options" (config file flags).
    178   1.1  mycroft 	 * Disconnect/reselect is a per-target mask.
    179   1.1  mycroft 	 * Interrupts and DMA are per-controller.
    180   1.1  mycroft 	 */
    181   1.1  mycroft #if 0
    182   1.1  mycroft 	flags = 0x0000;	/* no options */
    183   1.1  mycroft #else
    184   1.1  mycroft 	flags = 0xffff;	/* all options except force poll */
    185   1.1  mycroft #endif
    186   1.1  mycroft 
    187   1.1  mycroft 	sc->sc_no_disconnect = (flags & NCA_NO_DISCONNECT);
    188   1.1  mycroft 	sc->sc_parity_disable = (flags & NCA_NO_PARITY_CHK) >> 8;
    189   1.1  mycroft 	sc->sc_min_dma_len = MIN_DMA_LEN;
    190   1.1  mycroft 
    191  1.11  mycroft 	error = nca_pcmcia_enable(self, 1);
    192  1.12  mycroft 	if (error)
    193  1.11  mycroft 		goto fail;
    194  1.11  mycroft 
    195  1.11  mycroft 	sc->sc_adapter.adapt_enable = nca_pcmcia_enable;
    196   1.1  mycroft 
    197  1.11  mycroft 	esc->sc_state = NCA_PCMCIA_ATTACH1;
    198   1.1  mycroft 	ncr5380_attach(sc);
    199  1.11  mycroft 	if (esc->sc_state == NCA_PCMCIA_ATTACH1)
    200  1.11  mycroft 		pcmcia_function_disable(esc->sc_pf);
    201  1.11  mycroft 	esc->sc_state = NCA_PCMCIA_ATTACHED;
    202   1.1  mycroft 	return;
    203   1.1  mycroft 
    204  1.11  mycroft fail:
    205  1.11  mycroft 	pcmcia_function_unconfigure(pf);
    206   1.1  mycroft }
    207   1.1  mycroft 
    208   1.1  mycroft int
    209   1.1  mycroft nca_pcmcia_detach(self, flags)
    210   1.1  mycroft 	struct device *self;
    211   1.1  mycroft 	int flags;
    212   1.1  mycroft {
    213  1.11  mycroft 	struct nca_pcmcia_softc *sc = (void *)self;
    214   1.1  mycroft 	int error;
    215   1.1  mycroft 
    216  1.11  mycroft 	if (sc->sc_state != NCA_PCMCIA_ATTACHED)
    217   1.1  mycroft 		return (0);
    218   1.1  mycroft 
    219  1.11  mycroft 	error = ncr5380_detach(&sc->sc_ncr5380, flags);
    220  1.11  mycroft 	if (error)
    221   1.1  mycroft 		return (error);
    222   1.1  mycroft 
    223  1.11  mycroft 	pcmcia_function_unconfigure(sc->sc_pf);
    224   1.1  mycroft 
    225   1.1  mycroft 	return (0);
    226   1.1  mycroft }
    227   1.1  mycroft 
    228   1.1  mycroft int
    229   1.1  mycroft nca_pcmcia_enable(arg, onoff)
    230   1.4     joda 	struct device *arg;
    231   1.1  mycroft 	int onoff;
    232   1.1  mycroft {
    233  1.11  mycroft 	struct nca_pcmcia_softc *sc = (struct nca_pcmcia_softc*)arg;
    234  1.12  mycroft 	int error;
    235   1.1  mycroft 
    236   1.1  mycroft 	if (onoff) {
    237   1.1  mycroft 		/*
    238  1.11  mycroft 		 * If attach is in progress, we already have the device
    239  1.11  mycroft 		 * powered up.
    240   1.1  mycroft 		 */
    241  1.11  mycroft 		if (sc->sc_state == NCA_PCMCIA_ATTACH1) {
    242  1.11  mycroft 			sc->sc_state = NCA_PCMCIA_ATTACH2;
    243  1.11  mycroft 		} else {
    244  1.11  mycroft 			/* Establish the interrupt handler. */
    245  1.11  mycroft 			sc->sc_ih = pcmcia_intr_establish(sc->sc_pf, IPL_BIO,
    246  1.11  mycroft 			    ncr5380_intr, &sc->sc_ncr5380);
    247  1.12  mycroft 			if (!sc->sc_ih)
    248  1.11  mycroft 				return (EIO);
    249  1.11  mycroft 
    250  1.12  mycroft 			error = pcmcia_function_enable(sc->sc_pf);
    251  1.12  mycroft 			if (error) {
    252  1.12  mycroft 				pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
    253  1.13  mycroft 				sc->sc_ih = 0;
    254  1.12  mycroft 				return (error);
    255   1.1  mycroft 			}
    256   1.1  mycroft 
    257   1.1  mycroft 			/* Initialize only chip.  */
    258  1.11  mycroft 			ncr5380_init(&sc->sc_ncr5380);
    259   1.1  mycroft 		}
    260   1.1  mycroft 	} else {
    261  1.11  mycroft 		pcmcia_function_disable(sc->sc_pf);
    262  1.11  mycroft 		pcmcia_intr_disestablish(sc->sc_pf, sc->sc_ih);
    263  1.11  mycroft 		sc->sc_ih = 0;
    264   1.1  mycroft 	}
    265   1.1  mycroft 
    266   1.1  mycroft 	return (0);
    267   1.1  mycroft }
    268