Blue Swirl | aa28b9b | 2010-03-21 19:46:26 +0000 | [diff] [blame] | 1 | #ifndef APIC_H |
| 2 | #define APIC_H |
| 3 | |
Blue Swirl | 92a16d7 | 2010-06-19 07:47:42 +0000 | [diff] [blame] | 4 | #include "qemu-common.h" |
| 5 | |
Blue Swirl | cf6d64b | 2010-06-19 10:42:08 +0300 | [diff] [blame] | 6 | /* apic.c */ |
Blue Swirl | aa28b9b | 2010-03-21 19:46:26 +0000 | [diff] [blame] | 7 | void apic_deliver_irq(uint8_t dest, uint8_t dest_mode, |
| 8 | uint8_t delivery_mode, |
| 9 | uint8_t vector_num, uint8_t polarity, |
| 10 | uint8_t trigger_mode); |
Blue Swirl | 92a16d7 | 2010-06-19 07:47:42 +0000 | [diff] [blame] | 11 | int apic_accept_pic_intr(DeviceState *s); |
| 12 | void apic_deliver_pic_intr(DeviceState *s, int level); |
| 13 | int apic_get_interrupt(DeviceState *s); |
Blue Swirl | aa28b9b | 2010-03-21 19:46:26 +0000 | [diff] [blame] | 14 | void apic_reset_irq_delivered(void); |
| 15 | int apic_get_irq_delivered(void); |
Blue Swirl | 92a16d7 | 2010-06-19 07:47:42 +0000 | [diff] [blame] | 16 | void cpu_set_apic_base(DeviceState *s, uint64_t val); |
| 17 | uint64_t cpu_get_apic_base(DeviceState *s); |
| 18 | void cpu_set_apic_tpr(DeviceState *s, uint8_t val); |
| 19 | uint8_t cpu_get_apic_tpr(DeviceState *s); |
| 20 | void apic_init_reset(DeviceState *s); |
| 21 | void apic_sipi(DeviceState *s); |
Blue Swirl | aa28b9b | 2010-03-21 19:46:26 +0000 | [diff] [blame] | 22 | |
Blue Swirl | 0e26b7b | 2010-06-19 10:42:34 +0300 | [diff] [blame] | 23 | /* pc.c */ |
Blue Swirl | aa28b9b | 2010-03-21 19:46:26 +0000 | [diff] [blame] | 24 | int cpu_is_bsp(CPUState *env); |
Blue Swirl | 92a16d7 | 2010-06-19 07:47:42 +0000 | [diff] [blame] | 25 | DeviceState *cpu_get_current_apic(void); |
Blue Swirl | aa28b9b | 2010-03-21 19:46:26 +0000 | [diff] [blame] | 26 | |
| 27 | #endif |