stos/amd64: irqchip: Detect and disable i8259s

Signed-off-by: Chloe M. <chloe@mensia.org>
This commit is contained in:
Chloe M.
2026-06-27 04:45:57 +00:00
parent 1bebf4d37b
commit 55e12ce62d
3 changed files with 73 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
/*
* Copyright (c) 2026, Chloe M.
* Provided under the BSD-3 clause.
*
* Description: IRQ chip management
* Author: Chloe M.
*/
#ifndef _MACHINE_IRQCHIP_H_
#define _MACHINE_IRQCHIP_H_ 1
#include <stdef.h>
/*
* Enumerate and save all platform IRQ chips
*/
VOID MdIrqChipInit(VOID);
#endif /* !_MACHINE_IRQCHIP_H_ */