]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_ide.c
arm: fixloop(): do not use r8 for relocation
[karo-tx-uboot.git] / common / cmd_ide.c
1 /*
2  * (C) Copyright 2000-2005
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
29 #include <common.h>
30 #include <config.h>
31 #include <watchdog.h>
32 #include <command.h>
33 #include <image.h>
34 #include <asm/byteorder.h>
35 #include <asm/io.h>
36
37 #if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
38 # include <pcmcia.h>
39 #endif
40
41 #ifdef CONFIG_8xx
42 # include <mpc8xx.h>
43 #endif
44
45 #ifdef CONFIG_MPC5xxx
46 #include <mpc5xxx.h>
47 #endif
48
49 #ifdef CONFIG_ORION5X
50 #include <asm/arch/orion5x.h>
51 #elif defined CONFIG_KIRKWOOD
52 #include <asm/arch/kirkwood.h>
53 #endif
54
55 #include <ide.h>
56 #include <ata.h>
57
58 #ifdef CONFIG_STATUS_LED
59 # include <status_led.h>
60 #endif
61
62 #ifdef CONFIG_IDE_8xx_DIRECT
63 DECLARE_GLOBAL_DATA_PTR;
64 #endif
65
66 #ifdef __PPC__
67 # define EIEIO          __asm__ volatile ("eieio")
68 # define SYNC           __asm__ volatile ("sync")
69 #else
70 # define EIEIO          /* nothing */
71 # define SYNC           /* nothing */
72 #endif
73
74 #ifdef CONFIG_IDE_8xx_DIRECT
75 /* Timings for IDE Interface
76  *
77  * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk
78  * 70      165      30     PIO-Mode 0, [ns]
79  *  4        9       2                 [Cycles]
80  * 50      125      20     PIO-Mode 1, [ns]
81  *  3        7       2                 [Cycles]
82  * 30      100      15     PIO-Mode 2, [ns]
83  *  2        6       1                 [Cycles]
84  * 30       80      10     PIO-Mode 3, [ns]
85  *  2        5       1                 [Cycles]
86  * 25       70      10     PIO-Mode 4, [ns]
87  *  2        4       1                 [Cycles]
88  */
89
90 const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] =
91 {
92     /*  Setup  Length  Hold  */
93         { 70,   165,    30 },           /* PIO-Mode 0, [ns]     */
94         { 50,   125,    20 },           /* PIO-Mode 1, [ns]     */
95         { 30,   101,    15 },           /* PIO-Mode 2, [ns]     */
96         { 30,    80,    10 },           /* PIO-Mode 3, [ns]     */
97         { 25,    70,    10 },           /* PIO-Mode 4, [ns]     */
98 };
99
100 static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1];
101
102 #ifndef CONFIG_SYS_PIO_MODE
103 #define CONFIG_SYS_PIO_MODE     0               /* use a relaxed default */
104 #endif
105 static int pio_mode = CONFIG_SYS_PIO_MODE;
106
107 /* Make clock cycles and always round up */
108
109 #define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U )
110
111 #endif /* CONFIG_IDE_8xx_DIRECT */
112
113 /* ------------------------------------------------------------------------- */
114
115 /* Current I/O Device   */
116 static int curr_device = -1;
117
118 /* Current offset for IDE0 / IDE1 bus access    */
119 ulong ide_bus_offset[CONFIG_SYS_IDE_MAXBUS] = {
120 #if defined(CONFIG_SYS_ATA_IDE0_OFFSET)
121         CONFIG_SYS_ATA_IDE0_OFFSET,
122 #endif
123 #if defined(CONFIG_SYS_ATA_IDE1_OFFSET) && (CONFIG_SYS_IDE_MAXBUS > 1)
124         CONFIG_SYS_ATA_IDE1_OFFSET,
125 #endif
126 };
127
128
129 static int ide_bus_ok[CONFIG_SYS_IDE_MAXBUS];
130
131 block_dev_desc_t ide_dev_desc[CONFIG_SYS_IDE_MAXDEVICE];
132 /* ------------------------------------------------------------------------- */
133
134 #ifdef CONFIG_IDE_LED
135 # if !defined(CONFIG_BMS2003)   && \
136      !defined(CONFIG_CPC45)     && \
137      !defined(CONFIG_KUP4K) && \
138      !defined(CONFIG_KUP4X)
139 static void  ide_led   (uchar led, uchar status);
140 #else
141 extern void  ide_led   (uchar led, uchar status);
142 #endif
143 #else
144 #define ide_led(a,b)    /* dummy */
145 #endif
146
147 #ifdef CONFIG_IDE_RESET
148 static void  ide_reset (void);
149 #else
150 #define ide_reset()     /* dummy */
151 #endif
152
153 static void  ide_ident (block_dev_desc_t *dev_desc);
154 static uchar ide_wait  (int dev, ulong t);
155
156 #define IDE_TIME_OUT    2000    /* 2 sec timeout */
157
158 #define ATAPI_TIME_OUT  7000    /* 7 sec timeout (5 sec seems to work...) */
159
160 #define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
161
162 static void input_data(int dev, ulong *sect_buf, int words);
163 static void output_data(int dev, ulong *sect_buf, int words);
164 static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
165
166 #ifndef CONFIG_SYS_ATA_PORT_ADDR
167 #define CONFIG_SYS_ATA_PORT_ADDR(port) (port)
168 #endif
169
170 #ifdef CONFIG_ATAPI
171 static void     atapi_inquiry(block_dev_desc_t *dev_desc);
172 ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer);
173 #endif
174
175
176 #ifdef CONFIG_IDE_8xx_DIRECT
177 static void set_pcmcia_timing (int pmode);
178 #endif
179
180 /* ------------------------------------------------------------------------- */
181
182 int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
183 {
184     int rcode = 0;
185
186     switch (argc) {
187     case 0:
188     case 1:
189         return cmd_usage(cmdtp);
190     case 2:
191         if (strncmp(argv[1],"res",3) == 0) {
192                 puts ("\nReset IDE"
193 #ifdef CONFIG_IDE_8xx_DIRECT
194                         " on PCMCIA " PCMCIA_SLOT_MSG
195 #endif
196                         ": ");
197
198                 ide_init ();
199                 return 0;
200         } else if (strncmp(argv[1],"inf",3) == 0) {
201                 int i;
202
203                 putc ('\n');
204
205                 for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i) {
206                         if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN)
207                                 continue; /* list only known devices */
208                         printf ("IDE device %d: ", i);
209                         dev_print(&ide_dev_desc[i]);
210                 }
211                 return 0;
212
213         } else if (strncmp(argv[1],"dev",3) == 0) {
214                 if ((curr_device < 0) || (curr_device >= CONFIG_SYS_IDE_MAXDEVICE)) {
215                         puts ("\nno IDE devices available\n");
216                         return 1;
217                 }
218                 printf ("\nIDE device %d: ", curr_device);
219                 dev_print(&ide_dev_desc[curr_device]);
220                 return 0;
221         } else if (strncmp(argv[1],"part",4) == 0) {
222                 int dev, ok;
223
224                 for (ok=0, dev=0; dev<CONFIG_SYS_IDE_MAXDEVICE; ++dev) {
225                         if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
226                                 ++ok;
227                                 if (dev)
228                                         putc ('\n');
229                                 print_part(&ide_dev_desc[dev]);
230                         }
231                 }
232                 if (!ok) {
233                         puts ("\nno IDE devices available\n");
234                         rcode ++;
235                 }
236                 return rcode;
237         }
238         return cmd_usage(cmdtp);
239     case 3:
240         if (strncmp(argv[1],"dev",3) == 0) {
241                 int dev = (int)simple_strtoul(argv[2], NULL, 10);
242
243                 printf ("\nIDE device %d: ", dev);
244                 if (dev >= CONFIG_SYS_IDE_MAXDEVICE) {
245                         puts ("unknown device\n");
246                         return 1;
247                 }
248                 dev_print(&ide_dev_desc[dev]);
249                 /*ide_print (dev);*/
250
251                 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
252                         return 1;
253                 }
254
255                 curr_device = dev;
256
257                 puts ("... is now current device\n");
258
259                 return 0;
260         } else if (strncmp(argv[1],"part",4) == 0) {
261                 int dev = (int)simple_strtoul(argv[2], NULL, 10);
262
263                 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
264                                 print_part(&ide_dev_desc[dev]);
265                 } else {
266                         printf ("\nIDE device %d not available\n", dev);
267                         rcode = 1;
268                 }
269                 return rcode;
270 #if 0
271         } else if (strncmp(argv[1],"pio",4) == 0) {
272                 int mode = (int)simple_strtoul(argv[2], NULL, 10);
273
274                 if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) {
275                         puts ("\nSetting ");
276                         pio_mode = mode;
277                         ide_init ();
278                 } else {
279                         printf ("\nInvalid PIO mode %d (0 ... %d only)\n",
280                                 mode, IDE_MAX_PIO_MODE);
281                 }
282                 return;
283 #endif
284         }
285
286         return cmd_usage(cmdtp);
287     default:
288         /* at least 4 args */
289
290         if (strcmp(argv[1],"read") == 0) {
291                 ulong addr = simple_strtoul(argv[2], NULL, 16);
292                 ulong cnt  = simple_strtoul(argv[4], NULL, 16);
293                 ulong n;
294 #ifdef CONFIG_SYS_64BIT_LBA
295                 lbaint_t blk  = simple_strtoull(argv[3], NULL, 16);
296
297                 printf ("\nIDE read: device %d block # %Ld, count %ld ... ",
298                         curr_device, blk, cnt);
299 #else
300                 lbaint_t blk  = simple_strtoul(argv[3], NULL, 16);
301
302                 printf ("\nIDE read: device %d block # %ld, count %ld ... ",
303                         curr_device, blk, cnt);
304 #endif
305
306                 n = ide_dev_desc[curr_device].block_read (curr_device,
307                                                           blk, cnt,
308                                                           (ulong *)addr);
309                 /* flush cache after read */
310                 flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz);
311
312                 printf ("%ld blocks read: %s\n",
313                         n, (n==cnt) ? "OK" : "ERROR");
314                 if (n==cnt) {
315                         return 0;
316                 } else {
317                         return 1;
318                 }
319         } else if (strcmp(argv[1],"write") == 0) {
320                 ulong addr = simple_strtoul(argv[2], NULL, 16);
321                 ulong cnt  = simple_strtoul(argv[4], NULL, 16);
322                 ulong n;
323 #ifdef CONFIG_SYS_64BIT_LBA
324                 lbaint_t blk  = simple_strtoull(argv[3], NULL, 16);
325
326                 printf ("\nIDE write: device %d block # %Ld, count %ld ... ",
327                         curr_device, blk, cnt);
328 #else
329                 lbaint_t blk  = simple_strtoul(argv[3], NULL, 16);
330
331                 printf ("\nIDE write: device %d block # %ld, count %ld ... ",
332                         curr_device, blk, cnt);
333 #endif
334
335                 n = ide_write (curr_device, blk, cnt, (ulong *)addr);
336
337                 printf ("%ld blocks written: %s\n",
338                         n, (n==cnt) ? "OK" : "ERROR");
339                 if (n==cnt)
340                         return 0;
341                 else
342                         return 1;
343         } else {
344                 return cmd_usage(cmdtp);
345         }
346
347         return rcode;
348     }
349 }
350
351 int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
352 {
353         char *boot_device = NULL;
354         char *ep;
355         int dev, part = 0;
356         ulong addr, cnt;
357         disk_partition_t info;
358         image_header_t *hdr;
359         int rcode = 0;
360 #if defined(CONFIG_FIT)
361         const void *fit_hdr = NULL;
362 #endif
363
364         show_boot_progress (41);
365         switch (argc) {
366         case 1:
367                 addr = CONFIG_SYS_LOAD_ADDR;
368                 boot_device = getenv ("bootdevice");
369                 break;
370         case 2:
371                 addr = simple_strtoul(argv[1], NULL, 16);
372                 boot_device = getenv ("bootdevice");
373                 break;
374         case 3:
375                 addr = simple_strtoul(argv[1], NULL, 16);
376                 boot_device = argv[2];
377                 break;
378         default:
379                 show_boot_progress (-42);
380                 return cmd_usage(cmdtp);
381         }
382         show_boot_progress (42);
383
384         if (!boot_device) {
385                 puts ("\n** No boot device **\n");
386                 show_boot_progress (-43);
387                 return 1;
388         }
389         show_boot_progress (43);
390
391         dev = simple_strtoul(boot_device, &ep, 16);
392
393         if (ide_dev_desc[dev].type==DEV_TYPE_UNKNOWN) {
394                 printf ("\n** Device %d not available\n", dev);
395                 show_boot_progress (-44);
396                 return 1;
397         }
398         show_boot_progress (44);
399
400         if (*ep) {
401                 if (*ep != ':') {
402                         puts ("\n** Invalid boot device, use `dev[:part]' **\n");
403                         show_boot_progress (-45);
404                         return 1;
405                 }
406                 part = simple_strtoul(++ep, NULL, 16);
407         }
408         show_boot_progress (45);
409         if (get_partition_info (&ide_dev_desc[dev], part, &info)) {
410                 show_boot_progress (-46);
411                 return 1;
412         }
413         show_boot_progress (46);
414         if ((strncmp((char *)info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
415             (strncmp((char *)info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
416                 printf ("\n** Invalid partition type \"%.32s\""
417                         " (expect \"" BOOT_PART_TYPE "\")\n",
418                         info.type);
419                 show_boot_progress (-47);
420                 return 1;
421         }
422         show_boot_progress (47);
423
424         printf ("\nLoading from IDE device %d, partition %d: "
425                 "Name: %.32s  Type: %.32s\n",
426                 dev, part, info.name, info.type);
427
428         debug ("First Block: %ld,  # of blocks: %ld, Block Size: %ld\n",
429                 info.start, info.size, info.blksz);
430
431         if (ide_dev_desc[dev].block_read (dev, info.start, 1, (ulong *)addr) != 1) {
432                 printf ("** Read error on %d:%d\n", dev, part);
433                 show_boot_progress (-48);
434                 return 1;
435         }
436         show_boot_progress (48);
437
438         switch (genimg_get_format ((void *)addr)) {
439         case IMAGE_FORMAT_LEGACY:
440                 hdr = (image_header_t *)addr;
441
442                 show_boot_progress (49);
443
444                 if (!image_check_hcrc (hdr)) {
445                         puts ("\n** Bad Header Checksum **\n");
446                         show_boot_progress (-50);
447                         return 1;
448                 }
449                 show_boot_progress (50);
450
451                 image_print_contents (hdr);
452
453                 cnt = image_get_image_size (hdr);
454                 break;
455 #if defined(CONFIG_FIT)
456         case IMAGE_FORMAT_FIT:
457                 fit_hdr = (const void *)addr;
458                 puts ("Fit image detected...\n");
459
460                 cnt = fit_get_size (fit_hdr);
461                 break;
462 #endif
463         default:
464                 show_boot_progress (-49);
465                 puts ("** Unknown image type\n");
466                 return 1;
467         }
468
469         cnt += info.blksz - 1;
470         cnt /= info.blksz;
471         cnt -= 1;
472
473         if (ide_dev_desc[dev].block_read (dev, info.start+1, cnt,
474                       (ulong *)(addr+info.blksz)) != cnt) {
475                 printf ("** Read error on %d:%d\n", dev, part);
476                 show_boot_progress (-51);
477                 return 1;
478         }
479         show_boot_progress (51);
480
481 #if defined(CONFIG_FIT)
482         /* This cannot be done earlier, we need complete FIT image in RAM first */
483         if (genimg_get_format ((void *)addr) == IMAGE_FORMAT_FIT) {
484                 if (!fit_check_format (fit_hdr)) {
485                         show_boot_progress (-140);
486                         puts ("** Bad FIT image format\n");
487                         return 1;
488                 }
489                 show_boot_progress (141);
490                 fit_print_contents (fit_hdr);
491         }
492 #endif
493
494         /* Loading ok, update default load address */
495
496         load_addr = addr;
497
498         /* Check if we should attempt an auto-start */
499         if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
500                 char *local_args[2];
501                 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
502
503                 local_args[0] = argv[0];
504                 local_args[1] = NULL;
505
506                 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
507
508                 do_bootm (cmdtp, 0, 1, local_args);
509                 rcode = 1;
510         }
511         return rcode;
512 }
513
514 /* ------------------------------------------------------------------------- */
515
516 void inline
517 __ide_outb(int dev, int port, unsigned char val)
518 {
519         debug ("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
520                 dev, port, val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
521         outb(val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
522 }
523 void ide_outb (int dev, int port, unsigned char val)
524                 __attribute__((weak, alias("__ide_outb")));
525
526 unsigned char inline
527 __ide_inb(int dev, int port)
528 {
529         uchar val;
530         val = inb((ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
531         debug ("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
532                 dev, port, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)), val);
533         return val;
534 }
535 unsigned char ide_inb(int dev, int port)
536                         __attribute__((weak, alias("__ide_inb")));
537
538 #ifdef CONFIG_TUNE_PIO
539 int inline
540 __ide_set_piomode(int pio_mode)
541 {
542         return 0;
543 }
544 int inline ide_set_piomode(int pio_mode)
545                         __attribute__((weak, alias("__ide_set_piomode")));
546 #endif
547
548 void ide_init (void)
549 {
550
551 #ifdef CONFIG_IDE_8xx_DIRECT
552         volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
553         volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
554 #endif
555         unsigned char c;
556         int i, bus;
557 #if defined(CONFIG_SC3)
558         unsigned int ata_reset_time = ATA_RESET_TIME;
559 #endif
560 #ifdef CONFIG_IDE_8xx_PCCARD
561         extern int pcmcia_on (void);
562         extern int ide_devices_found; /* Initialized in check_ide_device() */
563 #endif  /* CONFIG_IDE_8xx_PCCARD */
564
565 #ifdef CONFIG_IDE_PREINIT
566         extern int ide_preinit (void);
567         WATCHDOG_RESET();
568
569         if (ide_preinit ()) {
570                 puts ("ide_preinit failed\n");
571                 return;
572         }
573 #endif  /* CONFIG_IDE_PREINIT */
574
575 #ifdef CONFIG_IDE_8xx_PCCARD
576         extern int pcmcia_on (void);
577         extern int ide_devices_found; /* Initialized in check_ide_device() */
578
579         WATCHDOG_RESET();
580
581         ide_devices_found = 0;
582         /* initialize the PCMCIA IDE adapter card */
583         pcmcia_on();
584         if (!ide_devices_found)
585                 return;
586         udelay (1000000);       /* 1 s */
587 #endif  /* CONFIG_IDE_8xx_PCCARD */
588
589         WATCHDOG_RESET();
590
591 #ifdef CONFIG_IDE_8xx_DIRECT
592         /* Initialize PIO timing tables */
593         for (i=0; i <= IDE_MAX_PIO_MODE; ++i) {
594                 pio_config_clk[i].t_setup  = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup,
595                                                                 gd->bus_clk);
596                 pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
597                                                                 gd->bus_clk);
598                 pio_config_clk[i].t_hold   = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold,
599                                                                 gd->bus_clk);
600                 debug ( "PIO Mode %d: setup=%2d ns/%d clk"
601                         "  len=%3d ns/%d clk"
602                         "  hold=%2d ns/%d clk\n",
603                         i,
604                         pio_config_ns[i].t_setup,  pio_config_clk[i].t_setup,
605                         pio_config_ns[i].t_length, pio_config_clk[i].t_length,
606                         pio_config_ns[i].t_hold,   pio_config_clk[i].t_hold);
607         }
608 #endif /* CONFIG_IDE_8xx_DIRECT */
609
610         /* Reset the IDE just to be sure.
611          * Light LED's to show
612          */
613         ide_led ((LED_IDE1 | LED_IDE2), 1);             /* LED's on     */
614         ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */
615
616 #ifdef CONFIG_IDE_8xx_DIRECT
617         /* PCMCIA / IDE initialization for common mem space */
618         pcmp->pcmc_pgcrb = 0;
619
620         /* start in PIO mode 0 - most relaxed timings */
621         pio_mode = 0;
622         set_pcmcia_timing (pio_mode);
623 #endif /* CONFIG_IDE_8xx_DIRECT */
624
625         /*
626          * Wait for IDE to get ready.
627          * According to spec, this can take up to 31 seconds!
628          */
629         for (bus=0; bus<CONFIG_SYS_IDE_MAXBUS; ++bus) {
630                 int dev = bus * (CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS);
631
632 #ifdef CONFIG_IDE_8xx_PCCARD
633                 /* Skip non-ide devices from probing */
634                 if ((ide_devices_found & (1 << bus)) == 0) {
635                         ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
636                         continue;
637                 }
638 #endif
639                 printf ("Bus %d: ", bus);
640
641                 ide_bus_ok[bus] = 0;
642
643                 /* Select device
644                  */
645                 udelay (100000);                /* 100 ms */
646                 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
647                 udelay (100000);                /* 100 ms */
648                 i = 0;
649                 do {
650                         udelay (10000);         /* 10 ms */
651
652                         c = ide_inb (dev, ATA_STATUS);
653                         i++;
654 #if defined(CONFIG_SC3)
655                         if (i > (ata_reset_time * 100)) {
656 #else
657                         if (i > (ATA_RESET_TIME * 100)) {
658 #endif
659                                 puts ("** Timeout **\n");
660                                 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
661                                 return;
662                         }
663                         if ((i >= 100) && ((i%100)==0)) {
664                                 putc ('.');
665                         }
666                 } while (c & ATA_STAT_BUSY);
667
668                 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
669                         puts ("not available  ");
670                         debug ("Status = 0x%02X ", c);
671 #ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
672                 } else  if ((c & ATA_STAT_READY) == 0) {
673                         puts ("not available  ");
674                         debug ("Status = 0x%02X ", c);
675 #endif
676                 } else {
677                         puts ("OK ");
678                         ide_bus_ok[bus] = 1;
679                 }
680                 WATCHDOG_RESET();
681         }
682
683         putc ('\n');
684
685         ide_led ((LED_IDE1 | LED_IDE2), 0);     /* LED's off    */
686
687         curr_device = -1;
688         for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i) {
689 #ifdef CONFIG_IDE_LED
690                 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
691 #endif
692                 ide_dev_desc[i].type=DEV_TYPE_UNKNOWN;
693                 ide_dev_desc[i].if_type=IF_TYPE_IDE;
694                 ide_dev_desc[i].dev=i;
695                 ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
696                 ide_dev_desc[i].blksz=0;
697                 ide_dev_desc[i].lba=0;
698                 ide_dev_desc[i].block_read=ide_read;
699                 if (!ide_bus_ok[IDE_BUS(i)])
700                         continue;
701                 ide_led (led, 1);               /* LED on       */
702                 ide_ident(&ide_dev_desc[i]);
703                 ide_led (led, 0);               /* LED off      */
704                 dev_print(&ide_dev_desc[i]);
705 /*              ide_print (i); */
706                 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
707                         init_part (&ide_dev_desc[i]);                   /* initialize partition type */
708                         if (curr_device < 0)
709                                 curr_device = i;
710                 }
711         }
712         WATCHDOG_RESET();
713 }
714
715 /* ------------------------------------------------------------------------- */
716
717 block_dev_desc_t * ide_get_dev(int dev)
718 {
719         return (dev < CONFIG_SYS_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL;
720 }
721
722
723 #ifdef CONFIG_IDE_8xx_DIRECT
724
725 static void
726 set_pcmcia_timing (int pmode)
727 {
728         volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
729         volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
730         ulong timings;
731
732         debug ("Set timing for PIO Mode %d\n", pmode);
733
734         timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
735                 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
736                 | PCMCIA_SL (pio_config_clk[pmode].t_length)
737                 ;
738
739         /* IDE 0
740          */
741         pcmp->pcmc_pbr0 = CONFIG_SYS_PCMCIA_PBR0;
742         pcmp->pcmc_por0 = CONFIG_SYS_PCMCIA_POR0
743 #if (CONFIG_SYS_PCMCIA_POR0 != 0)
744                         | timings
745 #endif
746                         ;
747         debug ("PBR0: %08x  POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
748
749         pcmp->pcmc_pbr1 = CONFIG_SYS_PCMCIA_PBR1;
750         pcmp->pcmc_por1 = CONFIG_SYS_PCMCIA_POR1
751 #if (CONFIG_SYS_PCMCIA_POR1 != 0)
752                         | timings
753 #endif
754                         ;
755         debug ("PBR1: %08x  POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
756
757         pcmp->pcmc_pbr2 = CONFIG_SYS_PCMCIA_PBR2;
758         pcmp->pcmc_por2 = CONFIG_SYS_PCMCIA_POR2
759 #if (CONFIG_SYS_PCMCIA_POR2 != 0)
760                         | timings
761 #endif
762                         ;
763         debug ("PBR2: %08x  POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
764
765         pcmp->pcmc_pbr3 = CONFIG_SYS_PCMCIA_PBR3;
766         pcmp->pcmc_por3 = CONFIG_SYS_PCMCIA_POR3
767 #if (CONFIG_SYS_PCMCIA_POR3 != 0)
768                         | timings
769 #endif
770                         ;
771         debug ("PBR3: %08x  POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
772
773         /* IDE 1
774          */
775         pcmp->pcmc_pbr4 = CONFIG_SYS_PCMCIA_PBR4;
776         pcmp->pcmc_por4 = CONFIG_SYS_PCMCIA_POR4
777 #if (CONFIG_SYS_PCMCIA_POR4 != 0)
778                         | timings
779 #endif
780                         ;
781         debug ("PBR4: %08x  POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
782
783         pcmp->pcmc_pbr5 = CONFIG_SYS_PCMCIA_PBR5;
784         pcmp->pcmc_por5 = CONFIG_SYS_PCMCIA_POR5
785 #if (CONFIG_SYS_PCMCIA_POR5 != 0)
786                         | timings
787 #endif
788                         ;
789         debug ("PBR5: %08x  POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
790
791         pcmp->pcmc_pbr6 = CONFIG_SYS_PCMCIA_PBR6;
792         pcmp->pcmc_por6 = CONFIG_SYS_PCMCIA_POR6
793 #if (CONFIG_SYS_PCMCIA_POR6 != 0)
794                         | timings
795 #endif
796                         ;
797         debug ("PBR6: %08x  POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
798
799         pcmp->pcmc_pbr7 = CONFIG_SYS_PCMCIA_PBR7;
800         pcmp->pcmc_por7 = CONFIG_SYS_PCMCIA_POR7
801 #if (CONFIG_SYS_PCMCIA_POR7 != 0)
802                         | timings
803 #endif
804                         ;
805         debug ("PBR7: %08x  POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
806
807 }
808
809 #endif  /* CONFIG_IDE_8xx_DIRECT */
810
811 /* ------------------------------------------------------------------------- */
812
813 /* We only need to swap data if we are running on a big endian cpu. */
814 /* But Au1x00 cpu:s already swaps data in big endian mode! */
815 #if defined(__LITTLE_ENDIAN) || ( defined(CONFIG_AU1X00) && !defined(CONFIG_GTH2) )
816 #define input_swap_data(x,y,z) input_data(x,y,z)
817 #else
818 static void
819 input_swap_data(int dev, ulong *sect_buf, int words)
820 {
821 #if defined(CONFIG_CPC45)
822         uchar i;
823         volatile uchar *pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
824         volatile uchar *pbuf_odd  = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
825         ushort  *dbuf = (ushort *)sect_buf;
826
827         while (words--) {
828                 for (i=0; i<2; i++) {
829                         *(((uchar *)(dbuf)) + 1) = *pbuf_even;
830                         *(uchar *)dbuf = *pbuf_odd;
831                         dbuf+=1;
832                 }
833         }
834 #else
835         volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
836         ushort  *dbuf = (ushort *)sect_buf;
837
838         debug("in input swap data base for read is %lx\n", (unsigned long) pbuf);
839
840         while (words--) {
841 #ifdef __MIPS__
842                 *dbuf++ = swab16p((u16*)pbuf);
843                 *dbuf++ = swab16p((u16*)pbuf);
844 #elif defined(CONFIG_PCS440EP)
845                 *dbuf++ = *pbuf;
846                 *dbuf++ = *pbuf;
847 #else
848                 *dbuf++ = ld_le16(pbuf);
849                 *dbuf++ = ld_le16(pbuf);
850 #endif /* !MIPS */
851         }
852 #endif
853 }
854 #endif  /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
855
856
857 #if defined(CONFIG_IDE_SWAP_IO)
858 static void
859 output_data(int dev, ulong *sect_buf, int words)
860 {
861 #if defined(CONFIG_CPC45)
862         uchar   *dbuf;
863         volatile uchar  *pbuf_even;
864         volatile uchar  *pbuf_odd;
865
866         pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
867         pbuf_odd  = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
868         dbuf = (uchar *)sect_buf;
869         while (words--) {
870                 EIEIO;
871                 *pbuf_even = *dbuf++;
872                 EIEIO;
873                 *pbuf_odd = *dbuf++;
874                 EIEIO;
875                 *pbuf_even = *dbuf++;
876                 EIEIO;
877                 *pbuf_odd = *dbuf++;
878         }
879 #else
880         ushort  *dbuf;
881         volatile ushort *pbuf;
882
883         pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
884         dbuf = (ushort *)sect_buf;
885         while (words--) {
886 #if defined(CONFIG_PCS440EP)
887                 /* not tested, because CF was write protected */
888                 EIEIO;
889                 *pbuf = ld_le16(dbuf++);
890                 EIEIO;
891                 *pbuf = ld_le16(dbuf++);
892 #else
893                 EIEIO;
894                 *pbuf = *dbuf++;
895                 EIEIO;
896                 *pbuf = *dbuf++;
897 #endif
898         }
899 #endif
900 }
901 #else   /* ! CONFIG_IDE_SWAP_IO */
902 static void
903 output_data(int dev, ulong *sect_buf, int words)
904 {
905         outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1);
906 }
907 #endif  /* CONFIG_IDE_SWAP_IO */
908
909 #if defined(CONFIG_IDE_SWAP_IO)
910 static void
911 input_data(int dev, ulong *sect_buf, int words)
912 {
913 #if defined(CONFIG_CPC45)
914         uchar   *dbuf;
915         volatile uchar  *pbuf_even;
916         volatile uchar  *pbuf_odd;
917
918         pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
919         pbuf_odd  = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
920         dbuf = (uchar *)sect_buf;
921         while (words--) {
922                 *dbuf++ = *pbuf_even;
923                 EIEIO;
924                 SYNC;
925                 *dbuf++ = *pbuf_odd;
926                 EIEIO;
927                 SYNC;
928                 *dbuf++ = *pbuf_even;
929                 EIEIO;
930                 SYNC;
931                 *dbuf++ = *pbuf_odd;
932                 EIEIO;
933                 SYNC;
934         }
935 #else
936         ushort  *dbuf;
937         volatile ushort *pbuf;
938
939         pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
940         dbuf = (ushort *)sect_buf;
941
942         debug("in input data base for read is %lx\n", (unsigned long) pbuf);
943
944         while (words--) {
945 #if defined(CONFIG_PCS440EP)
946                 EIEIO;
947                 *dbuf++ = ld_le16(pbuf);
948                 EIEIO;
949                 *dbuf++ = ld_le16(pbuf);
950 #else
951                 EIEIO;
952                 *dbuf++ = *pbuf;
953                 EIEIO;
954                 *dbuf++ = *pbuf;
955 #endif
956         }
957 #endif
958 }
959 #else   /* ! CONFIG_IDE_SWAP_IO */
960 static void
961 input_data(int dev, ulong *sect_buf, int words)
962 {
963         insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1);
964 }
965
966 #endif  /* CONFIG_IDE_SWAP_IO */
967
968 /* -------------------------------------------------------------------------
969  */
970 static void ide_ident (block_dev_desc_t *dev_desc)
971 {
972         ulong iobuf[ATA_SECTORWORDS];
973         unsigned char c;
974         hd_driveid_t *iop = (hd_driveid_t *)iobuf;
975
976 #ifdef CONFIG_ATAPI
977         int retries = 0;
978         int do_retry = 0;
979 #endif
980
981 #ifdef CONFIG_TUNE_PIO
982         int pio_mode;
983 #endif
984
985 #if 0
986         int mode, cycle_time;
987 #endif
988         int device;
989         device=dev_desc->dev;
990         printf ("  Device %d: ", device);
991
992         ide_led (DEVICE_LED(device), 1);        /* LED on       */
993         /* Select device
994          */
995         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
996         dev_desc->if_type=IF_TYPE_IDE;
997 #ifdef CONFIG_ATAPI
998
999     do_retry = 0;
1000     retries = 0;
1001
1002     /* Warning: This will be tricky to read */
1003     while (retries <= 1) {
1004         /* check signature */
1005         if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
1006                  (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
1007                  (ide_inb(device,ATA_CYL_LOW)  == 0x14) &&
1008                  (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
1009                 /* ATAPI Signature found */
1010                 dev_desc->if_type=IF_TYPE_ATAPI;
1011                 /* Start Ident Command
1012                  */
1013                 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
1014                 /*
1015                  * Wait for completion - ATAPI devices need more time
1016                  * to become ready
1017                  */
1018                 c = ide_wait (device, ATAPI_TIME_OUT);
1019         } else
1020 #endif
1021         {
1022                 /* Start Ident Command
1023                  */
1024                 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
1025
1026                 /* Wait for completion
1027                  */
1028                 c = ide_wait (device, IDE_TIME_OUT);
1029         }
1030         ide_led (DEVICE_LED(device), 0);        /* LED off      */
1031
1032         if (((c & ATA_STAT_DRQ) == 0) ||
1033             ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
1034 #ifdef CONFIG_ATAPI
1035                 {
1036                         /* Need to soft reset the device in case it's an ATAPI...  */
1037                         debug ("Retrying...\n");
1038                         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1039                         udelay(100000);
1040                         ide_outb (device, ATA_COMMAND, 0x08);
1041                         udelay (500000);        /* 500 ms */
1042                 }
1043                 /* Select device
1044                  */
1045                 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1046                 retries++;
1047 #else
1048                 return;
1049 #endif
1050         }
1051 #ifdef CONFIG_ATAPI
1052         else
1053                 break;
1054     }   /* see above - ugly to read */
1055
1056         if (retries == 2) /* Not found */
1057                 return;
1058 #endif
1059
1060         input_swap_data (device, iobuf, ATA_SECTORWORDS);
1061
1062         ident_cpy ((unsigned char*)dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1063         ident_cpy ((unsigned char*)dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1064         ident_cpy ((unsigned char*)dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
1065 #ifdef __LITTLE_ENDIAN
1066         /*
1067          * firmware revision, model, and serial number have Big Endian Byte
1068          * order in Word. Convert all three to little endian.
1069          *
1070          * See CF+ and CompactFlash Specification Revision 2.0:
1071          * 6.2.1.6: Identify Drive, Table 39 for more details
1072          */
1073
1074         strswab (dev_desc->revision);
1075         strswab (dev_desc->vendor);
1076         strswab (dev_desc->product);
1077 #endif /* __LITTLE_ENDIAN */
1078
1079         if ((iop->config & 0x0080)==0x0080)
1080                 dev_desc->removable = 1;
1081         else
1082                 dev_desc->removable = 0;
1083
1084 #ifdef CONFIG_TUNE_PIO
1085         /* Mode 0 - 2 only, are directly determined by word 51. */
1086         pio_mode = iop->tPIO;
1087         if (pio_mode > 2) {
1088                 printf("WARNING: Invalid PIO (word 51 = %d).\n", pio_mode);
1089                 pio_mode = 0; /* Force it to dead slow, and hope for the best... */
1090         }
1091
1092         /* Any CompactFlash Storage Card that supports PIO mode 3 or above
1093          * shall set bit 1 of word 53 to one and support the fields contained
1094          * in words 64 through 70.
1095          */
1096         if (iop->field_valid & 0x02) {
1097                 /* Mode 3 and above are possible.  Check in order from slow
1098                  * to fast, so we wind up with the highest mode allowed.
1099                  */
1100                 if (iop->eide_pio_modes & 0x01)
1101                         pio_mode = 3;
1102                 if (iop->eide_pio_modes & 0x02)
1103                         pio_mode = 4;
1104                 if (ata_id_is_cfa((u16 *)iop)) {
1105                         if ((iop->cf_advanced_caps & 0x07) == 0x01)
1106                                 pio_mode = 5;
1107                         if ((iop->cf_advanced_caps & 0x07) == 0x02)
1108                                 pio_mode = 6;
1109                 }
1110         }
1111
1112         /* System-specific, depends on bus speeds, etc. */
1113         ide_set_piomode(pio_mode);
1114 #endif /* CONFIG_TUNE_PIO */
1115
1116 #if 0
1117         /*
1118          * Drive PIO mode autoselection
1119          */
1120         mode = iop->tPIO;
1121
1122         printf ("tPIO = 0x%02x = %d\n",mode, mode);
1123         if (mode > 2) {         /* 2 is maximum allowed tPIO value */
1124                 mode = 2;
1125                 debug ("Override tPIO -> 2\n");
1126         }
1127         if (iop->field_valid & 2) {     /* drive implements ATA2? */
1128                 debug ("Drive implements ATA2\n");
1129                 if (iop->capability & 8) {      /* drive supports use_iordy? */
1130                         cycle_time = iop->eide_pio_iordy;
1131                 } else {
1132                         cycle_time = iop->eide_pio;
1133                 }
1134                 debug ("cycle time = %d\n", cycle_time);
1135                 mode = 4;
1136                 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1137                 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1138                 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1139                 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1140         }
1141         printf ("PIO mode to use: PIO %d\n", mode);
1142 #endif /* 0 */
1143
1144 #ifdef CONFIG_ATAPI
1145         if (dev_desc->if_type==IF_TYPE_ATAPI) {
1146                 atapi_inquiry(dev_desc);
1147                 return;
1148         }
1149 #endif /* CONFIG_ATAPI */
1150
1151 #ifdef __BIG_ENDIAN
1152         /* swap shorts */
1153         dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
1154 #else   /* ! __BIG_ENDIAN */
1155         /*
1156          * do not swap shorts on little endian
1157          *
1158          * See CF+ and CompactFlash Specification Revision 2.0:
1159          * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
1160          */
1161         dev_desc->lba = iop->lba_capacity;
1162 #endif  /* __BIG_ENDIAN */
1163
1164 #ifdef CONFIG_LBA48
1165         if (iop->command_set_2 & 0x0400) { /* LBA 48 support */
1166                 dev_desc->lba48 = 1;
1167                 dev_desc->lba = (unsigned long long)iop->lba48_capacity[0] |
1168                                                   ((unsigned long long)iop->lba48_capacity[1] << 16) |
1169                                                   ((unsigned long long)iop->lba48_capacity[2] << 32) |
1170                                                   ((unsigned long long)iop->lba48_capacity[3] << 48);
1171         } else {
1172                 dev_desc->lba48 = 0;
1173         }
1174 #endif /* CONFIG_LBA48 */
1175         /* assuming HD */
1176         dev_desc->type=DEV_TYPE_HARDDISK;
1177         dev_desc->blksz=ATA_BLOCKSIZE;
1178         dev_desc->lun=0; /* just to fill something in... */
1179
1180 #if 0   /* only used to test the powersaving mode,
1181          * if enabled, the drive goes after 5 sec
1182          * in standby mode */
1183         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1184         c = ide_wait (device, IDE_TIME_OUT);
1185         ide_outb (device, ATA_SECT_CNT, 1);
1186         ide_outb (device, ATA_LBA_LOW,  0);
1187         ide_outb (device, ATA_LBA_MID,  0);
1188         ide_outb (device, ATA_LBA_HIGH, 0);
1189         ide_outb (device, ATA_DEV_HD,   ATA_LBA | ATA_DEVICE(device));
1190         ide_outb (device, ATA_COMMAND,  0xe3);
1191         udelay (50);
1192         c = ide_wait (device, IDE_TIME_OUT);    /* can't take over 500 ms */
1193 #endif
1194 }
1195
1196
1197 /* ------------------------------------------------------------------------- */
1198
1199 ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
1200 {
1201         ulong n = 0;
1202         unsigned char c;
1203         unsigned char pwrsave=0; /* power save */
1204 #ifdef CONFIG_LBA48
1205         unsigned char lba48 = 0;
1206
1207         if (blknr & 0x0000fffff0000000ULL) {
1208                 /* more than 28 bits used, use 48bit mode */
1209                 lba48 = 1;
1210         }
1211 #endif
1212         debug ("ide_read dev %d start %LX, blocks %lX buffer at %lX\n",
1213                 device, blknr, blkcnt, (ulong)buffer);
1214
1215         ide_led (DEVICE_LED(device), 1);        /* LED on       */
1216
1217         /* Select device
1218          */
1219         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1220         c = ide_wait (device, IDE_TIME_OUT);
1221
1222         if (c & ATA_STAT_BUSY) {
1223                 printf ("IDE read: device %d not ready\n", device);
1224                 goto IDE_READ_E;
1225         }
1226
1227         /* first check if the drive is in Powersaving mode, if yes,
1228          * increase the timeout value */
1229         ide_outb (device, ATA_COMMAND,  ATA_CMD_CHK_PWR);
1230         udelay (50);
1231
1232         c = ide_wait (device, IDE_TIME_OUT);    /* can't take over 500 ms */
1233
1234         if (c & ATA_STAT_BUSY) {
1235                 printf ("IDE read: device %d not ready\n", device);
1236                 goto IDE_READ_E;
1237         }
1238         if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1239                 printf ("No Powersaving mode %X\n", c);
1240         } else {
1241                 c = ide_inb(device,ATA_SECT_CNT);
1242                 debug ("Powersaving %02X\n",c);
1243                 if(c==0)
1244                         pwrsave=1;
1245         }
1246
1247
1248         while (blkcnt-- > 0) {
1249
1250                 c = ide_wait (device, IDE_TIME_OUT);
1251
1252                 if (c & ATA_STAT_BUSY) {
1253                         printf ("IDE read: device %d not ready\n", device);
1254                         break;
1255                 }
1256 #ifdef CONFIG_LBA48
1257                 if (lba48) {
1258                         /* write high bits */
1259                         ide_outb (device, ATA_SECT_CNT, 0);
1260                         ide_outb (device, ATA_LBA_LOW,  (blknr >> 24) & 0xFF);
1261 #ifdef CONFIG_SYS_64BIT_LBA
1262                         ide_outb (device, ATA_LBA_MID,  (blknr >> 32) & 0xFF);
1263                         ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1264 #else
1265                         ide_outb (device, ATA_LBA_MID,  0);
1266                         ide_outb (device, ATA_LBA_HIGH, 0);
1267 #endif
1268                 }
1269 #endif
1270                 ide_outb (device, ATA_SECT_CNT, 1);
1271                 ide_outb (device, ATA_LBA_LOW,  (blknr >>  0) & 0xFF);
1272                 ide_outb (device, ATA_LBA_MID,  (blknr >>  8) & 0xFF);
1273                 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1274
1275 #ifdef CONFIG_LBA48
1276                 if (lba48) {
1277                         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1278                         ide_outb (device, ATA_COMMAND, ATA_CMD_READ_EXT);
1279
1280                 } else
1281 #endif
1282                 {
1283                         ide_outb (device, ATA_DEV_HD,   ATA_LBA         |
1284                                                     ATA_DEVICE(device)  |
1285                                                     ((blknr >> 24) & 0xF) );
1286                         ide_outb (device, ATA_COMMAND,  ATA_CMD_READ);
1287                 }
1288
1289                 udelay (50);
1290
1291                 if(pwrsave) {
1292                         c = ide_wait (device, IDE_SPIN_UP_TIME_OUT);    /* may take up to 4 sec */
1293                         pwrsave=0;
1294                 } else {
1295                         c = ide_wait (device, IDE_TIME_OUT);    /* can't take over 500 ms */
1296                 }
1297
1298                 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1299 #if defined(CONFIG_SYS_64BIT_LBA)
1300                         printf ("Error (no IRQ) dev %d blk %Ld: status 0x%02x\n",
1301                                 device, blknr, c);
1302 #else
1303                         printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1304                                 device, (ulong)blknr, c);
1305 #endif
1306                         break;
1307                 }
1308
1309                 input_data (device, buffer, ATA_SECTORWORDS);
1310                 (void) ide_inb (device, ATA_STATUS);    /* clear IRQ */
1311
1312                 ++n;
1313                 ++blknr;
1314                 buffer += ATA_BLOCKSIZE;
1315         }
1316 IDE_READ_E:
1317         ide_led (DEVICE_LED(device), 0);        /* LED off      */
1318         return (n);
1319 }
1320
1321 /* ------------------------------------------------------------------------- */
1322
1323
1324 ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
1325 {
1326         ulong n = 0;
1327         unsigned char c;
1328 #ifdef CONFIG_LBA48
1329         unsigned char lba48 = 0;
1330
1331         if (blknr & 0x0000fffff0000000ULL) {
1332                 /* more than 28 bits used, use 48bit mode */
1333                 lba48 = 1;
1334         }
1335 #endif
1336
1337         ide_led (DEVICE_LED(device), 1);        /* LED on       */
1338
1339         /* Select device
1340          */
1341         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1342
1343         while (blkcnt-- > 0) {
1344
1345                 c = ide_wait (device, IDE_TIME_OUT);
1346
1347                 if (c & ATA_STAT_BUSY) {
1348                         printf ("IDE read: device %d not ready\n", device);
1349                         goto WR_OUT;
1350                 }
1351 #ifdef CONFIG_LBA48
1352                 if (lba48) {
1353                         /* write high bits */
1354                         ide_outb (device, ATA_SECT_CNT, 0);
1355                         ide_outb (device, ATA_LBA_LOW,  (blknr >> 24) & 0xFF);
1356 #ifdef CONFIG_SYS_64BIT_LBA
1357                         ide_outb (device, ATA_LBA_MID,  (blknr >> 32) & 0xFF);
1358                         ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1359 #else
1360                         ide_outb (device, ATA_LBA_MID,  0);
1361                         ide_outb (device, ATA_LBA_HIGH, 0);
1362 #endif
1363                 }
1364 #endif
1365                 ide_outb (device, ATA_SECT_CNT, 1);
1366                 ide_outb (device, ATA_LBA_LOW,  (blknr >>  0) & 0xFF);
1367                 ide_outb (device, ATA_LBA_MID,  (blknr >>  8) & 0xFF);
1368                 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1369
1370 #ifdef CONFIG_LBA48
1371                 if (lba48) {
1372                         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1373                         ide_outb (device, ATA_COMMAND,  ATA_CMD_WRITE_EXT);
1374
1375                 } else
1376 #endif
1377                 {
1378                         ide_outb (device, ATA_DEV_HD,   ATA_LBA         |
1379                                                     ATA_DEVICE(device)  |
1380                                                     ((blknr >> 24) & 0xF) );
1381                         ide_outb (device, ATA_COMMAND,  ATA_CMD_WRITE);
1382                 }
1383
1384                 udelay (50);
1385
1386                 c = ide_wait (device, IDE_TIME_OUT);    /* can't take over 500 ms */
1387
1388                 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1389 #if defined(CONFIG_SYS_64BIT_LBA)
1390                         printf ("Error (no IRQ) dev %d blk %Ld: status 0x%02x\n",
1391                                 device, blknr, c);
1392 #else
1393                         printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1394                                 device, (ulong)blknr, c);
1395 #endif
1396                         goto WR_OUT;
1397                 }
1398
1399                 output_data (device, buffer, ATA_SECTORWORDS);
1400                 c = ide_inb (device, ATA_STATUS);       /* clear IRQ */
1401                 ++n;
1402                 ++blknr;
1403                 buffer += ATA_BLOCKSIZE;
1404         }
1405 WR_OUT:
1406         ide_led (DEVICE_LED(device), 0);        /* LED off      */
1407         return (n);
1408 }
1409
1410 /* ------------------------------------------------------------------------- */
1411
1412 /*
1413  * copy src to dest, skipping leading and trailing blanks and null
1414  * terminate the string
1415  * "len" is the size of available memory including the terminating '\0'
1416  */
1417 static void ident_cpy (unsigned char *dst, unsigned char *src, unsigned int len)
1418 {
1419         unsigned char *end, *last;
1420
1421         last = dst;
1422         end  = src + len - 1;
1423
1424         /* reserve space for '\0' */
1425         if (len < 2)
1426                 goto OUT;
1427
1428         /* skip leading white space */
1429         while ((*src) && (src<end) && (*src==' '))
1430                 ++src;
1431
1432         /* copy string, omitting trailing white space */
1433         while ((*src) && (src<end)) {
1434                 *dst++ = *src;
1435                 if (*src++ != ' ')
1436                         last = dst;
1437         }
1438 OUT:
1439         *last = '\0';
1440 }
1441
1442 /* ------------------------------------------------------------------------- */
1443
1444 /*
1445  * Wait until Busy bit is off, or timeout (in ms)
1446  * Return last status
1447  */
1448 static uchar ide_wait (int dev, ulong t)
1449 {
1450         ulong delay = 10 * t;           /* poll every 100 us */
1451         uchar c;
1452
1453         while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
1454                 udelay (100);
1455                 if (delay-- == 0) {
1456                         break;
1457                 }
1458         }
1459         return (c);
1460 }
1461
1462 /* ------------------------------------------------------------------------- */
1463
1464 #ifdef CONFIG_IDE_RESET
1465 extern void ide_set_reset(int idereset);
1466
1467 static void ide_reset (void)
1468 {
1469 #if defined(CONFIG_SYS_PB_12V_ENABLE) || defined(CONFIG_SYS_PB_IDE_MOTOR)
1470         volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
1471 #endif
1472         int i;
1473
1474         curr_device = -1;
1475         for (i=0; i<CONFIG_SYS_IDE_MAXBUS; ++i)
1476                 ide_bus_ok[i] = 0;
1477         for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i)
1478                 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1479
1480         ide_set_reset (1); /* assert reset */
1481
1482         /* the reset signal shall be asserted for et least 25 us */
1483         udelay(25);
1484
1485         WATCHDOG_RESET();
1486
1487 #ifdef CONFIG_SYS_PB_12V_ENABLE
1488         immr->im_cpm.cp_pbdat &= ~(CONFIG_SYS_PB_12V_ENABLE);   /* 12V Enable output OFF */
1489         immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_12V_ENABLE);
1490         immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_12V_ENABLE);
1491         immr->im_cpm.cp_pbdir |=   CONFIG_SYS_PB_12V_ENABLE;
1492
1493         /* wait 500 ms for the voltage to stabilize
1494          */
1495         for (i=0; i<500; ++i) {
1496                 udelay (1000);
1497         }
1498
1499         immr->im_cpm.cp_pbdat |=   CONFIG_SYS_PB_12V_ENABLE;    /* 12V Enable output ON */
1500 #endif  /* CONFIG_SYS_PB_12V_ENABLE */
1501
1502 #ifdef CONFIG_SYS_PB_IDE_MOTOR
1503         /* configure IDE Motor voltage monitor pin as input */
1504         immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1505         immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1506         immr->im_cpm.cp_pbdir &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1507
1508         /* wait up to 1 s for the motor voltage to stabilize
1509          */
1510         for (i=0; i<1000; ++i) {
1511                 if ((immr->im_cpm.cp_pbdat & CONFIG_SYS_PB_IDE_MOTOR) != 0) {
1512                         break;
1513                 }
1514                 udelay (1000);
1515         }
1516
1517         if (i == 1000) {        /* Timeout */
1518                 printf ("\nWarning: 5V for IDE Motor missing\n");
1519 # ifdef CONFIG_STATUS_LED
1520 #  ifdef STATUS_LED_YELLOW
1521                 status_led_set  (STATUS_LED_YELLOW, STATUS_LED_ON );
1522 #  endif
1523 #  ifdef STATUS_LED_GREEN
1524                 status_led_set  (STATUS_LED_GREEN,  STATUS_LED_OFF);
1525 #  endif
1526 # endif /* CONFIG_STATUS_LED */
1527         }
1528 #endif  /* CONFIG_SYS_PB_IDE_MOTOR */
1529
1530         WATCHDOG_RESET();
1531
1532         /* de-assert RESET signal */
1533         ide_set_reset(0);
1534
1535         /* wait 250 ms */
1536         for (i=0; i<250; ++i) {
1537                 udelay (1000);
1538         }
1539 }
1540
1541 #endif  /* CONFIG_IDE_RESET */
1542
1543 /* ------------------------------------------------------------------------- */
1544
1545 #if defined(CONFIG_IDE_LED)     && \
1546    !defined(CONFIG_CPC45)       && \
1547    !defined(CONFIG_KUP4K)       && \
1548    !defined(CONFIG_KUP4X)
1549
1550 static  uchar   led_buffer = 0;         /* Buffer for current LED status        */
1551
1552 static void ide_led (uchar led, uchar status)
1553 {
1554         uchar *led_port = LED_PORT;
1555
1556         if (status)     {               /* switch LED on        */
1557                 led_buffer |=  led;
1558         } else {                        /* switch LED off       */
1559                 led_buffer &= ~led;
1560         }
1561
1562         *led_port = led_buffer;
1563 }
1564
1565 #endif  /* CONFIG_IDE_LED */
1566
1567 #if defined(CONFIG_OF_IDE_FIXUP)
1568 int ide_device_present(int dev)
1569 {
1570         if (dev >= CONFIG_SYS_IDE_MAXBUS)
1571                 return 0;
1572         return (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN ? 0 : 1);
1573 }
1574 #endif
1575 /* ------------------------------------------------------------------------- */
1576
1577 #ifdef CONFIG_ATAPI
1578 /****************************************************************************
1579  * ATAPI Support
1580  */
1581
1582 #if defined(CONFIG_IDE_SWAP_IO)
1583 /* since ATAPI may use commands with not 4 bytes alligned length
1584  * we have our own transfer functions, 2 bytes alligned */
1585 static void
1586 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1587 {
1588 #if defined(CONFIG_CPC45)
1589         uchar   *dbuf;
1590         volatile uchar  *pbuf_even;
1591         volatile uchar  *pbuf_odd;
1592
1593         pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1594         pbuf_odd  = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1595         while (shorts--) {
1596                 EIEIO;
1597                 *pbuf_even = *dbuf++;
1598                 EIEIO;
1599                 *pbuf_odd = *dbuf++;
1600         }
1601 #else
1602         ushort  *dbuf;
1603         volatile ushort *pbuf;
1604
1605         pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1606         dbuf = (ushort *)sect_buf;
1607
1608         debug ("in output data shorts base for read is %lx\n", (unsigned long) pbuf);
1609
1610         while (shorts--) {
1611                 EIEIO;
1612                 *pbuf = *dbuf++;
1613         }
1614 #endif
1615 }
1616
1617 static void
1618 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1619 {
1620 #if defined(CONFIG_CPC45)
1621         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                 EIEIO;
1629                 *dbuf++ = *pbuf_even;
1630                 EIEIO;
1631                 *dbuf++ = *pbuf_odd;
1632         }
1633 #else
1634         ushort  *dbuf;
1635         volatile ushort *pbuf;
1636
1637         pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1638         dbuf = (ushort *)sect_buf;
1639
1640         debug("in input data shorts base for read is %lx\n", (unsigned long) pbuf);
1641
1642         while (shorts--) {
1643                 EIEIO;
1644                 *dbuf++ = *pbuf;
1645         }
1646 #endif
1647 }
1648
1649 #else   /* ! CONFIG_IDE_SWAP_IO */
1650 static void
1651 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1652 {
1653         outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
1654 }
1655
1656 static void
1657 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1658 {
1659         insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
1660 }
1661
1662 #endif  /* CONFIG_IDE_SWAP_IO */
1663
1664 /*
1665  * Wait until (Status & mask) == res, or timeout (in ms)
1666  * Return last status
1667  * This is used since some ATAPI CD ROMs clears their Busy Bit first
1668  * and then they set their DRQ Bit
1669  */
1670 static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1671 {
1672         ulong delay = 10 * t;           /* poll every 100 us */
1673         uchar c;
1674
1675         c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1676         while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
1677                 /* break if error occurs (doesn't make sense to wait more) */
1678                 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1679                         break;
1680                 udelay (100);
1681                 if (delay-- == 0) {
1682                         break;
1683                 }
1684         }
1685         return (c);
1686 }
1687
1688 /*
1689  * issue an atapi command
1690  */
1691 unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1692 {
1693         unsigned char c,err,mask,res;
1694         int n;
1695         ide_led (DEVICE_LED(device), 1);        /* LED on       */
1696
1697         /* Select device
1698          */
1699         mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1700         res = 0;
1701         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1702         c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1703         if ((c & mask) != res) {
1704                 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1705                 err=0xFF;
1706                 goto AI_OUT;
1707         }
1708         /* write taskfile */
1709         ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
1710         ide_outb (device, ATA_SECT_CNT, 0);
1711         ide_outb (device, ATA_SECT_NUM, 0);
1712         ide_outb (device, ATA_CYL_LOW,  (unsigned char)(buflen & 0xFF));
1713         ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
1714         ide_outb (device, ATA_DEV_HD,   ATA_LBA | ATA_DEVICE(device));
1715
1716         ide_outb (device, ATA_COMMAND,  ATAPI_CMD_PACKET);
1717         udelay (50);
1718
1719         mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1720         res = ATA_STAT_DRQ;
1721         c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1722
1723         if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1724                 printf ("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
1725                 err=0xFF;
1726                 goto AI_OUT;
1727         }
1728
1729         output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
1730         /* ATAPI Command written wait for completition */
1731         udelay (5000); /* device must set bsy */
1732
1733         mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1734         /* if no data wait for DRQ = 0 BSY = 0
1735          * if data wait for DRQ = 1 BSY = 0 */
1736         res=0;
1737         if(buflen)
1738                 res = ATA_STAT_DRQ;
1739         c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1740         if ((c & mask) != res ) {
1741                 if (c & ATA_STAT_ERR) {
1742                         err=(ide_inb(device,ATA_ERROR_REG))>>4;
1743                         debug ("atapi_issue 1 returned sense key %X status %02X\n",err,c);
1744                 } else {
1745                         printf ("ATAPI_ISSUE: (no DRQ) after sending ccb (%x)  status 0x%02x\n", ccb[0],c);
1746                         err=0xFF;
1747                 }
1748                 goto AI_OUT;
1749         }
1750         n=ide_inb(device, ATA_CYL_HIGH);
1751         n<<=8;
1752         n+=ide_inb(device, ATA_CYL_LOW);
1753         if(n>buflen) {
1754                 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1755                 err=0xff;
1756                 goto AI_OUT;
1757         }
1758         if((n==0)&&(buflen<0)) {
1759                 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1760                 err=0xff;
1761                 goto AI_OUT;
1762         }
1763         if(n!=buflen) {
1764                 debug ("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
1765         }
1766         if(n!=0) { /* data transfer */
1767                 debug ("ATAPI_ISSUE: %d Bytes to transfer\n",n);
1768                  /* we transfer shorts */
1769                 n>>=1;
1770                 /* ok now decide if it is an in or output */
1771                 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
1772                         debug ("Write to device\n");
1773                         output_data_shorts(device,(unsigned short *)buffer,n);
1774                 } else {
1775                         debug ("Read from device @ %p shorts %d\n",buffer,n);
1776                         input_data_shorts(device,(unsigned short *)buffer,n);
1777                 }
1778         }
1779         udelay(5000); /* seems that some CD ROMs need this... */
1780         mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1781         res=0;
1782         c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1783         if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1784                 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
1785                 debug ("atapi_issue 2 returned sense key %X status %X\n",err,c);
1786         } else {
1787                 err = 0;
1788         }
1789 AI_OUT:
1790         ide_led (DEVICE_LED(device), 0);        /* LED off      */
1791         return (err);
1792 }
1793
1794 /*
1795  * sending the command to atapi_issue. If an status other than good
1796  * returns, an request_sense will be issued
1797  */
1798
1799 #define ATAPI_DRIVE_NOT_READY   100
1800 #define ATAPI_UNIT_ATTN         10
1801
1802 unsigned char atapi_issue_autoreq (int device,
1803                                    unsigned char* ccb,
1804                                    int ccblen,
1805                                    unsigned char *buffer,
1806                                    int buflen)
1807 {
1808         unsigned char sense_data[18],sense_ccb[12];
1809         unsigned char res,key,asc,ascq;
1810         int notready,unitattn;
1811
1812         unitattn=ATAPI_UNIT_ATTN;
1813         notready=ATAPI_DRIVE_NOT_READY;
1814
1815 retry:
1816         res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1817         if (res==0)
1818                 return (0); /* Ok */
1819
1820         if (res==0xFF)
1821                 return (0xFF); /* error */
1822
1823         debug ("(auto_req)atapi_issue returned sense key %X\n",res);
1824
1825         memset(sense_ccb,0,sizeof(sense_ccb));
1826         memset(sense_data,0,sizeof(sense_data));
1827         sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
1828         sense_ccb[4]=18; /* allocation Length */
1829
1830         res=atapi_issue(device,sense_ccb,12,sense_data,18);
1831         key=(sense_data[2]&0xF);
1832         asc=(sense_data[12]);
1833         ascq=(sense_data[13]);
1834
1835         debug ("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1836         debug (" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1837                 sense_data[0],
1838                 key,
1839                 asc,
1840                 ascq);
1841
1842         if((key==0))
1843                 return 0; /* ok device ready */
1844
1845         if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1846                 if(unitattn-->0) {
1847                         udelay(200*1000);
1848                         goto retry;
1849                 }
1850                 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1851                 goto error;
1852         }
1853         if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1854                 if (notready-->0) {
1855                         udelay(200*1000);
1856                         goto retry;
1857                 }
1858                 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1859                 goto error;
1860         }
1861         if(asc==0x3a) {
1862                 debug ("Media not present\n");
1863                 goto error;
1864         }
1865
1866         printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1867 error:
1868         debug  ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1869         return (0xFF);
1870 }
1871
1872
1873 static void     atapi_inquiry(block_dev_desc_t * dev_desc)
1874 {
1875         unsigned char ccb[12]; /* Command descriptor block */
1876         unsigned char iobuf[64]; /* temp buf */
1877         unsigned char c;
1878         int device;
1879
1880         device=dev_desc->dev;
1881         dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
1882         dev_desc->block_read=atapi_read;
1883
1884         memset(ccb,0,sizeof(ccb));
1885         memset(iobuf,0,sizeof(iobuf));
1886
1887         ccb[0]=ATAPI_CMD_INQUIRY;
1888         ccb[4]=40; /* allocation Legnth */
1889         c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
1890
1891         debug ("ATAPI_CMD_INQUIRY returned %x\n",c);
1892         if (c!=0)
1893                 return;
1894
1895         /* copy device ident strings */
1896         ident_cpy((unsigned char*)dev_desc->vendor,&iobuf[8],8);
1897         ident_cpy((unsigned char*)dev_desc->product,&iobuf[16],16);
1898         ident_cpy((unsigned char*)dev_desc->revision,&iobuf[32],5);
1899
1900         dev_desc->lun=0;
1901         dev_desc->lba=0;
1902         dev_desc->blksz=0;
1903         dev_desc->type=iobuf[0] & 0x1f;
1904
1905         if ((iobuf[1]&0x80)==0x80)
1906                 dev_desc->removable = 1;
1907         else
1908                 dev_desc->removable = 0;
1909
1910         memset(ccb,0,sizeof(ccb));
1911         memset(iobuf,0,sizeof(iobuf));
1912         ccb[0]=ATAPI_CMD_START_STOP;
1913         ccb[4]=0x03; /* start */
1914
1915         c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1916
1917         debug ("ATAPI_CMD_START_STOP returned %x\n",c);
1918         if (c!=0)
1919                 return;
1920
1921         memset(ccb,0,sizeof(ccb));
1922         memset(iobuf,0,sizeof(iobuf));
1923         c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1924
1925         debug ("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
1926         if (c!=0)
1927                 return;
1928
1929         memset(ccb,0,sizeof(ccb));
1930         memset(iobuf,0,sizeof(iobuf));
1931         ccb[0]=ATAPI_CMD_READ_CAP;
1932         c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
1933         debug ("ATAPI_CMD_READ_CAP returned %x\n",c);
1934         if (c!=0)
1935                 return;
1936
1937         debug ("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1938                 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
1939                 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
1940
1941         dev_desc->lba  =((unsigned long)iobuf[0]<<24) +
1942                         ((unsigned long)iobuf[1]<<16) +
1943                         ((unsigned long)iobuf[2]<< 8) +
1944                         ((unsigned long)iobuf[3]);
1945         dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
1946                         ((unsigned long)iobuf[5]<<16) +
1947                         ((unsigned long)iobuf[6]<< 8) +
1948                         ((unsigned long)iobuf[7]);
1949 #ifdef CONFIG_LBA48
1950         dev_desc->lba48 = 0; /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
1951 #endif
1952         return;
1953 }
1954
1955
1956 /*
1957  * atapi_read:
1958  * we transfer only one block per command, since the multiple DRQ per
1959  * command is not yet implemented
1960  */
1961 #define ATAPI_READ_MAX_BYTES    2048    /* we read max 2kbytes */
1962 #define ATAPI_READ_BLOCK_SIZE   2048    /* assuming CD part */
1963 #define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
1964
1965 ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
1966 {
1967         ulong n = 0;
1968         unsigned char ccb[12]; /* Command descriptor block */
1969         ulong cnt;
1970
1971         debug  ("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
1972                 device, blknr, blkcnt, (ulong)buffer);
1973
1974         do {
1975                 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
1976                         cnt=ATAPI_READ_MAX_BLOCK;
1977                 } else {
1978                         cnt=blkcnt;
1979                 }
1980                 ccb[0]=ATAPI_CMD_READ_12;
1981                 ccb[1]=0; /* reserved */
1982                 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
1983                 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /*  */
1984                 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
1985                 ccb[5]=(unsigned char)  blknr      & 0xFF; /* LSB Block */
1986                 ccb[6]=(unsigned char) (cnt  >>24) & 0xFF; /* MSB Block count */
1987                 ccb[7]=(unsigned char) (cnt  >>16) & 0xFF;
1988                 ccb[8]=(unsigned char) (cnt  >> 8) & 0xFF;
1989                 ccb[9]=(unsigned char)  cnt        & 0xFF; /* LSB Block */
1990                 ccb[10]=0; /* reserved */
1991                 ccb[11]=0; /* reserved */
1992
1993                 if (atapi_issue_autoreq(device,ccb,12,
1994                                         (unsigned char *)buffer,
1995                                         cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
1996                         return (n);
1997                 }
1998                 n+=cnt;
1999                 blkcnt-=cnt;
2000                 blknr+=cnt;
2001                 buffer+=(cnt*ATAPI_READ_BLOCK_SIZE);
2002         } while (blkcnt > 0);
2003         return (n);
2004 }
2005
2006 /* ------------------------------------------------------------------------- */
2007
2008 #endif /* CONFIG_ATAPI */
2009
2010 U_BOOT_CMD(
2011         ide,  5,  1,  do_ide,
2012         "IDE sub-system",
2013         "reset - reset IDE controller\n"
2014         "ide info  - show available IDE devices\n"
2015         "ide device [dev] - show or set current device\n"
2016         "ide part [dev] - print partition table of one or all IDE devices\n"
2017         "ide read  addr blk# cnt\n"
2018         "ide write addr blk# cnt - read/write `cnt'"
2019         " blocks starting at block `blk#'\n"
2020         "    to/from memory address `addr'"
2021 );
2022
2023 U_BOOT_CMD(
2024         diskboot,       3,      1,      do_diskboot,
2025         "boot from IDE device",
2026         "loadAddr dev:part"
2027 );