Home
last modified time | relevance | path

Searched refs:malloc_dma (Results 1 – 19 of 19) sorted by relevance

/external/syslinux/gpxe/src/include/gpxe/
Dmalloc.h40 static inline void * __malloc malloc_dma ( size_t size, size_t phys_align ) { in malloc_dma() function
/external/syslinux/gpxe/src/core/
Diobuf.c54 data = malloc_dma ( len + sizeof ( *iobuf ), IOB_ALIGN ); in alloc_iob()
/external/syslinux/gpxe/src/drivers/net/
Deepro100.c338 ias = malloc_dma ( sizeof ( *ias ), CB_ALIGN ); in ifec_net_open()
348 cfg = malloc_dma ( sizeof ( *cfg ), CB_ALIGN ); in ifec_net_open()
1073 priv->tcbs = malloc_dma ( TX_RING_BYTES, CB_ALIGN ); in ifec_tx_setup()
D3c90x.c257 malloc_dma(TX_RING_SIZE * sizeof(struct TXD), TX_RING_ALIGN); in a3c90x_setup_tx_ring()
468 malloc_dma(RX_RING_SIZE * sizeof(struct RXD), RX_RING_ALIGN); in a3c90x_setup_rx_ring()
Db44.c443 bp->rx = malloc_dma(B44_RX_RING_LEN_BYTES, B44_DMA_ALIGNMENT); in b44_init_rx_ring()
471 bp->tx = malloc_dma(B44_TX_RING_LEN_BYTES, B44_DMA_ALIGNMENT); in b44_init_tx_ring()
Dsis190.c562 tp->TxDescRing = malloc_dma(TX_RING_BYTES, RING_ALIGNMENT); in sis190_open()
571 tp->RxDescRing = malloc_dma(RX_RING_BYTES, RING_ALIGNMENT); in sis190_open()
Dmyri10ge.c696 priv->dma = malloc_dma ( sizeof ( *priv->dma ) , 128 ); in myri10ge_net_open()
Dr8169.c1594 tp->tx_base = malloc_dma ( R8169_TX_RING_BYTES, TX_RING_ALIGN ); in rtl8169_setup_tx_resources()
1728 tp->rx_base = malloc_dma ( R8169_RX_RING_BYTES, RX_RING_ALIGN ); in rtl8169_setup_rx_resources()
Dsky2.c1139 sky2->tx_le = malloc_dma(TX_RING_SIZE * sizeof(struct sky2_tx_le), TX_RING_ALIGN); in sky2_up()
1151 sky2->rx_le = malloc_dma(RX_LE_BYTES, RX_RING_ALIGN); in sky2_up()
2293 hw->st_le = malloc_dma(STATUS_LE_BYTES, STATUS_RING_ALIGN); in sky2_probe()
Datl1e.c414 adapter->ring_vir_addr = malloc_dma(adapter->ring_size, 32); in atl1e_setup_ring_resources()
Dskge.c1719 skge->mem = malloc_dma(RING_SIZE, SKGE_RING_ALIGN); in skge_up()
Detherfabric.c3048 buffer = malloc_dma ( bytes, EFAB_BUF_ALIGN ); in falcon_alloc_special_buffer()
/external/syslinux/gpxe/src/drivers/infiniband/
Darbel.c578 arbel_cq->cqe = malloc_dma ( arbel_cq->cqe_size, in arbel_create_cq()
707 arbel_send_wq->wqe = malloc_dma ( arbel_send_wq->wqe_size, in arbel_create_send_wq()
744 arbel_recv_wq->wqe = malloc_dma ( arbel_recv_wq->wqe_size, in arbel_create_recv_wq()
1325 arbel_eq->eqe = malloc_dma ( arbel_eq->eqe_size, in arbel_create_eq()
2132 arbel->mailbox_in = malloc_dma ( ARBEL_MBOX_SIZE, ARBEL_MBOX_ALIGN ); in arbel_probe()
2137 arbel->mailbox_out = malloc_dma ( ARBEL_MBOX_SIZE, ARBEL_MBOX_ALIGN ); in arbel_probe()
Dhermon.c731 hermon_cq->cqe = malloc_dma ( hermon_cq->cqe_size, in hermon_create_cq()
987 hermon_qp->wqe = malloc_dma ( hermon_qp->wqe_size, in hermon_create_qp()
1586 hermon_eq->eqe = malloc_dma ( hermon_eq->eqe_size, in hermon_create_eq()
2609 hermon->mailbox_in = malloc_dma ( HERMON_MBOX_SIZE, in hermon_probe()
2615 hermon->mailbox_out = malloc_dma ( HERMON_MBOX_SIZE, in hermon_probe()
Dlinda.c547 linda->sendbufavail = malloc_dma ( sizeof ( *linda->sendbufavail ), in linda_init_send()
629 linda_wq->header = malloc_dma ( LINDA_RECV_HEADERS_SIZE, in linda_create_recv_wq()
/external/syslinux/gpxe/src/drivers/net/e1000/
De1000.c212 malloc_dma ( adapter->tx_ring_size, adapter->tx_ring_size ); in e1000_setup_tx_resources()
358 malloc_dma ( adapter->rx_ring_size, adapter->rx_ring_size ); in e1000_setup_rx_resources()
/external/syslinux/gpxe/src/drivers/net/phantom/
Dphantom.c612 buf = malloc_dma ( sizeof ( *buf ), UNM_DMA_BUFFER_ALIGN ); in phantom_create_rx_ctx()
732 buf = malloc_dma ( sizeof ( *buf ), UNM_DMA_BUFFER_ALIGN ); in phantom_create_tx_ctx()
1131 phantom->desc = malloc_dma ( sizeof ( *(phantom->desc) ), in phantom_open()
/external/syslinux/gpxe/src/drivers/net/rtl818x/
Drtl818x.c331 priv->rx_ring = malloc_dma(sizeof(*priv->rx_ring) * RTL818X_RX_RING_SIZE, in rtl818x_init_rx_ring()
376 priv->tx_ring = malloc_dma(sizeof(*priv->tx_ring) * RTL818X_TX_RING_SIZE, in rtl818x_init_tx_ring()
/external/syslinux/gpxe/src/drivers/net/ath5k/
Dath5k.c922 sc->desc = malloc_dma(sc->desc_len, ATH5K_DESC_ALIGN); in ath5k_desc_alloc()