Home | History | Annotate | Line # | Download | only in dev
wdc_obio.c revision 1.37
      1  1.37   thorpej /*	$NetBSD: wdc_obio.c,v 1.37 2004/05/25 20:42:41 thorpej 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.37   thorpej __KERNEL_RCSID(0, "$NetBSD: wdc_obio.c,v 1.37 2004/05/25 20:42:41 thorpej 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.1    tsubai 
     47  1.10       mrg #include <uvm/uvm_extern.h>
     48   1.1    tsubai 
     49   1.1    tsubai #include <machine/bus.h>
     50   1.1    tsubai #include <machine/autoconf.h>
     51   1.1    tsubai 
     52   1.9    tsubai #include <dev/ata/atareg.h>
     53   1.1    tsubai #include <dev/ata/atavar.h>
     54   1.1    tsubai #include <dev/ic/wdcvar.h>
     55   1.1    tsubai 
     56  1.12      matt #include <dev/ofw/openfirm.h>
     57  1.12      matt 
     58   1.1    tsubai #include <macppc/dev/dbdma.h>
     59   1.1    tsubai 
     60   1.1    tsubai #define WDC_REG_NPORTS		8
     61   1.1    tsubai #define WDC_AUXREG_OFFSET	0x16
     62   1.1    tsubai #define WDC_DEFAULT_PIO_IRQ	13	/* XXX */
     63   1.1    tsubai #define WDC_DEFAULT_DMA_IRQ	2	/* XXX */
     64   1.1    tsubai 
     65   1.1    tsubai #define WDC_OPTIONS_DMA 0x01
     66   1.1    tsubai 
     67   1.1    tsubai /*
     68   1.1    tsubai  * XXX This code currently doesn't even try to allow 32-bit data port use.
     69   1.1    tsubai  */
     70   1.1    tsubai 
     71   1.1    tsubai struct wdc_obio_softc {
     72   1.1    tsubai 	struct wdc_softc sc_wdcdev;
     73  1.36       dbj 	struct wdc_channel *wdc_chanptr;
     74  1.34   thorpej 	struct wdc_channel wdc_channel;
     75  1.33   thorpej 	struct ata_queue wdc_chqueue;
     76   1.1    tsubai 	dbdma_regmap_t *sc_dmareg;
     77   1.1    tsubai 	dbdma_command_t	*sc_dmacmd;
     78  1.18       dbj 	u_int sc_dmaconf[2];	/* per target value of CONFIG_REG */
     79   1.5    tsubai 	void *sc_ih;
     80   1.1    tsubai };
     81   1.1    tsubai 
     82   1.9    tsubai int wdc_obio_probe __P((struct device *, struct cfdata *, void *));
     83   1.9    tsubai void wdc_obio_attach __P((struct device *, struct device *, void *));
     84   1.9    tsubai int wdc_obio_detach __P((struct device *, int));
     85   1.9    tsubai int wdc_obio_dma_init __P((void *, int, int, void *, size_t, int));
     86   1.9    tsubai void wdc_obio_dma_start __P((void *, int, int));
     87   1.9    tsubai int wdc_obio_dma_finish __P((void *, int, int, int));
     88  1.18       dbj 
     89  1.34   thorpej static void wdc_obio_select __P((struct wdc_channel *, int));
     90  1.34   thorpej static void adjust_timing __P((struct wdc_channel *));
     91  1.34   thorpej static void ata4_adjust_timing __P((struct wdc_channel *));
     92   1.1    tsubai 
     93  1.22   thorpej CFATTACH_DECL(wdc_obio, sizeof(struct wdc_obio_softc),
     94  1.22   thorpej     wdc_obio_probe, wdc_obio_attach, wdc_obio_detach, wdcactivate);
     95   1.1    tsubai 
     96   1.1    tsubai int
     97   1.1    tsubai wdc_obio_probe(parent, match, aux)
     98   1.1    tsubai 	struct device *parent;
     99   1.1    tsubai 	struct cfdata *match;
    100   1.1    tsubai 	void *aux;
    101   1.1    tsubai {
    102   1.1    tsubai 	struct confargs *ca = aux;
    103   1.3    tsubai 	char compat[32];
    104   1.1    tsubai 
    105   1.3    tsubai 	/* XXX should not use name */
    106   1.1    tsubai 	if (strcmp(ca->ca_name, "ATA") == 0 ||
    107   1.1    tsubai 	    strcmp(ca->ca_name, "ata") == 0 ||
    108   1.2    tsubai 	    strcmp(ca->ca_name, "ata0") == 0 ||
    109   1.1    tsubai 	    strcmp(ca->ca_name, "ide") == 0)
    110   1.3    tsubai 		return 1;
    111   1.3    tsubai 
    112  1.14       wiz 	memset(compat, 0, sizeof(compat));
    113   1.3    tsubai 	OF_getprop(ca->ca_node, "compatible", compat, sizeof(compat));
    114   1.6    tsubai 	if (strcmp(compat, "heathrow-ata") == 0 ||
    115   1.6    tsubai 	    strcmp(compat, "keylargo-ata") == 0)
    116   1.1    tsubai 		return 1;
    117   1.1    tsubai 
    118   1.1    tsubai 	return 0;
    119   1.1    tsubai }
    120   1.1    tsubai 
    121   1.1    tsubai void
    122   1.1    tsubai wdc_obio_attach(parent, self, aux)
    123   1.1    tsubai 	struct device *parent, *self;
    124   1.1    tsubai 	void *aux;
    125   1.1    tsubai {
    126   1.1    tsubai 	struct wdc_obio_softc *sc = (void *)self;
    127   1.1    tsubai 	struct confargs *ca = aux;
    128  1.34   thorpej 	struct wdc_channel *chp = &sc->wdc_channel;
    129  1.30    bouyer 	int intr, i;
    130   1.1    tsubai 	int use_dma = 0;
    131   1.7    tsubai 	char path[80];
    132   1.1    tsubai 
    133   1.1    tsubai 	if (sc->sc_wdcdev.sc_dev.dv_cfdata->cf_flags & WDC_OPTIONS_DMA) {
    134   1.1    tsubai 		if (ca->ca_nreg >= 16 || ca->ca_nintr == -1)
    135   1.1    tsubai 			use_dma = 1;	/* XXX Don't work yet. */
    136   1.1    tsubai 	}
    137   1.1    tsubai 
    138   1.1    tsubai 	if (ca->ca_nintr >= 4 && ca->ca_nreg >= 8) {
    139   1.4    tsubai 		intr = ca->ca_intr[0];
    140   1.4    tsubai 		printf(" irq %d", intr);
    141   1.4    tsubai 	} else if (ca->ca_nintr == -1) {
    142   1.4    tsubai 		intr = WDC_DEFAULT_PIO_IRQ;
    143   1.4    tsubai 		printf(" irq property not found; using %d", intr);
    144   1.4    tsubai 	} else {
    145   1.1    tsubai 		printf(": couldn't get irq property\n");
    146   1.1    tsubai 		return;
    147   1.1    tsubai 	}
    148   1.1    tsubai 
    149   1.1    tsubai 	if (use_dma)
    150   1.1    tsubai 		printf(": DMA transfer");
    151   1.1    tsubai 
    152   1.1    tsubai 	printf("\n");
    153   1.1    tsubai 
    154   1.1    tsubai 	chp->cmd_iot = chp->ctl_iot =
    155   1.1    tsubai 		macppc_make_bus_space_tag(ca->ca_baseaddr + ca->ca_reg[0], 4);
    156   1.1    tsubai 
    157  1.30    bouyer 	if (bus_space_map(chp->cmd_iot, 0, WDC_REG_NPORTS, 0,
    158  1.30    bouyer 	    &chp->cmd_baseioh) ||
    159  1.30    bouyer 	    bus_space_subregion(chp->cmd_iot, chp->cmd_baseioh,
    160   1.1    tsubai 			WDC_AUXREG_OFFSET, 1, &chp->ctl_ioh)) {
    161   1.1    tsubai 		printf("%s: couldn't map registers\n",
    162   1.1    tsubai 			sc->sc_wdcdev.sc_dev.dv_xname);
    163   1.1    tsubai 		return;
    164   1.1    tsubai 	}
    165  1.30    bouyer 	for (i = 0; i < WDC_NREG; i++) {
    166  1.30    bouyer 		if (bus_space_subregion(chp->cmd_iot, chp->cmd_baseioh, i,
    167  1.30    bouyer 		    i == 0 ? 4 : 1, &chp->cmd_iohs[i]) != 0) {
    168  1.30    bouyer 			bus_space_unmap(chp->cmd_iot, chp->cmd_baseioh,
    169  1.30    bouyer 			    WDC_REG_NPORTS);
    170  1.30    bouyer 			printf("%s: couldn't subregion registers\n",
    171  1.30    bouyer 			    sc->sc_wdcdev.sc_dev.dv_xname);
    172  1.30    bouyer 			return;
    173  1.30    bouyer 		}
    174  1.30    bouyer 	}
    175  1.37   thorpej 	wdc_init_shadow_regs(chp);
    176   1.1    tsubai #if 0
    177   1.1    tsubai 	chp->data32iot = chp->cmd_iot;
    178   1.1    tsubai 	chp->data32ioh = chp->cmd_ioh;
    179   1.1    tsubai #endif
    180   1.1    tsubai 
    181   1.5    tsubai 	sc->sc_ih = intr_establish(intr, IST_LEVEL, IPL_BIO, wdcintr, chp);
    182   1.1    tsubai 
    183   1.1    tsubai 	if (use_dma) {
    184   1.1    tsubai 		sc->sc_dmacmd = dbdma_alloc(sizeof(dbdma_command_t) * 20);
    185   1.1    tsubai 		sc->sc_dmareg = mapiodev(ca->ca_baseaddr + ca->ca_reg[2],
    186   1.1    tsubai 					 ca->ca_reg[3]);
    187   1.1    tsubai 		sc->sc_wdcdev.cap |= WDC_CAPABILITY_DMA;
    188  1.13    bouyer 		sc->sc_wdcdev.DMA_cap = 2;
    189  1.16    bouyer 		if (strcmp(ca->ca_name, "ata-4") == 0) {
    190  1.16    bouyer 			sc->sc_wdcdev.cap |= WDC_CAPABILITY_UDMA;
    191  1.16    bouyer 			sc->sc_wdcdev.UDMA_cap = 4;
    192  1.16    bouyer 			sc->sc_wdcdev.set_modes = ata4_adjust_timing;
    193  1.16    bouyer 		} else {
    194  1.16    bouyer 			sc->sc_wdcdev.set_modes = adjust_timing;
    195  1.16    bouyer 		}
    196  1.13    bouyer #ifdef notyet
    197  1.13    bouyer 		/* Minimum cycle time is 150ns (DMA MODE 1) on ohare. */
    198  1.13    bouyer 		if (ohare) {
    199  1.13    bouyer 			sc->sc_wdcdev.PIO_cap = 3;
    200  1.13    bouyer 			sc->sc_wdcdev.DMA_cap = 1;
    201  1.13    bouyer 		}
    202  1.13    bouyer #endif
    203  1.17    bouyer 	} else {
    204  1.24       wiz 		/* all non-DMA controllers can use adjust_timing */
    205  1.17    bouyer 		sc->sc_wdcdev.set_modes = adjust_timing;
    206   1.1    tsubai 	}
    207  1.17    bouyer 
    208  1.13    bouyer 	sc->sc_wdcdev.PIO_cap = 4;
    209  1.13    bouyer 	sc->sc_wdcdev.cap |= WDC_CAPABILITY_DATA16 | WDC_CAPABILITY_MODE;
    210  1.36       dbj 	sc->wdc_chanptr = chp;
    211  1.36       dbj 	sc->sc_wdcdev.channels = &sc->wdc_chanptr;
    212   1.1    tsubai 	sc->sc_wdcdev.nchannels = 1;
    213   1.1    tsubai 	sc->sc_wdcdev.dma_arg = sc;
    214   1.1    tsubai 	sc->sc_wdcdev.dma_init = wdc_obio_dma_init;
    215   1.1    tsubai 	sc->sc_wdcdev.dma_start = wdc_obio_dma_start;
    216   1.1    tsubai 	sc->sc_wdcdev.dma_finish = wdc_obio_dma_finish;
    217  1.35   thorpej 	chp->ch_channel = 0;
    218  1.35   thorpej 	chp->ch_wdc = &sc->sc_wdcdev;
    219  1.32   thorpej 	chp->ch_queue = &sc->wdc_chqueue;
    220   1.7    tsubai 
    221   1.7    tsubai #define OHARE_FEATURE_REG	0xf3000038
    222   1.7    tsubai 
    223   1.7    tsubai 	/* XXX Enable wdc1 by feature reg. */
    224  1.14       wiz 	memset(path, 0, sizeof(path));
    225   1.7    tsubai 	OF_package_to_path(ca->ca_node, path, sizeof(path));
    226   1.7    tsubai 	if (strcmp(path, "/bandit@F2000000/ohare@10/ata@21000") == 0) {
    227   1.7    tsubai 		u_int x;
    228   1.7    tsubai 
    229   1.7    tsubai 		x = in32rb(OHARE_FEATURE_REG);
    230   1.7    tsubai 		x |= 8;
    231   1.7    tsubai 		out32rb(OHARE_FEATURE_REG, x);
    232   1.1    tsubai 	}
    233   1.1    tsubai 
    234  1.29    bouyer 	wdcattach(chp);
    235   1.9    tsubai }
    236   1.9    tsubai 
    237   1.9    tsubai /* Multiword DMA transfer timings */
    238  1.13    bouyer struct ide_timings {
    239   1.9    tsubai 	int cycle;	/* minimum cycle time [ns] */
    240   1.9    tsubai 	int active;	/* minimum command active time [ns] */
    241  1.13    bouyer };
    242  1.13    bouyer static struct ide_timings pio_timing[5] = {
    243  1.19       dbj 	{ 600, 180 },    /* Mode 0 */
    244  1.19       dbj 	{ 390, 150 },    /*      1 */
    245  1.19       dbj 	{ 240, 105 },    /*      2 */
    246  1.19       dbj 	{ 180,  90 },    /*      3 */
    247  1.19       dbj 	{ 120,  75 }     /*      4 */
    248  1.13    bouyer };
    249  1.13    bouyer static struct ide_timings dma_timing[3] = {
    250  1.19       dbj 	{ 480, 240 },	/* Mode 0 */
    251  1.19       dbj 	{ 165,  90 },	/* Mode 1 */
    252  1.19       dbj 	{ 120,  75 }	/* Mode 2 */
    253   1.9    tsubai };
    254   1.9    tsubai 
    255  1.16    bouyer static struct ide_timings udma_timing[5] = {
    256  1.19       dbj 	{120, 180},	/* Mode 0 */
    257  1.19       dbj 	{ 90, 150},	/* Mode 1 */
    258  1.19       dbj 	{ 60, 120},	/* Mode 2 */
    259  1.19       dbj 	{ 45, 90},	/* Mode 3 */
    260  1.19       dbj 	{ 30, 90}	/* Mode 4 */
    261  1.16    bouyer };
    262  1.16    bouyer 
    263   1.9    tsubai #define TIME_TO_TICK(time) howmany((time), 30)
    264  1.16    bouyer #define PIO_REC_OFFSET 4
    265  1.16    bouyer #define PIO_REC_MIN 1
    266  1.16    bouyer #define PIO_ACT_MIN 1
    267  1.16    bouyer #define DMA_REC_OFFSET 1
    268  1.16    bouyer #define DMA_REC_MIN 1
    269  1.16    bouyer #define DMA_ACT_MIN 1
    270  1.16    bouyer 
    271  1.18       dbj #define ATA4_TIME_TO_TICK(time)  howmany((time), 15) /* 15 ns clock */
    272  1.16    bouyer 
    273  1.18       dbj #define CONFIG_REG (0x200 >> 4)		/* IDE access timing register */
    274   1.9    tsubai 
    275  1.18       dbj void
    276  1.18       dbj wdc_obio_select(chp, drive)
    277  1.34   thorpej 	struct wdc_channel *chp;
    278  1.18       dbj 	int drive;
    279  1.18       dbj {
    280  1.36       dbj 	struct wdc_obio_softc *sc = (struct wdc_obio_softc *)chp->ch_wdc;
    281  1.30    bouyer 	bus_space_write_4(chp->cmd_iot, chp->cmd_baseioh,
    282  1.18       dbj 			CONFIG_REG, sc->sc_dmaconf[drive]);
    283  1.18       dbj }
    284   1.9    tsubai 
    285   1.9    tsubai void
    286   1.9    tsubai adjust_timing(chp)
    287  1.34   thorpej 	struct wdc_channel *chp;
    288   1.9    tsubai {
    289  1.36       dbj 	struct wdc_obio_softc *sc = (struct wdc_obio_softc *)chp->ch_wdc;
    290  1.13    bouyer 	int drive;
    291  1.31       mjl 	int min_cycle = 0, min_active = 0;
    292  1.31       mjl 	int cycle_tick = 0, act_tick = 0, inact_tick = 0, half_tick;
    293   1.9    tsubai 
    294  1.13    bouyer 	for (drive = 0; drive < 2; drive++) {
    295  1.18       dbj 		u_int conf = 0;
    296  1.18       dbj 		struct ata_drive_datas *drvp;
    297  1.18       dbj 
    298  1.13    bouyer 		drvp = &chp->ch_drive[drive];
    299  1.18       dbj 		/* set up pio mode timings */
    300  1.18       dbj 		if (drvp->drive_flags & DRIVE) {
    301  1.18       dbj 			int piomode = drvp->PIO_mode;
    302  1.18       dbj 			min_cycle = pio_timing[piomode].cycle;
    303  1.18       dbj 			min_active = pio_timing[piomode].active;
    304  1.18       dbj 
    305  1.18       dbj 			cycle_tick = TIME_TO_TICK(min_cycle);
    306  1.18       dbj 			act_tick = TIME_TO_TICK(min_active);
    307  1.18       dbj 			if (act_tick < PIO_ACT_MIN)
    308  1.18       dbj 				act_tick = PIO_ACT_MIN;
    309  1.18       dbj 			inact_tick = cycle_tick - act_tick - PIO_REC_OFFSET;
    310  1.18       dbj 			if (inact_tick < PIO_REC_MIN)
    311  1.18       dbj 				inact_tick = PIO_REC_MIN;
    312  1.18       dbj 			/* mask: 0x000007ff */
    313  1.18       dbj 			conf |= (inact_tick << 5) | act_tick;
    314  1.18       dbj 		}
    315  1.24       wiz 		/* Set up DMA mode timings */
    316  1.13    bouyer 		if (drvp->drive_flags & DRIVE_DMA) {
    317  1.18       dbj 			int dmamode = drvp->DMA_mode;
    318  1.18       dbj 			min_cycle = dma_timing[dmamode].cycle;
    319  1.18       dbj 			min_active = dma_timing[dmamode].active;
    320  1.18       dbj 			cycle_tick = TIME_TO_TICK(min_cycle);
    321  1.18       dbj 			act_tick = TIME_TO_TICK(min_active);
    322  1.18       dbj 			inact_tick = cycle_tick - act_tick - DMA_REC_OFFSET;
    323  1.18       dbj 			if (inact_tick < DMA_REC_MIN)
    324  1.18       dbj 				inact_tick = DMA_REC_MIN;
    325  1.18       dbj 			half_tick = 0;	/* XXX */
    326  1.18       dbj 			/* mask: 0xfffff800 */
    327  1.18       dbj 			conf |=
    328  1.18       dbj 					(half_tick << 21) |
    329  1.18       dbj 					(inact_tick << 16) | (act_tick << 11);
    330  1.13    bouyer 		}
    331  1.20    bouyer #ifdef DEBUG
    332  1.18       dbj 		if (conf) {
    333  1.18       dbj 			printf("conf[%d] = 0x%x, cyc = %d (%d ns), act = %d (%d ns), inact = %d\n",
    334  1.18       dbj 					drive, conf, cycle_tick, min_cycle, act_tick, min_active, inact_tick);
    335  1.18       dbj 		}
    336  1.20    bouyer #endif
    337  1.18       dbj 		sc->sc_dmaconf[drive] = conf;
    338  1.13    bouyer 	}
    339  1.18       dbj 	sc->sc_wdcdev.cap &= ~WDC_CAPABILITY_SELECT;
    340  1.18       dbj 	sc->sc_wdcdev.select = 0;
    341  1.18       dbj 	if (sc->sc_dmaconf[0]) {
    342  1.18       dbj 		wdc_obio_select(chp,0);
    343  1.18       dbj 		if (sc->sc_dmaconf[1] && (sc->sc_dmaconf[0] != sc->sc_dmaconf[1])) {
    344  1.18       dbj 			sc->sc_wdcdev.select = wdc_obio_select;
    345  1.18       dbj 			sc->sc_wdcdev.cap |= WDC_CAPABILITY_SELECT;
    346  1.13    bouyer 		}
    347  1.18       dbj 	} else if (sc->sc_dmaconf[1]) {
    348  1.18       dbj 		wdc_obio_select(chp,1);
    349  1.13    bouyer 	}
    350  1.16    bouyer }
    351  1.16    bouyer 
    352  1.16    bouyer void
    353  1.16    bouyer ata4_adjust_timing(chp)
    354  1.34   thorpej 	struct wdc_channel *chp;
    355  1.16    bouyer {
    356  1.36       dbj 	struct wdc_obio_softc *sc = (struct wdc_obio_softc *)chp->ch_wdc;
    357  1.16    bouyer 	int drive;
    358  1.31       mjl 	int min_cycle = 0, min_active = 0;
    359  1.31       mjl 	int cycle_tick = 0, act_tick = 0, inact_tick = 0;
    360  1.16    bouyer 
    361  1.18       dbj 	for (drive = 0; drive < 2; drive++) {
    362  1.18       dbj 		u_int conf = 0;
    363  1.18       dbj 		struct ata_drive_datas *drvp;
    364  1.16    bouyer 
    365  1.16    bouyer 		drvp = &chp->ch_drive[drive];
    366  1.18       dbj 		/* set up pio mode timings */
    367  1.18       dbj 
    368  1.18       dbj 		if (drvp->drive_flags & DRIVE) {
    369  1.18       dbj 			int piomode = drvp->PIO_mode;
    370  1.18       dbj 			min_cycle = pio_timing[piomode].cycle;
    371  1.18       dbj 			min_active = pio_timing[piomode].active;
    372  1.18       dbj 
    373  1.18       dbj 			cycle_tick = ATA4_TIME_TO_TICK(min_cycle);
    374  1.18       dbj 			act_tick = ATA4_TIME_TO_TICK(min_active);
    375  1.18       dbj 			inact_tick = cycle_tick - act_tick;
    376  1.18       dbj 			/* mask: 0x000003ff */
    377  1.18       dbj 			conf |= (inact_tick << 5) | act_tick;
    378  1.18       dbj 		}
    379  1.18       dbj 		/* set up dma mode timings */
    380  1.16    bouyer 		if (drvp->drive_flags & DRIVE_DMA) {
    381  1.18       dbj 			int dmamode = drvp->DMA_mode;
    382  1.18       dbj 			min_cycle = dma_timing[dmamode].cycle;
    383  1.18       dbj 			min_active = dma_timing[dmamode].active;
    384  1.18       dbj 			cycle_tick = ATA4_TIME_TO_TICK(min_cycle);
    385  1.18       dbj 			act_tick = ATA4_TIME_TO_TICK(min_active);
    386  1.18       dbj 			inact_tick = cycle_tick - act_tick;
    387  1.18       dbj 			/* mask: 0x001ffc00 */
    388  1.18       dbj 			conf |= (act_tick << 10) | (inact_tick << 15);
    389  1.16    bouyer 		}
    390  1.18       dbj 		/* set up udma mode timings */
    391  1.16    bouyer 		if (drvp->drive_flags & DRIVE_UDMA) {
    392  1.18       dbj 			int udmamode = drvp->UDMA_mode;
    393  1.18       dbj 			min_cycle = udma_timing[udmamode].cycle;
    394  1.18       dbj 			min_active = udma_timing[udmamode].active;
    395  1.18       dbj 			act_tick = ATA4_TIME_TO_TICK(min_active);
    396  1.18       dbj 			cycle_tick = ATA4_TIME_TO_TICK(min_cycle);
    397  1.18       dbj 			/* mask: 0x1ff00000 */
    398  1.18       dbj 			conf |= (cycle_tick << 21) | (act_tick << 25) | 0x100000;
    399  1.18       dbj 		}
    400  1.20    bouyer #ifdef DEBUG
    401  1.18       dbj 		if (conf) {
    402  1.18       dbj 			printf("ata4 conf[%d] = 0x%x, cyc = %d (%d ns), act = %d (%d ns), inact = %d\n",
    403  1.18       dbj 					drive, conf, cycle_tick, min_cycle, act_tick, min_active, inact_tick);
    404  1.16    bouyer 		}
    405  1.20    bouyer #endif
    406  1.18       dbj 		sc->sc_dmaconf[drive] = conf;
    407  1.16    bouyer 	}
    408  1.18       dbj 	sc->sc_wdcdev.cap &= ~WDC_CAPABILITY_SELECT;
    409  1.18       dbj 	sc->sc_wdcdev.select = 0;
    410  1.18       dbj 	if (sc->sc_dmaconf[0]) {
    411  1.18       dbj 		wdc_obio_select(chp,0);
    412  1.18       dbj 		if (sc->sc_dmaconf[1] && (sc->sc_dmaconf[0] != sc->sc_dmaconf[1])) {
    413  1.18       dbj 			sc->sc_wdcdev.select = wdc_obio_select;
    414  1.18       dbj 			sc->sc_wdcdev.cap |= WDC_CAPABILITY_SELECT;
    415  1.16    bouyer 		}
    416  1.18       dbj 	} else if (sc->sc_dmaconf[1]) {
    417  1.18       dbj 		wdc_obio_select(chp,1);
    418  1.16    bouyer 	}
    419   1.5    tsubai }
    420   1.5    tsubai 
    421   1.5    tsubai int
    422   1.5    tsubai wdc_obio_detach(self, flags)
    423   1.5    tsubai 	struct device *self;
    424   1.5    tsubai 	int flags;
    425   1.5    tsubai {
    426   1.5    tsubai 	struct wdc_obio_softc *sc = (void *)self;
    427   1.5    tsubai 	int error;
    428   1.5    tsubai 
    429   1.5    tsubai 	if ((error = wdcdetach(self, flags)) != 0)
    430   1.5    tsubai 		return error;
    431   1.5    tsubai 
    432   1.5    tsubai 	intr_disestablish(sc->sc_ih);
    433   1.5    tsubai 
    434   1.5    tsubai 	/* Unmap our i/o space. */
    435   1.5    tsubai 	bus_space_unmap(chp->cmd_iot, chp->cmd_ioh, WDC_REG_NPORTS);
    436   1.5    tsubai 
    437   1.5    tsubai 	/* Unmap DMA registers. */
    438   1.5    tsubai 	/* XXX unmapiodev(sc->sc_dmareg); */
    439   1.5    tsubai 	/* XXX free(sc->sc_dmacmd); */
    440   1.5    tsubai 
    441   1.5    tsubai 	return 0;
    442   1.1    tsubai }
    443   1.1    tsubai 
    444   1.9    tsubai int
    445  1.25  hamajima wdc_obio_dma_init(v, channel, drive, databuf, datalen, flags)
    446   1.1    tsubai 	void *v;
    447   1.1    tsubai 	void *databuf;
    448   1.1    tsubai 	size_t datalen;
    449  1.25  hamajima 	int flags;
    450   1.1    tsubai {
    451   1.1    tsubai 	struct wdc_obio_softc *sc = v;
    452   1.1    tsubai 	vaddr_t va = (vaddr_t)databuf;
    453   1.1    tsubai 	dbdma_command_t *cmdp;
    454   1.4    tsubai 	u_int cmd, offset;
    455  1.25  hamajima 	int read = flags & WDC_DMA_READ;
    456   1.1    tsubai 
    457   1.1    tsubai 	cmdp = sc->sc_dmacmd;
    458   1.1    tsubai 	cmd = read ? DBDMA_CMD_IN_MORE : DBDMA_CMD_OUT_MORE;
    459   1.4    tsubai 
    460   1.4    tsubai 	offset = va & PGOFSET;
    461   1.4    tsubai 
    462   1.4    tsubai 	/* if va is not page-aligned, setup the first page */
    463   1.4    tsubai 	if (offset != 0) {
    464  1.23   thorpej 		int rest = PAGE_SIZE - offset;	/* the rest of the page */
    465   1.4    tsubai 
    466   1.4    tsubai 		if (datalen > rest) {		/* if continues to next page */
    467   1.4    tsubai 			DBDMA_BUILD(cmdp, cmd, 0, rest, vtophys(va),
    468   1.4    tsubai 				DBDMA_INT_NEVER, DBDMA_WAIT_NEVER,
    469   1.4    tsubai 				DBDMA_BRANCH_NEVER);
    470   1.4    tsubai 			datalen -= rest;
    471   1.4    tsubai 			va += rest;
    472   1.4    tsubai 			cmdp++;
    473   1.4    tsubai 		}
    474   1.4    tsubai 	}
    475   1.4    tsubai 
    476   1.4    tsubai 	/* now va is page-aligned */
    477  1.23   thorpej 	while (datalen > PAGE_SIZE) {
    478  1.23   thorpej 		DBDMA_BUILD(cmdp, cmd, 0, PAGE_SIZE, vtophys(va),
    479   1.1    tsubai 			DBDMA_INT_NEVER, DBDMA_WAIT_NEVER, DBDMA_BRANCH_NEVER);
    480  1.23   thorpej 		datalen -= PAGE_SIZE;
    481  1.23   thorpej 		va += PAGE_SIZE;
    482   1.1    tsubai 		cmdp++;
    483   1.1    tsubai 	}
    484   1.1    tsubai 
    485  1.23   thorpej 	/* the last page (datalen <= PAGE_SIZE here) */
    486   1.1    tsubai 	cmd = read ? DBDMA_CMD_IN_LAST : DBDMA_CMD_OUT_LAST;
    487   1.1    tsubai 	DBDMA_BUILD(cmdp, cmd, 0, datalen, vtophys(va),
    488   1.4    tsubai 		DBDMA_INT_NEVER, DBDMA_WAIT_NEVER, DBDMA_BRANCH_NEVER);
    489   1.1    tsubai 	cmdp++;
    490   1.1    tsubai 
    491   1.1    tsubai 	DBDMA_BUILD(cmdp, DBDMA_CMD_STOP, 0, 0, 0,
    492   1.1    tsubai 		DBDMA_INT_NEVER, DBDMA_WAIT_NEVER, DBDMA_BRANCH_NEVER);
    493   1.1    tsubai 
    494   1.1    tsubai 	return 0;
    495   1.1    tsubai }
    496   1.1    tsubai 
    497   1.9    tsubai void
    498   1.8    tsubai wdc_obio_dma_start(v, channel, drive)
    499   1.1    tsubai 	void *v;
    500   1.1    tsubai 	int channel, drive;
    501   1.1    tsubai {
    502   1.1    tsubai 	struct wdc_obio_softc *sc = v;
    503   1.1    tsubai 
    504   1.1    tsubai 	dbdma_start(sc->sc_dmareg, sc->sc_dmacmd);
    505   1.1    tsubai }
    506   1.1    tsubai 
    507   1.9    tsubai int
    508   1.1    tsubai wdc_obio_dma_finish(v, channel, drive, read)
    509   1.1    tsubai 	void *v;
    510   1.1    tsubai 	int channel, drive;
    511   1.1    tsubai 	int read;
    512   1.1    tsubai {
    513   1.4    tsubai 	struct wdc_obio_softc *sc = v;
    514   1.4    tsubai 
    515   1.4    tsubai 	dbdma_stop(sc->sc_dmareg);
    516   1.1    tsubai 	return 0;
    517   1.1    tsubai }
    518