Home
last modified time | relevance | path

Searched refs:data_start (Results 1 – 7 of 7) sorted by relevance

/u-boot/tools/binman/
A Delf.py444 data_start = 0xffffffff;
457 data_start = min(data_start, start)
463 output = bytearray(data_end - data_start)
487 output[start - data_start:start - data_start + size] = (
489 return ElfInfo(output, data_start, elf.header['e_entry'] + virt_to_phys,
490 mem_end - data_start)
/u-boot/common/
A Dbloblist.c124 int data_start, new_alloced; in bloblist_addrec() local
130 data_start = map_to_sysmem(hdr) + hdr->alloced + sizeof(*rec); in bloblist_addrec()
133 data_start = ALIGN(data_start, align) - map_to_sysmem(hdr); in bloblist_addrec()
136 new_alloced = data_start + ALIGN(size, align); in bloblist_addrec()
146 rec->hdr_size = data_start - hdr->alloced; in bloblist_addrec()
/u-boot/drivers/net/
A Dftgmac100.c432 ulong data_start = curr_des->rxdes3; in ftgmac100_recv() local
454 data_end = data_start + roundup(rxlen, ARCH_DMA_MINALIGN); in ftgmac100_recv()
455 invalidate_dcache_range(data_start, data_end); in ftgmac100_recv()
456 *packetp = (uchar *)data_start; in ftgmac100_recv()
485 ulong data_start; in BUILD_WAIT_FOR_BIT() local
503 data_start = curr_des->txdes3; in BUILD_WAIT_FOR_BIT()
504 data_end = data_start + roundup(length, ARCH_DMA_MINALIGN); in BUILD_WAIT_FOR_BIT()
505 flush_dcache_range(data_start, data_end); in BUILD_WAIT_FOR_BIT()
A Ddesignware.c450 ulong data_start = desc_p->dmamac_addr; in _dw_eth_send() local
451 ulong data_end = data_start + roundup(length, ARCH_DMA_MINALIGN); in _dw_eth_send()
468 memcpy((void *)data_start, packet, length); in _dw_eth_send()
470 memset(&((char *)data_start)[length], 0, ETH_ZLEN - length); in _dw_eth_send()
475 flush_dcache_range(data_start, data_end); in _dw_eth_send()
517 ulong data_start = desc_p->dmamac_addr; in _dw_eth_recv() local
532 data_end = data_start + roundup(length, ARCH_DMA_MINALIGN); in _dw_eth_recv()
533 invalidate_dcache_range(data_start, data_end); in _dw_eth_recv()
A Dsun8i_emac.c498 uintptr_t data_start = (uintptr_t)desc_p->buf_addr; in sun8i_emac_eth_recv() local
513 invalidate_dcache_range(data_start, in sun8i_emac_eth_recv()
514 data_start + roundup(length, ARCH_DMA_MINALIGN)); in sun8i_emac_eth_recv()
541 uintptr_t data_start = (uintptr_t)desc_p->buf_addr; in sun8i_emac_eth_send() local
542 uintptr_t data_end = data_start + in sun8i_emac_eth_send()
547 memcpy((void *)data_start, packet, length); in sun8i_emac_eth_send()
550 flush_dcache_range(data_start, data_end); in sun8i_emac_eth_send()
/u-boot/disk/
A Dpart_mac.h63 __u32 data_start; /* rel block # of first data block */ member
/u-boot/drivers/mmc/
A Ddw_mmc.c57 ulong data_start, data_end; in dwmci_prepare_data() local
67 data_start = (ulong)cur_idmac; in dwmci_prepare_data()
90 flush_dcache_range(data_start, roundup(data_end, ARCH_DMA_MINALIGN)); in dwmci_prepare_data()

Completed in 24 milliseconds