blob: d682d6ad9e6887d24dfe593104c3c415218908d5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glasse9be1ee2016-05-01 11:36:10 -06002/*
3 * (C) Copyright 2000-2011
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glasse9be1ee2016-05-01 11:36:10 -06005 */
6
Patrick Delaunayb953ec22021-04-27 11:02:19 +02007#define LOG_CATEGORY UCLASS_IDE
8
Simon Glasse9be1ee2016-05-01 11:36:10 -06009#include <common.h>
10#include <ata.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060011#include <blk.h>
Simon Glass0d77f8f2023-01-17 10:47:46 -070012#include <bootdev.h>
Simon Glass145df842016-05-01 11:36:22 -060013#include <dm.h>
Simon Glasse9be1ee2016-05-01 11:36:10 -060014#include <ide.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060016#include <part.h>
Simon Glasse9be1ee2016-05-01 11:36:10 -060017#include <watchdog.h>
18#include <asm/io.h>
Simon Glassc05ed002020-05-10 11:40:11 -060019#include <linux/delay.h>
Simon Glasse9be1ee2016-05-01 11:36:10 -060020
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 */
30ulong 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 Glass14a4f522023-04-25 10:54:26 -060039#define ATA_CURR_BASE(dev) (CONFIG_SYS_ATA_BASE_ADDR + \
40 ide_bus_offset[IDE_BUS(dev)])
41
Simon Glasse9be1ee2016-05-01 11:36:10 -060042#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 Glasse9be1ee2016-05-01 11:36:10 -060048#ifdef CONFIG_IDE_RESET
Simon Glasse9be1ee2016-05-01 11:36:10 -060049static void ide_reset(void)
50{
Simon Glasse9be1ee2016-05-01 11:36:10 -060051 ide_set_reset(1); /* assert reset */
52
53 /* the reset signal shall be asserted for et least 25 us */
54 udelay(25);
55
Stefan Roese29caf932022-09-02 14:10:46 +020056 schedule();
Simon Glasse9be1ee2016-05-01 11:36:10 -060057
58 /* de-assert RESET signal */
59 ide_set_reset(0);
60
Simon Glass4d89f4b2023-04-25 10:54:27 -060061 mdelay(250);
Simon Glasse9be1ee2016-05-01 11:36:10 -060062}
63#else
64#define ide_reset() /* dummy */
65#endif /* CONFIG_IDE_RESET */
66
Simon Glassf8e87e72023-04-25 10:54:33 -060067static void ide_outb(int dev, int port, unsigned char val)
Simon Glassbc65bff2023-04-25 10:54:32 -060068{
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 Glassf8e87e72023-04-25 10:54:33 -060075static unsigned char ide_inb(int dev, int port)
Simon Glassbc65bff2023-04-25 10:54:32 -060076{
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 Glassf8e87e72023-04-25 10:54:33 -060086static void ide_input_swap_data(int dev, ulong *sect_buf, int words)
Simon Glassbc65bff2023-04-25 10:54:32 -060087{
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 Glasse9be1ee2016-05-01 11:36:10 -0600101/*
102 * Wait until Busy bit is off, or timeout (in ms)
103 * Return last status
104 */
105static 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 */
123static 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 }
145OUT:
146 *last = '\0';
147}
148
Simon Glasse9be1ee2016-05-01 11:36:10 -0600149/****************************************************************************
150 * ATAPI Support
151 */
152
Simon Glasse9be1ee2016-05-01 11:36:10 -0600153/* since ATAPI may use commands with not 4 bytes alligned length
154 * we have our own transfer functions, 2 bytes alligned */
Simon Glassf8e87e72023-04-25 10:54:33 -0600155static void ide_output_data_shorts(int dev, ushort *sect_buf, int shorts)
Simon Glasse9be1ee2016-05-01 11:36:10 -0600156{
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100157 uintptr_t paddr = (ATA_CURR_BASE(dev) + ATA_DATA_REG);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600158 ushort *dbuf;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600159
Simon Glasse9be1ee2016-05-01 11:36:10 -0600160 dbuf = (ushort *)sect_buf;
161
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100162 debug("in output data shorts base for read is %p\n", (void *)paddr);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600163
164 while (shorts--) {
165 EIEIO;
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100166 outw(cpu_to_le16(*dbuf++), paddr);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600167 }
168}
169
Simon Glassf8e87e72023-04-25 10:54:33 -0600170static void ide_input_data_shorts(int dev, ushort *sect_buf, int shorts)
Simon Glasse9be1ee2016-05-01 11:36:10 -0600171{
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100172 uintptr_t paddr = (ATA_CURR_BASE(dev) + ATA_DATA_REG);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600173 ushort *dbuf;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600174
Simon Glasse9be1ee2016-05-01 11:36:10 -0600175 dbuf = (ushort *)sect_buf;
176
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100177 debug("in input data shorts base for read is %p\n", (void *)paddr);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600178
179 while (shorts--) {
180 EIEIO;
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100181 *dbuf++ = le16_to_cpu(inw(paddr));
Simon Glasse9be1ee2016-05-01 11:36:10 -0600182 }
183}
184
Simon Glasse9be1ee2016-05-01 11:36:10 -0600185/*
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 */
191static 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 Glass1b33fd82023-04-25 10:54:36 -0600213static unsigned char atapi_issue(int device, unsigned char *ccb, int ccblen,
214 unsigned char *buffer, int buflen)
Simon Glasse9be1ee2016-05-01 11:36:10 -0600215{
216 unsigned char c, err, mask, res;
217 int n;
218
Simon Glasse9be1ee2016-05-01 11:36:10 -0600219 /* 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 Schuchardte6e9a4f2020-02-27 18:28:00 +0100240 ide_outb(device, ATA_COMMAND, ATA_CMD_PACKET);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600241 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 Glass4d89f4b2023-04-25 10:54:27 -0600258 mdelay(5); /* device must set bsy */
Simon Glasse9be1ee2016-05-01 11:36:10 -0600259
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 Glass4d89f4b2023-04-25 10:54:27 -0600314 mdelay(5); /* seems that some CD ROMs need this... */
Simon Glasse9be1ee2016-05-01 11:36:10 -0600315 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 }
325AI_OUT:
Simon Glasse9be1ee2016-05-01 11:36:10 -0600326 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 Glass1b33fd82023-04-25 10:54:36 -0600337static unsigned char atapi_issue_autoreq(int device, unsigned char *ccb,
338 int ccblen,
339 unsigned char *buffer, int buflen)
Simon Glasse9be1ee2016-05-01 11:36:10 -0600340{
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
348retry:
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 Glass4d89f4b2023-04-25 10:54:27 -0600377 mdelay(200);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600378 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 Glass4d89f4b2023-04-25 10:54:27 -0600386 mdelay(200);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600387 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);
400error:
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 Glass1b33fd82023-04-25 10:54:36 -0600414static ulong atapi_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
415 void *buffer)
Simon Glasse9be1ee2016-05-01 11:36:10 -0600416{
Simon Glass646deed2023-04-25 10:54:35 -0600417 struct blk_desc *block_dev = dev_get_uclass_plat(dev);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600418 int device = block_dev->devnum;
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
459static void atapi_inquiry(struct blk_desc *dev_desc)
460{
461 unsigned char ccb[12]; /* Command descriptor block */
462 unsigned char iobuf[64]; /* temp buf */
463 unsigned char c;
464 int device;
465
466 device = dev_desc->devnum;
467 dev_desc->type = DEV_TYPE_UNKNOWN; /* not yet valid */
Simon Glasse9be1ee2016-05-01 11:36:10 -0600468
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 */
481 ident_cpy((unsigned char *)dev_desc->vendor, &iobuf[8], 8);
482 ident_cpy((unsigned char *)dev_desc->product, &iobuf[16], 16);
483 ident_cpy((unsigned char *)dev_desc->revision, &iobuf[32], 5);
484
485 dev_desc->lun = 0;
486 dev_desc->lba = 0;
487 dev_desc->blksz = 0;
488 dev_desc->log2blksz = LOG2_INVALID(typeof(dev_desc->log2blksz));
489 dev_desc->type = iobuf[0] & 0x1f;
490
491 if ((iobuf[1] & 0x80) == 0x80)
492 dev_desc->removable = 1;
493 else
494 dev_desc->removable = 0;
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
527 dev_desc->lba = ((unsigned long) iobuf[0] << 24) +
528 ((unsigned long) iobuf[1] << 16) +
529 ((unsigned long) iobuf[2] << 8) + ((unsigned long) iobuf[3]);
530 dev_desc->blksz = ((unsigned long) iobuf[4] << 24) +
531 ((unsigned long) iobuf[5] << 16) +
532 ((unsigned long) iobuf[6] << 8) + ((unsigned long) iobuf[7]);
533 dev_desc->log2blksz = LOG2(dev_desc->blksz);
Simon Glass8b1b9432023-04-25 10:54:41 -0600534
Simon Glasse9be1ee2016-05-01 11:36:10 -0600535 /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
Simon Glass8b1b9432023-04-25 10:54:41 -0600536 dev_desc->lba48 = false;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600537}
538
Simon Glasse9be1ee2016-05-01 11:36:10 -0600539static void ide_ident(struct blk_desc *dev_desc)
540{
541 unsigned char c;
542 hd_driveid_t iop;
Simon Glass606e0542022-08-11 19:34:53 -0600543 bool is_atapi = false;
Simon Glass2a165952023-04-25 10:54:37 -0600544 int tries = 1;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600545 int device;
546
547 device = dev_desc->devnum;
548 printf(" Device %d: ", device);
549
Simon Glasse9be1ee2016-05-01 11:36:10 -0600550 /* Select device
551 */
552 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
Simon Glass8149b152022-09-17 09:00:09 -0600553 dev_desc->uclass_id = UCLASS_IDE;
Simon Glass6579bb02023-04-25 10:54:38 -0600554 if (IS_ENABLED(CONFIG_ATAPI))
555 tries = 2;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600556
Simon Glass2a165952023-04-25 10:54:37 -0600557 while (tries) {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600558 /* check signature */
Simon Glass6579bb02023-04-25 10:54:38 -0600559 if (IS_ENABLED(CONFIG_ATAPI) &&
560 ide_inb(device, ATA_SECT_CNT) == 0x01 &&
561 ide_inb(device, ATA_SECT_NUM) == 0x01 &&
562 ide_inb(device, ATA_CYL_LOW) == 0x14 &&
563 ide_inb(device, ATA_CYL_HIGH) == 0xeb) {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600564 /* ATAPI Signature found */
Simon Glass606e0542022-08-11 19:34:53 -0600565 is_atapi = true;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600566 /*
567 * Start Ident Command
568 */
Heinrich Schuchardte6e9a4f2020-02-27 18:28:00 +0100569 ide_outb(device, ATA_COMMAND, ATA_CMD_ID_ATAPI);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600570 /*
571 * Wait for completion - ATAPI devices need more time
572 * to become ready
573 */
574 c = ide_wait(device, ATAPI_TIME_OUT);
Simon Glass6579bb02023-04-25 10:54:38 -0600575 } else {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600576 /*
577 * Start Ident Command
578 */
Heinrich Schuchardte6e9a4f2020-02-27 18:28:00 +0100579 ide_outb(device, ATA_COMMAND, ATA_CMD_ID_ATA);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600580
581 /*
582 * Wait for completion
583 */
584 c = ide_wait(device, IDE_TIME_OUT);
585 }
Simon Glasse9be1ee2016-05-01 11:36:10 -0600586
Simon Glass9367e612023-04-25 10:54:39 -0600587 if ((c & ATA_STAT_DRQ) &&
588 !(c & (ATA_STAT_FAULT | ATA_STAT_ERR))) {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600589 break;
Simon Glass9367e612023-04-25 10:54:39 -0600590 } else if (IS_ENABLED(CONFIG_ATAPI)) {
591 /*
592 * Need to soft reset the device
593 * in case it's an ATAPI...
594 */
595 debug("Retrying...\n");
596 ide_outb(device, ATA_DEV_HD,
597 ATA_LBA | ATA_DEVICE(device));
598 mdelay(100);
599 ide_outb(device, ATA_COMMAND, 0x08);
600 mdelay(500);
601 /* Select device */
602 ide_outb(device, ATA_DEV_HD,
603 ATA_LBA | ATA_DEVICE(device));
Simon Glass6579bb02023-04-25 10:54:38 -0600604 }
Simon Glass9367e612023-04-25 10:54:39 -0600605 tries--;
Simon Glass6579bb02023-04-25 10:54:38 -0600606 }
Simon Glasse9be1ee2016-05-01 11:36:10 -0600607
Simon Glass2a165952023-04-25 10:54:37 -0600608 if (!tries) /* Not found */
Simon Glasse9be1ee2016-05-01 11:36:10 -0600609 return;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600610
611 ide_input_swap_data(device, (ulong *)&iop, ATA_SECTORWORDS);
612
613 ident_cpy((unsigned char *)dev_desc->revision, iop.fw_rev,
614 sizeof(dev_desc->revision));
615 ident_cpy((unsigned char *)dev_desc->vendor, iop.model,
616 sizeof(dev_desc->vendor));
617 ident_cpy((unsigned char *)dev_desc->product, iop.serial_no,
618 sizeof(dev_desc->product));
Simon Glasse9be1ee2016-05-01 11:36:10 -0600619
620 if ((iop.config & 0x0080) == 0x0080)
621 dev_desc->removable = 1;
622 else
623 dev_desc->removable = 0;
624
Simon Glassc94a3312023-04-25 10:54:40 -0600625 if (IS_ENABLED(CONFIG_ATAPI) && is_atapi) {
Simon Glass646deed2023-04-25 10:54:35 -0600626 dev_desc->atapi = true;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600627 atapi_inquiry(dev_desc);
628 return;
629 }
Simon Glasse9be1ee2016-05-01 11:36:10 -0600630
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100631 iop.lba_capacity[0] = be16_to_cpu(iop.lba_capacity[0]);
632 iop.lba_capacity[1] = be16_to_cpu(iop.lba_capacity[1]);
633 dev_desc->lba =
634 ((unsigned long)iop.lba_capacity[0]) |
635 ((unsigned long)iop.lba_capacity[1] << 16);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600636
Simon Glass8b1b9432023-04-25 10:54:41 -0600637 if (IS_ENABLED(CONFIG_LBA48) && (iop.command_set_2 & 0x0400)) {
638 /* LBA 48 support */
639 dev_desc->lba48 = true;
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100640 for (int i = 0; i < 4; i++)
641 iop.lba48_capacity[i] = be16_to_cpu(iop.lba48_capacity[i]);
642 dev_desc->lba =
643 ((unsigned long long)iop.lba48_capacity[0] |
644 ((unsigned long long)iop.lba48_capacity[1] << 16) |
645 ((unsigned long long)iop.lba48_capacity[2] << 32) |
646 ((unsigned long long)iop.lba48_capacity[3] << 48));
Simon Glasse9be1ee2016-05-01 11:36:10 -0600647 } else {
Simon Glass8b1b9432023-04-25 10:54:41 -0600648 dev_desc->lba48 = false;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600649 }
Simon Glass8b1b9432023-04-25 10:54:41 -0600650
Simon Glasse9be1ee2016-05-01 11:36:10 -0600651 /* assuming HD */
652 dev_desc->type = DEV_TYPE_HARDDISK;
653 dev_desc->blksz = ATA_BLOCKSIZE;
654 dev_desc->log2blksz = LOG2(dev_desc->blksz);
655 dev_desc->lun = 0; /* just to fill something in... */
656
657#if 0 /* only used to test the powersaving mode,
658 * if enabled, the drive goes after 5 sec
659 * in standby mode */
660 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
661 c = ide_wait(device, IDE_TIME_OUT);
662 ide_outb(device, ATA_SECT_CNT, 1);
663 ide_outb(device, ATA_LBA_LOW, 0);
664 ide_outb(device, ATA_LBA_MID, 0);
665 ide_outb(device, ATA_LBA_HIGH, 0);
666 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
667 ide_outb(device, ATA_COMMAND, 0xe3);
668 udelay(50);
669 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
670#endif
671}
672
Simon Glassb6483ea2023-04-25 10:54:42 -0600673/**
674 * ide_init_one() - Init one IDE device
675 *
676 * @bus: Bus to use
677 * Return: 0 iuf OK, -EIO if not available, -ETIMEDOUT if timed out
678 */
679static int ide_init_one(int bus)
680{
681 int dev = bus * CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS;
682 int i;
683 u8 c;
684
685 printf("Bus %d: ", bus);
686
687 /* Select device */
688 mdelay(100);
689 ide_outb(dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
690 mdelay(100);
691 i = 0;
692 do {
693 mdelay(10);
694
695 c = ide_inb(dev, ATA_STATUS);
696 i++;
697 if (i > (ATA_RESET_TIME * 100)) {
698 puts("** Timeout **\n");
699 return -ETIMEDOUT;
700 }
701 if (i >= 100 && !(i % 100))
702 putc('.');
703 } while (c & ATA_STAT_BUSY);
704
705 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
706 puts("not available ");
707 debug("Status = 0x%02X ", c);
708 return -EIO;
709 } else if (IS_ENABLED(CONFIG_ATAPI) && !(c & ATA_STAT_READY)) {
710 /* ATAPI Devices do not set DRDY */
711 puts("not available ");
712 debug("Status = 0x%02X ", c);
713 return -EIO;
714 }
715 puts("OK ");
716
717 return 0;
718}
719
Simon Glassf8e87e72023-04-25 10:54:33 -0600720static void ide_output_data(int dev, const ulong *sect_buf, int words)
Simon Glasse9be1ee2016-05-01 11:36:10 -0600721{
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100722 uintptr_t paddr = (ATA_CURR_BASE(dev) + ATA_DATA_REG);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600723 ushort *dbuf;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600724
Simon Glasse9be1ee2016-05-01 11:36:10 -0600725 dbuf = (ushort *)sect_buf;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600726 while (words--) {
727 EIEIO;
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100728 outw(cpu_to_le16(*dbuf++), paddr);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600729 EIEIO;
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100730 outw(cpu_to_le16(*dbuf++), paddr);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600731 }
732}
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100733
Simon Glassf8e87e72023-04-25 10:54:33 -0600734static void ide_input_data(int dev, ulong *sect_buf, int words)
Simon Glasse9be1ee2016-05-01 11:36:10 -0600735{
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100736 uintptr_t paddr = (ATA_CURR_BASE(dev) + ATA_DATA_REG);
737 ushort *dbuf;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600738
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100739 dbuf = (ushort *)sect_buf;
740
741 debug("in input data base for read is %p\n", (void *)paddr);
742
743 while (words--) {
744 EIEIO;
745 *dbuf++ = le16_to_cpu(inw(paddr));
746 EIEIO;
747 *dbuf++ = le16_to_cpu(inw(paddr));
748 }
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100749}
Simon Glasse9be1ee2016-05-01 11:36:10 -0600750
Simon Glass1b33fd82023-04-25 10:54:36 -0600751static ulong ide_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
752 void *buffer)
Simon Glasse9be1ee2016-05-01 11:36:10 -0600753{
Simon Glasscaa4daa2020-12-03 16:55:18 -0700754 struct blk_desc *block_dev = dev_get_uclass_plat(dev);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600755 int device = block_dev->devnum;
756 ulong n = 0;
757 unsigned char c;
758 unsigned char pwrsave = 0; /* power save */
Simon Glass8b1b9432023-04-25 10:54:41 -0600759 bool lba48 = false;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600760
Simon Glass8b1b9432023-04-25 10:54:41 -0600761 if (IS_ENABLED(CONFIG_LBA48) && (blknr & 0x0000fffff0000000ULL)) {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600762 /* more than 28 bits used, use 48bit mode */
Simon Glass8b1b9432023-04-25 10:54:41 -0600763 lba48 = true;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600764 }
Simon Glass8b1b9432023-04-25 10:54:41 -0600765
Simon Glasse9be1ee2016-05-01 11:36:10 -0600766 debug("ide_read dev %d start " LBAF ", blocks " LBAF " buffer at %lX\n",
767 device, blknr, blkcnt, (ulong) buffer);
768
Simon Glasse9be1ee2016-05-01 11:36:10 -0600769 /* Select device
770 */
771 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
772 c = ide_wait(device, IDE_TIME_OUT);
773
774 if (c & ATA_STAT_BUSY) {
775 printf("IDE read: device %d not ready\n", device);
776 goto IDE_READ_E;
777 }
778
779 /* first check if the drive is in Powersaving mode, if yes,
780 * increase the timeout value */
Heinrich Schuchardte6e9a4f2020-02-27 18:28:00 +0100781 ide_outb(device, ATA_COMMAND, ATA_CMD_CHK_POWER);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600782 udelay(50);
783
784 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
785
786 if (c & ATA_STAT_BUSY) {
787 printf("IDE read: device %d not ready\n", device);
788 goto IDE_READ_E;
789 }
790 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
791 printf("No Powersaving mode %X\n", c);
792 } else {
793 c = ide_inb(device, ATA_SECT_CNT);
794 debug("Powersaving %02X\n", c);
795 if (c == 0)
796 pwrsave = 1;
797 }
798
799
800 while (blkcnt-- > 0) {
801 c = ide_wait(device, IDE_TIME_OUT);
802
803 if (c & ATA_STAT_BUSY) {
804 printf("IDE read: device %d not ready\n", device);
805 break;
806 }
Simon Glass8b1b9432023-04-25 10:54:41 -0600807 if (IS_ENABLED(CONFIG_LBA48) && lba48) {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600808 /* write high bits */
809 ide_outb(device, ATA_SECT_CNT, 0);
810 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
811#ifdef CONFIG_SYS_64BIT_LBA
812 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
813 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
814#else
815 ide_outb(device, ATA_LBA_MID, 0);
816 ide_outb(device, ATA_LBA_HIGH, 0);
817#endif
818 }
Simon Glasse9be1ee2016-05-01 11:36:10 -0600819 ide_outb(device, ATA_SECT_CNT, 1);
820 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
821 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
822 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
823
Simon Glass8b1b9432023-04-25 10:54:41 -0600824 if (IS_ENABLED(CONFIG_LBA48) && lba48) {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600825 ide_outb(device, ATA_DEV_HD,
826 ATA_LBA | ATA_DEVICE(device));
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100827 ide_outb(device, ATA_COMMAND, ATA_CMD_PIO_READ_EXT);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600828
Simon Glass8b1b9432023-04-25 10:54:41 -0600829 } else {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600830 ide_outb(device, ATA_DEV_HD, ATA_LBA |
831 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100832 ide_outb(device, ATA_COMMAND, ATA_CMD_PIO_READ);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600833 }
834
835 udelay(50);
836
837 if (pwrsave) {
838 /* may take up to 4 sec */
839 c = ide_wait(device, IDE_SPIN_UP_TIME_OUT);
840 pwrsave = 0;
841 } else {
842 /* can't take over 500 ms */
843 c = ide_wait(device, IDE_TIME_OUT);
844 }
845
846 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
847 ATA_STAT_DRQ) {
848 printf("Error (no IRQ) dev %d blk " LBAF
849 ": status %#02x\n", device, blknr, c);
850 break;
851 }
852
853 ide_input_data(device, buffer, ATA_SECTORWORDS);
854 (void) ide_inb(device, ATA_STATUS); /* clear IRQ */
855
856 ++n;
857 ++blknr;
858 buffer += ATA_BLOCKSIZE;
859 }
860IDE_READ_E:
Simon Glasse9be1ee2016-05-01 11:36:10 -0600861 return n;
862}
863
Simon Glass1b33fd82023-04-25 10:54:36 -0600864static ulong ide_write(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
865 const void *buffer)
Simon Glasse9be1ee2016-05-01 11:36:10 -0600866{
Simon Glasscaa4daa2020-12-03 16:55:18 -0700867 struct blk_desc *block_dev = dev_get_uclass_plat(dev);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600868 int device = block_dev->devnum;
869 ulong n = 0;
870 unsigned char c;
Simon Glass8b1b9432023-04-25 10:54:41 -0600871 bool lba48 = false;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600872
Simon Glass8b1b9432023-04-25 10:54:41 -0600873 if (IS_ENABLED(CONFIG_LBA48) && (blknr & 0x0000fffff0000000ULL)) {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600874 /* more than 28 bits used, use 48bit mode */
Simon Glass8b1b9432023-04-25 10:54:41 -0600875 lba48 = true;
Simon Glasse9be1ee2016-05-01 11:36:10 -0600876 }
Simon Glasse9be1ee2016-05-01 11:36:10 -0600877
Simon Glasse9be1ee2016-05-01 11:36:10 -0600878 /* Select device
879 */
880 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
881
882 while (blkcnt-- > 0) {
883 c = ide_wait(device, IDE_TIME_OUT);
884
885 if (c & ATA_STAT_BUSY) {
886 printf("IDE read: device %d not ready\n", device);
887 goto WR_OUT;
888 }
Simon Glass8b1b9432023-04-25 10:54:41 -0600889 if (IS_ENABLED(CONFIG_LBA48) && lba48) {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600890 /* write high bits */
891 ide_outb(device, ATA_SECT_CNT, 0);
892 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
893#ifdef CONFIG_SYS_64BIT_LBA
894 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
895 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
896#else
897 ide_outb(device, ATA_LBA_MID, 0);
898 ide_outb(device, ATA_LBA_HIGH, 0);
899#endif
900 }
Simon Glasse9be1ee2016-05-01 11:36:10 -0600901 ide_outb(device, ATA_SECT_CNT, 1);
902 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
903 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
904 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
905
Simon Glass8b1b9432023-04-25 10:54:41 -0600906 if (IS_ENABLED(CONFIG_LBA48) && lba48) {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600907 ide_outb(device, ATA_DEV_HD,
908 ATA_LBA | ATA_DEVICE(device));
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100909 ide_outb(device, ATA_COMMAND, ATA_CMD_PIO_WRITE_EXT);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600910
Simon Glass8b1b9432023-04-25 10:54:41 -0600911 } else {
Simon Glasse9be1ee2016-05-01 11:36:10 -0600912 ide_outb(device, ATA_DEV_HD, ATA_LBA |
913 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
Reinoud Zandijk0a527fd2021-02-24 17:44:42 +0100914 ide_outb(device, ATA_COMMAND, ATA_CMD_PIO_WRITE);
Simon Glasse9be1ee2016-05-01 11:36:10 -0600915 }
916
917 udelay(50);
918
919 /* can't take over 500 ms */
920 c = ide_wait(device, IDE_TIME_OUT);
921
922 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
923 ATA_STAT_DRQ) {
924 printf("Error (no IRQ) dev %d blk " LBAF
925 ": status %#02x\n", device, blknr, c);
926 goto WR_OUT;
927 }
928
929 ide_output_data(device, buffer, ATA_SECTORWORDS);
930 c = ide_inb(device, ATA_STATUS); /* clear IRQ */
931 ++n;
932 ++blknr;
933 buffer += ATA_BLOCKSIZE;
934 }
935WR_OUT:
Simon Glasse9be1ee2016-05-01 11:36:10 -0600936 return n;
937}
938
Simon Glass646deed2023-04-25 10:54:35 -0600939ulong ide_or_atapi_read(struct udevice *dev, lbaint_t blknr, lbaint_t blkcnt,
940 void *buffer)
941{
942 struct blk_desc *desc = dev_get_uclass_plat(dev);
943
944 if (IS_ENABLED(CONFIG_ATAPI) && desc->atapi)
945 return atapi_read(dev, blknr, blkcnt, buffer);
946
947 return ide_read(dev, blknr, blkcnt, buffer);
948}
949
Simon Glass145df842016-05-01 11:36:22 -0600950static const struct blk_ops ide_blk_ops = {
Simon Glass646deed2023-04-25 10:54:35 -0600951 .read = ide_or_atapi_read,
Simon Glass145df842016-05-01 11:36:22 -0600952 .write = ide_write,
953};
954
955U_BOOT_DRIVER(ide_blk) = {
956 .name = "ide_blk",
957 .id = UCLASS_BLK,
958 .ops = &ide_blk_ops,
Bin Meng68e6f222017-09-10 05:12:51 -0700959};
960
Simon Glass0d77f8f2023-01-17 10:47:46 -0700961static int ide_bootdev_bind(struct udevice *dev)
962{
963 struct bootdev_uc_plat *ucp = dev_get_uclass_plat(dev);
964
Simon Glasseacc2612023-01-17 10:48:08 -0700965 ucp->prio = BOOTDEVP_5_SCAN_SLOW;
Simon Glass0d77f8f2023-01-17 10:47:46 -0700966
967 return 0;
968}
969
970static int ide_bootdev_hunt(struct bootdev_hunter *info, bool show)
971{
Simon Glass80778f52023-04-25 10:54:30 -0600972 struct udevice *dev;
973
974 uclass_first_device(UCLASS_IDE, &dev);
Simon Glass0d77f8f2023-01-17 10:47:46 -0700975
976 return 0;
977}
978
979struct bootdev_ops ide_bootdev_ops = {
980};
981
982static const struct udevice_id ide_bootdev_ids[] = {
983 { .compatible = "u-boot,bootdev-ide" },
984 { }
985};
986
987U_BOOT_DRIVER(ide_bootdev) = {
988 .name = "ide_bootdev",
989 .id = UCLASS_BOOTDEV,
990 .ops = &ide_bootdev_ops,
991 .bind = ide_bootdev_bind,
992 .of_match = ide_bootdev_ids,
993};
994
995BOOTDEV_HUNTER(ide_bootdev_hunter) = {
Simon Glasseacc2612023-01-17 10:48:08 -0700996 .prio = BOOTDEVP_5_SCAN_SLOW,
Simon Glass0d77f8f2023-01-17 10:47:46 -0700997 .uclass = UCLASS_IDE,
998 .hunt = ide_bootdev_hunt,
999 .drv = DM_DRIVER_REF(ide_bootdev),
1000};
1001
Bin Meng68e6f222017-09-10 05:12:51 -07001002static int ide_probe(struct udevice *udev)
1003{
Simon Glass708404c2023-04-25 10:54:45 -06001004 struct blk_desc ide_dev_desc[CONFIG_SYS_IDE_MAXDEVICE];
1005 bool bus_ok[CONFIG_SYS_IDE_MAXBUS];
1006 int i, bus;
Bin Meng68e6f222017-09-10 05:12:51 -07001007
Simon Glass708404c2023-04-25 10:54:45 -06001008 schedule();
1009
1010 /* ATAPI Drives seems to need a proper IDE Reset */
1011 ide_reset();
1012
1013 /*
1014 * Wait for IDE to get ready.
1015 * According to spec, this can take up to 31 seconds!
1016 */
1017 for (bus = 0; bus < CONFIG_SYS_IDE_MAXBUS; ++bus) {
1018 bus_ok[bus] = !ide_init_one(bus);
1019 schedule();
1020 }
1021
1022 putc('\n');
1023
Simon Glassf0af25a2023-04-25 10:54:46 -06001024 schedule();
1025
1026 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; i++) {
1027 if (!bus_ok[IDE_BUS(i)])
1028 continue;
1029
Simon Glass708404c2023-04-25 10:54:45 -06001030 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1031 ide_dev_desc[i].uclass_id = UCLASS_IDE;
1032 ide_dev_desc[i].devnum = i;
1033 ide_dev_desc[i].part_type = PART_TYPE_UNKNOWN;
1034 ide_dev_desc[i].blksz = 0;
1035 ide_dev_desc[i].log2blksz =
1036 LOG2_INVALID(typeof(ide_dev_desc[i].log2blksz));
1037 ide_dev_desc[i].lba = 0;
Simon Glass708404c2023-04-25 10:54:45 -06001038 ide_ident(&ide_dev_desc[i]);
1039 dev_print(&ide_dev_desc[i]);
Simon Glass80778f52023-04-25 10:54:30 -06001040
Bin Meng68e6f222017-09-10 05:12:51 -07001041 if (ide_dev_desc[i].type != DEV_TYPE_UNKNOWN) {
Simon Glassdb89e722023-04-25 10:54:44 -06001042 struct udevice *blk_dev;
1043 struct blk_desc *desc;
1044 lbaint_t size;
1045 char name[20];
1046 int blksz;
1047 int ret;
1048
Bin Meng68e6f222017-09-10 05:12:51 -07001049 sprintf(name, "blk#%d", i);
1050
1051 blksz = ide_dev_desc[i].blksz;
1052 size = blksz * ide_dev_desc[i].lba;
Bin Meng1f4adab2017-09-10 05:12:52 -07001053
1054 /*
1055 * With CDROM, if there is no CD inserted, blksz will
1056 * be zero, don't bother to create IDE block device.
1057 */
1058 if (!blksz)
1059 continue;
Bin Meng68e6f222017-09-10 05:12:51 -07001060 ret = blk_create_devicef(udev, "ide_blk", name,
Simon Glasse33a5c62022-08-11 19:34:59 -06001061 UCLASS_IDE, i,
Bin Meng68e6f222017-09-10 05:12:51 -07001062 blksz, size, &blk_dev);
1063 if (ret)
1064 return ret;
AKASHI Takahiro4c73b032022-03-08 20:36:44 +09001065
1066 ret = blk_probe_or_unbind(blk_dev);
1067 if (ret)
1068 return ret;
Simon Glass0d77f8f2023-01-17 10:47:46 -07001069
Simon Glassdb89e722023-04-25 10:54:44 -06001070 /* fill in device vendor/product/rev strings */
1071 desc = dev_get_uclass_plat(blk_dev);
1072 strlcpy(desc->vendor, ide_dev_desc[desc->devnum].vendor,
1073 BLK_VEN_SIZE);
1074 strlcpy(desc->product,
1075 ide_dev_desc[desc->devnum].product,
1076 BLK_PRD_SIZE);
1077 strlcpy(desc->revision,
1078 ide_dev_desc[desc->devnum].revision,
1079 BLK_REV_SIZE);
Simon Glass708404c2023-04-25 10:54:45 -06001080
1081 ret = bootdev_setup_for_dev(udev, "ide_bootdev");
1082 if (ret)
1083 return log_msg_ret("bootdev", ret);
Bin Meng68e6f222017-09-10 05:12:51 -07001084 }
1085 }
1086
1087 return 0;
1088}
1089
1090U_BOOT_DRIVER(ide) = {
1091 .name = "ide",
1092 .id = UCLASS_IDE,
1093 .probe = ide_probe,
1094};
1095
1096struct pci_device_id ide_supported[] = {
1097 { PCI_DEVICE_CLASS(PCI_CLASS_STORAGE_IDE << 8, 0xffff00) },
1098 { }
1099};
1100
1101U_BOOT_PCI_DEVICE(ide, ide_supported);
1102
1103UCLASS_DRIVER(ide) = {
1104 .name = "ide",
1105 .id = UCLASS_IDE,
Simon Glass145df842016-05-01 11:36:22 -06001106};