diff options
author | Anton Kling <anton@kling.gg> | 2023-11-12 20:55:33 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-12 20:58:08 +0100 |
commit | 23b8815e8ca1bc8fbc745fc3073be21f5a813c9e (patch) | |
tree | 0499342477c7df1452907851ce29ec1ff6135f6c /kernel/drivers/ahci.h | |
parent | 4e34a5f97786b3bab82f08297ead63e1618744ec (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.h | 1 |
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); |