Home
last modified time | relevance | path

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

/freebsd/sys/dev/ae/
H A Dif_ae.c1151 &sc->dma_rxd_tag); in ae_alloc_rings()
1200 error = bus_dmamem_alloc(sc->dma_rxd_tag, (void **)&sc->rxd_base_dma, in ae_alloc_rings()
1208 error = bus_dmamap_load(sc->dma_rxd_tag, sc->dma_rxd_map, in ae_alloc_rings()
1248 if (sc->dma_rxd_tag != NULL) { in ae_dma_free()
1250 bus_dmamap_unload(sc->dma_rxd_tag, sc->dma_rxd_map); in ae_dma_free()
1252 bus_dmamem_free(sc->dma_rxd_tag, sc->rxd_base_dma, in ae_dma_free()
1254 bus_dma_tag_destroy(sc->dma_rxd_tag); in ae_dma_free()
1255 sc->dma_rxd_tag = NULL; in ae_dma_free()
1940 bus_dmamap_sync(sc->dma_rxd_tag, sc->dma_rxd_map, in ae_rx_intr()
1964 bus_dmamap_sync(sc->dma_rxd_tag, sc->dma_rxd_map, in ae_rx_intr()
H A Dif_aevar.h127 bus_dma_tag_t dma_rxd_tag; member