Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.38 60 lines 1.5 kB view raw
1#ifndef __I8254_H 2#define __I8254_H 3 4#include "iodev.h" 5 6struct kvm_kpit_channel_state { 7 u32 count; /* can be 65536 */ 8 u16 latched_count; 9 u8 count_latched; 10 u8 status_latched; 11 u8 status; 12 u8 read_state; 13 u8 write_state; 14 u8 write_latch; 15 u8 rw_mode; 16 u8 mode; 17 u8 bcd; /* not supported */ 18 u8 gate; /* timer start */ 19 ktime_t count_load_time; 20}; 21 22struct kvm_kpit_state { 23 struct kvm_kpit_channel_state channels[3]; 24 u32 flags; 25 struct kvm_timer pit_timer; 26 bool is_periodic; 27 u32 speaker_data_on; 28 struct mutex lock; 29 struct kvm_pit *pit; 30 spinlock_t inject_lock; 31 unsigned long irq_ack; 32 struct kvm_irq_ack_notifier irq_ack_notifier; 33}; 34 35struct kvm_pit { 36 unsigned long base_addresss; 37 struct kvm_io_device dev; 38 struct kvm_io_device speaker_dev; 39 struct kvm *kvm; 40 struct kvm_kpit_state pit_state; 41 int irq_source_id; 42 struct kvm_irq_mask_notifier mask_notifier; 43 struct workqueue_struct *wq; 44 struct work_struct expired; 45}; 46 47#define KVM_PIT_BASE_ADDRESS 0x40 48#define KVM_SPEAKER_BASE_ADDRESS 0x61 49#define KVM_PIT_MEM_LENGTH 4 50#define KVM_PIT_FREQ 1193181 51#define KVM_MAX_PIT_INTR_INTERVAL HZ / 100 52#define KVM_PIT_CHANNEL_MASK 0x3 53 54void kvm_inject_pit_timer_irqs(struct kvm_vcpu *vcpu); 55void kvm_pit_load_count(struct kvm *kvm, int channel, u32 val, int hpet_legacy_start); 56struct kvm_pit *kvm_create_pit(struct kvm *kvm, u32 flags); 57void kvm_free_pit(struct kvm *kvm); 58void kvm_pit_reset(struct kvm_pit *pit); 59 60#endif