blob: fe3955ca2792d7fe32451d9bbd94c3e22c6711de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// MIT License, Copyright (c) 2020 Marvin Borner
#include <cpu.h>
#include <def.h>
#include <ide.h>
int ide_wait(int check)
{
char r;
// Wait while drive is busy. Once just ready is set, exit the loop
while (((r = (char)inb(IDE_IO | IDE_CMD)) & (IDE_BUSY | IDE_READY)) != IDE_READY)
;
// Check for errors
if (check && (r & (IDE_DRIVE_FAULT | IDE_ERROR)) != 0)
return 0xF;
return 0;
}
void *ide_read(void *b, u32 block)
{
int sector_per_block = BLOCK_SIZE / SECTOR_SIZE; // 2
int sector = block * sector_per_block;
ide_wait(0);
outb(IDE_IO | IDE_SECTOR_COUNT, sector_per_block); // 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_HEAD, 0xE0 | (1 << 4) | LBA_LAST(sector));
outb(IDE_IO | IDE_CMD, IDE_CMD_READ);
ide_wait(0);
// Read-only
insl(IDE_IO, b, BLOCK_SIZE / 4);
return b;
}
|