Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000-2011 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 5 | */ |
| 6 | |
Patrick Delaunay | b953ec2 | 2021-04-27 11:02:19 +0200 | [diff] [blame] | 7 | #define LOG_CATEGORY UCLASS_IDE |
| 8 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 9 | #include <common.h> |
| 10 | #include <ata.h> |
Simon Glass | e6f6f9e | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 11 | #include <blk.h> |
Simon Glass | 0d77f8f | 2023-01-17 10:47:46 -0700 | [diff] [blame] | 12 | #include <bootdev.h> |
Simon Glass | 145df84 | 2016-05-01 11:36:22 -0600 | [diff] [blame] | 13 | #include <dm.h> |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 14 | #include <ide.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 15 | #include <log.h> |
Simon Glass | e6f6f9e | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 16 | #include <part.h> |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 17 | #include <watchdog.h> |
| 18 | #include <asm/io.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 19 | #include <linux/delay.h> |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 20 | |
| 21 | #ifdef __PPC__ |
| 22 | # define EIEIO __asm__ volatile ("eieio") |
| 23 | # define SYNC __asm__ volatile ("sync") |
| 24 | #else |
| 25 | # define EIEIO /* nothing */ |
| 26 | # define SYNC /* nothing */ |
| 27 | #endif |
| 28 | |
| 29 | /* Current offset for IDE0 / IDE1 bus access */ |
| 30 | ulong ide_bus_offset[CONFIG_SYS_IDE_MAXBUS] = { |
| 31 | #if defined(CONFIG_SYS_ATA_IDE0_OFFSET) |
| 32 | CONFIG_SYS_ATA_IDE0_OFFSET, |
| 33 | #endif |
| 34 | #if defined(CONFIG_SYS_ATA_IDE1_OFFSET) && (CONFIG_SYS_IDE_MAXBUS > 1) |
| 35 | CONFIG_SYS_ATA_IDE1_OFFSET, |
| 36 | #endif |
| 37 | }; |
| 38 | |
Simon Glass | 14a4f52 | 2023-04-25 10:54:26 -0600 | [diff] [blame] | 39 | #define ATA_CURR_BASE(dev) (CONFIG_SYS_ATA_BASE_ADDR + \ |
| 40 | ide_bus_offset[IDE_BUS(dev)]) |
| 41 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 42 | #define IDE_TIME_OUT 2000 /* 2 sec timeout */ |
| 43 | |
| 44 | #define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */ |
| 45 | |
| 46 | #define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */ |
| 47 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 48 | #ifdef CONFIG_IDE_RESET |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 49 | static void ide_reset(void) |
| 50 | { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 51 | ide_set_reset(1); /* assert reset */ |
| 52 | |
| 53 | /* the reset signal shall be asserted for et least 25 us */ |
| 54 | udelay(25); |
| 55 | |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 56 | schedule(); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 57 | |
| 58 | /* de-assert RESET signal */ |
| 59 | ide_set_reset(0); |
| 60 | |
Simon Glass | 4d89f4b | 2023-04-25 10:54:27 -0600 | [diff] [blame] | 61 | mdelay(250); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 62 | } |
| 63 | #else |
| 64 | #define ide_reset() /* dummy */ |
| 65 | #endif /* CONFIG_IDE_RESET */ |
| 66 | |
Simon Glass | f8e87e7 | 2023-04-25 10:54:33 -0600 | [diff] [blame] | 67 | static void ide_outb(int dev, int port, unsigned char val) |
Simon Glass | bc65bff | 2023-04-25 10:54:32 -0600 | [diff] [blame] | 68 | { |
| 69 | debug("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n", |
| 70 | dev, port, val, ATA_CURR_BASE(dev) + port); |
| 71 | |
| 72 | outb(val, ATA_CURR_BASE(dev) + port); |
| 73 | } |
| 74 | |
Simon Glass | f8e87e7 | 2023-04-25 10:54:33 -0600 | [diff] [blame] | 75 | static unsigned char ide_inb(int dev, int port) |
Simon Glass | bc65bff | 2023-04-25 10:54:32 -0600 | [diff] [blame] | 76 | { |
| 77 | uchar val; |
| 78 | |
| 79 | val = inb(ATA_CURR_BASE(dev) + port); |
| 80 | |
| 81 | debug("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n", |
| 82 | dev, port, ATA_CURR_BASE(dev) + port, val); |
| 83 | return val; |
| 84 | } |
| 85 | |
Simon Glass | f8e87e7 | 2023-04-25 10:54:33 -0600 | [diff] [blame] | 86 | static void ide_input_swap_data(int dev, ulong *sect_buf, int words) |
Simon Glass | bc65bff | 2023-04-25 10:54:32 -0600 | [diff] [blame] | 87 | { |
| 88 | uintptr_t paddr = (ATA_CURR_BASE(dev) + ATA_DATA_REG); |
| 89 | ushort *dbuf = (ushort *)sect_buf; |
| 90 | |
| 91 | debug("in input swap data base for read is %p\n", (void *)paddr); |
| 92 | |
| 93 | while (words--) { |
| 94 | EIEIO; |
| 95 | *dbuf++ = be16_to_cpu(inw(paddr)); |
| 96 | EIEIO; |
| 97 | *dbuf++ = be16_to_cpu(inw(paddr)); |
| 98 | } |
| 99 | } |
| 100 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 101 | /* |
| 102 | * Wait until Busy bit is off, or timeout (in ms) |
| 103 | * Return last status |
| 104 | */ |
| 105 | static uchar ide_wait(int dev, ulong t) |
| 106 | { |
| 107 | ulong delay = 10 * t; /* poll every 100 us */ |
| 108 | uchar c; |
| 109 | |
| 110 | while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) { |
| 111 | udelay(100); |
| 112 | if (delay-- == 0) |
| 113 | break; |
| 114 | } |
| 115 | return c; |
| 116 | } |
| 117 | |
| 118 | /* |
| 119 | * copy src to dest, skipping leading and trailing blanks and null |
| 120 | * terminate the string |
| 121 | * "len" is the size of available memory including the terminating '\0' |
| 122 | */ |
| 123 | static void ident_cpy(unsigned char *dst, unsigned char *src, |
| 124 | unsigned int len) |
| 125 | { |
| 126 | unsigned char *end, *last; |
| 127 | |
| 128 | last = dst; |
| 129 | end = src + len - 1; |
| 130 | |
| 131 | /* reserve space for '\0' */ |
| 132 | if (len < 2) |
| 133 | goto OUT; |
| 134 | |
| 135 | /* skip leading white space */ |
| 136 | while ((*src) && (src < end) && (*src == ' ')) |
| 137 | ++src; |
| 138 | |
| 139 | /* copy string, omitting trailing white space */ |
| 140 | while ((*src) && (src < end)) { |
| 141 | *dst++ = *src; |
| 142 | if (*src++ != ' ') |
| 143 | last = dst; |
| 144 | } |
| 145 | OUT: |
| 146 | *last = '\0'; |
| 147 | } |
| 148 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 149 | /**************************************************************************** |
| 150 | * ATAPI Support |
| 151 | */ |
| 152 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 153 | /* since ATAPI may use commands with not 4 bytes alligned length |
| 154 | * we have our own transfer functions, 2 bytes alligned */ |
Simon Glass | f8e87e7 | 2023-04-25 10:54:33 -0600 | [diff] [blame] | 155 | static void ide_output_data_shorts(int dev, ushort *sect_buf, int shorts) |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 156 | { |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 157 | uintptr_t paddr = (ATA_CURR_BASE(dev) + ATA_DATA_REG); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 158 | ushort *dbuf; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 159 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 160 | dbuf = (ushort *)sect_buf; |
| 161 | |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 162 | debug("in output data shorts base for read is %p\n", (void *)paddr); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 163 | |
| 164 | while (shorts--) { |
| 165 | EIEIO; |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 166 | outw(cpu_to_le16(*dbuf++), paddr); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 167 | } |
| 168 | } |
| 169 | |
Simon Glass | f8e87e7 | 2023-04-25 10:54:33 -0600 | [diff] [blame] | 170 | static void ide_input_data_shorts(int dev, ushort *sect_buf, int shorts) |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 171 | { |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 172 | uintptr_t paddr = (ATA_CURR_BASE(dev) + ATA_DATA_REG); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 173 | ushort *dbuf; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 174 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 175 | dbuf = (ushort *)sect_buf; |
| 176 | |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 177 | debug("in input data shorts base for read is %p\n", (void *)paddr); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 178 | |
| 179 | while (shorts--) { |
| 180 | EIEIO; |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 181 | *dbuf++ = le16_to_cpu(inw(paddr)); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 182 | } |
| 183 | } |
| 184 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 185 | /* |
| 186 | * Wait until (Status & mask) == res, or timeout (in ms) |
| 187 | * Return last status |
| 188 | * This is used since some ATAPI CD ROMs clears their Busy Bit first |
| 189 | * and then they set their DRQ Bit |
| 190 | */ |
| 191 | static uchar atapi_wait_mask(int dev, ulong t, uchar mask, uchar res) |
| 192 | { |
| 193 | ulong delay = 10 * t; /* poll every 100 us */ |
| 194 | uchar c; |
| 195 | |
| 196 | /* prevents to read the status before valid */ |
| 197 | c = ide_inb(dev, ATA_DEV_CTL); |
| 198 | |
| 199 | while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) { |
| 200 | /* break if error occurs (doesn't make sense to wait more) */ |
| 201 | if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) |
| 202 | break; |
| 203 | udelay(100); |
| 204 | if (delay-- == 0) |
| 205 | break; |
| 206 | } |
| 207 | return c; |
| 208 | } |
| 209 | |
| 210 | /* |
| 211 | * issue an atapi command |
| 212 | */ |
Simon Glass | 1b33fd8 | 2023-04-25 10:54:36 -0600 | [diff] [blame] | 213 | static unsigned char atapi_issue(int device, unsigned char *ccb, int ccblen, |
| 214 | unsigned char *buffer, int buflen) |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 215 | { |
| 216 | unsigned char c, err, mask, res; |
| 217 | int n; |
| 218 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 219 | /* Select device |
| 220 | */ |
| 221 | mask = ATA_STAT_BUSY | ATA_STAT_DRQ; |
| 222 | res = 0; |
| 223 | ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
| 224 | c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res); |
| 225 | if ((c & mask) != res) { |
| 226 | printf("ATAPI_ISSUE: device %d not ready status %X\n", device, |
| 227 | c); |
| 228 | err = 0xFF; |
| 229 | goto AI_OUT; |
| 230 | } |
| 231 | /* write taskfile */ |
| 232 | ide_outb(device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */ |
| 233 | ide_outb(device, ATA_SECT_CNT, 0); |
| 234 | ide_outb(device, ATA_SECT_NUM, 0); |
| 235 | ide_outb(device, ATA_CYL_LOW, (unsigned char) (buflen & 0xFF)); |
| 236 | ide_outb(device, ATA_CYL_HIGH, |
| 237 | (unsigned char) ((buflen >> 8) & 0xFF)); |
| 238 | ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
| 239 | |
Heinrich Schuchardt | e6e9a4f | 2020-02-27 18:28:00 +0100 | [diff] [blame] | 240 | ide_outb(device, ATA_COMMAND, ATA_CMD_PACKET); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 241 | udelay(50); |
| 242 | |
| 243 | mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR; |
| 244 | res = ATA_STAT_DRQ; |
| 245 | c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res); |
| 246 | |
| 247 | if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */ |
| 248 | printf("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n", |
| 249 | device, c); |
| 250 | err = 0xFF; |
| 251 | goto AI_OUT; |
| 252 | } |
| 253 | |
| 254 | /* write command block */ |
| 255 | ide_output_data_shorts(device, (unsigned short *)ccb, ccblen / 2); |
| 256 | |
| 257 | /* ATAPI Command written wait for completition */ |
Simon Glass | 4d89f4b | 2023-04-25 10:54:27 -0600 | [diff] [blame] | 258 | mdelay(5); /* device must set bsy */ |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 259 | |
| 260 | mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR; |
| 261 | /* |
| 262 | * if no data wait for DRQ = 0 BSY = 0 |
| 263 | * if data wait for DRQ = 1 BSY = 0 |
| 264 | */ |
| 265 | res = 0; |
| 266 | if (buflen) |
| 267 | res = ATA_STAT_DRQ; |
| 268 | c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res); |
| 269 | if ((c & mask) != res) { |
| 270 | if (c & ATA_STAT_ERR) { |
| 271 | err = (ide_inb(device, ATA_ERROR_REG)) >> 4; |
| 272 | debug("atapi_issue 1 returned sense key %X status %02X\n", |
| 273 | err, c); |
| 274 | } else { |
| 275 | printf("ATAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", |
| 276 | ccb[0], c); |
| 277 | err = 0xFF; |
| 278 | } |
| 279 | goto AI_OUT; |
| 280 | } |
| 281 | n = ide_inb(device, ATA_CYL_HIGH); |
| 282 | n <<= 8; |
| 283 | n += ide_inb(device, ATA_CYL_LOW); |
| 284 | if (n > buflen) { |
| 285 | printf("ERROR, transfer bytes %d requested only %d\n", n, |
| 286 | buflen); |
| 287 | err = 0xff; |
| 288 | goto AI_OUT; |
| 289 | } |
| 290 | if ((n == 0) && (buflen < 0)) { |
| 291 | printf("ERROR, transfer bytes %d requested %d\n", n, buflen); |
| 292 | err = 0xff; |
| 293 | goto AI_OUT; |
| 294 | } |
| 295 | if (n != buflen) { |
| 296 | debug("WARNING, transfer bytes %d not equal with requested %d\n", |
| 297 | n, buflen); |
| 298 | } |
| 299 | if (n != 0) { /* data transfer */ |
| 300 | debug("ATAPI_ISSUE: %d Bytes to transfer\n", n); |
| 301 | /* we transfer shorts */ |
| 302 | n >>= 1; |
| 303 | /* ok now decide if it is an in or output */ |
| 304 | if ((ide_inb(device, ATA_SECT_CNT) & 0x02) == 0) { |
| 305 | debug("Write to device\n"); |
| 306 | ide_output_data_shorts(device, (unsigned short *)buffer, |
| 307 | n); |
| 308 | } else { |
| 309 | debug("Read from device @ %p shorts %d\n", buffer, n); |
| 310 | ide_input_data_shorts(device, (unsigned short *)buffer, |
| 311 | n); |
| 312 | } |
| 313 | } |
Simon Glass | 4d89f4b | 2023-04-25 10:54:27 -0600 | [diff] [blame] | 314 | mdelay(5); /* seems that some CD ROMs need this... */ |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 315 | mask = ATA_STAT_BUSY | ATA_STAT_ERR; |
| 316 | res = 0; |
| 317 | c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res); |
| 318 | if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) { |
| 319 | err = (ide_inb(device, ATA_ERROR_REG) >> 4); |
| 320 | debug("atapi_issue 2 returned sense key %X status %X\n", err, |
| 321 | c); |
| 322 | } else { |
| 323 | err = 0; |
| 324 | } |
| 325 | AI_OUT: |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 326 | return err; |
| 327 | } |
| 328 | |
| 329 | /* |
| 330 | * sending the command to atapi_issue. If an status other than good |
| 331 | * returns, an request_sense will be issued |
| 332 | */ |
| 333 | |
| 334 | #define ATAPI_DRIVE_NOT_READY 100 |
| 335 | #define ATAPI_UNIT_ATTN 10 |
| 336 | |
Simon Glass | 1b33fd8 | 2023-04-25 10:54:36 -0600 | [diff] [blame] | 337 | static unsigned char atapi_issue_autoreq(int device, unsigned char *ccb, |
| 338 | int ccblen, |
| 339 | unsigned char *buffer, int buflen) |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 340 | { |
| 341 | unsigned char sense_data[18], sense_ccb[12]; |
| 342 | unsigned char res, key, asc, ascq; |
| 343 | int notready, unitattn; |
| 344 | |
| 345 | unitattn = ATAPI_UNIT_ATTN; |
| 346 | notready = ATAPI_DRIVE_NOT_READY; |
| 347 | |
| 348 | retry: |
| 349 | res = atapi_issue(device, ccb, ccblen, buffer, buflen); |
| 350 | if (res == 0) |
| 351 | return 0; /* Ok */ |
| 352 | |
| 353 | if (res == 0xFF) |
| 354 | return 0xFF; /* error */ |
| 355 | |
| 356 | debug("(auto_req)atapi_issue returned sense key %X\n", res); |
| 357 | |
| 358 | memset(sense_ccb, 0, sizeof(sense_ccb)); |
| 359 | memset(sense_data, 0, sizeof(sense_data)); |
| 360 | sense_ccb[0] = ATAPI_CMD_REQ_SENSE; |
| 361 | sense_ccb[4] = 18; /* allocation Length */ |
| 362 | |
| 363 | res = atapi_issue(device, sense_ccb, 12, sense_data, 18); |
| 364 | key = (sense_data[2] & 0xF); |
| 365 | asc = (sense_data[12]); |
| 366 | ascq = (sense_data[13]); |
| 367 | |
| 368 | debug("ATAPI_CMD_REQ_SENSE returned %x\n", res); |
| 369 | debug(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n", |
| 370 | sense_data[0], key, asc, ascq); |
| 371 | |
| 372 | if ((key == 0)) |
| 373 | return 0; /* ok device ready */ |
| 374 | |
| 375 | if ((key == 6) || (asc == 0x29) || (asc == 0x28)) { /* Unit Attention */ |
| 376 | if (unitattn-- > 0) { |
Simon Glass | 4d89f4b | 2023-04-25 10:54:27 -0600 | [diff] [blame] | 377 | mdelay(200); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 378 | goto retry; |
| 379 | } |
| 380 | printf("Unit Attention, tried %d\n", ATAPI_UNIT_ATTN); |
| 381 | goto error; |
| 382 | } |
| 383 | if ((asc == 0x4) && (ascq == 0x1)) { |
| 384 | /* not ready, but will be ready soon */ |
| 385 | if (notready-- > 0) { |
Simon Glass | 4d89f4b | 2023-04-25 10:54:27 -0600 | [diff] [blame] | 386 | mdelay(200); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 387 | goto retry; |
| 388 | } |
| 389 | printf("Drive not ready, tried %d times\n", |
| 390 | ATAPI_DRIVE_NOT_READY); |
| 391 | goto error; |
| 392 | } |
| 393 | if (asc == 0x3a) { |
| 394 | debug("Media not present\n"); |
| 395 | goto error; |
| 396 | } |
| 397 | |
| 398 | printf("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n", key, asc, |
| 399 | ascq); |
| 400 | error: |
| 401 | debug("ERROR Sense key %02X ASC %02X ASCQ %02X\n", key, asc, ascq); |
| 402 | return 0xFF; |
| 403 | } |
| 404 | |
| 405 | /* |
| 406 | * atapi_read: |
| 407 | * we transfer only one block per command, since the multiple DRQ per |
| 408 | * command is not yet implemented |
| 409 | */ |
| 410 | #define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */ |
| 411 | #define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */ |
| 412 | #define ATAPI_READ_MAX_BLOCK (ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE) |
| 413 | |
Simon Glass | 1b33fd8 | 2023-04-25 10:54:36 -0600 | [diff] [blame] | 414 | static ulong atapi_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt, |
| 415 | void *buffer) |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 416 | { |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 417 | struct blk_desc *desc = dev_get_uclass_plat(dev); |
| 418 | int device = desc->devnum; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 419 | ulong n = 0; |
| 420 | unsigned char ccb[12]; /* Command descriptor block */ |
| 421 | ulong cnt; |
| 422 | |
| 423 | debug("atapi_read dev %d start " LBAF " blocks " LBAF |
| 424 | " buffer at %lX\n", device, blknr, blkcnt, (ulong) buffer); |
| 425 | |
| 426 | do { |
| 427 | if (blkcnt > ATAPI_READ_MAX_BLOCK) |
| 428 | cnt = ATAPI_READ_MAX_BLOCK; |
| 429 | else |
| 430 | cnt = blkcnt; |
| 431 | |
| 432 | ccb[0] = ATAPI_CMD_READ_12; |
| 433 | ccb[1] = 0; /* reserved */ |
| 434 | ccb[2] = (unsigned char) (blknr >> 24) & 0xFF; /* MSB Block */ |
| 435 | ccb[3] = (unsigned char) (blknr >> 16) & 0xFF; /* */ |
| 436 | ccb[4] = (unsigned char) (blknr >> 8) & 0xFF; |
| 437 | ccb[5] = (unsigned char) blknr & 0xFF; /* LSB Block */ |
| 438 | ccb[6] = (unsigned char) (cnt >> 24) & 0xFF; /* MSB Block cnt */ |
| 439 | ccb[7] = (unsigned char) (cnt >> 16) & 0xFF; |
| 440 | ccb[8] = (unsigned char) (cnt >> 8) & 0xFF; |
| 441 | ccb[9] = (unsigned char) cnt & 0xFF; /* LSB Block */ |
| 442 | ccb[10] = 0; /* reserved */ |
| 443 | ccb[11] = 0; /* reserved */ |
| 444 | |
| 445 | if (atapi_issue_autoreq(device, ccb, 12, |
| 446 | (unsigned char *)buffer, |
| 447 | cnt * ATAPI_READ_BLOCK_SIZE) |
| 448 | == 0xFF) { |
| 449 | return n; |
| 450 | } |
| 451 | n += cnt; |
| 452 | blkcnt -= cnt; |
| 453 | blknr += cnt; |
| 454 | buffer += (cnt * ATAPI_READ_BLOCK_SIZE); |
| 455 | } while (blkcnt > 0); |
| 456 | return n; |
| 457 | } |
| 458 | |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 459 | static void atapi_inquiry(struct blk_desc *desc) |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 460 | { |
| 461 | unsigned char ccb[12]; /* Command descriptor block */ |
| 462 | unsigned char iobuf[64]; /* temp buf */ |
| 463 | unsigned char c; |
| 464 | int device; |
| 465 | |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 466 | device = desc->devnum; |
| 467 | desc->type = DEV_TYPE_UNKNOWN; /* not yet valid */ |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 468 | |
| 469 | memset(ccb, 0, sizeof(ccb)); |
| 470 | memset(iobuf, 0, sizeof(iobuf)); |
| 471 | |
| 472 | ccb[0] = ATAPI_CMD_INQUIRY; |
| 473 | ccb[4] = 40; /* allocation Legnth */ |
| 474 | c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *)iobuf, 40); |
| 475 | |
| 476 | debug("ATAPI_CMD_INQUIRY returned %x\n", c); |
| 477 | if (c != 0) |
| 478 | return; |
| 479 | |
| 480 | /* copy device ident strings */ |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 481 | ident_cpy((u8 *)desc->vendor, &iobuf[8], 8); |
| 482 | ident_cpy((u8 *)desc->product, &iobuf[16], 16); |
| 483 | ident_cpy((u8 *)desc->revision, &iobuf[32], 5); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 484 | |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 485 | desc->lun = 0; |
| 486 | desc->lba = 0; |
| 487 | desc->blksz = 0; |
| 488 | desc->log2blksz = LOG2_INVALID(typeof(desc->log2blksz)); |
| 489 | desc->type = iobuf[0] & 0x1f; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 490 | |
| 491 | if ((iobuf[1] & 0x80) == 0x80) |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 492 | desc->removable = 1; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 493 | else |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 494 | desc->removable = 0; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 495 | |
| 496 | memset(ccb, 0, sizeof(ccb)); |
| 497 | memset(iobuf, 0, sizeof(iobuf)); |
| 498 | ccb[0] = ATAPI_CMD_START_STOP; |
| 499 | ccb[4] = 0x03; /* start */ |
| 500 | |
| 501 | c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *)iobuf, 0); |
| 502 | |
| 503 | debug("ATAPI_CMD_START_STOP returned %x\n", c); |
| 504 | if (c != 0) |
| 505 | return; |
| 506 | |
| 507 | memset(ccb, 0, sizeof(ccb)); |
| 508 | memset(iobuf, 0, sizeof(iobuf)); |
| 509 | c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *)iobuf, 0); |
| 510 | |
| 511 | debug("ATAPI_CMD_UNIT_TEST_READY returned %x\n", c); |
| 512 | if (c != 0) |
| 513 | return; |
| 514 | |
| 515 | memset(ccb, 0, sizeof(ccb)); |
| 516 | memset(iobuf, 0, sizeof(iobuf)); |
| 517 | ccb[0] = ATAPI_CMD_READ_CAP; |
| 518 | c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *)iobuf, 8); |
| 519 | debug("ATAPI_CMD_READ_CAP returned %x\n", c); |
| 520 | if (c != 0) |
| 521 | return; |
| 522 | |
| 523 | debug("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n", |
| 524 | iobuf[0], iobuf[1], iobuf[2], iobuf[3], |
| 525 | iobuf[4], iobuf[5], iobuf[6], iobuf[7]); |
| 526 | |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 527 | desc->lba = (ulong)iobuf[0] << 24 | (ulong)iobuf[1] << 16 | |
| 528 | (ulong)iobuf[2] << 8 | (ulong)iobuf[3]; |
| 529 | desc->blksz = (ulong)iobuf[4] << 24 | (ulong)iobuf[5] << 16 | |
| 530 | (ulong)iobuf[6] << 8 | (ulong)iobuf[7]; |
| 531 | desc->log2blksz = LOG2(desc->blksz); |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 532 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 533 | /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */ |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 534 | desc->lba48 = false; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 535 | } |
| 536 | |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 537 | static void ide_ident(struct blk_desc *desc) |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 538 | { |
| 539 | unsigned char c; |
| 540 | hd_driveid_t iop; |
Simon Glass | 606e054 | 2022-08-11 19:34:53 -0600 | [diff] [blame] | 541 | bool is_atapi = false; |
Simon Glass | 2a16595 | 2023-04-25 10:54:37 -0600 | [diff] [blame] | 542 | int tries = 1; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 543 | int device; |
| 544 | |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 545 | device = desc->devnum; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 546 | printf(" Device %d: ", device); |
| 547 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 548 | /* Select device |
| 549 | */ |
| 550 | ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 551 | desc->uclass_id = UCLASS_IDE; |
Simon Glass | 6579bb0 | 2023-04-25 10:54:38 -0600 | [diff] [blame] | 552 | if (IS_ENABLED(CONFIG_ATAPI)) |
| 553 | tries = 2; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 554 | |
Simon Glass | 2a16595 | 2023-04-25 10:54:37 -0600 | [diff] [blame] | 555 | while (tries) { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 556 | /* check signature */ |
Simon Glass | 6579bb0 | 2023-04-25 10:54:38 -0600 | [diff] [blame] | 557 | if (IS_ENABLED(CONFIG_ATAPI) && |
| 558 | ide_inb(device, ATA_SECT_CNT) == 0x01 && |
| 559 | ide_inb(device, ATA_SECT_NUM) == 0x01 && |
| 560 | ide_inb(device, ATA_CYL_LOW) == 0x14 && |
| 561 | ide_inb(device, ATA_CYL_HIGH) == 0xeb) { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 562 | /* ATAPI Signature found */ |
Simon Glass | 606e054 | 2022-08-11 19:34:53 -0600 | [diff] [blame] | 563 | is_atapi = true; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 564 | /* |
| 565 | * Start Ident Command |
| 566 | */ |
Heinrich Schuchardt | e6e9a4f | 2020-02-27 18:28:00 +0100 | [diff] [blame] | 567 | ide_outb(device, ATA_COMMAND, ATA_CMD_ID_ATAPI); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 568 | /* |
| 569 | * Wait for completion - ATAPI devices need more time |
| 570 | * to become ready |
| 571 | */ |
| 572 | c = ide_wait(device, ATAPI_TIME_OUT); |
Simon Glass | 6579bb0 | 2023-04-25 10:54:38 -0600 | [diff] [blame] | 573 | } else { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 574 | /* |
| 575 | * Start Ident Command |
| 576 | */ |
Heinrich Schuchardt | e6e9a4f | 2020-02-27 18:28:00 +0100 | [diff] [blame] | 577 | ide_outb(device, ATA_COMMAND, ATA_CMD_ID_ATA); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 578 | |
| 579 | /* |
| 580 | * Wait for completion |
| 581 | */ |
| 582 | c = ide_wait(device, IDE_TIME_OUT); |
| 583 | } |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 584 | |
Simon Glass | 9367e61 | 2023-04-25 10:54:39 -0600 | [diff] [blame] | 585 | if ((c & ATA_STAT_DRQ) && |
| 586 | !(c & (ATA_STAT_FAULT | ATA_STAT_ERR))) { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 587 | break; |
Simon Glass | 9367e61 | 2023-04-25 10:54:39 -0600 | [diff] [blame] | 588 | } else if (IS_ENABLED(CONFIG_ATAPI)) { |
| 589 | /* |
| 590 | * Need to soft reset the device |
| 591 | * in case it's an ATAPI... |
| 592 | */ |
| 593 | debug("Retrying...\n"); |
| 594 | ide_outb(device, ATA_DEV_HD, |
| 595 | ATA_LBA | ATA_DEVICE(device)); |
| 596 | mdelay(100); |
| 597 | ide_outb(device, ATA_COMMAND, 0x08); |
| 598 | mdelay(500); |
| 599 | /* Select device */ |
| 600 | ide_outb(device, ATA_DEV_HD, |
| 601 | ATA_LBA | ATA_DEVICE(device)); |
Simon Glass | 6579bb0 | 2023-04-25 10:54:38 -0600 | [diff] [blame] | 602 | } |
Simon Glass | 9367e61 | 2023-04-25 10:54:39 -0600 | [diff] [blame] | 603 | tries--; |
Simon Glass | 6579bb0 | 2023-04-25 10:54:38 -0600 | [diff] [blame] | 604 | } |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 605 | |
Simon Glass | 2a16595 | 2023-04-25 10:54:37 -0600 | [diff] [blame] | 606 | if (!tries) /* Not found */ |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 607 | return; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 608 | |
| 609 | ide_input_swap_data(device, (ulong *)&iop, ATA_SECTORWORDS); |
| 610 | |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 611 | ident_cpy((u8 *)desc->revision, iop.fw_rev, sizeof(desc->revision)); |
| 612 | ident_cpy((u8 *)desc->vendor, iop.model, sizeof(desc->vendor)); |
| 613 | ident_cpy((u8 *)desc->product, iop.serial_no, sizeof(desc->product)); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 614 | |
| 615 | if ((iop.config & 0x0080) == 0x0080) |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 616 | desc->removable = 1; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 617 | else |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 618 | desc->removable = 0; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 619 | |
Simon Glass | c94a331 | 2023-04-25 10:54:40 -0600 | [diff] [blame] | 620 | if (IS_ENABLED(CONFIG_ATAPI) && is_atapi) { |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 621 | desc->atapi = true; |
| 622 | atapi_inquiry(desc); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 623 | return; |
| 624 | } |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 625 | |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 626 | iop.lba_capacity[0] = be16_to_cpu(iop.lba_capacity[0]); |
| 627 | iop.lba_capacity[1] = be16_to_cpu(iop.lba_capacity[1]); |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 628 | desc->lba = (ulong)iop.lba_capacity[0] | |
| 629 | (ulong)iop.lba_capacity[1] << 16; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 630 | |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 631 | if (IS_ENABLED(CONFIG_LBA48) && (iop.command_set_2 & 0x0400)) { |
| 632 | /* LBA 48 support */ |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 633 | desc->lba48 = true; |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 634 | for (int i = 0; i < 4; i++) |
| 635 | iop.lba48_capacity[i] = be16_to_cpu(iop.lba48_capacity[i]); |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 636 | desc->lba = (unsigned long long)iop.lba48_capacity[0] | |
| 637 | (unsigned long long)iop.lba48_capacity[1] << 16 | |
| 638 | (unsigned long long)iop.lba48_capacity[2] << 32 | |
| 639 | (unsigned long long)iop.lba48_capacity[3] << 48; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 640 | } else { |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 641 | desc->lba48 = false; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 642 | } |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 643 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 644 | /* assuming HD */ |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 645 | desc->type = DEV_TYPE_HARDDISK; |
| 646 | desc->blksz = ATA_BLOCKSIZE; |
| 647 | desc->log2blksz = LOG2(desc->blksz); |
| 648 | desc->lun = 0; /* just to fill something in... */ |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 649 | |
| 650 | #if 0 /* only used to test the powersaving mode, |
| 651 | * if enabled, the drive goes after 5 sec |
| 652 | * in standby mode */ |
| 653 | ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
| 654 | c = ide_wait(device, IDE_TIME_OUT); |
| 655 | ide_outb(device, ATA_SECT_CNT, 1); |
| 656 | ide_outb(device, ATA_LBA_LOW, 0); |
| 657 | ide_outb(device, ATA_LBA_MID, 0); |
| 658 | ide_outb(device, ATA_LBA_HIGH, 0); |
| 659 | ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
| 660 | ide_outb(device, ATA_COMMAND, 0xe3); |
| 661 | udelay(50); |
| 662 | c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */ |
| 663 | #endif |
| 664 | } |
| 665 | |
Simon Glass | b6483ea | 2023-04-25 10:54:42 -0600 | [diff] [blame] | 666 | /** |
| 667 | * ide_init_one() - Init one IDE device |
| 668 | * |
| 669 | * @bus: Bus to use |
| 670 | * Return: 0 iuf OK, -EIO if not available, -ETIMEDOUT if timed out |
| 671 | */ |
| 672 | static int ide_init_one(int bus) |
| 673 | { |
| 674 | int dev = bus * CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS; |
| 675 | int i; |
| 676 | u8 c; |
| 677 | |
| 678 | printf("Bus %d: ", bus); |
| 679 | |
| 680 | /* Select device */ |
| 681 | mdelay(100); |
| 682 | ide_outb(dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev)); |
| 683 | mdelay(100); |
| 684 | i = 0; |
| 685 | do { |
| 686 | mdelay(10); |
| 687 | |
| 688 | c = ide_inb(dev, ATA_STATUS); |
| 689 | i++; |
| 690 | if (i > (ATA_RESET_TIME * 100)) { |
| 691 | puts("** Timeout **\n"); |
| 692 | return -ETIMEDOUT; |
| 693 | } |
| 694 | if (i >= 100 && !(i % 100)) |
| 695 | putc('.'); |
| 696 | } while (c & ATA_STAT_BUSY); |
| 697 | |
| 698 | if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) { |
| 699 | puts("not available "); |
| 700 | debug("Status = 0x%02X ", c); |
| 701 | return -EIO; |
| 702 | } else if (IS_ENABLED(CONFIG_ATAPI) && !(c & ATA_STAT_READY)) { |
| 703 | /* ATAPI Devices do not set DRDY */ |
| 704 | puts("not available "); |
| 705 | debug("Status = 0x%02X ", c); |
| 706 | return -EIO; |
| 707 | } |
| 708 | puts("OK "); |
| 709 | |
| 710 | return 0; |
| 711 | } |
| 712 | |
Simon Glass | f8e87e7 | 2023-04-25 10:54:33 -0600 | [diff] [blame] | 713 | static void ide_output_data(int dev, const ulong *sect_buf, int words) |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 714 | { |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 715 | uintptr_t paddr = (ATA_CURR_BASE(dev) + ATA_DATA_REG); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 716 | ushort *dbuf; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 717 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 718 | dbuf = (ushort *)sect_buf; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 719 | while (words--) { |
| 720 | EIEIO; |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 721 | outw(cpu_to_le16(*dbuf++), paddr); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 722 | EIEIO; |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 723 | outw(cpu_to_le16(*dbuf++), paddr); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 724 | } |
| 725 | } |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 726 | |
Simon Glass | f8e87e7 | 2023-04-25 10:54:33 -0600 | [diff] [blame] | 727 | static void ide_input_data(int dev, ulong *sect_buf, int words) |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 728 | { |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 729 | uintptr_t paddr = (ATA_CURR_BASE(dev) + ATA_DATA_REG); |
| 730 | ushort *dbuf; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 731 | |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 732 | dbuf = (ushort *)sect_buf; |
| 733 | |
| 734 | debug("in input data base for read is %p\n", (void *)paddr); |
| 735 | |
| 736 | while (words--) { |
| 737 | EIEIO; |
| 738 | *dbuf++ = le16_to_cpu(inw(paddr)); |
| 739 | EIEIO; |
| 740 | *dbuf++ = le16_to_cpu(inw(paddr)); |
| 741 | } |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 742 | } |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 743 | |
Simon Glass | 1b33fd8 | 2023-04-25 10:54:36 -0600 | [diff] [blame] | 744 | static ulong ide_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt, |
| 745 | void *buffer) |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 746 | { |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 747 | struct blk_desc *desc = dev_get_uclass_plat(dev); |
| 748 | int device = desc->devnum; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 749 | ulong n = 0; |
| 750 | unsigned char c; |
| 751 | unsigned char pwrsave = 0; /* power save */ |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 752 | bool lba48 = false; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 753 | |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 754 | if (IS_ENABLED(CONFIG_LBA48) && (blknr & 0x0000fffff0000000ULL)) { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 755 | /* more than 28 bits used, use 48bit mode */ |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 756 | lba48 = true; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 757 | } |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 758 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 759 | debug("ide_read dev %d start " LBAF ", blocks " LBAF " buffer at %lX\n", |
| 760 | device, blknr, blkcnt, (ulong) buffer); |
| 761 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 762 | /* Select device |
| 763 | */ |
| 764 | ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
| 765 | c = ide_wait(device, IDE_TIME_OUT); |
| 766 | |
| 767 | if (c & ATA_STAT_BUSY) { |
| 768 | printf("IDE read: device %d not ready\n", device); |
| 769 | goto IDE_READ_E; |
| 770 | } |
| 771 | |
| 772 | /* first check if the drive is in Powersaving mode, if yes, |
| 773 | * increase the timeout value */ |
Heinrich Schuchardt | e6e9a4f | 2020-02-27 18:28:00 +0100 | [diff] [blame] | 774 | ide_outb(device, ATA_COMMAND, ATA_CMD_CHK_POWER); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 775 | udelay(50); |
| 776 | |
| 777 | c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */ |
| 778 | |
| 779 | if (c & ATA_STAT_BUSY) { |
| 780 | printf("IDE read: device %d not ready\n", device); |
| 781 | goto IDE_READ_E; |
| 782 | } |
| 783 | if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) { |
| 784 | printf("No Powersaving mode %X\n", c); |
| 785 | } else { |
| 786 | c = ide_inb(device, ATA_SECT_CNT); |
| 787 | debug("Powersaving %02X\n", c); |
| 788 | if (c == 0) |
| 789 | pwrsave = 1; |
| 790 | } |
| 791 | |
| 792 | |
| 793 | while (blkcnt-- > 0) { |
| 794 | c = ide_wait(device, IDE_TIME_OUT); |
| 795 | |
| 796 | if (c & ATA_STAT_BUSY) { |
| 797 | printf("IDE read: device %d not ready\n", device); |
| 798 | break; |
| 799 | } |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 800 | if (IS_ENABLED(CONFIG_LBA48) && lba48) { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 801 | /* write high bits */ |
| 802 | ide_outb(device, ATA_SECT_CNT, 0); |
| 803 | ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF); |
| 804 | #ifdef CONFIG_SYS_64BIT_LBA |
| 805 | ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF); |
| 806 | ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF); |
| 807 | #else |
| 808 | ide_outb(device, ATA_LBA_MID, 0); |
| 809 | ide_outb(device, ATA_LBA_HIGH, 0); |
| 810 | #endif |
| 811 | } |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 812 | ide_outb(device, ATA_SECT_CNT, 1); |
| 813 | ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF); |
| 814 | ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF); |
| 815 | ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF); |
| 816 | |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 817 | if (IS_ENABLED(CONFIG_LBA48) && lba48) { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 818 | ide_outb(device, ATA_DEV_HD, |
| 819 | ATA_LBA | ATA_DEVICE(device)); |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 820 | ide_outb(device, ATA_COMMAND, ATA_CMD_PIO_READ_EXT); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 821 | |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 822 | } else { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 823 | ide_outb(device, ATA_DEV_HD, ATA_LBA | |
| 824 | ATA_DEVICE(device) | ((blknr >> 24) & 0xF)); |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 825 | ide_outb(device, ATA_COMMAND, ATA_CMD_PIO_READ); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | udelay(50); |
| 829 | |
| 830 | if (pwrsave) { |
| 831 | /* may take up to 4 sec */ |
| 832 | c = ide_wait(device, IDE_SPIN_UP_TIME_OUT); |
| 833 | pwrsave = 0; |
| 834 | } else { |
| 835 | /* can't take over 500 ms */ |
| 836 | c = ide_wait(device, IDE_TIME_OUT); |
| 837 | } |
| 838 | |
| 839 | if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) != |
| 840 | ATA_STAT_DRQ) { |
| 841 | printf("Error (no IRQ) dev %d blk " LBAF |
| 842 | ": status %#02x\n", device, blknr, c); |
| 843 | break; |
| 844 | } |
| 845 | |
| 846 | ide_input_data(device, buffer, ATA_SECTORWORDS); |
| 847 | (void) ide_inb(device, ATA_STATUS); /* clear IRQ */ |
| 848 | |
| 849 | ++n; |
| 850 | ++blknr; |
| 851 | buffer += ATA_BLOCKSIZE; |
| 852 | } |
| 853 | IDE_READ_E: |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 854 | return n; |
| 855 | } |
| 856 | |
Simon Glass | 1b33fd8 | 2023-04-25 10:54:36 -0600 | [diff] [blame] | 857 | static ulong ide_write(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt, |
| 858 | const void *buffer) |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 859 | { |
Simon Glass | ce99e29 | 2023-04-25 10:54:47 -0600 | [diff] [blame^] | 860 | struct blk_desc *desc = dev_get_uclass_plat(dev); |
| 861 | int device = desc->devnum; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 862 | ulong n = 0; |
| 863 | unsigned char c; |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 864 | bool lba48 = false; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 865 | |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 866 | if (IS_ENABLED(CONFIG_LBA48) && (blknr & 0x0000fffff0000000ULL)) { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 867 | /* more than 28 bits used, use 48bit mode */ |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 868 | lba48 = true; |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 869 | } |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 870 | |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 871 | /* Select device |
| 872 | */ |
| 873 | ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device)); |
| 874 | |
| 875 | while (blkcnt-- > 0) { |
| 876 | c = ide_wait(device, IDE_TIME_OUT); |
| 877 | |
| 878 | if (c & ATA_STAT_BUSY) { |
| 879 | printf("IDE read: device %d not ready\n", device); |
| 880 | goto WR_OUT; |
| 881 | } |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 882 | if (IS_ENABLED(CONFIG_LBA48) && lba48) { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 883 | /* write high bits */ |
| 884 | ide_outb(device, ATA_SECT_CNT, 0); |
| 885 | ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF); |
| 886 | #ifdef CONFIG_SYS_64BIT_LBA |
| 887 | ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF); |
| 888 | ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF); |
| 889 | #else |
| 890 | ide_outb(device, ATA_LBA_MID, 0); |
| 891 | ide_outb(device, ATA_LBA_HIGH, 0); |
| 892 | #endif |
| 893 | } |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 894 | ide_outb(device, ATA_SECT_CNT, 1); |
| 895 | ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF); |
| 896 | ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF); |
| 897 | ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF); |
| 898 | |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 899 | if (IS_ENABLED(CONFIG_LBA48) && lba48) { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 900 | ide_outb(device, ATA_DEV_HD, |
| 901 | ATA_LBA | ATA_DEVICE(device)); |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 902 | ide_outb(device, ATA_COMMAND, ATA_CMD_PIO_WRITE_EXT); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 903 | |
Simon Glass | 8b1b943 | 2023-04-25 10:54:41 -0600 | [diff] [blame] | 904 | } else { |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 905 | ide_outb(device, ATA_DEV_HD, ATA_LBA | |
| 906 | ATA_DEVICE(device) | ((blknr >> 24) & 0xF)); |
Reinoud Zandijk | 0a527fd | 2021-02-24 17:44:42 +0100 | [diff] [blame] | 907 | ide_outb(device, ATA_COMMAND, ATA_CMD_PIO_WRITE); |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 908 | } |
| 909 | |
| 910 | udelay(50); |
| 911 | |
| 912 | /* can't take over 500 ms */ |
| 913 | c = ide_wait(device, IDE_TIME_OUT); |
| 914 | |
| 915 | if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) != |
| 916 | ATA_STAT_DRQ) { |
| 917 | printf("Error (no IRQ) dev %d blk " LBAF |
| 918 | ": status %#02x\n", device, blknr, c); |
| 919 | goto WR_OUT; |
| 920 | } |
| 921 | |
| 922 | ide_output_data(device, buffer, ATA_SECTORWORDS); |
| 923 | c = ide_inb(device, ATA_STATUS); /* clear IRQ */ |
| 924 | ++n; |
| 925 | ++blknr; |
| 926 | buffer += ATA_BLOCKSIZE; |
| 927 | } |
| 928 | WR_OUT: |
Simon Glass | e9be1ee | 2016-05-01 11:36:10 -0600 | [diff] [blame] | 929 | return n; |
| 930 | } |
| 931 | |
Simon Glass | 646deed | 2023-04-25 10:54:35 -0600 | [diff] [blame] | 932 | ulong ide_or_atapi_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt, |
| 933 | void *buffer) |
| 934 | { |
| 935 | struct blk_desc *desc = dev_get_uclass_plat(dev); |
| 936 | |
| 937 | if (IS_ENABLED(CONFIG_ATAPI) && desc->atapi) |
| 938 | return atapi_read(dev, blknr, blkcnt, buffer); |
| 939 | |
| 940 | return ide_read(dev, blknr, blkcnt, buffer); |
| 941 | } |
| 942 | |
Simon Glass | 145df84 | 2016-05-01 11:36:22 -0600 | [diff] [blame] | 943 | static const struct blk_ops ide_blk_ops = { |
Simon Glass | 646deed | 2023-04-25 10:54:35 -0600 | [diff] [blame] | 944 | .read = ide_or_atapi_read, |
Simon Glass | 145df84 | 2016-05-01 11:36:22 -0600 | [diff] [blame] | 945 | .write = ide_write, |
| 946 | }; |
| 947 | |
| 948 | U_BOOT_DRIVER(ide_blk) = { |
| 949 | .name = "ide_blk", |
| 950 | .id = UCLASS_BLK, |
| 951 | .ops = &ide_blk_ops, |
Bin Meng | 68e6f22 | 2017-09-10 05:12:51 -0700 | [diff] [blame] | 952 | }; |
| 953 | |
Simon Glass | 0d77f8f | 2023-01-17 10:47:46 -0700 | [diff] [blame] | 954 | static int ide_bootdev_bind(struct udevice *dev) |
| 955 | { |
| 956 | struct bootdev_uc_plat *ucp = dev_get_uclass_plat(dev); |
| 957 | |
Simon Glass | eacc261 | 2023-01-17 10:48:08 -0700 | [diff] [blame] | 958 | ucp->prio = BOOTDEVP_5_SCAN_SLOW; |
Simon Glass | 0d77f8f | 2023-01-17 10:47:46 -0700 | [diff] [blame] | 959 | |
| 960 | return 0; |
| 961 | } |
| 962 | |
| 963 | static int ide_bootdev_hunt(struct bootdev_hunter *info, bool show) |
| 964 | { |
Simon Glass | 80778f5 | 2023-04-25 10:54:30 -0600 | [diff] [blame] | 965 | struct udevice *dev; |
| 966 | |
| 967 | uclass_first_device(UCLASS_IDE, &dev); |
Simon Glass | 0d77f8f | 2023-01-17 10:47:46 -0700 | [diff] [blame] | 968 | |
| 969 | return 0; |
| 970 | } |
| 971 | |
| 972 | struct bootdev_ops ide_bootdev_ops = { |
| 973 | }; |
| 974 | |
| 975 | static const struct udevice_id ide_bootdev_ids[] = { |
| 976 | { .compatible = "u-boot,bootdev-ide" }, |
| 977 | { } |
| 978 | }; |
| 979 | |
| 980 | U_BOOT_DRIVER(ide_bootdev) = { |
| 981 | .name = "ide_bootdev", |
| 982 | .id = UCLASS_BOOTDEV, |
| 983 | .ops = &ide_bootdev_ops, |
| 984 | .bind = ide_bootdev_bind, |
| 985 | .of_match = ide_bootdev_ids, |
| 986 | }; |
| 987 | |
| 988 | BOOTDEV_HUNTER(ide_bootdev_hunter) = { |
Simon Glass | eacc261 | 2023-01-17 10:48:08 -0700 | [diff] [blame] | 989 | .prio = BOOTDEVP_5_SCAN_SLOW, |
Simon Glass | 0d77f8f | 2023-01-17 10:47:46 -0700 | [diff] [blame] | 990 | .uclass = UCLASS_IDE, |
| 991 | .hunt = ide_bootdev_hunt, |
| 992 | .drv = DM_DRIVER_REF(ide_bootdev), |
| 993 | }; |
| 994 | |
Bin Meng | 68e6f22 | 2017-09-10 05:12:51 -0700 | [diff] [blame] | 995 | static int ide_probe(struct udevice *udev) |
| 996 | { |
Simon Glass | 708404c | 2023-04-25 10:54:45 -0600 | [diff] [blame] | 997 | struct blk_desc ide_dev_desc[CONFIG_SYS_IDE_MAXDEVICE]; |
| 998 | bool bus_ok[CONFIG_SYS_IDE_MAXBUS]; |
| 999 | int i, bus; |
Bin Meng | 68e6f22 | 2017-09-10 05:12:51 -0700 | [diff] [blame] | 1000 | |
Simon Glass | 708404c | 2023-04-25 10:54:45 -0600 | [diff] [blame] | 1001 | schedule(); |
| 1002 | |
| 1003 | /* ATAPI Drives seems to need a proper IDE Reset */ |
| 1004 | ide_reset(); |
| 1005 | |
| 1006 | /* |
| 1007 | * Wait for IDE to get ready. |
| 1008 | * According to spec, this can take up to 31 seconds! |
| 1009 | */ |
| 1010 | for (bus = 0; bus < CONFIG_SYS_IDE_MAXBUS; ++bus) { |
| 1011 | bus_ok[bus] = !ide_init_one(bus); |
| 1012 | schedule(); |
| 1013 | } |
| 1014 | |
| 1015 | putc('\n'); |
| 1016 | |
Simon Glass | f0af25a | 2023-04-25 10:54:46 -0600 | [diff] [blame] | 1017 | schedule(); |
| 1018 | |
| 1019 | for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; i++) { |
| 1020 | if (!bus_ok[IDE_BUS(i)]) |
| 1021 | continue; |
| 1022 | |
Simon Glass | 708404c | 2023-04-25 10:54:45 -0600 | [diff] [blame] | 1023 | ide_dev_desc[i].type = DEV_TYPE_UNKNOWN; |
| 1024 | ide_dev_desc[i].uclass_id = UCLASS_IDE; |
| 1025 | ide_dev_desc[i].devnum = i; |
| 1026 | ide_dev_desc[i].part_type = PART_TYPE_UNKNOWN; |
| 1027 | ide_dev_desc[i].blksz = 0; |
| 1028 | ide_dev_desc[i].log2blksz = |
| 1029 | LOG2_INVALID(typeof(ide_dev_desc[i].log2blksz)); |
| 1030 | ide_dev_desc[i].lba = 0; |
Simon Glass | 708404c | 2023-04-25 10:54:45 -0600 | [diff] [blame] | 1031 | ide_ident(&ide_dev_desc[i]); |
| 1032 | dev_print(&ide_dev_desc[i]); |
Simon Glass | 80778f5 | 2023-04-25 10:54:30 -0600 | [diff] [blame] | 1033 | |
Bin Meng | 68e6f22 | 2017-09-10 05:12:51 -0700 | [diff] [blame] | 1034 | if (ide_dev_desc[i].type != DEV_TYPE_UNKNOWN) { |
Simon Glass | db89e72 | 2023-04-25 10:54:44 -0600 | [diff] [blame] | 1035 | struct udevice *blk_dev; |
| 1036 | struct blk_desc *desc; |
| 1037 | lbaint_t size; |
| 1038 | char name[20]; |
| 1039 | int blksz; |
| 1040 | int ret; |
| 1041 | |
Bin Meng | 68e6f22 | 2017-09-10 05:12:51 -0700 | [diff] [blame] | 1042 | sprintf(name, "blk#%d", i); |
| 1043 | |
| 1044 | blksz = ide_dev_desc[i].blksz; |
| 1045 | size = blksz * ide_dev_desc[i].lba; |
Bin Meng | 1f4adab | 2017-09-10 05:12:52 -0700 | [diff] [blame] | 1046 | |
| 1047 | /* |
| 1048 | * With CDROM, if there is no CD inserted, blksz will |
| 1049 | * be zero, don't bother to create IDE block device. |
| 1050 | */ |
| 1051 | if (!blksz) |
| 1052 | continue; |
Bin Meng | 68e6f22 | 2017-09-10 05:12:51 -0700 | [diff] [blame] | 1053 | ret = blk_create_devicef(udev, "ide_blk", name, |
Simon Glass | e33a5c6 | 2022-08-11 19:34:59 -0600 | [diff] [blame] | 1054 | UCLASS_IDE, i, |
Bin Meng | 68e6f22 | 2017-09-10 05:12:51 -0700 | [diff] [blame] | 1055 | blksz, size, &blk_dev); |
| 1056 | if (ret) |
| 1057 | return ret; |
AKASHI Takahiro | 4c73b03 | 2022-03-08 20:36:44 +0900 | [diff] [blame] | 1058 | |
| 1059 | ret = blk_probe_or_unbind(blk_dev); |
| 1060 | if (ret) |
| 1061 | return ret; |
Simon Glass | 0d77f8f | 2023-01-17 10:47:46 -0700 | [diff] [blame] | 1062 | |
Simon Glass | db89e72 | 2023-04-25 10:54:44 -0600 | [diff] [blame] | 1063 | /* fill in device vendor/product/rev strings */ |
| 1064 | desc = dev_get_uclass_plat(blk_dev); |
| 1065 | strlcpy(desc->vendor, ide_dev_desc[desc->devnum].vendor, |
| 1066 | BLK_VEN_SIZE); |
| 1067 | strlcpy(desc->product, |
| 1068 | ide_dev_desc[desc->devnum].product, |
| 1069 | BLK_PRD_SIZE); |
| 1070 | strlcpy(desc->revision, |
| 1071 | ide_dev_desc[desc->devnum].revision, |
| 1072 | BLK_REV_SIZE); |
Simon Glass | 708404c | 2023-04-25 10:54:45 -0600 | [diff] [blame] | 1073 | |
| 1074 | ret = bootdev_setup_for_dev(udev, "ide_bootdev"); |
| 1075 | if (ret) |
| 1076 | return log_msg_ret("bootdev", ret); |
Bin Meng | 68e6f22 | 2017-09-10 05:12:51 -0700 | [diff] [blame] | 1077 | } |
| 1078 | } |
| 1079 | |
| 1080 | return 0; |
| 1081 | } |
| 1082 | |
| 1083 | U_BOOT_DRIVER(ide) = { |
| 1084 | .name = "ide", |
| 1085 | .id = UCLASS_IDE, |
| 1086 | .probe = ide_probe, |
| 1087 | }; |
| 1088 | |
| 1089 | struct pci_device_id ide_supported[] = { |
| 1090 | { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_IDE << 8, 0xffff00) }, |
| 1091 | { } |
| 1092 | }; |
| 1093 | |
| 1094 | U_BOOT_PCI_DEVICE(ide, ide_supported); |
| 1095 | |
| 1096 | UCLASS_DRIVER(ide) = { |
| 1097 | .name = "ide", |
| 1098 | .id = UCLASS_IDE, |
Simon Glass | 145df84 | 2016-05-01 11:36:22 -0600 | [diff] [blame] | 1099 | }; |