Lines Matching refs:orig_mac
781 u32 orig_mac[2]; member
5887 np->orig_mac[0] = readl(base + NvRegMacAddrA); in nv_probe()
5888 np->orig_mac[1] = readl(base + NvRegMacAddrB); in nv_probe()
5894 mac[0] = (np->orig_mac[0] >> 0) & 0xff; in nv_probe()
5895 mac[1] = (np->orig_mac[0] >> 8) & 0xff; in nv_probe()
5896 mac[2] = (np->orig_mac[0] >> 16) & 0xff; in nv_probe()
5897 mac[3] = (np->orig_mac[0] >> 24) & 0xff; in nv_probe()
5898 mac[4] = (np->orig_mac[1] >> 0) & 0xff; in nv_probe()
5899 mac[5] = (np->orig_mac[1] >> 8) & 0xff; in nv_probe()
5902 mac[0] = (np->orig_mac[0] >> 0) & 0xff; in nv_probe()
5903 mac[1] = (np->orig_mac[0] >> 8) & 0xff; in nv_probe()
5904 mac[2] = (np->orig_mac[0] >> 16) & 0xff; in nv_probe()
5905 mac[3] = (np->orig_mac[0] >> 24) & 0xff; in nv_probe()
5906 mac[4] = (np->orig_mac[1] >> 0) & 0xff; in nv_probe()
5907 mac[5] = (np->orig_mac[1] >> 8) & 0xff; in nv_probe()
5913 np->orig_mac[0] = (mac[5] << 0) + (mac[4] << 8) + in nv_probe()
5915 np->orig_mac[1] = (mac[1] << 0) + (mac[0] << 8); in nv_probe()
5918 mac[0] = (np->orig_mac[1] >> 8) & 0xff; in nv_probe()
5919 mac[1] = (np->orig_mac[1] >> 0) & 0xff; in nv_probe()
5920 mac[2] = (np->orig_mac[0] >> 24) & 0xff; in nv_probe()
5921 mac[3] = (np->orig_mac[0] >> 16) & 0xff; in nv_probe()
5922 mac[4] = (np->orig_mac[0] >> 8) & 0xff; in nv_probe()
5923 mac[5] = (np->orig_mac[0] >> 0) & 0xff; in nv_probe()
6191 writel(np->orig_mac[0], base + NvRegMacAddrA); in nv_restore_mac_addr()
6192 writel(np->orig_mac[1], base + NvRegMacAddrB); in nv_restore_mac_addr()