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,
34 #include <asm/byteorder.h>
37 #if defined(CONFIG_IDE_8xx_DIRECT) || defined(CONFIG_IDE_PCMCIA)
50 #include <asm/arch/orion5x.h>
56 #ifdef CONFIG_STATUS_LED
57 # include <status_led.h>
60 #ifdef CONFIG_IDE_8xx_DIRECT
61 DECLARE_GLOBAL_DATA_PTR;
65 # define EIEIO __asm__ volatile ("eieio")
66 # define SYNC __asm__ volatile ("sync")
68 # define EIEIO /* nothing */
69 # define SYNC /* nothing */
72 #ifdef CONFIG_IDE_8xx_DIRECT
73 /* Timings for IDE Interface
75 * SETUP / LENGTH / HOLD - cycles valid for 50 MHz clk
76 * 70 165 30 PIO-Mode 0, [ns]
78 * 50 125 20 PIO-Mode 1, [ns]
80 * 30 100 15 PIO-Mode 2, [ns]
82 * 30 80 10 PIO-Mode 3, [ns]
84 * 25 70 10 PIO-Mode 4, [ns]
88 const static pio_config_t pio_config_ns [IDE_MAX_PIO_MODE+1] =
90 /* Setup Length Hold */
91 { 70, 165, 30 }, /* PIO-Mode 0, [ns] */
92 { 50, 125, 20 }, /* PIO-Mode 1, [ns] */
93 { 30, 101, 15 }, /* PIO-Mode 2, [ns] */
94 { 30, 80, 10 }, /* PIO-Mode 3, [ns] */
95 { 25, 70, 10 }, /* PIO-Mode 4, [ns] */
98 static pio_config_t pio_config_clk [IDE_MAX_PIO_MODE+1];
100 #ifndef CONFIG_SYS_PIO_MODE
101 #define CONFIG_SYS_PIO_MODE 0 /* use a relaxed default */
103 static int pio_mode = CONFIG_SYS_PIO_MODE;
105 /* Make clock cycles and always round up */
107 #define PCMCIA_MK_CLKS( t, T ) (( (t) * (T) + 999U ) / 1000U )
109 #endif /* CONFIG_IDE_8xx_DIRECT */
111 /* ------------------------------------------------------------------------- */
113 /* Current I/O Device */
114 static int curr_device = -1;
116 /* Current offset for IDE0 / IDE1 bus access */
117 ulong ide_bus_offset[CONFIG_SYS_IDE_MAXBUS] = {
118 #if defined(CONFIG_SYS_ATA_IDE0_OFFSET)
119 CONFIG_SYS_ATA_IDE0_OFFSET,
121 #if defined(CONFIG_SYS_ATA_IDE1_OFFSET) && (CONFIG_SYS_IDE_MAXBUS > 1)
122 CONFIG_SYS_ATA_IDE1_OFFSET,
127 static int ide_bus_ok[CONFIG_SYS_IDE_MAXBUS];
129 block_dev_desc_t ide_dev_desc[CONFIG_SYS_IDE_MAXDEVICE];
130 /* ------------------------------------------------------------------------- */
132 #ifdef CONFIG_IDE_LED
133 # if !defined(CONFIG_BMS2003) && \
134 !defined(CONFIG_CPC45) && \
135 !defined(CONFIG_KUP4K) && \
136 !defined(CONFIG_KUP4X)
137 static void ide_led (uchar led, uchar status);
139 extern void ide_led (uchar led, uchar status);
142 #define ide_led(a,b) /* dummy */
145 #ifdef CONFIG_IDE_RESET
146 static void ide_reset (void);
148 #define ide_reset() /* dummy */
151 static void ide_ident (block_dev_desc_t *dev_desc);
152 static uchar ide_wait (int dev, ulong t);
154 #define IDE_TIME_OUT 2000 /* 2 sec timeout */
156 #define ATAPI_TIME_OUT 7000 /* 7 sec timeout (5 sec seems to work...) */
158 #define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
160 static void input_data(int dev, ulong *sect_buf, int words);
161 static void output_data(int dev, ulong *sect_buf, int words);
162 static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
164 #ifndef CONFIG_SYS_ATA_PORT_ADDR
165 #define CONFIG_SYS_ATA_PORT_ADDR(port) (port)
169 static void atapi_inquiry(block_dev_desc_t *dev_desc);
170 ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer);
174 #ifdef CONFIG_IDE_8xx_DIRECT
175 static void set_pcmcia_timing (int pmode);
178 /* ------------------------------------------------------------------------- */
180 int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
187 return cmd_usage(cmdtp);
189 if (strncmp(argv[1],"res",3) == 0) {
191 #ifdef CONFIG_IDE_8xx_DIRECT
192 " on PCMCIA " PCMCIA_SLOT_MSG
198 } else if (strncmp(argv[1],"inf",3) == 0) {
203 for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i) {
204 if (ide_dev_desc[i].type==DEV_TYPE_UNKNOWN)
205 continue; /* list only known devices */
206 printf ("IDE device %d: ", i);
207 dev_print(&ide_dev_desc[i]);
211 } else if (strncmp(argv[1],"dev",3) == 0) {
212 if ((curr_device < 0) || (curr_device >= CONFIG_SYS_IDE_MAXDEVICE)) {
213 puts ("\nno IDE devices available\n");
216 printf ("\nIDE device %d: ", curr_device);
217 dev_print(&ide_dev_desc[curr_device]);
219 } else if (strncmp(argv[1],"part",4) == 0) {
222 for (ok=0, dev=0; dev<CONFIG_SYS_IDE_MAXDEVICE; ++dev) {
223 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
227 print_part(&ide_dev_desc[dev]);
231 puts ("\nno IDE devices available\n");
236 return cmd_usage(cmdtp);
238 if (strncmp(argv[1],"dev",3) == 0) {
239 int dev = (int)simple_strtoul(argv[2], NULL, 10);
241 printf ("\nIDE device %d: ", dev);
242 if (dev >= CONFIG_SYS_IDE_MAXDEVICE) {
243 puts ("unknown device\n");
246 dev_print(&ide_dev_desc[dev]);
249 if (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN) {
255 puts ("... is now current device\n");
258 } else if (strncmp(argv[1],"part",4) == 0) {
259 int dev = (int)simple_strtoul(argv[2], NULL, 10);
261 if (ide_dev_desc[dev].part_type!=PART_TYPE_UNKNOWN) {
262 print_part(&ide_dev_desc[dev]);
264 printf ("\nIDE device %d not available\n", dev);
269 } else if (strncmp(argv[1],"pio",4) == 0) {
270 int mode = (int)simple_strtoul(argv[2], NULL, 10);
272 if ((mode >= 0) && (mode <= IDE_MAX_PIO_MODE)) {
277 printf ("\nInvalid PIO mode %d (0 ... %d only)\n",
278 mode, IDE_MAX_PIO_MODE);
284 return cmd_usage(cmdtp);
286 /* at least 4 args */
288 if (strcmp(argv[1],"read") == 0) {
289 ulong addr = simple_strtoul(argv[2], NULL, 16);
290 ulong cnt = simple_strtoul(argv[4], NULL, 16);
292 #ifdef CONFIG_SYS_64BIT_LBA
293 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
295 printf ("\nIDE read: device %d block # %Ld, count %ld ... ",
296 curr_device, blk, cnt);
298 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
300 printf ("\nIDE read: device %d block # %ld, count %ld ... ",
301 curr_device, blk, cnt);
304 n = ide_dev_desc[curr_device].block_read (curr_device,
307 /* flush cache after read */
308 flush_cache (addr, cnt*ide_dev_desc[curr_device].blksz);
310 printf ("%ld blocks read: %s\n",
311 n, (n==cnt) ? "OK" : "ERROR");
317 } else if (strcmp(argv[1],"write") == 0) {
318 ulong addr = simple_strtoul(argv[2], NULL, 16);
319 ulong cnt = simple_strtoul(argv[4], NULL, 16);
321 #ifdef CONFIG_SYS_64BIT_LBA
322 lbaint_t blk = simple_strtoull(argv[3], NULL, 16);
324 printf ("\nIDE write: device %d block # %Ld, count %ld ... ",
325 curr_device, blk, cnt);
327 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
329 printf ("\nIDE write: device %d block # %ld, count %ld ... ",
330 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");
342 return cmd_usage(cmdtp);
349 int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
351 char *boot_device = NULL;
355 disk_partition_t info;
358 #if defined(CONFIG_FIT)
359 const void *fit_hdr = NULL;
362 show_boot_progress (41);
365 addr = CONFIG_SYS_LOAD_ADDR;
366 boot_device = getenv ("bootdevice");
369 addr = simple_strtoul(argv[1], NULL, 16);
370 boot_device = getenv ("bootdevice");
373 addr = simple_strtoul(argv[1], NULL, 16);
374 boot_device = argv[2];
377 show_boot_progress (-42);
378 return cmd_usage(cmdtp);
380 show_boot_progress (42);
383 puts ("\n** No boot device **\n");
384 show_boot_progress (-43);
387 show_boot_progress (43);
389 dev = simple_strtoul(boot_device, &ep, 16);
391 if (ide_dev_desc[dev].type==DEV_TYPE_UNKNOWN) {
392 printf ("\n** Device %d not available\n", dev);
393 show_boot_progress (-44);
396 show_boot_progress (44);
400 puts ("\n** Invalid boot device, use `dev[:part]' **\n");
401 show_boot_progress (-45);
404 part = simple_strtoul(++ep, NULL, 16);
406 show_boot_progress (45);
407 if (get_partition_info (&ide_dev_desc[dev], part, &info)) {
408 show_boot_progress (-46);
411 show_boot_progress (46);
412 if ((strncmp((char *)info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
413 (strncmp((char *)info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
414 printf ("\n** Invalid partition type \"%.32s\""
415 " (expect \"" BOOT_PART_TYPE "\")\n",
417 show_boot_progress (-47);
420 show_boot_progress (47);
422 printf ("\nLoading from IDE device %d, partition %d: "
423 "Name: %.32s Type: %.32s\n",
424 dev, part, info.name, info.type);
426 debug ("First Block: %ld, # of blocks: %ld, Block Size: %ld\n",
427 info.start, info.size, info.blksz);
429 if (ide_dev_desc[dev].block_read (dev, info.start, 1, (ulong *)addr) != 1) {
430 printf ("** Read error on %d:%d\n", dev, part);
431 show_boot_progress (-48);
434 show_boot_progress (48);
436 switch (genimg_get_format ((void *)addr)) {
437 case IMAGE_FORMAT_LEGACY:
438 hdr = (image_header_t *)addr;
440 show_boot_progress (49);
442 if (!image_check_hcrc (hdr)) {
443 puts ("\n** Bad Header Checksum **\n");
444 show_boot_progress (-50);
447 show_boot_progress (50);
449 image_print_contents (hdr);
451 cnt = image_get_image_size (hdr);
453 #if defined(CONFIG_FIT)
454 case IMAGE_FORMAT_FIT:
455 fit_hdr = (const void *)addr;
456 puts ("Fit image detected...\n");
458 cnt = fit_get_size (fit_hdr);
462 show_boot_progress (-49);
463 puts ("** Unknown image type\n");
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 (-51);
477 show_boot_progress (51);
479 #if defined(CONFIG_FIT)
480 /* This cannot be done earlier, we need complete FIT image in RAM first */
481 if (genimg_get_format ((void *)addr) == IMAGE_FORMAT_FIT) {
482 if (!fit_check_format (fit_hdr)) {
483 show_boot_progress (-140);
484 puts ("** Bad FIT image format\n");
487 show_boot_progress (141);
488 fit_print_contents (fit_hdr);
492 /* Loading ok, update default load address */
496 /* Check if we should attempt an auto-start */
497 if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) {
499 extern int do_bootm (cmd_tbl_t *, int, int, char *[]);
501 local_args[0] = argv[0];
502 local_args[1] = NULL;
504 printf ("Automatic boot of image at addr 0x%08lX ...\n", addr);
506 do_bootm (cmdtp, 0, 1, local_args);
512 /* ------------------------------------------------------------------------- */
515 __ide_outb(int dev, int port, unsigned char val)
517 debug ("ide_outb (dev= %d, port= 0x%x, val= 0x%02x) : @ 0x%08lx\n",
518 dev, port, val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
519 outb(val, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
521 void ide_outb (int dev, int port, unsigned char val)
522 __attribute__((weak, alias("__ide_outb")));
525 __ide_inb(int dev, int port)
528 val = inb((ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)));
529 debug ("ide_inb (dev= %d, port= 0x%x) : @ 0x%08lx -> 0x%02x\n",
530 dev, port, (ATA_CURR_BASE(dev)+CONFIG_SYS_ATA_PORT_ADDR(port)), val);
533 unsigned char ide_inb(int dev, int port)
534 __attribute__((weak, alias("__ide_inb")));
536 #ifdef CONFIG_TUNE_PIO
538 __ide_set_piomode(int pio_mode)
542 int inline ide_set_piomode(int pio_mode)
543 __attribute__((weak, alias("__ide_set_piomode")));
549 #ifdef CONFIG_IDE_8xx_DIRECT
550 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
551 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
555 #if defined(CONFIG_SC3)
556 unsigned int ata_reset_time = ATA_RESET_TIME;
558 #ifdef CONFIG_IDE_8xx_PCCARD
559 extern int pcmcia_on (void);
560 extern int ide_devices_found; /* Initialized in check_ide_device() */
561 #endif /* CONFIG_IDE_8xx_PCCARD */
563 #ifdef CONFIG_IDE_PREINIT
564 extern int ide_preinit (void);
567 if (ide_preinit ()) {
568 puts ("ide_preinit failed\n");
571 #endif /* CONFIG_IDE_PREINIT */
573 #ifdef CONFIG_IDE_8xx_PCCARD
574 extern int pcmcia_on (void);
575 extern int ide_devices_found; /* Initialized in check_ide_device() */
579 ide_devices_found = 0;
580 /* initialize the PCMCIA IDE adapter card */
582 if (!ide_devices_found)
584 udelay (1000000); /* 1 s */
585 #endif /* CONFIG_IDE_8xx_PCCARD */
589 #ifdef CONFIG_IDE_8xx_DIRECT
590 /* Initialize PIO timing tables */
591 for (i=0; i <= IDE_MAX_PIO_MODE; ++i) {
592 pio_config_clk[i].t_setup = PCMCIA_MK_CLKS(pio_config_ns[i].t_setup,
594 pio_config_clk[i].t_length = PCMCIA_MK_CLKS(pio_config_ns[i].t_length,
596 pio_config_clk[i].t_hold = PCMCIA_MK_CLKS(pio_config_ns[i].t_hold,
598 debug ( "PIO Mode %d: setup=%2d ns/%d clk"
600 " hold=%2d ns/%d clk\n",
602 pio_config_ns[i].t_setup, pio_config_clk[i].t_setup,
603 pio_config_ns[i].t_length, pio_config_clk[i].t_length,
604 pio_config_ns[i].t_hold, pio_config_clk[i].t_hold);
606 #endif /* CONFIG_IDE_8xx_DIRECT */
608 /* Reset the IDE just to be sure.
609 * Light LED's to show
611 ide_led ((LED_IDE1 | LED_IDE2), 1); /* LED's on */
612 ide_reset (); /* ATAPI Drives seems to need a proper IDE Reset */
614 #ifdef CONFIG_IDE_8xx_DIRECT
615 /* PCMCIA / IDE initialization for common mem space */
616 pcmp->pcmc_pgcrb = 0;
618 /* start in PIO mode 0 - most relaxed timings */
620 set_pcmcia_timing (pio_mode);
621 #endif /* CONFIG_IDE_8xx_DIRECT */
624 * Wait for IDE to get ready.
625 * According to spec, this can take up to 31 seconds!
627 for (bus=0; bus<CONFIG_SYS_IDE_MAXBUS; ++bus) {
628 int dev = bus * (CONFIG_SYS_IDE_MAXDEVICE / CONFIG_SYS_IDE_MAXBUS);
630 #ifdef CONFIG_IDE_8xx_PCCARD
631 /* Skip non-ide devices from probing */
632 if ((ide_devices_found & (1 << bus)) == 0) {
633 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
637 printf ("Bus %d: ", bus);
643 udelay (100000); /* 100 ms */
644 ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
645 udelay (100000); /* 100 ms */
648 udelay (10000); /* 10 ms */
650 c = ide_inb (dev, ATA_STATUS);
652 #if defined(CONFIG_SC3)
653 if (i > (ata_reset_time * 100)) {
655 if (i > (ATA_RESET_TIME * 100)) {
657 puts ("** Timeout **\n");
658 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
661 if ((i >= 100) && ((i%100)==0)) {
664 } while (c & ATA_STAT_BUSY);
666 if (c & (ATA_STAT_BUSY | ATA_STAT_FAULT)) {
667 puts ("not available ");
668 debug ("Status = 0x%02X ", c);
669 #ifndef CONFIG_ATAPI /* ATAPI Devices do not set DRDY */
670 } else if ((c & ATA_STAT_READY) == 0) {
671 puts ("not available ");
672 debug ("Status = 0x%02X ", c);
683 ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
686 for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i) {
687 #ifdef CONFIG_IDE_LED
688 int led = (IDE_BUS(i) == 0) ? LED_IDE1 : LED_IDE2;
690 ide_dev_desc[i].type=DEV_TYPE_UNKNOWN;
691 ide_dev_desc[i].if_type=IF_TYPE_IDE;
692 ide_dev_desc[i].dev=i;
693 ide_dev_desc[i].part_type=PART_TYPE_UNKNOWN;
694 ide_dev_desc[i].blksz=0;
695 ide_dev_desc[i].lba=0;
696 ide_dev_desc[i].block_read=ide_read;
697 if (!ide_bus_ok[IDE_BUS(i)])
699 ide_led (led, 1); /* LED on */
700 ide_ident(&ide_dev_desc[i]);
701 ide_led (led, 0); /* LED off */
702 dev_print(&ide_dev_desc[i]);
704 if ((ide_dev_desc[i].lba > 0) && (ide_dev_desc[i].blksz > 0)) {
705 init_part (&ide_dev_desc[i]); /* initialize partition type */
713 /* ------------------------------------------------------------------------- */
715 block_dev_desc_t * ide_get_dev(int dev)
717 return (dev < CONFIG_SYS_IDE_MAXDEVICE) ? &ide_dev_desc[dev] : NULL;
721 #ifdef CONFIG_IDE_8xx_DIRECT
724 set_pcmcia_timing (int pmode)
726 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
727 volatile pcmconf8xx_t *pcmp = &(immr->im_pcmcia);
730 debug ("Set timing for PIO Mode %d\n", pmode);
732 timings = PCMCIA_SHT(pio_config_clk[pmode].t_hold)
733 | PCMCIA_SST(pio_config_clk[pmode].t_setup)
734 | PCMCIA_SL (pio_config_clk[pmode].t_length)
739 pcmp->pcmc_pbr0 = CONFIG_SYS_PCMCIA_PBR0;
740 pcmp->pcmc_por0 = CONFIG_SYS_PCMCIA_POR0
741 #if (CONFIG_SYS_PCMCIA_POR0 != 0)
745 debug ("PBR0: %08x POR0: %08x\n", pcmp->pcmc_pbr0, pcmp->pcmc_por0);
747 pcmp->pcmc_pbr1 = CONFIG_SYS_PCMCIA_PBR1;
748 pcmp->pcmc_por1 = CONFIG_SYS_PCMCIA_POR1
749 #if (CONFIG_SYS_PCMCIA_POR1 != 0)
753 debug ("PBR1: %08x POR1: %08x\n", pcmp->pcmc_pbr1, pcmp->pcmc_por1);
755 pcmp->pcmc_pbr2 = CONFIG_SYS_PCMCIA_PBR2;
756 pcmp->pcmc_por2 = CONFIG_SYS_PCMCIA_POR2
757 #if (CONFIG_SYS_PCMCIA_POR2 != 0)
761 debug ("PBR2: %08x POR2: %08x\n", pcmp->pcmc_pbr2, pcmp->pcmc_por2);
763 pcmp->pcmc_pbr3 = CONFIG_SYS_PCMCIA_PBR3;
764 pcmp->pcmc_por3 = CONFIG_SYS_PCMCIA_POR3
765 #if (CONFIG_SYS_PCMCIA_POR3 != 0)
769 debug ("PBR3: %08x POR3: %08x\n", pcmp->pcmc_pbr3, pcmp->pcmc_por3);
773 pcmp->pcmc_pbr4 = CONFIG_SYS_PCMCIA_PBR4;
774 pcmp->pcmc_por4 = CONFIG_SYS_PCMCIA_POR4
775 #if (CONFIG_SYS_PCMCIA_POR4 != 0)
779 debug ("PBR4: %08x POR4: %08x\n", pcmp->pcmc_pbr4, pcmp->pcmc_por4);
781 pcmp->pcmc_pbr5 = CONFIG_SYS_PCMCIA_PBR5;
782 pcmp->pcmc_por5 = CONFIG_SYS_PCMCIA_POR5
783 #if (CONFIG_SYS_PCMCIA_POR5 != 0)
787 debug ("PBR5: %08x POR5: %08x\n", pcmp->pcmc_pbr5, pcmp->pcmc_por5);
789 pcmp->pcmc_pbr6 = CONFIG_SYS_PCMCIA_PBR6;
790 pcmp->pcmc_por6 = CONFIG_SYS_PCMCIA_POR6
791 #if (CONFIG_SYS_PCMCIA_POR6 != 0)
795 debug ("PBR6: %08x POR6: %08x\n", pcmp->pcmc_pbr6, pcmp->pcmc_por6);
797 pcmp->pcmc_pbr7 = CONFIG_SYS_PCMCIA_PBR7;
798 pcmp->pcmc_por7 = CONFIG_SYS_PCMCIA_POR7
799 #if (CONFIG_SYS_PCMCIA_POR7 != 0)
803 debug ("PBR7: %08x POR7: %08x\n", pcmp->pcmc_pbr7, pcmp->pcmc_por7);
807 #endif /* CONFIG_IDE_8xx_DIRECT */
809 /* ------------------------------------------------------------------------- */
811 /* We only need to swap data if we are running on a big endian cpu. */
812 /* But Au1x00 cpu:s already swaps data in big endian mode! */
813 #if defined(__LITTLE_ENDIAN) || ( defined(CONFIG_AU1X00) && !defined(CONFIG_GTH2) )
814 #define input_swap_data(x,y,z) input_data(x,y,z)
817 input_swap_data(int dev, ulong *sect_buf, int words)
819 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
821 volatile uchar *pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
822 volatile uchar *pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
823 ushort *dbuf = (ushort *)sect_buf;
826 for (i=0; i<2; i++) {
827 *(((uchar *)(dbuf)) + 1) = *pbuf_even;
828 *(uchar *)dbuf = *pbuf_odd;
833 volatile ushort *pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
834 ushort *dbuf = (ushort *)sect_buf;
836 debug("in input swap data base for read is %lx\n", (unsigned long) pbuf);
840 *dbuf++ = swab16p((u16*)pbuf);
841 *dbuf++ = swab16p((u16*)pbuf);
842 #elif defined(CONFIG_PCS440EP)
846 *dbuf++ = ld_le16(pbuf);
847 *dbuf++ = ld_le16(pbuf);
852 #endif /* __LITTLE_ENDIAN || CONFIG_AU1X00 */
855 #if defined(CONFIG_IDE_SWAP_IO)
857 output_data(int dev, ulong *sect_buf, int words)
859 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
861 volatile uchar *pbuf_even;
862 volatile uchar *pbuf_odd;
864 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
865 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
866 dbuf = (uchar *)sect_buf;
869 *pbuf_even = *dbuf++;
873 *pbuf_even = *dbuf++;
879 volatile ushort *pbuf;
881 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
882 dbuf = (ushort *)sect_buf;
884 #if defined(CONFIG_PCS440EP)
885 /* not tested, because CF was write protected */
887 *pbuf = ld_le16(dbuf++);
889 *pbuf = ld_le16(dbuf++);
899 #else /* ! CONFIG_IDE_SWAP_IO */
901 output_data(int dev, ulong *sect_buf, int words)
903 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words<<1);
905 #endif /* CONFIG_IDE_SWAP_IO */
907 #if defined(CONFIG_IDE_SWAP_IO)
909 input_data(int dev, ulong *sect_buf, int words)
911 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
913 volatile uchar *pbuf_even;
914 volatile uchar *pbuf_odd;
916 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
917 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
918 dbuf = (uchar *)sect_buf;
920 *dbuf++ = *pbuf_even;
926 *dbuf++ = *pbuf_even;
935 volatile ushort *pbuf;
937 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
938 dbuf = (ushort *)sect_buf;
940 debug("in input data base for read is %lx\n", (unsigned long) pbuf);
943 #if defined(CONFIG_PCS440EP)
945 *dbuf++ = ld_le16(pbuf);
947 *dbuf++ = ld_le16(pbuf);
957 #else /* ! CONFIG_IDE_SWAP_IO */
959 input_data(int dev, ulong *sect_buf, int words)
961 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, words << 1);
964 #endif /* CONFIG_IDE_SWAP_IO */
966 /* -------------------------------------------------------------------------
968 static void ide_ident (block_dev_desc_t *dev_desc)
970 ulong iobuf[ATA_SECTORWORDS];
972 hd_driveid_t *iop = (hd_driveid_t *)iobuf;
979 #ifdef CONFIG_TUNE_PIO
984 int mode, cycle_time;
987 device=dev_desc->dev;
988 printf (" Device %d: ", device);
990 ide_led (DEVICE_LED(device), 1); /* LED on */
993 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
994 dev_desc->if_type=IF_TYPE_IDE;
1000 /* Warning: This will be tricky to read */
1001 while (retries <= 1) {
1002 /* check signature */
1003 if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
1004 (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
1005 (ide_inb(device,ATA_CYL_LOW) == 0x14) &&
1006 (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
1007 /* ATAPI Signature found */
1008 dev_desc->if_type=IF_TYPE_ATAPI;
1009 /* Start Ident Command
1011 ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
1013 * Wait for completion - ATAPI devices need more time
1016 c = ide_wait (device, ATAPI_TIME_OUT);
1020 /* Start Ident Command
1022 ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
1024 /* Wait for completion
1026 c = ide_wait (device, IDE_TIME_OUT);
1028 ide_led (DEVICE_LED(device), 0); /* LED off */
1030 if (((c & ATA_STAT_DRQ) == 0) ||
1031 ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
1034 /* Need to soft reset the device in case it's an ATAPI... */
1035 debug ("Retrying...\n");
1036 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1038 ide_outb (device, ATA_COMMAND, 0x08);
1039 udelay (500000); /* 500 ms */
1043 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1052 } /* see above - ugly to read */
1054 if (retries == 2) /* Not found */
1058 input_swap_data (device, iobuf, ATA_SECTORWORDS);
1060 ident_cpy ((unsigned char*)dev_desc->revision, iop->fw_rev, sizeof(dev_desc->revision));
1061 ident_cpy ((unsigned char*)dev_desc->vendor, iop->model, sizeof(dev_desc->vendor));
1062 ident_cpy ((unsigned char*)dev_desc->product, iop->serial_no, sizeof(dev_desc->product));
1063 #ifdef __LITTLE_ENDIAN
1065 * firmware revision, model, and serial number have Big Endian Byte
1066 * order in Word. Convert all three to little endian.
1068 * See CF+ and CompactFlash Specification Revision 2.0:
1069 * 6.2.1.6: Identify Drive, Table 39 for more details
1072 strswab (dev_desc->revision);
1073 strswab (dev_desc->vendor);
1074 strswab (dev_desc->product);
1075 #endif /* __LITTLE_ENDIAN */
1077 if ((iop->config & 0x0080)==0x0080)
1078 dev_desc->removable = 1;
1080 dev_desc->removable = 0;
1082 #ifdef CONFIG_TUNE_PIO
1083 /* Mode 0 - 2 only, are directly determined by word 51. */
1084 pio_mode = iop->tPIO;
1086 printf("WARNING: Invalid PIO (word 51 = %d).\n", pio_mode);
1087 pio_mode = 0; /* Force it to dead slow, and hope for the best... */
1090 /* Any CompactFlash Storage Card that supports PIO mode 3 or above
1091 * shall set bit 1 of word 53 to one and support the fields contained
1092 * in words 64 through 70.
1094 if (iop->field_valid & 0x02) {
1095 /* Mode 3 and above are possible. Check in order from slow
1096 * to fast, so we wind up with the highest mode allowed.
1098 if (iop->eide_pio_modes & 0x01)
1100 if (iop->eide_pio_modes & 0x02)
1102 if (ata_id_is_cfa((u16 *)iop)) {
1103 if ((iop->cf_advanced_caps & 0x07) == 0x01)
1105 if ((iop->cf_advanced_caps & 0x07) == 0x02)
1110 /* System-specific, depends on bus speeds, etc. */
1111 ide_set_piomode(pio_mode);
1112 #endif /* CONFIG_TUNE_PIO */
1116 * Drive PIO mode autoselection
1120 printf ("tPIO = 0x%02x = %d\n",mode, mode);
1121 if (mode > 2) { /* 2 is maximum allowed tPIO value */
1123 debug ("Override tPIO -> 2\n");
1125 if (iop->field_valid & 2) { /* drive implements ATA2? */
1126 debug ("Drive implements ATA2\n");
1127 if (iop->capability & 8) { /* drive supports use_iordy? */
1128 cycle_time = iop->eide_pio_iordy;
1130 cycle_time = iop->eide_pio;
1132 debug ("cycle time = %d\n", cycle_time);
1134 if (cycle_time > 120) mode = 3; /* 120 ns for PIO mode 4 */
1135 if (cycle_time > 180) mode = 2; /* 180 ns for PIO mode 3 */
1136 if (cycle_time > 240) mode = 1; /* 240 ns for PIO mode 4 */
1137 if (cycle_time > 383) mode = 0; /* 383 ns for PIO mode 4 */
1139 printf ("PIO mode to use: PIO %d\n", mode);
1143 if (dev_desc->if_type==IF_TYPE_ATAPI) {
1144 atapi_inquiry(dev_desc);
1147 #endif /* CONFIG_ATAPI */
1151 dev_desc->lba = (iop->lba_capacity << 16) | (iop->lba_capacity >> 16);
1152 #else /* ! __BIG_ENDIAN */
1154 * do not swap shorts on little endian
1156 * See CF+ and CompactFlash Specification Revision 2.0:
1157 * 6.2.1.6: Identfy Drive, Table 39, Word Address 57-58 for details.
1159 dev_desc->lba = iop->lba_capacity;
1160 #endif /* __BIG_ENDIAN */
1163 if (iop->command_set_2 & 0x0400) { /* LBA 48 support */
1164 dev_desc->lba48 = 1;
1165 dev_desc->lba = (unsigned long long)iop->lba48_capacity[0] |
1166 ((unsigned long long)iop->lba48_capacity[1] << 16) |
1167 ((unsigned long long)iop->lba48_capacity[2] << 32) |
1168 ((unsigned long long)iop->lba48_capacity[3] << 48);
1170 dev_desc->lba48 = 0;
1172 #endif /* CONFIG_LBA48 */
1174 dev_desc->type=DEV_TYPE_HARDDISK;
1175 dev_desc->blksz=ATA_BLOCKSIZE;
1176 dev_desc->lun=0; /* just to fill something in... */
1178 #if 0 /* only used to test the powersaving mode,
1179 * if enabled, the drive goes after 5 sec
1180 * in standby mode */
1181 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1182 c = ide_wait (device, IDE_TIME_OUT);
1183 ide_outb (device, ATA_SECT_CNT, 1);
1184 ide_outb (device, ATA_LBA_LOW, 0);
1185 ide_outb (device, ATA_LBA_MID, 0);
1186 ide_outb (device, ATA_LBA_HIGH, 0);
1187 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1188 ide_outb (device, ATA_COMMAND, 0xe3);
1190 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1195 /* ------------------------------------------------------------------------- */
1197 ulong ide_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
1201 unsigned char pwrsave=0; /* power save */
1203 unsigned char lba48 = 0;
1205 if (blknr & 0x0000fffff0000000ULL) {
1206 /* more than 28 bits used, use 48bit mode */
1210 debug ("ide_read dev %d start %LX, blocks %lX buffer at %lX\n",
1211 device, blknr, blkcnt, (ulong)buffer);
1213 ide_led (DEVICE_LED(device), 1); /* LED on */
1217 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1218 c = ide_wait (device, IDE_TIME_OUT);
1220 if (c & ATA_STAT_BUSY) {
1221 printf ("IDE read: device %d not ready\n", device);
1225 /* first check if the drive is in Powersaving mode, if yes,
1226 * increase the timeout value */
1227 ide_outb (device, ATA_COMMAND, ATA_CMD_CHK_PWR);
1230 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1232 if (c & ATA_STAT_BUSY) {
1233 printf ("IDE read: device %d not ready\n", device);
1236 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1237 printf ("No Powersaving mode %X\n", c);
1239 c = ide_inb(device,ATA_SECT_CNT);
1240 debug ("Powersaving %02X\n",c);
1246 while (blkcnt-- > 0) {
1248 c = ide_wait (device, IDE_TIME_OUT);
1250 if (c & ATA_STAT_BUSY) {
1251 printf ("IDE read: device %d not ready\n", device);
1256 /* write high bits */
1257 ide_outb (device, ATA_SECT_CNT, 0);
1258 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1259 #ifdef CONFIG_SYS_64BIT_LBA
1260 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1261 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1263 ide_outb (device, ATA_LBA_MID, 0);
1264 ide_outb (device, ATA_LBA_HIGH, 0);
1268 ide_outb (device, ATA_SECT_CNT, 1);
1269 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1270 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1271 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1275 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1276 ide_outb (device, ATA_COMMAND, ATA_CMD_READ_EXT);
1281 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1282 ATA_DEVICE(device) |
1283 ((blknr >> 24) & 0xF) );
1284 ide_outb (device, ATA_COMMAND, ATA_CMD_READ);
1290 c = ide_wait (device, IDE_SPIN_UP_TIME_OUT); /* may take up to 4 sec */
1293 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1296 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1297 #if defined(CONFIG_SYS_64BIT_LBA)
1298 printf ("Error (no IRQ) dev %d blk %Ld: status 0x%02x\n",
1301 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1302 device, (ulong)blknr, c);
1307 input_data (device, buffer, ATA_SECTORWORDS);
1308 (void) ide_inb (device, ATA_STATUS); /* clear IRQ */
1312 buffer += ATA_BLOCKSIZE;
1315 ide_led (DEVICE_LED(device), 0); /* LED off */
1319 /* ------------------------------------------------------------------------- */
1322 ulong ide_write (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
1327 unsigned char lba48 = 0;
1329 if (blknr & 0x0000fffff0000000ULL) {
1330 /* more than 28 bits used, use 48bit mode */
1335 ide_led (DEVICE_LED(device), 1); /* LED on */
1339 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1341 while (blkcnt-- > 0) {
1343 c = ide_wait (device, IDE_TIME_OUT);
1345 if (c & ATA_STAT_BUSY) {
1346 printf ("IDE read: device %d not ready\n", device);
1351 /* write high bits */
1352 ide_outb (device, ATA_SECT_CNT, 0);
1353 ide_outb (device, ATA_LBA_LOW, (blknr >> 24) & 0xFF);
1354 #ifdef CONFIG_SYS_64BIT_LBA
1355 ide_outb (device, ATA_LBA_MID, (blknr >> 32) & 0xFF);
1356 ide_outb (device, ATA_LBA_HIGH, (blknr >> 40) & 0xFF);
1358 ide_outb (device, ATA_LBA_MID, 0);
1359 ide_outb (device, ATA_LBA_HIGH, 0);
1363 ide_outb (device, ATA_SECT_CNT, 1);
1364 ide_outb (device, ATA_LBA_LOW, (blknr >> 0) & 0xFF);
1365 ide_outb (device, ATA_LBA_MID, (blknr >> 8) & 0xFF);
1366 ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
1370 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device) );
1371 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE_EXT);
1376 ide_outb (device, ATA_DEV_HD, ATA_LBA |
1377 ATA_DEVICE(device) |
1378 ((blknr >> 24) & 0xF) );
1379 ide_outb (device, ATA_COMMAND, ATA_CMD_WRITE);
1384 c = ide_wait (device, IDE_TIME_OUT); /* can't take over 500 ms */
1386 if ((c&(ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR)) != ATA_STAT_DRQ) {
1387 #if defined(CONFIG_SYS_64BIT_LBA)
1388 printf ("Error (no IRQ) dev %d blk %Ld: status 0x%02x\n",
1391 printf ("Error (no IRQ) dev %d blk %ld: status 0x%02x\n",
1392 device, (ulong)blknr, c);
1397 output_data (device, buffer, ATA_SECTORWORDS);
1398 c = ide_inb (device, ATA_STATUS); /* clear IRQ */
1401 buffer += ATA_BLOCKSIZE;
1404 ide_led (DEVICE_LED(device), 0); /* LED off */
1408 /* ------------------------------------------------------------------------- */
1411 * copy src to dest, skipping leading and trailing blanks and null
1412 * terminate the string
1413 * "len" is the size of available memory including the terminating '\0'
1415 static void ident_cpy (unsigned char *dst, unsigned char *src, unsigned int len)
1417 unsigned char *end, *last;
1420 end = src + len - 1;
1422 /* reserve space for '\0' */
1426 /* skip leading white space */
1427 while ((*src) && (src<end) && (*src==' '))
1430 /* copy string, omitting trailing white space */
1431 while ((*src) && (src<end)) {
1440 /* ------------------------------------------------------------------------- */
1443 * Wait until Busy bit is off, or timeout (in ms)
1444 * Return last status
1446 static uchar ide_wait (int dev, ulong t)
1448 ulong delay = 10 * t; /* poll every 100 us */
1451 while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
1460 /* ------------------------------------------------------------------------- */
1462 #ifdef CONFIG_IDE_RESET
1463 extern void ide_set_reset(int idereset);
1465 static void ide_reset (void)
1467 #if defined(CONFIG_SYS_PB_12V_ENABLE) || defined(CONFIG_SYS_PB_IDE_MOTOR)
1468 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
1473 for (i=0; i<CONFIG_SYS_IDE_MAXBUS; ++i)
1475 for (i=0; i<CONFIG_SYS_IDE_MAXDEVICE; ++i)
1476 ide_dev_desc[i].type = DEV_TYPE_UNKNOWN;
1478 ide_set_reset (1); /* assert reset */
1480 /* the reset signal shall be asserted for et least 25 us */
1485 #ifdef CONFIG_SYS_PB_12V_ENABLE
1486 immr->im_cpm.cp_pbdat &= ~(CONFIG_SYS_PB_12V_ENABLE); /* 12V Enable output OFF */
1487 immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_12V_ENABLE);
1488 immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_12V_ENABLE);
1489 immr->im_cpm.cp_pbdir |= CONFIG_SYS_PB_12V_ENABLE;
1491 /* wait 500 ms for the voltage to stabilize
1493 for (i=0; i<500; ++i) {
1497 immr->im_cpm.cp_pbdat |= CONFIG_SYS_PB_12V_ENABLE; /* 12V Enable output ON */
1498 #endif /* CONFIG_SYS_PB_12V_ENABLE */
1500 #ifdef CONFIG_SYS_PB_IDE_MOTOR
1501 /* configure IDE Motor voltage monitor pin as input */
1502 immr->im_cpm.cp_pbpar &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1503 immr->im_cpm.cp_pbodr &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1504 immr->im_cpm.cp_pbdir &= ~(CONFIG_SYS_PB_IDE_MOTOR);
1506 /* wait up to 1 s for the motor voltage to stabilize
1508 for (i=0; i<1000; ++i) {
1509 if ((immr->im_cpm.cp_pbdat & CONFIG_SYS_PB_IDE_MOTOR) != 0) {
1515 if (i == 1000) { /* Timeout */
1516 printf ("\nWarning: 5V for IDE Motor missing\n");
1517 # ifdef CONFIG_STATUS_LED
1518 # ifdef STATUS_LED_YELLOW
1519 status_led_set (STATUS_LED_YELLOW, STATUS_LED_ON );
1521 # ifdef STATUS_LED_GREEN
1522 status_led_set (STATUS_LED_GREEN, STATUS_LED_OFF);
1524 # endif /* CONFIG_STATUS_LED */
1526 #endif /* CONFIG_SYS_PB_IDE_MOTOR */
1530 /* de-assert RESET signal */
1534 for (i=0; i<250; ++i) {
1539 #endif /* CONFIG_IDE_RESET */
1541 /* ------------------------------------------------------------------------- */
1543 #if defined(CONFIG_IDE_LED) && \
1544 !defined(CONFIG_CPC45) && \
1545 !defined(CONFIG_HMI10) && \
1546 !defined(CONFIG_KUP4K) && \
1547 !defined(CONFIG_KUP4X)
1549 static uchar led_buffer = 0; /* Buffer for current LED status */
1551 static void ide_led (uchar led, uchar status)
1553 uchar *led_port = LED_PORT;
1555 if (status) { /* switch LED on */
1557 } else { /* switch LED off */
1561 *led_port = led_buffer;
1564 #endif /* CONFIG_IDE_LED */
1566 #if defined(CONFIG_OF_IDE_FIXUP)
1567 int ide_device_present(int dev)
1569 if (dev >= CONFIG_SYS_IDE_MAXBUS)
1571 return (ide_dev_desc[dev].type == DEV_TYPE_UNKNOWN ? 0 : 1);
1574 /* ------------------------------------------------------------------------- */
1577 /****************************************************************************
1581 #if defined(CONFIG_IDE_SWAP_IO)
1582 /* since ATAPI may use commands with not 4 bytes alligned length
1583 * we have our own transfer functions, 2 bytes alligned */
1585 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1587 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
1589 volatile uchar *pbuf_even;
1590 volatile uchar *pbuf_odd;
1592 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1593 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1596 *pbuf_even = *dbuf++;
1598 *pbuf_odd = *dbuf++;
1602 volatile ushort *pbuf;
1604 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1605 dbuf = (ushort *)sect_buf;
1607 debug ("in output data shorts base for read is %lx\n", (unsigned long) pbuf);
1617 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1619 #if defined(CONFIG_HMI10) || defined(CONFIG_CPC45)
1621 volatile uchar *pbuf_even;
1622 volatile uchar *pbuf_odd;
1624 pbuf_even = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_EVEN);
1625 pbuf_odd = (uchar *)(ATA_CURR_BASE(dev)+ATA_DATA_ODD);
1628 *dbuf++ = *pbuf_even;
1630 *dbuf++ = *pbuf_odd;
1634 volatile ushort *pbuf;
1636 pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
1637 dbuf = (ushort *)sect_buf;
1639 debug("in input data shorts base for read is %lx\n", (unsigned long) pbuf);
1648 #else /* ! CONFIG_IDE_SWAP_IO */
1650 output_data_shorts(int dev, ushort *sect_buf, int shorts)
1652 outsw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
1656 input_data_shorts(int dev, ushort *sect_buf, int shorts)
1658 insw(ATA_CURR_BASE(dev)+ATA_DATA_REG, sect_buf, shorts);
1661 #endif /* CONFIG_IDE_SWAP_IO */
1664 * Wait until (Status & mask) == res, or timeout (in ms)
1665 * Return last status
1666 * This is used since some ATAPI CD ROMs clears their Busy Bit first
1667 * and then they set their DRQ Bit
1669 static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
1671 ulong delay = 10 * t; /* poll every 100 us */
1674 c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
1675 while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
1676 /* break if error occurs (doesn't make sense to wait more) */
1677 if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
1688 * issue an atapi command
1690 unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned char * buffer,int buflen)
1692 unsigned char c,err,mask,res;
1694 ide_led (DEVICE_LED(device), 1); /* LED on */
1698 mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
1700 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1701 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1702 if ((c & mask) != res) {
1703 printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
1707 /* write taskfile */
1708 ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
1709 ide_outb (device, ATA_SECT_CNT, 0);
1710 ide_outb (device, ATA_SECT_NUM, 0);
1711 ide_outb (device, ATA_CYL_LOW, (unsigned char)(buflen & 0xFF));
1712 ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
1713 ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
1715 ide_outb (device, ATA_COMMAND, ATAPI_CMD_PACKET);
1718 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1720 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1722 if ((c & mask) != res) { /* DRQ must be 1, BSY 0 */
1723 printf ("ATAPI_ISSUE: Error (no IRQ) before sending ccb dev %d status 0x%02x\n",device,c);
1728 output_data_shorts (device, (unsigned short *)ccb,ccblen/2); /* write command block */
1729 /* ATAPI Command written wait for completition */
1730 udelay (5000); /* device must set bsy */
1732 mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
1733 /* if no data wait for DRQ = 0 BSY = 0
1734 * if data wait for DRQ = 1 BSY = 0 */
1738 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1739 if ((c & mask) != res ) {
1740 if (c & ATA_STAT_ERR) {
1741 err=(ide_inb(device,ATA_ERROR_REG))>>4;
1742 debug ("atapi_issue 1 returned sense key %X status %02X\n",err,c);
1744 printf ("ATAPI_ISSUE: (no DRQ) after sending ccb (%x) status 0x%02x\n", ccb[0],c);
1749 n=ide_inb(device, ATA_CYL_HIGH);
1751 n+=ide_inb(device, ATA_CYL_LOW);
1753 printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
1757 if((n==0)&&(buflen<0)) {
1758 printf("ERROR, transfer bytes %d requested %d\n",n,buflen);
1763 debug ("WARNING, transfer bytes %d not equal with requested %d\n",n,buflen);
1765 if(n!=0) { /* data transfer */
1766 debug ("ATAPI_ISSUE: %d Bytes to transfer\n",n);
1767 /* we transfer shorts */
1769 /* ok now decide if it is an in or output */
1770 if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
1771 debug ("Write to device\n");
1772 output_data_shorts(device,(unsigned short *)buffer,n);
1774 debug ("Read from device @ %p shorts %d\n",buffer,n);
1775 input_data_shorts(device,(unsigned short *)buffer,n);
1778 udelay(5000); /* seems that some CD ROMs need this... */
1779 mask = ATA_STAT_BUSY|ATA_STAT_ERR;
1781 c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
1782 if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
1783 err=(ide_inb(device,ATA_ERROR_REG) >> 4);
1784 debug ("atapi_issue 2 returned sense key %X status %X\n",err,c);
1789 ide_led (DEVICE_LED(device), 0); /* LED off */
1794 * sending the command to atapi_issue. If an status other than good
1795 * returns, an request_sense will be issued
1798 #define ATAPI_DRIVE_NOT_READY 100
1799 #define ATAPI_UNIT_ATTN 10
1801 unsigned char atapi_issue_autoreq (int device,
1804 unsigned char *buffer,
1807 unsigned char sense_data[18],sense_ccb[12];
1808 unsigned char res,key,asc,ascq;
1809 int notready,unitattn;
1811 unitattn=ATAPI_UNIT_ATTN;
1812 notready=ATAPI_DRIVE_NOT_READY;
1815 res= atapi_issue(device,ccb,ccblen,buffer,buflen);
1817 return (0); /* Ok */
1820 return (0xFF); /* error */
1822 debug ("(auto_req)atapi_issue returned sense key %X\n",res);
1824 memset(sense_ccb,0,sizeof(sense_ccb));
1825 memset(sense_data,0,sizeof(sense_data));
1826 sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
1827 sense_ccb[4]=18; /* allocation Length */
1829 res=atapi_issue(device,sense_ccb,12,sense_data,18);
1830 key=(sense_data[2]&0xF);
1831 asc=(sense_data[12]);
1832 ascq=(sense_data[13]);
1834 debug ("ATAPI_CMD_REQ_SENSE returned %x\n",res);
1835 debug (" Sense page: %02X key %02X ASC %02X ASCQ %02X\n",
1842 return 0; /* ok device ready */
1844 if((key==6)|| (asc==0x29) || (asc==0x28)) { /* Unit Attention */
1849 printf("Unit Attention, tried %d\n",ATAPI_UNIT_ATTN);
1852 if((asc==0x4) && (ascq==0x1)) { /* not ready, but will be ready soon */
1857 printf("Drive not ready, tried %d times\n",ATAPI_DRIVE_NOT_READY);
1861 debug ("Media not present\n");
1865 printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1867 debug ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
1872 static void atapi_inquiry(block_dev_desc_t * dev_desc)
1874 unsigned char ccb[12]; /* Command descriptor block */
1875 unsigned char iobuf[64]; /* temp buf */
1879 device=dev_desc->dev;
1880 dev_desc->type=DEV_TYPE_UNKNOWN; /* not yet valid */
1881 dev_desc->block_read=atapi_read;
1883 memset(ccb,0,sizeof(ccb));
1884 memset(iobuf,0,sizeof(iobuf));
1886 ccb[0]=ATAPI_CMD_INQUIRY;
1887 ccb[4]=40; /* allocation Legnth */
1888 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,40);
1890 debug ("ATAPI_CMD_INQUIRY returned %x\n",c);
1894 /* copy device ident strings */
1895 ident_cpy((unsigned char*)dev_desc->vendor,&iobuf[8],8);
1896 ident_cpy((unsigned char*)dev_desc->product,&iobuf[16],16);
1897 ident_cpy((unsigned char*)dev_desc->revision,&iobuf[32],5);
1902 dev_desc->type=iobuf[0] & 0x1f;
1904 if ((iobuf[1]&0x80)==0x80)
1905 dev_desc->removable = 1;
1907 dev_desc->removable = 0;
1909 memset(ccb,0,sizeof(ccb));
1910 memset(iobuf,0,sizeof(iobuf));
1911 ccb[0]=ATAPI_CMD_START_STOP;
1912 ccb[4]=0x03; /* start */
1914 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1916 debug ("ATAPI_CMD_START_STOP returned %x\n",c);
1920 memset(ccb,0,sizeof(ccb));
1921 memset(iobuf,0,sizeof(iobuf));
1922 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,0);
1924 debug ("ATAPI_CMD_UNIT_TEST_READY returned %x\n",c);
1928 memset(ccb,0,sizeof(ccb));
1929 memset(iobuf,0,sizeof(iobuf));
1930 ccb[0]=ATAPI_CMD_READ_CAP;
1931 c=atapi_issue_autoreq(device,ccb,12,(unsigned char *)iobuf,8);
1932 debug ("ATAPI_CMD_READ_CAP returned %x\n",c);
1936 debug ("Read Cap: LBA %02X%02X%02X%02X blksize %02X%02X%02X%02X\n",
1937 iobuf[0],iobuf[1],iobuf[2],iobuf[3],
1938 iobuf[4],iobuf[5],iobuf[6],iobuf[7]);
1940 dev_desc->lba =((unsigned long)iobuf[0]<<24) +
1941 ((unsigned long)iobuf[1]<<16) +
1942 ((unsigned long)iobuf[2]<< 8) +
1943 ((unsigned long)iobuf[3]);
1944 dev_desc->blksz=((unsigned long)iobuf[4]<<24) +
1945 ((unsigned long)iobuf[5]<<16) +
1946 ((unsigned long)iobuf[6]<< 8) +
1947 ((unsigned long)iobuf[7]);
1949 dev_desc->lba48 = 0; /* ATAPI devices cannot use 48bit addressing (ATA/ATAPI v7) */
1957 * we transfer only one block per command, since the multiple DRQ per
1958 * command is not yet implemented
1960 #define ATAPI_READ_MAX_BYTES 2048 /* we read max 2kbytes */
1961 #define ATAPI_READ_BLOCK_SIZE 2048 /* assuming CD part */
1962 #define ATAPI_READ_MAX_BLOCK ATAPI_READ_MAX_BYTES/ATAPI_READ_BLOCK_SIZE /* max blocks */
1964 ulong atapi_read (int device, lbaint_t blknr, ulong blkcnt, void *buffer)
1967 unsigned char ccb[12]; /* Command descriptor block */
1970 debug ("atapi_read dev %d start %lX, blocks %lX buffer at %lX\n",
1971 device, blknr, blkcnt, (ulong)buffer);
1974 if (blkcnt>ATAPI_READ_MAX_BLOCK) {
1975 cnt=ATAPI_READ_MAX_BLOCK;
1979 ccb[0]=ATAPI_CMD_READ_12;
1980 ccb[1]=0; /* reserved */
1981 ccb[2]=(unsigned char) (blknr>>24) & 0xFF; /* MSB Block */
1982 ccb[3]=(unsigned char) (blknr>>16) & 0xFF; /* */
1983 ccb[4]=(unsigned char) (blknr>> 8) & 0xFF;
1984 ccb[5]=(unsigned char) blknr & 0xFF; /* LSB Block */
1985 ccb[6]=(unsigned char) (cnt >>24) & 0xFF; /* MSB Block count */
1986 ccb[7]=(unsigned char) (cnt >>16) & 0xFF;
1987 ccb[8]=(unsigned char) (cnt >> 8) & 0xFF;
1988 ccb[9]=(unsigned char) cnt & 0xFF; /* LSB Block */
1989 ccb[10]=0; /* reserved */
1990 ccb[11]=0; /* reserved */
1992 if (atapi_issue_autoreq(device,ccb,12,
1993 (unsigned char *)buffer,
1994 cnt*ATAPI_READ_BLOCK_SIZE) == 0xFF) {
2000 buffer+=(cnt*ATAPI_READ_BLOCK_SIZE);
2001 } while (blkcnt > 0);
2005 /* ------------------------------------------------------------------------- */
2007 #endif /* CONFIG_ATAPI */
2012 "reset - reset IDE controller\n"
2013 "ide info - show available IDE devices\n"
2014 "ide device [dev] - show or set current device\n"
2015 "ide part [dev] - print partition table of one or all IDE devices\n"
2016 "ide read addr blk# cnt\n"
2017 "ide write addr blk# cnt - read/write `cnt'"
2018 " blocks starting at block `blk#'\n"
2019 " to/from memory address `addr'"
2023 diskboot, 3, 1, do_diskboot,
2024 "boot from IDE device",