GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / x86 / kvm / i8254.h
blob46d08ca0b48f2a2c3bd04896c1feeb87c3cdef57
1 #ifndef __I8254_H
2 #define __I8254_H
4 #include "iodev.h"
6 struct 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;
22 struct 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;
35 struct 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;
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
54 void kvm_inject_pit_timer_irqs(struct kvm_vcpu *vcpu);
55 void kvm_pit_load_count(struct kvm *kvm, int channel, u32 val, int hpet_legacy_start);
56 struct kvm_pit *kvm_create_pit(struct kvm *kvm, u32 flags);
57 void kvm_free_pit(struct kvm *kvm);
58 void kvm_pit_reset(struct kvm_pit *pit);
60 #endif