2 * (C) Copyright 2000-2005
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
33 #include <asm/byteorder.h>
36 #if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
55 #ifdef CONFIG_STATUS_LED
56 # include <status_led.h>
59 #ifdef CONFIG_IDE_8xx_DIRECT
60 DECLARE_GLOBAL_DATA_PTR;
64 # define EIEIO __asm__ volatile ("eieio")
65 # define SYNC __asm__ volatile ("sync")
67 # define EIEIO /* nothing */
68 # define SYNC /* nothing */
71 #ifdef CONFIG_IDE_8xx_DIRECT
72 /* Timings for IDE Interface
74 * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk
75 * 70 165 30 PIO-Mode 0, [ns]
77 * 50 125 20 PIO-Mode 1, [ns]
79 * 30 100 15 PIO-Mode 2, [ns]
81 * 30 80 10 PIO-Mode 3, [ns]
83 * 25 70 10 PIO-Mode 4, [ns]
87 const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] =
89 /* Setup Length Hold */
90 { 70, 165, 30 }, /* PIO-Mode 0, [ns] */
91 { 50, 125, 20 }, /* PIO-Mode 1, [ns] */
92 { 30, 101, 15 }, /* PIO-Mode 2, [ns] */
93 { 30, 80, 10 }, /* PIO-Mode 3, [ns] */
94 { 25, 70, 10 }, /* PIO-Mode 4, [ns] */
97 static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1];
99 #ifndef CONFIG_SYS_PIO_MODE
100 #define CONFIG_SYS_PIO_MODE 0 /* use a relaxed default */
102 static int pio_mode = CONFIG_SYS_PIO_MODE;
104 /* Make clock cycles and always round up */
106 #define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U )
108 #endif /* CONFIG_IDE_8xx_DIRECT */
110 /* ------------------------------------------------------------------------- */
112 /* Current I/O Device */
113 static int curr_device = -1;
115 /* Current offset for IDE0 / IDE1 bus access */
116 ulong ide_bus_offset[CONFIG_SYS_IDE_MAXBUS] = {
117 #if defined(CONFIG_SYS_ATA_IDE0_OFFSET)
118 CONFIG_SYS_ATA_IDE0_OFFSET,
120 #if defined(CONFIG_SYS_ATA_IDE1_OFFSET) && (CONFIG_SYS_IDE_MAXBUS > 1)
121 CONFIG_SYS_ATA_IDE1_OFFSET,
126 #ifndef CONFIG_AMIGAONEG3SE
127 static int ide_bus_ok[CONFIG_SYS_IDE_MAXBUS];
129 static int ide_bus_ok[CONFIG_SYS_IDE_MAXBUS] = {0,};
132 block_dev_desc_t ide_dev_desc[CONFIG_SYS_IDE_MAXDEVICE];
133 /* ------------------------------------------------------------------------- */
135 #ifdef CONFIG_IDE_LED
136 #if !defined(CONFIG_KUP4K) && !defined(CONFIG_KUP4X) &&!defined(CONFIG_BMS2003) &&!defined(CONFIG_CPC45)
137 static void ide_led (uchar led, uchar status);
139 extern void ide_led (uchar led, uchar status);
142 #ifndef CONFIG_AMIGAONEG3SE
143 #define ide_led(a,b) /* dummy */
145 extern void ide_led(uchar led, uchar status);
148 #define CONFIG_IDE_LED 1
149 #define DEVICE_LED(x) 1
153 #ifdef CONFIG_IDE_RESET
154 static void ide_reset (void);
156 #define ide_reset() /* dummy */
159 static void ide_ident (block_dev_desc_t *dev_desc);
160 static uchar ide_wait (int dev, ulong t);
162 #define IDE_TIME_OUT 2000 /* 2 sec timeout */
164 #define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
166 #define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
168 static void input_data(int dev, ulong *sect_buf, int words);
169 static void output_data(int dev, ulong *sect_buf, int words);
170 static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
172 #ifndef CONFIG_SYS_ATA_PORT_ADDR
173 #define CONFIG_SYS_ATA_PORT_ADDR(port) (port)
177 static void atapi_inquiry(block_dev_desc_t *dev_desc);
178 ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer);
182 #ifdef CONFIG_IDE_8xx_DIRECT
183 static void set_pcmcia_timing (int pmode);
186 /* ------------------------------------------------------------------------- */
188 int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
198 if (strncmp(argv[1],"res",3) == 0) {
200 #ifdef CONFIG_IDE_8xx_DIRECT
201 " on PCMCIA " PCMCIA_SLOT_MSG
207 } else if (strncmp(argv[1],"inf",3) == 0) {
212 for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i) {
213 if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN)
214 continue; /* list only known devices */
215 printf ("IDE device %d: ", i);
216 dev_print(&ide_dev_desc[i]);
220 } else if (strncmp(argv[1],"dev",3) == 0) {
221 if ((curr_device < 0) || (curr_device >= CONFIG_SYS_IDE_MAXDEVICE)) {
222 puts ("\nno IDE devices available\n");
225 printf ("\nIDE device %d: ", curr_device);
226 dev_print(&ide_dev_desc[curr_device]);
228 } else if (strncmp(argv[1],"part",4) == 0) {
231 for (ok=0, dev=0; dev<CONFIG_SYS_IDE_MAXDEVICE; ++dev) {
232 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
236 print_part(&ide_dev_desc[dev]);
240 puts ("\nno IDE devices available\n");
248 if (strncmp(argv[1],"dev",3) == 0) {
249 int dev = (int)simple_strtoul(argv[2], NULL, 10);
251 printf ("\nIDE device %d: ", dev);
252 if (dev >= CONFIG_SYS_IDE_MAXDEVICE) {
253 puts ("unknown device\n");
256 dev_print(&ide_dev_desc[dev]);
259 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
265 puts ("... is now current device\n");
268 } else if (strncmp(argv[1],"part",4) == 0) {
269 int dev = (int)simple_strtoul(argv[2], NULL, 10);
271 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
272 print_part(&ide_dev_desc[dev]);
274 printf ("\nIDE device %d not available\n", dev);
279 } else if (strncmp(argv[1],"pio",4) == 0) {
280 int mode = (int)simple_strtoul(argv[2], NULL, 10);
282 if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) {
287 printf ("\nInvalid PIO mode %d (0 ... %d only)\n",
288 mode, IDE_MAX_PIO_MODE);
297 /* at least 4 args */
299 if (strcmp(argv[1],"read") == 0) {
300 ulong addr = simple_strtoul(argv[2], NULL, 16);
301 ulong cnt = simple_strtoul(argv[4], NULL, 16);
303 #ifdef CONFIG_SYS_64BIT_LBA
304 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
306 printf ("\nIDE read: device %d block # %qd, count %ld ... ",
307 curr_device, blk, cnt);
309 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
311 printf ("\nIDE read: device %d block # %ld, count %ld ... ",
312 curr_device, blk, cnt);
315 n = ide_dev_desc[curr_device].block_read (curr_device,
318 /* flush cache after read */
319 flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz);
321 printf ("%ld blocks read: %s\n",
322 n, (n==cnt) ? "OK" : "ERROR");
328 } else if (strcmp(argv[1],"write") == 0) {
329 ulong addr = simple_strtoul(argv[2], NULL, 16);
330 ulong cnt = simple_strtoul(argv[4], NULL, 16);
332 #ifdef CONFIG_SYS_64BIT_LBA
333 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
335 printf ("\nIDE write: device %d block # %qd, count %ld ... ",
336 curr_device, blk, cnt);
338 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
340 printf ("\nIDE write: device %d block # %ld, count %ld ... ",
341 curr_device, blk, cnt);
344 n = ide_write (curr_device, blk, cnt, (ulong *)addr);
346 printf ("%ld blocks written: %s\n",
347 n, (n==cnt) ? "OK" : "ERROR");
362 int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
364 char *boot_device = NULL;
368 disk_partition_t info;
371 #if defined(CONFIG_FIT)
372 const void *fit_hdr = NULL;
375 show_boot_progress (41);
378 addr = CONFIG_SYS_LOAD_ADDR;
379 boot_device = getenv ("bootdevice");
382 addr = simple_strtoul(argv[1], NULL, 16);
383 boot_device = getenv ("bootdevice");
386 addr = simple_strtoul(argv[1], NULL, 16);
387 boot_device = argv[2];
391 show_boot_progress (-42);
394 show_boot_progress (42);
397 puts ("\n** No boot device **\n");
398 show_boot_progress (-43);
401 show_boot_progress (43);
403 dev = simple_strtoul(boot_device, &ep, 16);
405 if (ide_dev_desc[dev].type==DEV_TYPE_UNKNOWN) {
406 printf ("\n** Device %d not available\n", dev);
407 show_boot_progress (-44);
410 show_boot_progress (44);
414 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
415 show_boot_progress (-45);
418 part = simple_strtoul(++ep, NULL, 16);
420 show_boot_progress (45);
421 if (get_partition_info (&ide_dev_desc[dev], part, &info)) {
422 show_boot_progress (-46);
425 show_boot_progress (46);
426 if ((strncmp((char *)info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
427 (strncmp((char *)info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
428 printf ("\n** Invalid partition type \"%.32s\""
429 " (expect \"" BOOT_PART_TYPE "\")\n",
431 show_boot_progress (-47);
434 show_boot_progress (47);
436 printf ("\nLoading from IDE device %d, partition %d: "
437 "Name: %.32s Type: %.32s\n",
438 dev, part, info.name, info.type);
440 debug ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
441 info.start, info.size, info.blksz);
443 if (ide_dev_desc[dev].block_read (dev, info.start, 1, (ulong *)addr) != 1) {
444 printf ("** Read error on %d:%d\n", dev, part);
445 show_boot_progress (-48);
448 show_boot_progress (48);
450 switch (genimg_get_format ((void *)addr)) {
451 case IMAGE_FORMAT_LEGACY:
452 hdr = (image_header_t *)addr;
454 show_boot_progress (49);
456 if (!image_check_hcrc (hdr)) {
457 puts ("\n** Bad Header Checksum **\n");
458 show_boot_progress (-50);
461 show_boot_progress (50);
463 image_print_contents (hdr);
465 cnt = image_get_image_size (hdr);
467 #if defined(CONFIG_FIT)
468 case IMAGE_FORMAT_FIT:
469 fit_hdr = (const void *)addr;
470 puts ("Fit image detected...\n");
472 cnt = fit_get_size (fit_hdr);
476 show_boot_progress (-49);
477 puts ("** Unknown image type\n");
481 cnt += info.blksz - 1;
485 if (ide_dev_desc[dev].block_read (dev, info.start+1, cnt,
486 (ulong *)(addr+info.blksz)) != cnt) {
487 printf ("** Read error on %d:%d\n", dev, part);
488 show_boot_progress (-51);
491 show_boot_progress (51);
493 #if defined(CONFIG_FIT)
494 /* This cannot be done earlier, we need complete FIT image in RAM first */
495 if (genimg_get_format ((void *)addr) == IMAGE_FORMAT_FIT) {
496 if (!fit_check_format (fit_hdr)) {
497 show_boot_progress (-140);
498 puts ("** Bad FIT image format\n");
501 show_boot_progress (141);
502 fit_print_contents (fit_hdr);
506 /* Loading ok, update default load address */
510 /* Check if we should attempt an auto-start */
511 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
513 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
515 local_args[0] = argv[0];
516 local_args[1] = NULL;
518 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
520 do_bootm (cmdtp, 0, 1, local_args);
526 /* ------------------------------------------------------------------------- */
529 __ide_outb(int dev, int port, unsigned char val)
531 debug ("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
532 dev, port, val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
533 outb(val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
535 void inline ide_outb (int dev, int port, unsigned char val)
536 __attribute__((weak, alias("__ide_outb")));
539 __ide_inb(int dev, int port)
542 val = inb((ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
543 debug ("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
544 dev, port, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)), val);
547 unsigned char inline ide_inb(int dev, int port)
548 __attribute__((weak, alias("__ide_inb")));
550 #ifdef CONFIG_TUNE_PIO
552 __ide_set_piomode(int pio_mode)
556 int inline ide_set_piomode(int pio_mode)
557 __attribute__((weak, alias("__ide_set_piomode")));
563 #ifdef CONFIG_IDE_8xx_DIRECT
564 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
565 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
569 #if defined(CONFIG_AMIGAONEG3SE) || defined(CONFIG_SC3)
570 unsigned int ata_reset_time = ATA_RESET_TIME;
573 #ifdef CONFIG_AMIGAONEG3SE
574 unsigned int max_bus_scan;
576 #ifdef CONFIG_IDE_8xx_PCCARD
577 extern int pcmcia_on (void);
578 extern int ide_devices_found; /* Initialized in check_ide_device() */
579 #endif /* CONFIG_IDE_8xx_PCCARD */
581 #ifdef CONFIG_IDE_PREINIT
582 extern int ide_preinit (void);
585 if (ide_preinit ()) {
586 puts ("ide_preinit failed\n");
589 #endif /* CONFIG_IDE_PREINIT */
591 #ifdef CONFIG_IDE_8xx_PCCARD
592 extern int pcmcia_on (void);
593 extern int ide_devices_found; /* Initialized in check_ide_device() */
597 ide_devices_found = 0;
598 /* initialize the PCMCIA IDE adapter card */
600 if (!ide_devices_found)
602 udelay (1000000); /* 1 s */
603 #endif /* CONFIG_IDE_8xx_PCCARD */
607 #ifdef CONFIG_IDE_8xx_DIRECT
608 /* Initialize PIO timing tables */
609 for (i=0; i <= IDE_MAX_PIO_MODE; ++i) {
610 pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup,
612 pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
614 pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold,
616 debug ( "PIO Mode %d: setup=%2d ns/%d clk"
618 " hold=%2d ns/%d clk\n",
620 pio_config_ns[i].t_setup, pio_config_clk[i].t_setup,
621 pio_config_ns[i].t_length, pio_config_clk[i].t_length,
622 pio_config_ns[i].t_hold, pio_config_clk[i].t_hold);
624 #endif /* CONFIG_IDE_8xx_DIRECT */
626 /* Reset the IDE just to be sure.
627 * Light LED's to show
629 ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */
630 ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */
632 #ifdef CONFIG_IDE_8xx_DIRECT
633 /* PCMCIA / IDE initialization for common mem space */
634 pcmp->pcmc_pgcrb = 0;
636 /* start in PIO mode 0 - most relaxed timings */
638 set_pcmcia_timing (pio_mode);
639 #endif /* CONFIG_IDE_8xx_DIRECT */
642 * Wait for IDE to get ready.
643 * According to spec, this can take up to 31 seconds!
645 #ifndef CONFIG_AMIGAONEG3SE
646 for (bus=0; bus<CONFIG_SYS_IDE_MAXBUS; ++bus) {
647 int dev = bus * (CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS);
649 s = getenv("ide_maxbus");
651 max_bus_scan = simple_strtol(s, NULL, 10);
653 max_bus_scan = CONFIG_SYS_IDE_MAXBUS;
655 for (bus=0; bus<max_bus_scan; ++bus) {
656 int dev = bus * (CONFIG_SYS_IDE_MAXDEVICE / max_bus_scan);
659 #ifdef CONFIG_IDE_8xx_PCCARD
660 /* Skip non-ide devices from probing */
661 if ((ide_devices_found & (1 << bus)) == 0) {
662 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
666 printf ("Bus %d: ", bus);
672 udelay (100000); /* 100 ms */
673 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
674 udelay (100000); /* 100 ms */
675 #if defined(CONFIG_AMIGAONEG3SE) || defined(CONFIG_SC3)
676 if ((s = getenv("ide_reset_timeout")) != NULL)
677 ata_reset_time = simple_strtol(s, NULL, 10);
681 udelay (10000); /* 10 ms */
683 c = ide_inb (dev, ATA_STATUS);
685 #if defined(CONFIG_AMIGAONEG3SE) || defined(CONFIG_SC3)
686 if (i > (ata_reset_time * 100)) {
688 if (i > (ATA_RESET_TIME * 100)) {
690 puts ("** Timeout **\n");
691 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
692 #ifdef CONFIG_AMIGAONEG3SE
693 /* If this is the second bus, the first one was OK */
701 if ((i >= 100) && ((i%100)==0)) {
704 } while (c & ATA_STAT_BUSY);
706 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
707 puts ("not available ");
708 debug ("Status = 0x%02X ", c);
709 #ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
710 } else if ((c & ATA_STAT_READY) == 0) {
711 puts ("not available ");
712 debug ("Status = 0x%02X ", c);
721 #ifdef CONFIG_AMIGAONEG3SE
726 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
729 for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i) {
730 #ifdef CONFIG_IDE_LED
731 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
733 ide_dev_desc[i].type=DEV_TYPE_UNKNOWN;
734 ide_dev_desc[i].if_type=IF_TYPE_IDE;
735 ide_dev_desc[i].dev=i;
736 ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
737 ide_dev_desc[i].blksz=0;
738 ide_dev_desc[i].lba=0;
739 ide_dev_desc[i].block_read=ide_read;
740 if (!ide_bus_ok[IDE_BUS(i)])
742 ide_led (led, 1); /* LED on */
743 ide_ident(&ide_dev_desc[i]);
744 ide_led (led, 0); /* LED off */
745 dev_print(&ide_dev_desc[i]);
747 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
748 init_part (&ide_dev_desc[i]); /* initialize partition type */
756 /* ------------------------------------------------------------------------- */
758 block_dev_desc_t * ide_get_dev(int dev)
760 return (dev < CONFIG_SYS_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL;
764 #ifdef CONFIG_IDE_8xx_DIRECT
767 set_pcmcia_timing (int pmode)
769 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
770 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
773 debug ("Set timing for PIO Mode %d\n", pmode);
775 timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
776 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
777 | PCMCIA_SL (pio_config_clk[pmode].t_length)
782 pcmp->pcmc_pbr0 = CONFIG_SYS_PCMCIA_PBR0;
783 pcmp->pcmc_por0 = CONFIG_SYS_PCMCIA_POR0
784 #if (CONFIG_SYS_PCMCIA_POR0 != 0)
788 debug ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
790 pcmp->pcmc_pbr1 = CONFIG_SYS_PCMCIA_PBR1;
791 pcmp->pcmc_por1 = CONFIG_SYS_PCMCIA_POR1
792 #if (CONFIG_SYS_PCMCIA_POR1 != 0)
796 debug ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
798 pcmp->pcmc_pbr2 = CONFIG_SYS_PCMCIA_PBR2;
799 pcmp->pcmc_por2 = CONFIG_SYS_PCMCIA_POR2
800 #if (CONFIG_SYS_PCMCIA_POR2 != 0)
804 debug ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
806 pcmp->pcmc_pbr3 = CONFIG_SYS_PCMCIA_PBR3;
807 pcmp->pcmc_por3 = CONFIG_SYS_PCMCIA_POR3
808 #if (CONFIG_SYS_PCMCIA_POR3 != 0)
812 debug ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
816 pcmp->pcmc_pbr4 = CONFIG_SYS_PCMCIA_PBR4;
817 pcmp->pcmc_por4 = CONFIG_SYS_PCMCIA_POR4
818 #if (CONFIG_SYS_PCMCIA_POR4 != 0)
822 debug ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
824 pcmp->pcmc_pbr5 = CONFIG_SYS_PCMCIA_PBR5;
825 pcmp->pcmc_por5 = CONFIG_SYS_PCMCIA_POR5
826 #if (CONFIG_SYS_PCMCIA_POR5 != 0)
830 debug ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
832 pcmp->pcmc_pbr6 = CONFIG_SYS_PCMCIA_PBR6;
833 pcmp->pcmc_por6 = CONFIG_SYS_PCMCIA_POR6
834 #if (CONFIG_SYS_PCMCIA_POR6 != 0)
838 debug ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
840 pcmp->pcmc_pbr7 = CONFIG_SYS_PCMCIA_PBR7;
841 pcmp->pcmc_por7 = CONFIG_SYS_PCMCIA_POR7
842 #if (CONFIG_SYS_PCMCIA_POR7 != 0)
846 debug ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
850 #endif /* CONFIG_IDE_8xx_DIRECT */
852 /* ------------------------------------------------------------------------- */
855 # ifdef CONFIG_AMIGAONEG3SE
857 output_data_short(int dev, ulong *sect_buf, int words)
860 volatile ushort *pbuf;
862 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
863 dbuf = (ushort *)sect_buf;
873 # endif /* CONFIG_AMIGAONEG3SE */
876 /* We only need to swap data if we are running on a big endian cpu. */
877 /* But Au1x00 cpu:s already swaps data in big endian mode! */
878 #if defined(__LITTLE_ENDIAN) || ( defined(CONFIG_AU1X00) && !defined(CONFIG_GTH2) )
879 #define input_swap_data(x,y,z) input_data(x,y,z)
882 input_swap_data(int dev, ulong *sect_buf, int words)
884 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
886 volatile uchar *pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
887 volatile uchar *pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
888 ushort *dbuf = (ushort *)sect_buf;
891 for (i=0; i<2; i++) {
892 *(((uchar *)(dbuf)) + 1) = *pbuf_even;
893 *(uchar *)dbuf = *pbuf_odd;
898 volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
899 ushort *dbuf = (ushort *)sect_buf;
901 debug("in input swap data base for read is %lx\n", (unsigned long) pbuf);
905 *dbuf++ = swab16p((u16*)pbuf);
906 *dbuf++ = swab16p((u16*)pbuf);
907 #elif defined(CONFIG_PCS440EP)
911 *dbuf++ = ld_le16(pbuf);
912 *dbuf++ = ld_le16(pbuf);
917 #endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
920 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA) || defined(CONFIG_SH)
922 output_data(int dev, ulong *sect_buf, int words)
924 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
926 volatile uchar *pbuf_even;
927 volatile uchar *pbuf_odd;
929 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
930 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
931 dbuf = (uchar *)sect_buf;
934 *pbuf_even = *dbuf++;
938 *pbuf_even = *dbuf++;
944 volatile ushort *pbuf;
946 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
947 dbuf = (ushort *)sect_buf;
949 #if defined(CONFIG_PCS440EP)
950 /* not tested, because CF was write protected */
952 *pbuf = ld_le16(dbuf++);
954 *pbuf = ld_le16(dbuf++);
964 #else /* ! __PPC__ */
966 output_data(int dev, ulong *sect_buf, int words)
968 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1);
972 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA) || defined(CONFIG_SH)
974 input_data(int dev, ulong *sect_buf, int words)
976 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
978 volatile uchar *pbuf_even;
979 volatile uchar *pbuf_odd;
981 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
982 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
983 dbuf = (uchar *)sect_buf;
985 *dbuf++ = *pbuf_even;
991 *dbuf++ = *pbuf_even;
1000 volatile ushort *pbuf;
1002 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1003 dbuf = (ushort *)sect_buf;
1005 debug("in input data base for read is %lx\n", (unsigned long) pbuf);
1008 #if defined(CONFIG_PCS440EP)
1010 *dbuf++ = ld_le16(pbuf);
1012 *dbuf++ = ld_le16(pbuf);
1022 #else /* ! __PPC__ */
1024 input_data(int dev, ulong *sect_buf, int words)
1026 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1);
1029 #endif /* __PPC__ */
1031 #ifdef CONFIG_AMIGAONEG3SE
1033 input_data_short(int dev, ulong *sect_buf, int words)
1036 volatile ushort *pbuf;
1038 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1039 dbuf = (ushort *)sect_buf;
1053 /* -------------------------------------------------------------------------
1055 static void ide_ident (block_dev_desc_t *dev_desc)
1057 ulong iobuf[ATA_SECTORWORDS];
1059 hd_driveid_t *iop = (hd_driveid_t *)iobuf;
1061 #ifdef CONFIG_AMIGAONEG3SE
1070 #ifdef CONFIG_TUNE_PIO
1075 int mode, cycle_time;
1078 device=dev_desc->dev;
1079 printf (" Device %d: ", device);
1081 #ifdef CONFIG_AMIGAONEG3SE
1082 s = getenv("ide_maxbus");
1084 max_bus_scan = simple_strtol(s, NULL, 10);
1086 max_bus_scan = CONFIG_SYS_IDE_MAXBUS;
1088 if (device >= max_bus_scan*2) {
1089 dev_desc->type=DEV_TYPE_UNKNOWN;
1094 ide_led (DEVICE_LED(device), 1); /* LED on */
1097 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1098 dev_desc->if_type=IF_TYPE_IDE;
1104 /* Warning: This will be tricky to read */
1105 while (retries <= 1) {
1106 /* check signature */
1107 if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
1108 (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
1109 (ide_inb(device,ATA_CYL_LOW) == 0x14) &&
1110 (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
1111 /* ATAPI Signature found */
1112 dev_desc->if_type=IF_TYPE_ATAPI;
1113 /* Start Ident Command
1115 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
1117 * Wait for completion - ATAPI devices need more time
1120 c = ide_wait (device, ATAPI_TIME_OUT);
1124 /* Start Ident Command
1126 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
1128 /* Wait for completion
1130 c = ide_wait (device, IDE_TIME_OUT);
1132 ide_led (DEVICE_LED(device), 0); /* LED off */
1134 if (((c & ATA_STAT_DRQ) == 0) ||
1135 ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
1137 #ifdef CONFIG_AMIGAONEG3SE
1138 s = getenv("ide_doreset");
1139 if (s && strcmp(s, "on") == 0)
1142 /* Need to soft reset the device in case it's an ATAPI... */
1143 debug ("Retrying...\n");
1144 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1146 ide_outb (device, ATA_COMMAND, 0x08);
1147 udelay (500000); /* 500 ms */
1151 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1160 } /* see above - ugly to read */
1162 if (retries == 2) /* Not found */
1166 input_swap_data (device, iobuf, ATA_SECTORWORDS);
1168 ident_cpy ((unsigned char*)dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1169 ident_cpy ((unsigned char*)dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1170 ident_cpy ((unsigned char*)dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
1171 #ifdef __LITTLE_ENDIAN
1173 * firmware revision, model, and serial number have Big Endian Byte
1174 * order in Word. Convert all three to little endian.
1176 * See CF+ and CompactFlash Specification Revision 2.0:
1177 * 6.2.1.6: Identify Drive, Table 39 for more details
1180 strswab (dev_desc->revision);
1181 strswab (dev_desc->vendor);
1182 strswab (dev_desc->product);
1183 #endif /* __LITTLE_ENDIAN */
1185 if ((iop->config & 0x0080)==0x0080)
1186 dev_desc->removable = 1;
1188 dev_desc->removable = 0;
1190 #ifdef CONFIG_TUNE_PIO
1191 /* Mode 0 - 2 only, are directly determined by word 51. */
1192 pio_mode = iop->tPIO;
1194 printf("WARNING: Invalid PIO (word 51 = %d).\n", pio_mode);
1195 pio_mode = 0; /* Force it to dead slow, and hope for the best... */
1198 /* Any CompactFlash Storage Card that supports PIO mode 3 or above
1199 * shall set bit 1 of word 53 to one and support the fields contained
1200 * in words 64 through 70.
1202 if (iop->field_valid & 0x02) {
1203 /* Mode 3 and above are possible. Check in order from slow
1204 * to fast, so we wind up with the highest mode allowed.
1206 if (iop->eide_pio_modes & 0x01)
1208 if (iop->eide_pio_modes & 0x02)
1210 if (ata_id_is_cfa((u16 *)iop)) {
1211 if ((iop->cf_advanced_caps & 0x07) == 0x01)
1213 if ((iop->cf_advanced_caps & 0x07) == 0x02)
1218 /* System-specific, depends on bus speeds, etc. */
1219 ide_set_piomode(pio_mode);
1220 #endif /* CONFIG_TUNE_PIO */
1224 * Drive PIO mode autoselection
1228 printf ("tPIO = 0x%02x = %d\n",mode, mode);
1229 if (mode > 2) { /* 2 is maximum allowed tPIO value */
1231 debug ("Override tPIO -> 2\n");
1233 if (iop->field_valid & 2) { /* drive implements ATA2? */
1234 debug ("Drive implements ATA2\n");
1235 if (iop->capability & 8) { /* drive supports use_iordy? */
1236 cycle_time = iop->eide_pio_iordy;
1238 cycle_time = iop->eide_pio;
1240 debug ("cycle time = %d\n", cycle_time);
1242 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1243 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1244 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1245 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1247 printf ("PIO mode to use: PIO %d\n", mode);
1251 if (dev_desc->if_type==IF_TYPE_ATAPI) {
1252 atapi_inquiry(dev_desc);
1255 #endif /* CONFIG_ATAPI */
1259 dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
1260 #else /* ! __BIG_ENDIAN */
1262 * do not swap shorts on little endian
1264 * See CF+ and CompactFlash Specification Revision 2.0:
1265 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
1267 dev_desc->lba = iop->lba_capacity;
1268 #endif /* __BIG_ENDIAN */
1271 if (iop->command_set_2 & 0x0400) { /* LBA 48 support */
1272 dev_desc->lba48 = 1;
1273 dev_desc->lba = (unsigned long long)iop->lba48_capacity[0] |
1274 ((unsigned long long)iop->lba48_capacity[1] << 16) |
1275 ((unsigned long long)iop->lba48_capacity[2] << 32) |
1276 ((unsigned long long)iop->lba48_capacity[3] << 48);
1278 dev_desc->lba48 = 0;
1280 #endif /* CONFIG_LBA48 */
1282 dev_desc->type=DEV_TYPE_HARDDISK;
1283 dev_desc->blksz=ATA_BLOCKSIZE;
1284 dev_desc->lun=0; /* just to fill something in... */
1286 #if 0 /* only used to test the powersaving mode,
1287 * if enabled, the drive goes after 5 sec
1288 * in standby mode */
1289 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1290 c = ide_wait (device, IDE_TIME_OUT);
1291 ide_outb (device, ATA_SECT_CNT, 1);
1292 ide_outb (device, ATA_LBA_LOW, 0);
1293 ide_outb (device, ATA_LBA_MID, 0);
1294 ide_outb (device, ATA_LBA_HIGH, 0);
1295 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1296 ide_outb (device, ATA_COMMAND, 0xe3);
1298 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1303 /* ------------------------------------------------------------------------- */
1305 ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
1309 unsigned char pwrsave=0; /* power save */
1311 unsigned char lba48 = 0;
1313 if (blknr & 0x0000fffff0000000ULL) {
1314 /* more than 28 bits used, use 48bit mode */
1318 debug ("ide_read dev %d start %qX, blocks %lX buffer at %lX\n",
1319 device, blknr, blkcnt, (ulong)buffer);
1321 ide_led (DEVICE_LED(device), 1); /* LED on */
1325 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1326 c = ide_wait (device, IDE_TIME_OUT);
1328 if (c & ATA_STAT_BUSY) {
1329 printf ("IDE read: device %d not ready\n", device);
1333 /* first check if the drive is in Powersaving mode, if yes,
1334 * increase the timeout value */
1335 ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR);
1338 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1340 if (c & ATA_STAT_BUSY) {
1341 printf ("IDE read: device %d not ready\n", device);
1344 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1345 printf ("No Powersaving mode %X\n", c);
1347 c = ide_inb(device,ATA_SECT_CNT);
1348 debug ("Powersaving %02X\n",c);
1354 while (blkcnt-- > 0) {
1356 c = ide_wait (device, IDE_TIME_OUT);
1358 if (c & ATA_STAT_BUSY) {
1359 printf ("IDE read: device %d not ready\n", device);
1364 /* write high bits */
1365 ide_outb (device, ATA_SECT_CNT, 0);
1366 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1367 #ifdef CONFIG_SYS_64BIT_LBA
1368 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1369 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1371 ide_outb (device, ATA_LBA_MID, 0);
1372 ide_outb (device, ATA_LBA_HIGH, 0);
1376 ide_outb (device, ATA_SECT_CNT, 1);
1377 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1378 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1379 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1383 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1384 ide_outb (device, ATA_COMMAND, ATA_CMD_READ_EXT);
1389 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1390 ATA_DEVICE(device) |
1391 ((blknr >> 24) & 0xF) );
1392 ide_outb (device, ATA_COMMAND, ATA_CMD_READ);
1398 c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */
1401 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1404 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1405 #if defined(CONFIG_SYS_64BIT_LBA) && defined(CONFIG_SYS_64BIT_VSPRINTF)
1406 printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n",
1409 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1410 device, (ulong)blknr, c);
1415 input_data (device, buffer, ATA_SECTORWORDS);
1416 (void) ide_inb (device, ATA_STATUS); /* clear IRQ */
1420 buffer += ATA_BLOCKSIZE;
1423 ide_led (DEVICE_LED(device), 0); /* LED off */
1427 /* ------------------------------------------------------------------------- */
1430 ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
1435 unsigned char lba48 = 0;
1437 if (blknr & 0x0000fffff0000000ULL) {
1438 /* more than 28 bits used, use 48bit mode */
1443 ide_led (DEVICE_LED(device), 1); /* LED on */
1447 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1449 while (blkcnt-- > 0) {
1451 c = ide_wait (device, IDE_TIME_OUT);
1453 if (c & ATA_STAT_BUSY) {
1454 printf ("IDE read: device %d not ready\n", device);
1459 /* write high bits */
1460 ide_outb (device, ATA_SECT_CNT, 0);
1461 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1462 #ifdef CONFIG_SYS_64BIT_LBA
1463 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1464 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1466 ide_outb (device, ATA_LBA_MID, 0);
1467 ide_outb (device, ATA_LBA_HIGH, 0);
1471 ide_outb (device, ATA_SECT_CNT, 1);
1472 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1473 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1474 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1478 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1479 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
1484 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1485 ATA_DEVICE(device) |
1486 ((blknr >> 24) & 0xF) );
1487 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE);
1492 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1494 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1495 #if defined(CONFIG_SYS_64BIT_LBA) && defined(CONFIG_SYS_64BIT_VSPRINTF)
1496 printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n",
1499 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1500 device, (ulong)blknr, c);
1505 output_data (device, buffer, ATA_SECTORWORDS);
1506 c = ide_inb (device, ATA_STATUS); /* clear IRQ */
1509 buffer += ATA_BLOCKSIZE;
1512 ide_led (DEVICE_LED(device), 0); /* LED off */
1516 /* ------------------------------------------------------------------------- */
1519 * copy src to dest, skipping leading and trailing blanks and null
1520 * terminate the string
1521 * "len" is the size of available memory including the terminating '\0'
1523 static void ident_cpy (unsigned char *dst, unsigned char *src, unsigned int len)
1525 unsigned char *end, *last;
1528 end = src + len - 1;
1530 /* reserve space for '\0' */
1534 /* skip leading white space */
1535 while ((*src) && (src<end) && (*src==' '))
1538 /* copy string, omitting trailing white space */
1539 while ((*src) && (src<end)) {
1548 /* ------------------------------------------------------------------------- */
1551 * Wait until Busy bit is off, or timeout (in ms)
1552 * Return last status
1554 static uchar ide_wait (int dev, ulong t)
1556 ulong delay = 10 * t; /* poll every 100 us */
1559 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
1568 /* ------------------------------------------------------------------------- */
1570 #ifdef CONFIG_IDE_RESET
1571 extern void ide_set_reset(int idereset);
1573 static void ide_reset (void)
1575 #if defined(CONFIG_SYS_PB_12V_ENABLE) || defined(CONFIG_SYS_PB_IDE_MOTOR)
1576 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
1581 for (i=0; i<CONFIG_SYS_IDE_MAXBUS; ++i)
1583 for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i)
1584 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1586 ide_set_reset (1); /* assert reset */
1588 /* the reset signal shall be asserted for et least 25 us */
1593 #ifdef CONFIG_SYS_PB_12V_ENABLE
1594 immr->im_cpm.cp_pbdat &= ~(CONFIG_SYS_PB_12V_ENABLE); /* 12V Enable output OFF */
1595 immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_12V_ENABLE);
1596 immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_12V_ENABLE);
1597 immr->im_cpm.cp_pbdir |= CONFIG_SYS_PB_12V_ENABLE;
1599 /* wait 500 ms for the voltage to stabilize
1601 for (i=0; i<500; ++i) {
1605 immr->im_cpm.cp_pbdat |= CONFIG_SYS_PB_12V_ENABLE; /* 12V Enable output ON */
1606 #endif /* CONFIG_SYS_PB_12V_ENABLE */
1608 #ifdef CONFIG_SYS_PB_IDE_MOTOR
1609 /* configure IDE Motor voltage monitor pin as input */
1610 immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1611 immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1612 immr->im_cpm.cp_pbdir &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1614 /* wait up to 1 s for the motor voltage to stabilize
1616 for (i=0; i<1000; ++i) {
1617 if ((immr->im_cpm.cp_pbdat & CONFIG_SYS_PB_IDE_MOTOR) != 0) {
1623 if (i == 1000) { /* Timeout */
1624 printf ("\nWarning: 5V for IDE Motor missing\n");
1625 # ifdef CONFIG_STATUS_LED
1626 # ifdef STATUS_LED_YELLOW
1627 status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON );
1629 # ifdef STATUS_LED_GREEN
1630 status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF);
1632 # endif /* CONFIG_STATUS_LED */
1634 #endif /* CONFIG_SYS_PB_IDE_MOTOR */
1638 /* de-assert RESET signal */
1642 for (i=0; i<250; ++i) {
1647 #endif /* CONFIG_IDE_RESET */
1649 /* ------------------------------------------------------------------------- */
1651 #if defined(CONFIG_IDE_LED) && \
1652 !defined(CONFIG_AMIGAONEG3SE)&& \
1653 !defined(CONFIG_CPC45) && \
1654 !defined(CONFIG_HMI10) && \
1655 !defined(CONFIG_KUP4K) && \
1656 !defined(CONFIG_KUP4X)
1658 static uchar led_buffer = 0; /* Buffer for current LED status */
1660 static void ide_led (uchar led, uchar status)
1662 uchar *led_port = LED_PORT;
1664 if (status) { /* switch LED on */
1666 } else { /* switch LED off */
1670 *led_port = led_buffer;
1673 #endif /* CONFIG_IDE_LED */
1675 /* ------------------------------------------------------------------------- */
1678 /****************************************************************************
1682 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
1683 /* since ATAPI may use commands with not 4 bytes alligned length
1684 * we have our own transfer functions, 2 bytes alligned */
1686 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1688 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
1690 volatile uchar *pbuf_even;
1691 volatile uchar *pbuf_odd;
1693 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1694 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1697 *pbuf_even = *dbuf++;
1699 *pbuf_odd = *dbuf++;
1703 volatile ushort *pbuf;
1705 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1706 dbuf = (ushort *)sect_buf;
1708 debug ("in output data shorts base for read is %lx\n", (unsigned long) pbuf);
1718 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1720 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
1722 volatile uchar *pbuf_even;
1723 volatile uchar *pbuf_odd;
1725 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1726 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1729 *dbuf++ = *pbuf_even;
1731 *dbuf++ = *pbuf_odd;
1735 volatile ushort *pbuf;
1737 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1738 dbuf = (ushort *)sect_buf;
1740 debug("in input data shorts base for read is %lx\n", (unsigned long) pbuf);
1749 #else /* ! __PPC__ */
1751 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1753 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
1757 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1759 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
1762 #endif /* __PPC__ */
1765 * Wait until (Status & mask) == res, or timeout (in ms)
1766 * Return last status
1767 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1768 * and then they set their DRQ Bit
1770 static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1772 ulong delay = 10 * t; /* poll every 100 us */
1775 c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1776 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
1777 /* break if error occurs (doesn't make sense to wait more) */
1778 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1789 * issue an atapi command
1791 unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1793 unsigned char c,err,mask,res;
1795 ide_led (DEVICE_LED(device), 1); /* LED on */
1799 mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1801 #ifdef CONFIG_AMIGAONEG3SE
1802 # warning THF: Removed LBA mode ???
1804 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1805 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1806 if ((c & mask) != res) {
1807 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1811 /* write taskfile */
1812 ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
1813 ide_outb (device, ATA_SECT_CNT, 0);
1814 ide_outb (device, ATA_SECT_NUM, 0);
1815 ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF));
1816 ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
1817 #ifdef CONFIG_AMIGAONEG3SE
1818 # warning THF: Removed LBA mode ???
1820 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1822 ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET);
1825 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1827 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1829 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1830 printf ("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
1835 output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
1836 /* ATAPI Command written wait for completition */
1837 udelay (5000); /* device must set bsy */
1839 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1840 /* if no data wait for DRQ = 0 BSY = 0
1841 * if data wait for DRQ = 1 BSY = 0 */
1845 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1846 if ((c & mask) != res ) {
1847 if (c & ATA_STAT_ERR) {
1848 err=(ide_inb(device,ATA_ERROR_REG))>>4;
1849 debug ("atapi_issue 1 returned sense key %X status %02X\n",err,c);
1851 printf ("ATAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c);
1856 n=ide_inb(device, ATA_CYL_HIGH);
1858 n+=ide_inb(device, ATA_CYL_LOW);
1860 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1864 if((n==0)&&(buflen<0)) {
1865 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1870 debug ("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
1872 if(n!=0) { /* data transfer */
1873 debug ("ATAPI_ISSUE: %d Bytes to transfer\n",n);
1874 /* we transfer shorts */
1876 /* ok now decide if it is an in or output */
1877 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
1878 debug ("Write to device\n");
1879 output_data_shorts(device,(unsigned short *)buffer,n);
1881 debug ("Read from device @ %p shorts %d\n",buffer,n);
1882 input_data_shorts(device,(unsigned short *)buffer,n);
1885 udelay(5000); /* seems that some CD ROMs need this... */
1886 mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1888 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1889 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1890 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
1891 debug ("atapi_issue 2 returned sense key %X status %X\n",err,c);
1896 ide_led (DEVICE_LED(device), 0); /* LED off */
1901 * sending the command to atapi_issue. If an status other than good
1902 * returns, an request_sense will be issued
1905 #define ATAPI_DRIVE_NOT_READY 100
1906 #define ATAPI_UNIT_ATTN 10
1908 unsigned char atapi_issue_autoreq (int device,
1911 unsigned char *buffer,
1914 unsigned char sense_data[18],sense_ccb[12];
1915 unsigned char res,key,asc,ascq;
1916 int notready,unitattn;
1918 #ifdef CONFIG_AMIGAONEG3SE
1920 unsigned int timeout, retrycnt;
1922 s = getenv("ide_cd_timeout");
1923 timeout = s ? (simple_strtol(s, NULL, 10)*1000000)/5 : 0;
1928 unitattn=ATAPI_UNIT_ATTN;
1929 notready=ATAPI_DRIVE_NOT_READY;
1932 res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1934 return (0); /* Ok */
1937 return (0xFF); /* error */
1939 debug ("(auto_req)atapi_issue returned sense key %X\n",res);
1941 memset(sense_ccb,0,sizeof(sense_ccb));
1942 memset(sense_data,0,sizeof(sense_data));
1943 sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
1944 sense_ccb[4]=18; /* allocation Length */
1946 res=atapi_issue(device,sense_ccb,12,sense_data,18);
1947 key=(sense_data[2]&0xF);
1948 asc=(sense_data[12]);
1949 ascq=(sense_data[13]);
1951 debug ("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1952 debug (" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1959 return 0; /* ok device ready */
1961 if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1966 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1969 if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1974 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1978 debug ("Media not present\n");
1982 #ifdef CONFIG_AMIGAONEG3SE
1983 if ((sense_data[2]&0xF)==0x0B) {
1984 debug ("ABORTED COMMAND...retry\n");
1990 if ((sense_data[2]&0xf) == 0x02 &&
1991 sense_data[12] == 0x04 &&
1992 sense_data[13] == 0x01 ) {
1993 debug ("Waiting for unit to become active\n");
1999 #endif /* CONFIG_AMIGAONEG3SE */
2001 printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
2003 debug ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
2008 static void atapi_inquiry(block_dev_desc_t * dev_desc)
2010 unsigned char ccb[12]; /* Command descriptor block */
2011 unsigned char iobuf[64]; /* temp buf */
2015 device=dev_desc->dev;
2016 dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
2017 dev_desc->block_read=atapi_read;
2019 memset(ccb,0,sizeof(ccb));
2020 memset(iobuf,0,sizeof(iobuf));
2022 ccb[0]=ATAPI_CMD_INQUIRY;
2023 ccb[4]=40; /* allocation Legnth */
2024 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
2026 debug ("ATAPI_CMD_INQUIRY returned %x\n",c);
2030 /* copy device ident strings */
2031 ident_cpy((unsigned char*)dev_desc->vendor,&iobuf[8],8);
2032 ident_cpy((unsigned char*)dev_desc->product,&iobuf[16],16);
2033 ident_cpy((unsigned char*)dev_desc->revision,&iobuf[32],5);
2038 dev_desc->type=iobuf[0] & 0x1f;
2040 if ((iobuf[1]&0x80)==0x80)
2041 dev_desc->removable = 1;
2043 dev_desc->removable = 0;
2045 memset(ccb,0,sizeof(ccb));
2046 memset(iobuf,0,sizeof(iobuf));
2047 ccb[0]=ATAPI_CMD_START_STOP;
2048 ccb[4]=0x03; /* start */
2050 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
2052 debug ("ATAPI_CMD_START_STOP returned %x\n",c);
2056 memset(ccb,0,sizeof(ccb));
2057 memset(iobuf,0,sizeof(iobuf));
2058 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
2060 debug ("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
2064 memset(ccb,0,sizeof(ccb));
2065 memset(iobuf,0,sizeof(iobuf));
2066 ccb[0]=ATAPI_CMD_READ_CAP;
2067 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
2068 debug ("ATAPI_CMD_READ_CAP returned %x\n",c);
2072 debug ("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
2073 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
2074 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
2076 dev_desc->lba =((unsigned long)iobuf[0]<<24) +
2077 ((unsigned long)iobuf[1]<<16) +
2078 ((unsigned long)iobuf[2]<< 8) +
2079 ((unsigned long)iobuf[3]);
2080 dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
2081 ((unsigned long)iobuf[5]<<16) +
2082 ((unsigned long)iobuf[6]<< 8) +
2083 ((unsigned long)iobuf[7]);
2085 dev_desc->lba48 = 0; /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
2093 * we transfer only one block per command, since the multiple DRQ per
2094 * command is not yet implemented
2096 #define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
2097 #define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
2098 #define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
2100 ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
2103 unsigned char ccb[12]; /* Command descriptor block */
2106 debug ("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
2107 device, blknr, blkcnt, (ulong)buffer);
2110 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
2111 cnt=ATAPI_READ_MAX_BLOCK;
2115 ccb[0]=ATAPI_CMD_READ_12;
2116 ccb[1]=0; /* reserved */
2117 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
2118 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */
2119 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
2120 ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */
2121 ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */
2122 ccb[7]=(unsigned char) (cnt >>16) & 0xFF;
2123 ccb[8]=(unsigned char) (cnt >> 8) & 0xFF;
2124 ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */
2125 ccb[10]=0; /* reserved */
2126 ccb[11]=0; /* reserved */
2128 if (atapi_issue_autoreq(device,ccb,12,
2129 (unsigned char *)buffer,
2130 cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
2136 buffer+=(cnt*ATAPI_READ_BLOCK_SIZE);
2137 } while (blkcnt > 0);
2141 /* ------------------------------------------------------------------------- */
2143 #endif /* CONFIG_ATAPI */
2148 "reset - reset IDE controller\n"
2149 "ide info - show available IDE devices\n"
2150 "ide device [dev] - show or set current device\n"
2151 "ide part [dev] - print partition table of one or all IDE devices\n"
2152 "ide read addr blk# cnt\n"
2153 "ide write addr blk# cnt - read/write `cnt'"
2154 " blocks starting at block `blk#'\n"
2155 " to/from memory address `addr'\n"
2159 diskboot, 3, 1, do_diskboot,
2160 "boot from IDE device",
2161 "loadAddr dev:part\n"