// MIT License, Copyright (c) 2020 Marvin Borner #include #include #include #include int ide_stat() { inb(IDE_IO + IDE_CMD); inb(IDE_IO + IDE_CMD); inb(IDE_IO + IDE_CMD); inb(IDE_IO + IDE_CMD); return inb(IDE_IO + IDE_CMD); } void ide_wait() { u8 stat; do stat = ide_stat(); while ((stat & IDE_BUSY) != 0); } // TODO: Fix strange ide_read bugs void *ide_read(void *b, u32 block) { int sector_count = BLOCK_SIZE / SECTOR_SIZE; // 2 int sector = block * sector_count; outb(IDE_IO + IDE_SECTOR_COUNT, sector_count); // Number of sectors outb(IDE_IO + IDE_LOW, LBA_LOW(sector)); outb(IDE_IO + IDE_MID, LBA_MID(sector)); outb(IDE_IO + IDE_HIGH, LBA_HIGH(sector)); // Slave/Master << 4 and last 4 bits outb(IDE_IO + IDE_SELECT, 0xE0 | (1 << 4) | LBA_LAST(sector)); outb(IDE_IO + IDE_CMD, IDE_CMD_READ); ide_wait(); insl(IDE_IO, b, BLOCK_SIZE / 4); return b; }