Home
last modified time | relevance | path

Searched refs:cmdsts (Results 1 – 3 of 3) sorted by relevance

/openbmc/u-boot/drivers/net/
H A Dns8382x.c164 vu_long cmdsts; member
621 txd.cmdsts = (u32) 0; in ns8382x_init_txd()
652 rxd[i].cmdsts = cpu_to_le32((u32) RX_BUF_SIZE); in ns8382x_init_rxd()
658 le32_to_cpu(rxd[i].cmdsts), le32_to_cpu(rxd[i].bufptr)); in ns8382x_init_rxd()
750 txd.cmdsts = cpu_to_le32(DescOwn | length); in ns8382x_send()
759 le32_to_cpu(txd.extsts), le32_to_cpu(txd.cmdsts)); in ns8382x_send()
764 for (i = 0; (tx_stat = le32_to_cpu(txd.cmdsts)) & DescOwn; i++) { in ns8382x_send()
799 vu_long rx_status = le32_to_cpu(rxd[cur_rx].cmdsts); in ns8382x_poll()
822 rxd[cur_rx].cmdsts = cpu_to_le32(RX_BUF_SIZE); in ns8382x_poll()
H A Dnatsemi.c183 vu_long cmdsts; member
658 txd.cmdsts = (u32) 0; in natsemi_init_txd()
692 rxd[i].cmdsts = cpu_to_le32((u32) RX_BUF_SIZE); in natsemi_init_rxd()
698 rxd[i].cmdsts, rxd[i].bufptr); in natsemi_init_rxd()
773 txd.cmdsts = cpu_to_le32(DescOwn | length); in natsemi_send()
786 (*res = le32_to_cpu(txd.cmdsts)) & DescOwn; in natsemi_send()
826 u32 rx_status = le32_to_cpu(rxd[cur_rx].cmdsts); in natsemi_poll()
849 rxd[cur_rx].cmdsts = cpu_to_le32(RX_BUF_SIZE); in natsemi_poll()
H A Dsni_ave.c575 u32 cmdsts; in ave_recv() local
578 cmdsts = ave_desc_read_cmdsts(priv, AVE_DESCID_RX, in ave_recv()
580 if (!(cmdsts & AVE_STS_OWN)) in ave_recv()
585 if (cmdsts & AVE_STS_OK) in ave_recv()
590 le32_to_cpu(cmdsts), ptr); in ave_recv()
593 length = cmdsts & AVE_STS_PKTLEN_RX_MASK; in ave_recv()