Searched full:delay (Results 1 – 25 of 29) sorted by relevance
12
/kvm-unit-tests/lib/arm/ |
H A D | delay.c | 2 * Delay loops 11 #include <asm/delay.h> 13 void delay(u64 cycles) in delay() function 23 delay((u64)usec * get_cntfrq() / 1000000); in udelay()
|
/kvm-unit-tests/lib/riscv/ |
H A D | delay.c | 7 #include <asm/delay.h> 10 void delay(uint64_t cycles) in delay() function 20 delay(usec_to_cycles((uint64_t)usecs)); in udelay()
|
H A D | timer.c | 9 #include <asm/delay.h>
|
/kvm-unit-tests/lib/x86/ |
H A D | delay.h | 8 void delay(u64 count); 12 delay(IPI_DELAY); in io_delay()
|
H A D | delay.c | 1 #include "delay.h" 4 void delay(u64 count) in delay() function
|
/kvm-unit-tests/powerpc/ |
H A D | rtas.c | 37 #define DELAY 1 macro 71 } while (t1 + DELAY > t2 && count < MAX_LOOP); in check_get_time_of_day() 72 report(t1 + DELAY <= t2, "running"); in check_get_time_of_day() 109 } while (t1 + DELAY > t2 && count < MAX_LOOP); in check_set_time_of_day() 110 report(t1 + DELAY <= t2, "running"); in check_set_time_of_day()
|
/kvm-unit-tests/lib/arm64/asm/ |
H A D | delay.h | 1 #include "../../arm/asm/delay.h"
|
/kvm-unit-tests/lib/riscv/asm/ |
H A D | delay.h | 8 extern void delay(uint64_t cycles);
|
/kvm-unit-tests/lib/arm/asm/ |
H A D | delay.h | 10 extern void delay(u64 cycles);
|
H A D | gic-v3.h | 73 #include <asm/delay.h>
|
/kvm-unit-tests/lib/powerpc/ |
H A D | processor.c | 86 void delay(uint64_t cycles) in delay() function 96 delay((us * tb_hz) / 1000000); in udelay() 109 delay(cycles); in sleep_tb()
|
/kvm-unit-tests/lib/powerpc/asm/ |
H A D | time.h | 15 extern void delay(uint64_t cycles);
|
/kvm-unit-tests/x86/ |
H A D | ioapic.c | 7 #include "delay.h" 176 delay(IPI_DELAY); in toggle_irq_line_0x0e() 202 delay(IPI_DELAY); in set_irq_line_0x0e()
|
H A D | debug.c | 149 * delay before the first #DB is generated. in singlestep_basic() 225 * should arrive after the standard one instruction delay. in singlestep_with_sti_blocking() 400 * should arrive after the standard one instruction delay. in singlestep_with_sti_hlt()
|
H A D | Makefile.common | 24 cflatobjs += lib/x86/delay.o
|
H A D | svm_tests.c | 11 #include "delay.h" 776 report(duration == actual_duration, "tsc delay (expected: %lu, actual: %lu)", in svm_tsc_scale_run_testcase() 1187 report(rdtsc() - start > 10000, "IRQ arrived after expected delay"); in interrupt_test() 1199 report(rdtsc() - start > 10000, "IRQ arrived after expected delay"); in interrupt_test() 1331 delay(NMI_DELAY); in nmi_message_thread() 1338 delay(NMI_DELAY); in nmi_message_thread() 1356 report(rdtsc() - start > NMI_DELAY, "direct NMI after expected delay"); in nmi_hlt_test() 1369 report(rdtsc() - start > NMI_DELAY, "intercepted NMI after expected delay"); in nmi_hlt_test() 1839 delay(100000000ULL); in init_startup_prepare() 1848 delay(100000000ULL); in init_startup_prepare()
|
H A D | taskswitch2.c | 9 #include "delay.h"
|
H A D | eventinj.c | 10 #include "delay.h"
|
/kvm-unit-tests/arm/ |
H A D | Makefile.common | 61 cflatobjs += lib/arm/delay.o
|
H A D | psci.c | 13 #include <asm/delay.h>
|
H A D | timer.c | 12 #include <asm/delay.h>
|
H A D | debug.c | 6 #include <asm/delay.h>
|
/kvm-unit-tests/riscv/efi/ |
H A D | crt0-efi-riscv64.S | 97 .8byte 0 // Delay Import Descriptor
|
/kvm-unit-tests/riscv/ |
H A D | Makefile | 39 cflatobjs += lib/riscv/delay.o
|
H A D | sbi.c | 21 #include <asm/delay.h> 308 report(duration >= d && duration <= (d + margin), "timer delay honored%s", mask_test_str); in timer_check_set_timer()
|
12