blob: 842a2fd786665acd3dacb8d20e9480293c1119ff [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2000-2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 *
23 */
24
25/*
26 * IDE support
27 */
28#include <common.h>
29#include <config.h>
30#include <watchdog.h>
31#include <command.h>
32#include <image.h>
33#include <asm/byteorder.h>
34#if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
35# include <pcmcia.h>
36#endif
37#ifdef CONFIG_8xx
38# include <mpc8xx.h>
39#endif
wdenk132ba5f2004-02-27 08:20:54 +000040#ifdef CONFIG_MPC5xxx
41#include <mpc5xxx.h>
42#endif
wdenkc6097192002-11-03 00:24:07 +000043#include <ide.h>
44#include <ata.h>
wdenkc6097192002-11-03 00:24:07 +000045#ifdef CONFIG_STATUS_LED
46# include <status_led.h>
47#endif
wdenk15647dc2003-10-09 19:00:25 +000048#ifndef __PPC__
wdenk2262cfe2002-11-18 00:14:45 +000049#include <asm/io.h>
wdenk15647dc2003-10-09 19:00:25 +000050#ifdef __MIPS__
51/* Macros depend on this variable */
52static unsigned long mips_io_port_base = 0;
53#endif
wdenk2262cfe2002-11-18 00:14:45 +000054#endif
wdenkc6097192002-11-03 00:24:07 +000055
56#ifdef CONFIG_SHOW_BOOT_PROGRESS
57# include <status_led.h>
58# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
59#else
60# define SHOW_BOOT_PROGRESS(arg)
61#endif
62
63
64#undef IDE_DEBUG
65
wdenkc7de8292002-11-19 11:04:11 +000066
wdenkc6097192002-11-03 00:24:07 +000067#ifdef IDE_DEBUG
68#define PRINTF(fmt,args...) printf (fmt ,##args)
69#else
70#define PRINTF(fmt,args...)
71#endif
72
73#if (CONFIG_COMMANDS & CFG_CMD_IDE)
74
wdenk15647dc2003-10-09 19:00:25 +000075#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +000076/* Timings for IDE Interface
77 *
78 * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk
79 * 70 165 30 PIO-Mode 0, [ns]
80 * 4 9 2 [Cycles]
81 * 50 125 20 PIO-Mode 1, [ns]
82 * 3 7 2 [Cycles]
83 * 30 100 15 PIO-Mode 2, [ns]
84 * 2 6 1 [Cycles]
85 * 30 80 10 PIO-Mode 3, [ns]
86 * 2 5 1 [Cycles]
87 * 25 70 10 PIO-Mode 4, [ns]
88 * 2 4 1 [Cycles]
89 */
90
91const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] =
92{
93 /* Setup Length Hold */
94 { 70, 165, 30 }, /* PIO-Mode 0, [ns] */
95 { 50, 125, 20 }, /* PIO-Mode 1, [ns] */
96 { 30, 101, 15 }, /* PIO-Mode 2, [ns] */
97 { 30, 80, 10 }, /* PIO-Mode 3, [ns] */
98 { 25, 70, 10 }, /* PIO-Mode 4, [ns] */
99};
100
101static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1];
102
103#ifndef CFG_PIO_MODE
104#define CFG_PIO_MODE 0 /* use a relaxed default */
105#endif
106static int pio_mode = CFG_PIO_MODE;
107
108/* Make clock cycles and always round up */
109
110#define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U )
111
wdenk15647dc2003-10-09 19:00:25 +0000112#endif /* CONFIG_IDE_8xx_DIRECT */
113
wdenkc6097192002-11-03 00:24:07 +0000114/* ------------------------------------------------------------------------- */
115
116/* Current I/O Device */
117static int curr_device = -1;
118
119/* Current offset for IDE0 / IDE1 bus access */
120ulong ide_bus_offset[CFG_IDE_MAXBUS] = {
121#if defined(CFG_ATA_IDE0_OFFSET)
122 CFG_ATA_IDE0_OFFSET,
123#endif
124#if defined(CFG_ATA_IDE1_OFFSET) && (CFG_IDE_MAXBUS > 1)
125 CFG_ATA_IDE1_OFFSET,
126#endif
127};
128
wdenk15647dc2003-10-09 19:00:25 +0000129
wdenkc6097192002-11-03 00:24:07 +0000130#define ATA_CURR_BASE(dev) (CFG_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)])
131
wdenkc7de8292002-11-19 11:04:11 +0000132#ifndef CONFIG_AMIGAONEG3SE
wdenkc6097192002-11-03 00:24:07 +0000133static int ide_bus_ok[CFG_IDE_MAXBUS];
wdenkc7de8292002-11-19 11:04:11 +0000134#else
135static int ide_bus_ok[CFG_IDE_MAXBUS] = {0,};
136#endif
wdenkc6097192002-11-03 00:24:07 +0000137
138static block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE];
139/* ------------------------------------------------------------------------- */
140
141#ifdef CONFIG_IDE_LED
wdenkc40b2952004-03-13 23:29:43 +0000142#if !defined(CONFIG_KUP4K) && !defined(CONFIG_HMI10)
wdenkc6097192002-11-03 00:24:07 +0000143static void ide_led (uchar led, uchar status);
144#else
wdenk1f53a412002-12-04 23:39:58 +0000145extern void ide_led (uchar led, uchar status);
146#endif
147#else
wdenkc7de8292002-11-19 11:04:11 +0000148#ifndef CONFIG_AMIGAONEG3SE
wdenkc6097192002-11-03 00:24:07 +0000149#define ide_led(a,b) /* dummy */
wdenkc7de8292002-11-19 11:04:11 +0000150#else
151extern void ide_led(uchar led, uchar status);
152#define LED_IDE1 1
153#define LED_IDE2 2
154#define CONFIG_IDE_LED 1
155#define DEVICE_LED(x) 1
156#endif
wdenkc6097192002-11-03 00:24:07 +0000157#endif
158
159#ifdef CONFIG_IDE_RESET
160static void ide_reset (void);
161#else
162#define ide_reset() /* dummy */
163#endif
164
165static void ide_ident (block_dev_desc_t *dev_desc);
166static uchar ide_wait (int dev, ulong t);
167
168#define IDE_TIME_OUT 2000 /* 2 sec timeout */
169
170#define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
171
172#define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
173
wdenk2262cfe2002-11-18 00:14:45 +0000174static void __inline__ ide_outb(int dev, int port, unsigned char val);
175static unsigned char __inline__ ide_inb(int dev, int port);
wdenkc6097192002-11-03 00:24:07 +0000176static void input_data(int dev, ulong *sect_buf, int words);
177static void output_data(int dev, ulong *sect_buf, int words);
178static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
179
180
181#ifdef CONFIG_ATAPI
182static void atapi_inquiry(block_dev_desc_t *dev_desc);
wdenkc40b2952004-03-13 23:29:43 +0000183ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer);
wdenkc6097192002-11-03 00:24:07 +0000184#endif
185
186
187#ifdef CONFIG_IDE_8xx_DIRECT
188static void set_pcmcia_timing (int pmode);
wdenkc6097192002-11-03 00:24:07 +0000189#endif
190
191/* ------------------------------------------------------------------------- */
192
193int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
194{
195 int rcode = 0;
196
197 switch (argc) {
198 case 0:
199 case 1:
200 printf ("Usage:\n%s\n", cmdtp->usage);
201 return 1;
202 case 2:
203 if (strncmp(argv[1],"res",3) == 0) {
204 puts ("\nReset IDE"
205#ifdef CONFIG_IDE_8xx_DIRECT
206 " on PCMCIA " PCMCIA_SLOT_MSG
207#endif
208 ": ");
209
210 ide_init ();
211 return 0;
212 } else if (strncmp(argv[1],"inf",3) == 0) {
213 int i;
214
215 putc ('\n');
216
217 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
218 if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN)
219 continue; /* list only known devices */
220 printf ("IDE device %d: ", i);
221 dev_print(&ide_dev_desc[i]);
222 }
223 return 0;
224
225 } else if (strncmp(argv[1],"dev",3) == 0) {
226 if ((curr_device < 0) || (curr_device >= CFG_IDE_MAXDEVICE)) {
227 puts ("\nno IDE devices available\n");
228 return 1;
229 }
230 printf ("\nIDE device %d: ", curr_device);
231 dev_print(&ide_dev_desc[curr_device]);
232 return 0;
233 } else if (strncmp(argv[1],"part",4) == 0) {
234 int dev, ok;
235
236 for (ok=0, dev=0; dev<CFG_IDE_MAXDEVICE; ++dev) {
237 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
238 ++ok;
239 if (dev)
240 putc ('\n');
241 print_part(&ide_dev_desc[dev]);
242 }
243 }
244 if (!ok) {
245 puts ("\nno IDE devices available\n");
246 rcode ++;
247 }
248 return rcode;
249 }
250 printf ("Usage:\n%s\n", cmdtp->usage);
251 return 1;
252 case 3:
253 if (strncmp(argv[1],"dev",3) == 0) {
254 int dev = (int)simple_strtoul(argv[2], NULL, 10);
255
256 printf ("\nIDE device %d: ", dev);
257 if (dev >= CFG_IDE_MAXDEVICE) {
258 puts ("unknown device\n");
259 return 1;
260 }
261 dev_print(&ide_dev_desc[dev]);
262 /*ide_print (dev);*/
263
264 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
265 return 1;
266 }
267
268 curr_device = dev;
269
270 puts ("... is now current device\n");
271
272 return 0;
273 } else if (strncmp(argv[1],"part",4) == 0) {
274 int dev = (int)simple_strtoul(argv[2], NULL, 10);
275
276 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
277 print_part(&ide_dev_desc[dev]);
278 } else {
279 printf ("\nIDE device %d not available\n", dev);
280 rcode = 1;
281 }
282 return rcode;
283#if 0
284 } else if (strncmp(argv[1],"pio",4) == 0) {
285 int mode = (int)simple_strtoul(argv[2], NULL, 10);
286
287 if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) {
288 puts ("\nSetting ");
289 pio_mode = mode;
290 ide_init ();
291 } else {
292 printf ("\nInvalid PIO mode %d (0 ... %d only)\n",
293 mode, IDE_MAX_PIO_MODE);
294 }
295 return;
296#endif
297 }
298
299 printf ("Usage:\n%s\n", cmdtp->usage);
300 return 1;
301 default:
302 /* at least 4 args */
303
304 if (strcmp(argv[1],"read") == 0) {
305 ulong addr = simple_strtoul(argv[2], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000306 ulong cnt = simple_strtoul(argv[4], NULL, 16);
307 ulong n;
wdenk42dfe7a2004-03-14 22:25:36 +0000308#ifdef CFG_64BIT_STRTOUL
309 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000310
wdenkc40b2952004-03-13 23:29:43 +0000311 printf ("\nIDE read: device %d block # %qd, count %ld ... ",
wdenkc6097192002-11-03 00:24:07 +0000312 curr_device, blk, cnt);
wdenk42dfe7a2004-03-14 22:25:36 +0000313#else
314 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
315
316 printf ("\nIDE read: device %d block # %ld, count %ld ... ",
317 curr_device, blk, cnt);
318#endif
wdenkc6097192002-11-03 00:24:07 +0000319
320 n = ide_dev_desc[curr_device].block_read (curr_device,
321 blk, cnt,
322 (ulong *)addr);
323 /* flush cache after read */
324 flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz);
325
326 printf ("%ld blocks read: %s\n",
327 n, (n==cnt) ? "OK" : "ERROR");
328 if (n==cnt) {
329 return 0;
330 } else {
331 return 1;
332 }
333 } else if (strcmp(argv[1],"write") == 0) {
334 ulong addr = simple_strtoul(argv[2], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000335 ulong cnt = simple_strtoul(argv[4], NULL, 16);
336 ulong n;
wdenk42dfe7a2004-03-14 22:25:36 +0000337#ifdef CFG_64BIT_STRTOUL
338 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
wdenkc6097192002-11-03 00:24:07 +0000339
wdenkc40b2952004-03-13 23:29:43 +0000340 printf ("\nIDE write: device %d block # %qd, count %ld ... ",
wdenkc6097192002-11-03 00:24:07 +0000341 curr_device, blk, cnt);
wdenk42dfe7a2004-03-14 22:25:36 +0000342#else
343 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
344
345 printf ("\nIDE write: device %d block # %ld, count %ld ... ",
346 curr_device, blk, cnt);
347#endif
wdenkc6097192002-11-03 00:24:07 +0000348
349 n = ide_write (curr_device, blk, cnt, (ulong *)addr);
350
351 printf ("%ld blocks written: %s\n",
352 n, (n==cnt) ? "OK" : "ERROR");
353 if (n==cnt) {
354 return 0;
355 } else {
356 return 1;
357 }
358 } else {
359 printf ("Usage:\n%s\n", cmdtp->usage);
360 rcode = 1;
361 }
362
363 return rcode;
364 }
365}
366
367int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
368{
369 char *boot_device = NULL;
370 char *ep;
371 int dev, part = 0;
372 ulong cnt;
373 ulong addr;
374 disk_partition_t info;
375 image_header_t *hdr;
376 int rcode = 0;
377
378 switch (argc) {
379 case 1:
380 addr = CFG_LOAD_ADDR;
381 boot_device = getenv ("bootdevice");
382 break;
383 case 2:
384 addr = simple_strtoul(argv[1], NULL, 16);
385 boot_device = getenv ("bootdevice");
386 break;
387 case 3:
388 addr = simple_strtoul(argv[1], NULL, 16);
389 boot_device = argv[2];
390 break;
391 default:
392 printf ("Usage:\n%s\n", cmdtp->usage);
393 SHOW_BOOT_PROGRESS (-1);
394 return 1;
395 }
396
397 if (!boot_device) {
398 puts ("\n** No boot device **\n");
399 SHOW_BOOT_PROGRESS (-1);
400 return 1;
401 }
402
403 dev = simple_strtoul(boot_device, &ep, 16);
404
405 if (ide_dev_desc[dev].type==DEV_TYPE_UNKNOWN) {
406 printf ("\n** Device %d not available\n", dev);
407 SHOW_BOOT_PROGRESS (-1);
408 return 1;
409 }
410
411 if (*ep) {
412 if (*ep != ':') {
413 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
414 SHOW_BOOT_PROGRESS (-1);
415 return 1;
416 }
417 part = simple_strtoul(++ep, NULL, 16);
418 }
419 if (get_partition_info (&ide_dev_desc[dev], part, &info)) {
420 SHOW_BOOT_PROGRESS (-1);
421 return 1;
422 }
wdenk4532cb62003-04-27 22:52:51 +0000423 if ((strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
424 (strncmp(info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
wdenkc6097192002-11-03 00:24:07 +0000425 printf ("\n** Invalid partition type \"%.32s\""
426 " (expect \"" BOOT_PART_TYPE "\")\n",
427 info.type);
428 SHOW_BOOT_PROGRESS (-1);
429 return 1;
430 }
431
432 printf ("\nLoading from IDE device %d, partition %d: "
433 "Name: %.32s Type: %.32s\n",
434 dev, part, info.name, info.type);
435
436 PRINTF ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
437 info.start, info.size, info.blksz);
438
439 if (ide_dev_desc[dev].block_read (dev, info.start, 1, (ulong *)addr) != 1) {
440 printf ("** Read error on %d:%d\n", dev, part);
441 SHOW_BOOT_PROGRESS (-1);
442 return 1;
443 }
444
445 hdr = (image_header_t *)addr;
446
447 if (ntohl(hdr->ih_magic) == IH_MAGIC) {
448
449 print_image_hdr (hdr);
450
451 cnt = (ntohl(hdr->ih_size) + sizeof(image_header_t));
452 cnt += info.blksz - 1;
453 cnt /= info.blksz;
454 cnt -= 1;
455 } else {
456 printf("\n** Bad Magic Number **\n");
457 SHOW_BOOT_PROGRESS (-1);
458 return 1;
459 }
460
461 if (ide_dev_desc[dev].block_read (dev, info.start+1, cnt,
462 (ulong *)(addr+info.blksz)) != cnt) {
463 printf ("** Read error on %d:%d\n", dev, part);
464 SHOW_BOOT_PROGRESS (-1);
465 return 1;
466 }
467
468
469 /* Loading ok, update default load address */
470
471 load_addr = addr;
472
473 /* Check if we should attempt an auto-start */
474 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
475 char *local_args[2];
476 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
477
478 local_args[0] = argv[0];
479 local_args[1] = NULL;
480
481 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
482
483 do_bootm (cmdtp, 0, 1, local_args);
484 rcode = 1;
485 }
486 return rcode;
487}
488
489/* ------------------------------------------------------------------------- */
490
491void ide_init (void)
492{
wdenkc6097192002-11-03 00:24:07 +0000493
494#ifdef CONFIG_IDE_8xx_DIRECT
wdenk15647dc2003-10-09 19:00:25 +0000495 DECLARE_GLOBAL_DATA_PTR;
wdenkc6097192002-11-03 00:24:07 +0000496 volatile immap_t *immr = (immap_t *)CFG_IMMR;
497 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
498#endif
499 unsigned char c;
500 int i, bus;
wdenkc7de8292002-11-19 11:04:11 +0000501#ifdef CONFIG_AMIGAONEG3SE
502 unsigned int max_bus_scan;
503 unsigned int ata_reset_time;
504 char *s;
505#endif
wdenk9fd5e312003-12-07 23:55:12 +0000506#ifdef CONFIG_IDE_8xx_PCCARD
507 extern int pcmcia_on (void);
508 extern int ide_devices_found; /* Initialized in check_ide_device() */
509#endif /* CONFIG_IDE_8xx_PCCARD */
510
511#ifdef CONFIG_IDE_PREINIT
wdenk4d13cba2004-03-14 14:09:05 +0000512 extern int ide_preinit (void);
wdenk9fd5e312003-12-07 23:55:12 +0000513 WATCHDOG_RESET();
514
515 if (ide_preinit ()) {
516 puts ("ide_preinit failed\n");
517 return;
518 }
519#endif /* CONFIG_IDE_PREINIT */
wdenkc6097192002-11-03 00:24:07 +0000520
521#ifdef CONFIG_IDE_8xx_PCCARD
522 extern int pcmcia_on (void);
wdenk6069ff22003-02-28 00:49:47 +0000523 extern int ide_devices_found; /* Initialized in check_ide_device() */
wdenkc6097192002-11-03 00:24:07 +0000524
525 WATCHDOG_RESET();
526
wdenk6069ff22003-02-28 00:49:47 +0000527 ide_devices_found = 0;
wdenkc6097192002-11-03 00:24:07 +0000528 /* initialize the PCMCIA IDE adapter card */
wdenk6069ff22003-02-28 00:49:47 +0000529 pcmcia_on();
530 if (!ide_devices_found)
wdenkc6097192002-11-03 00:24:07 +0000531 return;
532 udelay (1000000); /* 1 s */
533#endif /* CONFIG_IDE_8xx_PCCARD */
534
535 WATCHDOG_RESET();
536
wdenk15647dc2003-10-09 19:00:25 +0000537#ifdef CONFIG_IDE_8xx_DIRECT
wdenkc6097192002-11-03 00:24:07 +0000538 /* Initialize PIO timing tables */
539 for (i=0; i <= IDE_MAX_PIO_MODE; ++i) {
540 pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup,
541 gd->bus_clk);
542 pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
543 gd->bus_clk);
544 pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold,
545 gd->bus_clk);
546 PRINTF ("PIO Mode %d: setup=%2d ns/%d clk"
547 " len=%3d ns/%d clk"
548 " hold=%2d ns/%d clk\n",
549 i,
550 pio_config_ns[i].t_setup, pio_config_clk[i].t_setup,
551 pio_config_ns[i].t_length, pio_config_clk[i].t_length,
552 pio_config_ns[i].t_hold, pio_config_clk[i].t_hold);
553 }
wdenk15647dc2003-10-09 19:00:25 +0000554#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000555
556 /* Reset the IDE just to be sure.
557 * Light LED's to show
558 */
559 ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */
560 ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */
561
562#ifdef CONFIG_IDE_8xx_DIRECT
563 /* PCMCIA / IDE initialization for common mem space */
564 pcmp->pcmc_pgcrb = 0;
wdenkc6097192002-11-03 00:24:07 +0000565
566 /* start in PIO mode 0 - most relaxed timings */
567 pio_mode = 0;
568 set_pcmcia_timing (pio_mode);
wdenk15647dc2003-10-09 19:00:25 +0000569#endif /* CONFIG_IDE_8xx_DIRECT */
wdenkc6097192002-11-03 00:24:07 +0000570
571 /*
572 * Wait for IDE to get ready.
573 * According to spec, this can take up to 31 seconds!
574 */
wdenkc7de8292002-11-19 11:04:11 +0000575#ifndef CONFIG_AMIGAONEG3SE
wdenkc6097192002-11-03 00:24:07 +0000576 for (bus=0; bus<CFG_IDE_MAXBUS; ++bus) {
577 int dev = bus * (CFG_IDE_MAXDEVICE / CFG_IDE_MAXBUS);
wdenkc7de8292002-11-19 11:04:11 +0000578#else
579 s = getenv("ide_maxbus");
580 if (s)
581 max_bus_scan = simple_strtol(s, NULL, 10);
582 else
583 max_bus_scan = CFG_IDE_MAXBUS;
584
585 for (bus=0; bus<max_bus_scan; ++bus) {
586 int dev = bus * (CFG_IDE_MAXDEVICE / max_bus_scan);
587#endif
wdenkc6097192002-11-03 00:24:07 +0000588
wdenk6069ff22003-02-28 00:49:47 +0000589#ifdef CONFIG_IDE_8xx_PCCARD
590 /* Skip non-ide devices from probing */
591 if ((ide_devices_found & (1 << bus)) == 0) {
592 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
593 continue;
594 }
595#endif
wdenkc6097192002-11-03 00:24:07 +0000596 printf ("Bus %d: ", bus);
597
598 ide_bus_ok[bus] = 0;
599
600 /* Select device
601 */
602 udelay (100000); /* 100 ms */
wdenk2262cfe2002-11-18 00:14:45 +0000603 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
wdenkc6097192002-11-03 00:24:07 +0000604 udelay (100000); /* 100 ms */
wdenkc7de8292002-11-19 11:04:11 +0000605#ifdef CONFIG_AMIGAONEG3SE
606 ata_reset_time = ATA_RESET_TIME;
607 s = getenv("ide_reset_timeout");
608 if (s) ata_reset_time = 2*simple_strtol(s, NULL, 10);
609#endif
wdenkc6097192002-11-03 00:24:07 +0000610 i = 0;
611 do {
612 udelay (10000); /* 10 ms */
613
wdenk2262cfe2002-11-18 00:14:45 +0000614 c = ide_inb (dev, ATA_STATUS);
wdenkc6097192002-11-03 00:24:07 +0000615 i++;
wdenkc7de8292002-11-19 11:04:11 +0000616#ifdef CONFIG_AMIGAONEG3SE
617 if (i > (ata_reset_time * 100)) {
618#else
wdenkc6097192002-11-03 00:24:07 +0000619 if (i > (ATA_RESET_TIME * 100)) {
wdenkc7de8292002-11-19 11:04:11 +0000620#endif
wdenkc6097192002-11-03 00:24:07 +0000621 puts ("** Timeout **\n");
622 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
wdenkc7de8292002-11-19 11:04:11 +0000623#ifdef CONFIG_AMIGAONEG3SE
624 /* If this is the second bus, the first one was OK */
wdenkc40b2952004-03-13 23:29:43 +0000625 if (bus != 0) {
wdenkc7de8292002-11-19 11:04:11 +0000626 ide_bus_ok[bus] = 0;
627 goto skip_bus;
628 }
629#endif
wdenkc6097192002-11-03 00:24:07 +0000630 return;
631 }
632 if ((i >= 100) && ((i%100)==0)) {
633 putc ('.');
634 }
635 } while (c & ATA_STAT_BUSY);
636
637 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
638 puts ("not available ");
639 PRINTF ("Status = 0x%02X ", c);
640#ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
641 } else if ((c & ATA_STAT_READY) == 0) {
642 puts ("not available ");
643 PRINTF ("Status = 0x%02X ", c);
644#endif
645 } else {
646 puts ("OK ");
647 ide_bus_ok[bus] = 1;
648 }
649 WATCHDOG_RESET();
650 }
wdenkc7de8292002-11-19 11:04:11 +0000651
652#ifdef CONFIG_AMIGAONEG3SE
653 skip_bus:
654#endif
wdenkc6097192002-11-03 00:24:07 +0000655 putc ('\n');
656
657 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
658
659 curr_device = -1;
660 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
661#ifdef CONFIG_IDE_LED
662 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
663#endif
wdenk5cf9da42003-11-07 13:42:26 +0000664 ide_dev_desc[i].type=DEV_TYPE_UNKNOWN;
wdenkc6097192002-11-03 00:24:07 +0000665 ide_dev_desc[i].if_type=IF_TYPE_IDE;
666 ide_dev_desc[i].dev=i;
667 ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
668 ide_dev_desc[i].blksz=0;
669 ide_dev_desc[i].lba=0;
670 ide_dev_desc[i].block_read=ide_read;
671 if (!ide_bus_ok[IDE_BUS(i)])
672 continue;
673 ide_led (led, 1); /* LED on */
674 ide_ident(&ide_dev_desc[i]);
675 ide_led (led, 0); /* LED off */
676 dev_print(&ide_dev_desc[i]);
677/* ide_print (i); */
678 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
679 init_part (&ide_dev_desc[i]); /* initialize partition type */
680 if (curr_device < 0)
681 curr_device = i;
682 }
683 }
684 WATCHDOG_RESET();
685}
686
687/* ------------------------------------------------------------------------- */
688
689block_dev_desc_t * ide_get_dev(int dev)
690{
691 return ((block_dev_desc_t *)&ide_dev_desc[dev]);
692}
693
694
695#ifdef CONFIG_IDE_8xx_DIRECT
696
697static void
698set_pcmcia_timing (int pmode)
699{
700 volatile immap_t *immr = (immap_t *)CFG_IMMR;
701 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
702 ulong timings;
703
704 PRINTF ("Set timing for PIO Mode %d\n", pmode);
705
706 timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
707 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
708 | PCMCIA_SL (pio_config_clk[pmode].t_length)
709 ;
710
711 /* IDE 0
712 */
713 pcmp->pcmc_pbr0 = CFG_PCMCIA_PBR0;
714 pcmp->pcmc_por0 = CFG_PCMCIA_POR0
715#if (CFG_PCMCIA_POR0 != 0)
716 | timings
717#endif
718 ;
719 PRINTF ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
720
721 pcmp->pcmc_pbr1 = CFG_PCMCIA_PBR1;
722 pcmp->pcmc_por1 = CFG_PCMCIA_POR1
723#if (CFG_PCMCIA_POR1 != 0)
724 | timings
725#endif
726 ;
727 PRINTF ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
728
729 pcmp->pcmc_pbr2 = CFG_PCMCIA_PBR2;
730 pcmp->pcmc_por2 = CFG_PCMCIA_POR2
731#if (CFG_PCMCIA_POR2 != 0)
732 | timings
733#endif
734 ;
735 PRINTF ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
736
737 pcmp->pcmc_pbr3 = CFG_PCMCIA_PBR3;
738 pcmp->pcmc_por3 = CFG_PCMCIA_POR3
739#if (CFG_PCMCIA_POR3 != 0)
740 | timings
741#endif
742 ;
743 PRINTF ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
744
745 /* IDE 1
746 */
747 pcmp->pcmc_pbr4 = CFG_PCMCIA_PBR4;
748 pcmp->pcmc_por4 = CFG_PCMCIA_POR4
749#if (CFG_PCMCIA_POR4 != 0)
750 | timings
751#endif
752 ;
753 PRINTF ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
754
755 pcmp->pcmc_pbr5 = CFG_PCMCIA_PBR5;
756 pcmp->pcmc_por5 = CFG_PCMCIA_POR5
757#if (CFG_PCMCIA_POR5 != 0)
758 | timings
759#endif
760 ;
761 PRINTF ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
762
763 pcmp->pcmc_pbr6 = CFG_PCMCIA_PBR6;
764 pcmp->pcmc_por6 = CFG_PCMCIA_POR6
765#if (CFG_PCMCIA_POR6 != 0)
766 | timings
767#endif
768 ;
769 PRINTF ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
770
771 pcmp->pcmc_pbr7 = CFG_PCMCIA_PBR7;
772 pcmp->pcmc_por7 = CFG_PCMCIA_POR7
773#if (CFG_PCMCIA_POR7 != 0)
774 | timings
775#endif
776 ;
777 PRINTF ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
778
779}
780
781#endif /* CONFIG_IDE_8xx_DIRECT */
782
783/* ------------------------------------------------------------------------- */
784
wdenk2262cfe2002-11-18 00:14:45 +0000785#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000786static void __inline__
wdenk2262cfe2002-11-18 00:14:45 +0000787ide_outb(int dev, int port, unsigned char val)
wdenkc6097192002-11-03 00:24:07 +0000788{
wdenk9fd5e312003-12-07 23:55:12 +0000789 PRINTF ("ide_outb (dev= %d, port= %d, val= 0x%02x) : @ 0x%08lx\n",
790 dev, port, val, (ATA_CURR_BASE(dev)+port));
wdenkd4ca31c2004-01-02 14:00:00 +0000791
wdenkc6097192002-11-03 00:24:07 +0000792 /* Ensure I/O operations complete */
793 __asm__ volatile("eieio");
794 *((uchar *)(ATA_CURR_BASE(dev)+port)) = val;
wdenkc6097192002-11-03 00:24:07 +0000795}
wdenk2262cfe2002-11-18 00:14:45 +0000796#else /* ! __PPC__ */
797static void __inline__
798ide_outb(int dev, int port, unsigned char val)
799{
wdenk15647dc2003-10-09 19:00:25 +0000800 outb(val, ATA_CURR_BASE(dev)+port);
wdenk2262cfe2002-11-18 00:14:45 +0000801}
802#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000803
wdenk2262cfe2002-11-18 00:14:45 +0000804
805#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000806static unsigned char __inline__
wdenk2262cfe2002-11-18 00:14:45 +0000807ide_inb(int dev, int port)
wdenkc6097192002-11-03 00:24:07 +0000808{
809 uchar val;
810 /* Ensure I/O operations complete */
811 __asm__ volatile("eieio");
812 val = *((uchar *)(ATA_CURR_BASE(dev)+port));
wdenk9fd5e312003-12-07 23:55:12 +0000813 PRINTF ("ide_inb (dev= %d, port= %d) : @ 0x%08lx -> 0x%02x\n",
814 dev, port, (ATA_CURR_BASE(dev)+port), val);
wdenkc6097192002-11-03 00:24:07 +0000815 return (val);
816}
wdenk2262cfe2002-11-18 00:14:45 +0000817#else /* ! __PPC__ */
818static unsigned char __inline__
819ide_inb(int dev, int port)
820{
wdenk15647dc2003-10-09 19:00:25 +0000821 return inb(ATA_CURR_BASE(dev)+port);
wdenk2262cfe2002-11-18 00:14:45 +0000822}
823#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000824
wdenk2262cfe2002-11-18 00:14:45 +0000825#ifdef __PPC__
wdenkcceb8712003-06-23 18:12:28 +0000826# ifdef CONFIG_AMIGAONEG3SE
wdenkc7de8292002-11-19 11:04:11 +0000827static void
828output_data_short(int dev, ulong *sect_buf, int words)
829{
830 ushort *dbuf;
831 volatile ushort *pbuf;
wdenk8bde7f72003-06-27 21:31:46 +0000832
wdenkc7de8292002-11-19 11:04:11 +0000833 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
834 dbuf = (ushort *)sect_buf;
835 while (words--) {
836 __asm__ volatile ("eieio");
837 *pbuf = *dbuf++;
838 __asm__ volatile ("eieio");
839 }
840
841 if (words&1)
842 *pbuf = 0;
843}
wdenkcceb8712003-06-23 18:12:28 +0000844# endif /* CONFIG_AMIGAONEG3SE */
wdenk5da627a2003-10-09 20:09:04 +0000845#endif /* __PPC_ */
wdenkc7de8292002-11-19 11:04:11 +0000846
wdenk5da627a2003-10-09 20:09:04 +0000847/* We only need to swap data if we are running on a big endian cpu. */
848/* But Au1x00 cpu:s already swaps data in big endian mode! */
849#if defined(__LITTLE_ENDIAN) || defined(CONFIG_AU1X00)
850#define input_swap_data(x,y,z) input_data(x,y,z)
851#else
wdenkc6097192002-11-03 00:24:07 +0000852static void
853input_swap_data(int dev, ulong *sect_buf, int words)
854{
wdenkc40b2952004-03-13 23:29:43 +0000855#ifndef CONFIG_HMI10
wdenkc6097192002-11-03 00:24:07 +0000856 volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
857 ushort *dbuf = (ushort *)sect_buf;
858
859 while (words--) {
860 *dbuf++ = ld_le16(pbuf);
861 *dbuf++ = ld_le16(pbuf);
862 }
wdenkc40b2952004-03-13 23:29:43 +0000863#else /* CONFIG_HMI10 */
wdenka522fa02004-01-04 22:51:12 +0000864 uchar i;
865 volatile uchar *pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
866 volatile uchar *pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
867 ushort *dbuf = (ushort *)sect_buf;
868
869 while (words--) {
870 for (i=0; i<2; i++) {
871 *(((uchar *)(dbuf)) + 1) = *pbuf_even;
872 *(uchar *)dbuf = *pbuf_odd;
873 dbuf+=1;
874 }
875 }
wdenkc40b2952004-03-13 23:29:43 +0000876#endif /* CONFIG_HMI10 */
wdenkc6097192002-11-03 00:24:07 +0000877}
wdenk5da627a2003-10-09 20:09:04 +0000878#endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
wdenkc6097192002-11-03 00:24:07 +0000879
wdenk2262cfe2002-11-18 00:14:45 +0000880
wdenk2262cfe2002-11-18 00:14:45 +0000881#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000882static void
883output_data(int dev, ulong *sect_buf, int words)
884{
wdenkc40b2952004-03-13 23:29:43 +0000885#ifndef CONFIG_HMI10
wdenkc6097192002-11-03 00:24:07 +0000886 ushort *dbuf;
887 volatile ushort *pbuf;
888
889 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
890 dbuf = (ushort *)sect_buf;
891 while (words--) {
892 __asm__ volatile ("eieio");
893 *pbuf = *dbuf++;
894 __asm__ volatile ("eieio");
895 *pbuf = *dbuf++;
896 }
wdenkc40b2952004-03-13 23:29:43 +0000897#else /* CONFIG_HMI10 */
wdenka522fa02004-01-04 22:51:12 +0000898 uchar *dbuf;
899 volatile uchar *pbuf_even;
900 volatile uchar *pbuf_odd;
901
902 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
903 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
904 dbuf = (uchar *)sect_buf;
905 while (words--) {
906 __asm__ volatile ("eieio");
907 *pbuf_even = *dbuf++;
908 __asm__ volatile ("eieio");
909 *pbuf_odd = *dbuf++;
910 __asm__ volatile ("eieio");
911 *pbuf_even = *dbuf++;
912 __asm__ volatile ("eieio");
913 *pbuf_odd = *dbuf++;
914 }
wdenkc40b2952004-03-13 23:29:43 +0000915#endif /* CONFIG_HMI10 */
wdenkc6097192002-11-03 00:24:07 +0000916}
wdenk2262cfe2002-11-18 00:14:45 +0000917#else /* ! __PPC__ */
918static void
919output_data(int dev, ulong *sect_buf, int words)
920{
wdenk15647dc2003-10-09 19:00:25 +0000921 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1);
wdenk2262cfe2002-11-18 00:14:45 +0000922}
923#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000924
wdenk2262cfe2002-11-18 00:14:45 +0000925#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +0000926static void
927input_data(int dev, ulong *sect_buf, int words)
928{
wdenkc40b2952004-03-13 23:29:43 +0000929#ifndef CONFIG_HMI10
wdenkc6097192002-11-03 00:24:07 +0000930 ushort *dbuf;
931 volatile ushort *pbuf;
932
933 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
934 dbuf = (ushort *)sect_buf;
935 while (words--) {
936 __asm__ volatile ("eieio");
937 *dbuf++ = *pbuf;
938 __asm__ volatile ("eieio");
939 *dbuf++ = *pbuf;
940 }
wdenkc40b2952004-03-13 23:29:43 +0000941#else /* CONFIG_HMI10 */
wdenka522fa02004-01-04 22:51:12 +0000942 uchar *dbuf;
943 volatile uchar *pbuf_even;
944 volatile uchar *pbuf_odd;
945
946 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
947 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
948 dbuf = (uchar *)sect_buf;
949 while (words--) {
950 __asm__ volatile ("eieio");
951 *dbuf++ = *pbuf_even;
952 __asm__ volatile ("eieio");
953 *dbuf++ = *pbuf_odd;
954 __asm__ volatile ("eieio");
955 *dbuf++ = *pbuf_even;
956 __asm__ volatile ("eieio");
957 *dbuf++ = *pbuf_odd;
958 }
wdenkc40b2952004-03-13 23:29:43 +0000959#endif /* CONFIG_HMI10 */
wdenkc6097192002-11-03 00:24:07 +0000960}
wdenk2262cfe2002-11-18 00:14:45 +0000961#else /* ! __PPC__ */
962static void
963input_data(int dev, ulong *sect_buf, int words)
964{
wdenk15647dc2003-10-09 19:00:25 +0000965 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1);
wdenk2262cfe2002-11-18 00:14:45 +0000966}
967
968#endif /* __PPC__ */
wdenkc6097192002-11-03 00:24:07 +0000969
wdenkc7de8292002-11-19 11:04:11 +0000970#ifdef CONFIG_AMIGAONEG3SE
971static void
972input_data_short(int dev, ulong *sect_buf, int words)
973{
974 ushort *dbuf;
975 volatile ushort *pbuf;
976
977 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
978 dbuf = (ushort *)sect_buf;
979 while (words--) {
980 __asm__ volatile ("eieio");
981 *dbuf++ = *pbuf;
982 __asm__ volatile ("eieio");
983 }
984
wdenkc40b2952004-03-13 23:29:43 +0000985 if (words&1) {
wdenkc7de8292002-11-19 11:04:11 +0000986 ushort dummy;
987 dummy = *pbuf;
988 }
989}
990#endif
991
wdenkc6097192002-11-03 00:24:07 +0000992/* -------------------------------------------------------------------------
993 */
994static void ide_ident (block_dev_desc_t *dev_desc)
995{
996 ulong iobuf[ATA_SECTORWORDS];
997 unsigned char c;
998 hd_driveid_t *iop = (hd_driveid_t *)iobuf;
999
wdenkc7de8292002-11-19 11:04:11 +00001000#ifdef CONFIG_AMIGAONEG3SE
1001 int max_bus_scan;
1002 int retries = 0;
1003 char *s;
1004 int do_retry = 0;
1005#endif
1006
wdenkc6097192002-11-03 00:24:07 +00001007#if 0
1008 int mode, cycle_time;
1009#endif
1010 int device;
1011 device=dev_desc->dev;
1012 printf (" Device %d: ", device);
1013
wdenkc7de8292002-11-19 11:04:11 +00001014#ifdef CONFIG_AMIGAONEG3SE
1015 s = getenv("ide_maxbus");
1016 if (s) {
1017 max_bus_scan = simple_strtol(s, NULL, 10);
1018 } else {
1019 max_bus_scan = CFG_IDE_MAXBUS;
1020 }
1021 if (device >= max_bus_scan*2) {
1022 dev_desc->type=DEV_TYPE_UNKNOWN;
1023 return;
1024 }
1025#endif
1026
wdenkc6097192002-11-03 00:24:07 +00001027 ide_led (DEVICE_LED(device), 1); /* LED on */
1028 /* Select device
1029 */
wdenk2262cfe2002-11-18 00:14:45 +00001030 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001031 dev_desc->if_type=IF_TYPE_IDE;
1032#ifdef CONFIG_ATAPI
wdenkc7de8292002-11-19 11:04:11 +00001033
1034#ifdef CONFIG_AMIGAONEG3SE
1035 do_retry = 0;
1036 retries = 0;
1037
1038 /* Warning: This will be tricky to read */
wdenkc40b2952004-03-13 23:29:43 +00001039 while (retries <= 1) {
wdenkc7de8292002-11-19 11:04:11 +00001040#endif /* CONFIG_AMIGAONEG3SE */
1041
wdenkc6097192002-11-03 00:24:07 +00001042 /* check signature */
wdenk2262cfe2002-11-18 00:14:45 +00001043 if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
1044 (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
1045 (ide_inb(device,ATA_CYL_LOW) == 0x14) &&
1046 (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
wdenkc6097192002-11-03 00:24:07 +00001047 /* ATAPI Signature found */
1048 dev_desc->if_type=IF_TYPE_ATAPI;
1049 /* Start Ident Command
1050 */
wdenk2262cfe2002-11-18 00:14:45 +00001051 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +00001052 /*
1053 * Wait for completion - ATAPI devices need more time
1054 * to become ready
1055 */
1056 c = ide_wait (device, ATAPI_TIME_OUT);
wdenkc40b2952004-03-13 23:29:43 +00001057 } else
wdenkc6097192002-11-03 00:24:07 +00001058#endif
1059 {
1060 /* Start Ident Command
1061 */
wdenk2262cfe2002-11-18 00:14:45 +00001062 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
wdenkc6097192002-11-03 00:24:07 +00001063
1064 /* Wait for completion
1065 */
1066 c = ide_wait (device, IDE_TIME_OUT);
1067 }
1068 ide_led (DEVICE_LED(device), 0); /* LED off */
1069
1070 if (((c & ATA_STAT_DRQ) == 0) ||
1071 ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
wdenkc7de8292002-11-19 11:04:11 +00001072#ifdef CONFIG_AMIGAONEG3SE
1073 if (retries == 0) {
1074 do_retry = 1;
1075 } else {
wdenkc7de8292002-11-19 11:04:11 +00001076 return;
1077 }
1078#else
wdenkc6097192002-11-03 00:24:07 +00001079 return;
wdenkc7de8292002-11-19 11:04:11 +00001080#endif /* CONFIG_AMIGAONEG3SE */
wdenkc6097192002-11-03 00:24:07 +00001081 }
1082
wdenkc7de8292002-11-19 11:04:11 +00001083#ifdef CONFIG_AMIGAONEG3SE
1084 s = getenv("ide_doreset");
1085 if (s && strcmp(s, "on") == 0 && 1 == do_retry) {
1086 /* Need to soft reset the device in case it's an ATAPI... */
1087 PRINTF("Retrying...\n");
1088 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1089 udelay(100000);
1090 ide_outb (device, ATA_COMMAND, 0x08);
1091 udelay (100000); /* 100 ms */
1092 retries++;
1093 } else {
1094 retries = 100;
1095 }
1096 } /* see above - ugly to read */
1097#endif /* CONFIG_AMIGAONEG3SE */
1098
wdenkc6097192002-11-03 00:24:07 +00001099 input_swap_data (device, iobuf, ATA_SECTORWORDS);
1100
1101 ident_cpy (dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1102 ident_cpy (dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1103 ident_cpy (dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
wdenkc3f9d492004-03-14 00:59:59 +00001104#ifdef __LITTLE_ENDIAN
1105 /*
1106 * firmware revision and model number have Big Endian Byte
1107 * order in Word. Convert both to little endian.
1108 *
1109 * See CF+ and CompactFlash Specification Revision 2.0:
1110 * 6.2.1.6: Identfy Drive, Table 39 for more details
1111 */
1112
1113 strswab (dev_desc->revision);
1114 strswab (dev_desc->vendor);
1115#endif /* __LITTLE_ENDIAN */
wdenkc6097192002-11-03 00:24:07 +00001116
1117 if ((iop->config & 0x0080)==0x0080)
1118 dev_desc->removable = 1;
1119 else
1120 dev_desc->removable = 0;
1121
1122#if 0
1123 /*
1124 * Drive PIO mode autoselection
1125 */
1126 mode = iop->tPIO;
1127
1128 printf ("tPIO = 0x%02x = %d\n",mode, mode);
1129 if (mode > 2) { /* 2 is maximum allowed tPIO value */
1130 mode = 2;
1131 PRINTF ("Override tPIO -> 2\n");
1132 }
1133 if (iop->field_valid & 2) { /* drive implements ATA2? */
1134 PRINTF ("Drive implements ATA2\n");
1135 if (iop->capability & 8) { /* drive supports use_iordy? */
1136 cycle_time = iop->eide_pio_iordy;
1137 } else {
1138 cycle_time = iop->eide_pio;
1139 }
1140 PRINTF ("cycle time = %d\n", cycle_time);
1141 mode = 4;
1142 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1143 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1144 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1145 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1146 }
1147 printf ("PIO mode to use: PIO %d\n", mode);
1148#endif /* 0 */
1149
1150#ifdef CONFIG_ATAPI
1151 if (dev_desc->if_type==IF_TYPE_ATAPI) {
1152 atapi_inquiry(dev_desc);
1153 return;
1154 }
1155#endif /* CONFIG_ATAPI */
1156
wdenkc3f9d492004-03-14 00:59:59 +00001157#ifdef __BIG_ENDIAN
wdenkc6097192002-11-03 00:24:07 +00001158 /* swap shorts */
1159 dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
wdenkc3f9d492004-03-14 00:59:59 +00001160#else /* ! __BIG_ENDIAN */
1161 /*
1162 * do not swap shorts on little endian
1163 *
1164 * See CF+ and CompactFlash Specification Revision 2.0:
1165 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
1166 */
1167 dev_desc->lba = iop->lba_capacity;
1168#endif /* __BIG_ENDIAN */
wdenkc40b2952004-03-13 23:29:43 +00001169
wdenk42dfe7a2004-03-14 22:25:36 +00001170#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001171 if (iop->command_set_2 & 0x0400) { /* LBA 48 support */
1172 dev_desc->lba48support = 1;
1173 dev_desc->lba48 = (unsigned long long)iop->lba48_capacity[0] |
1174 ((unsigned long long)iop->lba48_capacity[1] << 16) |
1175 ((unsigned long long)iop->lba48_capacity[2] << 32) |
1176 ((unsigned long long)iop->lba48_capacity[3] << 48);
1177 } else {
1178 dev_desc->lba48support = 0;
1179 dev_desc->lba48 = 0;
1180 }
1181#endif /* CONFIG_LBA48 */
wdenkc6097192002-11-03 00:24:07 +00001182 /* assuming HD */
1183 dev_desc->type=DEV_TYPE_HARDDISK;
1184 dev_desc->blksz=ATA_BLOCKSIZE;
1185 dev_desc->lun=0; /* just to fill something in... */
1186
1187#if 0 /* only used to test the powersaving mode,
1188 * if enabled, the drive goes after 5 sec
1189 * in standby mode */
wdenk2262cfe2002-11-18 00:14:45 +00001190 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001191 c = ide_wait (device, IDE_TIME_OUT);
wdenk2262cfe2002-11-18 00:14:45 +00001192 ide_outb (device, ATA_SECT_CNT, 1);
1193 ide_outb (device, ATA_LBA_LOW, 0);
1194 ide_outb (device, ATA_LBA_MID, 0);
1195 ide_outb (device, ATA_LBA_HIGH, 0);
1196 ide_outb (device, ATA_DEV_HD, ATA_LBA |
wdenkc6097192002-11-03 00:24:07 +00001197 ATA_DEVICE(device));
wdenk2262cfe2002-11-18 00:14:45 +00001198 ide_outb (device, ATA_COMMAND, 0xe3);
wdenkc6097192002-11-03 00:24:07 +00001199 udelay (50);
1200 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1201#endif
1202}
1203
1204
1205/* ------------------------------------------------------------------------- */
1206
wdenkc40b2952004-03-13 23:29:43 +00001207ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
wdenkc6097192002-11-03 00:24:07 +00001208{
1209 ulong n = 0;
1210 unsigned char c;
1211 unsigned char pwrsave=0; /* power save */
wdenk42dfe7a2004-03-14 22:25:36 +00001212#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001213 unsigned char lba48 = 0;
wdenkc6097192002-11-03 00:24:07 +00001214
wdenkc40b2952004-03-13 23:29:43 +00001215 if (blknr & 0x0000fffff0000000) {
1216 /* more than 28 bits used, use 48bit mode */
1217 lba48 = 1;
1218 }
1219#endif
1220 PRINTF ("ide_read dev %d start %qX, blocks %lX buffer at %lX\n",
wdenkc6097192002-11-03 00:24:07 +00001221 device, blknr, blkcnt, (ulong)buffer);
1222
1223 ide_led (DEVICE_LED(device), 1); /* LED on */
1224
1225 /* Select device
1226 */
wdenk2262cfe2002-11-18 00:14:45 +00001227 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001228 c = ide_wait (device, IDE_TIME_OUT);
1229
1230 if (c & ATA_STAT_BUSY) {
1231 printf ("IDE read: device %d not ready\n", device);
1232 goto IDE_READ_E;
1233 }
1234
1235 /* first check if the drive is in Powersaving mode, if yes,
1236 * increase the timeout value */
wdenk2262cfe2002-11-18 00:14:45 +00001237 ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR);
wdenkc6097192002-11-03 00:24:07 +00001238 udelay (50);
1239
1240 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1241
1242 if (c & ATA_STAT_BUSY) {
1243 printf ("IDE read: device %d not ready\n", device);
1244 goto IDE_READ_E;
1245 }
1246 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1247 printf ("No Powersaving mode %X\n", c);
1248 } else {
wdenk2262cfe2002-11-18 00:14:45 +00001249 c = ide_inb(device,ATA_SECT_CNT);
wdenkc6097192002-11-03 00:24:07 +00001250 PRINTF("Powersaving %02X\n",c);
1251 if(c==0)
1252 pwrsave=1;
1253 }
1254
1255
1256 while (blkcnt-- > 0) {
1257
1258 c = ide_wait (device, IDE_TIME_OUT);
1259
1260 if (c & ATA_STAT_BUSY) {
1261 printf ("IDE read: device %d not ready\n", device);
1262 break;
1263 }
wdenk42dfe7a2004-03-14 22:25:36 +00001264#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001265 if (lba48) {
1266 /* write high bits */
1267 ide_outb (device, ATA_SECT_CNT, 0);
1268 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1269 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1270 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1271 }
1272#endif
wdenk2262cfe2002-11-18 00:14:45 +00001273 ide_outb (device, ATA_SECT_CNT, 1);
1274 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1275 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1276 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +00001277
wdenk42dfe7a2004-03-14 22:25:36 +00001278#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001279 if (lba48) {
1280 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1281 ide_outb (device, ATA_COMMAND, ATA_CMD_READ_EXT);
1282
1283 } else
1284#endif
1285 {
1286 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1287 ATA_DEVICE(device) |
1288 ((blknr >> 24) & 0xF) );
1289 ide_outb (device, ATA_COMMAND, ATA_CMD_READ);
1290 }
wdenkc6097192002-11-03 00:24:07 +00001291
1292 udelay (50);
1293
1294 if(pwrsave) {
1295 c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */
1296 pwrsave=0;
1297 } else {
1298 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1299 }
1300
1301 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
wdenk42dfe7a2004-03-14 22:25:36 +00001302#if defined(CFG_64BIT_LBA) && defined(CFG_64BIT_VSPRINTF)
wdenkc40b2952004-03-13 23:29:43 +00001303 printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001304 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001305#else
1306 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1307 device, (ulong)blknr, c);
1308#endif
wdenkc6097192002-11-03 00:24:07 +00001309 break;
1310 }
1311
1312 input_data (device, buffer, ATA_SECTORWORDS);
wdenk2262cfe2002-11-18 00:14:45 +00001313 (void) ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001314
1315 ++n;
1316 ++blknr;
1317 buffer += ATA_SECTORWORDS;
1318 }
1319IDE_READ_E:
1320 ide_led (DEVICE_LED(device), 0); /* LED off */
1321 return (n);
1322}
1323
1324/* ------------------------------------------------------------------------- */
1325
1326
wdenkc40b2952004-03-13 23:29:43 +00001327ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
wdenkc6097192002-11-03 00:24:07 +00001328{
1329 ulong n = 0;
1330 unsigned char c;
wdenk42dfe7a2004-03-14 22:25:36 +00001331#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001332 unsigned char lba48 = 0;
1333
1334 if (blknr & 0x0000fffff0000000) {
1335 /* more than 28 bits used, use 48bit mode */
1336 lba48 = 1;
1337 }
1338#endif
wdenkc6097192002-11-03 00:24:07 +00001339
1340 ide_led (DEVICE_LED(device), 1); /* LED on */
1341
1342 /* Select device
1343 */
wdenk2262cfe2002-11-18 00:14:45 +00001344 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001345
1346 while (blkcnt-- > 0) {
1347
1348 c = ide_wait (device, IDE_TIME_OUT);
1349
1350 if (c & ATA_STAT_BUSY) {
1351 printf ("IDE read: device %d not ready\n", device);
1352 goto WR_OUT;
1353 }
wdenk42dfe7a2004-03-14 22:25:36 +00001354#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001355 if (lba48) {
1356 /* write high bits */
1357 ide_outb (device, ATA_SECT_CNT, 0);
1358 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1359 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1360 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1361 }
1362#endif
wdenk2262cfe2002-11-18 00:14:45 +00001363 ide_outb (device, ATA_SECT_CNT, 1);
1364 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1365 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1366 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
wdenkc40b2952004-03-13 23:29:43 +00001367
wdenk42dfe7a2004-03-14 22:25:36 +00001368#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001369 if (lba48) {
1370 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1371 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
1372
1373 } else
1374#endif
1375 {
1376 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1377 ATA_DEVICE(device) |
1378 ((blknr >> 24) & 0xF) );
1379 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE);
1380 }
wdenkc6097192002-11-03 00:24:07 +00001381
1382 udelay (50);
1383
1384 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1385
1386 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
wdenk42dfe7a2004-03-14 22:25:36 +00001387#if defined(CFG_64BIT_LBA) && defined(CFG_64BIT_VSPRINTF)
wdenkc40b2952004-03-13 23:29:43 +00001388 printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n",
wdenkc6097192002-11-03 00:24:07 +00001389 device, blknr, c);
wdenkc40b2952004-03-13 23:29:43 +00001390#else
1391 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1392 device, (ulong)blknr, c);
1393#endif
wdenkc6097192002-11-03 00:24:07 +00001394 goto WR_OUT;
1395 }
1396
1397 output_data (device, buffer, ATA_SECTORWORDS);
wdenk2262cfe2002-11-18 00:14:45 +00001398 c = ide_inb (device, ATA_STATUS); /* clear IRQ */
wdenkc6097192002-11-03 00:24:07 +00001399 ++n;
1400 ++blknr;
1401 buffer += ATA_SECTORWORDS;
1402 }
1403WR_OUT:
1404 ide_led (DEVICE_LED(device), 0); /* LED off */
1405 return (n);
1406}
1407
1408/* ------------------------------------------------------------------------- */
1409
1410/*
1411 * copy src to dest, skipping leading and trailing blanks and null
1412 * terminate the string
wdenk7d7ce412004-03-17 01:13:07 +00001413 * "len" is the size of available memory including the terminating '\0'
wdenkc6097192002-11-03 00:24:07 +00001414 */
wdenk7d7ce412004-03-17 01:13:07 +00001415static void ident_cpy (unsigned char *dst, unsigned char *src, unsigned int len)
wdenkc6097192002-11-03 00:24:07 +00001416{
wdenk7d7ce412004-03-17 01:13:07 +00001417 unsigned char *end, *last;
wdenkc6097192002-11-03 00:24:07 +00001418
wdenk7d7ce412004-03-17 01:13:07 +00001419 last = dst;
wdenk6fb6af62004-03-23 23:20:24 +00001420 end = src + len - 1;
wdenk7d7ce412004-03-17 01:13:07 +00001421
1422 /* reserve space for '\0' */
1423 if (len < 2)
1424 goto OUT;
wdenkefa329c2004-03-23 20:18:25 +00001425
wdenk7d7ce412004-03-17 01:13:07 +00001426 /* skip leading white space */
1427 while ((*src) && (src<end) && (*src==' '))
1428 ++src;
1429
1430 /* copy string, omitting trailing white space */
1431 while ((*src) && (src<end)) {
1432 *dst++ = *src;
1433 if (*src++ != ' ')
1434 last = dst;
wdenkc6097192002-11-03 00:24:07 +00001435 }
wdenk7d7ce412004-03-17 01:13:07 +00001436OUT:
1437 *last = '\0';
wdenkc6097192002-11-03 00:24:07 +00001438}
1439
1440/* ------------------------------------------------------------------------- */
1441
1442/*
1443 * Wait until Busy bit is off, or timeout (in ms)
1444 * Return last status
1445 */
1446static uchar ide_wait (int dev, ulong t)
1447{
1448 ulong delay = 10 * t; /* poll every 100 us */
1449 uchar c;
1450
wdenk2262cfe2002-11-18 00:14:45 +00001451 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
wdenkc6097192002-11-03 00:24:07 +00001452 udelay (100);
1453 if (delay-- == 0) {
1454 break;
1455 }
1456 }
1457 return (c);
1458}
1459
1460/* ------------------------------------------------------------------------- */
1461
1462#ifdef CONFIG_IDE_RESET
1463extern void ide_set_reset(int idereset);
1464
1465static void ide_reset (void)
1466{
1467#if defined(CFG_PB_12V_ENABLE) || defined(CFG_PB_IDE_MOTOR)
1468 volatile immap_t *immr = (immap_t *)CFG_IMMR;
1469#endif
1470 int i;
1471
1472 curr_device = -1;
1473 for (i=0; i<CFG_IDE_MAXBUS; ++i)
1474 ide_bus_ok[i] = 0;
1475 for (i=0; i<CFG_IDE_MAXDEVICE; ++i)
1476 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1477
1478 ide_set_reset (1); /* assert reset */
1479
1480 WATCHDOG_RESET();
1481
1482#ifdef CFG_PB_12V_ENABLE
1483 immr->im_cpm.cp_pbdat &= ~(CFG_PB_12V_ENABLE); /* 12V Enable output OFF */
1484 immr->im_cpm.cp_pbpar &= ~(CFG_PB_12V_ENABLE);
1485 immr->im_cpm.cp_pbodr &= ~(CFG_PB_12V_ENABLE);
1486 immr->im_cpm.cp_pbdir |= CFG_PB_12V_ENABLE;
1487
1488 /* wait 500 ms for the voltage to stabilize
1489 */
1490 for (i=0; i<500; ++i) {
1491 udelay (1000);
1492 }
1493
1494 immr->im_cpm.cp_pbdat |= CFG_PB_12V_ENABLE; /* 12V Enable output ON */
1495#endif /* CFG_PB_12V_ENABLE */
1496
1497#ifdef CFG_PB_IDE_MOTOR
1498 /* configure IDE Motor voltage monitor pin as input */
1499 immr->im_cpm.cp_pbpar &= ~(CFG_PB_IDE_MOTOR);
1500 immr->im_cpm.cp_pbodr &= ~(CFG_PB_IDE_MOTOR);
1501 immr->im_cpm.cp_pbdir &= ~(CFG_PB_IDE_MOTOR);
1502
1503 /* wait up to 1 s for the motor voltage to stabilize
1504 */
1505 for (i=0; i<1000; ++i) {
1506 if ((immr->im_cpm.cp_pbdat & CFG_PB_IDE_MOTOR) != 0) {
1507 break;
1508 }
1509 udelay (1000);
1510 }
1511
1512 if (i == 1000) { /* Timeout */
1513 printf ("\nWarning: 5V for IDE Motor missing\n");
1514# ifdef CONFIG_STATUS_LED
1515# ifdef STATUS_LED_YELLOW
1516 status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON );
1517# endif
1518# ifdef STATUS_LED_GREEN
1519 status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF);
1520# endif
1521# endif /* CONFIG_STATUS_LED */
1522 }
1523#endif /* CFG_PB_IDE_MOTOR */
1524
1525 WATCHDOG_RESET();
1526
1527 /* de-assert RESET signal */
1528 ide_set_reset(0);
1529
1530 /* wait 250 ms */
1531 for (i=0; i<250; ++i) {
1532 udelay (1000);
1533 }
1534}
1535
1536#endif /* CONFIG_IDE_RESET */
1537
1538/* ------------------------------------------------------------------------- */
1539
wdenkc40b2952004-03-13 23:29:43 +00001540#if defined(CONFIG_IDE_LED) && !defined(CONFIG_AMIGAONEG3SE) && !defined(CONFIG_KUP4K) && !defined(CONFIG_HMI10)
wdenkc6097192002-11-03 00:24:07 +00001541
1542static uchar led_buffer = 0; /* Buffer for current LED status */
1543
1544static void ide_led (uchar led, uchar status)
1545{
1546 uchar *led_port = LED_PORT;
1547
1548 if (status) { /* switch LED on */
1549 led_buffer |= led;
1550 } else { /* switch LED off */
1551 led_buffer &= ~led;
1552 }
1553
1554 *led_port = led_buffer;
1555}
1556
1557#endif /* CONFIG_IDE_LED */
1558
1559/* ------------------------------------------------------------------------- */
1560
1561#ifdef CONFIG_ATAPI
1562/****************************************************************************
1563 * ATAPI Support
1564 */
1565
1566
wdenkc6097192002-11-03 00:24:07 +00001567#undef ATAPI_DEBUG
1568
1569#ifdef ATAPI_DEBUG
1570#define AT_PRINTF(fmt,args...) printf (fmt ,##args)
1571#else
1572#define AT_PRINTF(fmt,args...)
1573#endif
1574
wdenk2262cfe2002-11-18 00:14:45 +00001575#ifdef __PPC__
wdenkc6097192002-11-03 00:24:07 +00001576/* since ATAPI may use commands with not 4 bytes alligned length
1577 * we have our own transfer functions, 2 bytes alligned */
1578static void
1579output_data_shorts(int dev, ushort *sect_buf, int shorts)
1580{
wdenkc40b2952004-03-13 23:29:43 +00001581#ifndef CONFIG_HMI10
wdenkc6097192002-11-03 00:24:07 +00001582 ushort *dbuf;
1583 volatile ushort *pbuf;
1584
1585 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1586 dbuf = (ushort *)sect_buf;
1587 while (shorts--) {
1588 __asm__ volatile ("eieio");
1589 *pbuf = *dbuf++;
1590 }
wdenkc40b2952004-03-13 23:29:43 +00001591#else /* CONFIG_HMI10 */
wdenka522fa02004-01-04 22:51:12 +00001592 uchar *dbuf;
1593 volatile uchar *pbuf_even;
1594 volatile uchar *pbuf_odd;
1595
1596 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1597 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1598 while (shorts--) {
1599 __asm__ volatile ("eieio");
1600 *pbuf_even = *dbuf++;
1601 __asm__ volatile ("eieio");
1602 *pbuf_odd = *dbuf++;
1603 }
wdenkc40b2952004-03-13 23:29:43 +00001604#endif /* CONFIG_HMI10 */
wdenkc6097192002-11-03 00:24:07 +00001605}
1606
1607static void
1608input_data_shorts(int dev, ushort *sect_buf, int shorts)
1609{
wdenkc40b2952004-03-13 23:29:43 +00001610#ifndef CONFIG_HMI10
wdenkc6097192002-11-03 00:24:07 +00001611 ushort *dbuf;
1612 volatile ushort *pbuf;
1613
1614 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1615 dbuf = (ushort *)sect_buf;
1616 while (shorts--) {
1617 __asm__ volatile ("eieio");
1618 *dbuf++ = *pbuf;
1619 }
wdenkc40b2952004-03-13 23:29:43 +00001620#else /* CONFIG_HMI10 */
wdenka522fa02004-01-04 22:51:12 +00001621 uchar *dbuf;
1622 volatile uchar *pbuf_even;
1623 volatile uchar *pbuf_odd;
1624
1625 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1626 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1627 while (shorts--) {
1628 __asm__ volatile ("eieio");
1629 *dbuf++ = *pbuf_even;
1630 __asm__ volatile ("eieio");
1631 *dbuf++ = *pbuf_odd;
1632 }
wdenkc40b2952004-03-13 23:29:43 +00001633#endif /* CONFIG_HMI10 */
wdenkc6097192002-11-03 00:24:07 +00001634}
1635
wdenk2262cfe2002-11-18 00:14:45 +00001636#else /* ! __PPC__ */
1637static void
1638output_data_shorts(int dev, ushort *sect_buf, int shorts)
1639{
wdenk15647dc2003-10-09 19:00:25 +00001640 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001641}
1642
1643
1644static void
1645input_data_shorts(int dev, ushort *sect_buf, int shorts)
1646{
wdenk15647dc2003-10-09 19:00:25 +00001647 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
wdenk2262cfe2002-11-18 00:14:45 +00001648}
1649
1650#endif /* __PPC__ */
1651
wdenkc6097192002-11-03 00:24:07 +00001652/*
1653 * Wait until (Status & mask) == res, or timeout (in ms)
1654 * Return last status
1655 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1656 * and then they set their DRQ Bit
1657 */
1658static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1659{
1660 ulong delay = 10 * t; /* poll every 100 us */
1661 uchar c;
1662
wdenk2262cfe2002-11-18 00:14:45 +00001663 c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1664 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
wdenkc6097192002-11-03 00:24:07 +00001665 /* break if error occurs (doesn't make sense to wait more) */
1666 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1667 break;
1668 udelay (100);
1669 if (delay-- == 0) {
1670 break;
1671 }
1672 }
1673 return (c);
1674}
1675
1676/*
1677 * issue an atapi command
1678 */
1679unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1680{
1681 unsigned char c,err,mask,res;
1682 int n;
1683 ide_led (DEVICE_LED(device), 1); /* LED on */
1684
1685 /* Select device
1686 */
1687 mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1688 res = 0;
wdenkc7de8292002-11-19 11:04:11 +00001689#ifdef CONFIG_AMIGAONEG3SE
1690# warning THF: Removed LBA mode ???
1691#endif
wdenk2262cfe2002-11-18 00:14:45 +00001692 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001693 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1694 if ((c & mask) != res) {
1695 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1696 err=0xFF;
1697 goto AI_OUT;
1698 }
1699 /* write taskfile */
wdenk2262cfe2002-11-18 00:14:45 +00001700 ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
wdenkc7de8292002-11-19 11:04:11 +00001701 ide_outb (device, ATA_SECT_CNT, 0);
1702 ide_outb (device, ATA_SECT_NUM, 0);
wdenk2262cfe2002-11-18 00:14:45 +00001703 ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF));
wdenkc7de8292002-11-19 11:04:11 +00001704 ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
1705#ifdef CONFIG_AMIGAONEG3SE
1706# warning THF: Removed LBA mode ???
1707#endif
wdenk2262cfe2002-11-18 00:14:45 +00001708 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
wdenkc6097192002-11-03 00:24:07 +00001709
wdenk2262cfe2002-11-18 00:14:45 +00001710 ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET);
wdenkc6097192002-11-03 00:24:07 +00001711 udelay (50);
1712
1713 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1714 res = ATA_STAT_DRQ;
1715 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1716
1717 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1718 printf ("ATTAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
1719 err=0xFF;
1720 goto AI_OUT;
1721 }
1722
1723 output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
1724 /* ATAPI Command written wait for completition */
1725 udelay (5000); /* device must set bsy */
1726
1727 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1728 /* if no data wait for DRQ = 0 BSY = 0
1729 * if data wait for DRQ = 1 BSY = 0 */
1730 res=0;
1731 if(buflen)
1732 res = ATA_STAT_DRQ;
1733 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1734 if ((c & mask) != res ) {
1735 if (c & ATA_STAT_ERR) {
wdenk2262cfe2002-11-18 00:14:45 +00001736 err=(ide_inb(device,ATA_ERROR_REG))>>4;
wdenkc6097192002-11-03 00:24:07 +00001737 AT_PRINTF("atapi_issue 1 returned sense key %X status %02X\n",err,c);
1738 } else {
1739 printf ("ATTAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c);
1740 err=0xFF;
1741 }
1742 goto AI_OUT;
1743 }
wdenk2262cfe2002-11-18 00:14:45 +00001744 n=ide_inb(device, ATA_CYL_HIGH);
wdenkc6097192002-11-03 00:24:07 +00001745 n<<=8;
wdenk2262cfe2002-11-18 00:14:45 +00001746 n+=ide_inb(device, ATA_CYL_LOW);
wdenkc6097192002-11-03 00:24:07 +00001747 if(n>buflen) {
1748 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1749 err=0xff;
1750 goto AI_OUT;
1751 }
1752 if((n==0)&&(buflen<0)) {
1753 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1754 err=0xff;
1755 goto AI_OUT;
1756 }
1757 if(n!=buflen) {
1758 AT_PRINTF("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
1759 }
1760 if(n!=0) { /* data transfer */
1761 AT_PRINTF("ATAPI_ISSUE: %d Bytes to transfer\n",n);
1762 /* we transfer shorts */
1763 n>>=1;
1764 /* ok now decide if it is an in or output */
wdenk2262cfe2002-11-18 00:14:45 +00001765 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
wdenkc6097192002-11-03 00:24:07 +00001766 AT_PRINTF("Write to device\n");
1767 output_data_shorts(device,(unsigned short *)buffer,n);
1768 } else {
1769 AT_PRINTF("Read from device @ %p shorts %d\n",buffer,n);
1770 input_data_shorts(device,(unsigned short *)buffer,n);
1771 }
1772 }
1773 udelay(5000); /* seems that some CD ROMs need this... */
1774 mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1775 res=0;
1776 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1777 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
wdenk2262cfe2002-11-18 00:14:45 +00001778 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
wdenkc6097192002-11-03 00:24:07 +00001779 AT_PRINTF("atapi_issue 2 returned sense key %X status %X\n",err,c);
1780 } else {
1781 err = 0;
1782 }
1783AI_OUT:
1784 ide_led (DEVICE_LED(device), 0); /* LED off */
1785 return (err);
1786}
1787
1788/*
1789 * sending the command to atapi_issue. If an status other than good
1790 * returns, an request_sense will be issued
1791 */
1792
1793#define ATAPI_DRIVE_NOT_READY 100
1794#define ATAPI_UNIT_ATTN 10
1795
1796unsigned char atapi_issue_autoreq (int device,
1797 unsigned char* ccb,
1798 int ccblen,
1799 unsigned char *buffer,
1800 int buflen)
1801{
1802 unsigned char sense_data[18],sense_ccb[12];
1803 unsigned char res,key,asc,ascq;
1804 int notready,unitattn;
1805
wdenkc7de8292002-11-19 11:04:11 +00001806#ifdef CONFIG_AMIGAONEG3SE
1807 char *s;
1808 unsigned int timeout, retrycnt;
1809
1810 s = getenv("ide_cd_timeout");
1811 timeout = s ? (simple_strtol(s, NULL, 10)*1000000)/5 : 0;
1812
1813 retrycnt = 0;
1814#endif
1815
wdenkc6097192002-11-03 00:24:07 +00001816 unitattn=ATAPI_UNIT_ATTN;
1817 notready=ATAPI_DRIVE_NOT_READY;
1818
1819retry:
1820 res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1821 if (res==0)
1822 return (0); /* Ok */
1823
1824 if (res==0xFF)
1825 return (0xFF); /* error */
1826
1827 AT_PRINTF("(auto_req)atapi_issue returned sense key %X\n",res);
1828
1829 memset(sense_ccb,0,sizeof(sense_ccb));
1830 memset(sense_data,0,sizeof(sense_data));
1831 sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
wdenkc7de8292002-11-19 11:04:11 +00001832 sense_ccb[4]=18; /* allocation Length */
wdenkc6097192002-11-03 00:24:07 +00001833
1834 res=atapi_issue(device,sense_ccb,12,sense_data,18);
1835 key=(sense_data[2]&0xF);
1836 asc=(sense_data[12]);
1837 ascq=(sense_data[13]);
1838
1839 AT_PRINTF("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1840 AT_PRINTF(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1841 sense_data[0],
1842 key,
1843 asc,
1844 ascq);
1845
1846 if((key==0))
1847 return 0; /* ok device ready */
1848
1849 if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1850 if(unitattn-->0) {
1851 udelay(200*1000);
1852 goto retry;
1853 }
1854 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1855 goto error;
1856 }
1857 if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1858 if (notready-->0) {
1859 udelay(200*1000);
1860 goto retry;
1861 }
1862 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1863 goto error;
1864 }
1865 if(asc==0x3a) {
1866 AT_PRINTF("Media not present\n");
1867 goto error;
1868 }
wdenkc7de8292002-11-19 11:04:11 +00001869
1870#ifdef CONFIG_AMIGAONEG3SE
1871 if ((sense_data[2]&0xF)==0x0B) {
1872 AT_PRINTF("ABORTED COMMAND...retry\n");
1873 if (retrycnt++ < 4)
1874 goto retry;
1875 return (0xFF);
1876 }
1877
1878 if ((sense_data[2]&0xf) == 0x02 &&
1879 sense_data[12] == 0x04 &&
1880 sense_data[13] == 0x01 ) {
1881 AT_PRINTF("Waiting for unit to become active\n");
1882 udelay(timeout);
1883 if (retrycnt++ < 4)
1884 goto retry;
1885 return 0xFF;
1886 }
1887#endif /* CONFIG_AMIGAONEG3SE */
1888
wdenkc6097192002-11-03 00:24:07 +00001889 printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1890error:
1891 AT_PRINTF ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1892 return (0xFF);
1893}
1894
1895
wdenkc6097192002-11-03 00:24:07 +00001896static void atapi_inquiry(block_dev_desc_t * dev_desc)
1897{
1898 unsigned char ccb[12]; /* Command descriptor block */
1899 unsigned char iobuf[64]; /* temp buf */
1900 unsigned char c;
1901 int device;
1902
1903 device=dev_desc->dev;
1904 dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
1905 dev_desc->block_read=atapi_read;
1906
1907 memset(ccb,0,sizeof(ccb));
1908 memset(iobuf,0,sizeof(iobuf));
1909
1910 ccb[0]=ATAPI_CMD_INQUIRY;
1911 ccb[4]=40; /* allocation Legnth */
1912 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
1913
1914 AT_PRINTF("ATAPI_CMD_INQUIRY returned %x\n",c);
1915 if (c!=0)
1916 return;
1917
1918 /* copy device ident strings */
1919 ident_cpy(dev_desc->vendor,&iobuf[8],8);
1920 ident_cpy(dev_desc->product,&iobuf[16],16);
1921 ident_cpy(dev_desc->revision,&iobuf[32],5);
1922
1923 dev_desc->lun=0;
1924 dev_desc->lba=0;
1925 dev_desc->blksz=0;
1926 dev_desc->type=iobuf[0] & 0x1f;
1927
1928 if ((iobuf[1]&0x80)==0x80)
1929 dev_desc->removable = 1;
1930 else
1931 dev_desc->removable = 0;
1932
1933 memset(ccb,0,sizeof(ccb));
1934 memset(iobuf,0,sizeof(iobuf));
1935 ccb[0]=ATAPI_CMD_START_STOP;
1936 ccb[4]=0x03; /* start */
1937
1938 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1939
1940 AT_PRINTF("ATAPI_CMD_START_STOP returned %x\n",c);
1941 if (c!=0)
1942 return;
1943
1944 memset(ccb,0,sizeof(ccb));
1945 memset(iobuf,0,sizeof(iobuf));
1946 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1947
1948 AT_PRINTF("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
1949 if (c!=0)
1950 return;
1951
1952 memset(ccb,0,sizeof(ccb));
1953 memset(iobuf,0,sizeof(iobuf));
1954 ccb[0]=ATAPI_CMD_READ_CAP;
1955 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
1956 AT_PRINTF("ATAPI_CMD_READ_CAP returned %x\n",c);
1957 if (c!=0)
1958 return;
1959
1960 AT_PRINTF("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1961 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
1962 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
1963
1964 dev_desc->lba =((unsigned long)iobuf[0]<<24) +
1965 ((unsigned long)iobuf[1]<<16) +
1966 ((unsigned long)iobuf[2]<< 8) +
1967 ((unsigned long)iobuf[3]);
1968 dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
1969 ((unsigned long)iobuf[5]<<16) +
1970 ((unsigned long)iobuf[6]<< 8) +
1971 ((unsigned long)iobuf[7]);
wdenk42dfe7a2004-03-14 22:25:36 +00001972#ifdef CONFIG_LBA48
wdenkc40b2952004-03-13 23:29:43 +00001973 dev_desc->lba48 = 0; /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
wdenk42dfe7a2004-03-14 22:25:36 +00001974#endif
wdenkc6097192002-11-03 00:24:07 +00001975 return;
1976}
1977
1978
1979/*
1980 * atapi_read:
1981 * we transfer only one block per command, since the multiple DRQ per
1982 * command is not yet implemented
1983 */
1984#define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1985#define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
1986#define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
1987
wdenkc40b2952004-03-13 23:29:43 +00001988ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
wdenkc6097192002-11-03 00:24:07 +00001989{
1990 ulong n = 0;
1991 unsigned char ccb[12]; /* Command descriptor block */
1992 ulong cnt;
1993
1994 AT_PRINTF("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
1995 device, blknr, blkcnt, (ulong)buffer);
1996
1997 do {
1998 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
1999 cnt=ATAPI_READ_MAX_BLOCK;
2000 } else {
2001 cnt=blkcnt;
2002 }
2003 ccb[0]=ATAPI_CMD_READ_12;
2004 ccb[1]=0; /* reserved */
2005 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
2006 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */
2007 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
2008 ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */
2009 ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */
2010 ccb[7]=(unsigned char) (cnt >>16) & 0xFF;
2011 ccb[8]=(unsigned char) (cnt >> 8) & 0xFF;
2012 ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */
2013 ccb[10]=0; /* reserved */
2014 ccb[11]=0; /* reserved */
2015
2016 if (atapi_issue_autoreq(device,ccb,12,
2017 (unsigned char *)buffer,
2018 cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
2019 return (n);
2020 }
2021 n+=cnt;
2022 blkcnt-=cnt;
2023 blknr+=cnt;
2024 buffer+=cnt*(ATAPI_READ_BLOCK_SIZE/4); /* ulong blocksize in ulong */
2025 } while (blkcnt > 0);
2026 return (n);
2027}
2028
2029/* ------------------------------------------------------------------------- */
2030
2031#endif /* CONFIG_ATAPI */
2032
wdenk0d498392003-07-01 21:06:45 +00002033U_BOOT_CMD(
2034 ide, 5, 1, do_ide,
wdenk8bde7f72003-06-27 21:31:46 +00002035 "ide - IDE sub-system\n",
2036 "reset - reset IDE controller\n"
2037 "ide info - show available IDE devices\n"
2038 "ide device [dev] - show or set current device\n"
2039 "ide part [dev] - print partition table of one or all IDE devices\n"
2040 "ide read addr blk# cnt\n"
2041 "ide write addr blk# cnt - read/write `cnt'"
2042 " blocks starting at block `blk#'\n"
2043 " to/from memory address `addr'\n"
2044);
2045
wdenk0d498392003-07-01 21:06:45 +00002046U_BOOT_CMD(
2047 diskboot, 3, 1, do_diskboot,
wdenk8bde7f72003-06-27 21:31:46 +00002048 "diskboot- boot from IDE device\n",
2049 "loadAddr dev:part\n"
2050);
2051
wdenkc6097192002-11-03 00:24:07 +00002052#endif /* CONFIG_COMMANDS & CFG_CMD_IDE */