Searched refs:b_dmah (Results 1 – 4 of 4) sorted by relevance
/titanic_44/usr/src/uts/common/io/efe/ |
H A D | efe.h | 362 (void) ddi_dma_sync((bp)->b_dmah, 0, (bp)->b_len, (type)) 377 ddi_dma_handle_t b_dmah; member
|
H A D | efe.c | 1236 &bp->b_dmah) != DDI_SUCCESS) { in efe_buf_alloc() 1241 if (ddi_dma_mem_alloc(bp->b_dmah, len, &efe_buf_acc_attr, in efe_buf_alloc() 1248 if (ddi_dma_addr_bind_handle(bp->b_dmah, NULL, bp->b_kaddr, in efe_buf_alloc() 1271 (void) ddi_dma_unbind_handle(bp->b_dmah); in efe_buf_free() 1276 if (bp->b_dmah != NULL) { in efe_buf_free() 1277 ddi_dma_free_handle(&bp->b_dmah); in efe_buf_free()
|
/titanic_44/usr/src/uts/common/io/yge/ |
H A D | yge.c | 1541 DDI_DMA_DONTWAIT, NULL, &b->b_dmah); in yge_alloc_buf() 1547 rv = ddi_dma_mem_alloc(b->b_dmah, bufsz, &yge_buf_attr, in yge_alloc_buf() 1554 rv = ddi_dma_addr_bind_handle(b->b_dmah, NULL, b->b_buf, l, flag, in yge_alloc_buf() 1569 (void) ddi_dma_unbind_handle(b->b_dmah); in yge_free_buf() 1575 if (b->b_dmah) in yge_free_buf() 1576 ddi_dma_free_handle(&b->b_dmah); in yge_free_buf() 1577 b->b_dmah = NULL; in yge_free_buf()
|
H A D | yge.h | 1880 (void) ddi_dma_sync(b->b_dmah, 0, 0, flags) 2053 ddi_dma_handle_t b_dmah; member
|