Home
last modified time | relevance | path

Searched refs:UDELAY_MULT (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/kernel/arch/arm/include/asm/
H A Ddelay.h41 #define UDELAY_MULT UL(2147 * HZ + 483648 * HZ / 1000000) macro
85 __const_udelay((n) * UDELAY_MULT)) : \
/OK3568_Linux_fs/kernel/arch/riscv/lib/
H A Ddelay.c42 #define UDELAY_MULT (2147UL * HZ + 483648UL * HZ / 1000000UL) macro
83 u64 ucycles = (u64)usecs * lpj_fine * UDELAY_MULT; in udelay()
/OK3568_Linux_fs/kernel/arch/arm/lib/
H A Ddelay-loop.S14 .LC1: .word UDELAY_MULT
25 mul r0, r2, r0 @ r0 = delay_us * UDELAY_MULT
H A Ddelay.c62 __timer_const_udelay(usecs * UDELAY_MULT); in __timer_udelay()