Home
last modified time | relevance | path

Searched refs:hwaddr (Results 1 – 8 of 8) sorted by relevance

/rk3399_rockchip-uboot/board/Arcturus/ucp1020/
H A Dcmd_arc.c43 static int ishwaddr(char *hwaddr) in ishwaddr() argument
45 if (strlen(hwaddr) == MAX_HWADDR_SIZE) in ishwaddr()
46 if (hwaddr[2] == ':' && in ishwaddr()
47 hwaddr[5] == ':' && in ishwaddr()
48 hwaddr[8] == ':' && in ishwaddr()
49 hwaddr[11] == ':' && in ishwaddr()
50 hwaddr[14] == ':') in ishwaddr()
/rk3399_rockchip-uboot/drivers/net/
H A Daltera_tse.c455 u8 *hwaddr = pdata->enetaddr; in altera_tse_write_hwaddr() local
458 mac_lo = (hwaddr[3] << 24) | (hwaddr[2] << 16) | in altera_tse_write_hwaddr()
459 (hwaddr[1] << 8) | hwaddr[0]; in altera_tse_write_hwaddr()
460 mac_hi = (hwaddr[5] << 8) | hwaddr[4]; in altera_tse_write_hwaddr()
/rk3399_rockchip-uboot/include/
H A Dapi_public.h106 unsigned char hwaddr[6]; member
/rk3399_rockchip-uboot/api/
H A Dapi_net.c68 memcpy(di->di_net.hwaddr, eth_current->enetaddr, 6); in dev_enum_net()
/rk3399_rockchip-uboot/drivers/usb/gadget/
H A Dci_udc.c361 unsigned long hwaddr; in ci_bounce() local
395 hwaddr = (unsigned long)ci_req->hw_buf; in ci_bounce()
397 flush_dcache_range(hwaddr, hwaddr + aligned_used_len); in ci_bounce()
406 unsigned long hwaddr = (unsigned long)ci_req->hw_buf; in ci_debounce() local
413 invalidate_dcache_range(hwaddr, hwaddr + aligned_used_len); in ci_debounce()
415 if (addr == hwaddr) in ci_debounce()
/rk3399_rockchip-uboot/arch/sandbox/dts/
H A Dtest.dts154 fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x00>;
160 fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x11>;
166 fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x33>;
172 fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x22>;
H A Dsandbox.dts53 fake-host-hwaddr = [00 00 66 44 22 00];
/rk3399_rockchip-uboot/examples/api/
H A Ddemo.c305 printf("%02x ", di->di_net.hwaddr[i]); in test_dump_di()