XHCI baby steps!
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 3m31s
Build documentation / build-and-deploy (push) Successful in 2m55s

This commit is contained in:
2026-03-22 17:59:54 +01:00
parent 72715d19e0
commit a4c5df8db4
7 changed files with 228 additions and 4 deletions

11
kernel/device/pci_xhci.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef _KERNEL_DEVICE_PCI_XHCI_H
#define _KERNEL_DEVICE_PCI_XHCI_H
#include <device/pci_info.h>
#include <libk/std.h>
#include <proc/proc.h>
#include <proc/reschedule.h>
bool pci_xhci_init (struct proc* proc, struct reschedule_ctx* rctx, struct pci_info pci_info);
#endif // _KERNEL_DEVICE_PCI_XHCI_H