2 * (C) Copyright 2000-2002
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)
44 #ifdef CONFIG_STATUS_LED
45 # include <status_led.h>
51 #ifdef CONFIG_SHOW_BOOT_PROGRESS
52 # include <status_led.h>
53 # define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
55 # define SHOW_BOOT_PROGRESS(arg)
63 #define PRINTF(fmt,args...) printf (fmt ,##args)
65 #define PRINTF(fmt,args...)
68 #if (CONFIG_COMMANDS & CFG_CMD_IDE)
70 /* Timings for IDE Interface
72 * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk
73 * 70 165 30 PIO-Mode 0, [ns]
75 * 50 125 20 PIO-Mode 1, [ns]
77 * 30 100 15 PIO-Mode 2, [ns]
79 * 30 80 10 PIO-Mode 3, [ns]
81 * 25 70 10 PIO-Mode 4, [ns]
85 const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] =
87 /* Setup Length Hold */
88 { 70, 165, 30 }, /* PIO-Mode 0, [ns] */
89 { 50, 125, 20 }, /* PIO-Mode 1, [ns] */
90 { 30, 101, 15 }, /* PIO-Mode 2, [ns] */
91 { 30, 80, 10 }, /* PIO-Mode 3, [ns] */
92 { 25, 70, 10 }, /* PIO-Mode 4, [ns] */
95 static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1];
98 #define CFG_PIO_MODE 0 /* use a relaxed default */
100 static int pio_mode = CFG_PIO_MODE;
102 /* Make clock cycles and always round up */
104 #define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U )
106 /* ------------------------------------------------------------------------- */
108 /* Current I/O Device */
109 static int curr_device = -1;
111 /* Current offset for IDE0 / IDE1 bus access */
112 ulong ide_bus_offset[CFG_IDE_MAXBUS] = {
113 #if defined(CFG_ATA_IDE0_OFFSET)
116 #if defined(CFG_ATA_IDE1_OFFSET) && (CFG_IDE_MAXBUS > 1)
122 #define ATA_CURR_BASE(dev) (CFG_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)])
125 #ifndef CONFIG_AMIGAONEG3SE
126 static int ide_bus_ok[CFG_IDE_MAXBUS];
128 static int ide_bus_ok[CFG_IDE_MAXBUS] = {0,};
131 static block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE];
132 /* ------------------------------------------------------------------------- */
134 #ifdef CONFIG_IDE_LED
136 static void ide_led (uchar led, uchar status);
138 extern void ide_led (uchar led, uchar status);
141 #ifndef CONFIG_AMIGAONEG3SE
142 #define ide_led(a,b) /* dummy */
144 extern void ide_led(uchar led, uchar status);
147 #define CONFIG_IDE_LED 1
148 #define DEVICE_LED(x) 1
152 #ifdef CONFIG_IDE_RESET
153 static void ide_reset (void);
155 #define ide_reset() /* dummy */
158 static void ide_ident (block_dev_desc_t *dev_desc);
159 static uchar ide_wait (int dev, ulong t);
161 #define IDE_TIME_OUT 2000 /* 2 sec timeout */
163 #define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
165 #define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
167 static void __inline__ ide_outb(int dev, int port, unsigned char val);
168 static unsigned char __inline__ ide_inb(int dev, int port);
170 static void input_swap_data(int dev, ulong *sect_buf, int words);
172 static void input_data(int dev, ulong *sect_buf, int words);
173 static void output_data(int dev, ulong *sect_buf, int words);
174 static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
178 static void atapi_inquiry(block_dev_desc_t *dev_desc);
179 ulong atapi_read (int device, ulong blknr, ulong blkcnt, ulong *buffer);
183 #ifdef CONFIG_IDE_8xx_DIRECT
184 static void set_pcmcia_timing (int pmode);
186 #define set_pcmcia_timing(a) /* dummy */
189 /* ------------------------------------------------------------------------- */
191 int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
198 printf ("Usage:\n%s\n", cmdtp->usage);
201 if (strncmp(argv[1],"res",3) == 0) {
203 #ifdef CONFIG_IDE_8xx_DIRECT
204 " on PCMCIA " PCMCIA_SLOT_MSG
210 } else if (strncmp(argv[1],"inf",3) == 0) {
215 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
216 if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN)
217 continue; /* list only known devices */
218 printf ("IDE device %d: ", i);
219 dev_print(&ide_dev_desc[i]);
223 } else if (strncmp(argv[1],"dev",3) == 0) {
224 if ((curr_device < 0) || (curr_device >= CFG_IDE_MAXDEVICE)) {
225 puts ("\nno IDE devices available\n");
228 printf ("\nIDE device %d: ", curr_device);
229 dev_print(&ide_dev_desc[curr_device]);
231 } else if (strncmp(argv[1],"part",4) == 0) {
234 for (ok=0, dev=0; dev<CFG_IDE_MAXDEVICE; ++dev) {
235 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
239 print_part(&ide_dev_desc[dev]);
243 puts ("\nno IDE devices available\n");
248 printf ("Usage:\n%s\n", cmdtp->usage);
251 if (strncmp(argv[1],"dev",3) == 0) {
252 int dev = (int)simple_strtoul(argv[2], NULL, 10);
254 printf ("\nIDE device %d: ", dev);
255 if (dev >= CFG_IDE_MAXDEVICE) {
256 puts ("unknown device\n");
259 dev_print(&ide_dev_desc[dev]);
262 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
268 puts ("... is now current device\n");
271 } else if (strncmp(argv[1],"part",4) == 0) {
272 int dev = (int)simple_strtoul(argv[2], NULL, 10);
274 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
275 print_part(&ide_dev_desc[dev]);
277 printf ("\nIDE device %d not available\n", dev);
282 } else if (strncmp(argv[1],"pio",4) == 0) {
283 int mode = (int)simple_strtoul(argv[2], NULL, 10);
285 if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) {
290 printf ("\nInvalid PIO mode %d (0 ... %d only)\n",
291 mode, IDE_MAX_PIO_MODE);
297 printf ("Usage:\n%s\n", cmdtp->usage);
300 /* at least 4 args */
302 if (strcmp(argv[1],"read") == 0) {
303 ulong addr = simple_strtoul(argv[2], NULL, 16);
304 ulong blk = simple_strtoul(argv[3], NULL, 16);
305 ulong cnt = simple_strtoul(argv[4], NULL, 16);
308 printf ("\nIDE read: device %d block # %ld, count %ld ... ",
309 curr_device, blk, cnt);
311 n = ide_dev_desc[curr_device].block_read (curr_device,
314 /* flush cache after read */
315 flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz);
317 printf ("%ld blocks read: %s\n",
318 n, (n==cnt) ? "OK" : "ERROR");
324 } else if (strcmp(argv[1],"write") == 0) {
325 ulong addr = simple_strtoul(argv[2], NULL, 16);
326 ulong blk = simple_strtoul(argv[3], NULL, 16);
327 ulong cnt = simple_strtoul(argv[4], NULL, 16);
330 printf ("\nIDE write: device %d block # %ld, count %ld ... ",
331 curr_device, blk, cnt);
333 n = ide_write (curr_device, blk, cnt, (ulong *)addr);
335 printf ("%ld blocks written: %s\n",
336 n, (n==cnt) ? "OK" : "ERROR");
343 printf ("Usage:\n%s\n", cmdtp->usage);
351 int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
353 char *boot_device = NULL;
358 disk_partition_t info;
364 addr = CFG_LOAD_ADDR;
365 boot_device = getenv ("bootdevice");
368 addr = simple_strtoul(argv[1], NULL, 16);
369 boot_device = getenv ("bootdevice");
372 addr = simple_strtoul(argv[1], NULL, 16);
373 boot_device = argv[2];
376 printf ("Usage:\n%s\n", cmdtp->usage);
377 SHOW_BOOT_PROGRESS (-1);
382 puts ("\n** No boot device **\n");
383 SHOW_BOOT_PROGRESS (-1);
387 dev = simple_strtoul(boot_device, &ep, 16);
389 if (ide_dev_desc[dev].type==DEV_TYPE_UNKNOWN) {
390 printf ("\n** Device %d not available\n", dev);
391 SHOW_BOOT_PROGRESS (-1);
397 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
398 SHOW_BOOT_PROGRESS (-1);
401 part = simple_strtoul(++ep, NULL, 16);
403 if (get_partition_info (&ide_dev_desc[dev], part, &info)) {
404 SHOW_BOOT_PROGRESS (-1);
407 if (strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) {
408 printf ("\n** Invalid partition type \"%.32s\""
409 " (expect \"" BOOT_PART_TYPE "\")\n",
411 SHOW_BOOT_PROGRESS (-1);
415 printf ("\nLoading from IDE device %d, partition %d: "
416 "Name: %.32s Type: %.32s\n",
417 dev, part, info.name, info.type);
419 PRINTF ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
420 info.start, info.size, info.blksz);
422 if (ide_dev_desc[dev].block_read (dev, info.start, 1, (ulong *)addr) != 1) {
423 printf ("** Read error on %d:%d\n", dev, part);
424 SHOW_BOOT_PROGRESS (-1);
428 hdr = (image_header_t *)addr;
430 if (ntohl(hdr->ih_magic) == IH_MAGIC) {
432 print_image_hdr (hdr);
434 cnt = (ntohl(hdr->ih_size) + sizeof(image_header_t));
435 cnt += info.blksz - 1;
439 printf("\n** Bad Magic Number **\n");
440 SHOW_BOOT_PROGRESS (-1);
444 if (ide_dev_desc[dev].block_read (dev, info.start+1, cnt,
445 (ulong *)(addr+info.blksz)) != cnt) {
446 printf ("** Read error on %d:%d\n", dev, part);
447 SHOW_BOOT_PROGRESS (-1);
452 /* Loading ok, update default load address */
456 /* Check if we should attempt an auto-start */
457 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
459 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
461 local_args[0] = argv[0];
462 local_args[1] = NULL;
464 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
466 do_bootm (cmdtp, 0, 1, local_args);
472 /* ------------------------------------------------------------------------- */
476 DECLARE_GLOBAL_DATA_PTR;
478 #ifdef CONFIG_IDE_8xx_DIRECT
479 volatile immap_t *immr = (immap_t *)CFG_IMMR;
480 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
484 #ifdef CONFIG_AMIGAONEG3SE
485 unsigned int max_bus_scan;
486 unsigned int ata_reset_time;
490 #ifdef CONFIG_IDE_8xx_PCCARD
491 extern int pcmcia_on (void);
495 /* initialize the PCMCIA IDE adapter card */
498 udelay (1000000); /* 1 s */
499 #endif /* CONFIG_IDE_8xx_PCCARD */
503 /* Initialize PIO timing tables */
504 for (i=0; i <= IDE_MAX_PIO_MODE; ++i) {
505 pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup,
507 pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
509 pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold,
511 PRINTF ("PIO Mode %d: setup=%2d ns/%d clk"
513 " hold=%2d ns/%d clk\n",
515 pio_config_ns[i].t_setup, pio_config_clk[i].t_setup,
516 pio_config_ns[i].t_length, pio_config_clk[i].t_length,
517 pio_config_ns[i].t_hold, pio_config_clk[i].t_hold);
520 /* Reset the IDE just to be sure.
521 * Light LED's to show
523 ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */
524 ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */
526 #ifdef CONFIG_IDE_8xx_DIRECT
527 /* PCMCIA / IDE initialization for common mem space */
528 pcmp->pcmc_pgcrb = 0;
531 /* start in PIO mode 0 - most relaxed timings */
533 set_pcmcia_timing (pio_mode);
536 * Wait for IDE to get ready.
537 * According to spec, this can take up to 31 seconds!
539 #ifndef CONFIG_AMIGAONEG3SE
540 for (bus=0; bus<CFG_IDE_MAXBUS; ++bus) {
541 int dev = bus * (CFG_IDE_MAXDEVICE / CFG_IDE_MAXBUS);
543 s = getenv("ide_maxbus");
545 max_bus_scan = simple_strtol(s, NULL, 10);
547 max_bus_scan = CFG_IDE_MAXBUS;
549 for (bus=0; bus<max_bus_scan; ++bus) {
550 int dev = bus * (CFG_IDE_MAXDEVICE / max_bus_scan);
553 printf ("Bus %d: ", bus);
559 udelay (100000); /* 100 ms */
560 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
561 udelay (100000); /* 100 ms */
562 #ifdef CONFIG_AMIGAONEG3SE
563 ata_reset_time = ATA_RESET_TIME;
564 s = getenv("ide_reset_timeout");
565 if (s) ata_reset_time = 2*simple_strtol(s, NULL, 10);
569 udelay (10000); /* 10 ms */
571 c = ide_inb (dev, ATA_STATUS);
573 #ifdef CONFIG_AMIGAONEG3SE
574 if (i > (ata_reset_time * 100)) {
576 if (i > (ATA_RESET_TIME * 100)) {
578 puts ("** Timeout **\n");
579 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
580 #ifdef CONFIG_AMIGAONEG3SE
581 /* If this is the second bus, the first one was OK */
590 if ((i >= 100) && ((i%100)==0)) {
593 } while (c & ATA_STAT_BUSY);
595 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
596 puts ("not available ");
597 PRINTF ("Status = 0x%02X ", c);
598 #ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
599 } else if ((c & ATA_STAT_READY) == 0) {
600 puts ("not available ");
601 PRINTF ("Status = 0x%02X ", c);
610 #ifdef CONFIG_AMIGAONEG3SE
615 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
618 for (i=0; i<CFG_IDE_MAXDEVICE; ++i) {
619 #ifdef CONFIG_IDE_LED
620 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
622 ide_dev_desc[i].if_type=IF_TYPE_IDE;
623 ide_dev_desc[i].dev=i;
624 ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
625 ide_dev_desc[i].blksz=0;
626 ide_dev_desc[i].lba=0;
627 ide_dev_desc[i].block_read=ide_read;
628 if (!ide_bus_ok[IDE_BUS(i)])
630 ide_led (led, 1); /* LED on */
631 ide_ident(&ide_dev_desc[i]);
632 ide_led (led, 0); /* LED off */
633 dev_print(&ide_dev_desc[i]);
635 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
636 init_part (&ide_dev_desc[i]); /* initialize partition type */
644 /* ------------------------------------------------------------------------- */
646 block_dev_desc_t * ide_get_dev(int dev)
648 return ((block_dev_desc_t *)&ide_dev_desc[dev]);
652 #ifdef CONFIG_IDE_8xx_DIRECT
655 set_pcmcia_timing (int pmode)
657 volatile immap_t *immr = (immap_t *)CFG_IMMR;
658 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
661 PRINTF ("Set timing for PIO Mode %d\n", pmode);
663 timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
664 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
665 | PCMCIA_SL (pio_config_clk[pmode].t_length)
670 pcmp->pcmc_pbr0 = CFG_PCMCIA_PBR0;
671 pcmp->pcmc_por0 = CFG_PCMCIA_POR0
672 #if (CFG_PCMCIA_POR0 != 0)
676 PRINTF ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
678 pcmp->pcmc_pbr1 = CFG_PCMCIA_PBR1;
679 pcmp->pcmc_por1 = CFG_PCMCIA_POR1
680 #if (CFG_PCMCIA_POR1 != 0)
684 PRINTF ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
686 pcmp->pcmc_pbr2 = CFG_PCMCIA_PBR2;
687 pcmp->pcmc_por2 = CFG_PCMCIA_POR2
688 #if (CFG_PCMCIA_POR2 != 0)
692 PRINTF ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
694 pcmp->pcmc_pbr3 = CFG_PCMCIA_PBR3;
695 pcmp->pcmc_por3 = CFG_PCMCIA_POR3
696 #if (CFG_PCMCIA_POR3 != 0)
700 PRINTF ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
704 pcmp->pcmc_pbr4 = CFG_PCMCIA_PBR4;
705 pcmp->pcmc_por4 = CFG_PCMCIA_POR4
706 #if (CFG_PCMCIA_POR4 != 0)
710 PRINTF ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
712 pcmp->pcmc_pbr5 = CFG_PCMCIA_PBR5;
713 pcmp->pcmc_por5 = CFG_PCMCIA_POR5
714 #if (CFG_PCMCIA_POR5 != 0)
718 PRINTF ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
720 pcmp->pcmc_pbr6 = CFG_PCMCIA_PBR6;
721 pcmp->pcmc_por6 = CFG_PCMCIA_POR6
722 #if (CFG_PCMCIA_POR6 != 0)
726 PRINTF ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
728 pcmp->pcmc_pbr7 = CFG_PCMCIA_PBR7;
729 pcmp->pcmc_por7 = CFG_PCMCIA_POR7
730 #if (CFG_PCMCIA_POR7 != 0)
734 PRINTF ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
738 #endif /* CONFIG_IDE_8xx_DIRECT */
740 /* ------------------------------------------------------------------------- */
743 static void __inline__
744 ide_outb(int dev, int port, unsigned char val)
746 /* Ensure I/O operations complete */
747 __asm__ volatile("eieio");
748 *((uchar *)(ATA_CURR_BASE(dev)+port)) = val;
750 printf ("ide_outb: 0x%08lx <== 0x%02x\n", ATA_CURR_BASE(dev)+port, val);
753 #else /* ! __PPC__ */
754 static void __inline__
755 ide_outb(int dev, int port, unsigned char val)
763 static unsigned char __inline__
764 ide_inb(int dev, int port)
767 /* Ensure I/O operations complete */
768 __asm__ volatile("eieio");
769 val = *((uchar *)(ATA_CURR_BASE(dev)+port));
771 printf ("ide_inb: 0x%08lx ==> 0x%02x\n", ATA_CURR_BASE(dev)+port, val);
775 #else /* ! __PPC__ */
776 static unsigned char __inline__
777 ide_inb(int dev, int port)
784 __inline__ unsigned ld_le16(const volatile unsigned short *addr)
788 __asm__ __volatile__ ("lhbrx %0,0,%1" : "=r"(val) : "r"(addr), "m"(*addr));
792 #ifdef CONFIG_AMIGAONEG3SE
794 output_data_short(int dev, ulong *sect_buf, int words)
797 volatile ushort *pbuf;
799 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
800 dbuf = (ushort *)sect_buf;
802 __asm__ volatile ("eieio");
804 __asm__ volatile ("eieio");
813 input_swap_data(int dev, ulong *sect_buf, int words)
815 volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
816 ushort *dbuf = (ushort *)sect_buf;
819 *dbuf++ = ld_le16(pbuf);
820 *dbuf++ = ld_le16(pbuf);
823 #else /* ! __PPC__ */
824 #define input_swap_data(x,y,z) input_data(x,y,z)
832 output_data(int dev, ulong *sect_buf, int words)
835 volatile ushort *pbuf;
837 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
838 dbuf = (ushort *)sect_buf;
840 __asm__ volatile ("eieio");
842 __asm__ volatile ("eieio");
846 #else /* ! __PPC__ */
848 output_data(int dev, ulong *sect_buf, int words)
850 outsw(ATA_DATA_REG, sect_buf, words<<1);
856 input_data(int dev, ulong *sect_buf, int words)
859 volatile ushort *pbuf;
861 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
862 dbuf = (ushort *)sect_buf;
864 __asm__ volatile ("eieio");
866 __asm__ volatile ("eieio");
870 #else /* ! __PPC__ */
872 input_data(int dev, ulong *sect_buf, int words)
874 insw(ATA_DATA_REG, sect_buf, words << 1);
879 #ifdef CONFIG_AMIGAONEG3SE
881 input_data_short(int dev, ulong *sect_buf, int words)
884 volatile ushort *pbuf;
886 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
887 dbuf = (ushort *)sect_buf;
889 __asm__ volatile ("eieio");
891 __asm__ volatile ("eieio");
902 /* -------------------------------------------------------------------------
904 static void ide_ident (block_dev_desc_t *dev_desc)
906 ulong iobuf[ATA_SECTORWORDS];
908 hd_driveid_t *iop = (hd_driveid_t *)iobuf;
910 #ifdef CONFIG_AMIGAONEG3SE
918 int mode, cycle_time;
921 device=dev_desc->dev;
922 printf (" Device %d: ", device);
924 #ifdef CONFIG_AMIGAONEG3SE
925 s = getenv("ide_maxbus");
927 max_bus_scan = simple_strtol(s, NULL, 10);
929 max_bus_scan = CFG_IDE_MAXBUS;
931 if (device >= max_bus_scan*2) {
932 dev_desc->type=DEV_TYPE_UNKNOWN;
937 ide_led (DEVICE_LED(device), 1); /* LED on */
940 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
941 dev_desc->if_type=IF_TYPE_IDE;
944 #ifdef CONFIG_AMIGAONEG3SE
948 /* Warning: This will be tricky to read */
951 #endif /* CONFIG_AMIGAONEG3SE */
953 /* check signature */
954 if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
955 (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
956 (ide_inb(device,ATA_CYL_LOW) == 0x14) &&
957 (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
958 /* ATAPI Signature found */
959 dev_desc->if_type=IF_TYPE_ATAPI;
960 /* Start Ident Command
962 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
964 * Wait for completion - ATAPI devices need more time
967 c = ide_wait (device, ATAPI_TIME_OUT);
972 /* Start Ident Command
974 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
976 /* Wait for completion
978 c = ide_wait (device, IDE_TIME_OUT);
980 ide_led (DEVICE_LED(device), 0); /* LED off */
982 if (((c & ATA_STAT_DRQ) == 0) ||
983 ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
984 #ifdef CONFIG_AMIGAONEG3SE
988 dev_desc->type=DEV_TYPE_UNKNOWN;
992 dev_desc->type=DEV_TYPE_UNKNOWN;
994 #endif /* CONFIG_AMIGAONEG3SE */
997 #ifdef CONFIG_AMIGAONEG3SE
998 s = getenv("ide_doreset");
999 if (s && strcmp(s, "on") == 0 && 1 == do_retry) {
1000 /* Need to soft reset the device in case it's an ATAPI... */
1001 PRINTF("Retrying...\n");
1002 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1004 ide_outb (device, ATA_COMMAND, 0x08);
1005 udelay (100000); /* 100 ms */
1010 } /* see above - ugly to read */
1011 #endif /* CONFIG_AMIGAONEG3SE */
1013 input_swap_data (device, iobuf, ATA_SECTORWORDS);
1015 ident_cpy (dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1016 ident_cpy (dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1017 ident_cpy (dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
1019 if ((iop->config & 0x0080)==0x0080)
1020 dev_desc->removable = 1;
1022 dev_desc->removable = 0;
1026 * Drive PIO mode autoselection
1030 printf ("tPIO = 0x%02x = %d\n",mode, mode);
1031 if (mode > 2) { /* 2 is maximum allowed tPIO value */
1033 PRINTF ("Override tPIO -> 2\n");
1035 if (iop->field_valid & 2) { /* drive implements ATA2? */
1036 PRINTF ("Drive implements ATA2\n");
1037 if (iop->capability & 8) { /* drive supports use_iordy? */
1038 cycle_time = iop->eide_pio_iordy;
1040 cycle_time = iop->eide_pio;
1042 PRINTF ("cycle time = %d\n", cycle_time);
1044 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1045 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1046 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1047 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1049 printf ("PIO mode to use: PIO %d\n", mode);
1053 if (dev_desc->if_type==IF_TYPE_ATAPI) {
1054 atapi_inquiry(dev_desc);
1057 #endif /* CONFIG_ATAPI */
1060 dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
1062 dev_desc->type=DEV_TYPE_HARDDISK;
1063 dev_desc->blksz=ATA_BLOCKSIZE;
1064 dev_desc->lun=0; /* just to fill something in... */
1066 #if 0 /* only used to test the powersaving mode,
1067 * if enabled, the drive goes after 5 sec
1068 * in standby mode */
1069 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1070 c = ide_wait (device, IDE_TIME_OUT);
1071 ide_outb (device, ATA_SECT_CNT, 1);
1072 ide_outb (device, ATA_LBA_LOW, 0);
1073 ide_outb (device, ATA_LBA_MID, 0);
1074 ide_outb (device, ATA_LBA_HIGH, 0);
1075 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1076 ATA_DEVICE(device));
1077 ide_outb (device, ATA_COMMAND, 0xe3);
1079 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1084 /* ------------------------------------------------------------------------- */
1086 ulong ide_read (int device, ulong blknr, ulong blkcnt, ulong *buffer)
1090 unsigned char pwrsave=0; /* power save */
1092 PRINTF ("ide_read dev %d start %lX, blocks %lX buffer at %lX\n",
1093 device, blknr, blkcnt, (ulong)buffer);
1095 ide_led (DEVICE_LED(device), 1); /* LED on */
1099 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1100 c = ide_wait (device, IDE_TIME_OUT);
1102 if (c & ATA_STAT_BUSY) {
1103 printf ("IDE read: device %d not ready\n", device);
1107 /* first check if the drive is in Powersaving mode, if yes,
1108 * increase the timeout value */
1109 ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR);
1112 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1114 if (c & ATA_STAT_BUSY) {
1115 printf ("IDE read: device %d not ready\n", device);
1118 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1119 printf ("No Powersaving mode %X\n", c);
1121 c = ide_inb(device,ATA_SECT_CNT);
1122 PRINTF("Powersaving %02X\n",c);
1128 while (blkcnt-- > 0) {
1130 c = ide_wait (device, IDE_TIME_OUT);
1132 if (c & ATA_STAT_BUSY) {
1133 printf ("IDE read: device %d not ready\n", device);
1137 ide_outb (device, ATA_SECT_CNT, 1);
1138 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1139 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1140 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1141 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1142 ATA_DEVICE(device) |
1143 ((blknr >> 24) & 0xF) );
1144 ide_outb (device, ATA_COMMAND, ATA_CMD_READ);
1149 c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */
1152 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1155 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1156 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1161 input_data (device, buffer, ATA_SECTORWORDS);
1162 (void) ide_inb (device, ATA_STATUS); /* clear IRQ */
1166 buffer += ATA_SECTORWORDS;
1169 ide_led (DEVICE_LED(device), 0); /* LED off */
1173 /* ------------------------------------------------------------------------- */
1176 ulong ide_write (int device, ulong blknr, ulong blkcnt, ulong *buffer)
1181 ide_led (DEVICE_LED(device), 1); /* LED on */
1185 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1187 while (blkcnt-- > 0) {
1189 c = ide_wait (device, IDE_TIME_OUT);
1191 if (c & ATA_STAT_BUSY) {
1192 printf ("IDE read: device %d not ready\n", device);
1196 ide_outb (device, ATA_SECT_CNT, 1);
1197 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1198 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1199 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1200 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1201 ATA_DEVICE(device) |
1202 ((blknr >> 24) & 0xF) );
1203 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE);
1207 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1209 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1210 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1215 output_data (device, buffer, ATA_SECTORWORDS);
1216 c = ide_inb (device, ATA_STATUS); /* clear IRQ */
1219 buffer += ATA_SECTORWORDS;
1222 ide_led (DEVICE_LED(device), 0); /* LED off */
1226 /* ------------------------------------------------------------------------- */
1229 * copy src to dest, skipping leading and trailing blanks and null
1230 * terminate the string
1232 static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len)
1238 if (src[start]!=' ')
1248 for ( ; start<=end; start++) {
1254 /* ------------------------------------------------------------------------- */
1257 * Wait until Busy bit is off, or timeout (in ms)
1258 * Return last status
1260 static uchar ide_wait (int dev, ulong t)
1262 ulong delay = 10 * t; /* poll every 100 us */
1265 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
1274 /* ------------------------------------------------------------------------- */
1276 #ifdef CONFIG_IDE_RESET
1277 extern void ide_set_reset(int idereset);
1279 static void ide_reset (void)
1281 #if defined(CFG_PB_12V_ENABLE) || defined(CFG_PB_IDE_MOTOR)
1282 volatile immap_t *immr = (immap_t *)CFG_IMMR;
1287 for (i=0; i<CFG_IDE_MAXBUS; ++i)
1289 for (i=0; i<CFG_IDE_MAXDEVICE; ++i)
1290 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1292 ide_set_reset (1); /* assert reset */
1296 #ifdef CFG_PB_12V_ENABLE
1297 immr->im_cpm.cp_pbdat &= ~(CFG_PB_12V_ENABLE); /* 12V Enable output OFF */
1298 immr->im_cpm.cp_pbpar &= ~(CFG_PB_12V_ENABLE);
1299 immr->im_cpm.cp_pbodr &= ~(CFG_PB_12V_ENABLE);
1300 immr->im_cpm.cp_pbdir |= CFG_PB_12V_ENABLE;
1302 /* wait 500 ms for the voltage to stabilize
1304 for (i=0; i<500; ++i) {
1308 immr->im_cpm.cp_pbdat |= CFG_PB_12V_ENABLE; /* 12V Enable output ON */
1309 #endif /* CFG_PB_12V_ENABLE */
1311 #ifdef CFG_PB_IDE_MOTOR
1312 /* configure IDE Motor voltage monitor pin as input */
1313 immr->im_cpm.cp_pbpar &= ~(CFG_PB_IDE_MOTOR);
1314 immr->im_cpm.cp_pbodr &= ~(CFG_PB_IDE_MOTOR);
1315 immr->im_cpm.cp_pbdir &= ~(CFG_PB_IDE_MOTOR);
1317 /* wait up to 1 s for the motor voltage to stabilize
1319 for (i=0; i<1000; ++i) {
1320 if ((immr->im_cpm.cp_pbdat & CFG_PB_IDE_MOTOR) != 0) {
1326 if (i == 1000) { /* Timeout */
1327 printf ("\nWarning: 5V for IDE Motor missing\n");
1328 # ifdef CONFIG_STATUS_LED
1329 # ifdef STATUS_LED_YELLOW
1330 status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON );
1332 # ifdef STATUS_LED_GREEN
1333 status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF);
1335 # endif /* CONFIG_STATUS_LED */
1337 #endif /* CFG_PB_IDE_MOTOR */
1341 /* de-assert RESET signal */
1345 for (i=0; i<250; ++i) {
1350 #endif /* CONFIG_IDE_RESET */
1352 /* ------------------------------------------------------------------------- */
1354 #if defined(CONFIG_IDE_LED) && !defined(CONFIG_AMIGAONEG3SE) && !defined(CONFIG_KUP4K)
1356 static uchar led_buffer = 0; /* Buffer for current LED status */
1358 static void ide_led (uchar led, uchar status)
1360 uchar *led_port = LED_PORT;
1362 if (status) { /* switch LED on */
1364 } else { /* switch LED off */
1368 *led_port = led_buffer;
1371 #endif /* CONFIG_IDE_LED */
1373 /* ------------------------------------------------------------------------- */
1376 /****************************************************************************
1385 #define AT_PRINTF(fmt,args...) printf (fmt ,##args)
1387 #define AT_PRINTF(fmt,args...)
1391 /* since ATAPI may use commands with not 4 bytes alligned length
1392 * we have our own transfer functions, 2 bytes alligned */
1394 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1397 volatile ushort *pbuf;
1399 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1400 dbuf = (ushort *)sect_buf;
1402 __asm__ volatile ("eieio");
1408 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1411 volatile ushort *pbuf;
1413 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1414 dbuf = (ushort *)sect_buf;
1416 __asm__ volatile ("eieio");
1421 #else /* ! __PPC__ */
1423 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1425 outsw(ATA_DATA_REG, sect_buf, shorts);
1430 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1432 insw(ATA_DATA_REG, sect_buf, shorts);
1435 #endif /* __PPC__ */
1438 * Wait until (Status & mask) == res, or timeout (in ms)
1439 * Return last status
1440 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1441 * and then they set their DRQ Bit
1443 static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1445 ulong delay = 10 * t; /* poll every 100 us */
1448 c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1449 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
1450 /* break if error occurs (doesn't make sense to wait more) */
1451 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1462 * issue an atapi command
1464 unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1466 unsigned char c,err,mask,res;
1468 ide_led (DEVICE_LED(device), 1); /* LED on */
1472 mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1474 #ifdef CONFIG_AMIGAONEG3SE
1475 # warning THF: Removed LBA mode ???
1477 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1478 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1479 if ((c & mask) != res) {
1480 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1484 /* write taskfile */
1485 ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
1486 ide_outb (device, ATA_SECT_CNT, 0);
1487 ide_outb (device, ATA_SECT_NUM, 0);
1488 ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF));
1489 ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
1490 #ifdef CONFIG_AMIGAONEG3SE
1491 # warning THF: Removed LBA mode ???
1493 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1495 ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET);
1498 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1500 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1502 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1503 printf ("ATTAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
1508 output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
1509 /* ATAPI Command written wait for completition */
1510 udelay (5000); /* device must set bsy */
1512 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1513 /* if no data wait for DRQ = 0 BSY = 0
1514 * if data wait for DRQ = 1 BSY = 0 */
1518 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1519 if ((c & mask) != res ) {
1520 if (c & ATA_STAT_ERR) {
1521 err=(ide_inb(device,ATA_ERROR_REG))>>4;
1522 AT_PRINTF("atapi_issue 1 returned sense key %X status %02X\n",err,c);
1524 printf ("ATTAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c);
1529 n=ide_inb(device, ATA_CYL_HIGH);
1531 n+=ide_inb(device, ATA_CYL_LOW);
1533 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1537 if((n==0)&&(buflen<0)) {
1538 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1543 AT_PRINTF("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
1545 if(n!=0) { /* data transfer */
1546 AT_PRINTF("ATAPI_ISSUE: %d Bytes to transfer\n",n);
1547 /* we transfer shorts */
1549 /* ok now decide if it is an in or output */
1550 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
1551 AT_PRINTF("Write to device\n");
1552 output_data_shorts(device,(unsigned short *)buffer,n);
1554 AT_PRINTF("Read from device @ %p shorts %d\n",buffer,n);
1555 input_data_shorts(device,(unsigned short *)buffer,n);
1558 udelay(5000); /* seems that some CD ROMs need this... */
1559 mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1561 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1562 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1563 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
1564 AT_PRINTF("atapi_issue 2 returned sense key %X status %X\n",err,c);
1569 ide_led (DEVICE_LED(device), 0); /* LED off */
1574 * sending the command to atapi_issue. If an status other than good
1575 * returns, an request_sense will be issued
1578 #define ATAPI_DRIVE_NOT_READY 100
1579 #define ATAPI_UNIT_ATTN 10
1581 unsigned char atapi_issue_autoreq (int device,
1584 unsigned char *buffer,
1587 unsigned char sense_data[18],sense_ccb[12];
1588 unsigned char res,key,asc,ascq;
1589 int notready,unitattn;
1591 #ifdef CONFIG_AMIGAONEG3SE
1593 unsigned int timeout, retrycnt;
1595 s = getenv("ide_cd_timeout");
1596 timeout = s ? (simple_strtol(s, NULL, 10)*1000000)/5 : 0;
1601 unitattn=ATAPI_UNIT_ATTN;
1602 notready=ATAPI_DRIVE_NOT_READY;
1605 res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1607 return (0); /* Ok */
1610 return (0xFF); /* error */
1612 AT_PRINTF("(auto_req)atapi_issue returned sense key %X\n",res);
1614 memset(sense_ccb,0,sizeof(sense_ccb));
1615 memset(sense_data,0,sizeof(sense_data));
1616 sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
1617 sense_ccb[4]=18; /* allocation Length */
1619 res=atapi_issue(device,sense_ccb,12,sense_data,18);
1620 key=(sense_data[2]&0xF);
1621 asc=(sense_data[12]);
1622 ascq=(sense_data[13]);
1624 AT_PRINTF("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1625 AT_PRINTF(" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1632 return 0; /* ok device ready */
1634 if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1639 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1642 if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1647 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1651 AT_PRINTF("Media not present\n");
1655 #ifdef CONFIG_AMIGAONEG3SE
1656 if ((sense_data[2]&0xF)==0x0B) {
1657 AT_PRINTF("ABORTED COMMAND...retry\n");
1663 if ((sense_data[2]&0xf) == 0x02 &&
1664 sense_data[12] == 0x04 &&
1665 sense_data[13] == 0x01 ) {
1666 AT_PRINTF("Waiting for unit to become active\n");
1672 #endif /* CONFIG_AMIGAONEG3SE */
1674 printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1676 AT_PRINTF ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1682 static void atapi_inquiry(block_dev_desc_t * dev_desc)
1684 unsigned char ccb[12]; /* Command descriptor block */
1685 unsigned char iobuf[64]; /* temp buf */
1689 device=dev_desc->dev;
1690 dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
1691 dev_desc->block_read=atapi_read;
1693 memset(ccb,0,sizeof(ccb));
1694 memset(iobuf,0,sizeof(iobuf));
1696 ccb[0]=ATAPI_CMD_INQUIRY;
1697 ccb[4]=40; /* allocation Legnth */
1698 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
1700 AT_PRINTF("ATAPI_CMD_INQUIRY returned %x\n",c);
1704 /* copy device ident strings */
1705 ident_cpy(dev_desc->vendor,&iobuf[8],8);
1706 ident_cpy(dev_desc->product,&iobuf[16],16);
1707 ident_cpy(dev_desc->revision,&iobuf[32],5);
1712 dev_desc->type=iobuf[0] & 0x1f;
1714 if ((iobuf[1]&0x80)==0x80)
1715 dev_desc->removable = 1;
1717 dev_desc->removable = 0;
1719 memset(ccb,0,sizeof(ccb));
1720 memset(iobuf,0,sizeof(iobuf));
1721 ccb[0]=ATAPI_CMD_START_STOP;
1722 ccb[4]=0x03; /* start */
1724 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1726 AT_PRINTF("ATAPI_CMD_START_STOP returned %x\n",c);
1730 memset(ccb,0,sizeof(ccb));
1731 memset(iobuf,0,sizeof(iobuf));
1732 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1734 AT_PRINTF("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
1738 memset(ccb,0,sizeof(ccb));
1739 memset(iobuf,0,sizeof(iobuf));
1740 ccb[0]=ATAPI_CMD_READ_CAP;
1741 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
1742 AT_PRINTF("ATAPI_CMD_READ_CAP returned %x\n",c);
1746 AT_PRINTF("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1747 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
1748 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
1750 dev_desc->lba =((unsigned long)iobuf[0]<<24) +
1751 ((unsigned long)iobuf[1]<<16) +
1752 ((unsigned long)iobuf[2]<< 8) +
1753 ((unsigned long)iobuf[3]);
1754 dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
1755 ((unsigned long)iobuf[5]<<16) +
1756 ((unsigned long)iobuf[6]<< 8) +
1757 ((unsigned long)iobuf[7]);
1764 * we transfer only one block per command, since the multiple DRQ per
1765 * command is not yet implemented
1767 #define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1768 #define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
1769 #define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
1771 ulong atapi_read (int device, ulong blknr, ulong blkcnt, ulong *buffer)
1774 unsigned char ccb[12]; /* Command descriptor block */
1777 AT_PRINTF("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
1778 device, blknr, blkcnt, (ulong)buffer);
1781 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
1782 cnt=ATAPI_READ_MAX_BLOCK;
1786 ccb[0]=ATAPI_CMD_READ_12;
1787 ccb[1]=0; /* reserved */
1788 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
1789 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */
1790 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
1791 ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */
1792 ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */
1793 ccb[7]=(unsigned char) (cnt >>16) & 0xFF;
1794 ccb[8]=(unsigned char) (cnt >> 8) & 0xFF;
1795 ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */
1796 ccb[10]=0; /* reserved */
1797 ccb[11]=0; /* reserved */
1799 if (atapi_issue_autoreq(device,ccb,12,
1800 (unsigned char *)buffer,
1801 cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
1807 buffer+=cnt*(ATAPI_READ_BLOCK_SIZE/4); /* ulong blocksize in ulong */
1808 } while (blkcnt > 0);
1812 /* ------------------------------------------------------------------------- */
1814 #endif /* CONFIG_ATAPI */
1816 #endif /* CONFIG_COMMANDS & CFG_CMD_IDE */