Lines Matching refs:macl
53 u32 macl = 0, mach = 0; in ocelot_mact_select() local
61 macl |= mac[2] << 24; in ocelot_mact_select()
62 macl |= mac[3] << 16; in ocelot_mact_select()
63 macl |= mac[4] << 8; in ocelot_mact_select()
64 macl |= mac[5] << 0; in ocelot_mact_select()
66 ocelot_write(ocelot, macl, ANA_TABLES_MACLDATA); in ocelot_mact_select()
1279 u32 val, dst, macl, mach; in ocelot_mact_read() local
1307 macl = ocelot_read(ocelot, ANA_TABLES_MACLDATA); in ocelot_mact_read()
1312 mac[2] = (macl >> 24) & 0xff; in ocelot_mact_read()
1313 mac[3] = (macl >> 16) & 0xff; in ocelot_mact_read()
1314 mac[4] = (macl >> 8) & 0xff; in ocelot_mact_read()
1315 mac[5] = (macl >> 0) & 0xff; in ocelot_mact_read()