Home
last modified time | relevance | path

Searched refs:reply_dmat (Results 1 – 7 of 7) sorted by relevance

/dragonfly/sys/dev/disk/mpt/
H A Dmpt_pci.c727 &mpt->reply_dmat) != 0) { in mpt_dma_mem_alloc()
733 if (bus_dmamem_alloc(mpt->reply_dmat, (void **)&mpt->reply, in mpt_dma_mem_alloc()
744 bus_dmamap_load(mpt->reply_dmat, mpt->reply_dmap, mpt->reply, in mpt_dma_mem_alloc()
764 if (mpt->reply_dmat == NULL) { in mpt_dma_mem_free()
769 bus_dmamap_unload(mpt->reply_dmat, mpt->reply_dmap); in mpt_dma_mem_free()
770 bus_dmamem_free(mpt->reply_dmat, mpt->reply, mpt->reply_dmap); in mpt_dma_mem_free()
771 bus_dma_tag_destroy(mpt->reply_dmat); in mpt_dma_mem_free()
773 mpt->reply_dmat = NULL; in mpt_dma_mem_free()
H A Dmpt.c740 bus_dmamap_sync_range(mpt->reply_dmat, in mpt_intr()
824 bus_dmamap_sync_range(mpt->reply_dmat, in mpt_intr()
1248 bus_dmamap_sync_range(mpt->reply_dmat, mpt->reply_dmap, offset, in mpt_free_request()
H A Dmpt.h654 bus_dma_tag_t reply_dmat; /* DMA tag for reply memory */ member
/dragonfly/sys/dev/raid/mps/
H A Dmps.c728 &sc->reply_dmat)) { in mps_alloc_replies()
732 if (bus_dmamem_alloc(sc->reply_dmat, (void **)&sc->reply_frames, in mps_alloc_replies()
738 bus_dmamap_load(sc->reply_dmat, sc->reply_map, sc->reply_frames, rsize, in mps_alloc_replies()
1367 bus_dmamap_unload(sc->reply_dmat, sc->reply_map); in mps_free()
1369 bus_dmamem_free(sc->reply_dmat, sc->reply_frames,sc->reply_map); in mps_free()
1370 if (sc->reply_dmat != NULL) in mps_free()
1371 bus_dma_tag_destroy(sc->reply_dmat); in mps_free()
H A Dmpsvar.h357 bus_dma_tag_t reply_dmat; member
/dragonfly/sys/dev/raid/mpr/
H A Dmpr.c773 bus_dmamap_unload(sc->reply_dmat, sc->reply_map); in mpr_iocfacts_free()
775 bus_dmamem_free(sc->reply_dmat, sc->reply_frames, in mpr_iocfacts_free()
777 if (sc->reply_dmat != NULL) in mpr_iocfacts_free()
778 bus_dma_tag_destroy(sc->reply_dmat); in mpr_iocfacts_free()
1364 &sc->reply_dmat)) { in mpr_alloc_replies()
1368 if (bus_dmamem_alloc(sc->reply_dmat, (void **)&sc->reply_frames, in mpr_alloc_replies()
1374 bus_dmamap_load(sc->reply_dmat, sc->reply_map, sc->reply_frames, rsize, in mpr_alloc_replies()
H A Dmprvar.h386 bus_dma_tag_t reply_dmat; member