-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move x86 specific PC declarations to a separate file
x86 definitions (especially CPUState uses) prevent many files from being compiled within libhw. Move x86 specific declarations (APIC stuff) to a separate file. Signed-off-by: Blue Swirl <[email protected]>
- Loading branch information
Showing
6 changed files
with
24 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#ifndef APIC_H | ||
#define APIC_H | ||
|
||
typedef struct IOAPICState IOAPICState; | ||
void apic_deliver_irq(uint8_t dest, uint8_t dest_mode, | ||
uint8_t delivery_mode, | ||
uint8_t vector_num, uint8_t polarity, | ||
uint8_t trigger_mode); | ||
int apic_init(CPUState *env); | ||
int apic_accept_pic_intr(CPUState *env); | ||
void apic_deliver_pic_intr(CPUState *env, int level); | ||
int apic_get_interrupt(CPUState *env); | ||
qemu_irq *ioapic_init(void); | ||
void ioapic_set_irq(void *opaque, int vector, int level); | ||
void apic_reset_irq_delivered(void); | ||
int apic_get_irq_delivered(void); | ||
|
||
int cpu_is_bsp(CPUState *env); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ | |
|
||
#include "hw.h" | ||
#include "pc.h" | ||
#include "apic.h" | ||
#include "qemu-timer.h" | ||
#include "host-utils.h" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters