Home
last modified time | relevance | path

Searched refs:CACHELINE_SIZE (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/u-boot/drivers/usb/dwc3/
H A Dio.h23 #define CACHELINE_SIZE CONFIG_SYS_CACHELINE_SIZE macro
53 invalidate_dcache_range(addr, addr + ROUND(length, CACHELINE_SIZE)); in dwc3_invalidate_cache()
58 flush_dcache_range(addr, addr + ROUND(length, CACHELINE_SIZE)); in dwc3_flush_cache()
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/security/
H A Dentry_flush.c59 p = (char *)memalign(zero_size, CACHELINE_SIZE); in entry_flush_test()
72 l1d_misses_expected = iterations * (zero_size / CACHELINE_SIZE - 2); in entry_flush_test()
H A Drfi_flush.c60 p = (char *)memalign(zero_size, CACHELINE_SIZE); in rfi_flush_test()
73 l1d_misses_expected = iterations * (zero_size / CACHELINE_SIZE - 2); in rfi_flush_test()
H A Dflush_utils.h10 #define CACHELINE_SIZE 128 macro
H A Dflush_utils.c32 for (unsigned long j = 0; j < zero_size; j += CACHELINE_SIZE) in syscall_loop()
/OK3568_Linux_fs/u-boot/drivers/usb/host/
H A Dxhci-mem.c27 #define CACHELINE_SIZE CONFIG_SYS_CACHELINE_SIZE macro
39 flush_dcache_range(addr & ~(CACHELINE_SIZE - 1), in xhci_flush_cache()
40 ALIGN(addr + len, CACHELINE_SIZE)); in xhci_flush_cache()
54 invalidate_dcache_range(addr & ~(CACHELINE_SIZE - 1), in xhci_inval_cache()
55 ALIGN(addr + len, CACHELINE_SIZE)); in xhci_inval_cache()
193 size_t cacheline_size = max(XHCI_ALIGNMENT, CACHELINE_SIZE); in xhci_malloc()