Home | History | Annotate | Line # | Download | only in dev
wdc_obio.c revision 1.46.16.4
      1  1.46.16.4  macallan /*	$NetBSD: wdc_obio.c,v 1.46.16.4 2007/08/02 05:33:03 macallan Exp $	*/
      2        1.1    tsubai 
      3        1.1    tsubai /*-
      4       1.27   mycroft  * Copyright (c) 1998, 2003 The NetBSD Foundation, Inc.
      5        1.1    tsubai  * All rights reserved.
      6        1.1    tsubai  *
      7        1.1    tsubai  * This code is derived from software contributed to The NetBSD Foundation
      8        1.1    tsubai  * by Charles M. Hannum and by Onno van der Linden.
      9        1.1    tsubai  *
     10        1.1    tsubai  * Redistribution and use in source and binary forms, with or without
     11        1.1    tsubai  * modification, are permitted provided that the following conditions
     12        1.1    tsubai  * are met:
     13        1.1    tsubai  * 1. Redistributions of source code must retain the above copyright
     14        1.1    tsubai  *    notice, this list of conditions and the following disclaimer.
     15        1.1    tsubai  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1    tsubai  *    notice, this list of conditions and the following disclaimer in the
     17        1.1    tsubai  *    documentation and/or other materials provided with the distribution.
     18        1.1    tsubai  * 3. All advertising materials mentioning features or use of this software
     19        1.1    tsubai  *    must display the following acknowledgement:
     20        1.1    tsubai  *        This product includes software developed by the NetBSD
     21        1.1    tsubai  *        Foundation, Inc. and its contributors.
     22        1.1    tsubai  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23        1.1    tsubai  *    contributors may be used to endorse or promote products derived
     24        1.1    tsubai  *    from this software without specific prior written permission.
     25        1.1    tsubai  *
     26        1.1    tsubai  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27        1.1    tsubai  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28        1.1    tsubai  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29        1.1    tsubai  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30        1.1    tsubai  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31        1.1    tsubai  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32        1.1    tsubai  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33        1.1    tsubai  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34        1.1    tsubai  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35        1.1    tsubai  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36        1.1    tsubai  * POSSIBILITY OF SUCH DAMAGE.
     37        1.1    tsubai  */
     38       1.26     lukem 
     39       1.26     lukem #include <sys/cdefs.h>
     40  1.46.16.4  macallan __KERNEL_RCSID(0, "$NetBSD: wdc_obio.c,v 1.46.16.4 2007/08/02 05:33:03 macallan Exp $");
     41        1.1    tsubai 
     42        1.1    tsubai #include <sys/param.h>
     43        1.1    tsubai #include <sys/systm.h>
     44        1.1    tsubai #include <sys/device.h>
     45        1.1    tsubai #include <sys/malloc.h>
     46  1.46.16.4  macallan #include <sys/extent.h>
     47        1.1    tsubai 
     48       1.10       mrg #include <uvm/uvm_extern.h>
     49        1.1    tsubai 
     50        1.1    tsubai #include <machine/bus.h>
     51        1.1    tsubai #include <machine/autoconf.h>
     52  1.46.16.2   garbled #include <machine/pio.h>
     53        1.1    tsubai 
     54        1.9    tsubai #include <dev/ata/atareg.h>
     55        1.1    tsubai #include <dev/ata/atavar.h>
     56        1.1    tsubai #include <dev/ic/wdcvar.h>
     57        1.1    tsubai 
     58       1.12      matt #include <dev/ofw/openfirm.h>
     59       1.12      matt 
     60        1.1    tsubai #include <macppc/dev/dbdma.h>
     61        1.1    tsubai 
     62        1.1    tsubai #define WDC_REG_NPORTS		8
     63        1.1    tsubai #define WDC_AUXREG_OFFSET	0x16
     64        1.1    tsubai #define WDC_DEFAULT_PIO_IRQ	13	/* XXX */
     65        1.1    tsubai #define WDC_DEFAULT_DMA_IRQ	2	/* XXX */
     66        1.1    tsubai 
     67        1.1    tsubai #define WDC_OPTIONS_DMA 0x01
     68        1.1    tsubai 
     69        1.1    tsubai /*
     70        1.1    tsubai  * XXX This code currently doesn't even try to allow 32-bit data port use.
     71        1.1    tsubai  */
     72        1.1    tsubai 
     73  1.46.16.4  macallan u_int8_t bsr1_s(bus_space_tag_t, bus_space_handle_t, bus_size_t);
     74  1.46.16.4  macallan 
     75  1.46.16.4  macallan 
     76        1.1    tsubai struct wdc_obio_softc {
     77        1.1    tsubai 	struct wdc_softc sc_wdcdev;
     78       1.39   thorpej 	struct ata_channel *sc_chanptr;
     79       1.39   thorpej 	struct ata_channel sc_channel;
     80       1.39   thorpej 	struct ata_queue sc_chqueue;
     81       1.39   thorpej 	struct wdc_regs sc_wdc_regs;
     82  1.46.16.4  macallan 	struct powerpc_bus_space sc_bus_space;
     83        1.1    tsubai 	dbdma_regmap_t *sc_dmareg;
     84        1.1    tsubai 	dbdma_command_t	*sc_dmacmd;
     85       1.18       dbj 	u_int sc_dmaconf[2];	/* per target value of CONFIG_REG */
     86        1.5    tsubai 	void *sc_ih;
     87        1.1    tsubai };
     88        1.1    tsubai 
     89        1.9    tsubai int wdc_obio_probe __P((struct device *, struct cfdata *, void *));
     90        1.9    tsubai void wdc_obio_attach __P((struct device *, struct device *, void *));
     91        1.9    tsubai int wdc_obio_detach __P((struct device *, int));
     92        1.9    tsubai int wdc_obio_dma_init __P((void *, int, int, void *, size_t, int));
     93        1.9    tsubai void wdc_obio_dma_start __P((void *, int, int));
     94        1.9    tsubai int wdc_obio_dma_finish __P((void *, int, int, int));
     95       1.18       dbj 
     96       1.39   thorpej static void wdc_obio_select __P((struct ata_channel *, int));
     97       1.39   thorpej static void adjust_timing __P((struct ata_channel *));
     98       1.39   thorpej static void ata4_adjust_timing __P((struct ata_channel *));
     99        1.1    tsubai 
    100       1.22   thorpej CFATTACH_DECL(wdc_obio, sizeof(struct wdc_obio_softc),
    101       1.22   thorpej     wdc_obio_probe, wdc_obio_attach, wdc_obio_detach, wdcactivate);
    102        1.1    tsubai 
    103        1.1    tsubai int
    104        1.1    tsubai wdc_obio_probe(parent, match, aux)
    105        1.1    tsubai 	struct device *parent;
    106        1.1    tsubai 	struct cfdata *match;
    107        1.1    tsubai 	void *aux;
    108        1.1    tsubai {
    109        1.1    tsubai 	struct confargs *ca = aux;
    110        1.3    tsubai 	char compat[32];
    111        1.1    tsubai 
    112        1.3    tsubai 	/* XXX should not use name */
    113        1.1    tsubai 	if (strcmp(ca->ca_name, "ATA") == 0 ||
    114        1.1    tsubai 	    strcmp(ca->ca_name, "ata") == 0 ||
    115        1.2    tsubai 	    strcmp(ca->ca_name, "ata0") == 0 ||
    116        1.1    tsubai 	    strcmp(ca->ca_name, "ide") == 0)
    117        1.3    tsubai 		return 1;
    118        1.3    tsubai 
    119       1.14       wiz 	memset(compat, 0, sizeof(compat));
    120        1.3    tsubai 	OF_getprop(ca->ca_node, "compatible", compat, sizeof(compat));
    121        1.6    tsubai 	if (strcmp(compat, "heathrow-ata") == 0 ||
    122        1.6    tsubai 	    strcmp(compat, "keylargo-ata") == 0)
    123        1.1    tsubai 		return 1;
    124        1.1    tsubai 
    125        1.1    tsubai 	return 0;
    126        1.1    tsubai }
    127        1.1    tsubai 
    128        1.1    tsubai void
    129        1.1    tsubai wdc_obio_attach(parent, self, aux)
    130        1.1    tsubai 	struct device *parent, *self;
    131        1.1    tsubai 	void *aux;
    132        1.1    tsubai {
    133        1.1    tsubai 	struct wdc_obio_softc *sc = (void *)self;
    134       1.39   thorpej 	struct wdc_regs *wdr;
    135        1.1    tsubai 	struct confargs *ca = aux;
    136       1.39   thorpej 	struct ata_channel *chp = &sc->sc_channel;
    137       1.30    bouyer 	int intr, i;
    138        1.1    tsubai 	int use_dma = 0;
    139       1.45  macallan 	char path[80], compat[32];
    140       1.45  macallan 
    141       1.45  macallan 	OF_getprop(ca->ca_node, "compatible", compat, sizeof(compat));
    142        1.1    tsubai 
    143       1.44   thorpej 	if (device_cfdata(&sc->sc_wdcdev.sc_atac.atac_dev)->cf_flags &
    144       1.44   thorpej 	    WDC_OPTIONS_DMA) {
    145        1.1    tsubai 		if (ca->ca_nreg >= 16 || ca->ca_nintr == -1)
    146        1.1    tsubai 			use_dma = 1;	/* XXX Don't work yet. */
    147        1.1    tsubai 	}
    148        1.1    tsubai 
    149        1.1    tsubai 	if (ca->ca_nintr >= 4 && ca->ca_nreg >= 8) {
    150        1.4    tsubai 		intr = ca->ca_intr[0];
    151        1.4    tsubai 		printf(" irq %d", intr);
    152        1.4    tsubai 	} else if (ca->ca_nintr == -1) {
    153        1.4    tsubai 		intr = WDC_DEFAULT_PIO_IRQ;
    154        1.4    tsubai 		printf(" irq property not found; using %d", intr);
    155        1.4    tsubai 	} else {
    156        1.1    tsubai 		printf(": couldn't get irq property\n");
    157        1.1    tsubai 		return;
    158        1.1    tsubai 	}
    159        1.1    tsubai 
    160        1.1    tsubai 	if (use_dma)
    161        1.1    tsubai 		printf(": DMA transfer");
    162        1.1    tsubai 
    163        1.1    tsubai 	printf("\n");
    164        1.1    tsubai 
    165       1.39   thorpej 	sc->sc_wdcdev.regs = wdr = &sc->sc_wdc_regs;
    166       1.39   thorpej 
    167  1.46.16.4  macallan #if 0
    168  1.46.16.4  macallan 	wdr->cmd_iot = wdr->ctl_iot =
    169  1.46.16.4  macallan 		macppc_make_bus_space_tag(ca->ca_baseaddr + ca->ca_reg[0], 4);
    170  1.46.16.4  macallan #endif
    171  1.46.16.4  macallan 	wdr->cmd_iot = wdr->ctl_iot = &sc->sc_bus_space;
    172  1.46.16.4  macallan 	sc->sc_bus_space.pbs_flags =
    173  1.46.16.4  macallan 	    ca->ca_tag->pbs_flags & ~_BUS_SPACE_STRIDE_MASK;
    174  1.46.16.4  macallan 	sc->sc_bus_space.pbs_flags |= 4;
    175  1.46.16.4  macallan 	sc->sc_bus_space.pbs_offset = ca->ca_baseaddr + ca->ca_reg[0];
    176  1.46.16.4  macallan 	sc->sc_bus_space.pbs_base = 0;
    177  1.46.16.4  macallan 	sc->sc_bus_space.pbs_limit = 0x100000;
    178  1.46.16.4  macallan 	sc->sc_bus_space.pbs_extent = extent_create("wdc_obio", 0, 0x100000,
    179  1.46.16.4  macallan 	    M_DEVBUF, NULL, 0, EX_WAITOK);
    180  1.46.16.4  macallan 
    181  1.46.16.4  macallan 	if (bus_space_init(&sc->sc_bus_space, NULL, NULL, 0))
    182  1.46.16.4  macallan 		panic("bus_space_init failed");
    183  1.46.16.4  macallan 
    184  1.46.16.4  macallan 	if (bus_space_map(wdr->cmd_iot, 0, WDC_REG_NPORTS, 0,
    185       1.39   thorpej 	    &wdr->cmd_baseioh) ||
    186  1.46.16.4  macallan 	    bus_space_subregion(wdr->cmd_iot, wdr->cmd_baseioh,
    187  1.46.16.4  macallan 			WDC_AUXREG_OFFSET, 1, &wdr->ctl_ioh)) {
    188        1.1    tsubai 		printf("%s: couldn't map registers\n",
    189       1.40   thorpej 			sc->sc_wdcdev.sc_atac.atac_dev.dv_xname);
    190        1.1    tsubai 		return;
    191        1.1    tsubai 	}
    192  1.46.16.4  macallan 
    193       1.30    bouyer 	for (i = 0; i < WDC_NREG; i++) {
    194  1.46.16.4  macallan 		if (bus_space_subregion(wdr->cmd_iot, wdr->cmd_baseioh, i,
    195       1.39   thorpej 		    i == 0 ? 4 : 1, &wdr->cmd_iohs[i]) != 0) {
    196       1.39   thorpej 			bus_space_unmap(wdr->cmd_iot, wdr->cmd_baseioh,
    197       1.30    bouyer 			    WDC_REG_NPORTS);
    198       1.30    bouyer 			printf("%s: couldn't subregion registers\n",
    199       1.40   thorpej 			    sc->sc_wdcdev.sc_atac.atac_dev.dv_xname);
    200       1.30    bouyer 			return;
    201       1.30    bouyer 		}
    202       1.30    bouyer 	}
    203        1.1    tsubai #if 0
    204       1.39   thorpej 	wdr->data32iot = wdr->cmd_iot;
    205       1.39   thorpej 	wdr->data32ioh = wdr->cmd_ioh;
    206        1.1    tsubai #endif
    207        1.1    tsubai 
    208  1.46.16.4  macallan 	sc->sc_ih = intr_establish(intr, IST_LEVEL, IPL_BIO, wdcintr, chp);
    209        1.1    tsubai 
    210        1.1    tsubai 	if (use_dma) {
    211        1.1    tsubai 		sc->sc_dmacmd = dbdma_alloc(sizeof(dbdma_command_t) * 20);
    212        1.1    tsubai 		sc->sc_dmareg = mapiodev(ca->ca_baseaddr + ca->ca_reg[2],
    213        1.1    tsubai 					 ca->ca_reg[3]);
    214       1.40   thorpej 		sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA;
    215       1.40   thorpej 		sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
    216       1.16    bouyer 		if (strcmp(ca->ca_name, "ata-4") == 0) {
    217       1.40   thorpej 			sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_UDMA;
    218       1.40   thorpej 			sc->sc_wdcdev.sc_atac.atac_udma_cap = 4;
    219       1.45  macallan 			sc->sc_wdcdev.sc_atac.atac_set_modes =
    220       1.45  macallan 			    ata4_adjust_timing;
    221       1.16    bouyer 		} else {
    222       1.40   thorpej 			sc->sc_wdcdev.sc_atac.atac_set_modes = adjust_timing;
    223       1.16    bouyer 		}
    224       1.13    bouyer #ifdef notyet
    225       1.13    bouyer 		/* Minimum cycle time is 150ns (DMA MODE 1) on ohare. */
    226       1.13    bouyer 		if (ohare) {
    227       1.40   thorpej 			sc->sc_wdcdev.sc_atac.atac_pio_cap = 3;
    228       1.40   thorpej 			sc->sc_wdcdev.sc_atac.atac_dma_cap = 1;
    229       1.13    bouyer 		}
    230       1.13    bouyer #endif
    231       1.17    bouyer 	} else {
    232       1.24       wiz 		/* all non-DMA controllers can use adjust_timing */
    233       1.40   thorpej 		sc->sc_wdcdev.sc_atac.atac_set_modes = adjust_timing;
    234        1.1    tsubai 	}
    235       1.17    bouyer 
    236       1.40   thorpej 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
    237       1.40   thorpej 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DATA16;
    238       1.39   thorpej 	sc->sc_chanptr = chp;
    239       1.40   thorpej 	sc->sc_wdcdev.sc_atac.atac_channels = &sc->sc_chanptr;
    240       1.40   thorpej 	sc->sc_wdcdev.sc_atac.atac_nchannels = 1;
    241        1.1    tsubai 	sc->sc_wdcdev.dma_arg = sc;
    242        1.1    tsubai 	sc->sc_wdcdev.dma_init = wdc_obio_dma_init;
    243        1.1    tsubai 	sc->sc_wdcdev.dma_start = wdc_obio_dma_start;
    244        1.1    tsubai 	sc->sc_wdcdev.dma_finish = wdc_obio_dma_finish;
    245       1.35   thorpej 	chp->ch_channel = 0;
    246       1.40   thorpej 	chp->ch_atac = &sc->sc_wdcdev.sc_atac;
    247       1.39   thorpej 	chp->ch_queue = &sc->sc_chqueue;
    248       1.43    bouyer 	chp->ch_ndrive = 2;
    249        1.7    tsubai 
    250       1.41   aymeric 	wdc_init_shadow_regs(chp);
    251       1.41   aymeric 
    252        1.7    tsubai #define OHARE_FEATURE_REG	0xf3000038
    253        1.7    tsubai 
    254        1.7    tsubai 	/* XXX Enable wdc1 by feature reg. */
    255       1.14       wiz 	memset(path, 0, sizeof(path));
    256        1.7    tsubai 	OF_package_to_path(ca->ca_node, path, sizeof(path));
    257        1.7    tsubai 	if (strcmp(path, "/bandit@F2000000/ohare@10/ata@21000") == 0) {
    258  1.46.16.4  macallan 		u_int x;
    259        1.7    tsubai 
    260  1.46.16.4  macallan 		x = in32rb(OHARE_FEATURE_REG);
    261        1.7    tsubai 		x |= 8;
    262  1.46.16.4  macallan 		out32rb(OHARE_FEATURE_REG, x);
    263        1.1    tsubai 	}
    264        1.1    tsubai 
    265       1.29    bouyer 	wdcattach(chp);
    266        1.9    tsubai }
    267        1.9    tsubai 
    268        1.9    tsubai /* Multiword DMA transfer timings */
    269       1.13    bouyer struct ide_timings {
    270        1.9    tsubai 	int cycle;	/* minimum cycle time [ns] */
    271        1.9    tsubai 	int active;	/* minimum command active time [ns] */
    272       1.13    bouyer };
    273  1.46.16.4  macallan static struct ide_timings pio_timing[5] = {
    274       1.19       dbj 	{ 600, 180 },    /* Mode 0 */
    275       1.19       dbj 	{ 390, 150 },    /*      1 */
    276       1.19       dbj 	{ 240, 105 },    /*      2 */
    277       1.19       dbj 	{ 180,  90 },    /*      3 */
    278       1.19       dbj 	{ 120,  75 }     /*      4 */
    279       1.13    bouyer };
    280  1.46.16.4  macallan static struct ide_timings dma_timing[3] = {
    281       1.19       dbj 	{ 480, 240 },	/* Mode 0 */
    282       1.19       dbj 	{ 165,  90 },	/* Mode 1 */
    283       1.19       dbj 	{ 120,  75 }	/* Mode 2 */
    284        1.9    tsubai };
    285        1.9    tsubai 
    286  1.46.16.4  macallan static struct ide_timings udma_timing[5] = {
    287       1.19       dbj 	{120, 180},	/* Mode 0 */
    288       1.19       dbj 	{ 90, 150},	/* Mode 1 */
    289       1.19       dbj 	{ 60, 120},	/* Mode 2 */
    290       1.19       dbj 	{ 45, 90},	/* Mode 3 */
    291       1.19       dbj 	{ 30, 90}	/* Mode 4 */
    292       1.16    bouyer };
    293       1.16    bouyer 
    294        1.9    tsubai #define TIME_TO_TICK(time) howmany((time), 30)
    295       1.16    bouyer #define PIO_REC_OFFSET 4
    296       1.16    bouyer #define PIO_REC_MIN 1
    297       1.16    bouyer #define PIO_ACT_MIN 1
    298       1.16    bouyer #define DMA_REC_OFFSET 1
    299       1.16    bouyer #define DMA_REC_MIN 1
    300       1.16    bouyer #define DMA_ACT_MIN 1
    301       1.16    bouyer 
    302       1.18       dbj #define ATA4_TIME_TO_TICK(time)  howmany((time), 15) /* 15 ns clock */
    303       1.16    bouyer 
    304       1.18       dbj #define CONFIG_REG (0x200 >> 4)		/* IDE access timing register */
    305        1.9    tsubai 
    306       1.18       dbj void
    307       1.18       dbj wdc_obio_select(chp, drive)
    308       1.39   thorpej 	struct ata_channel *chp;
    309       1.18       dbj 	int drive;
    310       1.18       dbj {
    311       1.40   thorpej 	struct wdc_obio_softc *sc = (struct wdc_obio_softc *)chp->ch_atac;
    312       1.40   thorpej 	struct wdc_regs *wdr = CHAN_TO_WDC_REGS(chp);
    313       1.39   thorpej 
    314       1.39   thorpej 	bus_space_write_4(wdr->cmd_iot, wdr->cmd_baseioh,
    315       1.18       dbj 			CONFIG_REG, sc->sc_dmaconf[drive]);
    316       1.18       dbj }
    317        1.9    tsubai 
    318        1.9    tsubai void
    319        1.9    tsubai adjust_timing(chp)
    320       1.39   thorpej 	struct ata_channel *chp;
    321        1.9    tsubai {
    322       1.40   thorpej 	struct wdc_obio_softc *sc = (struct wdc_obio_softc *)chp->ch_atac;
    323       1.13    bouyer 	int drive;
    324       1.31       mjl 	int min_cycle = 0, min_active = 0;
    325       1.31       mjl 	int cycle_tick = 0, act_tick = 0, inact_tick = 0, half_tick;
    326        1.9    tsubai 
    327       1.13    bouyer 	for (drive = 0; drive < 2; drive++) {
    328       1.18       dbj 		u_int conf = 0;
    329       1.18       dbj 		struct ata_drive_datas *drvp;
    330       1.18       dbj 
    331       1.13    bouyer 		drvp = &chp->ch_drive[drive];
    332       1.18       dbj 		/* set up pio mode timings */
    333       1.18       dbj 		if (drvp->drive_flags & DRIVE) {
    334       1.18       dbj 			int piomode = drvp->PIO_mode;
    335       1.18       dbj 			min_cycle = pio_timing[piomode].cycle;
    336       1.18       dbj 			min_active = pio_timing[piomode].active;
    337       1.18       dbj 
    338       1.18       dbj 			cycle_tick = TIME_TO_TICK(min_cycle);
    339       1.18       dbj 			act_tick = TIME_TO_TICK(min_active);
    340       1.18       dbj 			if (act_tick < PIO_ACT_MIN)
    341       1.18       dbj 				act_tick = PIO_ACT_MIN;
    342       1.18       dbj 			inact_tick = cycle_tick - act_tick - PIO_REC_OFFSET;
    343       1.18       dbj 			if (inact_tick < PIO_REC_MIN)
    344       1.18       dbj 				inact_tick = PIO_REC_MIN;
    345       1.18       dbj 			/* mask: 0x000007ff */
    346       1.18       dbj 			conf |= (inact_tick << 5) | act_tick;
    347       1.18       dbj 		}
    348       1.24       wiz 		/* Set up DMA mode timings */
    349       1.13    bouyer 		if (drvp->drive_flags & DRIVE_DMA) {
    350       1.18       dbj 			int dmamode = drvp->DMA_mode;
    351       1.18       dbj 			min_cycle = dma_timing[dmamode].cycle;
    352       1.18       dbj 			min_active = dma_timing[dmamode].active;
    353       1.18       dbj 			cycle_tick = TIME_TO_TICK(min_cycle);
    354       1.18       dbj 			act_tick = TIME_TO_TICK(min_active);
    355       1.18       dbj 			inact_tick = cycle_tick - act_tick - DMA_REC_OFFSET;
    356       1.18       dbj 			if (inact_tick < DMA_REC_MIN)
    357       1.18       dbj 				inact_tick = DMA_REC_MIN;
    358       1.18       dbj 			half_tick = 0;	/* XXX */
    359       1.18       dbj 			/* mask: 0xfffff800 */
    360       1.18       dbj 			conf |=
    361       1.18       dbj 					(half_tick << 21) |
    362       1.18       dbj 					(inact_tick << 16) | (act_tick << 11);
    363       1.13    bouyer 		}
    364       1.20    bouyer #ifdef DEBUG
    365       1.18       dbj 		if (conf) {
    366       1.18       dbj 			printf("conf[%d] = 0x%x, cyc = %d (%d ns), act = %d (%d ns), inact = %d\n",
    367       1.18       dbj 					drive, conf, cycle_tick, min_cycle, act_tick, min_active, inact_tick);
    368       1.18       dbj 		}
    369       1.20    bouyer #endif
    370       1.18       dbj 		sc->sc_dmaconf[drive] = conf;
    371       1.13    bouyer 	}
    372       1.18       dbj 	sc->sc_wdcdev.select = 0;
    373       1.18       dbj 	if (sc->sc_dmaconf[0]) {
    374       1.18       dbj 		wdc_obio_select(chp,0);
    375       1.38   thorpej 		if (sc->sc_dmaconf[1] &&
    376       1.38   thorpej 		    (sc->sc_dmaconf[0] != sc->sc_dmaconf[1])) {
    377       1.18       dbj 			sc->sc_wdcdev.select = wdc_obio_select;
    378       1.13    bouyer 		}
    379       1.18       dbj 	} else if (sc->sc_dmaconf[1]) {
    380       1.18       dbj 		wdc_obio_select(chp,1);
    381       1.13    bouyer 	}
    382       1.16    bouyer }
    383       1.16    bouyer 
    384       1.16    bouyer void
    385       1.16    bouyer ata4_adjust_timing(chp)
    386       1.39   thorpej 	struct ata_channel *chp;
    387       1.16    bouyer {
    388       1.40   thorpej 	struct wdc_obio_softc *sc = (struct wdc_obio_softc *)chp->ch_atac;
    389       1.16    bouyer 	int drive;
    390       1.31       mjl 	int min_cycle = 0, min_active = 0;
    391       1.31       mjl 	int cycle_tick = 0, act_tick = 0, inact_tick = 0;
    392       1.16    bouyer 
    393       1.18       dbj 	for (drive = 0; drive < 2; drive++) {
    394       1.18       dbj 		u_int conf = 0;
    395       1.18       dbj 		struct ata_drive_datas *drvp;
    396       1.16    bouyer 
    397       1.16    bouyer 		drvp = &chp->ch_drive[drive];
    398       1.18       dbj 		/* set up pio mode timings */
    399       1.18       dbj 
    400       1.18       dbj 		if (drvp->drive_flags & DRIVE) {
    401       1.18       dbj 			int piomode = drvp->PIO_mode;
    402       1.18       dbj 			min_cycle = pio_timing[piomode].cycle;
    403       1.18       dbj 			min_active = pio_timing[piomode].active;
    404       1.18       dbj 
    405       1.18       dbj 			cycle_tick = ATA4_TIME_TO_TICK(min_cycle);
    406       1.18       dbj 			act_tick = ATA4_TIME_TO_TICK(min_active);
    407       1.18       dbj 			inact_tick = cycle_tick - act_tick;
    408       1.18       dbj 			/* mask: 0x000003ff */
    409       1.18       dbj 			conf |= (inact_tick << 5) | act_tick;
    410       1.18       dbj 		}
    411       1.18       dbj 		/* set up dma mode timings */
    412       1.16    bouyer 		if (drvp->drive_flags & DRIVE_DMA) {
    413       1.18       dbj 			int dmamode = drvp->DMA_mode;
    414       1.18       dbj 			min_cycle = dma_timing[dmamode].cycle;
    415       1.18       dbj 			min_active = dma_timing[dmamode].active;
    416       1.18       dbj 			cycle_tick = ATA4_TIME_TO_TICK(min_cycle);
    417       1.18       dbj 			act_tick = ATA4_TIME_TO_TICK(min_active);
    418       1.18       dbj 			inact_tick = cycle_tick - act_tick;
    419       1.18       dbj 			/* mask: 0x001ffc00 */
    420       1.18       dbj 			conf |= (act_tick << 10) | (inact_tick << 15);
    421       1.16    bouyer 		}
    422       1.18       dbj 		/* set up udma mode timings */
    423       1.16    bouyer 		if (drvp->drive_flags & DRIVE_UDMA) {
    424       1.18       dbj 			int udmamode = drvp->UDMA_mode;
    425       1.18       dbj 			min_cycle = udma_timing[udmamode].cycle;
    426       1.18       dbj 			min_active = udma_timing[udmamode].active;
    427       1.18       dbj 			act_tick = ATA4_TIME_TO_TICK(min_active);
    428       1.18       dbj 			cycle_tick = ATA4_TIME_TO_TICK(min_cycle);
    429       1.18       dbj 			/* mask: 0x1ff00000 */
    430       1.18       dbj 			conf |= (cycle_tick << 21) | (act_tick << 25) | 0x100000;
    431       1.18       dbj 		}
    432       1.20    bouyer #ifdef DEBUG
    433       1.18       dbj 		if (conf) {
    434       1.18       dbj 			printf("ata4 conf[%d] = 0x%x, cyc = %d (%d ns), act = %d (%d ns), inact = %d\n",
    435       1.18       dbj 					drive, conf, cycle_tick, min_cycle, act_tick, min_active, inact_tick);
    436       1.16    bouyer 		}
    437       1.20    bouyer #endif
    438       1.18       dbj 		sc->sc_dmaconf[drive] = conf;
    439       1.16    bouyer 	}
    440       1.18       dbj 	sc->sc_wdcdev.select = 0;
    441       1.18       dbj 	if (sc->sc_dmaconf[0]) {
    442       1.18       dbj 		wdc_obio_select(chp,0);
    443       1.38   thorpej 		if (sc->sc_dmaconf[1] &&
    444       1.38   thorpej 		    (sc->sc_dmaconf[0] != sc->sc_dmaconf[1])) {
    445       1.18       dbj 			sc->sc_wdcdev.select = wdc_obio_select;
    446       1.16    bouyer 		}
    447       1.18       dbj 	} else if (sc->sc_dmaconf[1]) {
    448       1.18       dbj 		wdc_obio_select(chp,1);
    449       1.16    bouyer 	}
    450        1.5    tsubai }
    451        1.5    tsubai 
    452        1.5    tsubai int
    453        1.5    tsubai wdc_obio_detach(self, flags)
    454        1.5    tsubai 	struct device *self;
    455        1.5    tsubai 	int flags;
    456        1.5    tsubai {
    457        1.5    tsubai 	struct wdc_obio_softc *sc = (void *)self;
    458        1.5    tsubai 	int error;
    459        1.5    tsubai 
    460        1.5    tsubai 	if ((error = wdcdetach(self, flags)) != 0)
    461        1.5    tsubai 		return error;
    462        1.5    tsubai 
    463        1.5    tsubai 	intr_disestablish(sc->sc_ih);
    464        1.5    tsubai 
    465        1.5    tsubai 	/* Unmap our i/o space. */
    466       1.39   thorpej 	bus_space_unmap(sc->sc_wdcdev.regs->cmd_iot,
    467  1.46.16.2   garbled 			sc->sc_wdcdev.regs->cmd_baseioh, WDC_REG_NPORTS);
    468        1.5    tsubai 
    469        1.5    tsubai 	/* Unmap DMA registers. */
    470        1.5    tsubai 	/* XXX unmapiodev(sc->sc_dmareg); */
    471        1.5    tsubai 	/* XXX free(sc->sc_dmacmd); */
    472        1.5    tsubai 
    473        1.5    tsubai 	return 0;
    474        1.1    tsubai }
    475        1.1    tsubai 
    476        1.9    tsubai int
    477       1.25  hamajima wdc_obio_dma_init(v, channel, drive, databuf, datalen, flags)
    478        1.1    tsubai 	void *v;
    479        1.1    tsubai 	void *databuf;
    480        1.1    tsubai 	size_t datalen;
    481       1.25  hamajima 	int flags;
    482        1.1    tsubai {
    483        1.1    tsubai 	struct wdc_obio_softc *sc = v;
    484        1.1    tsubai 	vaddr_t va = (vaddr_t)databuf;
    485        1.1    tsubai 	dbdma_command_t *cmdp;
    486        1.4    tsubai 	u_int cmd, offset;
    487       1.25  hamajima 	int read = flags & WDC_DMA_READ;
    488        1.1    tsubai 
    489        1.1    tsubai 	cmdp = sc->sc_dmacmd;
    490        1.1    tsubai 	cmd = read ? DBDMA_CMD_IN_MORE : DBDMA_CMD_OUT_MORE;
    491        1.4    tsubai 
    492        1.4    tsubai 	offset = va & PGOFSET;
    493        1.4    tsubai 
    494        1.4    tsubai 	/* if va is not page-aligned, setup the first page */
    495        1.4    tsubai 	if (offset != 0) {
    496       1.23   thorpej 		int rest = PAGE_SIZE - offset;	/* the rest of the page */
    497        1.4    tsubai 
    498        1.4    tsubai 		if (datalen > rest) {		/* if continues to next page */
    499        1.4    tsubai 			DBDMA_BUILD(cmdp, cmd, 0, rest, vtophys(va),
    500        1.4    tsubai 				DBDMA_INT_NEVER, DBDMA_WAIT_NEVER,
    501        1.4    tsubai 				DBDMA_BRANCH_NEVER);
    502        1.4    tsubai 			datalen -= rest;
    503        1.4    tsubai 			va += rest;
    504        1.4    tsubai 			cmdp++;
    505        1.4    tsubai 		}
    506        1.4    tsubai 	}
    507        1.4    tsubai 
    508        1.4    tsubai 	/* now va is page-aligned */
    509       1.23   thorpej 	while (datalen > PAGE_SIZE) {
    510       1.23   thorpej 		DBDMA_BUILD(cmdp, cmd, 0, PAGE_SIZE, vtophys(va),
    511        1.1    tsubai 			DBDMA_INT_NEVER, DBDMA_WAIT_NEVER, DBDMA_BRANCH_NEVER);
    512       1.23   thorpej 		datalen -= PAGE_SIZE;
    513       1.23   thorpej 		va += PAGE_SIZE;
    514        1.1    tsubai 		cmdp++;
    515        1.1    tsubai 	}
    516        1.1    tsubai 
    517       1.23   thorpej 	/* the last page (datalen <= PAGE_SIZE here) */
    518        1.1    tsubai 	cmd = read ? DBDMA_CMD_IN_LAST : DBDMA_CMD_OUT_LAST;
    519        1.1    tsubai 	DBDMA_BUILD(cmdp, cmd, 0, datalen, vtophys(va),
    520        1.4    tsubai 		DBDMA_INT_NEVER, DBDMA_WAIT_NEVER, DBDMA_BRANCH_NEVER);
    521        1.1    tsubai 	cmdp++;
    522        1.1    tsubai 
    523        1.1    tsubai 	DBDMA_BUILD(cmdp, DBDMA_CMD_STOP, 0, 0, 0,
    524        1.1    tsubai 		DBDMA_INT_NEVER, DBDMA_WAIT_NEVER, DBDMA_BRANCH_NEVER);
    525        1.1    tsubai 
    526        1.1    tsubai 	return 0;
    527        1.1    tsubai }
    528        1.1    tsubai 
    529        1.9    tsubai void
    530        1.8    tsubai wdc_obio_dma_start(v, channel, drive)
    531        1.1    tsubai 	void *v;
    532        1.1    tsubai 	int channel, drive;
    533        1.1    tsubai {
    534        1.1    tsubai 	struct wdc_obio_softc *sc = v;
    535        1.1    tsubai 
    536        1.1    tsubai 	dbdma_start(sc->sc_dmareg, sc->sc_dmacmd);
    537        1.1    tsubai }
    538        1.1    tsubai 
    539        1.9    tsubai int
    540        1.1    tsubai wdc_obio_dma_finish(v, channel, drive, read)
    541        1.1    tsubai 	void *v;
    542        1.1    tsubai 	int channel, drive;
    543        1.1    tsubai 	int read;
    544        1.1    tsubai {
    545        1.4    tsubai 	struct wdc_obio_softc *sc = v;
    546        1.4    tsubai 
    547        1.4    tsubai 	dbdma_stop(sc->sc_dmareg);
    548        1.1    tsubai 	return 0;
    549        1.1    tsubai }
    550