From 0ba991750314310a5e53b0d8135aef5b1352b261 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 20 Nov 2019 22:17:48 +0100 Subject: Began two-stage hdd bootloader and os installer --- src/kernel/fs/ata_pio.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/kernel/fs/ata_pio.h (limited to 'src/kernel/fs/ata_pio.h') diff --git a/src/kernel/fs/ata_pio.h b/src/kernel/fs/ata_pio.h new file mode 100644 index 0000000..3f1439d --- /dev/null +++ b/src/kernel/fs/ata_pio.h @@ -0,0 +1,31 @@ +#ifndef MELVIX_ATA_PIO_H +#define MELVIX_ATA_PIO_H + +#include + +#define BYTES_PER_SECTOR 512 + +struct ATA_INTERFACE { + uint8_t master; + uint16_t dataPort; + uint16_t errorPort; + uint16_t sectorCountPort; + uint16_t lbaLowPort; + uint16_t lbaMidPort; + uint16_t lbaHiPort; + uint16_t devicePort; + uint16_t commandPort; + uint16_t controlPort; +}; + +struct ATA_INTERFACE *new_ATA(uint8_t master, uint16_t portBase); + +uint8_t ATA_identify(struct ATA_INTERFACE *iface, uint16_t *retdata); + +uint8_t *ATA_read28(struct ATA_INTERFACE *iface, uint32_t sector); + +uint8_t ATA_write28(struct ATA_INTERFACE *iface, uint32_t sector, uint8_t *contents); + +uint8_t ATA_clear28(struct ATA_INTERFACE *iface, uint32_t sector); + +#endif -- cgit v1.2.3