Home
last modified time | relevance | path

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

/u-boot/tools/binman/
A Delf.py257 data_start = 0xffffffff;
270 data_start = min(data_start, start)
276 output = bytearray(data_end - data_start)
300 output[start - data_start:start - data_start + size] = (
302 return ElfInfo(output, data_start, elf.header['e_entry'] + virt_to_phys,
303 mem_end - data_start)
/u-boot/common/
A Dbloblist.c98 int data_start, new_alloced; in bloblist_addrec() local
104 data_start = map_to_sysmem(hdr) + hdr->alloced + sizeof(*rec); in bloblist_addrec()
107 data_start = ALIGN(data_start, align) - map_to_sysmem(hdr); in bloblist_addrec()
110 new_alloced = data_start + ALIGN(size, align); in bloblist_addrec()
121 rec->hdr_size = data_start - hdr->alloced; in bloblist_addrec()
/u-boot/drivers/net/
A Dftgmac100.c426 ulong data_start = curr_des->rxdes3; in ftgmac100_recv() local
448 data_end = data_start + roundup(rxlen, ARCH_DMA_MINALIGN); in ftgmac100_recv()
449 invalidate_dcache_range(data_start, data_end); in ftgmac100_recv()
450 *packetp = (uchar *)data_start; in ftgmac100_recv()
479 ulong data_start; in BUILD_WAIT_FOR_BIT() local
497 data_start = curr_des->txdes3; in BUILD_WAIT_FOR_BIT()
498 data_end = data_start + roundup(length, ARCH_DMA_MINALIGN); in BUILD_WAIT_FOR_BIT()
499 flush_dcache_range(data_start, data_end); in BUILD_WAIT_FOR_BIT()
A Ddesignware.c372 ulong data_start = desc_p->dmamac_addr; in _dw_eth_send() local
373 ulong data_end = data_start + roundup(length, ARCH_DMA_MINALIGN); in _dw_eth_send()
390 memcpy((void *)data_start, packet, length); in _dw_eth_send()
392 memset(&((char *)data_start)[length], 0, ETH_ZLEN - length); in _dw_eth_send()
397 flush_dcache_range(data_start, data_end); in _dw_eth_send()
439 ulong data_start = desc_p->dmamac_addr; in _dw_eth_recv() local
454 data_end = data_start + roundup(length, ARCH_DMA_MINALIGN); in _dw_eth_recv()
455 invalidate_dcache_range(data_start, data_end); in _dw_eth_recv()
A Dsun8i_emac.c601 uintptr_t data_start = (uintptr_t)desc_p->buf_addr; in sun8i_emac_eth_recv() local
616 invalidate_dcache_range(data_start, in sun8i_emac_eth_recv()
617 data_start + roundup(length, ARCH_DMA_MINALIGN)); in sun8i_emac_eth_recv()
644 uintptr_t data_start = (uintptr_t)desc_p->buf_addr; in sun8i_emac_eth_send() local
645 uintptr_t data_end = data_start + in sun8i_emac_eth_send()
650 memcpy((void *)data_start, packet, length); in sun8i_emac_eth_send()
653 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 21 milliseconds