14 lines
340 B
C
14 lines
340 B
C
#ifndef _KERNEL_PLATFORM_ARM64_INTERRUPTS_H
|
|
#define _KERNEL_PLATFORM_ARM64_INTERRUPTS_H
|
|
|
|
#include <drivers/irq/irq_api.h>
|
|
#include <libkern/mask.h>
|
|
#include <libkern/types.h>
|
|
|
|
void interrupts_setup();
|
|
void interrupts_setup_secondary_cpu();
|
|
|
|
void gic_setup();
|
|
void gic_setup_secondary_cpu();
|
|
|
|
#endif /* _KERNEL_PLATFORM_ARM64_INTERRUPTS_H */ |