Home
last modified time | relevance | path

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

/rk3399_rockchip-uboot/drivers/net/
H A Dftgmac100.c34 struct ftgmac100_txdes *txdes; member
370 struct ftgmac100_txdes *txdes; in ftgmac100_init() local
378 if (!priv->txdes) { in ftgmac100_init()
379 txdes = dma_alloc_coherent( in ftgmac100_init()
380 sizeof(*txdes) * PKTBUFSTX, &priv->txdes_dma); in ftgmac100_init()
381 if (!txdes) in ftgmac100_init()
383 memset(txdes, 0, sizeof(*txdes) * PKTBUFSTX); in ftgmac100_init()
384 priv->txdes = txdes; in ftgmac100_init()
386 txdes = priv->txdes; in ftgmac100_init()
408 txdes[PKTBUFSTX - 1].txdes0 = FTGMAC100_TXDES0_EDOTR; in ftgmac100_init()
[all …]
H A Dftmac100.c24 struct ftmac100_txdes txdes[1]; member
78 struct ftmac100_txdes *txdes = priv->txdes; in _ftmac100_init() local
99 txdes[0].txdes1 = FTMAC100_TXDES1_EDOTR; in _ftmac100_init()
111 writel ((unsigned int)txdes, &ftmac100->txr_badr); in _ftmac100_init()
185 struct ftmac100_txdes *curr_des = priv->txdes; in _ftmac100_send()