blob: ec698ef76ad61dd0d4ee3e3cebece287c3c280ee [file] [log] [blame]
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +01001// Low level AHCI disk access
2//
3// Copyright (C) 2010 Gerd Hoffmann <kraxel@redhat.com>
4//
5// This file may be distributed under the terms of the GNU LGPLv3 license.
6
7#include "types.h" // u8
8#include "ioport.h" // inb
9#include "util.h" // dprintf
10#include "biosvar.h" // GET_EBDA
Kevin O'Connor9cb49922011-06-20 22:22:42 -040011#include "pci.h" // foreachpci
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +010012#include "pci_ids.h" // PCI_CLASS_STORAGE_OTHER
13#include "pci_regs.h" // PCI_INTERRUPT_LINE
14#include "boot.h" // add_bcv_hd
15#include "disk.h" // struct ata_s
16#include "ata.h" // ATA_CB_STAT
17#include "ahci.h" // CDB_CMD_READ_10
18#include "blockcmd.h" // CDB_CMD_READ_10
19
20#define AHCI_MAX_RETRIES 5
21
22/****************************************************************
23 * these bits must run in both 16bit and 32bit modes
24 ****************************************************************/
25
26// prepare sata command fis
27static void sata_prep_simple(struct sata_cmd_fis *fis, u8 command)
28{
29 memset_fl(fis, 0, sizeof(*fis));
30 SET_FLATPTR(fis->command, command);
31}
32
33static void sata_prep_readwrite(struct sata_cmd_fis *fis,
34 struct disk_op_s *op, int iswrite)
35{
36 u64 lba = op->lba;
37 u8 command;
38
39 memset_fl(fis, 0, sizeof(*fis));
40
41 if (op->count >= (1<<8) || lba + op->count >= (1<<28)) {
42 SET_FLATPTR(fis->sector_count2, op->count >> 8);
43 SET_FLATPTR(fis->lba_low2, lba >> 24);
44 SET_FLATPTR(fis->lba_mid2, lba >> 32);
45 SET_FLATPTR(fis->lba_high2, lba >> 40);
46 lba &= 0xffffff;
47 command = (iswrite ? ATA_CMD_WRITE_DMA_EXT
48 : ATA_CMD_READ_DMA_EXT);
49 } else {
50 command = (iswrite ? ATA_CMD_WRITE_DMA
51 : ATA_CMD_READ_DMA);
52 }
Gerd Hoffmannc19fc712010-12-09 08:39:45 +010053 SET_FLATPTR(fis->feature, 1); /* dma */
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +010054 SET_FLATPTR(fis->command, command);
55 SET_FLATPTR(fis->sector_count, op->count);
56 SET_FLATPTR(fis->lba_low, lba);
57 SET_FLATPTR(fis->lba_mid, lba >> 8);
58 SET_FLATPTR(fis->lba_high, lba >> 16);
59 SET_FLATPTR(fis->device, ((lba >> 24) & 0xf) | ATA_CB_DH_LBA);
60}
61
62static void sata_prep_atapi(struct sata_cmd_fis *fis, u16 blocksize)
63{
64 memset_fl(fis, 0, sizeof(*fis));
65 SET_FLATPTR(fis->command, ATA_CMD_PACKET);
Gerd Hoffmannc19fc712010-12-09 08:39:45 +010066 SET_FLATPTR(fis->feature, 1); /* dma */
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +010067 SET_FLATPTR(fis->lba_mid, blocksize);
68 SET_FLATPTR(fis->lba_high, blocksize >> 8);
69}
70
71// ahci register access helpers
72static u32 ahci_ctrl_readl(struct ahci_ctrl_s *ctrl, u32 reg)
73{
74 u32 addr = GET_GLOBALFLAT(ctrl->iobase) + reg;
75 return pci_readl(addr);
76}
77
78static void ahci_ctrl_writel(struct ahci_ctrl_s *ctrl, u32 reg, u32 val)
79{
80 u32 addr = GET_GLOBALFLAT(ctrl->iobase) + reg;
81 pci_writel(addr, val);
82}
83
84static u32 ahci_port_to_ctrl(u32 pnr, u32 port_reg)
85{
86 u32 ctrl_reg = 0x100;
87 ctrl_reg += pnr * 0x80;
88 ctrl_reg += port_reg;
89 return ctrl_reg;
90}
91
92static u32 ahci_port_readl(struct ahci_ctrl_s *ctrl, u32 pnr, u32 reg)
93{
94 u32 ctrl_reg = ahci_port_to_ctrl(pnr, reg);
95 return ahci_ctrl_readl(ctrl, ctrl_reg);
96}
97
98static void ahci_port_writel(struct ahci_ctrl_s *ctrl, u32 pnr, u32 reg, u32 val)
99{
100 u32 ctrl_reg = ahci_port_to_ctrl(pnr, reg);
101 ahci_ctrl_writel(ctrl, ctrl_reg, val);
102}
103
104// submit ahci command + wait for result
105static int ahci_command(struct ahci_port_s *port, int iswrite, int isatapi,
106 void *buffer, u32 bsize)
107{
Gerd Hoffmann6f850492011-07-14 16:24:01 +0200108 u32 val, status, success, flags, intbits, error;
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100109 struct ahci_ctrl_s *ctrl = GET_GLOBAL(port->ctrl);
110 struct ahci_cmd_s *cmd = GET_GLOBAL(port->cmd);
111 struct ahci_fis_s *fis = GET_GLOBAL(port->fis);
112 struct ahci_list_s *list = GET_GLOBAL(port->list);
113 u32 pnr = GET_GLOBAL(port->pnr);
114
115 SET_FLATPTR(cmd->fis.reg, 0x27);
116 SET_FLATPTR(cmd->fis.pmp_type, (1 << 7)); /* cmd fis */
117 SET_FLATPTR(cmd->prdt[0].base, ((u32)buffer));
118 SET_FLATPTR(cmd->prdt[0].baseu, 0);
119 SET_FLATPTR(cmd->prdt[0].flags, bsize-1);
120
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100121 flags = ((1 << 16) | /* one prd entry */
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100122 (iswrite ? (1 << 6) : 0) |
123 (isatapi ? (1 << 5) : 0) |
Gerd Hoffmanna8c6a4e2011-07-14 16:23:59 +0200124 (5 << 0)); /* fis length (dwords) */
125 SET_FLATPTR(list[0].flags, flags);
126 SET_FLATPTR(list[0].bytes, 0);
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100127 SET_FLATPTR(list[0].base, ((u32)(cmd)));
128 SET_FLATPTR(list[0].baseu, 0);
129
130 dprintf(2, "AHCI/%d: send cmd ...\n", pnr);
Gerd Hoffmann07532972011-07-14 16:24:00 +0200131 intbits = ahci_port_readl(ctrl, pnr, PORT_IRQ_STAT);
132 if (intbits)
133 ahci_port_writel(ctrl, pnr, PORT_IRQ_STAT, intbits);
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100134 ahci_port_writel(ctrl, pnr, PORT_SCR_ACT, 1);
135 ahci_port_writel(ctrl, pnr, PORT_CMD_ISSUE, 1);
Gerd Hoffmann07532972011-07-14 16:24:00 +0200136
137 do {
138 for (;;) {
139 intbits = ahci_port_readl(ctrl, pnr, PORT_IRQ_STAT);
140 if (intbits) {
141 ahci_port_writel(ctrl, pnr, PORT_IRQ_STAT, intbits);
142 if (intbits & 0x02) {
143 status = GET_FLATPTR(fis->psfis[2]);
Gerd Hoffmann6f850492011-07-14 16:24:01 +0200144 error = GET_FLATPTR(fis->psfis[3]);
Gerd Hoffmann07532972011-07-14 16:24:00 +0200145 break;
146 }
147 if (intbits & 0x01) {
148 status = GET_FLATPTR(fis->rfis[2]);
Gerd Hoffmann6f850492011-07-14 16:24:01 +0200149 error = GET_FLATPTR(fis->rfis[3]);
Gerd Hoffmann07532972011-07-14 16:24:00 +0200150 break;
151 }
152 }
153 yield();
154 }
155 dprintf(2, "AHCI/%d: ... intbits 0x%x, status 0x%x ...\n",
156 pnr, intbits, status);
157 } while (status & ATA_CB_STAT_BSY);
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100158
159 success = (0x00 == (status & (ATA_CB_STAT_BSY | ATA_CB_STAT_DF |
160 ATA_CB_STAT_DRQ | ATA_CB_STAT_ERR)) &&
161 ATA_CB_STAT_RDY == (status & (ATA_CB_STAT_RDY)));
Gerd Hoffmann6f850492011-07-14 16:24:01 +0200162 if (success) {
163 dprintf(2, "AHCI/%d: ... finished, status 0x%x, OK\n", pnr,
164 status);
165 } else {
166 dprintf(2, "AHCI/%d: ... finished, status 0x%x, ERROR 0x%x\n", pnr,
167 status, error);
168
169 // non-queued error recovery (AHCI 1.3 section 6.2.2.1)
170 // Clears PxCMD.ST to 0 to reset the PxCI register
171 val = ahci_port_readl(ctrl, pnr, PORT_CMD);
172 ahci_port_writel(ctrl, pnr, PORT_CMD, val & ~PORT_CMD_START);
173
174 // waits for PxCMD.CR to clear to 0
175 while (1) {
176 val = ahci_port_readl(ctrl, pnr, PORT_CMD);
177 if ((val & PORT_CMD_LIST_ON) == 0)
178 break;
179 yield();
180 }
181
182 // Clears any error bits in PxSERR to enable capturing new errors
183 val = ahci_port_readl(ctrl, pnr, PORT_SCR_ERR);
184 ahci_port_writel(ctrl, pnr, PORT_SCR_ERR, val);
185
186 // Clears status bits in PxIS as appropriate
187 val = ahci_port_readl(ctrl, pnr, PORT_IRQ_STAT);
188 ahci_port_writel(ctrl, pnr, PORT_IRQ_STAT, val);
189
190 // If PxTFD.STS.BSY or PxTFD.STS.DRQ is set to 1, issue
191 // a COMRESET to the device to put it in an idle state
192 val = ahci_port_readl(ctrl, pnr, PORT_TFDATA);
193 if (val & (ATA_CB_STAT_BSY | ATA_CB_STAT_DRQ)) {
194 dprintf(2, "AHCI/%d: issue comreset\n", pnr);
195 val = ahci_port_readl(ctrl, pnr, PORT_SCR_CTL);
196 // set Device Detection Initialization (DET) to 1 for 1 ms for comreset
197 ahci_port_writel(ctrl, pnr, PORT_SCR_CTL, val | 1);
198 mdelay (1);
199 ahci_port_writel(ctrl, pnr, PORT_SCR_CTL, val);
200 }
201
202 // Sets PxCMD.ST to 1 to enable issuing new commands
203 val = ahci_port_readl(ctrl, pnr, PORT_CMD);
204 ahci_port_writel(ctrl, pnr, PORT_CMD, val | PORT_CMD_START);
205 }
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100206 return success ? 0 : -1;
207}
208
209#define CDROM_CDB_SIZE 12
210
211int ahci_cmd_data(struct disk_op_s *op, void *cdbcmd, u16 blocksize)
212{
Kevin O'Connor80c2b6e2010-12-05 12:52:02 -0500213 if (! CONFIG_AHCI)
214 return 0;
215
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100216 struct ahci_port_s *port = container_of(
217 op->drive_g, struct ahci_port_s, drive);
218 struct ahci_cmd_s *cmd = GET_GLOBAL(port->cmd);
219 u8 *atapi = cdbcmd;
220 int i, rc;
221
222 sata_prep_atapi(&cmd->fis, blocksize);
223 for (i = 0; i < CDROM_CDB_SIZE; i++) {
224 SET_FLATPTR(cmd->atapi[i], atapi[i]);
225 }
226 rc = ahci_command(port, 0, 1, op->buf_fl,
227 op->count * blocksize);
228 if (rc < 0)
229 return DISK_RET_EBADTRACK;
230 return DISK_RET_SUCCESS;
231}
232
233// read/write count blocks from a harddrive.
234static int
235ahci_disk_readwrite(struct disk_op_s *op, int iswrite)
236{
237 struct ahci_port_s *port = container_of(
238 op->drive_g, struct ahci_port_s, drive);
239 struct ahci_cmd_s *cmd = GET_GLOBAL(port->cmd);
240 int rc;
241
242 sata_prep_readwrite(&cmd->fis, op, iswrite);
243 rc = ahci_command(port, iswrite, 0, op->buf_fl,
244 op->count * DISK_SECTOR_SIZE);
245 dprintf(2, "ahci disk %s, lba %6x, count %3x, buf %p, rc %d\n",
246 iswrite ? "write" : "read", (u32)op->lba, op->count, op->buf_fl, rc);
247 if (rc < 0)
248 return DISK_RET_EBADTRACK;
249 return DISK_RET_SUCCESS;
250}
251
252// command demuxer
253int process_ahci_op(struct disk_op_s *op)
254{
255 struct ahci_port_s *port;
256 u32 atapi;
257
258 if (!CONFIG_AHCI)
259 return 0;
260
261 port = container_of(op->drive_g, struct ahci_port_s, drive);
262 atapi = GET_GLOBAL(port->atapi);
263
264 if (atapi) {
265 switch (op->command) {
266 case CMD_READ:
267 return cdb_read(op);
268 case CMD_WRITE:
269 case CMD_FORMAT:
270 return DISK_RET_EWRITEPROTECT;
271 case CMD_RESET:
272 /* FIXME: what should we do here? */
273 case CMD_VERIFY:
274 case CMD_SEEK:
275 return DISK_RET_SUCCESS;
276 default:
277 dprintf(1, "AHCI: unknown cdrom command %d\n", op->command);
278 op->count = 0;
279 return DISK_RET_EPARAM;
280 }
281 } else {
282 switch (op->command) {
283 case CMD_READ:
284 return ahci_disk_readwrite(op, 0);
285 case CMD_WRITE:
286 return ahci_disk_readwrite(op, 1);
287 case CMD_RESET:
288 /* FIXME: what should we do here? */
289 case CMD_FORMAT:
290 case CMD_VERIFY:
291 case CMD_SEEK:
292 return DISK_RET_SUCCESS;
293 default:
294 dprintf(1, "AHCI: unknown disk command %d\n", op->command);
295 op->count = 0;
296 return DISK_RET_EPARAM;
297 }
298 }
299}
300
301/****************************************************************
302 * everything below is pure 32bit code
303 ****************************************************************/
304
305static void
306ahci_port_reset(struct ahci_ctrl_s *ctrl, u32 pnr)
307{
308 u32 val, count = 0;
309
310 /* disable FIS + CMD */
311 val = ahci_port_readl(ctrl, pnr, PORT_CMD);
312 while (val & (PORT_CMD_FIS_RX | PORT_CMD_START |
313 PORT_CMD_FIS_ON | PORT_CMD_LIST_ON) &&
314 count < AHCI_MAX_RETRIES) {
315 val &= ~(PORT_CMD_FIS_RX | PORT_CMD_START);
316 ahci_port_writel(ctrl, pnr, PORT_CMD, val);
317 ndelay(500);
318 val = ahci_port_readl(ctrl, pnr, PORT_CMD);
319 count++;
320 }
321
322 /* clear status */
323 val = ahci_port_readl(ctrl, pnr, PORT_SCR_ERR);
324 if (val)
325 ahci_port_writel(ctrl, pnr, PORT_SCR_ERR, val);
326
327 /* disable + clear IRQs */
328 ahci_port_writel(ctrl, pnr, PORT_IRQ_MASK, val);
329 val = ahci_port_readl(ctrl, pnr, PORT_IRQ_STAT);
330 if (val)
331 ahci_port_writel(ctrl, pnr, PORT_IRQ_STAT, val);
332}
333
334static int
335ahci_port_probe(struct ahci_ctrl_s *ctrl, u32 pnr)
336{
337 u32 val, count = 0;
338
339 val = ahci_port_readl(ctrl, pnr, PORT_TFDATA);
340 while (val & ((1 << 7) /* BSY */ |
341 (1 << 3) /* DRQ */)) {
342 ndelay(500);
343 val = ahci_port_readl(ctrl, pnr, PORT_TFDATA);
344 count++;
345 if (count >= AHCI_MAX_RETRIES)
346 return -1;
347 }
348
349 val = ahci_port_readl(ctrl, pnr, PORT_SCR_STAT);
350 if ((val & 0x07) != 0x03)
351 return -1;
352 return 0;
353}
354
355#define MAXMODEL 40
356
357static struct ahci_port_s*
358ahci_port_init(struct ahci_ctrl_s *ctrl, u32 pnr)
359{
360 struct ahci_port_s *port = malloc_fseg(sizeof(*port));
361 char model[MAXMODEL+1];
362 u16 buffer[256];
363 u32 val;
364 int rc;
365
366 if (!port) {
367 warn_noalloc();
368 return NULL;
369 }
370 port->pnr = pnr;
371 port->ctrl = ctrl;
372 port->list = memalign_low(1024, 1024);
373 port->fis = memalign_low(256, 256);
374 port->cmd = memalign_low(256, 256);
375 if (port->list == NULL || port->fis == NULL || port->cmd == NULL) {
376 warn_noalloc();
377 return NULL;
378 }
379 memset(port->list, 0, 1024);
380 memset(port->fis, 0, 256);
381 memset(port->cmd, 0, 256);
382
383 ahci_port_writel(ctrl, pnr, PORT_LST_ADDR, (u32)port->list);
384 ahci_port_writel(ctrl, pnr, PORT_FIS_ADDR, (u32)port->fis);
385 val = ahci_port_readl(ctrl, pnr, PORT_CMD);
Gerd Hoffmann07532972011-07-14 16:24:00 +0200386 val |= PORT_CMD_FIS_RX;
387 ahci_port_writel(ctrl, pnr, PORT_CMD, val);
388 val |= PORT_CMD_START;
389 ahci_port_writel(ctrl, pnr, PORT_CMD, val);
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100390
391 sata_prep_simple(&port->cmd->fis, ATA_CMD_IDENTIFY_PACKET_DEVICE);
392 rc = ahci_command(port, 0, 0, buffer, sizeof(buffer));
393 if (rc == 0) {
394 port->atapi = 1;
395 } else {
396 port->atapi = 0;
397 sata_prep_simple(&port->cmd->fis, ATA_CMD_IDENTIFY_DEVICE);
398 rc = ahci_command(port, 0, 0, buffer, sizeof(buffer));
399 if (rc < 0)
400 goto err;
401 }
402
403 port->drive.type = DTYPE_AHCI;
Gerd Hoffmann0e6f6362010-12-09 08:39:48 +0100404 port->drive.cntl_id = pnr;
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100405 port->drive.removable = (buffer[0] & 0x80) ? 1 : 0;
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100406
407 if (!port->atapi) {
408 // found disk (ata)
409 port->drive.blksize = DISK_SECTOR_SIZE;
410 port->drive.pchs.cylinders = buffer[1];
411 port->drive.pchs.heads = buffer[3];
412 port->drive.pchs.spt = buffer[6];
413
414 u64 sectors;
415 if (buffer[83] & (1 << 10)) // word 83 - lba48 support
416 sectors = *(u64*)&buffer[100]; // word 100-103
417 else
418 sectors = *(u32*)&buffer[60]; // word 60 and word 61
419 port->drive.sectors = sectors;
420 u64 adjsize = sectors >> 11;
421 char adjprefix = 'M';
422 if (adjsize >= (1 << 16)) {
423 adjsize >>= 10;
424 adjprefix = 'G';
425 }
Kevin O'Connorca2bc1c2010-12-29 21:41:19 -0500426 char *desc = znprintf(MAXDESCSIZE
427 , "AHCI/%d: %s ATA-%d Hard-Disk (%u %ciBytes)"
428 , port->pnr
429 , ata_extract_model(model, MAXMODEL, buffer)
430 , ata_extract_version(buffer)
431 , (u32)adjsize, adjprefix);
432 dprintf(1, "%s\n", desc);
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100433
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100434 // Register with bcv system.
Kevin O'Connorca2bc1c2010-12-29 21:41:19 -0500435 boot_add_hd(&port->drive, desc, -1);
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100436 } else {
437 // found cdrom (atapi)
438 port->drive.blksize = CDROM_SECTOR_SIZE;
439 port->drive.sectors = (u64)-1;
440 u8 iscd = ((buffer[0] >> 8) & 0x1f) == 0x05;
Kevin O'Connorca2bc1c2010-12-29 21:41:19 -0500441 char *desc = znprintf(MAXDESCSIZE
442 , "DVD/CD [AHCI/%d: %s ATAPI-%d %s]"
443 , port->pnr
444 , ata_extract_model(model, MAXMODEL, buffer)
445 , ata_extract_version(buffer)
446 , (iscd ? "DVD/CD" : "Device"));
447 dprintf(1, "%s\n", desc);
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100448
449 // fill cdidmap
Kevin O'Connor72eee3e2010-12-27 19:07:49 -0500450 if (iscd)
Kevin O'Connorca2bc1c2010-12-29 21:41:19 -0500451 boot_add_cd(&port->drive, desc, -1);
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100452 }
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100453
454 return port;
455
456err:
457 dprintf(1, "AHCI/%d: init failure, reset\n", port->pnr);
458 ahci_port_reset(ctrl, pnr);
459 return NULL;
460}
461
462// Detect any drives attached to a given controller.
463static void
464ahci_detect(void *data)
465{
466 struct ahci_ctrl_s *ctrl = data;
467 struct ahci_port_s *port;
468 u32 pnr, max;
469 int rc;
470
471 max = ctrl->caps & 0x1f;
Gerd Hoffmann1e924bb2010-12-09 08:39:47 +0100472 for (pnr = 0; pnr <= max; pnr++) {
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100473 if (!(ctrl->ports & (1 << pnr)))
474 continue;
475 dprintf(2, "AHCI/%d: probing\n", pnr);
476 ahci_port_reset(ctrl, pnr);
477 rc = ahci_port_probe(ctrl, pnr);
478 dprintf(1, "AHCI/%d: link %s\n", pnr, rc == 0 ? "up" : "down");
479 if (rc != 0)
480 continue;
481 port = ahci_port_init(ctrl, pnr);
482 }
483}
484
485// Initialize an ata controller and detect its drives.
486static void
487ahci_init_controller(int bdf)
488{
489 struct ahci_ctrl_s *ctrl = malloc_fseg(sizeof(*ctrl));
490 u32 val;
491
492 if (!ctrl) {
493 warn_noalloc();
494 return;
495 }
496 ctrl->pci_bdf = bdf;
497 ctrl->iobase = pci_config_readl(bdf, PCI_BASE_ADDRESS_5);
498 ctrl->irq = pci_config_readb(bdf, PCI_INTERRUPT_LINE);
499 dprintf(1, "AHCI controller at %02x.%x, iobase %x, irq %d\n",
500 bdf >> 3, bdf & 7, ctrl->iobase, ctrl->irq);
501
Kevin O'Connor7eb02222010-12-12 14:01:47 -0500502 pci_config_maskw(bdf, PCI_COMMAND, 0,
503 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
504
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100505 val = ahci_ctrl_readl(ctrl, HOST_CTL);
506 ahci_ctrl_writel(ctrl, HOST_CTL, val | HOST_CTL_AHCI_EN);
507
508 ctrl->caps = ahci_ctrl_readl(ctrl, HOST_CAP);
509 ctrl->ports = ahci_ctrl_readl(ctrl, HOST_PORTS_IMPL);
510 dprintf(2, "AHCI: cap 0x%x, ports_impl 0x%x\n",
511 ctrl->caps, ctrl->ports);
512
513 run_thread(ahci_detect, ctrl);
514}
515
516// Locate and init ahci controllers.
517static void
518ahci_init(void)
519{
520 // Scan PCI bus for ATA adapters
Kevin O'Connor9cb49922011-06-20 22:22:42 -0400521 struct pci_device *pci;
522 foreachpci(pci) {
523 if (pci->class != PCI_CLASS_STORAGE_SATA)
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100524 continue;
Kevin O'Connor9cb49922011-06-20 22:22:42 -0400525 if (pci->prog_if != 1 /* AHCI rev 1 */)
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100526 continue;
Kevin O'Connor9cb49922011-06-20 22:22:42 -0400527 ahci_init_controller(pci->bdf);
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100528 }
529}
530
531void
532ahci_setup(void)
533{
534 ASSERT32FLAT();
535 if (!CONFIG_AHCI)
536 return;
537
538 dprintf(3, "init ahci\n");
539 ahci_init();
540}