blob: c375ef2093b46ea3507c1071ff0bb26aa2489314 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
Wolfgang Denk34c202c2011-10-29 09:41:40 +00002 * (C) Copyright 2000-2011
wdenkc6097192002-11-03 00:24:07 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00006 */
7
8/*
9 * IDE support
10 */
Albert Aribaud113bfe42010-08-08 05:17:06 +053011
wdenkc6097192002-11-03 00:24:07 +000012#include <common.h>
13#include <config.h>
14#include <watchdog.h>
15#include <command.h>
16#include <image.h>
17#include <asm/byteorder.h>
Heiko Schocherf98984c2007-08-28 17:39:14 +020018#include <asm/io.h>
Grant Likely735dd972007-02-20 09:04:34 +010019
wdenkc6097192002-11-03 00:24:07 +000020#if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
21# include <pcmcia.h>
22#endif
Grant Likely735dd972007-02-20 09:04:34 +010023
wdenkc6097192002-11-03 00:24:07 +000024#include <ide.h>
25#include <ata.h>
Grant Likely735dd972007-02-20 09:04:34 +010026
wdenkc6097192002-11-03 00:24:07 +000027#ifdef CONFIG_STATUS_LED
28# include <status_led.h>
29#endif
Grant Likely735dd972007-02-20 09:04:34 +010030
wdenk5cf91d62004-04-23 20:32:05 +000031#ifdef __PPC__
32# define EIEIO __asm__ volatile ("eieio")
wdenk1a344f22005-02-03 23:00:49 +000033# define SYNC __asm__ volatile ("sync")
wdenk5cf91d62004-04-23 20:32:05 +000034#else
35# define EIEIO /* nothing */
wdenk1a344f22005-02-03 23:00:49 +000036# define SYNC /* nothing */
wdenkc6097192002-11-03 00:24:07 +000037#endif
38
wdenkc6097192002-11-03 00:24:07 +000039/* ------------------------------------------------------------------------- */
40
41/* Current I/O Device */
42static int curr_device = -1;
43
44/* Current offset for IDE0 / IDE1 bus access */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045ulong ide_bus_offset[CONFIG_SYS_IDE_MAXBUS] = {
46#if defined(CONFIG_SYS_ATA_IDE0_OFFSET)
47 CONFIG_SYS_ATA_IDE0_OFFSET,
wdenkc6097192002-11-03 00:24:07 +000048#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020049#if defined(CONFIG_SYS_ATA_IDE1_OFFSET) && (CONFIG_SYS_IDE_MAXBUS > 1)
50 CONFIG_SYS_ATA_IDE1_OFFSET,
wdenkc6097192002-11-03 00:24:07 +000051#endif
52};
53
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020054static int ide_bus_ok[CONFIG_SYS_IDE_MAXBUS];
wdenkc6097192002-11-03 00:24:07 +000055
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020056block_dev_desc_t ide_dev_desc[CONFIG_SYS_IDE_MAXDEVICE];
wdenkc6097192002-11-03 00:24:07 +000057/* ------------------------------------------------------------------------- */
58
wdenkc6097192002-11-03 00:24:07 +000059#ifdef CONFIG_IDE_RESET
60static void ide_reset (void);
61#else
62#define ide_reset() /* dummy */
63#endif
64
65static void ide_ident (block_dev_desc_t *dev_desc);
66static uchar ide_wait (int dev, ulong t);
67
68#define IDE_TIME_OUT 2000 /* 2 sec timeout */
69
70#define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
71
72#define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
73
wdenkc6097192002-11-03 00:24:07 +000074static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
75
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076#ifndef CONFIG_SYS_ATA_PORT_ADDR
77#define CONFIG_SYS_ATA_PORT_ADDR(port) (port)
Heiko Schocher566a4942007-06-22 19:11:54 +020078#endif
wdenkc6097192002-11-03 00:24:07 +000079
80#ifdef CONFIG_ATAPI
81static void atapi_inquiry(block_dev_desc_t *dev_desc);
Simon Glassb6458d32012-10-29 05:24:04 +000082static ulong atapi_read(int device, ulong blknr, lbaint_t blkcnt,
83 void *buffer);
wdenkc6097192002-11-03 00:24:07 +000084#endif
85
86
wdenkc6097192002-11-03 00:24:07 +000087/* ------------------------------------------------------------------------- */
88
Wolfgang Denk34c202c2011-10-29 09:41:40 +000089int do_ide(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +000090{
Wolfgang Denk34c202c2011-10-29 09:41:40 +000091 int rcode = 0;
wdenkc6097192002-11-03 00:24:07 +000092
Wolfgang Denk34c202c2011-10-29 09:41:40 +000093 switch (argc) {
94 case 0:
95 case 1:
Simon Glass4c12eeb2011-12-10 08:44:01 +000096 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +000097 case 2:
98 if (strncmp(argv[1], "res", 3) == 0) {
99 puts("\nReset IDE"
100#ifdef CONFIG_IDE_8xx_DIRECT
101 " on PCMCIA " PCMCIA_SLOT_MSG
102#endif
103 ": ");
wdenkc6097192002-11-03 00:24:07 +0000104
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000105 ide_init();
106 return 0;
107 } else if (strncmp(argv[1], "inf", 3) == 0) {
108 int i;
109
110 putc('\n');
111
112 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i) {
113 if (ide_dev_desc[i].type == DEV_TYPE_UNKNOWN)
114 continue; /* list only known devices */
115 printf("IDE device %d: ", i);
116 dev_print(&ide_dev_desc[i]);
117 }
118 return 0;
119
120 } else if (strncmp(argv[1], "dev", 3) == 0) {
121 if ((curr_device < 0)
122 || (curr_device >= CONFIG_SYS_IDE_MAXDEVICE)) {
123 puts("\nno IDE devices available\n");
124 return 1;
125 }
126 printf("\nIDE device %d: ", curr_device);
127 dev_print(&ide_dev_desc[curr_device]);
128 return 0;
129 } else if (strncmp(argv[1], "part", 4) == 0) {
130 int dev, ok;
131
132 for (ok = 0, dev = 0;
133 dev < CONFIG_SYS_IDE_MAXDEVICE;
134 ++dev) {
135 if (ide_dev_desc[dev].part_type !=
136 PART_TYPE_UNKNOWN) {
137 ++ok;
138 if (dev)
139 putc('\n');
140 print_part(&ide_dev_desc[dev]);
141 }
142 }
143 if (!ok) {
144 puts("\nno IDE devices available\n");
145 rcode++;
146 }
147 return rcode;
148 }
Simon Glass4c12eeb2011-12-10 08:44:01 +0000149 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000150 case 3:
151 if (strncmp(argv[1], "dev", 3) == 0) {
152 int dev = (int) simple_strtoul(argv[2], NULL, 10);
153
154 printf("\nIDE device %d: ", dev);
155 if (dev >= CONFIG_SYS_IDE_MAXDEVICE) {
156 puts("unknown device\n");
157 return 1;
158 }
159 dev_print(&ide_dev_desc[dev]);
160 /*ide_print (dev); */
161
162 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN)
163 return 1;
164
165 curr_device = dev;
166
167 puts("... is now current device\n");
168
169 return 0;
170 } else if (strncmp(argv[1], "part", 4) == 0) {
171 int dev = (int) simple_strtoul(argv[2], NULL, 10);
172
173 if (ide_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
174 print_part(&ide_dev_desc[dev]);
175 } else {
176 printf("\nIDE device %d not available\n",
177 dev);
178 rcode = 1;
179 }
180 return rcode;
181 }
182
Simon Glass4c12eeb2011-12-10 08:44:01 +0000183 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000184 default:
185 /* at least 4 args */
186
187 if (strcmp(argv[1], "read") == 0) {
188 ulong addr = simple_strtoul(argv[2], NULL, 16);
189 ulong cnt = simple_strtoul(argv[4], NULL, 16);
190 ulong n;
191
192#ifdef CONFIG_SYS_64BIT_LBA
193 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
194
195 printf("\nIDE read: device %d block # %lld, count %ld ... ",
196 curr_device, blk, cnt);
197#else
198 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
199
200 printf("\nIDE read: device %d block # %ld, count %ld ... ",
201 curr_device, blk, cnt);
202#endif
203
204 n = ide_dev_desc[curr_device].block_read(curr_device,
205 blk, cnt,
206 (ulong *)addr);
207 /* flush cache after read */
208 flush_cache(addr,
209 cnt * ide_dev_desc[curr_device].blksz);
210
211 printf("%ld blocks read: %s\n",
212 n, (n == cnt) ? "OK" : "ERROR");
213 if (n == cnt)
214 return 0;
215 else
216 return 1;
217 } else if (strcmp(argv[1], "write") == 0) {
218 ulong addr = simple_strtoul(argv[2], NULL, 16);
219 ulong cnt = simple_strtoul(argv[4], NULL, 16);
220 ulong n;
221
222#ifdef CONFIG_SYS_64BIT_LBA
223 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
224
225 printf("\nIDE write: device %d block # %lld, count %ld ... ",
226 curr_device, blk, cnt);
227#else
228 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
229
230 printf("\nIDE write: device %d block # %ld, count %ld ... ",
231 curr_device, blk, cnt);
232#endif
233 n = ide_write(curr_device, blk, cnt, (ulong *) addr);
234
235 printf("%ld blocks written: %s\n",
236 n, (n == cnt) ? "OK" : "ERROR");
237 if (n == cnt)
238 return 0;
239 else
240 return 1;
241 } else {
Simon Glass4c12eeb2011-12-10 08:44:01 +0000242 return CMD_RET_USAGE;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000243 }
244
245 return rcode;
246 }
wdenkc6097192002-11-03 00:24:07 +0000247}
248
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000249int do_diskboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +0000250{
Rob Herring7405a132012-09-21 04:02:30 +0000251 return common_diskboot(cmdtp, "ide", argc, argv);
wdenkc6097192002-11-03 00:24:07 +0000252}
253
254/* ------------------------------------------------------------------------- */
255
Pavel Herrmann19be2ea2012-10-07 05:56:10 +0000256void __ide_led(uchar led, uchar status)
257{
258#if defined(CONFIG_IDE_LED) && defined(PER8_BASE) /* required by LED_PORT */
259 static uchar led_buffer; /* Buffer for current LED status */
260
261 uchar *led_port = LED_PORT;
262
263 if (status) /* switch LED on */
264 led_buffer |= led;
265 else /* switch LED off */
266 led_buffer &= ~led;
267
268 *led_port = led_buffer;
269#endif
270}
271
272void ide_led(uchar led, uchar status)
273 __attribute__ ((weak, alias("__ide_led")));
274
275#ifndef CONFIG_IDE_LED /* define LED macros, they are not used anyways */
276# define DEVICE_LED(x) 0
277# define LED_IDE1 1
278# define LED_IDE2 2
279#endif
280
281/* ------------------------------------------------------------------------- */
282
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000283inline void __ide_outb(int dev, int port, unsigned char val)
Stefan Roesef2302d42008-08-06 14:05:38 +0200284{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000285 debug("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
286 dev, port, val,
287 (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000288
289#if defined(CONFIG_IDE_AHB)
290 if (port) {
291 /* write command */
292 ide_write_register(dev, port, val);
293 } else {
294 /* write data */
295 outb(val, (ATA_CURR_BASE(dev)));
296 }
297#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000298 outb(val, (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000299#endif
Stefan Roesef2302d42008-08-06 14:05:38 +0200300}
Macpaul Lin0abddf82011-04-11 20:45:32 +0000301
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000302void ide_outb(int dev, int port, unsigned char val)
303 __attribute__ ((weak, alias("__ide_outb")));
Stefan Roesef2302d42008-08-06 14:05:38 +0200304
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000305inline unsigned char __ide_inb(int dev, int port)
Stefan Roesef2302d42008-08-06 14:05:38 +0200306{
307 uchar val;
Macpaul Lin0abddf82011-04-11 20:45:32 +0000308
309#if defined(CONFIG_IDE_AHB)
310 val = ide_read_register(dev, port);
311#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000312 val = inb((ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)));
Macpaul Lin0abddf82011-04-11 20:45:32 +0000313#endif
314
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000315 debug("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
316 dev, port,
317 (ATA_CURR_BASE(dev) + CONFIG_SYS_ATA_PORT_ADDR(port)), val);
Stefan Roesef2302d42008-08-06 14:05:38 +0200318 return val;
319}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000320
Kim Phillips2df72b82009-05-19 12:53:36 -0500321unsigned char ide_inb(int dev, int port)
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000322 __attribute__ ((weak, alias("__ide_inb")));
Stefan Roesef2302d42008-08-06 14:05:38 +0200323
Steven A. Falco36c2d302008-08-15 15:34:10 -0400324#ifdef CONFIG_TUNE_PIO
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000325inline int __ide_set_piomode(int pio_mode)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400326{
327 return 0;
328}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000329
330inline int ide_set_piomode(int pio_mode)
331 __attribute__ ((weak, alias("__ide_set_piomode")));
Steven A. Falco36c2d302008-08-15 15:34:10 -0400332#endif
333
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000334void ide_init(void)
wdenkc6097192002-11-03 00:24:07 +0000335{
wdenkc6097192002-11-03 00:24:07 +0000336 unsigned char c;
337 int i, bus;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000338
wdenk9fd5e312003-12-07 23:55:12 +0000339#ifdef CONFIG_IDE_8xx_PCCARD
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000340 extern int ide_devices_found; /* Initialized in check_ide_device() */
341#endif /* CONFIG_IDE_8xx_PCCARD */
wdenk9fd5e312003-12-07 23:55:12 +0000342
343#ifdef CONFIG_IDE_PREINIT
344 WATCHDOG_RESET();
345
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000346 if (ide_preinit()) {
347 puts("ide_preinit failed\n");
wdenk9fd5e312003-12-07 23:55:12 +0000348 return;
349 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000350#endif /* CONFIG_IDE_PREINIT */
wdenkc6097192002-11-03 00:24:07 +0000351
wdenkc6097192002-11-03 00:24:07 +0000352 WATCHDOG_RESET();
353
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000354 /*
355 * Reset the IDE just to be sure.
wdenkc6097192002-11-03 00:24:07 +0000356 * Light LED's to show
357 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000358 ide_led((LED_IDE1 | LED_IDE2), 1); /* LED's on */
359
360 /* ATAPI Drives seems to need a proper IDE Reset */
361 ide_reset();
wdenkc6097192002-11-03 00:24:07 +0000362
Pavel Herrmann8d1165e11a2012-10-09 07:01:56 +0000363#ifdef CONFIG_IDE_INIT_POSTRESET
364 WATCHDOG_RESET();
wdenkc6097192002-11-03 00:24:07 +0000365
Pavel Herrmann8d1165e11a2012-10-09 07:01:56 +0000366 if (ide_init_postreset()) {
367 puts("ide_preinit_postreset failed\n");
368 return;
369 }
370#endif /* CONFIG_IDE_INIT_POSTRESET */
wdenkc6097192002-11-03 00:24:07 +0000371
372 /*
373 * Wait for IDE to get ready.
374 * According to spec, this can take up to 31 seconds!
375 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000376 for (bus = 0; bus < CONFIG_SYS_IDE_MAXBUS; ++bus) {
377 int dev =
378 bus * (CONFIG_SYS_IDE_MAXDEVICE /
379 CONFIG_SYS_IDE_MAXBUS);
wdenkc6097192002-11-03 00:24:07 +0000380
wdenk6069ff22003-02-28 00:49:47 +0000381#ifdef CONFIG_IDE_8xx_PCCARD
382 /* Skip non-ide devices from probing */
383 if ((ide_devices_found & (1 << bus)) == 0) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000384 ide_led((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenk6069ff22003-02-28 00:49:47 +0000385 continue;
386 }
387#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000388 printf("Bus %d: ", bus);
wdenkc6097192002-11-03 00:24:07 +0000389
390 ide_bus_ok[bus] = 0;
391
392 /* Select device
393 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000394 udelay(100000); /* 100 ms */
395 ide_outb(dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
396 udelay(100000); /* 100 ms */
wdenkc6097192002-11-03 00:24:07 +0000397 i = 0;
398 do {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000399 udelay(10000); /* 10 ms */
wdenkc6097192002-11-03 00:24:07 +0000400
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000401 c = ide_inb(dev, ATA_STATUS);
wdenkc6097192002-11-03 00:24:07 +0000402 i++;
403 if (i > (ATA_RESET_TIME * 100)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000404 puts("** Timeout **\n");
405 /* LED's off */
406 ide_led((LED_IDE1 | LED_IDE2), 0);
wdenkc6097192002-11-03 00:24:07 +0000407 return;
408 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000409 if ((i >= 100) && ((i % 100) == 0))
410 putc('.');
411
wdenkc6097192002-11-03 00:24:07 +0000412 } while (c & ATA_STAT_BUSY);
413
414 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000415 puts("not available ");
416 debug("Status = 0x%02X ", c);
417#ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
418 } else if ((c & ATA_STAT_READY) == 0) {
419 puts("not available ");
420 debug("Status = 0x%02X ", c);
wdenkc6097192002-11-03 00:24:07 +0000421#endif
422 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000423 puts("OK ");
wdenkc6097192002-11-03 00:24:07 +0000424 ide_bus_ok[bus] = 1;
425 }
426 WATCHDOG_RESET();
427 }
wdenkc7de8292002-11-19 11:04:11 +0000428
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000429 putc('\n');
wdenkc6097192002-11-03 00:24:07 +0000430
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000431 ide_led((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenkc6097192002-11-03 00:24:07 +0000432
433 curr_device = -1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000434 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i) {
wdenkc6097192002-11-03 00:24:07 +0000435 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000436 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
437 ide_dev_desc[i].if_type = IF_TYPE_IDE;
438 ide_dev_desc[i].dev = i;
439 ide_dev_desc[i].part_type = PART_TYPE_UNKNOWN;
440 ide_dev_desc[i].blksz = 0;
Egbert Eich0472fbf2013-04-09 21:11:56 +0000441 ide_dev_desc[i].log2blksz =
442 LOG2_INVALID(typeof(ide_dev_desc[i].log2blksz));
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000443 ide_dev_desc[i].lba = 0;
444 ide_dev_desc[i].block_read = ide_read;
Macpaul Lin0abddf82011-04-11 20:45:32 +0000445 ide_dev_desc[i].block_write = ide_write;
wdenkc6097192002-11-03 00:24:07 +0000446 if (!ide_bus_ok[IDE_BUS(i)])
447 continue;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000448 ide_led(led, 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000449 ide_ident(&ide_dev_desc[i]);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000450 ide_led(led, 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +0000451 dev_print(&ide_dev_desc[i]);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000452
wdenkc6097192002-11-03 00:24:07 +0000453 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000454 /* initialize partition type */
455 init_part(&ide_dev_desc[i]);
wdenkc6097192002-11-03 00:24:07 +0000456 if (curr_device < 0)
457 curr_device = i;
458 }
459 }
460 WATCHDOG_RESET();
461}
462
463/* ------------------------------------------------------------------------- */
464
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000465#ifdef CONFIG_PARTITIONS
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000466block_dev_desc_t *ide_get_dev(int dev)
wdenkc6097192002-11-03 00:24:07 +0000467{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200468 return (dev < CONFIG_SYS_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL;
wdenkc6097192002-11-03 00:24:07 +0000469}
Matthew McClintockdf3fc522011-05-24 05:31:19 +0000470#endif
wdenkc6097192002-11-03 00:24:07 +0000471
wdenkc6097192002-11-03 00:24:07 +0000472/* ------------------------------------------------------------------------- */
473
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000474void ide_input_swap_data(int dev, ulong *sect_buf, int words)
475 __attribute__ ((weak, alias("__ide_input_swap_data")));
476
477void ide_input_data(int dev, ulong *sect_buf, int words)
478 __attribute__ ((weak, alias("__ide_input_data")));
479
480void ide_output_data(int dev, const ulong *sect_buf, int words)
481 __attribute__ ((weak, alias("__ide_output_data")));
482
wdenk5da627a2003-10-09 20:09:04 +0000483/* We only need to swap data if we are running on a big endian cpu. */
Pavel Herrmann4d1361d2012-10-09 07:10:08 +0000484#if defined(__LITTLE_ENDIAN)
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000485void __ide_input_swap_data(int dev, ulong *sect_buf, int words)
486{
487 ide_input_data(dev, sect_buf, words);
488}
wdenk5da627a2003-10-09 20:09:04 +0000489#else
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000490void __ide_input_swap_data(int dev, ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000491{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000492 volatile ushort *pbuf =
493 (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
494 ushort *dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000495
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000496 debug("in input swap data base for read is %lx\n",
497 (unsigned long) pbuf);
wdenk1a344f22005-02-03 23:00:49 +0000498
499 while (words--) {
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200500#ifdef __MIPS__
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000501 *dbuf++ = swab16p((u16 *) pbuf);
502 *dbuf++ = swab16p((u16 *) pbuf);
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200503#else
wdenk1a344f22005-02-03 23:00:49 +0000504 *dbuf++ = ld_le16(pbuf);
505 *dbuf++ = ld_le16(pbuf);
Wolfgang Denk0c32d962006-06-16 17:32:31 +0200506#endif /* !MIPS */
wdenk1a344f22005-02-03 23:00:49 +0000507 }
wdenkc6097192002-11-03 00:24:07 +0000508}
Pavel Herrmann4d1361d2012-10-09 07:10:08 +0000509#endif /* __LITTLE_ENDIAN */
wdenkc6097192002-11-03 00:24:07 +0000510
wdenk2262cfe2002-11-18 00:14:45 +0000511
Albert Aribaudf2a37fc2010-08-08 05:17:05 +0530512#if defined(CONFIG_IDE_SWAP_IO)
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000513void __ide_output_data(int dev, const ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000514{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000515 ushort *dbuf;
516 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +0000517
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000518 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
519 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000520 while (words--) {
521 EIEIO;
522 *pbuf = *dbuf++;
523 EIEIO;
524 *pbuf = *dbuf++;
525 }
wdenkc6097192002-11-03 00:24:07 +0000526}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000527#else /* ! CONFIG_IDE_SWAP_IO */
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000528void __ide_output_data(int dev, const ulong *sect_buf, int words)
wdenk2262cfe2002-11-18 00:14:45 +0000529{
Macpaul Lin0abddf82011-04-11 20:45:32 +0000530#if defined(CONFIG_IDE_AHB)
531 ide_write_data(dev, sect_buf, words);
532#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000533 outsw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, words << 1);
Macpaul Lin0abddf82011-04-11 20:45:32 +0000534#endif
wdenk2262cfe2002-11-18 00:14:45 +0000535}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000536#endif /* CONFIG_IDE_SWAP_IO */
wdenkc6097192002-11-03 00:24:07 +0000537
Albert Aribaudf2a37fc2010-08-08 05:17:05 +0530538#if defined(CONFIG_IDE_SWAP_IO)
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000539void __ide_input_data(int dev, ulong *sect_buf, int words)
wdenkc6097192002-11-03 00:24:07 +0000540{
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000541 ushort *dbuf;
542 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +0000543
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000544 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
545 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +0000546
547 debug("in input data base for read is %lx\n", (unsigned long) pbuf);
548
549 while (words--) {
550 EIEIO;
551 *dbuf++ = *pbuf;
552 EIEIO;
553 *dbuf++ = *pbuf;
554 }
wdenkc6097192002-11-03 00:24:07 +0000555}
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000556#else /* ! CONFIG_IDE_SWAP_IO */
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000557void __ide_input_data(int dev, ulong *sect_buf, int words)
wdenk2262cfe2002-11-18 00:14:45 +0000558{
Macpaul Lin0abddf82011-04-11 20:45:32 +0000559#if defined(CONFIG_IDE_AHB)
560 ide_read_data(dev, sect_buf, words);
561#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000562 insw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, words << 1);
Macpaul Lin0abddf82011-04-11 20:45:32 +0000563#endif
wdenk2262cfe2002-11-18 00:14:45 +0000564}
565
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000566#endif /* CONFIG_IDE_SWAP_IO */
wdenkc6097192002-11-03 00:24:07 +0000567
568/* -------------------------------------------------------------------------
569 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000570static void ide_ident(block_dev_desc_t *dev_desc)
wdenkc6097192002-11-03 00:24:07 +0000571{
wdenkc6097192002-11-03 00:24:07 +0000572 unsigned char c;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000573 hd_driveid_t iop;
wdenkc6097192002-11-03 00:24:07 +0000574
wdenk64f70be2004-09-28 20:34:50 +0000575#ifdef CONFIG_ATAPI
576 int retries = 0;
wdenkc7de8292002-11-19 11:04:11 +0000577#endif
578
Steven A. Falco36c2d302008-08-15 15:34:10 -0400579#ifdef CONFIG_TUNE_PIO
580 int pio_mode;
581#endif
582
wdenkc6097192002-11-03 00:24:07 +0000583#if 0
584 int mode, cycle_time;
585#endif
586 int device;
wdenkc6097192002-11-03 00:24:07 +0000587
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000588 device = dev_desc->dev;
589 printf(" Device %d: ", device);
590
591 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000592 /* Select device
593 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000594 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
595 dev_desc->if_type = IF_TYPE_IDE;
wdenkc6097192002-11-03 00:24:07 +0000596#ifdef CONFIG_ATAPI
wdenkc7de8292002-11-19 11:04:11 +0000597
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000598 retries = 0;
wdenkc7de8292002-11-19 11:04:11 +0000599
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000600 /* Warning: This will be tricky to read */
601 while (retries <= 1) {
602 /* check signature */
603 if ((ide_inb(device, ATA_SECT_CNT) == 0x01) &&
604 (ide_inb(device, ATA_SECT_NUM) == 0x01) &&
605 (ide_inb(device, ATA_CYL_LOW) == 0x14) &&
606 (ide_inb(device, ATA_CYL_HIGH) == 0xEB)) {
607 /* ATAPI Signature found */
608 dev_desc->if_type = IF_TYPE_ATAPI;
609 /*
610 * Start Ident Command
611 */
612 ide_outb(device, ATA_COMMAND, ATAPI_CMD_IDENT);
613 /*
614 * Wait for completion - ATAPI devices need more time
615 * to become ready
616 */
617 c = ide_wait(device, ATAPI_TIME_OUT);
618 } else
wdenkc6097192002-11-03 00:24:07 +0000619#endif
wdenk1a344f22005-02-03 23:00:49 +0000620 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000621 /*
622 * Start Ident Command
623 */
624 ide_outb(device, ATA_COMMAND, ATA_CMD_IDENT);
625
626 /*
627 * Wait for completion
628 */
629 c = ide_wait(device, IDE_TIME_OUT);
wdenk1a344f22005-02-03 23:00:49 +0000630 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000631 ide_led(DEVICE_LED(device), 0); /* LED off */
632
633 if (((c & ATA_STAT_DRQ) == 0) ||
634 ((c & (ATA_STAT_FAULT | ATA_STAT_ERR)) != 0)) {
wdenk64f70be2004-09-28 20:34:50 +0000635#ifdef CONFIG_ATAPI
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000636 {
637 /*
638 * Need to soft reset the device
639 * in case it's an ATAPI...
640 */
641 debug("Retrying...\n");
642 ide_outb(device, ATA_DEV_HD,
643 ATA_LBA | ATA_DEVICE(device));
644 udelay(100000);
645 ide_outb(device, ATA_COMMAND, 0x08);
646 udelay(500000); /* 500 ms */
647 }
648 /*
649 * Select device
650 */
651 ide_outb(device, ATA_DEV_HD,
652 ATA_LBA | ATA_DEVICE(device));
653 retries++;
654#else
655 return;
656#endif
657 }
658#ifdef CONFIG_ATAPI
659 else
660 break;
661 } /* see above - ugly to read */
wdenk64f70be2004-09-28 20:34:50 +0000662
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000663 if (retries == 2) /* Not found */
wdenk64f70be2004-09-28 20:34:50 +0000664 return;
665#endif
wdenkc7de8292002-11-19 11:04:11 +0000666
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000667 ide_input_swap_data(device, (ulong *)&iop, ATA_SECTORWORDS);
wdenkc6097192002-11-03 00:24:07 +0000668
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000669 ident_cpy((unsigned char *) dev_desc->revision, iop.fw_rev,
670 sizeof(dev_desc->revision));
671 ident_cpy((unsigned char *) dev_desc->vendor, iop.model,
672 sizeof(dev_desc->vendor));
673 ident_cpy((unsigned char *) dev_desc->product, iop.serial_no,
674 sizeof(dev_desc->product));
wdenkc3f9d492004-03-14 00:59:59 +0000675#ifdef __LITTLE_ENDIAN
676 /*
Richard Retanubunbcdf1d22008-11-06 14:01:51 -0500677 * firmware revision, model, and serial number have Big Endian Byte
678 * order in Word. Convert all three to little endian.
wdenkc3f9d492004-03-14 00:59:59 +0000679 *
680 * See CF+ and CompactFlash Specification Revision 2.0:
Richard Retanubunbcdf1d22008-11-06 14:01:51 -0500681 * 6.2.1.6: Identify Drive, Table 39 for more details
wdenkc3f9d492004-03-14 00:59:59 +0000682 */
683
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000684 strswab(dev_desc->revision);
685 strswab(dev_desc->vendor);
686 strswab(dev_desc->product);
wdenkc3f9d492004-03-14 00:59:59 +0000687#endif /* __LITTLE_ENDIAN */
wdenkc6097192002-11-03 00:24:07 +0000688
Marek Vasutb18eabf2011-08-20 09:15:13 +0000689 if ((iop.config & 0x0080) == 0x0080)
wdenkc6097192002-11-03 00:24:07 +0000690 dev_desc->removable = 1;
691 else
692 dev_desc->removable = 0;
693
Steven A. Falco36c2d302008-08-15 15:34:10 -0400694#ifdef CONFIG_TUNE_PIO
695 /* Mode 0 - 2 only, are directly determined by word 51. */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000696 pio_mode = iop.tPIO;
Steven A. Falco36c2d302008-08-15 15:34:10 -0400697 if (pio_mode > 2) {
698 printf("WARNING: Invalid PIO (word 51 = %d).\n", pio_mode);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000699 /* Force it to dead slow, and hope for the best... */
700 pio_mode = 0;
Steven A. Falco36c2d302008-08-15 15:34:10 -0400701 }
702
703 /* Any CompactFlash Storage Card that supports PIO mode 3 or above
704 * shall set bit 1 of word 53 to one and support the fields contained
705 * in words 64 through 70.
706 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000707 if (iop.field_valid & 0x02) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000708 /*
709 * Mode 3 and above are possible. Check in order from slow
Steven A. Falco36c2d302008-08-15 15:34:10 -0400710 * to fast, so we wind up with the highest mode allowed.
711 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000712 if (iop.eide_pio_modes & 0x01)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400713 pio_mode = 3;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000714 if (iop.eide_pio_modes & 0x02)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400715 pio_mode = 4;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000716 if (ata_id_is_cfa((u16 *)&iop)) {
717 if ((iop.cf_advanced_caps & 0x07) == 0x01)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400718 pio_mode = 5;
Marek Vasutb18eabf2011-08-20 09:15:13 +0000719 if ((iop.cf_advanced_caps & 0x07) == 0x02)
Steven A. Falco36c2d302008-08-15 15:34:10 -0400720 pio_mode = 6;
721 }
722 }
723
724 /* System-specific, depends on bus speeds, etc. */
725 ide_set_piomode(pio_mode);
726#endif /* CONFIG_TUNE_PIO */
727
wdenkc6097192002-11-03 00:24:07 +0000728#if 0
729 /*
730 * Drive PIO mode autoselection
731 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000732 mode = iop.tPIO;
wdenkc6097192002-11-03 00:24:07 +0000733
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000734 printf("tPIO = 0x%02x = %d\n", mode, mode);
wdenkc6097192002-11-03 00:24:07 +0000735 if (mode > 2) { /* 2 is maximum allowed tPIO value */
736 mode = 2;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000737 debug("Override tPIO -> 2\n");
wdenkc6097192002-11-03 00:24:07 +0000738 }
Marek Vasutb18eabf2011-08-20 09:15:13 +0000739 if (iop.field_valid & 2) { /* drive implements ATA2? */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000740 debug("Drive implements ATA2\n");
Marek Vasutb18eabf2011-08-20 09:15:13 +0000741 if (iop.capability & 8) { /* drive supports use_iordy? */
742 cycle_time = iop.eide_pio_iordy;
wdenkc6097192002-11-03 00:24:07 +0000743 } else {
Marek Vasutb18eabf2011-08-20 09:15:13 +0000744 cycle_time = iop.eide_pio;
wdenkc6097192002-11-03 00:24:07 +0000745 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000746 debug("cycle time = %d\n", cycle_time);
wdenkc6097192002-11-03 00:24:07 +0000747 mode = 4;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000748 if (cycle_time > 120)
749 mode = 3; /* 120 ns for PIO mode 4 */
750 if (cycle_time > 180)
751 mode = 2; /* 180 ns for PIO mode 3 */
752 if (cycle_time > 240)
753 mode = 1; /* 240 ns for PIO mode 4 */
754 if (cycle_time > 383)
755 mode = 0; /* 383 ns for PIO mode 4 */
wdenkc6097192002-11-03 00:24:07 +0000756 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000757 printf("PIO mode to use: PIO %d\n", mode);
wdenkc6097192002-11-03 00:24:07 +0000758#endif /* 0 */
759
760#ifdef CONFIG_ATAPI
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000761 if (dev_desc->if_type == IF_TYPE_ATAPI) {
wdenkc6097192002-11-03 00:24:07 +0000762 atapi_inquiry(dev_desc);
763 return;
764 }
765#endif /* CONFIG_ATAPI */
766
wdenkc3f9d492004-03-14 00:59:59 +0000767#ifdef __BIG_ENDIAN
wdenkc6097192002-11-03 00:24:07 +0000768 /* swap shorts */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000769 dev_desc->lba = (iop.lba_capacity << 16) | (iop.lba_capacity >> 16);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000770#else /* ! __BIG_ENDIAN */
wdenkc3f9d492004-03-14 00:59:59 +0000771 /*
772 * do not swap shorts on little endian
773 *
774 * See CF+ and CompactFlash Specification Revision 2.0:
775 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
776 */
Marek Vasutb18eabf2011-08-20 09:15:13 +0000777 dev_desc->lba = iop.lba_capacity;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000778#endif /* __BIG_ENDIAN */
wdenkc40b2952004-03-13 23:29:43 +0000779
wdenk42dfe7a2004-03-14 22:25:36 +0000780#ifdef CONFIG_LBA48
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000781 if (iop.command_set_2 & 0x0400) { /* LBA 48 support */
wdenk6e592382004-04-18 17:39:38 +0000782 dev_desc->lba48 = 1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000783 dev_desc->lba = (unsigned long long) iop.lba48_capacity[0] |
784 ((unsigned long long) iop.lba48_capacity[1] << 16) |
785 ((unsigned long long) iop.lba48_capacity[2] << 32) |
786 ((unsigned long long) iop.lba48_capacity[3] << 48);
wdenkc40b2952004-03-13 23:29:43 +0000787 } else {
wdenkc40b2952004-03-13 23:29:43 +0000788 dev_desc->lba48 = 0;
789 }
790#endif /* CONFIG_LBA48 */
wdenkc6097192002-11-03 00:24:07 +0000791 /* assuming HD */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000792 dev_desc->type = DEV_TYPE_HARDDISK;
793 dev_desc->blksz = ATA_BLOCKSIZE;
Egbert Eich0472fbf2013-04-09 21:11:56 +0000794 dev_desc->log2blksz = LOG2(dev_desc->blksz);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000795 dev_desc->lun = 0; /* just to fill something in... */
wdenkc6097192002-11-03 00:24:07 +0000796
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000797#if 0 /* only used to test the powersaving mode,
798 * if enabled, the drive goes after 5 sec
799 * in standby mode */
800 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
801 c = ide_wait(device, IDE_TIME_OUT);
802 ide_outb(device, ATA_SECT_CNT, 1);
803 ide_outb(device, ATA_LBA_LOW, 0);
804 ide_outb(device, ATA_LBA_MID, 0);
805 ide_outb(device, ATA_LBA_HIGH, 0);
806 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
807 ide_outb(device, ATA_COMMAND, 0xe3);
808 udelay(50);
809 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
wdenkc6097192002-11-03 00:24:07 +0000810#endif
811}
812
813
814/* ------------------------------------------------------------------------- */
815
Sascha Silbeff8fef52013-06-14 13:07:25 +0200816ulong ide_read(int device, lbaint_t blknr, lbaint_t blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +0000817{
818 ulong n = 0;
819 unsigned char c;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000820 unsigned char pwrsave = 0; /* power save */
821
wdenk42dfe7a2004-03-14 22:25:36 +0000822#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000823 unsigned char lba48 = 0;
wdenkc6097192002-11-03 00:24:07 +0000824
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200825 if (blknr & 0x0000fffff0000000ULL) {
wdenkc40b2952004-03-13 23:29:43 +0000826 /* more than 28 bits used, use 48bit mode */
827 lba48 = 1;
828 }
829#endif
Sascha Silbeff8fef52013-06-14 13:07:25 +0200830 debug("ide_read dev %d start " LBAF ", blocks " LBAF " buffer at %lX\n",
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000831 device, blknr, blkcnt, (ulong) buffer);
wdenkc6097192002-11-03 00:24:07 +0000832
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000833 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000834
835 /* Select device
836 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000837 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
838 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000839
840 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000841 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000842 goto IDE_READ_E;
843 }
844
845 /* first check if the drive is in Powersaving mode, if yes,
846 * increase the timeout value */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000847 ide_outb(device, ATA_COMMAND, ATA_CMD_CHK_PWR);
848 udelay(50);
wdenkc6097192002-11-03 00:24:07 +0000849
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000850 c = ide_wait(device, IDE_TIME_OUT); /* can't take over 500 ms */
wdenkc6097192002-11-03 00:24:07 +0000851
852 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000853 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000854 goto IDE_READ_E;
855 }
856 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000857 printf("No Powersaving mode %X\n", c);
wdenkc6097192002-11-03 00:24:07 +0000858 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000859 c = ide_inb(device, ATA_SECT_CNT);
860 debug("Powersaving %02X\n", c);
861 if (c == 0)
862 pwrsave = 1;
wdenkc6097192002-11-03 00:24:07 +0000863 }
864
865
866 while (blkcnt-- > 0) {
867
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000868 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000869
870 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000871 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000872 break;
873 }
wdenk42dfe7a2004-03-14 22:25:36 +0000874#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000875 if (lba48) {
876 /* write high bits */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000877 ide_outb(device, ATA_SECT_CNT, 0);
878 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200879#ifdef CONFIG_SYS_64BIT_LBA
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000880 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
881 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200882#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000883 ide_outb(device, ATA_LBA_MID, 0);
884 ide_outb(device, ATA_LBA_HIGH, 0);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200885#endif
wdenkc40b2952004-03-13 23:29:43 +0000886 }
887#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000888 ide_outb(device, ATA_SECT_CNT, 1);
889 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
890 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
891 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +0000892
wdenk42dfe7a2004-03-14 22:25:36 +0000893#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000894 if (lba48) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000895 ide_outb(device, ATA_DEV_HD,
896 ATA_LBA | ATA_DEVICE(device));
897 ide_outb(device, ATA_COMMAND, ATA_CMD_READ_EXT);
wdenkc40b2952004-03-13 23:29:43 +0000898
899 } else
900#endif
901 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000902 ide_outb(device, ATA_DEV_HD, ATA_LBA |
903 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
904 ide_outb(device, ATA_COMMAND, ATA_CMD_READ);
wdenkc40b2952004-03-13 23:29:43 +0000905 }
wdenkc6097192002-11-03 00:24:07 +0000906
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000907 udelay(50);
wdenkc6097192002-11-03 00:24:07 +0000908
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000909 if (pwrsave) {
910 /* may take up to 4 sec */
911 c = ide_wait(device, IDE_SPIN_UP_TIME_OUT);
912 pwrsave = 0;
wdenkc6097192002-11-03 00:24:07 +0000913 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000914 /* can't take over 500 ms */
915 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000916 }
917
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000918 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
919 ATA_STAT_DRQ) {
Sascha Silbeff8fef52013-06-14 13:07:25 +0200920 printf("Error (no IRQ) dev %d blk " LBAF ": status "
921 "%#02x\n", device, blknr, c);
wdenkc6097192002-11-03 00:24:07 +0000922 break;
923 }
924
Pavel Herrmannf5b82c02012-10-09 07:04:39 +0000925 ide_input_data(device, buffer, ATA_SECTORWORDS);
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000926 (void) ide_inb(device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +0000927
928 ++n;
929 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +0200930 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +0000931 }
932IDE_READ_E:
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000933 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +0000934 return (n);
935}
936
937/* ------------------------------------------------------------------------- */
938
939
Sascha Silbeff8fef52013-06-14 13:07:25 +0200940ulong ide_write(int device, lbaint_t blknr, lbaint_t blkcnt, const void *buffer)
wdenkc6097192002-11-03 00:24:07 +0000941{
942 ulong n = 0;
943 unsigned char c;
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000944
wdenk42dfe7a2004-03-14 22:25:36 +0000945#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000946 unsigned char lba48 = 0;
947
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200948 if (blknr & 0x0000fffff0000000ULL) {
wdenkc40b2952004-03-13 23:29:43 +0000949 /* more than 28 bits used, use 48bit mode */
950 lba48 = 1;
951 }
952#endif
wdenkc6097192002-11-03 00:24:07 +0000953
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000954 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +0000955
956 /* Select device
957 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000958 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +0000959
960 while (blkcnt-- > 0) {
961
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000962 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +0000963
964 if (c & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000965 printf("IDE read: device %d not ready\n", device);
wdenkc6097192002-11-03 00:24:07 +0000966 goto WR_OUT;
967 }
wdenk42dfe7a2004-03-14 22:25:36 +0000968#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000969 if (lba48) {
970 /* write high bits */
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000971 ide_outb(device, ATA_SECT_CNT, 0);
972 ide_outb(device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200973#ifdef CONFIG_SYS_64BIT_LBA
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000974 ide_outb(device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
975 ide_outb(device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200976#else
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000977 ide_outb(device, ATA_LBA_MID, 0);
978 ide_outb(device, ATA_LBA_HIGH, 0);
Guennadi Liakhovetski413bf582008-04-28 14:36:06 +0200979#endif
wdenkc40b2952004-03-13 23:29:43 +0000980 }
981#endif
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000982 ide_outb(device, ATA_SECT_CNT, 1);
983 ide_outb(device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
984 ide_outb(device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
985 ide_outb(device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +0000986
wdenk42dfe7a2004-03-14 22:25:36 +0000987#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +0000988 if (lba48) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000989 ide_outb(device, ATA_DEV_HD,
990 ATA_LBA | ATA_DEVICE(device));
991 ide_outb(device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
wdenkc40b2952004-03-13 23:29:43 +0000992
993 } else
994#endif
995 {
Wolfgang Denk34c202c2011-10-29 09:41:40 +0000996 ide_outb(device, ATA_DEV_HD, ATA_LBA |
997 ATA_DEVICE(device) | ((blknr >> 24) & 0xF));
998 ide_outb(device, ATA_COMMAND, ATA_CMD_WRITE);
wdenkc40b2952004-03-13 23:29:43 +0000999 }
wdenkc6097192002-11-03 00:24:07 +00001000
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001001 udelay(50);
wdenkc6097192002-11-03 00:24:07 +00001002
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001003 /* can't take over 500 ms */
1004 c = ide_wait(device, IDE_TIME_OUT);
wdenkc6097192002-11-03 00:24:07 +00001005
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001006 if ((c & (ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR)) !=
1007 ATA_STAT_DRQ) {
Sascha Silbeff8fef52013-06-14 13:07:25 +02001008 printf("Error (no IRQ) dev %d blk " LBAF ": status "
1009 "%#02x\n", device, blknr, c);
wdenkc6097192002-11-03 00:24:07 +00001010 goto WR_OUT;
1011 }
1012
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001013 ide_output_data(device, buffer, ATA_SECTORWORDS);
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001014 c = ide_inb(device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001015 ++n;
1016 ++blknr;
Greg Lopp0b945042007-04-13 08:02:24 +02001017 buffer += ATA_BLOCKSIZE;
wdenkc6097192002-11-03 00:24:07 +00001018 }
1019WR_OUT:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001020 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +00001021 return (n);
1022}
1023
1024/* ------------------------------------------------------------------------- */
1025
1026/*
1027 * copy src to dest, skipping leading and trailing blanks and null
1028 * terminate the string
wdenk7d7ce412004-03-17 01:13:07 +00001029 * "len" is the size of available memory including the terminating '\0'
wdenkc6097192002-11-03 00:24:07 +00001030 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001031static void ident_cpy(unsigned char *dst, unsigned char *src,
1032 unsigned int len)
wdenkc6097192002-11-03 00:24:07 +00001033{
wdenk7d7ce412004-03-17 01:13:07 +00001034 unsigned char *end, *last;
wdenkc6097192002-11-03 00:24:07 +00001035
wdenk7d7ce412004-03-17 01:13:07 +00001036 last = dst;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001037 end = src + len - 1;
wdenk7d7ce412004-03-17 01:13:07 +00001038
1039 /* reserve space for '\0' */
1040 if (len < 2)
1041 goto OUT;
wdenkefa329c2004-03-23 20:18:25 +00001042
wdenk7d7ce412004-03-17 01:13:07 +00001043 /* skip leading white space */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001044 while ((*src) && (src < end) && (*src == ' '))
wdenk7d7ce412004-03-17 01:13:07 +00001045 ++src;
1046
1047 /* copy string, omitting trailing white space */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001048 while ((*src) && (src < end)) {
wdenk7d7ce412004-03-17 01:13:07 +00001049 *dst++ = *src;
1050 if (*src++ != ' ')
1051 last = dst;
wdenkc6097192002-11-03 00:24:07 +00001052 }
wdenk7d7ce412004-03-17 01:13:07 +00001053OUT:
1054 *last = '\0';
wdenkc6097192002-11-03 00:24:07 +00001055}
1056
1057/* ------------------------------------------------------------------------- */
1058
1059/*
1060 * Wait until Busy bit is off, or timeout (in ms)
1061 * Return last status
1062 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001063static uchar ide_wait(int dev, ulong t)
wdenkc6097192002-11-03 00:24:07 +00001064{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001065 ulong delay = 10 * t; /* poll every 100 us */
wdenkc6097192002-11-03 00:24:07 +00001066 uchar c;
1067
wdenk2262cfe2002-11-18 00:14:45 +00001068 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001069 udelay(100);
1070 if (delay-- == 0)
wdenkc6097192002-11-03 00:24:07 +00001071 break;
wdenkc6097192002-11-03 00:24:07 +00001072 }
1073 return (c);
1074}
1075
1076/* ------------------------------------------------------------------------- */
1077
1078#ifdef CONFIG_IDE_RESET
1079extern void ide_set_reset(int idereset);
1080
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001081static void ide_reset(void)
wdenkc6097192002-11-03 00:24:07 +00001082{
wdenkc6097192002-11-03 00:24:07 +00001083 int i;
1084
1085 curr_device = -1;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001086 for (i = 0; i < CONFIG_SYS_IDE_MAXBUS; ++i)
wdenkc6097192002-11-03 00:24:07 +00001087 ide_bus_ok[i] = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001088 for (i = 0; i < CONFIG_SYS_IDE_MAXDEVICE; ++i)
wdenkc6097192002-11-03 00:24:07 +00001089 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1090
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001091 ide_set_reset(1); /* assert reset */
wdenkc6097192002-11-03 00:24:07 +00001092
Martin Krausee175eac2008-04-03 13:37:56 +02001093 /* the reset signal shall be asserted for et least 25 us */
1094 udelay(25);
1095
wdenkc6097192002-11-03 00:24:07 +00001096 WATCHDOG_RESET();
1097
wdenkc6097192002-11-03 00:24:07 +00001098 /* de-assert RESET signal */
1099 ide_set_reset(0);
1100
1101 /* wait 250 ms */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001102 for (i = 0; i < 250; ++i)
1103 udelay(1000);
wdenkc6097192002-11-03 00:24:07 +00001104}
1105
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001106#endif /* CONFIG_IDE_RESET */
wdenkc6097192002-11-03 00:24:07 +00001107
1108/* ------------------------------------------------------------------------- */
1109
Heiko Schocher3887c3f2009-09-23 07:56:08 +02001110#if defined(CONFIG_OF_IDE_FIXUP)
1111int ide_device_present(int dev)
1112{
1113 if (dev >= CONFIG_SYS_IDE_MAXBUS)
1114 return 0;
1115 return (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN ? 0 : 1);
1116}
1117#endif
wdenkc6097192002-11-03 00:24:07 +00001118/* ------------------------------------------------------------------------- */
1119
1120#ifdef CONFIG_ATAPI
1121/****************************************************************************
1122 * ATAPI Support
1123 */
1124
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001125void ide_input_data_shorts(int dev, ushort *sect_buf, int shorts)
1126 __attribute__ ((weak, alias("__ide_input_data_shorts")));
1127
1128void ide_output_data_shorts(int dev, ushort *sect_buf, int shorts)
1129 __attribute__ ((weak, alias("__ide_output_data_shorts")));
1130
1131
Albert Aribaudf2a37fc2010-08-08 05:17:05 +05301132#if defined(CONFIG_IDE_SWAP_IO)
wdenkc6097192002-11-03 00:24:07 +00001133/* since ATAPI may use commands with not 4 bytes alligned length
1134 * we have our own transfer functions, 2 bytes alligned */
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001135void __ide_output_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenkc6097192002-11-03 00:24:07 +00001136{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001137 ushort *dbuf;
1138 volatile ushort *pbuf;
wdenkc6097192002-11-03 00:24:07 +00001139
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001140 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
1141 dbuf = (ushort *) sect_buf;
wdenkdb01a2e2004-04-15 23:14:49 +00001142
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001143 debug("in output data shorts base for read is %lx\n",
1144 (unsigned long) pbuf);
wdenkdb01a2e2004-04-15 23:14:49 +00001145
wdenkc6097192002-11-03 00:24:07 +00001146 while (shorts--) {
wdenk5cf91d62004-04-23 20:32:05 +00001147 EIEIO;
wdenk1a344f22005-02-03 23:00:49 +00001148 *pbuf = *dbuf++;
wdenkc6097192002-11-03 00:24:07 +00001149 }
wdenk1a344f22005-02-03 23:00:49 +00001150}
1151
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001152void __ide_input_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk1a344f22005-02-03 23:00:49 +00001153{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001154 ushort *dbuf;
1155 volatile ushort *pbuf;
wdenk1a344f22005-02-03 23:00:49 +00001156
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001157 pbuf = (ushort *) (ATA_CURR_BASE(dev) + ATA_DATA_REG);
1158 dbuf = (ushort *) sect_buf;
wdenk1a344f22005-02-03 23:00:49 +00001159
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001160 debug("in input data shorts base for read is %lx\n",
1161 (unsigned long) pbuf);
wdenk1a344f22005-02-03 23:00:49 +00001162
1163 while (shorts--) {
1164 EIEIO;
1165 *dbuf++ = *pbuf;
1166 }
wdenkc6097192002-11-03 00:24:07 +00001167}
1168
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001169#else /* ! CONFIG_IDE_SWAP_IO */
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001170void __ide_output_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk2262cfe2002-11-18 00:14:45 +00001171{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001172 outsw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001173}
1174
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001175void __ide_input_data_shorts(int dev, ushort *sect_buf, int shorts)
wdenk2262cfe2002-11-18 00:14:45 +00001176{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001177 insw(ATA_CURR_BASE(dev) + ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001178}
1179
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001180#endif /* CONFIG_IDE_SWAP_IO */
wdenk2262cfe2002-11-18 00:14:45 +00001181
wdenkc6097192002-11-03 00:24:07 +00001182/*
1183 * Wait until (Status & mask) == res, or timeout (in ms)
1184 * Return last status
1185 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1186 * and then they set their DRQ Bit
1187 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001188static uchar atapi_wait_mask(int dev, ulong t, uchar mask, uchar res)
wdenkc6097192002-11-03 00:24:07 +00001189{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001190 ulong delay = 10 * t; /* poll every 100 us */
wdenkc6097192002-11-03 00:24:07 +00001191 uchar c;
1192
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001193 /* prevents to read the status before valid */
1194 c = ide_inb(dev, ATA_DEV_CTL);
1195
wdenk2262cfe2002-11-18 00:14:45 +00001196 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001197 /* break if error occurs (doesn't make sense to wait more) */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001198 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR)
wdenkc6097192002-11-03 00:24:07 +00001199 break;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001200 udelay(100);
1201 if (delay-- == 0)
wdenkc6097192002-11-03 00:24:07 +00001202 break;
wdenkc6097192002-11-03 00:24:07 +00001203 }
1204 return (c);
1205}
1206
1207/*
1208 * issue an atapi command
1209 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001210unsigned char atapi_issue(int device, unsigned char *ccb, int ccblen,
1211 unsigned char *buffer, int buflen)
wdenkc6097192002-11-03 00:24:07 +00001212{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001213 unsigned char c, err, mask, res;
wdenkc6097192002-11-03 00:24:07 +00001214 int n;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001215
1216 ide_led(DEVICE_LED(device), 1); /* LED on */
wdenkc6097192002-11-03 00:24:07 +00001217
1218 /* Select device
1219 */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001220 mask = ATA_STAT_BUSY | ATA_STAT_DRQ;
wdenkc6097192002-11-03 00:24:07 +00001221 res = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001222 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1223 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001224 if ((c & mask) != res) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001225 printf("ATAPI_ISSUE: device %d not ready status %X\n", device,
1226 c);
1227 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001228 goto AI_OUT;
1229 }
1230 /* write taskfile */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001231 ide_outb(device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
1232 ide_outb(device, ATA_SECT_CNT, 0);
1233 ide_outb(device, ATA_SECT_NUM, 0);
1234 ide_outb(device, ATA_CYL_LOW, (unsigned char) (buflen & 0xFF));
1235 ide_outb(device, ATA_CYL_HIGH,
1236 (unsigned char) ((buflen >> 8) & 0xFF));
1237 ide_outb(device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001238
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001239 ide_outb(device, ATA_COMMAND, ATAPI_CMD_PACKET);
1240 udelay(50);
wdenkc6097192002-11-03 00:24:07 +00001241
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001242 mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR;
wdenkc6097192002-11-03 00:24:07 +00001243 res = ATA_STAT_DRQ;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001244 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001245
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001246 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1247 printf("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",
1248 device, c);
1249 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001250 goto AI_OUT;
1251 }
1252
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001253 /* write command block */
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001254 ide_output_data_shorts(device, (unsigned short *) ccb, ccblen / 2);
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001255
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001256 /* ATAPI Command written wait for completition */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001257 udelay(5000); /* device must set bsy */
wdenkc6097192002-11-03 00:24:07 +00001258
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001259 mask = ATA_STAT_DRQ | ATA_STAT_BUSY | ATA_STAT_ERR;
1260 /*
1261 * if no data wait for DRQ = 0 BSY = 0
1262 * if data wait for DRQ = 1 BSY = 0
1263 */
1264 res = 0;
1265 if (buflen)
wdenkc6097192002-11-03 00:24:07 +00001266 res = ATA_STAT_DRQ;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001267 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
1268 if ((c & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001269 if (c & ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001270 err = (ide_inb(device, ATA_ERROR_REG)) >> 4;
1271 debug("atapi_issue 1 returned sense key %X status %02X\n",
1272 err, c);
wdenkc6097192002-11-03 00:24:07 +00001273 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001274 printf("ATAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n",
1275 ccb[0], c);
1276 err = 0xFF;
wdenkc6097192002-11-03 00:24:07 +00001277 }
1278 goto AI_OUT;
1279 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001280 n = ide_inb(device, ATA_CYL_HIGH);
1281 n <<= 8;
1282 n += ide_inb(device, ATA_CYL_LOW);
1283 if (n > buflen) {
1284 printf("ERROR, transfer bytes %d requested only %d\n", n,
1285 buflen);
1286 err = 0xff;
wdenkc6097192002-11-03 00:24:07 +00001287 goto AI_OUT;
1288 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001289 if ((n == 0) && (buflen < 0)) {
1290 printf("ERROR, transfer bytes %d requested %d\n", n, buflen);
1291 err = 0xff;
wdenkc6097192002-11-03 00:24:07 +00001292 goto AI_OUT;
1293 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001294 if (n != buflen) {
1295 debug("WARNING, transfer bytes %d not equal with requested %d\n",
1296 n, buflen);
wdenkc6097192002-11-03 00:24:07 +00001297 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001298 if (n != 0) { /* data transfer */
1299 debug("ATAPI_ISSUE: %d Bytes to transfer\n", n);
1300 /* we transfer shorts */
1301 n >>= 1;
wdenkc6097192002-11-03 00:24:07 +00001302 /* ok now decide if it is an in or output */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001303 if ((ide_inb(device, ATA_SECT_CNT) & 0x02) == 0) {
1304 debug("Write to device\n");
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001305 ide_output_data_shorts(device,
1306 (unsigned short *) buffer, n);
wdenkc6097192002-11-03 00:24:07 +00001307 } else {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001308 debug("Read from device @ %p shorts %d\n", buffer, n);
Pavel Herrmannf5b82c02012-10-09 07:04:39 +00001309 ide_input_data_shorts(device,
1310 (unsigned short *) buffer, n);
wdenkc6097192002-11-03 00:24:07 +00001311 }
1312 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001313 udelay(5000); /* seems that some CD ROMs need this... */
1314 mask = ATA_STAT_BUSY | ATA_STAT_ERR;
1315 res = 0;
1316 c = atapi_wait_mask(device, ATAPI_TIME_OUT, mask, res);
wdenkc6097192002-11-03 00:24:07 +00001317 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001318 err = (ide_inb(device, ATA_ERROR_REG) >> 4);
1319 debug("atapi_issue 2 returned sense key %X status %X\n", err,
1320 c);
wdenkc6097192002-11-03 00:24:07 +00001321 } else {
1322 err = 0;
1323 }
1324AI_OUT:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001325 ide_led(DEVICE_LED(device), 0); /* LED off */
wdenkc6097192002-11-03 00:24:07 +00001326 return (err);
1327}
1328
1329/*
1330 * sending the command to atapi_issue. If an status other than good
1331 * returns, an request_sense will be issued
1332 */
1333
Wolfgang Denk53677ef2008-05-20 16:00:29 +02001334#define ATAPI_DRIVE_NOT_READY 100
wdenkc6097192002-11-03 00:24:07 +00001335#define ATAPI_UNIT_ATTN 10
1336
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001337unsigned char atapi_issue_autoreq(int device,
1338 unsigned char *ccb,
1339 int ccblen,
1340 unsigned char *buffer, int buflen)
wdenkc6097192002-11-03 00:24:07 +00001341{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001342 unsigned char sense_data[18], sense_ccb[12];
1343 unsigned char res, key, asc, ascq;
1344 int notready, unitattn;
wdenkc6097192002-11-03 00:24:07 +00001345
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001346 unitattn = ATAPI_UNIT_ATTN;
1347 notready = ATAPI_DRIVE_NOT_READY;
wdenkc6097192002-11-03 00:24:07 +00001348
1349retry:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001350 res = atapi_issue(device, ccb, ccblen, buffer, buflen);
1351 if (res == 0)
1352 return 0; /* Ok */
wdenkc6097192002-11-03 00:24:07 +00001353
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001354 if (res == 0xFF)
1355 return 0xFF; /* error */
wdenkc6097192002-11-03 00:24:07 +00001356
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001357 debug("(auto_req)atapi_issue returned sense key %X\n", res);
wdenkc6097192002-11-03 00:24:07 +00001358
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001359 memset(sense_ccb, 0, sizeof(sense_ccb));
1360 memset(sense_data, 0, sizeof(sense_data));
1361 sense_ccb[0] = ATAPI_CMD_REQ_SENSE;
1362 sense_ccb[4] = 18; /* allocation Length */
wdenkc6097192002-11-03 00:24:07 +00001363
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001364 res = atapi_issue(device, sense_ccb, 12, sense_data, 18);
1365 key = (sense_data[2] & 0xF);
1366 asc = (sense_data[12]);
1367 ascq = (sense_data[13]);
wdenkc6097192002-11-03 00:24:07 +00001368
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001369 debug("ATAPI_CMD_REQ_SENSE returned %x\n", res);
1370 debug(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1371 sense_data[0], key, asc, ascq);
wdenkc6097192002-11-03 00:24:07 +00001372
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001373 if ((key == 0))
1374 return 0; /* ok device ready */
wdenkc6097192002-11-03 00:24:07 +00001375
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001376 if ((key == 6) || (asc == 0x29) || (asc == 0x28)) { /* Unit Attention */
1377 if (unitattn-- > 0) {
1378 udelay(200 * 1000);
wdenkc6097192002-11-03 00:24:07 +00001379 goto retry;
1380 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001381 printf("Unit Attention, tried %d\n", ATAPI_UNIT_ATTN);
wdenkc6097192002-11-03 00:24:07 +00001382 goto error;
1383 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001384 if ((asc == 0x4) && (ascq == 0x1)) {
1385 /* not ready, but will be ready soon */
1386 if (notready-- > 0) {
1387 udelay(200 * 1000);
wdenkc6097192002-11-03 00:24:07 +00001388 goto retry;
1389 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001390 printf("Drive not ready, tried %d times\n",
1391 ATAPI_DRIVE_NOT_READY);
wdenkc6097192002-11-03 00:24:07 +00001392 goto error;
1393 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001394 if (asc == 0x3a) {
1395 debug("Media not present\n");
wdenkc6097192002-11-03 00:24:07 +00001396 goto error;
1397 }
wdenkc7de8292002-11-19 11:04:11 +00001398
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001399 printf("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n", key, asc,
1400 ascq);
wdenkc6097192002-11-03 00:24:07 +00001401error:
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001402 debug("ERROR Sense key %02X ASC %02X ASCQ %02X\n", key, asc, ascq);
wdenkc6097192002-11-03 00:24:07 +00001403 return (0xFF);
1404}
1405
1406
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001407static void atapi_inquiry(block_dev_desc_t *dev_desc)
wdenkc6097192002-11-03 00:24:07 +00001408{
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001409 unsigned char ccb[12]; /* Command descriptor block */
1410 unsigned char iobuf[64]; /* temp buf */
wdenkc6097192002-11-03 00:24:07 +00001411 unsigned char c;
1412 int device;
1413
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001414 device = dev_desc->dev;
1415 dev_desc->type = DEV_TYPE_UNKNOWN; /* not yet valid */
1416 dev_desc->block_read = atapi_read;
wdenkc6097192002-11-03 00:24:07 +00001417
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001418 memset(ccb, 0, sizeof(ccb));
1419 memset(iobuf, 0, sizeof(iobuf));
wdenkc6097192002-11-03 00:24:07 +00001420
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001421 ccb[0] = ATAPI_CMD_INQUIRY;
1422 ccb[4] = 40; /* allocation Legnth */
1423 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 40);
wdenkc6097192002-11-03 00:24:07 +00001424
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001425 debug("ATAPI_CMD_INQUIRY returned %x\n", c);
1426 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001427 return;
1428
1429 /* copy device ident strings */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001430 ident_cpy((unsigned char *) dev_desc->vendor, &iobuf[8], 8);
1431 ident_cpy((unsigned char *) dev_desc->product, &iobuf[16], 16);
1432 ident_cpy((unsigned char *) dev_desc->revision, &iobuf[32], 5);
wdenkc6097192002-11-03 00:24:07 +00001433
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001434 dev_desc->lun = 0;
1435 dev_desc->lba = 0;
1436 dev_desc->blksz = 0;
Egbert Eich0472fbf2013-04-09 21:11:56 +00001437 dev_desc->log2blksz = LOG2_INVALID(typeof(dev_desc->log2blksz));
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001438 dev_desc->type = iobuf[0] & 0x1f;
wdenkc6097192002-11-03 00:24:07 +00001439
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001440 if ((iobuf[1] & 0x80) == 0x80)
wdenkc6097192002-11-03 00:24:07 +00001441 dev_desc->removable = 1;
1442 else
1443 dev_desc->removable = 0;
1444
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001445 memset(ccb, 0, sizeof(ccb));
1446 memset(iobuf, 0, sizeof(iobuf));
1447 ccb[0] = ATAPI_CMD_START_STOP;
1448 ccb[4] = 0x03; /* start */
wdenkc6097192002-11-03 00:24:07 +00001449
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001450 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 0);
wdenkc6097192002-11-03 00:24:07 +00001451
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001452 debug("ATAPI_CMD_START_STOP returned %x\n", c);
1453 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001454 return;
1455
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001456 memset(ccb, 0, sizeof(ccb));
1457 memset(iobuf, 0, sizeof(iobuf));
1458 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 0);
wdenkc6097192002-11-03 00:24:07 +00001459
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001460 debug("ATAPI_CMD_UNIT_TEST_READY returned %x\n", c);
1461 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001462 return;
1463
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001464 memset(ccb, 0, sizeof(ccb));
1465 memset(iobuf, 0, sizeof(iobuf));
1466 ccb[0] = ATAPI_CMD_READ_CAP;
1467 c = atapi_issue_autoreq(device, ccb, 12, (unsigned char *) iobuf, 8);
1468 debug("ATAPI_CMD_READ_CAP returned %x\n", c);
1469 if (c != 0)
wdenkc6097192002-11-03 00:24:07 +00001470 return;
1471
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001472 debug("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1473 iobuf[0], iobuf[1], iobuf[2], iobuf[3],
1474 iobuf[4], iobuf[5], iobuf[6], iobuf[7]);
wdenkc6097192002-11-03 00:24:07 +00001475
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001476 dev_desc->lba = ((unsigned long) iobuf[0] << 24) +
1477 ((unsigned long) iobuf[1] << 16) +
1478 ((unsigned long) iobuf[2] << 8) + ((unsigned long) iobuf[3]);
1479 dev_desc->blksz = ((unsigned long) iobuf[4] << 24) +
1480 ((unsigned long) iobuf[5] << 16) +
1481 ((unsigned long) iobuf[6] << 8) + ((unsigned long) iobuf[7]);
Egbert Eich0472fbf2013-04-09 21:11:56 +00001482 dev_desc->log2blksz = LOG2(dev_desc->blksz);
wdenk42dfe7a2004-03-14 22:25:36 +00001483#ifdef CONFIG_LBA48
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001484 /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
1485 dev_desc->lba48 = 0;
wdenk42dfe7a2004-03-14 22:25:36 +00001486#endif
wdenkc6097192002-11-03 00:24:07 +00001487 return;
1488}
1489
1490
1491/*
1492 * atapi_read:
1493 * we transfer only one block per command, since the multiple DRQ per
1494 * command is not yet implemented
1495 */
1496#define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1497#define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001498#define ATAPI_READ_MAX_BLOCK (ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE)
wdenkc6097192002-11-03 00:24:07 +00001499
Simon Glassb6458d32012-10-29 05:24:04 +00001500ulong atapi_read(int device, ulong blknr, lbaint_t blkcnt, void *buffer)
wdenkc6097192002-11-03 00:24:07 +00001501{
1502 ulong n = 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001503 unsigned char ccb[12]; /* Command descriptor block */
wdenkc6097192002-11-03 00:24:07 +00001504 ulong cnt;
1505
Simon Glassb6458d32012-10-29 05:24:04 +00001506 debug("atapi_read dev %d start %lX, blocks " LBAF " buffer at %lX\n",
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001507 device, blknr, blkcnt, (ulong) buffer);
wdenkc6097192002-11-03 00:24:07 +00001508
1509 do {
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001510 if (blkcnt > ATAPI_READ_MAX_BLOCK)
1511 cnt = ATAPI_READ_MAX_BLOCK;
1512 else
1513 cnt = blkcnt;
wdenkc6097192002-11-03 00:24:07 +00001514
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001515 ccb[0] = ATAPI_CMD_READ_12;
1516 ccb[1] = 0; /* reserved */
1517 ccb[2] = (unsigned char) (blknr >> 24) & 0xFF; /* MSB Block */
1518 ccb[3] = (unsigned char) (blknr >> 16) & 0xFF; /* */
1519 ccb[4] = (unsigned char) (blknr >> 8) & 0xFF;
1520 ccb[5] = (unsigned char) blknr & 0xFF; /* LSB Block */
1521 ccb[6] = (unsigned char) (cnt >> 24) & 0xFF; /* MSB Block cnt */
1522 ccb[7] = (unsigned char) (cnt >> 16) & 0xFF;
1523 ccb[8] = (unsigned char) (cnt >> 8) & 0xFF;
1524 ccb[9] = (unsigned char) cnt & 0xFF; /* LSB Block */
1525 ccb[10] = 0; /* reserved */
1526 ccb[11] = 0; /* reserved */
1527
1528 if (atapi_issue_autoreq(device, ccb, 12,
1529 (unsigned char *) buffer,
1530 cnt * ATAPI_READ_BLOCK_SIZE)
1531 == 0xFF) {
wdenkc6097192002-11-03 00:24:07 +00001532 return (n);
1533 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001534 n += cnt;
1535 blkcnt -= cnt;
1536 blknr += cnt;
1537 buffer += (cnt * ATAPI_READ_BLOCK_SIZE);
wdenkc6097192002-11-03 00:24:07 +00001538 } while (blkcnt > 0);
1539 return (n);
1540}
1541
1542/* ------------------------------------------------------------------------- */
1543
1544#endif /* CONFIG_ATAPI */
1545
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001546U_BOOT_CMD(ide, 5, 1, do_ide,
1547 "IDE sub-system",
1548 "reset - reset IDE controller\n"
1549 "ide info - show available IDE devices\n"
1550 "ide device [dev] - show or set current device\n"
1551 "ide part [dev] - print partition table of one or all IDE devices\n"
1552 "ide read addr blk# cnt\n"
1553 "ide write addr blk# cnt - read/write `cnt'"
1554 " blocks starting at block `blk#'\n"
1555 " to/from memory address `addr'");
wdenk8bde7f72003-06-27 21:31:46 +00001556
Wolfgang Denk34c202c2011-10-29 09:41:40 +00001557U_BOOT_CMD(diskboot, 3, 1, do_diskboot,
1558 "boot from IDE device", "loadAddr dev:part");