Home
last modified time | relevance | path

Searched refs:dcache_line_size (Results 1 – 18 of 18) sorted by relevance

/Linux-v5.4/arch/nios2/mm/
Dcacheflush.c22 start &= ~(cpuinfo.dcache_line_size - 1); in __flush_dcache()
23 end += (cpuinfo.dcache_line_size - 1); in __flush_dcache()
24 end &= ~(cpuinfo.dcache_line_size - 1); in __flush_dcache()
29 for (addr = start; addr < end; addr += cpuinfo.dcache_line_size) { in __flush_dcache()
41 start &= ~(cpuinfo.dcache_line_size - 1); in __invalidate_dcache()
42 end += (cpuinfo.dcache_line_size - 1); in __invalidate_dcache()
43 end &= ~(cpuinfo.dcache_line_size - 1); in __invalidate_dcache()
45 for (addr = start; addr < end; addr += cpuinfo.dcache_line_size) { in __invalidate_dcache()
/Linux-v5.4/arch/nios2/kernel/
Dcpuinfo.c88 cpuinfo.dcache_line_size = fcpu(cpu, "dcache-line-size"); in setup_cpuinfo()
89 if (CONFIG_NIOS2_DCACHE_LINE_SIZE != cpuinfo.dcache_line_size) in setup_cpuinfo()
93 CONFIG_NIOS2_DCACHE_LINE_SIZE, cpuinfo.dcache_line_size); in setup_cpuinfo()
160 cpuinfo.dcache_line_size); in show_cpuinfo()
/Linux-v5.4/arch/arm64/mm/
Dcache.S46 dcache_line_size x2, x3
151 dcache_line_size x2, x3
/Linux-v5.4/arch/sparc/include/asm/
Dcpudata_64.h23 unsigned int dcache_line_size; member
/Linux-v5.4/arch/arm/mm/
Dcache-v7.S282 dcache_line_size r2, r3
339 dcache_line_size r2, r3
367 dcache_line_size r2, r3
397 dcache_line_size r2, r3
419 dcache_line_size r2, r3
Dcache-v7m.S303 dcache_line_size r2, r3
342 dcache_line_size r2, r3
366 dcache_line_size r2, r3
Dproc-v7m.S75 dcache_line_size r2, r3
Dproc-macros.S75 .macro dcache_line_size, reg, tmp macro
Dproc-v7.S85 1: dcache_line_size r2, r3
/Linux-v5.4/arch/nios2/include/asm/
Dcpuinfo.h25 u32 dcache_line_size; member
/Linux-v5.4/arch/powerpc/include/asm/
Dvdso_datapage.h70 __u32 dcache_line_size; /* L1 d-cache line size 0x64 */ member
/Linux-v5.4/arch/sparc/kernel/
Dptrace_64.c128 unsigned long dcache_line_size; in flush_ptrace_access() local
130 dcache_line_size = local_cpu_data().dcache_line_size; in flush_ptrace_access()
133 for (; start < end; start += dcache_line_size) in flush_ptrace_access()
136 start &= ~(dcache_line_size - 1); in flush_ptrace_access()
137 for (; start < end; start += dcache_line_size) in flush_ptrace_access()
Dtraps_64.c1029 unsigned int dcache_size, dcache_line_size; in cheetah_flush_dcache() local
1033 dcache_line_size = local_cpu_data().dcache_line_size; in cheetah_flush_dcache()
1035 for (addr = 0; addr < dcache_size; addr += dcache_line_size) { in cheetah_flush_dcache()
1050 unsigned int dcache_size, dcache_line_size; in cheetah_plus_zap_dcache_parity() local
1054 dcache_line_size = local_cpu_data().dcache_line_size; in cheetah_plus_zap_dcache_parity()
1056 for (addr = 0; addr < dcache_size; addr += dcache_line_size) { in cheetah_plus_zap_dcache_parity()
1066 for (line = addr; line < addr + dcache_line_size; line += 8) in cheetah_plus_zap_dcache_parity()
Dprom_64.c537 cpu_data(cpuid).dcache_line_size = in fill_in_one_cpu()
566 cpu_data(cpuid).dcache_line_size = in fill_in_one_cpu()
Dsysfs.c190 SHOW_CPUDATA_UINT_NAME(l1_dcache_line_size, dcache_line_size);
Dmdesc.c834 c->dcache_line_size = *line_size; in fill_in_one_cache()
/Linux-v5.4/arch/arm64/include/asm/
Dassembler.h306 .macro dcache_line_size, reg, tmp
385 dcache_line_size \tmp1, \tmp2
/Linux-v5.4/arch/powerpc/kernel/
Dvdso.c718 vdso_data->dcache_line_size = ppc64_caches.l1d.line_size; in vdso_init()