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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
|
#include <kernel/arch/i386/ata.h>
#include <kernel/arch/i386/port_io.h>
#include <kernel/panic.h>
#include <stdbool.h>
#include <kernel/arch/io.h>
static struct {
enum {
DEV_UNKNOWN,
DEV_PATA,
DEV_PATAPI,
} type;
uint32_t sectors;
} ata_drives[4];
enum {
DATA = 0,
FEAT = 1,
SCNT = 2,
LBAlo = 3,
LBAmid = 4,
LBAhi = 5,
DRV = 6,
CMD = 7,
STATUS = 7,
/* note: the OSDev wiki uses a different base port for the control port
* however i can just use this offset and stuff will just work tm */
CTRL = 0x206,
}; // offsets
// get I/O port base for drive
static uint16_t ata_iobase(int drive) {
bool secondary = drive&2;
return secondary ? 0x170 : 0x1F0;
}
static void ata_400ns(void) {
uint16_t base = ata_iobase(0); // doesn't matter
for (int i = 0; i < 4; i++)
port_in8(base + STATUS);
}
static void ata_driveselect(int drive, int block) {
uint8_t v = 0xE0;
if (drive&1) // slave?
v |= 0x10; // set drive number bit
// TODO account for block
port_out8(ata_iobase(drive) + DRV, v);
}
static void ata_softreset(int drive) {
uint16_t iobase = ata_iobase(drive);
port_out8(iobase + CTRL, 4);
port_out8(iobase + CTRL, 0);
ata_400ns();
uint16_t timeout = 10000;
while (--timeout) { // TODO separate polling function
uint8_t v = port_in8(iobase + STATUS);
if (v & 0x80) continue; // still BSY, continue
if (v & 0x40) break; // RDY, break
// TODO check for ERR
}
}
static void ata_detecttype(int drive) {
ata_softreset(drive);
ata_driveselect(drive, 0);
ata_400ns();
switch (port_in8(ata_iobase(drive) + LBAmid)) {
case 0:
ata_drives[drive].type = DEV_PATA;
break;
case 0x14:
ata_drives[drive].type = DEV_PATAPI;
break;
default:
ata_drives[drive].type = DEV_UNKNOWN;
break;
}
}
static bool ata_identify(int drive) {
uint16_t iobase = ata_iobase(drive);
uint16_t data[256];
uint8_t v;
ata_driveselect(drive, 0);
for (int i = 2; i < 6; i++)
port_out8(iobase + i, 0);
switch (ata_drives[drive].type) {
case DEV_PATA:
port_out8(iobase + CMD, 0xEC); // IDENTIFY
break;
case DEV_PATAPI:
port_out8(iobase + CMD, 0xA1); // IDENTIFY PACKET DEVICE
break;
default: panic_invalid_state();
}
v = port_in8(iobase + STATUS);
if (v == 0) return false; // nonexistent drive
while (port_in8(iobase + STATUS) & 0x80);
/* pool until bit 3 (DRQ) or 0 (ERR) is set */
while (!((v = port_in8(iobase + STATUS) & 0x9)));
if (v & 1) return false; /* ERR was set, bail */
for (int i = 0; i < 256; i++)
data[i] = port_in16(iobase);
ata_drives[drive].sectors = data[60] | (data[61] << 16);
return true;
}
void ata_init(void) {
for (int i = 0; i < 4; i++) {
ata_detecttype(i);
if (ata_drives[i].type == DEV_PATA)
ata_identify(i);
}
}
bool ata_available(int drive) {
return ata_drives[drive].type != DEV_UNKNOWN;
}
int ata_read(int drive, uint32_t lba, void *buf) {
assert(ata_drives[drive].type == DEV_PATA);
int iobase = ata_iobase(drive);
ata_driveselect(drive, lba);
port_out8(iobase + FEAT, 0); // supposedly pointless
port_out8(iobase + SCNT, 1); // sector count
port_out8(iobase + LBAlo, lba);
port_out8(iobase + LBAmid, lba >> 8);
port_out8(iobase + LBAhi, lba >> 16);
port_out8(iobase + CMD, 0x20); // READ SECTORS
for (;;) { // TODO separate polling function
uint8_t v = port_in8(iobase + STATUS);
if (v & 0x80) continue; // still BSY, continue
if (v & 0x40) break; // RDY, break
// TODO check for ERR
}
uint16_t *b = buf;
for (int i = 0; i < 256; i++)
b[i] = port_in16(iobase);
return 512;
}
|