Lines Matching full:apic
5 * Verify KVM correctly emulates the APIC bus frequency when the VMM configures
6 * the frequency via KVM_CAP_X86_APIC_BUS_CYCLES_NS. Start the APIC timer by
10 * of the expected value based on the time elapsed, the APIC bus frequency, and
14 #include "apic.h"
18 * Possible TDCR values with matching divide count. Used to modify APIC
146 "Setting of APIC bus frequency after vCPU is created should fail."); in run_apic_bus_clock_test()
158 printf("usage: %s [-h] [-d delay] [-f APIC bus freq]\n", name); in help()
160 printf("-d: Delay (in msec) guest uses to measure APIC bus frequency.\n"); in help()
161 printf("-f: The APIC bus frequency (in MHz) to be configured for the guest.\n"); in help()
168 * Arbitrarilty default to 25MHz for the APIC bus frequency, which is in main()
180 apic_hz = atoi_positive("APIC bus frequency", optarg) * 1000 * 1000; in main()