blob: eda18e9d2336917f8d8fb9b38566f5e8ae1e5bda (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// MIT License, Copyright (c) 2020 Marvin Borner
#include <cpu.h>
#include <def.h>
#include <ide.h>
#include <print.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;
}
// TODO: Fix strange print workaround
void *ide_read(void *b, u32 block)
{
int sector_per_block = BLOCK_SIZE / SECTOR_SIZE; // 2
int sector = block * sector_per_block;
print("");
ide_wait(0);
print("");
outb(IDE_IO | IDE_SECTOR_COUNT, sector_per_block); // Number of sectors
print("");
outb(IDE_IO | IDE_LOW, LBA_LOW(sector));
print("");
outb(IDE_IO | IDE_MID, LBA_MID(sector));
print("");
outb(IDE_IO | IDE_HIGH, LBA_HIGH(sector));
print("");
// Slave/Master << 4 and last 4 bits
print("");
outb(IDE_IO | IDE_HEAD, 0xE0 | (1 << 4) | LBA_LAST(sector));
print("");
outb(IDE_IO | IDE_CMD, IDE_CMD_READ);
print("");
ide_wait(0);
print("");
// Read-only
print("");
insl(IDE_IO, b, BLOCK_SIZE / 4);
print("");
return b;
}
|