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>
34 #if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
45 #ifdef CONFIG_STATUS_LED
46 # include <status_led.h>
51 /* Macros depend on this variable */
52 unsigned long mips_io_port_base = 0;
56 #ifdef CONFIG_SHOW_BOOT_PROGRESS
57 # include <status_led.h>
58 # define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
60 # define SHOW_BOOT_PROGRESS(arg)
63 #ifdef CONFIG_IDE_8xx_DIRECT
64 DECLARE_GLOBAL_DATA_PTR;
68 # define EIEIO __asm__ volatile ("eieio")
69 # define SYNC __asm__ volatile ("sync")
71 # define EIEIO /* nothing */
72 # define SYNC /* nothing */
75 #if (CONFIG_COMMANDS & CFG_CMD_IDE)
77 #ifdef CONFIG_IDE_8xx_DIRECT
78 /* Timings for IDE Interface
80 * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk
81 * 70 165 30 PIO-Mode 0, [ns]
83 * 50 125 20 PIO-Mode 1, [ns]
85 * 30 100 15 PIO-Mode 2, [ns]
87 * 30 80 10 PIO-Mode 3, [ns]
89 * 25 70 10 PIO-Mode 4, [ns]
93 const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] =
95 /* Setup Length Hold */
96 { 70, 165, 30 }, /* PIO-Mode 0, [ns] */
97 { 50, 125, 20 }, /* PIO-Mode 1, [ns] */
98 { 30, 101, 15 }, /* PIO-Mode 2, [ns] */
99 { 30, 80, 10 }, /* PIO-Mode 3, [ns] */
100 { 25, 70, 10 }, /* PIO-Mode 4, [ns] */
103 static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1];
106 #define CFG_PIO_MODE 0 /* use a relaxed default */
108 static int pio_mode = CFG_PIO_MODE;
110 /* Make clock cycles and always round up */
112 #define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U )
114 #endif /* CONFIG_IDE_8xx_DIRECT */
116 /* ------------------------------------------------------------------------- */
118 /* Current I/O Device */
119 static int curr_device = -1;
121 /* Current offset for IDE0 / IDE1 bus access */
122 ulong ide_bus_offset[CFG_IDE_MAXBUS] = {
123 #if defined(CFG_ATA_IDE0_OFFSET)
126 #if defined(CFG_ATA_IDE1_OFFSET) && (CFG_IDE_MAXBUS > 1)
132 #define ATA_CURR_BASE(dev) (CFG_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)])
134 #ifndef CONFIG_AMIGAONEG3SE
135 static int ide_bus_ok[CFG_IDE_MAXBUS];
137 static int ide_bus_ok[CFG_IDE_MAXBUS] = {0,};
140 block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE];
141 /* ------------------------------------------------------------------------- */
143 #ifdef CONFIG_IDE_LED
144 #if !defined(CONFIG_KUP4K) && !defined(CONFIG_KUP4X) &&!defined(CONFIG_BMS2003) &&!defined(CONFIG_CPC45)
145 static void ide_led (uchar led, uchar status);
147 extern void ide_led (uchar led, uchar status);
150 #ifndef CONFIG_AMIGAONEG3SE
151 #define ide_led(a,b) /* dummy */
153 extern void ide_led(uchar led, uchar status);
156 #define CONFIG_IDE_LED 1
157 #define DEVICE_LED(x) 1
161 #ifdef CONFIG_IDE_RESET
162 static void ide_reset (void);
164 #define ide_reset() /* dummy */
167 static void ide_ident (block_dev_desc_t *dev_desc);
168 static uchar ide_wait (int dev, ulong t);
170 #define IDE_TIME_OUT 2000 /* 2 sec timeout */
172 #define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
174 #define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
176 static void __inline__ ide_outb(int dev, int port, unsigned char val);
177 static unsigned char __inline__ ide_inb(int dev, int port);
178 static void input_data(int dev, ulong *sect_buf, int words);
179 static void output_data(int dev, ulong *sect_buf, int words);
180 static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
184 static void atapi_inquiry(block_dev_desc_t *dev_desc);
185 ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer);
189 #ifdef CONFIG_IDE_8xx_DIRECT
190 static void set_pcmcia_timing (int pmode);
193 /* ------------------------------------------------------------------------- */
195 int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
202 printf ("Usage:\n%s\n", cmdtp->usage);
205 if (strncmp(argv[1],"res",3) == 0) {
207 #ifdef CONFIG_IDE_8xx_DIRECT
208 " on PCMCIA " PCMCIA_SLOT_MSG
214 } else if (strncmp(argv[1],"inf",3) == 0) {
219 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
220 if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN)
221 continue; /* list only known devices */
222 printf ("IDE device %d: ", i);
223 dev_print(&ide_dev_desc[i]);
227 } else if (strncmp(argv[1],"dev",3) == 0) {
228 if ((curr_device < 0) || (curr_device >= CFG_IDE_MAXDEVICE)) {
229 puts ("\nno IDE devices available\n");
232 printf ("\nIDE device %d: ", curr_device);
233 dev_print(&ide_dev_desc[curr_device]);
235 } else if (strncmp(argv[1],"part",4) == 0) {
238 for (ok=0, dev=0; dev<CFG_IDE_MAXDEVICE; ++dev) {
239 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
243 print_part(&ide_dev_desc[dev]);
247 puts ("\nno IDE devices available\n");
252 printf ("Usage:\n%s\n", cmdtp->usage);
255 if (strncmp(argv[1],"dev",3) == 0) {
256 int dev = (int)simple_strtoul(argv[2], NULL, 10);
258 printf ("\nIDE device %d: ", dev);
259 if (dev >= CFG_IDE_MAXDEVICE) {
260 puts ("unknown device\n");
263 dev_print(&ide_dev_desc[dev]);
266 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
272 puts ("... is now current device\n");
275 } else if (strncmp(argv[1],"part",4) == 0) {
276 int dev = (int)simple_strtoul(argv[2], NULL, 10);
278 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
279 print_part(&ide_dev_desc[dev]);
281 printf ("\nIDE device %d not available\n", dev);
286 } else if (strncmp(argv[1],"pio",4) == 0) {
287 int mode = (int)simple_strtoul(argv[2], NULL, 10);
289 if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) {
294 printf ("\nInvalid PIO mode %d (0 ... %d only)\n",
295 mode, IDE_MAX_PIO_MODE);
301 printf ("Usage:\n%s\n", cmdtp->usage);
304 /* at least 4 args */
306 if (strcmp(argv[1],"read") == 0) {
307 ulong addr = simple_strtoul(argv[2], NULL, 16);
308 ulong cnt = simple_strtoul(argv[4], NULL, 16);
310 #ifdef CFG_64BIT_STRTOUL
311 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
313 printf ("\nIDE read: device %d block # %qd, count %ld ... ",
314 curr_device, blk, cnt);
316 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
318 printf ("\nIDE read: device %d block # %ld, count %ld ... ",
319 curr_device, blk, cnt);
322 n = ide_dev_desc[curr_device].block_read (curr_device,
325 /* flush cache after read */
326 flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz);
328 printf ("%ld blocks read: %s\n",
329 n, (n==cnt) ? "OK" : "ERROR");
335 } else if (strcmp(argv[1],"write") == 0) {
336 ulong addr = simple_strtoul(argv[2], NULL, 16);
337 ulong cnt = simple_strtoul(argv[4], NULL, 16);
339 #ifdef CFG_64BIT_STRTOUL
340 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
342 printf ("\nIDE write: device %d block # %qd, count %ld ... ",
343 curr_device, blk, cnt);
345 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
347 printf ("\nIDE write: device %d block # %ld, count %ld ... ",
348 curr_device, blk, cnt);
351 n = ide_write (curr_device, blk, cnt, (ulong *)addr);
353 printf ("%ld blocks written: %s\n",
354 n, (n==cnt) ? "OK" : "ERROR");
361 printf ("Usage:\n%s\n", cmdtp->usage);
369 int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
371 char *boot_device = NULL;
374 ulong addr, cnt, checksum;
375 disk_partition_t info;
381 addr = CFG_LOAD_ADDR;
382 boot_device = getenv ("bootdevice");
385 addr = simple_strtoul(argv[1], NULL, 16);
386 boot_device = getenv ("bootdevice");
389 addr = simple_strtoul(argv[1], NULL, 16);
390 boot_device = argv[2];
393 printf ("Usage:\n%s\n", cmdtp->usage);
394 SHOW_BOOT_PROGRESS (-1);
399 puts ("\n** No boot device **\n");
400 SHOW_BOOT_PROGRESS (-1);
404 dev = simple_strtoul(boot_device, &ep, 16);
406 if (ide_dev_desc[dev].type==DEV_TYPE_UNKNOWN) {
407 printf ("\n** Device %d not available\n", dev);
408 SHOW_BOOT_PROGRESS (-1);
414 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
415 SHOW_BOOT_PROGRESS (-1);
418 part = simple_strtoul(++ep, NULL, 16);
420 if (get_partition_info (ide_dev_desc, part, &info)) {
421 SHOW_BOOT_PROGRESS (-1);
424 if ((strncmp((char *)info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
425 (strncmp((char *)info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
426 printf ("\n** Invalid partition type \"%.32s\""
427 " (expect \"" BOOT_PART_TYPE "\")\n",
429 SHOW_BOOT_PROGRESS (-1);
433 printf ("\nLoading from IDE device %d, partition %d: "
434 "Name: %.32s Type: %.32s\n",
435 dev, part, info.name, info.type);
437 debug ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
438 info.start, info.size, info.blksz);
440 if (ide_dev_desc[dev].block_read (dev, info.start, 1, (ulong *)addr) != 1) {
441 printf ("** Read error on %d:%d\n", dev, part);
442 SHOW_BOOT_PROGRESS (-1);
446 hdr = (image_header_t *)addr;
448 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
449 printf("\n** Bad Magic Number **\n");
450 SHOW_BOOT_PROGRESS (-1);
454 checksum = ntohl(hdr->ih_hcrc);
457 if (crc32 (0, (uchar *)hdr, sizeof(image_header_t)) != checksum) {
458 puts ("\n** Bad Header Checksum **\n");
459 SHOW_BOOT_PROGRESS (-2);
462 hdr->ih_hcrc = htonl(checksum); /* restore checksum for later use */
464 print_image_hdr (hdr);
466 cnt = (ntohl(hdr->ih_size) + sizeof(image_header_t));
467 cnt += info.blksz - 1;
471 if (ide_dev_desc[dev].block_read (dev, info.start+1, cnt,
472 (ulong *)(addr+info.blksz)) != cnt) {
473 printf ("** Read error on %d:%d\n", dev, part);
474 SHOW_BOOT_PROGRESS (-1);
479 /* Loading ok, update default load address */
483 /* Check if we should attempt an auto-start */
484 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
486 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
488 local_args[0] = argv[0];
489 local_args[1] = NULL;
491 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
493 do_bootm (cmdtp, 0, 1, local_args);
499 /* ------------------------------------------------------------------------- */
504 #ifdef CONFIG_IDE_8xx_DIRECT
505 volatile immap_t *immr = (immap_t *)CFG_IMMR;
506 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
510 #ifdef CONFIG_AMIGAONEG3SE
511 unsigned int max_bus_scan;
512 unsigned int ata_reset_time;
515 #ifdef CONFIG_IDE_8xx_PCCARD
516 extern int pcmcia_on (void);
517 extern int ide_devices_found; /* Initialized in check_ide_device() */
518 #endif /* CONFIG_IDE_8xx_PCCARD */
520 #ifdef CONFIG_IDE_PREINIT
521 extern int ide_preinit (void);
524 if (ide_preinit ()) {
525 puts ("ide_preinit failed\n");
528 #endif /* CONFIG_IDE_PREINIT */
530 #ifdef CONFIG_IDE_8xx_PCCARD
531 extern int pcmcia_on (void);
532 extern int ide_devices_found; /* Initialized in check_ide_device() */
536 ide_devices_found = 0;
537 /* initialize the PCMCIA IDE adapter card */
539 if (!ide_devices_found)
541 udelay (1000000); /* 1 s */
542 #endif /* CONFIG_IDE_8xx_PCCARD */
546 #ifdef CONFIG_IDE_8xx_DIRECT
547 /* Initialize PIO timing tables */
548 for (i=0; i <= IDE_MAX_PIO_MODE; ++i) {
549 pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup,
551 pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
553 pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold,
555 debug ( "PIO Mode %d: setup=%2d ns/%d clk"
557 " hold=%2d ns/%d clk\n",
559 pio_config_ns[i].t_setup, pio_config_clk[i].t_setup,
560 pio_config_ns[i].t_length, pio_config_clk[i].t_length,
561 pio_config_ns[i].t_hold, pio_config_clk[i].t_hold);
563 #endif /* CONFIG_IDE_8xx_DIRECT */
565 /* Reset the IDE just to be sure.
566 * Light LED's to show
568 ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */
569 ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */
571 #ifdef CONFIG_IDE_8xx_DIRECT
572 /* PCMCIA / IDE initialization for common mem space */
573 pcmp->pcmc_pgcrb = 0;
575 /* start in PIO mode 0 - most relaxed timings */
577 set_pcmcia_timing (pio_mode);
578 #endif /* CONFIG_IDE_8xx_DIRECT */
581 * Wait for IDE to get ready.
582 * According to spec, this can take up to 31 seconds!
584 #ifndef CONFIG_AMIGAONEG3SE
585 for (bus=0; bus<CFG_IDE_MAXBUS; ++bus) {
586 int dev = bus * (CFG_IDE_MAXDEVICE / CFG_IDE_MAXBUS);
588 s = getenv("ide_maxbus");
590 max_bus_scan = simple_strtol(s, NULL, 10);
592 max_bus_scan = CFG_IDE_MAXBUS;
594 for (bus=0; bus<max_bus_scan; ++bus) {
595 int dev = bus * (CFG_IDE_MAXDEVICE / max_bus_scan);
598 #ifdef CONFIG_IDE_8xx_PCCARD
599 /* Skip non-ide devices from probing */
600 if ((ide_devices_found & (1 << bus)) == 0) {
601 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
605 printf ("Bus %d: ", bus);
611 udelay (100000); /* 100 ms */
612 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
613 udelay (100000); /* 100 ms */
614 #ifdef CONFIG_AMIGAONEG3SE
615 ata_reset_time = ATA_RESET_TIME;
616 s = getenv("ide_reset_timeout");
617 if (s) ata_reset_time = 2*simple_strtol(s, NULL, 10);
621 udelay (10000); /* 10 ms */
623 c = ide_inb (dev, ATA_STATUS);
625 #ifdef CONFIG_AMIGAONEG3SE
626 if (i > (ata_reset_time * 100)) {
628 if (i > (ATA_RESET_TIME * 100)) {
630 puts ("** Timeout **\n");
631 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
632 #ifdef CONFIG_AMIGAONEG3SE
633 /* If this is the second bus, the first one was OK */
641 if ((i >= 100) && ((i%100)==0)) {
644 } while (c & ATA_STAT_BUSY);
646 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
647 puts ("not available ");
648 debug ("Status = 0x%02X ", c);
649 #ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
650 } else if ((c & ATA_STAT_READY) == 0) {
651 puts ("not available ");
652 debug ("Status = 0x%02X ", c);
661 #ifdef CONFIG_AMIGAONEG3SE
666 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
669 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
670 #ifdef CONFIG_IDE_LED
671 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
673 ide_dev_desc[i].type=DEV_TYPE_UNKNOWN;
674 ide_dev_desc[i].if_type=IF_TYPE_IDE;
675 ide_dev_desc[i].dev=i;
676 ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
677 ide_dev_desc[i].blksz=0;
678 ide_dev_desc[i].lba=0;
679 ide_dev_desc[i].block_read=ide_read;
680 if (!ide_bus_ok[IDE_BUS(i)])
682 ide_led (led, 1); /* LED on */
683 ide_ident(&ide_dev_desc[i]);
684 ide_led (led, 0); /* LED off */
685 dev_print(&ide_dev_desc[i]);
687 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
688 init_part (&ide_dev_desc[i]); /* initialize partition type */
696 /* ------------------------------------------------------------------------- */
698 block_dev_desc_t * ide_get_dev(int dev)
700 return ((block_dev_desc_t *)&ide_dev_desc[dev]);
704 #ifdef CONFIG_IDE_8xx_DIRECT
707 set_pcmcia_timing (int pmode)
709 volatile immap_t *immr = (immap_t *)CFG_IMMR;
710 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
713 debug ("Set timing for PIO Mode %d\n", pmode);
715 timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
716 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
717 | PCMCIA_SL (pio_config_clk[pmode].t_length)
722 pcmp->pcmc_pbr0 = CFG_PCMCIA_PBR0;
723 pcmp->pcmc_por0 = CFG_PCMCIA_POR0
724 #if (CFG_PCMCIA_POR0 != 0)
728 debug ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
730 pcmp->pcmc_pbr1 = CFG_PCMCIA_PBR1;
731 pcmp->pcmc_por1 = CFG_PCMCIA_POR1
732 #if (CFG_PCMCIA_POR1 != 0)
736 debug ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
738 pcmp->pcmc_pbr2 = CFG_PCMCIA_PBR2;
739 pcmp->pcmc_por2 = CFG_PCMCIA_POR2
740 #if (CFG_PCMCIA_POR2 != 0)
744 debug ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
746 pcmp->pcmc_pbr3 = CFG_PCMCIA_PBR3;
747 pcmp->pcmc_por3 = CFG_PCMCIA_POR3
748 #if (CFG_PCMCIA_POR3 != 0)
752 debug ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
756 pcmp->pcmc_pbr4 = CFG_PCMCIA_PBR4;
757 pcmp->pcmc_por4 = CFG_PCMCIA_POR4
758 #if (CFG_PCMCIA_POR4 != 0)
762 debug ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
764 pcmp->pcmc_pbr5 = CFG_PCMCIA_PBR5;
765 pcmp->pcmc_por5 = CFG_PCMCIA_POR5
766 #if (CFG_PCMCIA_POR5 != 0)
770 debug ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
772 pcmp->pcmc_pbr6 = CFG_PCMCIA_PBR6;
773 pcmp->pcmc_por6 = CFG_PCMCIA_POR6
774 #if (CFG_PCMCIA_POR6 != 0)
778 debug ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
780 pcmp->pcmc_pbr7 = CFG_PCMCIA_PBR7;
781 pcmp->pcmc_por7 = CFG_PCMCIA_POR7
782 #if (CFG_PCMCIA_POR7 != 0)
786 debug ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
790 #endif /* CONFIG_IDE_8xx_DIRECT */
792 /* ------------------------------------------------------------------------- */
794 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
795 static void __inline__
796 ide_outb(int dev, int port, unsigned char val)
798 debug ("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
799 dev, port, val, (ATA_CURR_BASE(dev)+port));
801 /* Ensure I/O operations complete */
803 *((uchar *)(ATA_CURR_BASE(dev)+port)) = val;
805 #else /* ! __PPC__ */
806 static void __inline__
807 ide_outb(int dev, int port, unsigned char val)
809 outb(val, ATA_CURR_BASE(dev)+port);
814 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
815 static unsigned char __inline__
816 ide_inb(int dev, int port)
819 /* Ensure I/O operations complete */
821 val = *((uchar *)(ATA_CURR_BASE(dev)+port));
822 debug ("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
823 dev, port, (ATA_CURR_BASE(dev)+port), val);
826 #else /* ! __PPC__ */
827 static unsigned char __inline__
828 ide_inb(int dev, int port)
830 return inb(ATA_CURR_BASE(dev)+port);
835 # ifdef CONFIG_AMIGAONEG3SE
837 output_data_short(int dev, ulong *sect_buf, int words)
840 volatile ushort *pbuf;
842 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
843 dbuf = (ushort *)sect_buf;
853 # endif /* CONFIG_AMIGAONEG3SE */
856 /* We only need to swap data if we are running on a big endian cpu. */
857 /* But Au1x00 cpu:s already swaps data in big endian mode! */
858 #if defined(__LITTLE_ENDIAN) || defined(CONFIG_AU1X00)
859 #define input_swap_data(x,y,z) input_data(x,y,z)
862 input_swap_data(int dev, ulong *sect_buf, int words)
864 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
866 volatile uchar *pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
867 volatile uchar *pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
868 ushort *dbuf = (ushort *)sect_buf;
871 for (i=0; i<2; i++) {
872 *(((uchar *)(dbuf)) + 1) = *pbuf_even;
873 *(uchar *)dbuf = *pbuf_odd;
878 volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
879 ushort *dbuf = (ushort *)sect_buf;
881 debug("in input swap data base for read is %lx\n", (unsigned long) pbuf);
884 *dbuf++ = ld_le16(pbuf);
885 *dbuf++ = ld_le16(pbuf);
889 #endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
892 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
894 output_data(int dev, ulong *sect_buf, int words)
896 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
898 volatile uchar *pbuf_even;
899 volatile uchar *pbuf_odd;
901 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
902 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
903 dbuf = (uchar *)sect_buf;
906 *pbuf_even = *dbuf++;
910 *pbuf_even = *dbuf++;
916 volatile ushort *pbuf;
918 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
919 dbuf = (ushort *)sect_buf;
928 #else /* ! __PPC__ */
930 output_data(int dev, ulong *sect_buf, int words)
932 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1);
936 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
938 input_data(int dev, ulong *sect_buf, int words)
940 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
942 volatile uchar *pbuf_even;
943 volatile uchar *pbuf_odd;
945 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
946 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
947 dbuf = (uchar *)sect_buf;
949 *dbuf++ = *pbuf_even;
955 *dbuf++ = *pbuf_even;
964 volatile ushort *pbuf;
966 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
967 dbuf = (ushort *)sect_buf;
969 debug("in input data base for read is %lx\n", (unsigned long) pbuf);
979 #else /* ! __PPC__ */
981 input_data(int dev, ulong *sect_buf, int words)
983 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1);
988 #ifdef CONFIG_AMIGAONEG3SE
990 input_data_short(int dev, ulong *sect_buf, int words)
993 volatile ushort *pbuf;
995 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
996 dbuf = (ushort *)sect_buf;
1010 /* -------------------------------------------------------------------------
1012 static void ide_ident (block_dev_desc_t *dev_desc)
1014 ulong iobuf[ATA_SECTORWORDS];
1016 hd_driveid_t *iop = (hd_driveid_t *)iobuf;
1018 #ifdef CONFIG_AMIGAONEG3SE
1028 int mode, cycle_time;
1031 device=dev_desc->dev;
1032 printf (" Device %d: ", device);
1034 #ifdef CONFIG_AMIGAONEG3SE
1035 s = getenv("ide_maxbus");
1037 max_bus_scan = simple_strtol(s, NULL, 10);
1039 max_bus_scan = CFG_IDE_MAXBUS;
1041 if (device >= max_bus_scan*2) {
1042 dev_desc->type=DEV_TYPE_UNKNOWN;
1047 ide_led (DEVICE_LED(device), 1); /* LED on */
1050 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1051 dev_desc->if_type=IF_TYPE_IDE;
1057 /* Warning: This will be tricky to read */
1058 while (retries <= 1) {
1059 /* check signature */
1060 if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
1061 (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
1062 (ide_inb(device,ATA_CYL_LOW) == 0x14) &&
1063 (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
1064 /* ATAPI Signature found */
1065 dev_desc->if_type=IF_TYPE_ATAPI;
1066 /* Start Ident Command
1068 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
1070 * Wait for completion - ATAPI devices need more time
1073 c = ide_wait (device, ATAPI_TIME_OUT);
1077 /* Start Ident Command
1079 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
1081 /* Wait for completion
1083 c = ide_wait (device, IDE_TIME_OUT);
1085 ide_led (DEVICE_LED(device), 0); /* LED off */
1087 if (((c & ATA_STAT_DRQ) == 0) ||
1088 ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
1090 #ifdef CONFIG_AMIGAONEG3SE
1091 s = getenv("ide_doreset");
1092 if (s && strcmp(s, "on") == 0)
1095 /* Need to soft reset the device in case it's an ATAPI... */
1096 debug ("Retrying...\n");
1097 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1099 ide_outb (device, ATA_COMMAND, 0x08);
1100 udelay (500000); /* 500 ms */
1104 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1113 } /* see above - ugly to read */
1115 if (retries == 2) /* Not found */
1119 input_swap_data (device, iobuf, ATA_SECTORWORDS);
1121 ident_cpy (dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1122 ident_cpy (dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1123 ident_cpy (dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
1124 #ifdef __LITTLE_ENDIAN
1126 * firmware revision and model number have Big Endian Byte
1127 * order in Word. Convert both to little endian.
1129 * See CF+ and CompactFlash Specification Revision 2.0:
1130 * 6.2.1.6: Identfy Drive, Table 39 for more details
1133 strswab (dev_desc->revision);
1134 strswab (dev_desc->vendor);
1135 #endif /* __LITTLE_ENDIAN */
1137 if ((iop->config & 0x0080)==0x0080)
1138 dev_desc->removable = 1;
1140 dev_desc->removable = 0;
1144 * Drive PIO mode autoselection
1148 printf ("tPIO = 0x%02x = %d\n",mode, mode);
1149 if (mode > 2) { /* 2 is maximum allowed tPIO value */
1151 debug ("Override tPIO -> 2\n");
1153 if (iop->field_valid & 2) { /* drive implements ATA2? */
1154 debug ("Drive implements ATA2\n");
1155 if (iop->capability & 8) { /* drive supports use_iordy? */
1156 cycle_time = iop->eide_pio_iordy;
1158 cycle_time = iop->eide_pio;
1160 debug ("cycle time = %d\n", cycle_time);
1162 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1163 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1164 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1165 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1167 printf ("PIO mode to use: PIO %d\n", mode);
1171 if (dev_desc->if_type==IF_TYPE_ATAPI) {
1172 atapi_inquiry(dev_desc);
1175 #endif /* CONFIG_ATAPI */
1179 dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
1180 #else /* ! __BIG_ENDIAN */
1182 * do not swap shorts on little endian
1184 * See CF+ and CompactFlash Specification Revision 2.0:
1185 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
1187 dev_desc->lba = iop->lba_capacity;
1188 #endif /* __BIG_ENDIAN */
1191 if (iop->command_set_2 & 0x0400) { /* LBA 48 support */
1192 dev_desc->lba48 = 1;
1193 dev_desc->lba = (unsigned long long)iop->lba48_capacity[0] |
1194 ((unsigned long long)iop->lba48_capacity[1] << 16) |
1195 ((unsigned long long)iop->lba48_capacity[2] << 32) |
1196 ((unsigned long long)iop->lba48_capacity[3] << 48);
1198 dev_desc->lba48 = 0;
1200 #endif /* CONFIG_LBA48 */
1202 dev_desc->type=DEV_TYPE_HARDDISK;
1203 dev_desc->blksz=ATA_BLOCKSIZE;
1204 dev_desc->lun=0; /* just to fill something in... */
1206 #if 0 /* only used to test the powersaving mode,
1207 * if enabled, the drive goes after 5 sec
1208 * in standby mode */
1209 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1210 c = ide_wait (device, IDE_TIME_OUT);
1211 ide_outb (device, ATA_SECT_CNT, 1);
1212 ide_outb (device, ATA_LBA_LOW, 0);
1213 ide_outb (device, ATA_LBA_MID, 0);
1214 ide_outb (device, ATA_LBA_HIGH, 0);
1215 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1216 ide_outb (device, ATA_COMMAND, 0xe3);
1218 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1223 /* ------------------------------------------------------------------------- */
1225 ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
1229 unsigned char pwrsave=0; /* power save */
1231 unsigned char lba48 = 0;
1233 if (blknr & 0x0000fffff0000000) {
1234 /* more than 28 bits used, use 48bit mode */
1238 debug ("ide_read dev %d start %qX, blocks %lX buffer at %lX\n",
1239 device, blknr, blkcnt, (ulong)buffer);
1241 ide_led (DEVICE_LED(device), 1); /* LED on */
1245 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1246 c = ide_wait (device, IDE_TIME_OUT);
1248 if (c & ATA_STAT_BUSY) {
1249 printf ("IDE read: device %d not ready\n", device);
1253 /* first check if the drive is in Powersaving mode, if yes,
1254 * increase the timeout value */
1255 ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR);
1258 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1260 if (c & ATA_STAT_BUSY) {
1261 printf ("IDE read: device %d not ready\n", device);
1264 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1265 printf ("No Powersaving mode %X\n", c);
1267 c = ide_inb(device,ATA_SECT_CNT);
1268 debug ("Powersaving %02X\n",c);
1274 while (blkcnt-- > 0) {
1276 c = ide_wait (device, IDE_TIME_OUT);
1278 if (c & ATA_STAT_BUSY) {
1279 printf ("IDE read: device %d not ready\n", device);
1284 /* write high bits */
1285 ide_outb (device, ATA_SECT_CNT, 0);
1286 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1287 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1288 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1291 ide_outb (device, ATA_SECT_CNT, 1);
1292 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1293 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1294 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1298 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1299 ide_outb (device, ATA_COMMAND, ATA_CMD_READ_EXT);
1304 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1305 ATA_DEVICE(device) |
1306 ((blknr >> 24) & 0xF) );
1307 ide_outb (device, ATA_COMMAND, ATA_CMD_READ);
1313 c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */
1316 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1319 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1320 #if defined(CFG_64BIT_LBA) && defined(CFG_64BIT_VSPRINTF)
1321 printf ("Error (no IRQ) dev %d blk %qd: status 0x%02x\n",
1324 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1325 device, (ulong)blknr, c);
1330 input_data (device, buffer, ATA_SECTORWORDS);
1331 (void) ide_inb (device, ATA_STATUS); /* clear IRQ */
1335 buffer += ATA_SECTORWORDS;
1338 ide_led (DEVICE_LED(device), 0); /* LED off */
1342 /* ------------------------------------------------------------------------- */
1345 ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
1350 unsigned char lba48 = 0;
1352 if (blknr & 0x0000fffff0000000) {
1353 /* more than 28 bits used, use 48bit mode */
1358 ide_led (DEVICE_LED(device), 1); /* LED on */
1362 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1364 while (blkcnt-- > 0) {
1366 c = ide_wait (device, IDE_TIME_OUT);
1368 if (c & ATA_STAT_BUSY) {
1369 printf ("IDE read: device %d not ready\n", device);
1374 /* write high bits */
1375 ide_outb (device, ATA_SECT_CNT, 0);
1376 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1377 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1378 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1381 ide_outb (device, ATA_SECT_CNT, 1);
1382 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1383 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1384 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1388 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1389 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
1394 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1395 ATA_DEVICE(device) |
1396 ((blknr >> 24) & 0xF) );
1397 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE);
1402 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(CFG_64BIT_LBA) && defined(CFG_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 output_data (device, buffer, ATA_SECTORWORDS);
1416 c = ide_inb (device, ATA_STATUS); /* clear IRQ */
1419 buffer += ATA_SECTORWORDS;
1422 ide_led (DEVICE_LED(device), 0); /* LED off */
1426 /* ------------------------------------------------------------------------- */
1429 * copy src to dest, skipping leading and trailing blanks and null
1430 * terminate the string
1431 * "len" is the size of available memory including the terminating '\0'
1433 static void ident_cpy (unsigned char *dst, unsigned char *src, unsigned int len)
1435 unsigned char *end, *last;
1438 end = src + len - 1;
1440 /* reserve space for '\0' */
1444 /* skip leading white space */
1445 while ((*src) && (src<end) && (*src==' '))
1448 /* copy string, omitting trailing white space */
1449 while ((*src) && (src<end)) {
1458 /* ------------------------------------------------------------------------- */
1461 * Wait until Busy bit is off, or timeout (in ms)
1462 * Return last status
1464 static uchar ide_wait (int dev, ulong t)
1466 ulong delay = 10 * t; /* poll every 100 us */
1469 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
1478 /* ------------------------------------------------------------------------- */
1480 #ifdef CONFIG_IDE_RESET
1481 extern void ide_set_reset(int idereset);
1483 static void ide_reset (void)
1485 #if defined(CFG_PB_12V_ENABLE) || defined(CFG_PB_IDE_MOTOR)
1486 volatile immap_t *immr = (immap_t *)CFG_IMMR;
1491 for (i=0; i<CFG_IDE_MAXBUS; ++i)
1493 for (i=0; i<CFG_IDE_MAXDEVICE; ++i)
1494 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1496 ide_set_reset (1); /* assert reset */
1500 #ifdef CFG_PB_12V_ENABLE
1501 immr->im_cpm.cp_pbdat &= ~(CFG_PB_12V_ENABLE); /* 12V Enable output OFF */
1502 immr->im_cpm.cp_pbpar &= ~(CFG_PB_12V_ENABLE);
1503 immr->im_cpm.cp_pbodr &= ~(CFG_PB_12V_ENABLE);
1504 immr->im_cpm.cp_pbdir |= CFG_PB_12V_ENABLE;
1506 /* wait 500 ms for the voltage to stabilize
1508 for (i=0; i<500; ++i) {
1512 immr->im_cpm.cp_pbdat |= CFG_PB_12V_ENABLE; /* 12V Enable output ON */
1513 #endif /* CFG_PB_12V_ENABLE */
1515 #ifdef CFG_PB_IDE_MOTOR
1516 /* configure IDE Motor voltage monitor pin as input */
1517 immr->im_cpm.cp_pbpar &= ~(CFG_PB_IDE_MOTOR);
1518 immr->im_cpm.cp_pbodr &= ~(CFG_PB_IDE_MOTOR);
1519 immr->im_cpm.cp_pbdir &= ~(CFG_PB_IDE_MOTOR);
1521 /* wait up to 1 s for the motor voltage to stabilize
1523 for (i=0; i<1000; ++i) {
1524 if ((immr->im_cpm.cp_pbdat & CFG_PB_IDE_MOTOR) != 0) {
1530 if (i == 1000) { /* Timeout */
1531 printf ("\nWarning: 5V for IDE Motor missing\n");
1532 # ifdef CONFIG_STATUS_LED
1533 # ifdef STATUS_LED_YELLOW
1534 status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON );
1536 # ifdef STATUS_LED_GREEN
1537 status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF);
1539 # endif /* CONFIG_STATUS_LED */
1541 #endif /* CFG_PB_IDE_MOTOR */
1545 /* de-assert RESET signal */
1549 for (i=0; i<250; ++i) {
1554 #endif /* CONFIG_IDE_RESET */
1556 /* ------------------------------------------------------------------------- */
1558 #if defined(CONFIG_IDE_LED) && \
1559 !defined(CONFIG_AMIGAONEG3SE)&& \
1560 !defined(CONFIG_CPC45) && \
1561 !defined(CONFIG_HMI10) && \
1562 !defined(CONFIG_KUP4K) && \
1563 !defined(CONFIG_KUP4X)
1565 static uchar led_buffer = 0; /* Buffer for current LED status */
1567 static void ide_led (uchar led, uchar status)
1569 uchar *led_port = LED_PORT;
1571 if (status) { /* switch LED on */
1573 } else { /* switch LED off */
1577 *led_port = led_buffer;
1580 #endif /* CONFIG_IDE_LED */
1582 /* ------------------------------------------------------------------------- */
1585 /****************************************************************************
1589 #if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA)
1590 /* since ATAPI may use commands with not 4 bytes alligned length
1591 * we have our own transfer functions, 2 bytes alligned */
1593 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1595 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
1597 volatile uchar *pbuf_even;
1598 volatile uchar *pbuf_odd;
1600 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1601 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1604 *pbuf_even = *dbuf++;
1606 *pbuf_odd = *dbuf++;
1610 volatile ushort *pbuf;
1612 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1613 dbuf = (ushort *)sect_buf;
1615 debug ("in output data shorts base for read is %lx\n", (unsigned long) pbuf);
1625 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1627 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
1629 volatile uchar *pbuf_even;
1630 volatile uchar *pbuf_odd;
1632 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1633 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1636 *dbuf++ = *pbuf_even;
1638 *dbuf++ = *pbuf_odd;
1642 volatile ushort *pbuf;
1644 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1645 dbuf = (ushort *)sect_buf;
1647 debug("in input data shorts base for read is %lx\n", (unsigned long) pbuf);
1656 #else /* ! __PPC__ */
1658 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1660 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
1664 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1666 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
1669 #endif /* __PPC__ */
1672 * Wait until (Status & mask) == res, or timeout (in ms)
1673 * Return last status
1674 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1675 * and then they set their DRQ Bit
1677 static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1679 ulong delay = 10 * t; /* poll every 100 us */
1682 c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1683 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
1684 /* break if error occurs (doesn't make sense to wait more) */
1685 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1696 * issue an atapi command
1698 unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1700 unsigned char c,err,mask,res;
1702 ide_led (DEVICE_LED(device), 1); /* LED on */
1706 mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1708 #ifdef CONFIG_AMIGAONEG3SE
1709 # warning THF: Removed LBA mode ???
1711 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1712 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1713 if ((c & mask) != res) {
1714 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1718 /* write taskfile */
1719 ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
1720 ide_outb (device, ATA_SECT_CNT, 0);
1721 ide_outb (device, ATA_SECT_NUM, 0);
1722 ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF));
1723 ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
1724 #ifdef CONFIG_AMIGAONEG3SE
1725 # warning THF: Removed LBA mode ???
1727 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1729 ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET);
1732 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1734 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1736 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1737 printf ("ATTAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
1742 output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
1743 /* ATAPI Command written wait for completition */
1744 udelay (5000); /* device must set bsy */
1746 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1747 /* if no data wait for DRQ = 0 BSY = 0
1748 * if data wait for DRQ = 1 BSY = 0 */
1752 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1753 if ((c & mask) != res ) {
1754 if (c & ATA_STAT_ERR) {
1755 err=(ide_inb(device,ATA_ERROR_REG))>>4;
1756 debug ("atapi_issue 1 returned sense key %X status %02X\n",err,c);
1758 printf ("ATTAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c);
1763 n=ide_inb(device, ATA_CYL_HIGH);
1765 n+=ide_inb(device, ATA_CYL_LOW);
1767 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1771 if((n==0)&&(buflen<0)) {
1772 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1777 debug ("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
1779 if(n!=0) { /* data transfer */
1780 debug ("ATAPI_ISSUE: %d Bytes to transfer\n",n);
1781 /* we transfer shorts */
1783 /* ok now decide if it is an in or output */
1784 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
1785 debug ("Write to device\n");
1786 output_data_shorts(device,(unsigned short *)buffer,n);
1788 debug ("Read from device @ %p shorts %d\n",buffer,n);
1789 input_data_shorts(device,(unsigned short *)buffer,n);
1792 udelay(5000); /* seems that some CD ROMs need this... */
1793 mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1795 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1796 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1797 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
1798 debug ("atapi_issue 2 returned sense key %X status %X\n",err,c);
1803 ide_led (DEVICE_LED(device), 0); /* LED off */
1808 * sending the command to atapi_issue. If an status other than good
1809 * returns, an request_sense will be issued
1812 #define ATAPI_DRIVE_NOT_READY 100
1813 #define ATAPI_UNIT_ATTN 10
1815 unsigned char atapi_issue_autoreq (int device,
1818 unsigned char *buffer,
1821 unsigned char sense_data[18],sense_ccb[12];
1822 unsigned char res,key,asc,ascq;
1823 int notready,unitattn;
1825 #ifdef CONFIG_AMIGAONEG3SE
1827 unsigned int timeout, retrycnt;
1829 s = getenv("ide_cd_timeout");
1830 timeout = s ? (simple_strtol(s, NULL, 10)*1000000)/5 : 0;
1835 unitattn=ATAPI_UNIT_ATTN;
1836 notready=ATAPI_DRIVE_NOT_READY;
1839 res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1841 return (0); /* Ok */
1844 return (0xFF); /* error */
1846 debug ("(auto_req)atapi_issue returned sense key %X\n",res);
1848 memset(sense_ccb,0,sizeof(sense_ccb));
1849 memset(sense_data,0,sizeof(sense_data));
1850 sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
1851 sense_ccb[4]=18; /* allocation Length */
1853 res=atapi_issue(device,sense_ccb,12,sense_data,18);
1854 key=(sense_data[2]&0xF);
1855 asc=(sense_data[12]);
1856 ascq=(sense_data[13]);
1858 debug ("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1859 debug (" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1866 return 0; /* ok device ready */
1868 if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1873 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1876 if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1881 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1885 debug ("Media not present\n");
1889 #ifdef CONFIG_AMIGAONEG3SE
1890 if ((sense_data[2]&0xF)==0x0B) {
1891 debug ("ABORTED COMMAND...retry\n");
1897 if ((sense_data[2]&0xf) == 0x02 &&
1898 sense_data[12] == 0x04 &&
1899 sense_data[13] == 0x01 ) {
1900 debug ("Waiting for unit to become active\n");
1906 #endif /* CONFIG_AMIGAONEG3SE */
1908 printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1910 debug ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1915 static void atapi_inquiry(block_dev_desc_t * dev_desc)
1917 unsigned char ccb[12]; /* Command descriptor block */
1918 unsigned char iobuf[64]; /* temp buf */
1922 device=dev_desc->dev;
1923 dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
1924 dev_desc->block_read=atapi_read;
1926 memset(ccb,0,sizeof(ccb));
1927 memset(iobuf,0,sizeof(iobuf));
1929 ccb[0]=ATAPI_CMD_INQUIRY;
1930 ccb[4]=40; /* allocation Legnth */
1931 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
1933 debug ("ATAPI_CMD_INQUIRY returned %x\n",c);
1937 /* copy device ident strings */
1938 ident_cpy(dev_desc->vendor,&iobuf[8],8);
1939 ident_cpy(dev_desc->product,&iobuf[16],16);
1940 ident_cpy(dev_desc->revision,&iobuf[32],5);
1945 dev_desc->type=iobuf[0] & 0x1f;
1947 if ((iobuf[1]&0x80)==0x80)
1948 dev_desc->removable = 1;
1950 dev_desc->removable = 0;
1952 memset(ccb,0,sizeof(ccb));
1953 memset(iobuf,0,sizeof(iobuf));
1954 ccb[0]=ATAPI_CMD_START_STOP;
1955 ccb[4]=0x03; /* start */
1957 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1959 debug ("ATAPI_CMD_START_STOP returned %x\n",c);
1963 memset(ccb,0,sizeof(ccb));
1964 memset(iobuf,0,sizeof(iobuf));
1965 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1967 debug ("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
1971 memset(ccb,0,sizeof(ccb));
1972 memset(iobuf,0,sizeof(iobuf));
1973 ccb[0]=ATAPI_CMD_READ_CAP;
1974 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
1975 debug ("ATAPI_CMD_READ_CAP returned %x\n",c);
1979 debug ("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1980 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
1981 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
1983 dev_desc->lba =((unsigned long)iobuf[0]<<24) +
1984 ((unsigned long)iobuf[1]<<16) +
1985 ((unsigned long)iobuf[2]<< 8) +
1986 ((unsigned long)iobuf[3]);
1987 dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
1988 ((unsigned long)iobuf[5]<<16) +
1989 ((unsigned long)iobuf[6]<< 8) +
1990 ((unsigned long)iobuf[7]);
1992 dev_desc->lba48 = 0; /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
2000 * we transfer only one block per command, since the multiple DRQ per
2001 * command is not yet implemented
2003 #define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
2004 #define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
2005 #define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
2007 ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, ulong *buffer)
2010 unsigned char ccb[12]; /* Command descriptor block */
2013 debug ("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
2014 device, blknr, blkcnt, (ulong)buffer);
2017 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
2018 cnt=ATAPI_READ_MAX_BLOCK;
2022 ccb[0]=ATAPI_CMD_READ_12;
2023 ccb[1]=0; /* reserved */
2024 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
2025 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */
2026 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
2027 ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */
2028 ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */
2029 ccb[7]=(unsigned char) (cnt >>16) & 0xFF;
2030 ccb[8]=(unsigned char) (cnt >> 8) & 0xFF;
2031 ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */
2032 ccb[10]=0; /* reserved */
2033 ccb[11]=0; /* reserved */
2035 if (atapi_issue_autoreq(device,ccb,12,
2036 (unsigned char *)buffer,
2037 cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
2043 buffer+=cnt*(ATAPI_READ_BLOCK_SIZE/4); /* ulong blocksize in ulong */
2044 } while (blkcnt > 0);
2048 /* ------------------------------------------------------------------------- */
2050 #endif /* CONFIG_ATAPI */
2054 "ide - IDE sub-system\n",
2055 "reset - reset IDE controller\n"
2056 "ide info - show available IDE devices\n"
2057 "ide device [dev] - show or set current device\n"
2058 "ide part [dev] - print partition table of one or all IDE devices\n"
2059 "ide read addr blk# cnt\n"
2060 "ide write addr blk# cnt - read/write `cnt'"
2061 " blocks starting at block `blk#'\n"
2062 " to/from memory address `addr'\n"
2066 diskboot, 3, 1, do_diskboot,
2067 "diskboot- boot from IDE device\n",
2068 "loadAddr dev:part\n"
2071 #endif /* CONFIG_COMMANDS & CFG_CMD_IDE */