Home | History | Annotate | Line # | Download | only in dev
kauai.c revision 1.37
      1  1.37  jdolecek /*	$NetBSD: kauai.c,v 1.37 2017/10/07 16:05:32 jdolecek Exp $	*/
      2   1.1  hamajima 
      3   1.1  hamajima /*-
      4   1.1  hamajima  * Copyright (c) 2003 Tsubai Masanari.  All rights reserved.
      5   1.1  hamajima  *
      6   1.1  hamajima  * Redistribution and use in source and binary forms, with or without
      7   1.1  hamajima  * modification, are permitted provided that the following conditions
      8   1.1  hamajima  * are met:
      9   1.1  hamajima  * 1. Redistributions of source code must retain the above copyright
     10   1.1  hamajima  *    notice, this list of conditions and the following disclaimer.
     11   1.1  hamajima  * 2. Redistributions in binary form must reproduce the above copyright
     12   1.1  hamajima  *    notice, this list of conditions and the following disclaimer in the
     13   1.1  hamajima  *    documentation and/or other materials provided with the distribution.
     14   1.1  hamajima  * 3. The name of the author may not be used to endorse or promote products
     15   1.1  hamajima  *    derived from this software without specific prior written permission.
     16   1.1  hamajima  *
     17   1.1  hamajima  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     18   1.1  hamajima  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     19   1.1  hamajima  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     20   1.1  hamajima  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     21   1.1  hamajima  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     22   1.1  hamajima  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     23   1.1  hamajima  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     24   1.1  hamajima  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     25   1.1  hamajima  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     26   1.1  hamajima  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     27   1.1  hamajima  */
     28   1.2     lukem 
     29   1.2     lukem #include <sys/cdefs.h>
     30  1.37  jdolecek __KERNEL_RCSID(0, "$NetBSD: kauai.c,v 1.37 2017/10/07 16:05:32 jdolecek Exp $");
     31   1.1  hamajima 
     32   1.1  hamajima #include <sys/param.h>
     33   1.1  hamajima #include <sys/systm.h>
     34   1.1  hamajima #include <sys/device.h>
     35   1.1  hamajima #include <sys/malloc.h>
     36   1.1  hamajima 
     37   1.1  hamajima #include <uvm/uvm_extern.h>
     38   1.1  hamajima 
     39  1.28    dyoung #include <sys/bus.h>
     40  1.21   garbled #include <machine/pio.h>
     41   1.1  hamajima 
     42   1.1  hamajima #include <dev/ata/atareg.h>
     43   1.1  hamajima #include <dev/ata/atavar.h>
     44   1.1  hamajima #include <dev/ic/wdcvar.h>
     45   1.1  hamajima 
     46   1.1  hamajima #include <dev/ofw/openfirm.h>
     47   1.1  hamajima 
     48   1.1  hamajima #include <dev/pci/pcivar.h>
     49   1.1  hamajima #include <dev/pci/pcireg.h>
     50   1.1  hamajima #include <dev/pci/pcidevs.h>
     51   1.1  hamajima 
     52   1.1  hamajima #include <macppc/dev/dbdma.h>
     53   1.1  hamajima 
     54   1.1  hamajima #define WDC_REG_NPORTS		8
     55   1.1  hamajima #define WDC_AUXREG_OFFSET	0x16
     56  1.21   garbled #define WDC_AUXREG_NPORTS	1
     57   1.1  hamajima 
     58  1.26  macallan #define PIO_CONFIG_REG	0x200	/* PIO and DMA access timing */
     59  1.26  macallan #define DMA_CONFIG_REG	0x210	/* UDMA access timing */
     60   1.1  hamajima 
     61   1.1  hamajima struct kauai_softc {
     62   1.1  hamajima 	struct wdc_softc sc_wdcdev;
     63  1.15   thorpej 	struct ata_channel *sc_chanptr;
     64  1.15   thorpej 	struct ata_channel sc_channel;
     65  1.15   thorpej 	struct wdc_regs sc_wdc_regs;
     66   1.1  hamajima 	dbdma_regmap_t *sc_dmareg;
     67   1.1  hamajima 	dbdma_command_t	*sc_dmacmd;
     68   1.1  hamajima 	u_int sc_piotiming_r[2];
     69   1.1  hamajima 	u_int sc_piotiming_w[2];
     70   1.1  hamajima 	u_int sc_dmatiming_r[2];
     71   1.1  hamajima 	u_int sc_dmatiming_w[2];
     72   1.1  hamajima 	void (*sc_calc_timing)(struct kauai_softc *, int);
     73   1.1  hamajima };
     74   1.1  hamajima 
     75  1.22      matt static int kauai_match(device_t, cfdata_t, void *);
     76  1.22      matt static void kauai_attach(device_t, device_t, void *);
     77  1.22      matt static int kauai_dma_init(void *, int, int, void *, size_t, int);
     78  1.22      matt static void kauai_dma_start(void *, int, int);
     79  1.22      matt static int kauai_dma_finish(void *, int, int, int);
     80  1.22      matt static void kauai_set_modes(struct ata_channel *);
     81  1.22      matt static void calc_timing_kauai(struct kauai_softc *, int);
     82   1.1  hamajima 
     83  1.23      cube CFATTACH_DECL_NEW(kauai, sizeof(struct kauai_softc),
     84  1.27    dyoung     kauai_match, kauai_attach, NULL, NULL);
     85   1.1  hamajima 
     86   1.1  hamajima int
     87  1.22      matt kauai_match(device_t parent, cfdata_t match, void *aux)
     88   1.1  hamajima {
     89   1.1  hamajima 	struct pci_attach_args *pa = aux;
     90   1.1  hamajima 
     91  1.20   aymeric 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_APPLE) {
     92  1.20   aymeric 		switch (PCI_PRODUCT(pa->pa_id)) {
     93  1.20   aymeric 		case PCI_PRODUCT_APPLE_KAUAI:
     94  1.20   aymeric 		case PCI_PRODUCT_APPLE_UNINORTH_ATA:
     95  1.20   aymeric 		case PCI_PRODUCT_APPLE_INTREPID2_ATA:
     96  1.24       chs 		case PCI_PRODUCT_APPLE_SHASTA_ATA:
     97  1.20   aymeric 		    return 5;
     98  1.20   aymeric 		}
     99  1.20   aymeric 	}
    100   1.1  hamajima 
    101   1.1  hamajima 	return 0;
    102   1.1  hamajima }
    103   1.1  hamajima 
    104   1.1  hamajima void
    105  1.22      matt kauai_attach(device_t parent, device_t self, void *aux)
    106   1.1  hamajima {
    107  1.22      matt 	struct kauai_softc *sc = device_private(self);
    108   1.1  hamajima 	struct pci_attach_args *pa = aux;
    109  1.15   thorpej 	struct ata_channel *chp = &sc->sc_channel;
    110  1.15   thorpej 	struct wdc_regs *wdr;
    111   1.1  hamajima 	pci_intr_handle_t ih;
    112   1.1  hamajima 	paddr_t regbase, dmabase;
    113   1.7    bouyer 	int node, reg[5], i;
    114  1.34  macallan 	uint32_t intrs[4], intr;
    115  1.35  christos 	char buf[PCI_INTRSTR_LEN];
    116   1.1  hamajima 
    117  1.23      cube 	sc->sc_wdcdev.sc_atac.atac_dev = self;
    118  1.23      cube 
    119  1.36  macallan 	sc->sc_dmacmd = dbdma_alloc(sizeof(dbdma_command_t) * 20, NULL);
    120  1.25  macallan 	node = pcidev_to_ofdev(pa->pa_pc, pa->pa_tag);
    121   1.1  hamajima 	if (node == 0) {
    122  1.22      matt 		aprint_error(": cannot find kauai node\n");
    123   1.1  hamajima 		return;
    124   1.1  hamajima 	}
    125   1.1  hamajima 
    126   1.1  hamajima 	if (OF_getprop(node, "assigned-addresses", reg, sizeof reg) < 12) {
    127  1.22      matt 		aprint_error(": cannot get address property\n");
    128   1.1  hamajima 		return;
    129   1.1  hamajima 	}
    130   1.1  hamajima 	regbase = reg[2] + 0x2000;
    131   1.1  hamajima 	dmabase = reg[2] + 0x1000;
    132   1.1  hamajima 
    133   1.1  hamajima 	/*
    134   1.1  hamajima 	 * XXX PCI_INTERRUPT_REG seems to be wired to 0.
    135  1.34  macallan 	 * XXX So use fixed intrpin and intrline values if the interrupts
    136  1.34  macallan 	 * XXX property contains no IRQ line
    137   1.1  hamajima 	 */
    138  1.34  macallan 	intr = 0;
    139  1.34  macallan 	pa->pa_intrpin = 1;
    140  1.34  macallan 	if (OF_getprop(node, "interrupts", intrs, sizeof(intrs)) >= 4) {
    141  1.34  macallan 		intr = intrs[0];
    142  1.34  macallan 		/*
    143  1.34  macallan 		 * the interrupts property on my iBook G4's kauai contains
    144  1.34  macallan 		 * 0x00000001 0x00000000, so fix that up here
    145  1.34  macallan 		 * TODO: use parent's interrupt-map property to do this right
    146  1.34  macallan 		 */
    147  1.34  macallan 		if (intr < 10)
    148  1.34  macallan 			intr = 0;
    149  1.34  macallan 		aprint_debug_dev(self,
    150  1.34  macallan 		    "got %d from interrupts property\n", intr);
    151  1.34  macallan 	}
    152  1.34  macallan 	if (intr == 0) {
    153  1.34  macallan 		if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_APPLE_SHASTA_ATA) {
    154  1.34  macallan 			intr = 38;
    155  1.34  macallan 		} else
    156  1.34  macallan 			intr = 39;
    157   1.1  hamajima 	}
    158  1.34  macallan 	pa->pa_intrline = intr;
    159   1.1  hamajima 
    160   1.1  hamajima 	if (pci_intr_map(pa, &ih)) {
    161  1.22      matt 		aprint_error(": unable to map interrupt\n");
    162   1.1  hamajima 		return;
    163   1.1  hamajima 	}
    164  1.35  christos 	aprint_normal(": interrupting at %s\n", pci_intr_string(pa->pa_pc, ih,
    165  1.35  christos 	    buf, sizeof(buf)));
    166   1.1  hamajima 
    167  1.15   thorpej 	sc->sc_wdcdev.regs = wdr = &sc->sc_wdc_regs;
    168   1.1  hamajima 
    169  1.21   garbled 	wdr->cmd_iot = wdr->ctl_iot = pa->pa_memt;
    170  1.15   thorpej 
    171  1.21   garbled 	if (bus_space_map(wdr->cmd_iot, regbase, WDC_REG_NPORTS << 4, 0,
    172  1.15   thorpej 	    &wdr->cmd_baseioh) ||
    173  1.15   thorpej 	    bus_space_subregion(wdr->cmd_iot, wdr->cmd_baseioh,
    174  1.21   garbled 			WDC_AUXREG_OFFSET << 4, 1, &wdr->ctl_ioh)) {
    175  1.22      matt 		aprint_error_dev(self, "couldn't map registers\n");
    176   1.1  hamajima 		return;
    177   1.1  hamajima 	}
    178   1.7    bouyer 	for (i = 0; i < WDC_NREG; i++) {
    179  1.21   garbled 		if (bus_space_subregion(wdr->cmd_iot, wdr->cmd_baseioh, i << 4,
    180  1.15   thorpej 		    i == 0 ? 4 : 1, &wdr->cmd_iohs[i]) != 0) {
    181  1.15   thorpej 			bus_space_unmap(wdr->cmd_iot, wdr->cmd_baseioh,
    182  1.21   garbled 			    WDC_REG_NPORTS << 4);
    183  1.22      matt 			aprint_error_dev(self,
    184  1.22      matt 			    "couldn't subregion registers\n");
    185   1.7    bouyer 			return;
    186   1.7    bouyer 		}
    187   1.7    bouyer 	}
    188   1.1  hamajima 
    189   1.1  hamajima 	if (pci_intr_establish(pa->pa_pc, ih, IPL_BIO, wdcintr, chp) == NULL) {
    190  1.22      matt 		aprint_error_dev(self, "unable to establish interrupt\n");
    191   1.1  hamajima 		return;
    192   1.1  hamajima 	}
    193   1.1  hamajima 
    194   1.1  hamajima 
    195  1.16   thorpej 	sc->sc_wdcdev.sc_atac.atac_pio_cap = 4;
    196  1.16   thorpej 	sc->sc_wdcdev.sc_atac.atac_dma_cap = 2;
    197  1.16   thorpej 	sc->sc_wdcdev.sc_atac.atac_udma_cap = 5;
    198  1.16   thorpej 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DATA16;
    199  1.16   thorpej 	sc->sc_wdcdev.sc_atac.atac_cap |= ATAC_CAP_DMA | ATAC_CAP_UDMA;
    200  1.15   thorpej 	sc->sc_chanptr = chp;
    201  1.16   thorpej 	sc->sc_wdcdev.sc_atac.atac_channels = &sc->sc_chanptr;
    202  1.16   thorpej 	sc->sc_wdcdev.sc_atac.atac_nchannels = 1;
    203  1.33    bouyer 	sc->sc_wdcdev.wdc_maxdrives = 2;
    204   1.1  hamajima 	sc->sc_wdcdev.dma_arg = sc;
    205   1.1  hamajima 	sc->sc_wdcdev.dma_init = kauai_dma_init;
    206   1.1  hamajima 	sc->sc_wdcdev.dma_start = kauai_dma_start;
    207   1.1  hamajima 	sc->sc_wdcdev.dma_finish = kauai_dma_finish;
    208  1.16   thorpej 	sc->sc_wdcdev.sc_atac.atac_set_modes = kauai_set_modes;
    209   1.1  hamajima 	sc->sc_calc_timing = calc_timing_kauai;
    210  1.34  macallan 	sc->sc_dmareg = mapiodev(dmabase, 0x1000, false);
    211   1.1  hamajima 
    212  1.11   thorpej 	chp->ch_channel = 0;
    213  1.16   thorpej 	chp->ch_atac = &sc->sc_wdcdev.sc_atac;
    214  1.37  jdolecek 	chp->ch_queue = ata_queue_alloc(1);
    215  1.37  jdolecek 	wdc_init_shadow_regs(wdr);
    216   1.1  hamajima 
    217   1.6    bouyer 	wdcattach(chp);
    218   1.1  hamajima }
    219   1.1  hamajima 
    220   1.1  hamajima void
    221  1.22      matt kauai_set_modes(struct ata_channel *chp)
    222   1.1  hamajima {
    223  1.16   thorpej 	struct kauai_softc *sc = (void *)chp->ch_atac;
    224  1.16   thorpej 	struct wdc_regs *wdr = CHAN_TO_WDC_REGS(chp);
    225   1.1  hamajima 	struct ata_drive_datas *drvp0 = &chp->ch_drive[0];
    226   1.1  hamajima 	struct ata_drive_datas *drvp1 = &chp->ch_drive[1];
    227   1.1  hamajima 	struct ata_drive_datas *drvp;
    228   1.1  hamajima 	int drive;
    229   1.1  hamajima 
    230  1.33    bouyer 	if (drvp0->drive_type != ATA_DRIVET_NONE &&
    231  1.33    bouyer 	    drvp1->drive_type != ATA_DRIVET_NONE) {
    232   1.1  hamajima 		drvp0->PIO_mode = drvp1->PIO_mode =
    233   1.1  hamajima 		    min(drvp0->PIO_mode, drvp1->PIO_mode);
    234   1.1  hamajima 	}
    235   1.1  hamajima 
    236   1.1  hamajima 	for (drive = 0; drive < 2; drive++) {
    237   1.1  hamajima 		drvp = &chp->ch_drive[drive];
    238  1.33    bouyer 		if (drvp->drive_type !=  ATA_DRIVET_NONE) {
    239   1.1  hamajima 			(*sc->sc_calc_timing)(sc, drive);
    240  1.15   thorpej 			bus_space_write_4(wdr->cmd_iot, wdr->cmd_baseioh,
    241   1.1  hamajima 			    PIO_CONFIG_REG, sc->sc_piotiming_r[drive]);
    242  1.15   thorpej 			bus_space_write_4(wdr->cmd_iot, wdr->cmd_baseioh,
    243   1.1  hamajima 			    DMA_CONFIG_REG, sc->sc_dmatiming_r[drive]);
    244   1.1  hamajima 		}
    245   1.1  hamajima 	}
    246   1.1  hamajima }
    247   1.1  hamajima 
    248   1.1  hamajima /*
    249   1.1  hamajima  * IDE transfer timings
    250   1.1  hamajima  */
    251   1.1  hamajima static const u_int pio_timing_kauai[] = {	/* 0xff000fff */
    252   1.1  hamajima 	0x08000a92,	/* Mode 0 */
    253   1.1  hamajima 	0x0800060f,	/*      1 */
    254   1.1  hamajima 	0x0800038b,	/*      2 */
    255   1.1  hamajima 	0x05000249,	/*      3 */
    256   1.1  hamajima 	0x04000148	/*      4 */
    257   1.1  hamajima };
    258   1.1  hamajima static const u_int dma_timing_kauai[] = {	/* 0x00fff000 */
    259   1.1  hamajima 	0x00618000,	/* Mode 0 */
    260   1.1  hamajima 	0x00209000,	/*      1 */
    261   1.1  hamajima 	0x00148000	/*      2 */
    262   1.1  hamajima };
    263   1.1  hamajima static const u_int udma_timing_kauai[] = {	/* 0x0000ffff */
    264   1.1  hamajima 	0x000070c0,	/* Mode 0 */
    265   1.1  hamajima 	0x00005d80,	/*      1 */
    266   1.1  hamajima 	0x00004a60,	/*      2 */
    267   1.1  hamajima 	0x00003a50,	/*      3 */
    268   1.1  hamajima 	0x00002a30,	/*      4 */
    269   1.1  hamajima 	0x00002921	/*      5 */
    270   1.1  hamajima };
    271   1.1  hamajima 
    272   1.1  hamajima /*
    273   1.1  hamajima  * Timing calculation for Kauai.
    274   1.1  hamajima  */
    275   1.1  hamajima void
    276  1.22      matt calc_timing_kauai(struct kauai_softc *sc, int drive)
    277   1.1  hamajima {
    278  1.15   thorpej 	struct ata_channel *chp = &sc->sc_channel;
    279   1.1  hamajima 	struct ata_drive_datas *drvp = &chp->ch_drive[drive];
    280   1.1  hamajima 	int piomode = drvp->PIO_mode;
    281   1.1  hamajima 	int dmamode = drvp->DMA_mode;
    282   1.1  hamajima 	int udmamode = drvp->UDMA_mode;
    283   1.1  hamajima 	u_int pioconf, dmaconf;
    284   1.1  hamajima 
    285   1.1  hamajima 	pioconf = pio_timing_kauai[piomode];
    286   1.1  hamajima 
    287   1.1  hamajima 	dmaconf = 0;
    288  1.33    bouyer 	if (drvp->drive_flags & ATA_DRIVE_DMA)
    289   1.1  hamajima 		dmaconf |= dma_timing_kauai[dmamode];
    290  1.33    bouyer 	if (drvp->drive_flags & ATA_DRIVE_UDMA)
    291   1.1  hamajima 		dmaconf |= udma_timing_kauai[udmamode];
    292   1.1  hamajima 
    293  1.33    bouyer 	if (drvp->drive_flags & ATA_DRIVE_UDMA)
    294   1.1  hamajima 		dmaconf |= 1;
    295   1.1  hamajima 
    296   1.1  hamajima 	sc->sc_piotiming_r[drive] = sc->sc_piotiming_w[drive] = pioconf;
    297   1.1  hamajima 	sc->sc_dmatiming_r[drive] = sc->sc_dmatiming_w[drive] = dmaconf;
    298   1.1  hamajima }
    299   1.1  hamajima 
    300   1.1  hamajima int
    301  1.22      matt kauai_dma_init(void *v, int channel, int drive, void *databuf,
    302  1.22      matt 	size_t datalen, int flags)
    303   1.1  hamajima {
    304   1.1  hamajima 	struct kauai_softc *sc = v;
    305   1.1  hamajima 	dbdma_command_t *cmdp = sc->sc_dmacmd;
    306  1.15   thorpej 	struct ata_channel *chp = &sc->sc_channel;
    307  1.16   thorpej 	struct wdc_regs *wdr = CHAN_TO_WDC_REGS(chp);
    308   1.1  hamajima 	vaddr_t va = (vaddr_t)databuf;
    309   1.1  hamajima 	int read = flags & WDC_DMA_READ;
    310   1.1  hamajima 	int cmd = read ? DBDMA_CMD_IN_MORE : DBDMA_CMD_OUT_MORE;
    311   1.1  hamajima 	u_int offset;
    312   1.1  hamajima 
    313  1.15   thorpej 	bus_space_write_4(wdr->cmd_iot, wdr->cmd_baseioh, DMA_CONFIG_REG,
    314   1.1  hamajima 	    read ? sc->sc_dmatiming_r[drive] : sc->sc_dmatiming_w[drive]);
    315  1.15   thorpej 	bus_space_read_4(wdr->cmd_iot, wdr->cmd_baseioh, DMA_CONFIG_REG);
    316   1.1  hamajima 
    317   1.1  hamajima 	offset = va & PGOFSET;
    318   1.1  hamajima 
    319   1.1  hamajima 	/* if va is not page-aligned, setup the first page */
    320   1.1  hamajima 	if (offset != 0) {
    321   1.1  hamajima 		int rest = PAGE_SIZE - offset;	/* the rest of the page */
    322   1.1  hamajima 
    323   1.1  hamajima 		if (datalen > rest) {		/* if continues to next page */
    324   1.1  hamajima 			DBDMA_BUILD(cmdp, cmd, 0, rest, vtophys(va),
    325   1.1  hamajima 				DBDMA_INT_NEVER, DBDMA_WAIT_NEVER,
    326   1.1  hamajima 				DBDMA_BRANCH_NEVER);
    327   1.1  hamajima 			datalen -= rest;
    328   1.1  hamajima 			va += rest;
    329   1.1  hamajima 			cmdp++;
    330   1.1  hamajima 		}
    331   1.1  hamajima 	}
    332   1.1  hamajima 
    333   1.1  hamajima 	/* now va is page-aligned */
    334   1.1  hamajima 	while (datalen > PAGE_SIZE) {
    335   1.1  hamajima 		DBDMA_BUILD(cmdp, cmd, 0, PAGE_SIZE, vtophys(va),
    336   1.1  hamajima 			DBDMA_INT_NEVER, DBDMA_WAIT_NEVER, DBDMA_BRANCH_NEVER);
    337   1.1  hamajima 		datalen -= PAGE_SIZE;
    338   1.1  hamajima 		va += PAGE_SIZE;
    339   1.1  hamajima 		cmdp++;
    340   1.1  hamajima 	}
    341   1.1  hamajima 
    342   1.1  hamajima 	/* the last page (datalen <= PAGE_SIZE here) */
    343   1.1  hamajima 	cmd = read ? DBDMA_CMD_IN_LAST : DBDMA_CMD_OUT_LAST;
    344   1.1  hamajima 	DBDMA_BUILD(cmdp, cmd, 0, datalen, vtophys(va),
    345   1.1  hamajima 		DBDMA_INT_NEVER, DBDMA_WAIT_NEVER, DBDMA_BRANCH_NEVER);
    346   1.1  hamajima 	cmdp++;
    347   1.1  hamajima 
    348   1.1  hamajima 	DBDMA_BUILD(cmdp, DBDMA_CMD_STOP, 0, 0, 0,
    349   1.1  hamajima 		DBDMA_INT_NEVER, DBDMA_WAIT_NEVER, DBDMA_BRANCH_NEVER);
    350   1.1  hamajima 
    351   1.1  hamajima 	return 0;
    352   1.1  hamajima }
    353   1.1  hamajima 
    354   1.1  hamajima void
    355  1.22      matt kauai_dma_start(void *v, int channel, int drive)
    356   1.1  hamajima {
    357   1.1  hamajima 	struct kauai_softc *sc = v;
    358   1.1  hamajima 
    359   1.1  hamajima 	dbdma_start(sc->sc_dmareg, sc->sc_dmacmd);
    360   1.1  hamajima }
    361   1.1  hamajima 
    362   1.1  hamajima int
    363  1.22      matt kauai_dma_finish(void *v, int channel, int drive, int read)
    364   1.1  hamajima {
    365   1.1  hamajima 	struct kauai_softc *sc = v;
    366   1.1  hamajima 
    367   1.1  hamajima 	dbdma_stop(sc->sc_dmareg);
    368   1.1  hamajima 	return 0;
    369   1.1  hamajima }
    370