KVM
i8254.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __I8254_H
3 #define __I8254_H
4 
5 #include <linux/kthread.h>
6 
7 #include <kvm/iodev.h>
8 
10  u32 count; /* can be 65536 */
14  u8 status;
18  u8 rw_mode;
19  u8 mode;
20  u8 bcd; /* not supported */
21  u8 gate; /* timer start */
22  ktime_t count_load_time;
23 };
24 
26  /* All members before "struct mutex lock" are protected by the lock. */
28  u32 flags;
30  s64 period; /* unit: ns */
31  struct hrtimer timer;
32 
33  struct mutex lock;
34  atomic_t reinject;
35  atomic_t pending; /* accumulated triggered timers */
36  atomic_t irq_ack;
37  struct kvm_irq_ack_notifier irq_ack_notifier;
38 };
39 
40 struct kvm_pit {
41  struct kvm_io_device dev;
43  struct kvm *kvm;
46  struct kvm_irq_mask_notifier mask_notifier;
47  struct kthread_worker *worker;
48  struct kthread_work expired;
49 };
50 
51 #define KVM_PIT_BASE_ADDRESS 0x40
52 #define KVM_SPEAKER_BASE_ADDRESS 0x61
53 #define KVM_PIT_MEM_LENGTH 4
54 #define KVM_PIT_FREQ 1193181
55 #define KVM_MAX_PIT_INTR_INTERVAL HZ / 100
56 #define KVM_PIT_CHANNEL_MASK 0x3
57 
58 struct kvm_pit *kvm_create_pit(struct kvm *kvm, u32 flags);
59 void kvm_free_pit(struct kvm *kvm);
60 
61 void kvm_pit_load_count(struct kvm_pit *pit, int channel, u32 val,
62  int hpet_legacy_start);
63 void kvm_pit_set_reinject(struct kvm_pit *pit, bool reinject);
64 
65 #endif
struct kvm_pit * kvm_create_pit(struct kvm *kvm, u32 flags)
Definition: i8254.c:662
void kvm_pit_load_count(struct kvm_pit *pit, int channel, u32 val, int hpet_legacy_start)
Definition: i8254.c:403
void kvm_pit_set_reinject(struct kvm_pit *pit, bool reinject)
Definition: i8254.c:291
void kvm_free_pit(struct kvm *kvm)
Definition: i8254.c:736
ktime_t count_load_time
Definition: i8254.h:22
u32 flags
Definition: i8254.h:28
struct mutex lock
Definition: i8254.h:33
atomic_t irq_ack
Definition: i8254.h:36
struct hrtimer timer
Definition: i8254.h:31
atomic_t reinject
Definition: i8254.h:34
s64 period
Definition: i8254.h:30
bool is_periodic
Definition: i8254.h:29
struct kvm_kpit_channel_state channels[3]
Definition: i8254.h:27
atomic_t pending
Definition: i8254.h:35
struct kvm_irq_ack_notifier irq_ack_notifier
Definition: i8254.h:37
Definition: i8254.h:40
struct kvm * kvm
Definition: i8254.h:43
struct kthread_work expired
Definition: i8254.h:48
int irq_source_id
Definition: i8254.h:45
struct kvm_irq_mask_notifier mask_notifier
Definition: i8254.h:46
struct kthread_worker * worker
Definition: i8254.h:47
struct kvm_io_device dev
Definition: i8254.h:41
struct kvm_kpit_state pit_state
Definition: i8254.h:44
struct kvm_io_device speaker_dev
Definition: i8254.h:42
uint32_t flags
Definition: xen.c:1