summaryrefslogtreecommitdiff
path: root/kernel/drivers/ahci.h
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-11-12 20:55:33 +0100
committerAnton Kling <anton@kling.gg>2023-11-12 20:58:08 +0100
commit23b8815e8ca1bc8fbc745fc3073be21f5a813c9e (patch)
tree0499342477c7df1452907851ce29ec1ff6135f6c /kernel/drivers/ahci.h
parent4e34a5f97786b3bab82f08297ead63e1618744ec (diff)
AHCI: Add very basic AHCI and some additional helper functions to mmu.c
Currently certain parts of the code are taken from osdev wiki as there seems to be very little documentation that I can find on how H2D FIS is structured. Those parts, especially some of the uglier parts of the example code will be rewritten/changed.
Diffstat (limited to 'kernel/drivers/ahci.h')
-rw-r--r--kernel/drivers/ahci.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/drivers/ahci.h b/kernel/drivers/ahci.h
new file mode 100644
index 0000000..d075f07
--- /dev/null
+++ b/kernel/drivers/ahci.h
@@ -0,0 +1 @@
+void ahci_init(void);