Home
last modified time | relevance | path

Searched refs:dma_txd_tag (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/dev/ae/
H A Dif_ae.c1125 &sc->dma_txd_tag); in ae_alloc_rings()
1160 error = bus_dmamem_alloc(sc->dma_txd_tag, (void **)&sc->txd_base, in ae_alloc_rings()
1168 error = bus_dmamap_load(sc->dma_txd_tag, sc->dma_txd_map, sc->txd_base, in ae_alloc_rings()
1226 if (sc->dma_txd_tag != NULL) { in ae_dma_free()
1228 bus_dmamap_unload(sc->dma_txd_tag, sc->dma_txd_map); in ae_dma_free()
1230 bus_dmamem_free(sc->dma_txd_tag, sc->txd_base, in ae_dma_free()
1232 bus_dma_tag_destroy(sc->dma_txd_tag); in ae_dma_free()
1233 sc->dma_txd_tag = NULL; in ae_dma_free()
1502 bus_dmamap_sync(sc->dma_txd_tag, sc->dma_txd_map, BUS_DMASYNC_PREREAD | in ae_encap()
1821 bus_dmamap_sync(sc->dma_txd_tag, sc->dma_txd_map, in ae_tx_intr()
[all …]
H A Dif_aevar.h128 bus_dma_tag_t dma_txd_tag; member