Home
last modified time | relevance | path

Searched refs:get_ccount (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/u-boot/arch/xtensa/lib/
H A Dtime.c14 static ulong get_ccount(void) in get_ccount() function
22 #define get_ccount() fake_ccount macro
28 unsigned expiry = get_ccount() + cycles; in delay_cycles()
29 while ((signed)(expiry - get_ccount()) > 0) in delay_cycles()
/OK3568_Linux_fs/kernel/arch/xtensa/kernel/
H A Dtime.c39 return (u64)get_ccount(); in ccount_read()
44 return get_ccount(); in ccount_sched_clock_read()
68 next = get_ccount() + delta; in ccount_timer_set_next_event()
70 if (next - get_ccount() > delta) in ccount_timer_set_next_event()
H A Dsmp.c208 ccount = get_ccount(); in boot_secondary()
/OK3568_Linux_fs/kernel/arch/xtensa/include/asm/
H A Ddelay.h39 unsigned long start = get_ccount(); in __udelay()
43 while (((unsigned long)get_ccount()) - start < cycles) in __udelay()
H A Dtimex.h38 static inline unsigned long get_ccount (void) in get_ccount() function