Home
last modified time | relevance | path

Searched refs:p_txdesc (Results 1 – 4 of 4) sorted by relevance

/external/u-boot/drivers/net/
Darmada100_fec.c468 writel((u32)darmdfec->p_txdesc, temp); in armdfec_init()
549 struct tx_desc *p_txdesc = darmdfec->p_txdesc; in armdfec_send() local
565 p_txdesc->cmd_sts = TX_ZERO_PADDING | TX_GEN_CRC; in armdfec_send()
566 p_txdesc->cmd_sts |= TX_FIRST_DESC | TX_LAST_DESC; in armdfec_send()
567 p_txdesc->cmd_sts |= BUF_OWNED_BY_DMA; in armdfec_send()
568 p_txdesc->cmd_sts |= TX_EN_INT; in armdfec_send()
569 p_txdesc->buf_ptr = p; in armdfec_send()
570 p_txdesc->byte_cnt = datasize; in armdfec_send()
574 writel((u32)p_txdesc, temp); in armdfec_send()
580 cmd_sts = readl(&p_txdesc->cmd_sts); in armdfec_send()
[all …]
Dmvgbe.c523 struct mvgbe_txdesc *p_txdesc = dmvgbe->p_txdesc; in mvgbe_send() local
540 p_txdesc->cmd_sts = MVGBE_ZERO_PADDING | MVGBE_GEN_CRC; in mvgbe_send()
541 p_txdesc->cmd_sts |= MVGBE_TX_FIRST_DESC | MVGBE_TX_LAST_DESC; in mvgbe_send()
542 p_txdesc->cmd_sts |= MVGBE_BUFFER_OWNED_BY_DMA; in mvgbe_send()
543 p_txdesc->cmd_sts |= MVGBE_TX_EN_INTERRUPT; in mvgbe_send()
544 p_txdesc->buf_ptr = (u8 *) p; in mvgbe_send()
545 p_txdesc->byte_cnt = datasize; in mvgbe_send()
549 writel((u32) p_txdesc, txuq0_reg_addr); in mvgbe_send()
560 cmd_sts = readl(&p_txdesc->cmd_sts); in mvgbe_send()
569 cmd_sts = readl(&p_txdesc->cmd_sts); in mvgbe_send()
[all …]
Darmada100_fec.h200 struct tx_desc *p_txdesc; member
Dmvgbe.h484 struct mvgbe_txdesc *p_txdesc; member