Searched refs:macid_hi (Results 1 - 5 of 5) sorted by relevance

/u-boot/drivers/net/ti/
H A Dcpsw-common.c39 u32 macid_hi = readl(addr + 4); local
43 mac_addr[3] = (macid_hi >> 24) & 0xff;
44 mac_addr[2] = (macid_hi >> 16) & 0xff;
45 mac_addr[1] = (macid_hi >> 8) & 0xff;
46 mac_addr[0] = macid_hi & 0xff;
/u-boot/drivers/net/
H A Dpch_gbe.c31 u32 macid_hi, macid_lo; local
33 macid_hi = readl(&mac_regs->mac_adr[0].high);
35 debug("pch_gbe: macid_hi %#x macid_lo %#x\n", macid_hi, macid_lo);
37 addr[0] = (u8)(macid_hi & 0xff);
38 addr[1] = (u8)((macid_hi >> 8) & 0xff);
39 addr[2] = (u8)((macid_hi >> 16) & 0xff);
40 addr[3] = (u8)((macid_hi >> 24) & 0xff);
47 u32 macid_hi, macid_lo; local
50 macid_hi
[all...]
H A Ddesignware.c316 u32 macid_lo, macid_hi; local
320 macid_hi = mac_id[4] + (mac_id[5] << 8);
322 writel(macid_hi, &mac_p->macaddr0hi);
H A Dsun8i_emac.c253 u32 macid_lo, macid_hi; local
257 macid_hi = mac_id[4] + (mac_id[5] << 8);
259 writel(macid_hi, priv->mac_reg + EMAC_ADDR0_HIGH);
H A Dag7xxx.c595 u32 macid_lo, macid_hi; local
597 macid_hi = mac[3] | (mac[2] << 8) | (mac[1] << 16) | (mac[0] << 24);
601 writel(macid_hi, priv->regs + AG7XXX_ETH_ADDR2);

Completed in 130 milliseconds