Kevin O'Connor | c09492e | 2008-03-01 13:38:07 -0500 | [diff] [blame] | 1 | // Low level ATA disk access |
| 2 | // |
Kevin O'Connor | c892b13 | 2009-08-11 21:59:37 -0400 | [diff] [blame] | 3 | // Copyright (C) 2008,2009 Kevin O'Connor <kevin@koconnor.net> |
Kevin O'Connor | c09492e | 2008-03-01 13:38:07 -0500 | [diff] [blame] | 4 | // Copyright (C) 2002 MandrakeSoft S.A. |
| 5 | // |
Kevin O'Connor | b1b7c2a | 2009-01-15 20:52:58 -0500 | [diff] [blame] | 6 | // This file may be distributed under the terms of the GNU LGPLv3 license. |
Kevin O'Connor | c09492e | 2008-03-01 13:38:07 -0500 | [diff] [blame] | 7 | |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 8 | #include "ata.h" // ATA_CB_STAT |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 9 | #include "biosvar.h" // GET_GLOBALFLAT |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 10 | #include "block.h" // struct drive_s |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 11 | #include "blockcmd.h" // CDB_CMD_READ_10 |
Kevin O'Connor | b306459 | 2012-08-14 21:20:10 -0400 | [diff] [blame] | 12 | #include "byteorder.h" // be16_to_cpu |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 13 | #include "malloc.h" // malloc_fseg |
| 14 | #include "output.h" // dprintf |
Kevin O'Connor | 4d8510c | 2016-02-03 01:28:20 -0500 | [diff] [blame^] | 15 | #include "pci.h" // pci_config_readb |
| 16 | #include "pcidevice.h" // foreachpci |
Kevin O'Connor | 2ed2f58 | 2008-11-08 15:53:36 -0500 | [diff] [blame] | 17 | #include "pci_ids.h" // PCI_CLASS_STORAGE_OTHER |
| 18 | #include "pci_regs.h" // PCI_INTERRUPT_LINE |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 19 | #include "pic.h" // enable_hwirq |
Kevin O'Connor | 3df600b | 2013-09-14 19:28:55 -0400 | [diff] [blame] | 20 | #include "stacks.h" // yield |
Kevin O'Connor | 135f3f6 | 2013-09-14 23:57:26 -0400 | [diff] [blame] | 21 | #include "std/disk.h" // DISK_RET_SUCCESS |
Kevin O'Connor | fa9c66a | 2013-09-14 19:10:40 -0400 | [diff] [blame] | 22 | #include "string.h" // memset |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 23 | #include "util.h" // timer_calc |
Kevin O'Connor | 4ade523 | 2013-09-18 21:41:48 -0400 | [diff] [blame] | 24 | #include "x86.h" // inb |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 25 | |
Kevin O'Connor | 425f212 | 2009-04-18 12:23:00 -0400 | [diff] [blame] | 26 | #define IDE_TIMEOUT 32000 //32 seconds max for IDE ops |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 27 | |
Kevin O'Connor | 15aee2e | 2008-03-01 13:34:04 -0500 | [diff] [blame] | 28 | |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 29 | /**************************************************************** |
| 30 | * Helper functions |
| 31 | ****************************************************************/ |
| 32 | |
| 33 | // Wait for the specified ide state |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 34 | static inline int |
| 35 | await_ide(u8 mask, u8 flags, u16 base, u16 timeout) |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 36 | { |
Kevin O'Connor | 018bdd7 | 2013-07-20 18:22:57 -0400 | [diff] [blame] | 37 | u32 end = timer_calc(timeout); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 38 | for (;;) { |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 39 | u8 status = inb(base+ATA_CB_STAT); |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 40 | if ((status & mask) == flags) |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 41 | return status; |
Kevin O'Connor | 018bdd7 | 2013-07-20 18:22:57 -0400 | [diff] [blame] | 42 | if (timer_check(end)) { |
Kevin O'Connor | cfdc13f | 2010-02-14 13:07:54 -0500 | [diff] [blame] | 43 | warn_timeout(); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 44 | return -1; |
| 45 | } |
Kevin O'Connor | 10ad799 | 2009-10-24 11:06:08 -0400 | [diff] [blame] | 46 | yield(); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 47 | } |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | // Wait for the device to be not-busy. |
| 51 | static int |
| 52 | await_not_bsy(u16 base) |
| 53 | { |
| 54 | return await_ide(ATA_CB_STAT_BSY, 0, base, IDE_TIMEOUT); |
| 55 | } |
| 56 | |
| 57 | // Wait for the device to be ready. |
| 58 | static int |
| 59 | await_rdy(u16 base) |
| 60 | { |
| 61 | return await_ide(ATA_CB_STAT_RDY, ATA_CB_STAT_RDY, base, IDE_TIMEOUT); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 62 | } |
| 63 | |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 64 | // Wait for ide state - pauses for one ata cycle first. |
Kevin O'Connor | a9caeae | 2009-03-07 00:09:52 -0500 | [diff] [blame] | 65 | static inline int |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 66 | pause_await_not_bsy(u16 iobase1, u16 iobase2) |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 67 | { |
| 68 | // Wait one PIO transfer cycle. |
| 69 | inb(iobase2 + ATA_CB_ASTAT); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 70 | |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 71 | return await_not_bsy(iobase1); |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 72 | } |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 73 | |
Kevin O'Connor | ef2822a | 2008-06-07 15:23:11 -0400 | [diff] [blame] | 74 | // Wait for ide state - pause for 400ns first. |
Kevin O'Connor | a9caeae | 2009-03-07 00:09:52 -0500 | [diff] [blame] | 75 | static inline int |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 76 | ndelay_await_not_bsy(u16 iobase1) |
Kevin O'Connor | ef2822a | 2008-06-07 15:23:11 -0400 | [diff] [blame] | 77 | { |
Kevin O'Connor | bc2aecd | 2008-11-28 16:40:06 -0500 | [diff] [blame] | 78 | ndelay(400); |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 79 | return await_not_bsy(iobase1); |
Kevin O'Connor | ef2822a | 2008-06-07 15:23:11 -0400 | [diff] [blame] | 80 | } |
| 81 | |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 82 | // Reset a drive |
Kevin O'Connor | b114436 | 2009-08-11 20:43:38 -0400 | [diff] [blame] | 83 | static void |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 84 | ata_reset(struct atadrive_s *adrive_gf) |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 85 | { |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 86 | struct ata_channel_s *chan_gf = GET_GLOBALFLAT(adrive_gf->chan_gf); |
| 87 | u8 slave = GET_GLOBALFLAT(adrive_gf->slave); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 88 | u16 iobase1 = GET_GLOBALFLAT(chan_gf->iobase1); |
| 89 | u16 iobase2 = GET_GLOBALFLAT(chan_gf->iobase2); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 90 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 91 | dprintf(6, "ata_reset drive=%p\n", &adrive_gf->drive); |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 92 | // Pulse SRST |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 93 | outb(ATA_CB_DC_HD15 | ATA_CB_DC_NIEN | ATA_CB_DC_SRST, iobase2+ATA_CB_DC); |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 94 | udelay(5); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 95 | outb(ATA_CB_DC_HD15 | ATA_CB_DC_NIEN, iobase2+ATA_CB_DC); |
Kevin O'Connor | 10ad799 | 2009-10-24 11:06:08 -0400 | [diff] [blame] | 96 | msleep(2); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 97 | |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 98 | // wait for device to become not busy. |
| 99 | int status = await_not_bsy(iobase1); |
| 100 | if (status < 0) |
| 101 | goto done; |
| 102 | if (slave) { |
| 103 | // Change device. |
Kevin O'Connor | 018bdd7 | 2013-07-20 18:22:57 -0400 | [diff] [blame] | 104 | u32 end = timer_calc(IDE_TIMEOUT); |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 105 | for (;;) { |
| 106 | outb(ATA_CB_DH_DEV1, iobase1 + ATA_CB_DH); |
Kevin O'Connor | c946eca | 2009-05-24 13:55:01 -0400 | [diff] [blame] | 107 | status = ndelay_await_not_bsy(iobase1); |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 108 | if (status < 0) |
| 109 | goto done; |
| 110 | if (inb(iobase1 + ATA_CB_DH) == ATA_CB_DH_DEV1) |
| 111 | break; |
| 112 | // Change drive request failed to take effect - retry. |
Kevin O'Connor | 018bdd7 | 2013-07-20 18:22:57 -0400 | [diff] [blame] | 113 | if (timer_check(end)) { |
Kevin O'Connor | cfdc13f | 2010-02-14 13:07:54 -0500 | [diff] [blame] | 114 | warn_timeout(); |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 115 | goto done; |
| 116 | } |
| 117 | } |
Kevin O'Connor | f5624d2 | 2009-08-18 22:17:57 -0400 | [diff] [blame] | 118 | } else { |
| 119 | // QEMU doesn't reset dh on reset, so set it explicitly. |
| 120 | outb(ATA_CB_DH_DEV0, iobase1 + ATA_CB_DH); |
Kevin O'Connor | 2e3eeeb | 2008-06-12 22:29:30 -0400 | [diff] [blame] | 121 | } |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 122 | |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 123 | // On a user-reset request, wait for RDY if it is an ATA device. |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 124 | u8 type=GET_GLOBALFLAT(adrive_gf->drive.type); |
Kevin O'Connor | 4233766 | 2009-08-10 00:06:37 -0400 | [diff] [blame] | 125 | if (type == DTYPE_ATA) |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 126 | status = await_rdy(iobase1); |
Kevin O'Connor | 3e1b649 | 2008-05-26 15:06:40 -0400 | [diff] [blame] | 127 | |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 128 | done: |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 129 | // Enable interrupts |
| 130 | outb(ATA_CB_DC_HD15, iobase2+ATA_CB_DC); |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 131 | |
| 132 | dprintf(6, "ata_reset exit status=%x\n", status); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 133 | } |
| 134 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 135 | // Check for drive RDY for 16bit interface command. |
Kevin O'Connor | 4233766 | 2009-08-10 00:06:37 -0400 | [diff] [blame] | 136 | static int |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 137 | isready(struct atadrive_s *adrive_gf) |
Kevin O'Connor | 4233766 | 2009-08-10 00:06:37 -0400 | [diff] [blame] | 138 | { |
| 139 | // Read the status from controller |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 140 | struct ata_channel_s *chan_gf = GET_GLOBALFLAT(adrive_gf->chan_gf); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 141 | u16 iobase1 = GET_GLOBALFLAT(chan_gf->iobase1); |
Kevin O'Connor | 4233766 | 2009-08-10 00:06:37 -0400 | [diff] [blame] | 142 | u8 status = inb(iobase1 + ATA_CB_STAT); |
Kevin O'Connor | 126eac6 | 2009-08-16 13:32:24 -0400 | [diff] [blame] | 143 | if ((status & (ATA_CB_STAT_BSY|ATA_CB_STAT_RDY)) == ATA_CB_STAT_RDY) |
| 144 | return DISK_RET_SUCCESS; |
| 145 | return DISK_RET_ENOTREADY; |
Kevin O'Connor | 4233766 | 2009-08-10 00:06:37 -0400 | [diff] [blame] | 146 | } |
| 147 | |
Kevin O'Connor | ee55c76 | 2008-05-13 00:18:20 -0400 | [diff] [blame] | 148 | |
| 149 | /**************************************************************** |
| 150 | * ATA send command |
| 151 | ****************************************************************/ |
| 152 | |
Kevin O'Connor | f888f8c | 2008-03-23 00:04:54 -0400 | [diff] [blame] | 153 | struct ata_pio_command { |
Kevin O'Connor | f888f8c | 2008-03-23 00:04:54 -0400 | [diff] [blame] | 154 | u8 feature; |
| 155 | u8 sector_count; |
| 156 | u8 lba_low; |
| 157 | u8 lba_mid; |
| 158 | u8 lba_high; |
| 159 | u8 device; |
| 160 | u8 command; |
| 161 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 162 | u8 feature2; |
Kevin O'Connor | f888f8c | 2008-03-23 00:04:54 -0400 | [diff] [blame] | 163 | u8 sector_count2; |
| 164 | u8 lba_low2; |
| 165 | u8 lba_mid2; |
| 166 | u8 lba_high2; |
| 167 | }; |
| 168 | |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 169 | // Send an ata command to the drive. |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 170 | static int |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 171 | send_cmd(struct atadrive_s *adrive_gf, struct ata_pio_command *cmd) |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 172 | { |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 173 | struct ata_channel_s *chan_gf = GET_GLOBALFLAT(adrive_gf->chan_gf); |
| 174 | u8 slave = GET_GLOBALFLAT(adrive_gf->slave); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 175 | u16 iobase1 = GET_GLOBALFLAT(chan_gf->iobase1); |
Kevin O'Connor | ef2822a | 2008-06-07 15:23:11 -0400 | [diff] [blame] | 176 | |
| 177 | // Select device |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 178 | int status = await_not_bsy(iobase1); |
| 179 | if (status < 0) |
| 180 | return status; |
| 181 | u8 newdh = ((cmd->device & ~ATA_CB_DH_DEV1) |
| 182 | | (slave ? ATA_CB_DH_DEV1 : ATA_CB_DH_DEV0)); |
| 183 | u8 olddh = inb(iobase1 + ATA_CB_DH); |
| 184 | outb(newdh, iobase1 + ATA_CB_DH); |
| 185 | if ((olddh ^ newdh) & (1<<4)) { |
| 186 | // Was a device change - wait for device to become not busy. |
Kevin O'Connor | c946eca | 2009-05-24 13:55:01 -0400 | [diff] [blame] | 187 | status = ndelay_await_not_bsy(iobase1); |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 188 | if (status < 0) |
| 189 | return status; |
| 190 | } |
Kevin O'Connor | ef2822a | 2008-06-07 15:23:11 -0400 | [diff] [blame] | 191 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 192 | // Check for ATA_CMD_(READ|WRITE)_(SECTORS|DMA)_EXT commands. |
| 193 | if ((cmd->command & ~0x11) == ATA_CMD_READ_SECTORS_EXT) { |
| 194 | outb(cmd->feature2, iobase1 + ATA_CB_FR); |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 195 | outb(cmd->sector_count2, iobase1 + ATA_CB_SC); |
| 196 | outb(cmd->lba_low2, iobase1 + ATA_CB_SN); |
| 197 | outb(cmd->lba_mid2, iobase1 + ATA_CB_CL); |
| 198 | outb(cmd->lba_high2, iobase1 + ATA_CB_CH); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 199 | } |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 200 | outb(cmd->feature, iobase1 + ATA_CB_FR); |
| 201 | outb(cmd->sector_count, iobase1 + ATA_CB_SC); |
| 202 | outb(cmd->lba_low, iobase1 + ATA_CB_SN); |
| 203 | outb(cmd->lba_mid, iobase1 + ATA_CB_CL); |
| 204 | outb(cmd->lba_high, iobase1 + ATA_CB_CH); |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 205 | outb(cmd->command, iobase1 + ATA_CB_CMD); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 206 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 207 | return 0; |
| 208 | } |
| 209 | |
| 210 | // Wait for data after calling 'send_cmd'. |
| 211 | static int |
| 212 | ata_wait_data(u16 iobase1) |
| 213 | { |
| 214 | int status = ndelay_await_not_bsy(iobase1); |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 215 | if (status < 0) |
| 216 | return status; |
| 217 | |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 218 | if (status & ATA_CB_STAT_ERR) { |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 219 | dprintf(6, "send_cmd : read error (status=%02x err=%02x)\n" |
| 220 | , status, inb(iobase1 + ATA_CB_ERR)); |
Kevin O'Connor | a05223c | 2008-06-28 12:15:57 -0400 | [diff] [blame] | 221 | return -4; |
Kevin O'Connor | 3a04963 | 2008-03-11 11:48:04 -0400 | [diff] [blame] | 222 | } |
| 223 | if (!(status & ATA_CB_STAT_DRQ)) { |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 224 | dprintf(6, "send_cmd : DRQ not set (status %02x)\n", status); |
Kevin O'Connor | a05223c | 2008-06-28 12:15:57 -0400 | [diff] [blame] | 225 | return -5; |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 226 | } |
| 227 | |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 228 | return 0; |
| 229 | } |
| 230 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 231 | // Send an ata command that does not transfer any further data. |
| 232 | int |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 233 | ata_cmd_nondata(struct atadrive_s *adrive_gf, struct ata_pio_command *cmd) |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 234 | { |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 235 | struct ata_channel_s *chan_gf = GET_GLOBALFLAT(adrive_gf->chan_gf); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 236 | u16 iobase1 = GET_GLOBALFLAT(chan_gf->iobase1); |
| 237 | u16 iobase2 = GET_GLOBALFLAT(chan_gf->iobase2); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 238 | |
| 239 | // Disable interrupts |
| 240 | outb(ATA_CB_DC_HD15 | ATA_CB_DC_NIEN, iobase2 + ATA_CB_DC); |
| 241 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 242 | int ret = send_cmd(adrive_gf, cmd); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 243 | if (ret) |
| 244 | goto fail; |
| 245 | ret = ndelay_await_not_bsy(iobase1); |
| 246 | if (ret < 0) |
| 247 | goto fail; |
| 248 | |
| 249 | if (ret & ATA_CB_STAT_ERR) { |
| 250 | dprintf(6, "nondata cmd : read error (status=%02x err=%02x)\n" |
| 251 | , ret, inb(iobase1 + ATA_CB_ERR)); |
| 252 | ret = -4; |
| 253 | goto fail; |
| 254 | } |
| 255 | if (ret & ATA_CB_STAT_DRQ) { |
| 256 | dprintf(6, "nondata cmd : DRQ set (status %02x)\n", ret); |
| 257 | ret = -5; |
| 258 | goto fail; |
| 259 | } |
| 260 | |
| 261 | fail: |
| 262 | // Enable interrupts |
| 263 | outb(ATA_CB_DC_HD15, iobase2+ATA_CB_DC); |
| 264 | |
| 265 | return ret; |
| 266 | } |
| 267 | |
Kevin O'Connor | ee55c76 | 2008-05-13 00:18:20 -0400 | [diff] [blame] | 268 | |
| 269 | /**************************************************************** |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 270 | * ATA PIO transfers |
Kevin O'Connor | ee55c76 | 2008-05-13 00:18:20 -0400 | [diff] [blame] | 271 | ****************************************************************/ |
| 272 | |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 273 | // Transfer 'op->count' blocks (of 'blocksize' bytes) to/from drive |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 274 | // 'op->drive_gf'. |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 275 | static int |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 276 | ata_pio_transfer(struct disk_op_s *op, int iswrite, int blocksize) |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 277 | { |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 278 | dprintf(16, "ata_pio_transfer id=%p write=%d count=%d bs=%d buf=%p\n" |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 279 | , op->drive_gf, iswrite, op->count, blocksize, op->buf_fl); |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 280 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 281 | struct atadrive_s *adrive_gf = container_of( |
| 282 | op->drive_gf, struct atadrive_s, drive); |
| 283 | struct ata_channel_s *chan_gf = GET_GLOBALFLAT(adrive_gf->chan_gf); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 284 | u16 iobase1 = GET_GLOBALFLAT(chan_gf->iobase1); |
| 285 | u16 iobase2 = GET_GLOBALFLAT(chan_gf->iobase2); |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 286 | int count = op->count; |
| 287 | void *buf_fl = op->buf_fl; |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 288 | int status; |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 289 | for (;;) { |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 290 | if (iswrite) { |
Kevin O'Connor | 3a04963 | 2008-03-11 11:48:04 -0400 | [diff] [blame] | 291 | // Write data to controller |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 292 | dprintf(16, "Write sector id=%p dest=%p\n", op->drive_gf, buf_fl); |
Kevin O'Connor | 32945af | 2009-02-27 21:23:01 -0500 | [diff] [blame] | 293 | if (CONFIG_ATA_PIO32) |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 294 | outsl_fl(iobase1, buf_fl, blocksize / 4); |
Kevin O'Connor | 3a04963 | 2008-03-11 11:48:04 -0400 | [diff] [blame] | 295 | else |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 296 | outsw_fl(iobase1, buf_fl, blocksize / 2); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 297 | } else { |
Kevin O'Connor | 3a04963 | 2008-03-11 11:48:04 -0400 | [diff] [blame] | 298 | // Read data from controller |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 299 | dprintf(16, "Read sector id=%p dest=%p\n", op->drive_gf, buf_fl); |
Kevin O'Connor | 32945af | 2009-02-27 21:23:01 -0500 | [diff] [blame] | 300 | if (CONFIG_ATA_PIO32) |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 301 | insl_fl(iobase1, buf_fl, blocksize / 4); |
Kevin O'Connor | 3a04963 | 2008-03-11 11:48:04 -0400 | [diff] [blame] | 302 | else |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 303 | insw_fl(iobase1, buf_fl, blocksize / 2); |
Kevin O'Connor | 3a04963 | 2008-03-11 11:48:04 -0400 | [diff] [blame] | 304 | } |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 305 | buf_fl += blocksize; |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 306 | |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 307 | status = pause_await_not_bsy(iobase1, iobase2); |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 308 | if (status < 0) { |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 309 | // Error |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 310 | op->count -= count; |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 311 | return status; |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 312 | } |
Kevin O'Connor | 3a04963 | 2008-03-11 11:48:04 -0400 | [diff] [blame] | 313 | |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 314 | count--; |
| 315 | if (!count) |
Kevin O'Connor | 3a04963 | 2008-03-11 11:48:04 -0400 | [diff] [blame] | 316 | break; |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 317 | status &= (ATA_CB_STAT_BSY | ATA_CB_STAT_DRQ | ATA_CB_STAT_ERR); |
| 318 | if (status != ATA_CB_STAT_DRQ) { |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 319 | dprintf(6, "ata_pio_transfer : more sectors left (status %02x)\n" |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 320 | , status); |
Kevin O'Connor | 9ae1e9b | 2009-08-09 18:06:40 -0400 | [diff] [blame] | 321 | op->count -= count; |
Kevin O'Connor | a05223c | 2008-06-28 12:15:57 -0400 | [diff] [blame] | 322 | return -6; |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 323 | } |
| 324 | } |
Kevin O'Connor | 3a04963 | 2008-03-11 11:48:04 -0400 | [diff] [blame] | 325 | |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 326 | status &= (ATA_CB_STAT_BSY | ATA_CB_STAT_DF | ATA_CB_STAT_DRQ |
| 327 | | ATA_CB_STAT_ERR); |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 328 | if (!iswrite) |
Kevin O'Connor | 3a04963 | 2008-03-11 11:48:04 -0400 | [diff] [blame] | 329 | status &= ~ATA_CB_STAT_DF; |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 330 | if (status != 0) { |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 331 | dprintf(6, "ata_pio_transfer : no sectors left (status %02x)\n", status); |
Kevin O'Connor | a05223c | 2008-06-28 12:15:57 -0400 | [diff] [blame] | 332 | return -7; |
Kevin O'Connor | 3a04963 | 2008-03-11 11:48:04 -0400 | [diff] [blame] | 333 | } |
| 334 | |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 335 | return 0; |
| 336 | } |
| 337 | |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 338 | |
| 339 | /**************************************************************** |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 340 | * ATA DMA transfers |
| 341 | ****************************************************************/ |
| 342 | |
| 343 | #define BM_CMD 0 |
| 344 | #define BM_CMD_MEMWRITE 0x08 |
| 345 | #define BM_CMD_START 0x01 |
| 346 | #define BM_STATUS 2 |
| 347 | #define BM_STATUS_IRQ 0x04 |
| 348 | #define BM_STATUS_ERROR 0x02 |
| 349 | #define BM_STATUS_ACTIVE 0x01 |
| 350 | #define BM_TABLE 4 |
| 351 | |
| 352 | struct sff_dma_prd { |
| 353 | u32 buf_fl; |
| 354 | u32 count; |
| 355 | }; |
| 356 | |
| 357 | // Check if DMA available and setup transfer if so. |
| 358 | static int |
| 359 | ata_try_dma(struct disk_op_s *op, int iswrite, int blocksize) |
| 360 | { |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 361 | ASSERT16(); |
Kevin O'Connor | 4d07902 | 2010-01-17 12:58:47 -0500 | [diff] [blame] | 362 | if (! CONFIG_ATA_DMA) |
| 363 | return -1; |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 364 | u32 dest = (u32)op->buf_fl; |
| 365 | if (dest & 1) |
| 366 | // Need minimum alignment of 1. |
| 367 | return -1; |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 368 | struct atadrive_s *adrive_gf = container_of( |
| 369 | op->drive_gf, struct atadrive_s, drive); |
| 370 | struct ata_channel_s *chan_gf = GET_GLOBALFLAT(adrive_gf->chan_gf); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 371 | u16 iomaster = GET_GLOBALFLAT(chan_gf->iomaster); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 372 | if (! iomaster) |
| 373 | return -1; |
| 374 | u32 bytes = op->count * blocksize; |
| 375 | if (! bytes) |
| 376 | return -1; |
| 377 | |
| 378 | // Build PRD dma structure. |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 379 | struct sff_dma_prd *dma = MAKE_FLATPTR(SEG_LOW, ExtraStack); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 380 | struct sff_dma_prd *origdma = dma; |
| 381 | while (bytes) { |
| 382 | if (dma >= &origdma[16]) |
| 383 | // Too many descriptors.. |
| 384 | return -1; |
| 385 | u32 count = bytes; |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 386 | u32 max = 0x10000 - (dest & 0xffff); |
| 387 | if (count > max) |
| 388 | count = max; |
| 389 | |
Kevin O'Connor | 1e3bd4f | 2012-05-24 23:56:19 -0400 | [diff] [blame] | 390 | SET_LOWFLAT(dma->buf_fl, dest); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 391 | bytes -= count; |
| 392 | if (!bytes) |
| 393 | // Last descriptor. |
| 394 | count |= 1<<31; |
| 395 | dprintf(16, "dma@%p: %08x %08x\n", dma, dest, count); |
| 396 | dest += count; |
Kevin O'Connor | 1e3bd4f | 2012-05-24 23:56:19 -0400 | [diff] [blame] | 397 | SET_LOWFLAT(dma->count, count); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 398 | dma++; |
| 399 | } |
| 400 | |
| 401 | // Program bus-master controller. |
| 402 | outl((u32)origdma, iomaster + BM_TABLE); |
| 403 | u8 oldcmd = inb(iomaster + BM_CMD) & ~(BM_CMD_MEMWRITE|BM_CMD_START); |
| 404 | outb(oldcmd | (iswrite ? 0x00 : BM_CMD_MEMWRITE), iomaster + BM_CMD); |
| 405 | outb(BM_STATUS_ERROR|BM_STATUS_IRQ, iomaster + BM_STATUS); |
| 406 | |
| 407 | return 0; |
| 408 | } |
| 409 | |
| 410 | // Transfer data using DMA. |
| 411 | static int |
| 412 | ata_dma_transfer(struct disk_op_s *op) |
| 413 | { |
Kevin O'Connor | 4d07902 | 2010-01-17 12:58:47 -0500 | [diff] [blame] | 414 | if (! CONFIG_ATA_DMA) |
| 415 | return -1; |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 416 | dprintf(16, "ata_dma_transfer id=%p buf=%p\n", op->drive_gf, op->buf_fl); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 417 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 418 | struct atadrive_s *adrive_gf = container_of( |
| 419 | op->drive_gf, struct atadrive_s, drive); |
| 420 | struct ata_channel_s *chan_gf = GET_GLOBALFLAT(adrive_gf->chan_gf); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 421 | u16 iomaster = GET_GLOBALFLAT(chan_gf->iomaster); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 422 | |
| 423 | // Start bus-master controller. |
| 424 | u8 oldcmd = inb(iomaster + BM_CMD); |
| 425 | outb(oldcmd | BM_CMD_START, iomaster + BM_CMD); |
| 426 | |
Kevin O'Connor | 018bdd7 | 2013-07-20 18:22:57 -0400 | [diff] [blame] | 427 | u32 end = timer_calc(IDE_TIMEOUT); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 428 | u8 status; |
| 429 | for (;;) { |
| 430 | status = inb(iomaster + BM_STATUS); |
| 431 | if (status & BM_STATUS_IRQ) |
| 432 | break; |
| 433 | // Transfer in progress |
Kevin O'Connor | 018bdd7 | 2013-07-20 18:22:57 -0400 | [diff] [blame] | 434 | if (timer_check(end)) { |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 435 | // Timeout. |
Kevin O'Connor | cfdc13f | 2010-02-14 13:07:54 -0500 | [diff] [blame] | 436 | warn_timeout(); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 437 | break; |
| 438 | } |
| 439 | yield(); |
| 440 | } |
| 441 | outb(oldcmd & ~BM_CMD_START, iomaster + BM_CMD); |
| 442 | |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 443 | u16 iobase1 = GET_GLOBALFLAT(chan_gf->iobase1); |
| 444 | u16 iobase2 = GET_GLOBALFLAT(chan_gf->iobase2); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 445 | int idestatus = pause_await_not_bsy(iobase1, iobase2); |
| 446 | |
| 447 | if ((status & (BM_STATUS_IRQ|BM_STATUS_ACTIVE)) == BM_STATUS_IRQ |
| 448 | && idestatus >= 0x00 |
| 449 | && (idestatus & (ATA_CB_STAT_BSY | ATA_CB_STAT_DF | ATA_CB_STAT_DRQ |
| 450 | | ATA_CB_STAT_ERR)) == 0x00) |
| 451 | // Success. |
| 452 | return 0; |
| 453 | |
| 454 | dprintf(6, "IDE DMA error (dma=%x ide=%x/%x/%x)\n", status, idestatus |
| 455 | , inb(iobase2 + ATA_CB_ASTAT), inb(iobase1 + ATA_CB_ERR)); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 456 | return -1; |
| 457 | } |
| 458 | |
| 459 | |
| 460 | /**************************************************************** |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 461 | * ATA hard drive functions |
| 462 | ****************************************************************/ |
| 463 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 464 | // Transfer data to harddrive using PIO protocol. |
Kevin O'Connor | 3f6c278 | 2009-08-09 19:17:11 -0400 | [diff] [blame] | 465 | static int |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 466 | ata_pio_cmd_data(struct disk_op_s *op, int iswrite, struct ata_pio_command *cmd) |
Kevin O'Connor | f888f8c | 2008-03-23 00:04:54 -0400 | [diff] [blame] | 467 | { |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 468 | struct atadrive_s *adrive_gf = container_of( |
| 469 | op->drive_gf, struct atadrive_s, drive); |
| 470 | struct ata_channel_s *chan_gf = GET_GLOBALFLAT(adrive_gf->chan_gf); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 471 | u16 iobase1 = GET_GLOBALFLAT(chan_gf->iobase1); |
| 472 | u16 iobase2 = GET_GLOBALFLAT(chan_gf->iobase2); |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 473 | |
Kevin O'Connor | 42bc394 | 2009-11-20 17:28:19 -0500 | [diff] [blame] | 474 | // Disable interrupts |
| 475 | outb(ATA_CB_DC_HD15 | ATA_CB_DC_NIEN, iobase2 + ATA_CB_DC); |
| 476 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 477 | int ret = send_cmd(adrive_gf, cmd); |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 478 | if (ret) |
Kevin O'Connor | 42bc394 | 2009-11-20 17:28:19 -0500 | [diff] [blame] | 479 | goto fail; |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 480 | ret = ata_wait_data(iobase1); |
| 481 | if (ret) |
| 482 | goto fail; |
| 483 | ret = ata_pio_transfer(op, iswrite, DISK_SECTOR_SIZE); |
Kevin O'Connor | 42bc394 | 2009-11-20 17:28:19 -0500 | [diff] [blame] | 484 | |
| 485 | fail: |
| 486 | // Enable interrupts |
| 487 | outb(ATA_CB_DC_HD15, iobase2+ATA_CB_DC); |
| 488 | return ret; |
Kevin O'Connor | 3f6c278 | 2009-08-09 19:17:11 -0400 | [diff] [blame] | 489 | } |
| 490 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 491 | // Transfer data to harddrive using DMA protocol. |
| 492 | static int |
| 493 | ata_dma_cmd_data(struct disk_op_s *op, struct ata_pio_command *cmd) |
| 494 | { |
Kevin O'Connor | 4d07902 | 2010-01-17 12:58:47 -0500 | [diff] [blame] | 495 | if (! CONFIG_ATA_DMA) |
| 496 | return -1; |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 497 | struct atadrive_s *adrive_gf = container_of( |
| 498 | op->drive_gf, struct atadrive_s, drive); |
| 499 | int ret = send_cmd(adrive_gf, cmd); |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 500 | if (ret) |
| 501 | return ret; |
| 502 | return ata_dma_transfer(op); |
| 503 | } |
| 504 | |
| 505 | // Read/write count blocks from a harddrive. |
| 506 | static int |
| 507 | ata_readwrite(struct disk_op_s *op, int iswrite) |
| 508 | { |
| 509 | u64 lba = op->lba; |
| 510 | |
| 511 | int usepio = ata_try_dma(op, iswrite, DISK_SECTOR_SIZE); |
| 512 | |
| 513 | struct ata_pio_command cmd; |
| 514 | memset(&cmd, 0, sizeof(cmd)); |
| 515 | |
| 516 | if (op->count >= (1<<8) || lba + op->count >= (1<<28)) { |
| 517 | cmd.sector_count2 = op->count >> 8; |
| 518 | cmd.lba_low2 = lba >> 24; |
| 519 | cmd.lba_mid2 = lba >> 32; |
| 520 | cmd.lba_high2 = lba >> 40; |
| 521 | lba &= 0xffffff; |
| 522 | |
| 523 | if (usepio) |
| 524 | cmd.command = (iswrite ? ATA_CMD_WRITE_SECTORS_EXT |
| 525 | : ATA_CMD_READ_SECTORS_EXT); |
| 526 | else |
| 527 | cmd.command = (iswrite ? ATA_CMD_WRITE_DMA_EXT |
| 528 | : ATA_CMD_READ_DMA_EXT); |
| 529 | } else { |
| 530 | if (usepio) |
| 531 | cmd.command = (iswrite ? ATA_CMD_WRITE_SECTORS |
| 532 | : ATA_CMD_READ_SECTORS); |
| 533 | else |
| 534 | cmd.command = (iswrite ? ATA_CMD_WRITE_DMA |
| 535 | : ATA_CMD_READ_DMA); |
| 536 | } |
| 537 | |
| 538 | cmd.sector_count = op->count; |
| 539 | cmd.lba_low = lba; |
| 540 | cmd.lba_mid = lba >> 8; |
| 541 | cmd.lba_high = lba >> 16; |
| 542 | cmd.device = ((lba >> 24) & 0xf) | ATA_CB_DH_LBA; |
| 543 | |
| 544 | int ret; |
| 545 | if (usepio) |
| 546 | ret = ata_pio_cmd_data(op, iswrite, &cmd); |
| 547 | else |
| 548 | ret = ata_dma_cmd_data(op, &cmd); |
| 549 | if (ret) |
| 550 | return DISK_RET_EBADTRACK; |
| 551 | return DISK_RET_SUCCESS; |
| 552 | } |
| 553 | |
| 554 | // 16bit command demuxer for ATA harddrives. |
Kevin O'Connor | 3f6c278 | 2009-08-09 19:17:11 -0400 | [diff] [blame] | 555 | int |
Kevin O'Connor | 1785645 | 2015-07-07 14:56:20 -0400 | [diff] [blame] | 556 | ata_process_op(struct disk_op_s *op) |
Kevin O'Connor | 3f6c278 | 2009-08-09 19:17:11 -0400 | [diff] [blame] | 557 | { |
Kevin O'Connor | c892b13 | 2009-08-11 21:59:37 -0400 | [diff] [blame] | 558 | if (!CONFIG_ATA) |
| 559 | return 0; |
| 560 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 561 | struct atadrive_s *adrive_gf = container_of( |
| 562 | op->drive_gf, struct atadrive_s, drive); |
Kevin O'Connor | 3f6c278 | 2009-08-09 19:17:11 -0400 | [diff] [blame] | 563 | switch (op->command) { |
Kevin O'Connor | 3f6c278 | 2009-08-09 19:17:11 -0400 | [diff] [blame] | 564 | case CMD_READ: |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 565 | return ata_readwrite(op, 0); |
Kevin O'Connor | 3f6c278 | 2009-08-09 19:17:11 -0400 | [diff] [blame] | 566 | case CMD_WRITE: |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 567 | return ata_readwrite(op, 1); |
Kevin O'Connor | bd6afe5 | 2012-07-21 12:01:12 -0400 | [diff] [blame] | 568 | case CMD_RESET: |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 569 | ata_reset(adrive_gf); |
Kevin O'Connor | bd6afe5 | 2012-07-21 12:01:12 -0400 | [diff] [blame] | 570 | return DISK_RET_SUCCESS; |
| 571 | case CMD_ISREADY: |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 572 | return isready(adrive_gf); |
Kevin O'Connor | 4233766 | 2009-08-10 00:06:37 -0400 | [diff] [blame] | 573 | default: |
Kevin O'Connor | 85c72c6 | 2015-07-07 09:01:52 -0400 | [diff] [blame] | 574 | return default_process_op(op); |
Kevin O'Connor | 3f6c278 | 2009-08-09 19:17:11 -0400 | [diff] [blame] | 575 | } |
Kevin O'Connor | f888f8c | 2008-03-23 00:04:54 -0400 | [diff] [blame] | 576 | } |
| 577 | |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 578 | |
| 579 | /**************************************************************** |
| 580 | * ATAPI functions |
| 581 | ****************************************************************/ |
| 582 | |
Kevin O'Connor | 7d70025 | 2010-02-15 11:56:07 -0500 | [diff] [blame] | 583 | #define CDROM_CDB_SIZE 12 |
| 584 | |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 585 | // Low-level atapi command transmit function. |
Kevin O'Connor | 7d70025 | 2010-02-15 11:56:07 -0500 | [diff] [blame] | 586 | int |
Kevin O'Connor | 91f8923 | 2015-07-07 11:11:46 -0400 | [diff] [blame] | 587 | ata_atapi_process_op(struct disk_op_s *op) |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 588 | { |
Kevin O'Connor | 80c2b6e | 2010-12-05 12:52:02 -0500 | [diff] [blame] | 589 | if (! CONFIG_ATA) |
| 590 | return 0; |
| 591 | |
Kevin O'Connor | 91f8923 | 2015-07-07 11:11:46 -0400 | [diff] [blame] | 592 | if (op->command == CMD_WRITE || op->command == CMD_FORMAT) |
| 593 | return DISK_RET_EWRITEPROTECT; |
| 594 | u8 cdbcmd[CDROM_CDB_SIZE]; |
| 595 | int blocksize = scsi_fill_cmd(op, cdbcmd, sizeof(cdbcmd)); |
| 596 | if (blocksize < 0) |
| 597 | return default_process_op(op); |
| 598 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 599 | struct atadrive_s *adrive_gf = container_of( |
| 600 | op->drive_gf, struct atadrive_s, drive); |
| 601 | struct ata_channel_s *chan_gf = GET_GLOBALFLAT(adrive_gf->chan_gf); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 602 | u16 iobase1 = GET_GLOBALFLAT(chan_gf->iobase1); |
| 603 | u16 iobase2 = GET_GLOBALFLAT(chan_gf->iobase2); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 604 | |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 605 | struct ata_pio_command cmd; |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 606 | memset(&cmd, 0, sizeof(cmd)); |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 607 | cmd.lba_mid = blocksize; |
| 608 | cmd.lba_high = blocksize >> 8; |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 609 | cmd.command = ATA_CMD_PACKET; |
| 610 | |
Kevin O'Connor | 42bc394 | 2009-11-20 17:28:19 -0500 | [diff] [blame] | 611 | // Disable interrupts |
| 612 | outb(ATA_CB_DC_HD15 | ATA_CB_DC_NIEN, iobase2 + ATA_CB_DC); |
| 613 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 614 | int ret = send_cmd(adrive_gf, &cmd); |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 615 | if (ret) |
Kevin O'Connor | 42bc394 | 2009-11-20 17:28:19 -0500 | [diff] [blame] | 616 | goto fail; |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 617 | ret = ata_wait_data(iobase1); |
| 618 | if (ret) |
| 619 | goto fail; |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 620 | |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 621 | // Send command to device |
Kevin O'Connor | 7d70025 | 2010-02-15 11:56:07 -0500 | [diff] [blame] | 622 | outsw_fl(iobase1, MAKE_FLATPTR(GET_SEG(SS), cdbcmd), CDROM_CDB_SIZE / 2); |
Kevin O'Connor | 3491e8b | 2008-02-29 00:22:27 -0500 | [diff] [blame] | 623 | |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 624 | int status = pause_await_not_bsy(iobase1, iobase2); |
Kevin O'Connor | 42bc394 | 2009-11-20 17:28:19 -0500 | [diff] [blame] | 625 | if (status < 0) { |
| 626 | ret = status; |
| 627 | goto fail; |
| 628 | } |
Kevin O'Connor | 1fcf144 | 2008-03-11 19:42:41 -0400 | [diff] [blame] | 629 | |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 630 | if (status & ATA_CB_STAT_ERR) { |
Kevin O'Connor | b30c400 | 2009-05-05 21:47:20 -0400 | [diff] [blame] | 631 | u8 err = inb(iobase1 + ATA_CB_ERR); |
| 632 | // skip "Not Ready" |
| 633 | if (err != 0x20) |
| 634 | dprintf(6, "send_atapi_cmd : read error (status=%02x err=%02x)\n" |
| 635 | , status, err); |
Kevin O'Connor | 42bc394 | 2009-11-20 17:28:19 -0500 | [diff] [blame] | 636 | ret = -2; |
| 637 | goto fail; |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 638 | } |
Paolo Bonzini | 39d5989 | 2012-03-19 11:41:09 +0100 | [diff] [blame] | 639 | if (blocksize) { |
| 640 | if (!(status & ATA_CB_STAT_DRQ)) { |
| 641 | dprintf(6, "send_atapi_cmd : DRQ not set (status %02x)\n", status); |
| 642 | ret = -3; |
| 643 | goto fail; |
| 644 | } |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 645 | |
Paolo Bonzini | 39d5989 | 2012-03-19 11:41:09 +0100 | [diff] [blame] | 646 | ret = ata_pio_transfer(op, 0, blocksize); |
| 647 | } |
Kevin O'Connor | 42bc394 | 2009-11-20 17:28:19 -0500 | [diff] [blame] | 648 | |
| 649 | fail: |
| 650 | // Enable interrupts |
| 651 | outb(ATA_CB_DC_HD15, iobase2+ATA_CB_DC); |
Kevin O'Connor | 76977b2 | 2010-02-17 01:01:32 -0500 | [diff] [blame] | 652 | if (ret) |
| 653 | return DISK_RET_EBADTRACK; |
| 654 | return DISK_RET_SUCCESS; |
Kevin O'Connor | aa2590c | 2008-03-22 23:13:24 -0400 | [diff] [blame] | 655 | } |
| 656 | |
Kevin O'Connor | a6b9f71 | 2008-03-29 12:53:57 -0400 | [diff] [blame] | 657 | |
| 658 | /**************************************************************** |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 659 | * ATA detect and init |
| 660 | ****************************************************************/ |
| 661 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 662 | // Send an identify device or identify device packet command. |
| 663 | static int |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 664 | send_ata_identity(struct atadrive_s *adrive, u16 *buffer, int command) |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 665 | { |
| 666 | memset(buffer, 0, DISK_SECTOR_SIZE); |
| 667 | |
| 668 | struct disk_op_s dop; |
| 669 | memset(&dop, 0, sizeof(dop)); |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 670 | dop.drive_gf = &adrive->drive; |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 671 | dop.count = 1; |
| 672 | dop.lba = 1; |
| 673 | dop.buf_fl = MAKE_FLATPTR(GET_SEG(SS), buffer); |
| 674 | |
| 675 | struct ata_pio_command cmd; |
| 676 | memset(&cmd, 0, sizeof(cmd)); |
| 677 | cmd.command = command; |
| 678 | |
| 679 | return ata_pio_cmd_data(&dop, 0, &cmd); |
| 680 | } |
| 681 | |
Kevin O'Connor | f2d48a3 | 2009-08-11 20:58:11 -0400 | [diff] [blame] | 682 | // Extract the ATA/ATAPI version info. |
Gerd Hoffmann | 54fa8ec | 2010-11-29 09:42:12 +0100 | [diff] [blame] | 683 | int |
| 684 | ata_extract_version(u16 *buffer) |
Kevin O'Connor | f2d48a3 | 2009-08-11 20:58:11 -0400 | [diff] [blame] | 685 | { |
| 686 | // Extract ATA/ATAPI version. |
| 687 | u16 ataversion = buffer[80]; |
| 688 | u8 version; |
| 689 | for (version=15; version>0; version--) |
| 690 | if (ataversion & (1<<version)) |
| 691 | break; |
| 692 | return version; |
| 693 | } |
| 694 | |
Kevin O'Connor | 575ffc8 | 2010-02-21 23:20:10 -0500 | [diff] [blame] | 695 | #define MAXMODEL 40 |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 696 | |
Kevin O'Connor | 575ffc8 | 2010-02-21 23:20:10 -0500 | [diff] [blame] | 697 | // Extract the ATA/ATAPI model info. |
Gerd Hoffmann | 54fa8ec | 2010-11-29 09:42:12 +0100 | [diff] [blame] | 698 | char * |
| 699 | ata_extract_model(char *model, u32 size, u16 *buffer) |
Kevin O'Connor | 575ffc8 | 2010-02-21 23:20:10 -0500 | [diff] [blame] | 700 | { |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 701 | // Read model name |
| 702 | int i; |
Gerd Hoffmann | 54fa8ec | 2010-11-29 09:42:12 +0100 | [diff] [blame] | 703 | for (i=0; i<size/2; i++) |
Kevin O'Connor | b306459 | 2012-08-14 21:20:10 -0400 | [diff] [blame] | 704 | *(u16*)&model[i*2] = be16_to_cpu(buffer[27+i]); |
Gerd Hoffmann | 54fa8ec | 2010-11-29 09:42:12 +0100 | [diff] [blame] | 705 | model[size] = 0x00; |
Kevin O'Connor | 9e881a3 | 2011-01-08 12:06:54 -0500 | [diff] [blame] | 706 | nullTrailingSpace(model); |
Kevin O'Connor | 575ffc8 | 2010-02-21 23:20:10 -0500 | [diff] [blame] | 707 | return model; |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 708 | } |
| 709 | |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 710 | // Common init code between ata and atapi |
| 711 | static struct atadrive_s * |
| 712 | init_atadrive(struct atadrive_s *dummy, u16 *buffer) |
| 713 | { |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 714 | struct atadrive_s *adrive = malloc_fseg(sizeof(*adrive)); |
| 715 | if (!adrive) { |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 716 | warn_noalloc(); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 717 | return NULL; |
| 718 | } |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 719 | memset(adrive, 0, sizeof(*adrive)); |
| 720 | adrive->chan_gf = dummy->chan_gf; |
| 721 | adrive->slave = dummy->slave; |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 722 | adrive->drive.cntl_id = adrive->chan_gf->ataid * 2 + dummy->slave; |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 723 | adrive->drive.removable = (buffer[0] & 0x80) ? 1 : 0; |
| 724 | return adrive; |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 725 | } |
| 726 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 727 | // Detect if the given drive is an atapi - initialize it if so. |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 728 | static struct atadrive_s * |
| 729 | init_drive_atapi(struct atadrive_s *dummy, u16 *buffer) |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 730 | { |
| 731 | // Send an IDENTIFY_DEVICE_PACKET command to device |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 732 | int ret = send_ata_identity(dummy, buffer, ATA_CMD_IDENTIFY_PACKET_DEVICE); |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 733 | if (ret) |
Kevin O'Connor | 77d227b | 2009-10-22 21:48:39 -0400 | [diff] [blame] | 734 | return NULL; |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 735 | |
| 736 | // Success - setup as ATAPI. |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 737 | struct atadrive_s *adrive = init_atadrive(dummy, buffer); |
| 738 | if (!adrive) |
Kevin O'Connor | 77d227b | 2009-10-22 21:48:39 -0400 | [diff] [blame] | 739 | return NULL; |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 740 | adrive->drive.type = DTYPE_ATA_ATAPI; |
| 741 | adrive->drive.blksize = CDROM_SECTOR_SIZE; |
| 742 | adrive->drive.sectors = (u64)-1; |
Kevin O'Connor | 4233766 | 2009-08-10 00:06:37 -0400 | [diff] [blame] | 743 | u8 iscd = ((buffer[0] >> 8) & 0x1f) == 0x05; |
Kevin O'Connor | 575ffc8 | 2010-02-21 23:20:10 -0500 | [diff] [blame] | 744 | char model[MAXMODEL+1]; |
Kevin O'Connor | ca2bc1c | 2010-12-29 21:41:19 -0500 | [diff] [blame] | 745 | char *desc = znprintf(MAXDESCSIZE |
| 746 | , "DVD/CD [ata%d-%d: %s ATAPI-%d %s]" |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 747 | , adrive->chan_gf->ataid, adrive->slave |
Kevin O'Connor | ca2bc1c | 2010-12-29 21:41:19 -0500 | [diff] [blame] | 748 | , ata_extract_model(model, MAXMODEL, buffer) |
| 749 | , ata_extract_version(buffer) |
| 750 | , (iscd ? "DVD/CD" : "Device")); |
| 751 | dprintf(1, "%s\n", desc); |
Kevin O'Connor | 4233766 | 2009-08-10 00:06:37 -0400 | [diff] [blame] | 752 | |
| 753 | // fill cdidmap |
Kevin O'Connor | 031ef55 | 2010-12-27 19:26:57 -0500 | [diff] [blame] | 754 | if (iscd) { |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 755 | int prio = bootprio_find_ata_device(adrive->chan_gf->pci_tmp, |
| 756 | adrive->chan_gf->chanid, |
| 757 | adrive->slave); |
| 758 | boot_add_cd(&adrive->drive, desc, prio); |
Kevin O'Connor | 031ef55 | 2010-12-27 19:26:57 -0500 | [diff] [blame] | 759 | } |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 760 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 761 | return adrive; |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 762 | } |
| 763 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 764 | // Detect if the given drive is a regular ata drive - initialize it if so. |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 765 | static struct atadrive_s * |
| 766 | init_drive_ata(struct atadrive_s *dummy, u16 *buffer) |
Kevin O'Connor | c143761 | 2008-05-18 01:43:07 -0400 | [diff] [blame] | 767 | { |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 768 | // Send an IDENTIFY_DEVICE command to device |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 769 | int ret = send_ata_identity(dummy, buffer, ATA_CMD_IDENTIFY_DEVICE); |
Kevin O'Connor | c143761 | 2008-05-18 01:43:07 -0400 | [diff] [blame] | 770 | if (ret) |
Kevin O'Connor | 77d227b | 2009-10-22 21:48:39 -0400 | [diff] [blame] | 771 | return NULL; |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 772 | |
| 773 | // Success - setup as ATA. |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 774 | struct atadrive_s *adrive = init_atadrive(dummy, buffer); |
| 775 | if (!adrive) |
Kevin O'Connor | 77d227b | 2009-10-22 21:48:39 -0400 | [diff] [blame] | 776 | return NULL; |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 777 | adrive->drive.type = DTYPE_ATA; |
| 778 | adrive->drive.blksize = DISK_SECTOR_SIZE; |
Kevin O'Connor | c143761 | 2008-05-18 01:43:07 -0400 | [diff] [blame] | 779 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 780 | adrive->drive.pchs.cylinder = buffer[1]; |
| 781 | adrive->drive.pchs.head = buffer[3]; |
| 782 | adrive->drive.pchs.sector = buffer[6]; |
Kevin O'Connor | c143761 | 2008-05-18 01:43:07 -0400 | [diff] [blame] | 783 | |
| 784 | u64 sectors; |
Kevin O'Connor | ab51560 | 2009-02-11 22:22:15 -0500 | [diff] [blame] | 785 | if (buffer[83] & (1 << 10)) // word 83 - lba48 support |
| 786 | sectors = *(u64*)&buffer[100]; // word 100-103 |
Kevin O'Connor | c143761 | 2008-05-18 01:43:07 -0400 | [diff] [blame] | 787 | else |
Kevin O'Connor | ab51560 | 2009-02-11 22:22:15 -0500 | [diff] [blame] | 788 | sectors = *(u32*)&buffer[60]; // word 60 and word 61 |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 789 | adrive->drive.sectors = sectors; |
Kevin O'Connor | 575ffc8 | 2010-02-21 23:20:10 -0500 | [diff] [blame] | 790 | u64 adjsize = sectors >> 11; |
| 791 | char adjprefix = 'M'; |
| 792 | if (adjsize >= (1 << 16)) { |
| 793 | adjsize >>= 10; |
| 794 | adjprefix = 'G'; |
| 795 | } |
| 796 | char model[MAXMODEL+1]; |
Kevin O'Connor | ca2bc1c | 2010-12-29 21:41:19 -0500 | [diff] [blame] | 797 | char *desc = znprintf(MAXDESCSIZE |
| 798 | , "ata%d-%d: %s ATA-%d Hard-Disk (%u %ciBytes)" |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 799 | , adrive->chan_gf->ataid, adrive->slave |
Kevin O'Connor | ca2bc1c | 2010-12-29 21:41:19 -0500 | [diff] [blame] | 800 | , ata_extract_model(model, MAXMODEL, buffer) |
| 801 | , ata_extract_version(buffer) |
| 802 | , (u32)adjsize, adjprefix); |
| 803 | dprintf(1, "%s\n", desc); |
Kevin O'Connor | c143761 | 2008-05-18 01:43:07 -0400 | [diff] [blame] | 804 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 805 | int prio = bootprio_find_ata_device(adrive->chan_gf->pci_tmp, |
| 806 | adrive->chan_gf->chanid, |
| 807 | adrive->slave); |
Kevin O'Connor | 0a92412 | 2009-02-08 19:43:47 -0500 | [diff] [blame] | 808 | // Register with bcv system. |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 809 | boot_add_hd(&adrive->drive, desc, prio); |
Kevin O'Connor | aafa657 | 2008-03-13 19:57:49 -0400 | [diff] [blame] | 810 | |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 811 | return adrive; |
Kevin O'Connor | aafa657 | 2008-03-13 19:57:49 -0400 | [diff] [blame] | 812 | } |
| 813 | |
Kevin O'Connor | 018bdd7 | 2013-07-20 18:22:57 -0400 | [diff] [blame] | 814 | static u32 SpinupEnd; |
Kevin O'Connor | a5826b5 | 2009-10-24 17:57:29 -0400 | [diff] [blame] | 815 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 816 | // Wait for non-busy status and check for "floating bus" condition. |
Kevin O'Connor | 425f212 | 2009-04-18 12:23:00 -0400 | [diff] [blame] | 817 | static int |
Kevin O'Connor | a5826b5 | 2009-10-24 17:57:29 -0400 | [diff] [blame] | 818 | powerup_await_non_bsy(u16 base) |
Kevin O'Connor | 425f212 | 2009-04-18 12:23:00 -0400 | [diff] [blame] | 819 | { |
| 820 | u8 orstatus = 0; |
| 821 | u8 status; |
| 822 | for (;;) { |
| 823 | status = inb(base+ATA_CB_STAT); |
| 824 | if (!(status & ATA_CB_STAT_BSY)) |
| 825 | break; |
| 826 | orstatus |= status; |
| 827 | if (orstatus == 0xff) { |
Kevin O'Connor | 9dc243e | 2010-03-20 17:53:03 -0400 | [diff] [blame] | 828 | dprintf(4, "powerup IDE floating\n"); |
Kevin O'Connor | 425f212 | 2009-04-18 12:23:00 -0400 | [diff] [blame] | 829 | return orstatus; |
| 830 | } |
Kevin O'Connor | 018bdd7 | 2013-07-20 18:22:57 -0400 | [diff] [blame] | 831 | if (timer_check(SpinupEnd)) { |
Kevin O'Connor | cfdc13f | 2010-02-14 13:07:54 -0500 | [diff] [blame] | 832 | warn_timeout(); |
Kevin O'Connor | 425f212 | 2009-04-18 12:23:00 -0400 | [diff] [blame] | 833 | return -1; |
| 834 | } |
Kevin O'Connor | 10ad799 | 2009-10-24 11:06:08 -0400 | [diff] [blame] | 835 | yield(); |
Kevin O'Connor | 425f212 | 2009-04-18 12:23:00 -0400 | [diff] [blame] | 836 | } |
| 837 | dprintf(6, "powerup iobase=%x st=%x\n", base, status); |
| 838 | return status; |
| 839 | } |
| 840 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 841 | // Detect any drives attached to a given controller. |
Kevin O'Connor | 9f0d94d | 2008-04-13 17:25:30 -0400 | [diff] [blame] | 842 | static void |
Kevin O'Connor | a5826b5 | 2009-10-24 17:57:29 -0400 | [diff] [blame] | 843 | ata_detect(void *data) |
Kevin O'Connor | 15aee2e | 2008-03-01 13:34:04 -0500 | [diff] [blame] | 844 | { |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 845 | struct ata_channel_s *chan_gf = data; |
| 846 | struct atadrive_s dummy; |
Kevin O'Connor | 77d227b | 2009-10-22 21:48:39 -0400 | [diff] [blame] | 847 | memset(&dummy, 0, sizeof(dummy)); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 848 | dummy.chan_gf = chan_gf; |
Kevin O'Connor | 15aee2e | 2008-03-01 13:34:04 -0500 | [diff] [blame] | 849 | // Device detection |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 850 | int didreset = 0; |
| 851 | u8 slave; |
| 852 | for (slave=0; slave<=1; slave++) { |
Kevin O'Connor | 425f212 | 2009-04-18 12:23:00 -0400 | [diff] [blame] | 853 | // Wait for not-bsy. |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 854 | u16 iobase1 = chan_gf->iobase1; |
Kevin O'Connor | a5826b5 | 2009-10-24 17:57:29 -0400 | [diff] [blame] | 855 | int status = powerup_await_non_bsy(iobase1); |
Kevin O'Connor | 425f212 | 2009-04-18 12:23:00 -0400 | [diff] [blame] | 856 | if (status < 0) |
| 857 | continue; |
| 858 | u8 newdh = slave ? ATA_CB_DH_DEV1 : ATA_CB_DH_DEV0; |
| 859 | outb(newdh, iobase1+ATA_CB_DH); |
Kevin O'Connor | c946eca | 2009-05-24 13:55:01 -0400 | [diff] [blame] | 860 | ndelay(400); |
Kevin O'Connor | a5826b5 | 2009-10-24 17:57:29 -0400 | [diff] [blame] | 861 | status = powerup_await_non_bsy(iobase1); |
Kevin O'Connor | 425f212 | 2009-04-18 12:23:00 -0400 | [diff] [blame] | 862 | if (status < 0) |
| 863 | continue; |
Kevin O'Connor | 15aee2e | 2008-03-01 13:34:04 -0500 | [diff] [blame] | 864 | |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 865 | // Check if ioport registers look valid. |
Kevin O'Connor | 425f212 | 2009-04-18 12:23:00 -0400 | [diff] [blame] | 866 | outb(newdh, iobase1+ATA_CB_DH); |
| 867 | u8 dh = inb(iobase1+ATA_CB_DH); |
| 868 | outb(0x55, iobase1+ATA_CB_SC); |
| 869 | outb(0xaa, iobase1+ATA_CB_SN); |
Kevin O'Connor | aafa657 | 2008-03-13 19:57:49 -0400 | [diff] [blame] | 870 | u8 sc = inb(iobase1+ATA_CB_SC); |
| 871 | u8 sn = inb(iobase1+ATA_CB_SN); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 872 | dprintf(6, "ata_detect ata%d-%d: sc=%x sn=%x dh=%x\n" |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 873 | , chan_gf->ataid, slave, sc, sn, dh); |
Kevin O'Connor | 425f212 | 2009-04-18 12:23:00 -0400 | [diff] [blame] | 874 | if (sc != 0x55 || sn != 0xaa || dh != newdh) |
Kevin O'Connor | aafa657 | 2008-03-13 19:57:49 -0400 | [diff] [blame] | 875 | continue; |
| 876 | |
Kevin O'Connor | 77d227b | 2009-10-22 21:48:39 -0400 | [diff] [blame] | 877 | // Prepare new drive. |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 878 | dummy.slave = slave; |
Kevin O'Connor | b114436 | 2009-08-11 20:43:38 -0400 | [diff] [blame] | 879 | |
Kevin O'Connor | aafa657 | 2008-03-13 19:57:49 -0400 | [diff] [blame] | 880 | // reset the channel |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 881 | if (!didreset) { |
Kevin O'Connor | 77d227b | 2009-10-22 21:48:39 -0400 | [diff] [blame] | 882 | ata_reset(&dummy); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 883 | didreset = 1; |
Kevin O'Connor | 15aee2e | 2008-03-01 13:34:04 -0500 | [diff] [blame] | 884 | } |
| 885 | |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 886 | // check for ATAPI |
Kevin O'Connor | c79637b | 2009-06-10 20:33:57 -0400 | [diff] [blame] | 887 | u16 buffer[256]; |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 888 | struct atadrive_s *adrive = init_drive_atapi(&dummy, buffer); |
| 889 | if (!adrive) { |
Kevin O'Connor | 51fd0a1 | 2009-09-12 13:20:14 -0400 | [diff] [blame] | 890 | // Didn't find an ATAPI drive - look for ATA drive. |
Kevin O'Connor | c79637b | 2009-06-10 20:33:57 -0400 | [diff] [blame] | 891 | u8 st = inb(iobase1+ATA_CB_STAT); |
| 892 | if (!st) |
| 893 | // Status not set - can't be a valid drive. |
| 894 | continue; |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 895 | |
Kevin O'Connor | c79637b | 2009-06-10 20:33:57 -0400 | [diff] [blame] | 896 | // Wait for RDY. |
Kevin O'Connor | 77d227b | 2009-10-22 21:48:39 -0400 | [diff] [blame] | 897 | int ret = await_rdy(iobase1); |
Kevin O'Connor | c79637b | 2009-06-10 20:33:57 -0400 | [diff] [blame] | 898 | if (ret < 0) |
| 899 | continue; |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 900 | |
Kevin O'Connor | c79637b | 2009-06-10 20:33:57 -0400 | [diff] [blame] | 901 | // check for ATA. |
Kevin O'Connor | 1902c94 | 2013-10-26 11:48:06 -0400 | [diff] [blame] | 902 | adrive = init_drive_ata(&dummy, buffer); |
| 903 | if (!adrive) |
Kevin O'Connor | c79637b | 2009-06-10 20:33:57 -0400 | [diff] [blame] | 904 | // No ATA drive found |
| 905 | continue; |
| 906 | } |
Kevin O'Connor | 580e332 | 2009-02-06 22:36:53 -0500 | [diff] [blame] | 907 | |
Kevin O'Connor | c79637b | 2009-06-10 20:33:57 -0400 | [diff] [blame] | 908 | u16 resetresult = buffer[93]; |
| 909 | dprintf(6, "ata_detect resetresult=%04x\n", resetresult); |
| 910 | if (!slave && (resetresult & 0xdf61) == 0x4041) |
| 911 | // resetresult looks valid and device 0 is responding to |
| 912 | // device 1 requests - device 1 must not be present - skip |
| 913 | // detection. |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 914 | break; |
Kevin O'Connor | 15aee2e | 2008-03-01 13:34:04 -0500 | [diff] [blame] | 915 | } |
Kevin O'Connor | 15aee2e | 2008-03-01 13:34:04 -0500 | [diff] [blame] | 916 | } |
Kevin O'Connor | 9f0d94d | 2008-04-13 17:25:30 -0400 | [diff] [blame] | 917 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 918 | // Initialize an ata controller and detect its drives. |
Kevin O'Connor | 9f0d94d | 2008-04-13 17:25:30 -0400 | [diff] [blame] | 919 | static void |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 920 | init_controller(struct pci_device *pci, int chanid, int irq |
Kevin O'Connor | 95b2e0c | 2011-07-09 14:42:11 -0400 | [diff] [blame] | 921 | , u32 port1, u32 port2, u32 master) |
Kevin O'Connor | 4ccb231 | 2009-12-05 11:25:09 -0500 | [diff] [blame] | 922 | { |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 923 | static int ataid = 0; |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 924 | struct ata_channel_s *chan_gf = malloc_fseg(sizeof(*chan_gf)); |
| 925 | if (!chan_gf) { |
| 926 | warn_noalloc(); |
| 927 | return; |
| 928 | } |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 929 | chan_gf->ataid = ataid++; |
| 930 | chan_gf->chanid = chanid; |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 931 | chan_gf->irq = irq; |
Kevin O'Connor | 95b2e0c | 2011-07-09 14:42:11 -0400 | [diff] [blame] | 932 | chan_gf->pci_bdf = pci ? pci->bdf : -1; |
| 933 | chan_gf->pci_tmp = pci; |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 934 | chan_gf->iobase1 = port1; |
| 935 | chan_gf->iobase2 = port2; |
| 936 | chan_gf->iomaster = master; |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 937 | dprintf(1, "ATA controller %d at %x/%x/%x (irq %d dev %x)\n" |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 938 | , ataid, port1, port2, master, irq, chan_gf->pci_bdf); |
Kevin O'Connor | 8f469b9 | 2010-02-28 01:28:11 -0500 | [diff] [blame] | 939 | run_thread(ata_detect, chan_gf); |
Kevin O'Connor | 4ccb231 | 2009-12-05 11:25:09 -0500 | [diff] [blame] | 940 | } |
| 941 | |
Kevin O'Connor | 525219b | 2009-12-05 13:36:18 -0500 | [diff] [blame] | 942 | #define IRQ_ATA1 14 |
| 943 | #define IRQ_ATA2 15 |
| 944 | |
Kevin O'Connor | 927d16e | 2011-06-19 09:43:20 -0400 | [diff] [blame] | 945 | // Handle controllers on an ATA PCI device. |
| 946 | static void |
Kevin O'Connor | 278b19f | 2011-06-21 22:41:15 -0400 | [diff] [blame] | 947 | init_pciata(struct pci_device *pci, u8 prog_if) |
Kevin O'Connor | 927d16e | 2011-06-19 09:43:20 -0400 | [diff] [blame] | 948 | { |
Kevin O'Connor | 2bb7563 | 2016-02-02 22:14:49 -0500 | [diff] [blame] | 949 | u8 pciirq = pci_config_readb(pci->bdf, PCI_INTERRUPT_LINE); |
Kevin O'Connor | 927d16e | 2011-06-19 09:43:20 -0400 | [diff] [blame] | 950 | int master = 0; |
| 951 | if (CONFIG_ATA_DMA && prog_if & 0x80) { |
| 952 | // Check for bus-mastering. |
Kevin O'Connor | 2bb7563 | 2016-02-02 22:14:49 -0500 | [diff] [blame] | 953 | u32 bar = pci_config_readl(pci->bdf, PCI_BASE_ADDRESS_4); |
Kevin O'Connor | 927d16e | 2011-06-19 09:43:20 -0400 | [diff] [blame] | 954 | if (bar & PCI_BASE_ADDRESS_SPACE_IO) { |
Kevin O'Connor | 2bb7563 | 2016-02-02 22:14:49 -0500 | [diff] [blame] | 955 | master = pci_enable_iobar(pci, PCI_BASE_ADDRESS_4); |
| 956 | pci_enable_busmaster(pci); |
Kevin O'Connor | 927d16e | 2011-06-19 09:43:20 -0400 | [diff] [blame] | 957 | } |
| 958 | } |
| 959 | |
| 960 | u32 port1, port2, irq; |
| 961 | if (prog_if & 1) { |
Kevin O'Connor | 2bb7563 | 2016-02-02 22:14:49 -0500 | [diff] [blame] | 962 | port1 = pci_enable_iobar(pci, PCI_BASE_ADDRESS_0); |
| 963 | port2 = pci_enable_iobar(pci, PCI_BASE_ADDRESS_1); |
| 964 | if (!port1 || !port2) |
| 965 | return; |
Kevin O'Connor | 927d16e | 2011-06-19 09:43:20 -0400 | [diff] [blame] | 966 | irq = pciirq; |
| 967 | } else { |
| 968 | port1 = PORT_ATA1_CMD_BASE; |
| 969 | port2 = PORT_ATA1_CTRL_BASE; |
| 970 | irq = IRQ_ATA1; |
| 971 | } |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 972 | init_controller(pci, 0, irq, port1, port2, master); |
Kevin O'Connor | 927d16e | 2011-06-19 09:43:20 -0400 | [diff] [blame] | 973 | |
| 974 | if (prog_if & 4) { |
Kevin O'Connor | 2bb7563 | 2016-02-02 22:14:49 -0500 | [diff] [blame] | 975 | port1 = pci_enable_iobar(pci, PCI_BASE_ADDRESS_2); |
| 976 | port2 = pci_enable_iobar(pci, PCI_BASE_ADDRESS_3); |
| 977 | if (!port1 || !port2) |
| 978 | return; |
Kevin O'Connor | 927d16e | 2011-06-19 09:43:20 -0400 | [diff] [blame] | 979 | irq = pciirq; |
| 980 | } else { |
| 981 | port1 = PORT_ATA2_CMD_BASE; |
| 982 | port2 = PORT_ATA2_CTRL_BASE; |
| 983 | irq = IRQ_ATA2; |
| 984 | } |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 985 | init_controller(pci, 1, irq, port1, port2, master ? master + 8 : 0); |
Kevin O'Connor | 927d16e | 2011-06-19 09:43:20 -0400 | [diff] [blame] | 986 | } |
| 987 | |
Kevin O'Connor | b9457ec | 2011-06-19 10:03:08 -0400 | [diff] [blame] | 988 | static void |
Kevin O'Connor | 278b19f | 2011-06-21 22:41:15 -0400 | [diff] [blame] | 989 | found_genericata(struct pci_device *pci, void *arg) |
Kevin O'Connor | b9457ec | 2011-06-19 10:03:08 -0400 | [diff] [blame] | 990 | { |
Kevin O'Connor | 278b19f | 2011-06-21 22:41:15 -0400 | [diff] [blame] | 991 | init_pciata(pci, pci->prog_if); |
Kevin O'Connor | b9457ec | 2011-06-19 10:03:08 -0400 | [diff] [blame] | 992 | } |
| 993 | |
| 994 | static void |
Kevin O'Connor | 278b19f | 2011-06-21 22:41:15 -0400 | [diff] [blame] | 995 | found_compatibleahci(struct pci_device *pci, void *arg) |
Kevin O'Connor | b9457ec | 2011-06-19 10:03:08 -0400 | [diff] [blame] | 996 | { |
| 997 | if (CONFIG_AHCI) |
| 998 | // Already handled directly via native ahci interface. |
| 999 | return; |
Kevin O'Connor | 278b19f | 2011-06-21 22:41:15 -0400 | [diff] [blame] | 1000 | init_pciata(pci, 0x8f); |
Kevin O'Connor | b9457ec | 2011-06-19 10:03:08 -0400 | [diff] [blame] | 1001 | } |
| 1002 | |
Kevin O'Connor | 927d16e | 2011-06-19 09:43:20 -0400 | [diff] [blame] | 1003 | static const struct pci_device_id pci_ata_tbl[] = { |
Kevin O'Connor | b9457ec | 2011-06-19 10:03:08 -0400 | [diff] [blame] | 1004 | PCI_DEVICE_CLASS(PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_IDE |
| 1005 | , found_genericata), |
| 1006 | PCI_DEVICE(PCI_VENDOR_ID_ATI, 0x4391, found_compatibleahci), |
Kevin O'Connor | 927d16e | 2011-06-19 09:43:20 -0400 | [diff] [blame] | 1007 | PCI_DEVICE_END, |
| 1008 | }; |
| 1009 | |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 1010 | // Locate and init ata controllers. |
Kevin O'Connor | 4ccb231 | 2009-12-05 11:25:09 -0500 | [diff] [blame] | 1011 | static void |
Kevin O'Connor | d83c87b | 2013-01-21 01:14:12 -0500 | [diff] [blame] | 1012 | ata_scan(void) |
Kevin O'Connor | 9f0d94d | 2008-04-13 17:25:30 -0400 | [diff] [blame] | 1013 | { |
Kevin O'Connor | b98a4b1 | 2013-06-08 21:53:36 -0400 | [diff] [blame] | 1014 | if (CONFIG_QEMU && hlist_empty(&PCIDevices)) { |
Kevin O'Connor | 4ccb231 | 2009-12-05 11:25:09 -0500 | [diff] [blame] | 1015 | // No PCI devices found - probably a QEMU "-M isapc" machine. |
| 1016 | // Try using ISA ports for ATA controllers. |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 1017 | init_controller(NULL, 0, IRQ_ATA1 |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 1018 | , PORT_ATA1_CMD_BASE, PORT_ATA1_CTRL_BASE, 0); |
Kevin O'Connor | 6a668b3 | 2015-07-14 15:12:25 -0400 | [diff] [blame] | 1019 | init_controller(NULL, 1, IRQ_ATA2 |
Kevin O'Connor | 14021f2 | 2009-12-26 23:21:38 -0500 | [diff] [blame] | 1020 | , PORT_ATA2_CMD_BASE, PORT_ATA2_CTRL_BASE, 0); |
Kevin O'Connor | 3f3e58d | 2011-06-20 22:20:43 -0400 | [diff] [blame] | 1021 | return; |
| 1022 | } |
| 1023 | |
| 1024 | // Scan PCI bus for ATA adapters |
| 1025 | struct pci_device *pci; |
| 1026 | foreachpci(pci) { |
Kevin O'Connor | 278b19f | 2011-06-21 22:41:15 -0400 | [diff] [blame] | 1027 | pci_init_device(pci_ata_tbl, pci, NULL); |
Kevin O'Connor | 4ccb231 | 2009-12-05 11:25:09 -0500 | [diff] [blame] | 1028 | } |
Kevin O'Connor | 9f0d94d | 2008-04-13 17:25:30 -0400 | [diff] [blame] | 1029 | } |
| 1030 | |
| 1031 | void |
Kevin O'Connor | 1ca05b0 | 2010-01-03 17:43:37 -0500 | [diff] [blame] | 1032 | ata_setup(void) |
Kevin O'Connor | 9f0d94d | 2008-04-13 17:25:30 -0400 | [diff] [blame] | 1033 | { |
Kevin O'Connor | 59c7574 | 2010-02-13 18:49:24 -0500 | [diff] [blame] | 1034 | ASSERT32FLAT(); |
Kevin O'Connor | c143761 | 2008-05-18 01:43:07 -0400 | [diff] [blame] | 1035 | if (!CONFIG_ATA) |
| 1036 | return; |
| 1037 | |
Kevin O'Connor | 35192dd | 2008-06-08 19:18:33 -0400 | [diff] [blame] | 1038 | dprintf(3, "init hard drives\n"); |
Kevin O'Connor | a5826b5 | 2009-10-24 17:57:29 -0400 | [diff] [blame] | 1039 | |
Kevin O'Connor | 018bdd7 | 2013-07-20 18:22:57 -0400 | [diff] [blame] | 1040 | SpinupEnd = timer_calc(IDE_TIMEOUT); |
Kevin O'Connor | d83c87b | 2013-01-21 01:14:12 -0500 | [diff] [blame] | 1041 | ata_scan(); |
Kevin O'Connor | c143761 | 2008-05-18 01:43:07 -0400 | [diff] [blame] | 1042 | |
Kevin O'Connor | 9f0d94d | 2008-04-13 17:25:30 -0400 | [diff] [blame] | 1043 | SET_BDA(disk_control_byte, 0xc0); |
Kevin O'Connor | f54c150 | 2008-06-14 15:56:16 -0400 | [diff] [blame] | 1044 | |
Kevin O'Connor | cc9e1bf | 2010-07-28 21:31:38 -0400 | [diff] [blame] | 1045 | enable_hwirq(14, FUNC16(entry_76)); |
Kevin O'Connor | 9f0d94d | 2008-04-13 17:25:30 -0400 | [diff] [blame] | 1046 | } |