Searched refs:unicast_reg (Results 1 - 2 of 2) sorted by relevance

/u-boot/drivers/net/
H A Dmvgbe.c336 u32 unicast_reg; local
353 unicast_reg = MVGBE_REG_RD(regs->dfut[tbl_offset]);
354 unicast_reg &= (0xFF << (8 * reg_offset));
355 MVGBE_REG_WR(regs->dfut[tbl_offset], unicast_reg);
359 unicast_reg = MVGBE_REG_RD(regs->dfut[tbl_offset]);
360 unicast_reg &= (0xFF << (8 * reg_offset));
361 unicast_reg |= ((0x01 | (RXUQ << 1)) << (8 * reg_offset));
362 MVGBE_REG_WR(regs->dfut[tbl_offset], unicast_reg);
H A Dmvneta.c836 unsigned int unicast_reg; local
849 unicast_reg = mvreg_read(pp, (MVNETA_DA_FILT_UCAST_BASE + tbl_offset));
853 unicast_reg &= ~(0xff << (8 * reg_offset));
855 unicast_reg &= ~(0xff << (8 * reg_offset));
856 unicast_reg |= ((0x01 | (queue << 1)) << (8 * reg_offset));
859 mvreg_write(pp, (MVNETA_DA_FILT_UCAST_BASE + tbl_offset), unicast_reg);

Completed in 46 milliseconds