Home
last modified time | relevance | path

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

/freebsd/sys/dev/ae/
H A Dif_ae.c1138 &sc->dma_txs_tag); in ae_alloc_rings()
1180 error = bus_dmamem_alloc(sc->dma_txs_tag, (void **)&sc->txs_base, in ae_alloc_rings()
1188 error = bus_dmamap_load(sc->dma_txs_tag, sc->dma_txs_map, sc->txs_base, in ae_alloc_rings()
1237 if (sc->dma_txs_tag != NULL) { in ae_dma_free()
1239 bus_dmamap_unload(sc->dma_txs_tag, sc->dma_txs_map); in ae_dma_free()
1241 bus_dmamem_free(sc->dma_txs_tag, sc->txs_base, in ae_dma_free()
1243 bus_dma_tag_destroy(sc->dma_txs_tag); in ae_dma_free()
1244 sc->dma_txs_tag = NULL; in ae_dma_free()
1504 bus_dmamap_sync(sc->dma_txs_tag, sc->dma_txs_map, in ae_encap()
1823 bus_dmamap_sync(sc->dma_txs_tag, sc->dma_txs_map, in ae_tx_intr()
[all …]
H A Dif_aevar.h129 bus_dma_tag_t dma_txs_tag; member