b6ddf05ff6
We can't run PIT IRQ injection work in the interrupt context of the host timer. This would allow the user to influence the handler complexity by asking for a broadcast to a large number of VCPUs. Therefore, this work was pushed into workqueue context in 9d244caf2e. However, this prevents prioritizing the PIT injection over other task as workqueues share kernel threads. This replaces the workqueue with a kthread worker and gives that thread a name in the format "kvm-pit/<owner-process-pid>". That allows to identify and adjust the kthread priority according to the VM process parameters. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
62 lines
1.4 KiB
C
62 lines
1.4 KiB
C
#ifndef __I8254_H
|
|
#define __I8254_H
|
|
|
|
#include <linux/kthread.h>
|
|
|
|
#include "iodev.h"
|
|
|
|
struct kvm_kpit_channel_state {
|
|
u32 count; /* can be 65536 */
|
|
u16 latched_count;
|
|
u8 count_latched;
|
|
u8 status_latched;
|
|
u8 status;
|
|
u8 read_state;
|
|
u8 write_state;
|
|
u8 write_latch;
|
|
u8 rw_mode;
|
|
u8 mode;
|
|
u8 bcd; /* not supported */
|
|
u8 gate; /* timer start */
|
|
ktime_t count_load_time;
|
|
};
|
|
|
|
struct kvm_kpit_state {
|
|
struct kvm_kpit_channel_state channels[3];
|
|
u32 flags;
|
|
struct kvm_timer pit_timer;
|
|
bool is_periodic;
|
|
u32 speaker_data_on;
|
|
struct mutex lock;
|
|
struct kvm_pit *pit;
|
|
spinlock_t inject_lock;
|
|
unsigned long irq_ack;
|
|
struct kvm_irq_ack_notifier irq_ack_notifier;
|
|
};
|
|
|
|
struct kvm_pit {
|
|
struct kvm_io_device dev;
|
|
struct kvm_io_device speaker_dev;
|
|
struct kvm *kvm;
|
|
struct kvm_kpit_state pit_state;
|
|
int irq_source_id;
|
|
struct kvm_irq_mask_notifier mask_notifier;
|
|
struct kthread_worker worker;
|
|
struct task_struct *worker_task;
|
|
struct kthread_work expired;
|
|
};
|
|
|
|
#define KVM_PIT_BASE_ADDRESS 0x40
|
|
#define KVM_SPEAKER_BASE_ADDRESS 0x61
|
|
#define KVM_PIT_MEM_LENGTH 4
|
|
#define KVM_PIT_FREQ 1193181
|
|
#define KVM_MAX_PIT_INTR_INTERVAL HZ / 100
|
|
#define KVM_PIT_CHANNEL_MASK 0x3
|
|
|
|
void kvm_pit_load_count(struct kvm *kvm, int channel, u32 val, int hpet_legacy_start);
|
|
struct kvm_pit *kvm_create_pit(struct kvm *kvm, u32 flags);
|
|
void kvm_free_pit(struct kvm *kvm);
|
|
void kvm_pit_reset(struct kvm_pit *pit);
|
|
|
|
#endif
|