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