summaryrefslogtreecommitdiff
path: root/sys/include/arch/amd64/lapic.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/include/arch/amd64/lapic.h')
-rw-r--r--sys/include/arch/amd64/lapic.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/include/arch/amd64/lapic.h b/sys/include/arch/amd64/lapic.h
index 6c72c02..b8fae1b 100644
--- a/sys/include/arch/amd64/lapic.h
+++ b/sys/include/arch/amd64/lapic.h
@@ -35,9 +35,23 @@
#define LAPIC_TMR_ONESHOT 0x00
#define LAPIC_TMR_PERIODIC 0x01
+/* IPI Destination Shorthands */
+enum {
+ IPI_SHORTHAND_SELF,
+ IPI_SHORTHAND_ALL,
+ IPI_SHORTHAND_OTHERS
+};
+
+/* IPI Destination Modes */
+enum {
+ IPI_DEST_PHYSICAL,
+ IPI_DEST_LOGICAL
+};
+
void lapic_timer_init(size_t *freq_out);
void lapic_timer_oneshot(bool mask, uint32_t count);
void lapic_timer_oneshot_us(uint32_t us);
+void lapic_send_ipi(uint8_t id, uint8_t shorthand, uint8_t vector);
void lapic_init(void);
#endif /* !_AMD64_LAPIC_H_ */