Home
last modified time | relevance | path

Searched refs:flush_start (Results 1 – 3 of 3) sorted by relevance

/openbmc/u-boot/drivers/bootcount/
H A Dbootcount.c14 uintptr_t flush_start = rounddown(CONFIG_SYS_BOOTCOUNT_ADDR, in bootcount_store() local
30 flush_dcache_range(flush_start, flush_end); in bootcount_store()
/openbmc/u-boot/common/
H A Dbootm.c453 ulong flush_start = ALIGN_DOWN(load, ARCH_DMA_MINALIGN); in bootm_load_os() local
470 if (flush_start < load) in bootm_load_os()
471 flush_len += load - flush_start; in bootm_load_os()
473 flush_cache(flush_start, ALIGN(flush_len, ARCH_DMA_MINALIGN)); in bootm_load_os()
/openbmc/u-boot/drivers/net/
H A De1000.c5136 unsigned long flush_start, flush_end; in fill_rx() local
5152 flush_start = ((unsigned long)rd) & ~(ARCH_DMA_MINALIGN - 1); in fill_rx()
5153 flush_end = flush_start + roundup(sizeof(*rd), ARCH_DMA_MINALIGN); in fill_rx()
5154 flush_dcache_range(flush_start, flush_end); in fill_rx()
5375 unsigned long flush_start, flush_end; in _e1000_transmit() local
5389 flush_start = ((unsigned long)txp) & ~(ARCH_DMA_MINALIGN - 1); in _e1000_transmit()
5390 flush_end = flush_start + roundup(sizeof(*txp), ARCH_DMA_MINALIGN); in _e1000_transmit()
5391 flush_dcache_range(flush_start, flush_end); in _e1000_transmit()
5397 invalidate_dcache_range(flush_start, flush_end); in _e1000_transmit()