Home | History | Annotate | Line # | Download | only in isapnp
wdc_isapnp.c revision 1.19.2.1
      1  1.19.2.1     skrll /*	$NetBSD: wdc_isapnp.c,v 1.19.2.1 2004/08/03 10:48:22 skrll Exp $	*/
      2       1.1   mycroft 
      3       1.6   mycroft /*-
      4  1.19.2.1     skrll  * Copyright (c) 1998, 2003 The NetBSD Foundation, Inc.
      5       1.6   mycroft  * All rights reserved.
      6       1.1   mycroft  *
      7       1.6   mycroft  * This code is derived from software contributed to The NetBSD Foundation
      8       1.6   mycroft  * by Charles M. Hannum and by Onno van der Linden.
      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.6   mycroft  *        This product includes software developed by the NetBSD
     21       1.6   mycroft  *        Foundation, Inc. and its contributors.
     22       1.6   mycroft  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.6   mycroft  *    contributors may be used to endorse or promote products derived
     24       1.6   mycroft  *    from this software without specific prior written permission.
     25       1.1   mycroft  *
     26       1.6   mycroft  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.6   mycroft  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.6   mycroft  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.6   mycroft  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.6   mycroft  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.6   mycroft  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.6   mycroft  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.6   mycroft  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.6   mycroft  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.6   mycroft  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.6   mycroft  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1   mycroft  */
     38      1.14     lukem 
     39      1.14     lukem #include <sys/cdefs.h>
     40  1.19.2.1     skrll __KERNEL_RCSID(0, "$NetBSD: wdc_isapnp.c,v 1.19.2.1 2004/08/03 10:48:22 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.8    bouyer #include <sys/malloc.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/isa/isavar.h>
     51       1.1   mycroft #include <dev/isa/isadmavar.h>
     52       1.1   mycroft 
     53       1.1   mycroft #include <dev/isapnp/isapnpreg.h>
     54       1.1   mycroft #include <dev/isapnp/isapnpvar.h>
     55       1.5  christos #include <dev/isapnp/isapnpdevs.h>
     56       1.1   mycroft 
     57       1.8    bouyer #include <dev/ata/atavar.h>
     58       1.1   mycroft #include <dev/ic/wdcreg.h>
     59       1.1   mycroft #include <dev/ic/wdcvar.h>
     60       1.1   mycroft 
     61       1.1   mycroft struct wdc_isapnp_softc {
     62       1.1   mycroft 	struct	wdc_softc sc_wdcdev;
     63  1.19.2.1     skrll 	struct	wdc_channel *wdc_chanlist[1];
     64  1.19.2.1     skrll 	struct	wdc_channel wdc_channel;
     65  1.19.2.1     skrll 	struct	ata_queue wdc_chqueue;
     66       1.3   thorpej 	isa_chipset_tag_t sc_ic;
     67       1.1   mycroft 	void	*sc_ih;
     68       1.1   mycroft 	int	sc_drq;
     69       1.1   mycroft };
     70       1.1   mycroft 
     71       1.1   mycroft int	wdc_isapnp_probe 	__P((struct device *, struct cfdata *, void *));
     72       1.1   mycroft void	wdc_isapnp_attach 	__P((struct device *, struct device *, void *));
     73       1.1   mycroft 
     74      1.17   thorpej CFATTACH_DECL(wdc_isapnp, sizeof(struct wdc_isapnp_softc),
     75      1.18   thorpej     wdc_isapnp_probe, wdc_isapnp_attach, NULL, NULL);
     76       1.1   mycroft 
     77       1.1   mycroft #ifdef notyet
     78       1.8    bouyer static void	wdc_isapnp_dma_setup __P((struct wdc_isapnp_softc *));
     79       1.1   mycroft static void	wdc_isapnp_dma_start __P((void *, void *, size_t, int));
     80       1.1   mycroft static void	wdc_isapnp_dma_finish __P((void *));
     81       1.1   mycroft #endif
     82       1.1   mycroft 
     83       1.1   mycroft int
     84       1.1   mycroft wdc_isapnp_probe(parent, match, aux)
     85       1.1   mycroft 	struct device *parent;
     86       1.1   mycroft 	struct cfdata *match;
     87       1.1   mycroft 	void *aux;
     88       1.1   mycroft {
     89      1.13   mycroft 	int pri, variant;
     90      1.12   mycroft 
     91      1.13   mycroft 	pri = isapnp_devmatch(aux, &isapnp_wdc_devinfo, &variant);
     92      1.13   mycroft 	if (pri && variant > 0)
     93      1.13   mycroft 		pri = 0;
     94      1.13   mycroft 	return (pri);
     95       1.1   mycroft }
     96       1.1   mycroft 
     97       1.1   mycroft void
     98       1.1   mycroft wdc_isapnp_attach(parent, self, aux)
     99       1.1   mycroft 	struct device *parent, *self;
    100       1.1   mycroft 	void *aux;
    101       1.1   mycroft {
    102       1.1   mycroft 	struct wdc_isapnp_softc *sc = (void *)self;
    103       1.1   mycroft 	struct isapnp_attach_args *ipa = aux;
    104  1.19.2.1     skrll 	int i;
    105       1.1   mycroft 
    106       1.1   mycroft 	if (ipa->ipa_nio != 2 ||
    107       1.1   mycroft 	    ipa->ipa_nmem != 0 ||
    108       1.1   mycroft 	    ipa->ipa_nmem32 != 0 ||
    109       1.1   mycroft 	    ipa->ipa_nirq != 1 ||
    110       1.1   mycroft 	    ipa->ipa_ndrq > 1) {
    111      1.19      matt 		printf(": unexpected configuration\n");
    112       1.1   mycroft 		return;
    113       1.1   mycroft 	}
    114       1.1   mycroft 
    115       1.1   mycroft 	if (isapnp_config(ipa->ipa_iot, ipa->ipa_memt, ipa)) {
    116      1.19      matt 		printf(": couldn't map registers\n");
    117       1.1   mycroft 		return;
    118       1.1   mycroft 	}
    119       1.1   mycroft 
    120      1.19      matt 	printf(": %s %s\n", ipa->ipa_devident, ipa->ipa_devclass);
    121       1.1   mycroft 
    122       1.8    bouyer 	sc->wdc_channel.cmd_iot = ipa->ipa_iot;
    123       1.8    bouyer 	sc->wdc_channel.ctl_iot = ipa->ipa_iot;
    124       1.7  wrstuden 	/*
    125       1.7  wrstuden 	 * An IDE controller can feed us the regions in any order. Pass
    126       1.7  wrstuden 	 * them along with the 8-byte region in sc_ad.ioh, and the other
    127       1.7  wrstuden 	 * (2 byte) region in auxioh.
    128       1.7  wrstuden 	 */
    129       1.7  wrstuden 	if (ipa->ipa_io[0].length == 8) {
    130  1.19.2.1     skrll 		sc->wdc_channel.cmd_baseioh = ipa->ipa_io[0].h;
    131       1.8    bouyer 		sc->wdc_channel.ctl_ioh = ipa->ipa_io[1].h;
    132       1.7  wrstuden 	} else {
    133  1.19.2.1     skrll 		sc->wdc_channel.cmd_baseioh = ipa->ipa_io[1].h;
    134       1.8    bouyer 		sc->wdc_channel.ctl_ioh = ipa->ipa_io[0].h;
    135       1.7  wrstuden 	}
    136  1.19.2.1     skrll 
    137  1.19.2.1     skrll 	for (i = 0; i < WDC_NREG; i++) {
    138  1.19.2.1     skrll 		if (bus_space_subregion(sc->wdc_channel.cmd_iot,
    139  1.19.2.1     skrll 		    sc->wdc_channel.cmd_baseioh, i, i == 0 ? 4 : 1,
    140  1.19.2.1     skrll 		    &sc->wdc_channel.cmd_iohs[i]) != 0) {
    141  1.19.2.1     skrll 			printf(": couldn't subregion registers\n");
    142  1.19.2.1     skrll 			return;
    143  1.19.2.1     skrll 		}
    144  1.19.2.1     skrll 	}
    145  1.19.2.1     skrll 	wdc_init_shadow_regs(&sc->wdc_channel);
    146       1.8    bouyer 	sc->wdc_channel.data32iot = sc->wdc_channel.cmd_iot;
    147  1.19.2.1     skrll 	sc->wdc_channel.data32ioh = sc->wdc_channel.cmd_iohs[0];
    148       1.8    bouyer 
    149       1.3   thorpej 	sc->sc_ic = ipa->ipa_ic;
    150       1.1   mycroft 	sc->sc_ih = isa_intr_establish(ipa->ipa_ic, ipa->ipa_irq[0].num,
    151       1.8    bouyer 	    ipa->ipa_irq[0].type, IPL_BIO, wdcintr, &sc->wdc_channel);
    152       1.1   mycroft 
    153       1.1   mycroft #ifdef notyet
    154       1.1   mycroft 	if (ipa->ipa_ndrq > 0) {
    155       1.1   mycroft 		sc->sc_drq = ipa->ipa_drq[0].num;
    156       1.1   mycroft 
    157       1.1   mycroft 		sc->sc_ad.cap |= WDC_CAPABILITY_DMA;
    158       1.1   mycroft 		sc->sc_ad.dma_start = &wdc_isapnp_dma_start;
    159       1.1   mycroft 		sc->sc_ad.dma_finish = &wdc_isapnp_dma_finish;
    160       1.8    bouyer 		wdc_isapnp_dma_setup(sc);
    161       1.1   mycroft 	}
    162       1.1   mycroft #endif
    163       1.8    bouyer 	sc->sc_wdcdev.cap |= WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_DATA32;
    164      1.10    bouyer 	sc->sc_wdcdev.PIO_cap = 0;
    165      1.19      matt 	sc->wdc_chanlist[0] = &sc->wdc_channel;
    166      1.19      matt 	sc->sc_wdcdev.channels = sc->wdc_chanlist;
    167       1.8    bouyer 	sc->sc_wdcdev.nchannels = 1;
    168  1.19.2.1     skrll 	sc->wdc_channel.ch_channel = 0;
    169  1.19.2.1     skrll 	sc->wdc_channel.ch_wdc = &sc->sc_wdcdev;
    170      1.19      matt 	sc->wdc_channel.ch_queue = &sc->wdc_chqueue;
    171  1.19.2.1     skrll 
    172       1.8    bouyer 	wdcattach(&sc->wdc_channel);
    173       1.1   mycroft }
    174       1.1   mycroft 
    175       1.1   mycroft #ifdef notyet
    176       1.1   mycroft static void
    177       1.8    bouyer wdc_isapnp_dma_setup(sc)
    178       1.8    bouyer 	struct wdc_isapnp_softc *sc;
    179       1.1   mycroft {
    180       1.1   mycroft 
    181       1.3   thorpej 	if (isa_dmamap_create(sc->sc_ic, sc->sc_drq,
    182       1.1   mycroft 	    MAXPHYS, BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW)) {
    183       1.1   mycroft 		printf("%s: can't create map for drq %d\n",
    184       1.1   mycroft 		    sc->sc_wdcdev.sc_dev.dv_xname, sc->sc_drq);
    185       1.8    bouyer 		sc->sc_wdcdev.cap &= ~WDC_CAPABILITY_DMA;
    186       1.1   mycroft 	}
    187       1.1   mycroft }
    188       1.1   mycroft 
    189       1.1   mycroft static void
    190       1.1   mycroft wdc_isapnp_dma_start(scv, buf, size, read)
    191       1.1   mycroft 	void *scv, *buf;
    192       1.1   mycroft 	size_t size;
    193       1.1   mycroft 	int read;
    194       1.1   mycroft {
    195       1.1   mycroft 	struct wdc_isapnp_softc *sc = scv;
    196       1.1   mycroft 
    197      1.11   mycroft 	isa_dmastart(sc->sc_ic, sc->sc_drq, buf, size, NULL,
    198      1.11   mycroft 	    (read ? DMAMODE_READ : DMAMODE_WRITE) | DMAMODE_DEMAND,
    199       1.1   mycroft 	    BUS_DMA_NOWAIT);
    200       1.1   mycroft }
    201       1.1   mycroft 
    202       1.1   mycroft static void
    203       1.1   mycroft wdc_isapnp_dma_finish(scv)
    204       1.1   mycroft 	void *scv;
    205       1.1   mycroft {
    206       1.1   mycroft 	struct wdc_isapnp_softc *sc = scv;
    207       1.1   mycroft 
    208       1.3   thorpej 	isa_dmadone(sc->sc_ic, sc->sc_drq);
    209       1.1   mycroft }
    210       1.1   mycroft #endif
    211