Home
last modified time | relevance | path

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

/freebsd/sys/dev/ae/
H A Dif_ae.c590 bzero(sc->txd_base, AE_TXD_BUFSIZE_DEFAULT); in ae_init_locked()
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()
1229 if (sc->txd_base != NULL) in ae_dma_free()
1230 bus_dmamem_free(sc->dma_txd_tag, sc->txd_base, in ae_dma_free()
1234 sc->txd_base = NULL; in ae_dma_free()
1457 hdr = (ae_txd_t *)(sc->txd_base + sc->txd_cur); in ae_encap()
1464 m_copydata(m0, 0, len, (caddr_t)(sc->txd_base + sc->txd_cur)); in ae_encap()
1466 m_copydata(m0, 0, to_end, (caddr_t)(sc->txd_base + in ae_encap()
1468 m_copydata(m0, to_end, len - to_end, (caddr_t)sc->txd_base); in ae_encap()
[all …]
H A Dif_aevar.h140 char *txd_base; /* Start of TxD ring. */ member