HomeSort by: relevance | last modified time | path
    Searched defs:maclo (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/dev/ic/
dm9000.c 237 uint32_t maclo = 0x00f2 | (cprng_strong32() << 16); local in function:dme_attach
239 enaddr[0] = maclo;
240 enaddr[1] = maclo >> 8;
241 enaddr[2] = maclo >> 16;
242 enaddr[3] = maclo >> 26;
bcmgenet.c 962 uint32_t maclo, machi, val; local in function:genet_get_eaddr
974 maclo = machi = 0;
978 maclo = RD4(sc, GENET_UMAC_MAC0);
982 if (maclo == 0 && machi == 0) {
984 maclo = 0x00f2 | (cprng_strong32() & 0xffff0000);
988 eaddr[0] = (maclo >> 24) & 0xff;
989 eaddr[1] = (maclo >> 16) & 0xff;
990 eaddr[2] = (maclo >> 8) & 0xff;
991 eaddr[3] = (maclo >> 0) & 0xff;
dwc_gmac.c 190 uint32_t maclo, machi, hwft; local in function:dwc_gmac_attach
214 maclo = bus_space_read_4(sc->sc_bst, sc->sc_bsh,
219 if (maclo == 0xffffffff && (machi & 0xffff) == 0xffff) {
221 maclo = 0x00f2 | (cprng_strong32() << 16);
225 enaddr[0] = maclo & 0x0ff;
226 enaddr[1] = (maclo >> 8) & 0x0ff;
227 enaddr[2] = (maclo >> 16) & 0x0ff;
228 enaddr[3] = (maclo >> 24) & 0x0ff;
dwc_eqos.c 1277 uint32_t maclo, machi; local in function:eqos_get_eaddr
1289 maclo = RD4(sc, GMAC_MAC_ADDRESS0_LOW);
1291 if ((maclo & 0x00000001) != 0) {
1294 maclo &= ~0x00000001;
1297 if (maclo == 0xFFFFFFFF && machi == 0xFFFF) {
1299 maclo = 0x00f2 | (cprng_strong32() & 0xffff0000);
1303 eaddr[0] = maclo & 0xff;
1304 eaddr[1] = (maclo >> 8) & 0xff;
1305 eaddr[2] = (maclo >> 16) & 0xff;
1306 eaddr[3] = (maclo >> 24) & 0xff
    [all...]
  /src/sys/dev/usb/
if_ure.c 805 uint32_t maclo, machi; local in function:ure_attach
906 maclo = 0x00f2 | (cprng_strong32() & 0xffff0000);
908 eaddr[0] = maclo & 0xff;
909 eaddr[1] = (maclo >> 8) & 0xff;
910 eaddr[2] = (maclo >> 16) & 0xff;
911 eaddr[3] = (maclo >> 24) & 0xff;
  /src/sys/arch/arm/sunxi/
sunxi_emac.c 538 uint32_t val, crc, hashreg, hashbit, hash[2], machi, maclo; local in function:sunxi_emac_setup_rxfilter
572 maclo = (eaddr[3] << 24) | (eaddr[2] << 16) | (eaddr[1] << 8) |
575 WR4(sc, EMAC_ADDR_LOW(0), maclo);
1126 uint32_t maclo, machi; local in function:sunxi_emac_get_eaddr
1132 maclo = RD4(sc, EMAC_ADDR_LOW(0));
1134 if (maclo == 0xffffffff && machi == 0xffff) {
1141 maclo = (rootkey[13] << 24) | (rootkey[12] << 16) |
1147 maclo = 0x00f2 | (cprng_strong32() & 0xffff0000);
1154 eaddr[0] = maclo & 0xff;
1155 eaddr[1] = (maclo >> 8) & 0xff
    [all...]

Completed in 51 milliseconds