Home
last modified time | relevance | path

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

/src/sys/dev/mpt/
H A Dmpt_pci.c674 &mpt->reply_dmat) != 0) { in mpt_dma_mem_alloc()
680 if (bus_dmamem_alloc(mpt->reply_dmat, (void **)&mpt->reply, in mpt_dma_mem_alloc()
691 bus_dmamap_load(mpt->reply_dmat, mpt->reply_dmap, mpt->reply, in mpt_dma_mem_alloc()
711 if (mpt->reply_dmat == 0) { in mpt_dma_mem_free()
716 bus_dmamap_unload(mpt->reply_dmat, mpt->reply_dmap); in mpt_dma_mem_free()
717 bus_dmamem_free(mpt->reply_dmat, mpt->reply, mpt->reply_dmap); in mpt_dma_mem_free()
718 bus_dma_tag_destroy(mpt->reply_dmat); in mpt_dma_mem_free()
720 mpt->reply_dmat = NULL; in mpt_dma_mem_free()
H A Dmpt.c743 bus_dmamap_sync_range(mpt->reply_dmat, in mpt_intr()
827 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.h658 bus_dma_tag_t reply_dmat; /* DMA tag for reply memory */ member
/src/sys/dev/mps/
H A Dmps.c767 bus_dmamap_unload(sc->reply_dmat, sc->reply_map); in mps_iocfacts_free()
769 bus_dmamem_free(sc->reply_dmat, sc->reply_frames, in mps_iocfacts_free()
771 if (sc->reply_dmat != NULL) in mps_iocfacts_free()
772 bus_dma_tag_destroy(sc->reply_dmat); in mps_iocfacts_free()
1371 if (bus_dma_template_tag(&t, &sc->reply_dmat)) { in mps_alloc_replies()
1375 if (bus_dmamem_alloc(sc->reply_dmat, (void **)&sc->reply_frames, in mps_alloc_replies()
1381 bus_dmamap_load(sc->reply_dmat, sc->reply_map, sc->reply_frames, rsize, in mps_alloc_replies()
H A Dmpsvar.h377 bus_dma_tag_t reply_dmat; member
/src/sys/dev/mpr/
H A Dmpr.c795 bus_dmamap_unload(sc->reply_dmat, sc->reply_map); in mpr_iocfacts_free()
797 bus_dmamem_free(sc->reply_dmat, sc->reply_frames, in mpr_iocfacts_free()
799 if (sc->reply_dmat != NULL) in mpr_iocfacts_free()
800 bus_dma_tag_destroy(sc->reply_dmat); in mpr_iocfacts_free()
1435 if (bus_dma_template_tag(&t, &sc->reply_dmat)) { in mpr_alloc_replies()
1439 if (bus_dmamem_alloc(sc->reply_dmat, (void **)&sc->reply_frames, in mpr_alloc_replies()
1445 bus_dmamap_load(sc->reply_dmat, sc->reply_map, sc->reply_frames, rsize, in mpr_alloc_replies()
H A Dmprvar.h422 bus_dma_tag_t reply_dmat; member