]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_ide.c
* Cleanup, minor fixes
[karo-tx-uboot.git] / common / cmd_ide.c
1 /*
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
40 #ifdef CONFIG_MPC5xxx
41 #include <mpc5xxx.h>
42 #endif
43 #include <ide.h>
44 #include <ata.h>
45 #ifdef CONFIG_STATUS_LED
46 # include <status_led.h>
47 #endif
48 #ifndef __PPC__
49 #include <asm/io.h>
50 #ifdef __MIPS__
51 /* Macros depend on this variable */
52 static unsigned long mips_io_port_base = 0;
53 #endif
54 #endif
55
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
66
67 #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
75 #ifdef CONFIG_IDE_8xx_DIRECT
76 /* 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
91 const 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
101 static 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
106 static 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
112 #endif /* CONFIG_IDE_8xx_DIRECT */
113
114 /* ------------------------------------------------------------------------- */
115
116 /* Current I/O Device   */
117 static int curr_device = -1;
118
119 /* Current offset for IDE0 / IDE1 bus access    */
120 ulong 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
129
130 #define ATA_CURR_BASE(dev)      (CFG_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)])
131
132 #ifndef CONFIG_AMIGAONEG3SE
133 static int          ide_bus_ok[CFG_IDE_MAXBUS];
134 #else
135 static int          ide_bus_ok[CFG_IDE_MAXBUS] = {0,};
136 #endif
137
138 static  block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE];
139 /* ------------------------------------------------------------------------- */
140
141 #ifdef CONFIG_IDE_LED
142 #if !defined(CONFIG_KUP4K) &&  !defined(CONFIG_KUP4X) &&!defined(CONFIG_BMS2003)
143 static void  ide_led   (uchar led, uchar status);
144 #else
145 extern void  ide_led   (uchar led, uchar status);
146 #endif
147 #else
148 #ifndef CONFIG_AMIGAONEG3SE
149 #define ide_led(a,b)    /* dummy */
150 #else
151 extern 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
157 #endif
158
159 #ifdef CONFIG_IDE_RESET
160 static void  ide_reset (void);
161 #else
162 #define ide_reset()     /* dummy */
163 #endif
164
165 static void  ide_ident (block_dev_desc_t *dev_desc);
166 static 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
174 static void __inline__ ide_outb(int dev, int port, unsigned char val);
175 static unsigned char __inline__ ide_inb(int dev, int port);
176 static void input_data(int dev, ulong *sect_buf, int words);
177 static void output_data(int dev, ulong *sect_buf, int words);
178 static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
179
180
181 #ifdef CONFIG_ATAPI
182 static void     atapi_inquiry(block_dev_desc_t *dev_desc);
183 ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer);
184 #endif
185
186
187 #ifdef CONFIG_IDE_8xx_DIRECT
188 static void set_pcmcia_timing (int pmode);
189 #endif
190
191 /* ------------------------------------------------------------------------- */
192
193 int 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);
306                 ulong cnt  = simple_strtoul(argv[4], NULL, 16);
307                 ulong n;
308 #ifdef CFG_64BIT_STRTOUL
309                 lbaint_t blk  = simple_strtoull(argv[3], NULL, 16);
310
311                 printf ("\nIDE read: device %d block # %qd, count %ld ... ",
312                         curr_device, blk, cnt);
313 #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
319
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);
335                 ulong cnt  = simple_strtoul(argv[4], NULL, 16);
336                 ulong n;
337 #ifdef CFG_64BIT_STRTOUL
338                 lbaint_t blk  = simple_strtoull(argv[3], NULL, 16);
339
340                 printf ("\nIDE write: device %d block # %qd, count %ld ... ",
341                         curr_device, blk, cnt);
342 #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
348
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
367 int 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         }
423         if ((strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
424             (strncmp(info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
425                 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
491 void ide_init (void)
492 {
493
494 #ifdef CONFIG_IDE_8xx_DIRECT
495         DECLARE_GLOBAL_DATA_PTR;
496         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;
501 #ifdef CONFIG_AMIGAONEG3SE
502         unsigned int max_bus_scan;
503         unsigned int ata_reset_time;
504         char *s;
505 #endif
506 #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
512         extern int ide_preinit (void);
513         WATCHDOG_RESET();
514
515         if (ide_preinit ()) {
516                 puts ("ide_preinit failed\n");
517                 return;
518         }
519 #endif  /* CONFIG_IDE_PREINIT */
520
521 #ifdef CONFIG_IDE_8xx_PCCARD
522         extern int pcmcia_on (void);
523         extern int ide_devices_found; /* Initialized in check_ide_device() */
524
525         WATCHDOG_RESET();
526
527         ide_devices_found = 0;
528         /* initialize the PCMCIA IDE adapter card */
529         pcmcia_on();
530         if (!ide_devices_found)
531                 return;
532         udelay (1000000);       /* 1 s */
533 #endif  /* CONFIG_IDE_8xx_PCCARD */
534
535         WATCHDOG_RESET();
536
537 #ifdef CONFIG_IDE_8xx_DIRECT
538         /* 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         }
554 #endif /* CONFIG_IDE_8xx_DIRECT */
555
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;
565
566         /* start in PIO mode 0 - most relaxed timings */
567         pio_mode = 0;
568         set_pcmcia_timing (pio_mode);
569 #endif /* CONFIG_IDE_8xx_DIRECT */
570
571         /*
572          * Wait for IDE to get ready.
573          * According to spec, this can take up to 31 seconds!
574          */
575 #ifndef CONFIG_AMIGAONEG3SE
576         for (bus=0; bus<CFG_IDE_MAXBUS; ++bus) {
577                 int dev = bus * (CFG_IDE_MAXDEVICE / CFG_IDE_MAXBUS);
578 #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
588
589 #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
596                 printf ("Bus %d: ", bus);
597
598                 ide_bus_ok[bus] = 0;
599
600                 /* Select device
601                  */
602                 udelay (100000);                /* 100 ms */
603                 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
604                 udelay (100000);                /* 100 ms */
605 #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
610                 i = 0;
611                 do {
612                         udelay (10000);         /* 10 ms */
613
614                         c = ide_inb (dev, ATA_STATUS);
615                         i++;
616 #ifdef CONFIG_AMIGAONEG3SE
617                         if (i > (ata_reset_time * 100)) {
618 #else
619                         if (i > (ATA_RESET_TIME * 100)) {
620 #endif
621                                 puts ("** Timeout **\n");
622                                 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
623 #ifdef CONFIG_AMIGAONEG3SE
624                                 /* If this is the second bus, the first one was OK */
625                                 if (bus != 0) {
626                                     ide_bus_ok[bus] = 0;
627                                     goto skip_bus;
628                                 }
629 #endif
630                                 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         }
651
652 #ifdef CONFIG_AMIGAONEG3SE
653       skip_bus:
654 #endif
655         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
664                 ide_dev_desc[i].type=DEV_TYPE_UNKNOWN;
665                 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
689 block_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
697 static void
698 set_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
785 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
786 static void __inline__
787 ide_outb(int dev, int port, unsigned char val)
788 {
789         PRINTF ("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
790                 dev, port, val, (ATA_CURR_BASE(dev)+port));
791
792         /* Ensure I/O operations complete */
793 #ifdef __PPC__
794         __asm__ volatile("eieio");
795 #endif
796         *((uchar *)(ATA_CURR_BASE(dev)+port)) = val;
797 }
798 #else   /* ! __PPC__ */
799 static void __inline__
800 ide_outb(int dev, int port, unsigned char val)
801 {
802         outb(val, ATA_CURR_BASE(dev)+port);
803 }
804 #endif  /* __PPC__ */
805
806
807 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
808 static unsigned char __inline__
809 ide_inb(int dev, int port)
810 {
811         uchar val;
812         /* Ensure I/O operations complete */
813 #ifdef __PPC__
814         __asm__ volatile("eieio");
815 #endif
816         val = *((uchar *)(ATA_CURR_BASE(dev)+port));
817         PRINTF ("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
818                 dev, port, (ATA_CURR_BASE(dev)+port), val);
819         return (val);
820 }
821 #else   /* ! __PPC__ */
822 static unsigned char __inline__
823 ide_inb(int dev, int port)
824 {
825   return inb(ATA_CURR_BASE(dev)+port);
826 }
827 #endif  /* __PPC__ */
828
829 #ifdef __PPC__
830 # ifdef CONFIG_AMIGAONEG3SE
831 static void
832 output_data_short(int dev, ulong *sect_buf, int words)
833 {
834         ushort  *dbuf;
835         volatile ushort *pbuf;
836
837         pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
838         dbuf = (ushort *)sect_buf;
839         while (words--) {
840                 __asm__ volatile ("eieio");
841                 *pbuf = *dbuf++;
842                 __asm__ volatile ("eieio");
843         }
844
845         if (words&1)
846             *pbuf = 0;
847 }
848 # endif /* CONFIG_AMIGAONEG3SE */
849 #endif /* __PPC_ */
850
851 /* We only need to swap data if we are running on a big endian cpu. */
852 /* But Au1x00 cpu:s already swaps data in big endian mode! */
853 #if defined(__LITTLE_ENDIAN) || defined(CONFIG_AU1X00)
854 #define input_swap_data(x,y,z) input_data(x,y,z)
855 #else
856 static void
857 input_swap_data(int dev, ulong *sect_buf, int words)
858 {
859 #ifndef CONFIG_HMI10
860         volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
861         ushort  *dbuf = (ushort *)sect_buf;
862
863         PRINTF("in input swap data base for read is %lx\n", (unsigned long) pbuf);
864
865         while (words--) {
866                 *dbuf++ = ld_le16(pbuf);
867                 *dbuf++ = ld_le16(pbuf);
868         }
869 #else   /* CONFIG_HMI10 */
870         uchar i;
871         volatile uchar *pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
872         volatile uchar *pbuf_odd  = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
873         ushort  *dbuf = (ushort *)sect_buf;
874
875         while (words--) {
876                 for (i=0; i<2; i++) {
877                         *(((uchar *)(dbuf)) + 1) = *pbuf_even;
878                         *(uchar *)dbuf = *pbuf_odd;
879                         dbuf+=1;
880                 }
881         }
882 #endif  /* CONFIG_HMI10 */
883 }
884 #endif  /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
885
886
887 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
888 static void
889 output_data(int dev, ulong *sect_buf, int words)
890 {
891 #ifndef CONFIG_HMI10
892         ushort  *dbuf;
893         volatile ushort *pbuf;
894
895         pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
896         dbuf = (ushort *)sect_buf;
897         while (words--) {
898 #ifdef __PPC__
899                 __asm__ volatile ("eieio");
900 #endif
901                 *pbuf = *dbuf++;
902 #ifdef __PPC__
903                 __asm__ volatile ("eieio");
904 #endif
905                 *pbuf = *dbuf++;
906         }
907 #else   /* CONFIG_HMI10 */
908         uchar   *dbuf;
909         volatile uchar  *pbuf_even;
910         volatile uchar  *pbuf_odd;
911
912         pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
913         pbuf_odd  = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
914         dbuf = (uchar *)sect_buf;
915         while (words--) {
916                 __asm__ volatile ("eieio");
917                 *pbuf_even = *dbuf++;
918                 __asm__ volatile ("eieio");
919                 *pbuf_odd = *dbuf++;
920                 __asm__ volatile ("eieio");
921                 *pbuf_even = *dbuf++;
922                 __asm__ volatile ("eieio");
923                 *pbuf_odd = *dbuf++;
924         }
925 #endif  /* CONFIG_HMI10 */
926 }
927 #else   /* ! __PPC__ */
928 static void
929 output_data(int dev, ulong *sect_buf, int words)
930 {
931         outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1);
932 }
933 #endif  /* __PPC__ */
934
935 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
936 static void
937 input_data(int dev, ulong *sect_buf, int words)
938 {
939 #ifndef CONFIG_HMI10
940         ushort  *dbuf;
941         volatile ushort *pbuf;
942
943         pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
944         dbuf = (ushort *)sect_buf;
945
946         PRINTF("in input data base for read is %lx\n", (unsigned long) pbuf);
947
948         while (words--) {
949 #ifdef __PPC__
950                 __asm__ volatile ("eieio");
951 #endif
952                 *dbuf++ = *pbuf;
953 #ifdef __PPC__
954                 __asm__ volatile ("eieio");
955 #endif
956                 *dbuf++ = *pbuf;
957         }
958 #else   /* CONFIG_HMI10 */
959         uchar   *dbuf;
960         volatile uchar  *pbuf_even;
961         volatile uchar  *pbuf_odd;
962
963         pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
964         pbuf_odd  = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
965         dbuf = (uchar *)sect_buf;
966         while (words--) {
967                 __asm__ volatile ("eieio");
968                 *dbuf++ = *pbuf_even;
969                 __asm__ volatile ("eieio");
970                 *dbuf++ = *pbuf_odd;
971                 __asm__ volatile ("eieio");
972                 *dbuf++ = *pbuf_even;
973                 __asm__ volatile ("eieio");
974                 *dbuf++ = *pbuf_odd;
975         }
976 #endif  /* CONFIG_HMI10 */
977 }
978 #else   /* ! __PPC__ */
979 static void
980 input_data(int dev, ulong *sect_buf, int words)
981 {
982         insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1);
983 }
984
985 #endif  /* __PPC__ */
986
987 #ifdef CONFIG_AMIGAONEG3SE
988 static void
989 input_data_short(int dev, ulong *sect_buf, int words)
990 {
991         ushort  *dbuf;
992         volatile ushort *pbuf;
993
994         pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
995         dbuf = (ushort *)sect_buf;
996         while (words--) {
997                 __asm__ volatile ("eieio");
998                 *dbuf++ = *pbuf;
999                 __asm__ volatile ("eieio");
1000         }
1001
1002         if (words&1) {
1003             ushort dummy;
1004             dummy = *pbuf;
1005         }
1006 }
1007 #endif
1008
1009 /* -------------------------------------------------------------------------
1010  */
1011 static void ide_ident (block_dev_desc_t *dev_desc)
1012 {
1013         ulong iobuf[ATA_SECTORWORDS];
1014         unsigned char c;
1015         hd_driveid_t *iop = (hd_driveid_t *)iobuf;
1016
1017 #ifdef CONFIG_AMIGAONEG3SE
1018         int max_bus_scan;
1019         int retries = 0;
1020         char *s;
1021         int do_retry = 0;
1022 #endif
1023
1024 #if 0
1025         int mode, cycle_time;
1026 #endif
1027         int device;
1028         device=dev_desc->dev;
1029         printf ("  Device %d: ", device);
1030
1031 #ifdef CONFIG_AMIGAONEG3SE
1032         s = getenv("ide_maxbus");
1033         if (s) {
1034                 max_bus_scan = simple_strtol(s, NULL, 10);
1035         } else {
1036                 max_bus_scan = CFG_IDE_MAXBUS;
1037         }
1038         if (device >= max_bus_scan*2) {
1039                 dev_desc->type=DEV_TYPE_UNKNOWN;
1040                 return;
1041         }
1042 #endif
1043
1044         ide_led (DEVICE_LED(device), 1);        /* LED on       */
1045         /* Select device
1046          */
1047         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1048         dev_desc->if_type=IF_TYPE_IDE;
1049 #ifdef CONFIG_ATAPI
1050
1051 #ifdef CONFIG_AMIGAONEG3SE
1052     do_retry = 0;
1053     retries = 0;
1054
1055     /* Warning: This will be tricky to read */
1056     while (retries <= 1) {
1057 #endif  /* CONFIG_AMIGAONEG3SE */
1058
1059         /* check signature */
1060         if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
1061                  (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
1062                  (ide_inb(device,ATA_CYL_LOW)  == 0x14) &&
1063                  (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
1064                 /* ATAPI Signature found */
1065                 dev_desc->if_type=IF_TYPE_ATAPI;
1066                 /* Start Ident Command
1067                  */
1068                 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
1069                 /*
1070                  * Wait for completion - ATAPI devices need more time
1071                  * to become ready
1072                  */
1073                 c = ide_wait (device, ATAPI_TIME_OUT);
1074         } else
1075 #endif
1076         {
1077                 /* Start Ident Command
1078                  */
1079                 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
1080
1081                 /* Wait for completion
1082                  */
1083                 c = ide_wait (device, IDE_TIME_OUT);
1084         }
1085         ide_led (DEVICE_LED(device), 0);        /* LED off      */
1086
1087         if (((c & ATA_STAT_DRQ) == 0) ||
1088             ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
1089 #ifdef CONFIG_AMIGAONEG3SE
1090                 if (retries == 0) {
1091                         do_retry = 1;
1092                 } else {
1093                         return;
1094                 }
1095 #else
1096                 return;
1097 #endif  /* CONFIG_AMIGAONEG3SE */
1098         }
1099
1100 #ifdef CONFIG_AMIGAONEG3SE
1101         s = getenv("ide_doreset");
1102         if (s && strcmp(s, "on") == 0 && 1 == do_retry) {
1103                 /* Need to soft reset the device in case it's an ATAPI...  */
1104                 PRINTF("Retrying...\n");
1105                 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1106                 udelay(100000);
1107                 ide_outb (device, ATA_COMMAND, 0x08);
1108                 udelay (100000);        /* 100 ms */
1109                 retries++;
1110         } else {
1111                 retries = 100;
1112         }
1113     }   /* see above - ugly to read */
1114 #endif  /* CONFIG_AMIGAONEG3SE */
1115
1116         input_swap_data (device, iobuf, ATA_SECTORWORDS);
1117
1118         ident_cpy (dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1119         ident_cpy (dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1120         ident_cpy (dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
1121 #ifdef __LITTLE_ENDIAN
1122         /*
1123          * firmware revision and model number have Big Endian Byte
1124          * order in Word. Convert both to little endian.
1125          *
1126          * See CF+ and CompactFlash Specification Revision 2.0:
1127          * 6.2.1.6: Identfy Drive, Table 39 for more details
1128          */
1129
1130         strswab (dev_desc->revision);
1131         strswab (dev_desc->vendor);
1132 #endif /* __LITTLE_ENDIAN */
1133
1134         if ((iop->config & 0x0080)==0x0080)
1135                 dev_desc->removable = 1;
1136         else
1137                 dev_desc->removable = 0;
1138
1139 #if 0
1140         /*
1141          * Drive PIO mode autoselection
1142          */
1143         mode = iop->tPIO;
1144
1145         printf ("tPIO = 0x%02x = %d\n",mode, mode);
1146         if (mode > 2) {         /* 2 is maximum allowed tPIO value */
1147                 mode = 2;
1148                 PRINTF ("Override tPIO -> 2\n");
1149         }
1150         if (iop->field_valid & 2) {     /* drive implements ATA2? */
1151                 PRINTF ("Drive implements ATA2\n");
1152                 if (iop->capability & 8) {      /* drive supports use_iordy? */
1153                         cycle_time = iop->eide_pio_iordy;
1154                 } else {
1155                         cycle_time = iop->eide_pio;
1156                 }
1157                 PRINTF ("cycle time = %d\n", cycle_time);
1158                 mode = 4;
1159                 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1160                 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1161                 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1162                 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1163         }
1164         printf ("PIO mode to use: PIO %d\n", mode);
1165 #endif /* 0 */
1166
1167 #ifdef CONFIG_ATAPI
1168         if (dev_desc->if_type==IF_TYPE_ATAPI) {
1169                 atapi_inquiry(dev_desc);
1170                 return;
1171         }
1172 #endif /* CONFIG_ATAPI */
1173
1174 #ifdef __BIG_ENDIAN
1175         /* swap shorts */
1176         dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
1177 #else   /* ! __BIG_ENDIAN */
1178         /*
1179          * do not swap shorts on little endian
1180          *
1181          * See CF+ and CompactFlash Specification Revision 2.0:
1182          * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
1183          */
1184         dev_desc->lba = iop->lba_capacity;
1185 #endif  /* __BIG_ENDIAN */
1186
1187 #ifdef CONFIG_LBA48
1188         if (iop->command_set_2 & 0x0400) { /* LBA 48 support */
1189                 dev_desc->lba48 = 1;
1190                 dev_desc->lba = (unsigned long long)iop->lba48_capacity[0] |
1191                                                   ((unsigned long long)iop->lba48_capacity[1] << 16) |
1192                                                   ((unsigned long long)iop->lba48_capacity[2] << 32) |
1193                                                   ((unsigned long long)iop->lba48_capacity[3] << 48);
1194         } else {
1195                 dev_desc->lba48 = 0;
1196         }
1197 #endif /* CONFIG_LBA48 */
1198         /* assuming HD */
1199         dev_desc->type=DEV_TYPE_HARDDISK;
1200         dev_desc->blksz=ATA_BLOCKSIZE;
1201         dev_desc->lun=0; /* just to fill something in... */
1202
1203 #if 0   /* only used to test the powersaving mode,
1204          * if enabled, the drive goes after 5 sec
1205          * in standby mode */
1206         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1207         c = ide_wait (device, IDE_TIME_OUT);
1208         ide_outb (device, ATA_SECT_CNT, 1);
1209         ide_outb (device, ATA_LBA_LOW,  0);
1210         ide_outb (device, ATA_LBA_MID,  0);
1211         ide_outb (device, ATA_LBA_HIGH, 0);
1212         ide_outb (device, ATA_DEV_HD,   ATA_LBA         |
1213                                     ATA_DEVICE(device));
1214         ide_outb (device, ATA_COMMAND,  0xe3);
1215         udelay (50);
1216         c = ide_wait (device, IDE_TIME_OUT);    /* can't take over 500 ms */
1217 #endif
1218 }
1219
1220
1221 /* ------------------------------------------------------------------------- */
1222
1223 ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
1224 {
1225         ulong n = 0;
1226         unsigned char c;
1227         unsigned char pwrsave=0; /* power save */
1228 #ifdef CONFIG_LBA48
1229         unsigned char lba48 = 0;
1230
1231         if (blknr & 0x0000fffff0000000) {
1232                 /* more than 28 bits used, use 48bit mode */
1233                 lba48 = 1;
1234         }
1235 #endif
1236         PRINTF ("ide_read dev %d start %qX, blocks %lX buffer at %lX\n",
1237                 device, blknr, blkcnt, (ulong)buffer);
1238
1239         ide_led (DEVICE_LED(device), 1);        /* LED on       */
1240
1241         /* Select device
1242          */
1243         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1244         c = ide_wait (device, IDE_TIME_OUT);
1245
1246         if (c & ATA_STAT_BUSY) {
1247                 printf ("IDE read: device %d not ready\n", device);
1248                 goto IDE_READ_E;
1249         }
1250
1251         /* first check if the drive is in Powersaving mode, if yes,
1252          * increase the timeout value */
1253         ide_outb (device, ATA_COMMAND,  ATA_CMD_CHK_PWR);
1254         udelay (50);
1255
1256         c = ide_wait (device, IDE_TIME_OUT);    /* can't take over 500 ms */
1257
1258         if (c & ATA_STAT_BUSY) {
1259                 printf ("IDE read: device %d not ready\n", device);
1260                 goto IDE_READ_E;
1261         }
1262         if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1263                 printf ("No Powersaving mode %X\n", c);
1264         } else {
1265                 c = ide_inb(device,ATA_SECT_CNT);
1266                 PRINTF("Powersaving %02X\n",c);
1267                 if(c==0)
1268                         pwrsave=1;
1269         }
1270
1271
1272         while (blkcnt-- > 0) {
1273
1274                 c = ide_wait (device, IDE_TIME_OUT);
1275
1276                 if (c & ATA_STAT_BUSY) {
1277                         printf ("IDE read: device %d not ready\n", device);
1278                         break;
1279                 }
1280 #ifdef CONFIG_LBA48
1281                 if (lba48) {
1282                         /* write high bits */
1283                         ide_outb (device, ATA_SECT_CNT, 0);
1284                         ide_outb (device, ATA_LBA_LOW,  (blknr >> 24) & 0xFF);
1285                         ide_outb (device, ATA_LBA_MID,  (blknr >> 32) & 0xFF);
1286                         ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1287                 }
1288 #endif
1289                 ide_outb (device, ATA_SECT_CNT, 1);
1290                 ide_outb (device, ATA_LBA_LOW,  (blknr >>  0) & 0xFF);
1291                 ide_outb (device, ATA_LBA_MID,  (blknr >>  8) & 0xFF);
1292                 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1293
1294 #ifdef CONFIG_LBA48
1295                 if (lba48) {
1296                         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1297                         ide_outb (device, ATA_COMMAND, ATA_CMD_READ_EXT);
1298
1299                 } else
1300 #endif
1301                 {
1302                         ide_outb (device, ATA_DEV_HD,   ATA_LBA         |
1303                                                     ATA_DEVICE(device)  |
1304                                                     ((blknr >> 24) & 0xF) );
1305                         ide_outb (device, ATA_COMMAND,  ATA_CMD_READ);
1306                 }
1307
1308                 udelay (50);
1309
1310                 if(pwrsave) {
1311                         c = ide_wait (device, IDE_SPIN_UP_TIME_OUT);    /* may take up to 4 sec */
1312                         pwrsave=0;
1313                 } else {
1314                         c = ide_wait (device, IDE_TIME_OUT);    /* can't take over 500 ms */
1315                 }
1316
1317                 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1318 #if defined(CFG_64BIT_LBA) && defined(CFG_64BIT_VSPRINTF)
1319                         printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n",
1320                                 device, blknr, c);
1321 #else
1322                         printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1323                                 device, (ulong)blknr, c);
1324 #endif
1325                         break;
1326                 }
1327
1328                 input_data (device, buffer, ATA_SECTORWORDS);
1329                 (void) ide_inb (device, ATA_STATUS);    /* clear IRQ */
1330
1331                 ++n;
1332                 ++blknr;
1333                 buffer += ATA_SECTORWORDS;
1334         }
1335 IDE_READ_E:
1336         ide_led (DEVICE_LED(device), 0);        /* LED off      */
1337         return (n);
1338 }
1339
1340 /* ------------------------------------------------------------------------- */
1341
1342
1343 ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
1344 {
1345         ulong n = 0;
1346         unsigned char c;
1347 #ifdef CONFIG_LBA48
1348         unsigned char lba48 = 0;
1349
1350         if (blknr & 0x0000fffff0000000) {
1351                 /* more than 28 bits used, use 48bit mode */
1352                 lba48 = 1;
1353         }
1354 #endif
1355
1356         ide_led (DEVICE_LED(device), 1);        /* LED on       */
1357
1358         /* Select device
1359          */
1360         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1361
1362         while (blkcnt-- > 0) {
1363
1364                 c = ide_wait (device, IDE_TIME_OUT);
1365
1366                 if (c & ATA_STAT_BUSY) {
1367                         printf ("IDE read: device %d not ready\n", device);
1368                         goto WR_OUT;
1369                 }
1370 #ifdef CONFIG_LBA48
1371                 if (lba48) {
1372                         /* write high bits */
1373                         ide_outb (device, ATA_SECT_CNT, 0);
1374                         ide_outb (device, ATA_LBA_LOW,  (blknr >> 24) & 0xFF);
1375                         ide_outb (device, ATA_LBA_MID,  (blknr >> 32) & 0xFF);
1376                         ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1377                 }
1378 #endif
1379                 ide_outb (device, ATA_SECT_CNT, 1);
1380                 ide_outb (device, ATA_LBA_LOW,  (blknr >>  0) & 0xFF);
1381                 ide_outb (device, ATA_LBA_MID,  (blknr >>  8) & 0xFF);
1382                 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1383
1384 #ifdef CONFIG_LBA48
1385                 if (lba48) {
1386                         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1387                         ide_outb (device, ATA_COMMAND,  ATA_CMD_WRITE_EXT);
1388
1389                 } else
1390 #endif
1391                 {
1392                         ide_outb (device, ATA_DEV_HD,   ATA_LBA         |
1393                                                     ATA_DEVICE(device)  |
1394                                                     ((blknr >> 24) & 0xF) );
1395                         ide_outb (device, ATA_COMMAND,  ATA_CMD_WRITE);
1396                 }
1397
1398                 udelay (50);
1399
1400                 c = ide_wait (device, IDE_TIME_OUT);    /* can't take over 500 ms */
1401
1402                 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1403 #if defined(CFG_64BIT_LBA) && defined(CFG_64BIT_VSPRINTF)
1404                         printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n",
1405                                 device, blknr, c);
1406 #else
1407                         printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1408                                 device, (ulong)blknr, c);
1409 #endif
1410                         goto WR_OUT;
1411                 }
1412
1413                 output_data (device, buffer, ATA_SECTORWORDS);
1414                 c = ide_inb (device, ATA_STATUS);       /* clear IRQ */
1415                 ++n;
1416                 ++blknr;
1417                 buffer += ATA_SECTORWORDS;
1418         }
1419 WR_OUT:
1420         ide_led (DEVICE_LED(device), 0);        /* LED off      */
1421         return (n);
1422 }
1423
1424 /* ------------------------------------------------------------------------- */
1425
1426 /*
1427  * copy src to dest, skipping leading and trailing blanks and null
1428  * terminate the string
1429  * "len" is the size of available memory including the terminating '\0'
1430  */
1431 static void ident_cpy (unsigned char *dst, unsigned char *src, unsigned int len)
1432 {
1433         unsigned char *end, *last;
1434
1435         last = dst;
1436         end  = src + len - 1;
1437
1438         /* reserve space for '\0' */
1439         if (len < 2)
1440                 goto OUT;
1441
1442         /* skip leading white space */
1443         while ((*src) && (src<end) && (*src==' '))
1444                 ++src;
1445
1446         /* copy string, omitting trailing white space */
1447         while ((*src) && (src<end)) {
1448                 *dst++ = *src;
1449                 if (*src++ != ' ')
1450                         last = dst;
1451         }
1452 OUT:
1453         *last = '\0';
1454 }
1455
1456 /* ------------------------------------------------------------------------- */
1457
1458 /*
1459  * Wait until Busy bit is off, or timeout (in ms)
1460  * Return last status
1461  */
1462 static uchar ide_wait (int dev, ulong t)
1463 {
1464         ulong delay = 10 * t;           /* poll every 100 us */
1465         uchar c;
1466
1467         while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
1468                 udelay (100);
1469                 if (delay-- == 0) {
1470                         break;
1471                 }
1472         }
1473         return (c);
1474 }
1475
1476 /* ------------------------------------------------------------------------- */
1477
1478 #ifdef CONFIG_IDE_RESET
1479 extern void ide_set_reset(int idereset);
1480
1481 static void ide_reset (void)
1482 {
1483 #if defined(CFG_PB_12V_ENABLE) || defined(CFG_PB_IDE_MOTOR)
1484         volatile immap_t *immr = (immap_t *)CFG_IMMR;
1485 #endif
1486         int i;
1487
1488         curr_device = -1;
1489         for (i=0; i<CFG_IDE_MAXBUS; ++i)
1490                 ide_bus_ok[i] = 0;
1491         for (i=0; i<CFG_IDE_MAXDEVICE; ++i)
1492                 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1493
1494         ide_set_reset (1); /* assert reset */
1495
1496         WATCHDOG_RESET();
1497
1498 #ifdef CFG_PB_12V_ENABLE
1499         immr->im_cpm.cp_pbdat &= ~(CFG_PB_12V_ENABLE);  /* 12V Enable output OFF */
1500         immr->im_cpm.cp_pbpar &= ~(CFG_PB_12V_ENABLE);
1501         immr->im_cpm.cp_pbodr &= ~(CFG_PB_12V_ENABLE);
1502         immr->im_cpm.cp_pbdir |=   CFG_PB_12V_ENABLE;
1503
1504         /* wait 500 ms for the voltage to stabilize
1505          */
1506         for (i=0; i<500; ++i) {
1507                 udelay (1000);
1508         }
1509
1510         immr->im_cpm.cp_pbdat |=   CFG_PB_12V_ENABLE;   /* 12V Enable output ON */
1511 #endif  /* CFG_PB_12V_ENABLE */
1512
1513 #ifdef CFG_PB_IDE_MOTOR
1514         /* configure IDE Motor voltage monitor pin as input */
1515         immr->im_cpm.cp_pbpar &= ~(CFG_PB_IDE_MOTOR);
1516         immr->im_cpm.cp_pbodr &= ~(CFG_PB_IDE_MOTOR);
1517         immr->im_cpm.cp_pbdir &= ~(CFG_PB_IDE_MOTOR);
1518
1519         /* wait up to 1 s for the motor voltage to stabilize
1520          */
1521         for (i=0; i<1000; ++i) {
1522                 if ((immr->im_cpm.cp_pbdat & CFG_PB_IDE_MOTOR) != 0) {
1523                         break;
1524                 }
1525                 udelay (1000);
1526         }
1527
1528         if (i == 1000) {        /* Timeout */
1529                 printf ("\nWarning: 5V for IDE Motor missing\n");
1530 # ifdef CONFIG_STATUS_LED
1531 #  ifdef STATUS_LED_YELLOW
1532                 status_led_set  (STATUS_LED_YELLOW, STATUS_LED_ON );
1533 #  endif
1534 #  ifdef STATUS_LED_GREEN
1535                 status_led_set  (STATUS_LED_GREEN,  STATUS_LED_OFF);
1536 #  endif
1537 # endif /* CONFIG_STATUS_LED */
1538         }
1539 #endif  /* CFG_PB_IDE_MOTOR */
1540
1541         WATCHDOG_RESET();
1542
1543         /* de-assert RESET signal */
1544         ide_set_reset(0);
1545
1546         /* wait 250 ms */
1547         for (i=0; i<250; ++i) {
1548                 udelay (1000);
1549         }
1550 }
1551
1552 #endif  /* CONFIG_IDE_RESET */
1553
1554 /* ------------------------------------------------------------------------- */
1555
1556 #if defined(CONFIG_IDE_LED) && \
1557    !defined(CONFIG_AMIGAONEG3SE) && \
1558    !defined(CONFIG_KUP4K) && \
1559    !defined(CONFIG_KUP4X) && \
1560    !defined(CONFIG_HMI10)
1561
1562 static  uchar   led_buffer = 0;         /* Buffer for current LED status        */
1563
1564 static void ide_led (uchar led, uchar status)
1565 {
1566         uchar *led_port = LED_PORT;
1567
1568         if (status)     {               /* switch LED on        */
1569                 led_buffer |=  led;
1570         } else {                        /* switch LED off       */
1571                 led_buffer &= ~led;
1572         }
1573
1574         *led_port = led_buffer;
1575 }
1576
1577 #endif  /* CONFIG_IDE_LED */
1578
1579 /* ------------------------------------------------------------------------- */
1580
1581 #ifdef CONFIG_ATAPI
1582 /****************************************************************************
1583  * ATAPI Support
1584  */
1585
1586
1587 #undef  ATAPI_DEBUG
1588
1589 #ifdef  ATAPI_DEBUG
1590 #define AT_PRINTF(fmt,args...)  printf (fmt ,##args)
1591 #else
1592 #define AT_PRINTF(fmt,args...)
1593 #endif
1594
1595 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
1596 /* since ATAPI may use commands with not 4 bytes alligned length
1597  * we have our own transfer functions, 2 bytes alligned */
1598 static void
1599 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1600 {
1601 #ifndef CONFIG_HMI10
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         PRINTF("in output data shorts base for read is %lx\n", (unsigned long) pbuf);
1609
1610         while (shorts--) {
1611 #ifdef __PPC__
1612                 __asm__ volatile ("eieio");
1613 #endif
1614                 *pbuf = *dbuf++;
1615         }
1616 #else   /* CONFIG_HMI10 */
1617         uchar   *dbuf;
1618         volatile uchar  *pbuf_even;
1619         volatile uchar  *pbuf_odd;
1620
1621         pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1622         pbuf_odd  = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1623         while (shorts--) {
1624                 __asm__ volatile ("eieio");
1625                 *pbuf_even = *dbuf++;
1626                 __asm__ volatile ("eieio");
1627                 *pbuf_odd = *dbuf++;
1628         }
1629 #endif  /* CONFIG_HMI10 */
1630 }
1631
1632 static void
1633 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1634 {
1635 #ifndef CONFIG_HMI10
1636         ushort  *dbuf;
1637         volatile ushort *pbuf;
1638
1639         pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1640         dbuf = (ushort *)sect_buf;
1641
1642         PRINTF("in input data shorts base for read is %lx\n", (unsigned long) pbuf);
1643
1644         while (shorts--) {
1645 #ifdef __PPC__
1646                 __asm__ volatile ("eieio");
1647 #endif
1648                 *dbuf++ = *pbuf;
1649         }
1650 #else   /* CONFIG_HMI10 */
1651         uchar   *dbuf;
1652         volatile uchar  *pbuf_even;
1653         volatile uchar  *pbuf_odd;
1654
1655         pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1656         pbuf_odd  = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1657         while (shorts--) {
1658                 __asm__ volatile ("eieio");
1659                 *dbuf++ = *pbuf_even;
1660                 __asm__ volatile ("eieio");
1661                 *dbuf++ = *pbuf_odd;
1662         }
1663 #endif  /* CONFIG_HMI10 */
1664 }
1665
1666 #else   /* ! __PPC__ */
1667 static void
1668 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1669 {
1670         outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
1671 }
1672
1673
1674 static void
1675 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1676 {
1677         insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
1678 }
1679
1680 #endif  /* __PPC__ */
1681
1682 /*
1683  * Wait until (Status & mask) == res, or timeout (in ms)
1684  * Return last status
1685  * This is used since some ATAPI CD ROMs clears their Busy Bit first
1686  * and then they set their DRQ Bit
1687  */
1688 static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1689 {
1690         ulong delay = 10 * t;           /* poll every 100 us */
1691         uchar c;
1692
1693         c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1694         while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
1695                 /* break if error occurs (doesn't make sense to wait more) */
1696                 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1697                         break;
1698                 udelay (100);
1699                 if (delay-- == 0) {
1700                         break;
1701                 }
1702         }
1703         return (c);
1704 }
1705
1706 /*
1707  * issue an atapi command
1708  */
1709 unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1710 {
1711         unsigned char c,err,mask,res;
1712         int n;
1713         ide_led (DEVICE_LED(device), 1);        /* LED on       */
1714
1715         /* Select device
1716          */
1717         mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1718         res = 0;
1719 #ifdef  CONFIG_AMIGAONEG3SE
1720 # warning THF: Removed LBA mode ???
1721 #endif
1722         ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1723         c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1724         if ((c & mask) != res) {
1725                 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1726                 err=0xFF;
1727                 goto AI_OUT;
1728         }
1729         /* write taskfile */
1730         ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
1731         ide_outb (device, ATA_SECT_CNT, 0);
1732         ide_outb (device, ATA_SECT_NUM, 0);
1733         ide_outb (device, ATA_CYL_LOW,  (unsigned char)(buflen & 0xFF));
1734         ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
1735 #ifdef  CONFIG_AMIGAONEG3SE
1736 # warning THF: Removed LBA mode ???
1737 #endif
1738         ide_outb (device, ATA_DEV_HD,   ATA_LBA | ATA_DEVICE(device));
1739
1740         ide_outb (device, ATA_COMMAND,  ATAPI_CMD_PACKET);
1741         udelay (50);
1742
1743         mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1744         res = ATA_STAT_DRQ;
1745         c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1746
1747         if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1748                 printf ("ATTAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
1749                 err=0xFF;
1750                 goto AI_OUT;
1751         }
1752
1753         output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
1754         /* ATAPI Command written wait for completition */
1755         udelay (5000); /* device must set bsy */
1756
1757         mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1758         /* if no data wait for DRQ = 0 BSY = 0
1759          * if data wait for DRQ = 1 BSY = 0 */
1760         res=0;
1761         if(buflen)
1762                 res = ATA_STAT_DRQ;
1763         c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1764         if ((c & mask) != res ) {
1765                 if (c & ATA_STAT_ERR) {
1766                         err=(ide_inb(device,ATA_ERROR_REG))>>4;
1767                         AT_PRINTF("atapi_issue 1 returned sense key %X status %02X\n",err,c);
1768                 } else {
1769                         printf ("ATTAPI_ISSUE: (no DRQ) after sending ccb (%x)  status 0x%02x\n", ccb[0],c);
1770                         err=0xFF;
1771                 }
1772                 goto AI_OUT;
1773         }
1774         n=ide_inb(device, ATA_CYL_HIGH);
1775         n<<=8;
1776         n+=ide_inb(device, ATA_CYL_LOW);
1777         if(n>buflen) {
1778                 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1779                 err=0xff;
1780                 goto AI_OUT;
1781         }
1782         if((n==0)&&(buflen<0)) {
1783                 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1784                 err=0xff;
1785                 goto AI_OUT;
1786         }
1787         if(n!=buflen) {
1788                 AT_PRINTF("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
1789         }
1790         if(n!=0) { /* data transfer */
1791                 AT_PRINTF("ATAPI_ISSUE: %d Bytes to transfer\n",n);
1792                  /* we transfer shorts */
1793                 n>>=1;
1794                 /* ok now decide if it is an in or output */
1795                 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
1796                         AT_PRINTF("Write to device\n");
1797                         output_data_shorts(device,(unsigned short *)buffer,n);
1798                 } else {
1799                         AT_PRINTF("Read from device @ %p shorts %d\n",buffer,n);
1800                         input_data_shorts(device,(unsigned short *)buffer,n);
1801                 }
1802         }
1803         udelay(5000); /* seems that some CD ROMs need this... */
1804         mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1805         res=0;
1806         c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1807         if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1808                 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
1809                 AT_PRINTF("atapi_issue 2 returned sense key %X status %X\n",err,c);
1810         } else {
1811                 err = 0;
1812         }
1813 AI_OUT:
1814         ide_led (DEVICE_LED(device), 0);        /* LED off      */
1815         return (err);
1816 }
1817
1818 /*
1819  * sending the command to atapi_issue. If an status other than good
1820  * returns, an request_sense will be issued
1821  */
1822
1823 #define ATAPI_DRIVE_NOT_READY   100
1824 #define ATAPI_UNIT_ATTN         10
1825
1826 unsigned char atapi_issue_autoreq (int device,
1827                                    unsigned char* ccb,
1828                                    int ccblen,
1829                                    unsigned char *buffer,
1830                                    int buflen)
1831 {
1832         unsigned char sense_data[18],sense_ccb[12];
1833         unsigned char res,key,asc,ascq;
1834         int notready,unitattn;
1835
1836 #ifdef CONFIG_AMIGAONEG3SE
1837         char *s;
1838         unsigned int timeout, retrycnt;
1839
1840         s = getenv("ide_cd_timeout");
1841         timeout = s ? (simple_strtol(s, NULL, 10)*1000000)/5 : 0;
1842
1843         retrycnt = 0;
1844 #endif
1845
1846         unitattn=ATAPI_UNIT_ATTN;
1847         notready=ATAPI_DRIVE_NOT_READY;
1848
1849 retry:
1850         res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1851         if (res==0)
1852                 return (0); /* Ok */
1853
1854         if (res==0xFF)
1855                 return (0xFF); /* error */
1856
1857         AT_PRINTF("(auto_req)atapi_issue returned sense key %X\n",res);
1858
1859         memset(sense_ccb,0,sizeof(sense_ccb));
1860         memset(sense_data,0,sizeof(sense_data));
1861         sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
1862         sense_ccb[4]=18; /* allocation Length */
1863
1864         res=atapi_issue(device,sense_ccb,12,sense_data,18);
1865         key=(sense_data[2]&0xF);
1866         asc=(sense_data[12]);
1867         ascq=(sense_data[13]);
1868
1869         AT_PRINTF("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1870         AT_PRINTF(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1871                 sense_data[0],
1872                 key,
1873                 asc,
1874                 ascq);
1875
1876         if((key==0))
1877                 return 0; /* ok device ready */
1878
1879         if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1880                 if(unitattn-->0) {
1881                         udelay(200*1000);
1882                         goto retry;
1883                 }
1884                 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1885                 goto error;
1886         }
1887         if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1888                 if (notready-->0) {
1889                         udelay(200*1000);
1890                         goto retry;
1891                 }
1892                 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1893                 goto error;
1894         }
1895         if(asc==0x3a) {
1896                 AT_PRINTF("Media not present\n");
1897                 goto error;
1898         }
1899
1900 #ifdef CONFIG_AMIGAONEG3SE
1901         if ((sense_data[2]&0xF)==0x0B) {
1902                 AT_PRINTF("ABORTED COMMAND...retry\n");
1903                 if (retrycnt++ < 4)
1904                         goto retry;
1905                 return (0xFF);
1906         }
1907
1908         if ((sense_data[2]&0xf) == 0x02 &&
1909             sense_data[12] == 0x04      &&
1910             sense_data[13] == 0x01      ) {
1911                 AT_PRINTF("Waiting for unit to become active\n");
1912                 udelay(timeout);
1913                 if (retrycnt++ < 4)
1914                         goto retry;
1915                 return 0xFF;
1916         }
1917 #endif  /* CONFIG_AMIGAONEG3SE */
1918
1919         printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1920 error:
1921         AT_PRINTF ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1922         return (0xFF);
1923 }
1924
1925
1926 static void     atapi_inquiry(block_dev_desc_t * dev_desc)
1927 {
1928         unsigned char ccb[12]; /* Command descriptor block */
1929         unsigned char iobuf[64]; /* temp buf */
1930         unsigned char c;
1931         int device;
1932
1933         device=dev_desc->dev;
1934         dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
1935         dev_desc->block_read=atapi_read;
1936
1937         memset(ccb,0,sizeof(ccb));
1938         memset(iobuf,0,sizeof(iobuf));
1939
1940         ccb[0]=ATAPI_CMD_INQUIRY;
1941         ccb[4]=40; /* allocation Legnth */
1942         c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
1943
1944         AT_PRINTF("ATAPI_CMD_INQUIRY returned %x\n",c);
1945         if (c!=0)
1946                 return;
1947
1948         /* copy device ident strings */
1949         ident_cpy(dev_desc->vendor,&iobuf[8],8);
1950         ident_cpy(dev_desc->product,&iobuf[16],16);
1951         ident_cpy(dev_desc->revision,&iobuf[32],5);
1952
1953         dev_desc->lun=0;
1954         dev_desc->lba=0;
1955         dev_desc->blksz=0;
1956         dev_desc->type=iobuf[0] & 0x1f;
1957
1958         if ((iobuf[1]&0x80)==0x80)
1959                 dev_desc->removable = 1;
1960         else
1961                 dev_desc->removable = 0;
1962
1963         memset(ccb,0,sizeof(ccb));
1964         memset(iobuf,0,sizeof(iobuf));
1965         ccb[0]=ATAPI_CMD_START_STOP;
1966         ccb[4]=0x03; /* start */
1967
1968         c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1969
1970         AT_PRINTF("ATAPI_CMD_START_STOP returned %x\n",c);
1971         if (c!=0)
1972                 return;
1973
1974         memset(ccb,0,sizeof(ccb));
1975         memset(iobuf,0,sizeof(iobuf));
1976         c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1977
1978         AT_PRINTF("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
1979         if (c!=0)
1980                 return;
1981
1982         memset(ccb,0,sizeof(ccb));
1983         memset(iobuf,0,sizeof(iobuf));
1984         ccb[0]=ATAPI_CMD_READ_CAP;
1985         c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
1986         AT_PRINTF("ATAPI_CMD_READ_CAP returned %x\n",c);
1987         if (c!=0)
1988                 return;
1989
1990         AT_PRINTF("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1991                 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
1992                 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
1993
1994         dev_desc->lba  =((unsigned long)iobuf[0]<<24) +
1995                         ((unsigned long)iobuf[1]<<16) +
1996                         ((unsigned long)iobuf[2]<< 8) +
1997                         ((unsigned long)iobuf[3]);
1998         dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
1999                         ((unsigned long)iobuf[5]<<16) +
2000                         ((unsigned long)iobuf[6]<< 8) +
2001                         ((unsigned long)iobuf[7]);
2002 #ifdef CONFIG_LBA48
2003         dev_desc->lba48 = 0; /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
2004 #endif
2005         return;
2006 }
2007
2008
2009 /*
2010  * atapi_read:
2011  * we transfer only one block per command, since the multiple DRQ per
2012  * command is not yet implemented
2013  */
2014 #define ATAPI_READ_MAX_BYTES    2048    /* we read max 2kbytes */
2015 #define ATAPI_READ_BLOCK_SIZE   2048    /* assuming CD part */
2016 #define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
2017
2018 ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
2019 {
2020         ulong n = 0;
2021         unsigned char ccb[12]; /* Command descriptor block */
2022         ulong cnt;
2023
2024         AT_PRINTF("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
2025                 device, blknr, blkcnt, (ulong)buffer);
2026
2027         do {
2028                 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
2029                         cnt=ATAPI_READ_MAX_BLOCK;
2030                 } else {
2031                         cnt=blkcnt;
2032                 }
2033                 ccb[0]=ATAPI_CMD_READ_12;
2034                 ccb[1]=0; /* reserved */
2035                 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
2036                 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /*  */
2037                 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
2038                 ccb[5]=(unsigned char)  blknr      & 0xFF; /* LSB Block */
2039                 ccb[6]=(unsigned char) (cnt  >>24) & 0xFF; /* MSB Block count */
2040                 ccb[7]=(unsigned char) (cnt  >>16) & 0xFF;
2041                 ccb[8]=(unsigned char) (cnt  >> 8) & 0xFF;
2042                 ccb[9]=(unsigned char)  cnt        & 0xFF; /* LSB Block */
2043                 ccb[10]=0; /* reserved */
2044                 ccb[11]=0; /* reserved */
2045
2046                 if (atapi_issue_autoreq(device,ccb,12,
2047                                         (unsigned char *)buffer,
2048                                         cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
2049                         return (n);
2050                 }
2051                 n+=cnt;
2052                 blkcnt-=cnt;
2053                 blknr+=cnt;
2054                 buffer+=cnt*(ATAPI_READ_BLOCK_SIZE/4); /* ulong blocksize in ulong */
2055         } while (blkcnt > 0);
2056         return (n);
2057 }
2058
2059 /* ------------------------------------------------------------------------- */
2060
2061 #endif /* CONFIG_ATAPI */
2062
2063 U_BOOT_CMD(
2064         ide,  5,  1,  do_ide,
2065         "ide     - IDE sub-system\n",
2066         "reset - reset IDE controller\n"
2067         "ide info  - show available IDE devices\n"
2068         "ide device [dev] - show or set current device\n"
2069         "ide part [dev] - print partition table of one or all IDE devices\n"
2070         "ide read  addr blk# cnt\n"
2071         "ide write addr blk# cnt - read/write `cnt'"
2072         " blocks starting at block `blk#'\n"
2073         "    to/from memory address `addr'\n"
2074 );
2075
2076 U_BOOT_CMD(
2077         diskboot,       3,      1,      do_diskboot,
2078         "diskboot- boot from IDE device\n",
2079         "loadAddr dev:part\n"
2080 );
2081
2082 #endif  /* CONFIG_COMMANDS & CFG_CMD_IDE */