Home | History | Annotate | Line # | Download | only in dev
wdc_amiga.c revision 1.5.8.1
      1  1.5.8.1  nathanw /*	$NetBSD: wdc_amiga.c,v 1.5.8.1 2001/04/09 01:50:36 nathanw Exp $	*/
      2      1.1   mhitch 
      3      1.1   mhitch /*-
      4      1.1   mhitch  * Copyright (c) 2000 The NetBSD Foundation, Inc.
      5      1.1   mhitch  * All rights reserved.
      6      1.1   mhitch  *
      7      1.1   mhitch  * This code is derived from software contributed to The NetBSD Foundation
      8      1.1   mhitch  * by Michael L. Hitch.
      9      1.1   mhitch  *
     10      1.1   mhitch  * Redistribution and use in source and binary forms, with or without
     11      1.1   mhitch  * modification, are permitted provided that the following conditions
     12      1.1   mhitch  * are met:
     13      1.1   mhitch  * 1. Redistributions of source code must retain the above copyright
     14      1.1   mhitch  *    notice, this list of conditions and the following disclaimer.
     15      1.1   mhitch  * 2. Redistributions in binary form must reproduce the above copyright
     16      1.1   mhitch  *    notice, this list of conditions and the following disclaimer in the
     17      1.1   mhitch  *    documentation and/or other materials provided with the distribution.
     18      1.1   mhitch  * 3. All advertising materials mentioning features or use of this software
     19      1.1   mhitch  *    must display the following acknowledgement:
     20      1.1   mhitch  *        This product includes software developed by the NetBSD
     21      1.1   mhitch  *        Foundation, Inc. and its contributors.
     22      1.1   mhitch  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23      1.1   mhitch  *    contributors may be used to endorse or promote products derived
     24      1.1   mhitch  *    from this software without specific prior written permission.
     25      1.1   mhitch  *
     26      1.1   mhitch  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27      1.1   mhitch  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28      1.1   mhitch  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29      1.1   mhitch  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30      1.1   mhitch  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31      1.1   mhitch  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32      1.1   mhitch  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33      1.1   mhitch  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34      1.1   mhitch  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35      1.1   mhitch  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36      1.1   mhitch  * POSSIBILITY OF SUCH DAMAGE.
     37      1.1   mhitch  */
     38      1.1   mhitch 
     39      1.1   mhitch #include <sys/types.h>
     40      1.1   mhitch #include <sys/param.h>
     41      1.1   mhitch #include <sys/systm.h>
     42      1.1   mhitch #include <sys/malloc.h>
     43      1.1   mhitch #include <sys/device.h>
     44      1.1   mhitch 
     45      1.1   mhitch #include <machine/cpu.h>
     46      1.1   mhitch #include <machine/bus.h>
     47      1.1   mhitch #include <machine/intr.h>
     48      1.1   mhitch #include <machine/bswap.h>
     49      1.1   mhitch 
     50      1.1   mhitch #include <amiga/amiga/cia.h>
     51      1.1   mhitch #include <amiga/amiga/custom.h>
     52      1.1   mhitch #include <amiga/amiga/device.h>
     53      1.1   mhitch #include <amiga/amiga/gayle.h>
     54      1.1   mhitch #include <amiga/dev/zbusvar.h>
     55      1.1   mhitch 
     56      1.1   mhitch #include <dev/ata/atavar.h>
     57      1.1   mhitch #include <dev/ic/wdcvar.h>
     58      1.1   mhitch 
     59      1.1   mhitch struct wdc_amiga_softc {
     60      1.1   mhitch 	struct wdc_softc sc_wdcdev;
     61      1.1   mhitch 	struct	channel_softc *wdc_chanptr;
     62      1.1   mhitch 	struct  channel_softc wdc_channel;
     63      1.1   mhitch 	struct isr sc_isr;
     64      1.1   mhitch 	volatile u_char *sc_intreg;
     65      1.4  aymeric 	struct bus_space_tag cmd_iot;
     66      1.4  aymeric 	struct bus_space_tag ctl_iot;
     67      1.1   mhitch 	char	sc_a1200;
     68      1.1   mhitch };
     69      1.1   mhitch 
     70      1.1   mhitch int	wdc_amiga_probe	__P((struct device *, struct cfdata *, void *));
     71      1.1   mhitch void	wdc_amiga_attach	__P((struct device *, struct device *, void *));
     72      1.1   mhitch int	wdc_amiga_intr	__P((void *));
     73      1.1   mhitch 
     74      1.1   mhitch struct cfattach wdc_amiga_ca = {
     75      1.1   mhitch 	sizeof(struct wdc_amiga_softc), wdc_amiga_probe, wdc_amiga_attach
     76      1.1   mhitch };
     77      1.1   mhitch 
     78      1.1   mhitch int
     79      1.1   mhitch wdc_amiga_probe(parent, cfp, aux)
     80      1.1   mhitch 	struct device *parent;
     81      1.1   mhitch 	struct cfdata *cfp;
     82      1.1   mhitch 	void *aux;
     83      1.1   mhitch {
     84      1.2  aymeric 	if ((!is_a4000() && !is_a1200()) || !matchname(aux, "wdc"))
     85      1.1   mhitch 		return(0);
     86      1.1   mhitch 	return 1;
     87      1.1   mhitch }
     88      1.1   mhitch 
     89      1.1   mhitch void
     90      1.1   mhitch wdc_amiga_attach(parent, self, aux)
     91      1.1   mhitch 	struct device *parent, *self;
     92      1.1   mhitch 	void *aux;
     93      1.1   mhitch {
     94      1.1   mhitch 	struct wdc_amiga_softc *sc = (void *)self;
     95      1.1   mhitch 
     96      1.1   mhitch 	printf("\n");
     97      1.1   mhitch 
     98      1.1   mhitch 	if (is_a4000()) {
     99      1.4  aymeric 		sc->cmd_iot.base = (u_long)ztwomap(0xdd2020 + 2);
    100      1.1   mhitch 		sc->sc_intreg = (u_char *)ztwomap(0xdd2020 + 0x1000);
    101      1.3  aymeric 		sc->sc_a1200 = 0;
    102      1.1   mhitch 	} else {
    103      1.4  aymeric 		sc->cmd_iot.base = (u_long) ztwomap(0xda0000 + 2);
    104      1.4  aymeric 		sc->ctl_iot.base = (u_long) ztwomap(0xda4000);
    105      1.2  aymeric 		gayle_init();
    106      1.1   mhitch 		sc->sc_intreg = &gayle.intreq;
    107      1.4  aymeric 		sc->sc_a1200 = 1;
    108      1.1   mhitch 	}
    109      1.4  aymeric 	sc->cmd_iot.absm = sc->ctl_iot.absm = &amiga_bus_stride_4swap;
    110      1.4  aymeric 	sc->wdc_channel.cmd_iot = &sc->cmd_iot;
    111      1.4  aymeric 	sc->wdc_channel.ctl_iot = &sc->ctl_iot;
    112      1.4  aymeric 
    113      1.1   mhitch 	if (bus_space_map(sc->wdc_channel.cmd_iot, 0, 0x40, 0,
    114      1.1   mhitch 			  &sc->wdc_channel.cmd_ioh)) {
    115      1.1   mhitch 		printf("%s: couldn't map registers\n",
    116      1.1   mhitch 		    sc->sc_wdcdev.sc_dev.dv_xname);
    117      1.1   mhitch 		return;
    118      1.1   mhitch 	}
    119      1.4  aymeric 
    120  1.5.8.1  nathanw 	if (sc->sc_a1200)
    121      1.4  aymeric 		sc->wdc_channel.ctl_ioh = sc->ctl_iot.base;
    122      1.4  aymeric 	else if (bus_space_subregion(sc->wdc_channel.cmd_iot,
    123      1.1   mhitch 	    sc->wdc_channel.cmd_ioh, 0x406, 1, &sc->wdc_channel.ctl_ioh))
    124      1.1   mhitch 		return;
    125      1.1   mhitch 
    126      1.3  aymeric 	sc->sc_wdcdev.cap = WDC_CAPABILITY_DATA16;
    127      1.1   mhitch 	sc->sc_wdcdev.PIO_cap = 0;
    128      1.1   mhitch 	sc->wdc_chanptr = &sc->wdc_channel;
    129      1.1   mhitch 	sc->sc_wdcdev.channels = &sc->wdc_chanptr;
    130      1.1   mhitch 	sc->sc_wdcdev.nchannels = 1;
    131      1.1   mhitch 	sc->wdc_channel.channel = 0;
    132      1.1   mhitch 	sc->wdc_channel.wdc = &sc->sc_wdcdev;
    133      1.1   mhitch 	sc->wdc_channel.ch_queue = malloc(sizeof(struct channel_queue),
    134      1.1   mhitch 	    M_DEVBUF, M_NOWAIT);
    135      1.1   mhitch 	if (sc->wdc_channel.ch_queue == NULL) {
    136      1.1   mhitch 	    printf("%s: can't allocate memory for command queue",
    137      1.1   mhitch 		sc->sc_wdcdev.sc_dev.dv_xname);
    138      1.1   mhitch 	    return;
    139      1.1   mhitch 	}
    140      1.1   mhitch 	sc->sc_isr.isr_intr = wdc_amiga_intr;
    141      1.1   mhitch 	sc->sc_isr.isr_arg = sc;
    142      1.1   mhitch 	sc->sc_isr.isr_ipl = 2;
    143      1.1   mhitch 	add_isr (&sc->sc_isr);
    144      1.1   mhitch 
    145  1.5.8.1  nathanw 	if (sc->sc_a1200)
    146      1.5  aymeric 		gayle.intena |= GAYLE_INT_IDE;
    147      1.4  aymeric 
    148      1.1   mhitch 	wdcattach(&sc->wdc_channel);
    149      1.1   mhitch }
    150      1.1   mhitch 
    151      1.1   mhitch int
    152      1.1   mhitch wdc_amiga_intr(arg)
    153      1.1   mhitch 	void *arg;
    154      1.1   mhitch {
    155      1.1   mhitch 	struct wdc_amiga_softc *sc = (struct wdc_amiga_softc *)arg;
    156      1.4  aymeric 	u_char intreq = *sc->sc_intreg;
    157      1.3  aymeric 	int ret = 0;
    158      1.1   mhitch 
    159      1.4  aymeric 	if (intreq & GAYLE_INT_IDE) {
    160      1.4  aymeric 		if (sc->sc_a1200)
    161      1.4  aymeric 			gayle.intreq = 0x7c | (intreq & 0x03);
    162      1.3  aymeric 		ret = wdcintr(&sc->wdc_channel);
    163      1.3  aymeric 	}
    164      1.3  aymeric 
    165      1.3  aymeric 	return ret;
    166      1.1   mhitch }
    167