]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - common/cmd_ide.c
* LWMON extensions:
[people/ms/u-boot.git] / common / cmd_ide.c
index 9cbfe1bb04aea4b2161f212c1934c1f26718ca4e..9441db2dd65c842f0da83cd876be101672f6334e 100644 (file)
@@ -44,6 +44,9 @@
 #ifdef CONFIG_STATUS_LED
 # include <status_led.h>
 #endif
+#ifdef __I386__
+#include <asm/io.h>
+#endif
 
 #ifdef CONFIG_SHOW_BOOT_PROGRESS
 # include <status_led.h>
@@ -55,6 +58,7 @@
 
 #undef IDE_DEBUG
 
+
 #ifdef IDE_DEBUG
 #define        PRINTF(fmt,args...)     printf (fmt ,##args)
 #else
@@ -114,17 +118,35 @@ ulong ide_bus_offset[CFG_IDE_MAXBUS] = {
 #endif
 };
 
+#ifdef __PPC__
 #define        ATA_CURR_BASE(dev)      (CFG_ATA_BASE_ADDR+ide_bus_offset[IDE_BUS(dev)])
+#endif
 
+#ifndef CONFIG_AMIGAONEG3SE
 static int         ide_bus_ok[CFG_IDE_MAXBUS];
+#else
+static int         ide_bus_ok[CFG_IDE_MAXBUS] = {0,};
+#endif
 
 static  block_dev_desc_t ide_dev_desc[CFG_IDE_MAXDEVICE];
 /* ------------------------------------------------------------------------- */
 
 #ifdef CONFIG_IDE_LED
+#ifndef CONFIG_KUP4K
 static void  ide_led   (uchar led, uchar status);
 #else
+extern void  ide_led   (uchar led, uchar status);
+#endif
+#else
+#ifndef CONFIG_AMIGAONEG3SE
 #define ide_led(a,b)   /* dummy */
+#else
+extern void ide_led(uchar led, uchar status);
+#define LED_IDE1  1
+#define LED_IDE2  2
+#define CONFIG_IDE_LED 1
+#define DEVICE_LED(x) 1
+#endif
 #endif
 
 #ifdef CONFIG_IDE_RESET
@@ -142,9 +164,11 @@ static uchar ide_wait  (int dev, ulong t);
 
 #define IDE_SPIN_UP_TIME_OUT 5000 /* 5 sec spin-up timeout */
 
-static void __inline__ outb(int dev, int port, unsigned char val);
-static unsigned char __inline__ inb(int dev, int port);
+static void __inline__ ide_outb(int dev, int port, unsigned char val);
+static unsigned char __inline__ ide_inb(int dev, int port);
+#ifdef __PPC__
 static void input_swap_data(int dev, ulong *sect_buf, int words);
+#endif
 static void input_data(int dev, ulong *sect_buf, int words);
 static void output_data(int dev, ulong *sect_buf, int words);
 static void ident_cpy (unsigned char *dest, unsigned char *src, unsigned int len);
@@ -380,7 +404,8 @@ int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
                SHOW_BOOT_PROGRESS (-1);
                return 1;
        }
-       if (strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) {
+       if ((strncmp(info.type, BOOT_PART_TYPE, sizeof(info.type)) != 0) &&
+           (strncmp(info.type, BOOT_PART_COMP, sizeof(info.type)) != 0)) {
                printf ("\n** Invalid partition type \"%.32s\""
                        " (expect \"" BOOT_PART_TYPE "\")\n",
                        info.type);
@@ -457,14 +482,22 @@ void ide_init (void)
 #endif
        unsigned char c;
        int i, bus;
+#ifdef CONFIG_AMIGAONEG3SE
+       unsigned int max_bus_scan;
+       unsigned int ata_reset_time;
+       char *s;
+#endif
 
 #ifdef CONFIG_IDE_8xx_PCCARD
        extern int pcmcia_on (void);
+       extern int ide_devices_found; /* Initialized in check_ide_device() */
 
        WATCHDOG_RESET();
 
+       ide_devices_found = 0;
        /* initialize the PCMCIA IDE adapter card */
-       if (pcmcia_on())
+       pcmcia_on();
+       if (!ide_devices_found)
                return;
        udelay (1000000);       /* 1 s */
 #endif /* CONFIG_IDE_8xx_PCCARD */
@@ -507,9 +540,27 @@ void ide_init (void)
         * Wait for IDE to get ready.
         * According to spec, this can take up to 31 seconds!
         */
+#ifndef CONFIG_AMIGAONEG3SE
        for (bus=0; bus<CFG_IDE_MAXBUS; ++bus) {
                int dev = bus * (CFG_IDE_MAXDEVICE / CFG_IDE_MAXBUS);
+#else
+       s = getenv("ide_maxbus");
+       if (s)
+           max_bus_scan = simple_strtol(s, NULL, 10);
+       else
+           max_bus_scan = CFG_IDE_MAXBUS;
+
+       for (bus=0; bus<max_bus_scan; ++bus) {
+               int dev = bus * (CFG_IDE_MAXDEVICE / max_bus_scan);
+#endif
 
+#ifdef CONFIG_IDE_8xx_PCCARD
+               /* Skip non-ide devices from probing */
+               if ((ide_devices_found & (1 << bus)) == 0) {
+                       ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
+                       continue;
+               }
+#endif
                printf ("Bus %d: ", bus);
 
                ide_bus_ok[bus] = 0;
@@ -517,18 +568,34 @@ void ide_init (void)
                /* Select device
                 */
                udelay (100000);                /* 100 ms */
-               outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
+               ide_outb (dev, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(dev));
                udelay (100000);                /* 100 ms */
-
+#ifdef CONFIG_AMIGAONEG3SE
+               ata_reset_time = ATA_RESET_TIME;
+               s = getenv("ide_reset_timeout");
+               if (s) ata_reset_time = 2*simple_strtol(s, NULL, 10);
+#endif
                i = 0;
                do {
                        udelay (10000);         /* 10 ms */
 
-                       c = inb (dev, ATA_STATUS);
+                       c = ide_inb (dev, ATA_STATUS);
                        i++;
+#ifdef CONFIG_AMIGAONEG3SE
+                       if (i > (ata_reset_time * 100)) {
+#else
                        if (i > (ATA_RESET_TIME * 100)) {
+#endif
                                puts ("** Timeout **\n");
                                ide_led ((LED_IDE1 | LED_IDE2), 0); /* LED's off */
+#ifdef CONFIG_AMIGAONEG3SE
+                               /* If this is the second bus, the first one was OK */
+                               if (bus != 0)
+                               {
+                                   ide_bus_ok[bus] = 0;
+                                   goto skip_bus;
+                               }
+#endif
                                return;
                        }
                        if ((i >= 100) && ((i%100)==0)) {
@@ -550,6 +617,10 @@ void ide_init (void)
                }
                WATCHDOG_RESET();
        }
+
+#ifdef CONFIG_AMIGAONEG3SE
+      skip_bus:
+#endif
        putc ('\n');
 
        ide_led ((LED_IDE1 | LED_IDE2), 0);     /* LED's off    */
@@ -679,30 +750,48 @@ set_pcmcia_timing (int pmode)
 
 /* ------------------------------------------------------------------------- */
 
+#ifdef __PPC__
 static void __inline__
-outb(int dev, int port, unsigned char val)
+ide_outb(int dev, int port, unsigned char val)
 {
        /* Ensure I/O operations complete */
        __asm__ volatile("eieio");
        *((uchar *)(ATA_CURR_BASE(dev)+port)) = val;
 #if 0
-       printf ("OUTB: 0x%08lx <== 0x%02x\n", ATA_CURR_BASE(dev)+port, val);
+       printf ("ide_outb: 0x%08lx <== 0x%02x\n", ATA_CURR_BASE(dev)+port, val);
 #endif
 }
+#else  /* ! __PPC__ */
+static void __inline__
+ide_outb(int dev, int port, unsigned char val)
+{
+       outb(val, port);
+}
+#endif /* __PPC__ */
+
 
+#ifdef __PPC__
 static unsigned char __inline__
-inb(int dev, int port)
+ide_inb(int dev, int port)
 {
        uchar val;
        /* Ensure I/O operations complete */
        __asm__ volatile("eieio");
        val = *((uchar *)(ATA_CURR_BASE(dev)+port));
 #if 0
-       printf ("INB: 0x%08lx ==> 0x%02x\n", ATA_CURR_BASE(dev)+port, val);
+       printf ("ide_inb: 0x%08lx ==> 0x%02x\n", ATA_CURR_BASE(dev)+port, val);
 #endif
        return (val);
 }
+#else  /* ! __PPC__ */
+static unsigned char __inline__
+ide_inb(int dev, int port)
+{
+       return inb(port);
+}
+#endif /* __PPC__ */
 
+#ifdef __PPC__
 __inline__ unsigned ld_le16(const volatile unsigned short *addr)
 {
        unsigned val;
@@ -711,6 +800,26 @@ __inline__ unsigned ld_le16(const volatile unsigned short *addr)
        return val;
 }
 
+#ifdef CONFIG_AMIGAONEG3SE
+static void
+output_data_short(int dev, ulong *sect_buf, int words)
+{
+       ushort  *dbuf;
+       volatile ushort *pbuf;
+       
+       pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
+       dbuf = (ushort *)sect_buf;
+       while (words--) {
+               __asm__ volatile ("eieio");
+               *pbuf = *dbuf++;
+               __asm__ volatile ("eieio");
+       }
+
+       if (words&1)
+           *pbuf = 0;
+}
+#endif
+
 static void
 input_swap_data(int dev, ulong *sect_buf, int words)
 {
@@ -722,7 +831,14 @@ input_swap_data(int dev, ulong *sect_buf, int words)
                *dbuf++ = ld_le16(pbuf);
        }
 }
+#else  /* ! __PPC__ */
+#define input_swap_data(x,y,z) input_data(x,y,z)
+#endif /* __PPC__ */
+
+
 
+
+#ifdef __PPC__
 static void
 output_data(int dev, ulong *sect_buf, int words)
 {
@@ -738,7 +854,15 @@ output_data(int dev, ulong *sect_buf, int words)
                *pbuf = *dbuf++;
        }
 }
+#else  /* ! __PPC__ */
+static void
+output_data(int dev, ulong *sect_buf, int words)
+{
+       outsw(ATA_DATA_REG, sect_buf, words<<1);
+}
+#endif /* __PPC__ */
 
+#ifdef __PPC__
 static void
 input_data(int dev, ulong *sect_buf, int words)
 {
@@ -754,6 +878,37 @@ input_data(int dev, ulong *sect_buf, int words)
                *dbuf++ = *pbuf;
        }
 }
+#else  /* ! __PPC__ */
+static void
+input_data(int dev, ulong *sect_buf, int words)
+{
+       insw(ATA_DATA_REG, sect_buf, words << 1);
+}
+
+#endif /* __PPC__ */
+
+#ifdef CONFIG_AMIGAONEG3SE
+static void
+input_data_short(int dev, ulong *sect_buf, int words)
+{
+       ushort  *dbuf;
+       volatile ushort *pbuf;
+
+       pbuf = (ushort *)(ATA_CURR_BASE(dev)+ATA_DATA_REG);
+       dbuf = (ushort *)sect_buf;
+       while (words--) {
+               __asm__ volatile ("eieio");
+               *dbuf++ = *pbuf;
+               __asm__ volatile ("eieio");
+       }
+
+       if (words&1)
+       {
+           ushort dummy;
+           dummy = *pbuf;
+       }
+}
+#endif
 
 /* -------------------------------------------------------------------------
  */
@@ -763,6 +918,13 @@ static void ide_ident (block_dev_desc_t *dev_desc)
        unsigned char c;
        hd_driveid_t *iop = (hd_driveid_t *)iobuf;
 
+#ifdef CONFIG_AMIGAONEG3SE
+       int max_bus_scan;
+       int retries = 0;
+       char *s;
+       int do_retry = 0;
+#endif
+
 #if 0
        int mode, cycle_time;
 #endif
@@ -770,22 +932,45 @@ static void ide_ident (block_dev_desc_t *dev_desc)
        device=dev_desc->dev;
        printf ("  Device %d: ", device);
 
+#ifdef CONFIG_AMIGAONEG3SE
+       s = getenv("ide_maxbus");
+       if (s) {
+               max_bus_scan = simple_strtol(s, NULL, 10);
+       } else {
+               max_bus_scan = CFG_IDE_MAXBUS;
+       }
+       if (device >= max_bus_scan*2) {
+               dev_desc->type=DEV_TYPE_UNKNOWN;
+               return;
+       }
+#endif
+
        ide_led (DEVICE_LED(device), 1);        /* LED on       */
        /* Select device
         */
-       outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
+       ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
        dev_desc->if_type=IF_TYPE_IDE;
 #ifdef CONFIG_ATAPI
+
+#ifdef CONFIG_AMIGAONEG3SE
+    do_retry = 0;
+    retries = 0;
+
+    /* Warning: This will be tricky to read */
+    while (retries <= 1)
+    {
+#endif /* CONFIG_AMIGAONEG3SE */
+
        /* check signature */
-       if ((inb(device,ATA_SECT_CNT)==0x01) &&
-                (inb(device,ATA_SECT_NUM)==0x01) &&
-                (inb(device,ATA_CYL_LOW)==0x14) &&
-                (inb(device,ATA_CYL_HIGH)==0xEB)) {
+       if ((ide_inb(device,ATA_SECT_CNT) == 0x01) &&
+                (ide_inb(device,ATA_SECT_NUM) == 0x01) &&
+                (ide_inb(device,ATA_CYL_LOW)  == 0x14) &&
+                (ide_inb(device,ATA_CYL_HIGH) == 0xEB)) {
                /* ATAPI Signature found */
                dev_desc->if_type=IF_TYPE_ATAPI;
                /* Start Ident Command
                 */
-               outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
+               ide_outb (device, ATA_COMMAND, ATAPI_CMD_IDENT);
                /*
                 * Wait for completion - ATAPI devices need more time
                 * to become ready
@@ -797,7 +982,7 @@ static void ide_ident (block_dev_desc_t *dev_desc)
        {
                /* Start Ident Command
                 */
-               outb (device, ATA_COMMAND, ATA_CMD_IDENT);
+               ide_outb (device, ATA_COMMAND, ATA_CMD_IDENT);
 
                /* Wait for completion
                 */
@@ -807,9 +992,34 @@ static void ide_ident (block_dev_desc_t *dev_desc)
 
        if (((c & ATA_STAT_DRQ) == 0) ||
            ((c & (ATA_STAT_FAULT|ATA_STAT_ERR)) != 0) ) {
+#ifdef CONFIG_AMIGAONEG3SE
+               if (retries == 0) {
+                       do_retry = 1;
+               } else {
+                       dev_desc->type=DEV_TYPE_UNKNOWN;
+                       return;
+               }
+#else
                dev_desc->type=DEV_TYPE_UNKNOWN;
                return;
+#endif /* CONFIG_AMIGAONEG3SE */
+       }
+
+#ifdef CONFIG_AMIGAONEG3SE
+       s = getenv("ide_doreset");
+       if (s && strcmp(s, "on") == 0 && 1 == do_retry) {
+               /* Need to soft reset the device in case it's an ATAPI...  */
+               PRINTF("Retrying...\n");
+               ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
+               udelay(100000);
+               ide_outb (device, ATA_COMMAND, 0x08);
+               udelay (100000);        /* 100 ms */
+               retries++;
+       } else {
+               retries = 100;
        }
+    }  /* see above - ugly to read */
+#endif /* CONFIG_AMIGAONEG3SE */
 
        input_swap_data (device, iobuf, ATA_SECTORWORDS);
 
@@ -867,15 +1077,15 @@ static void ide_ident (block_dev_desc_t *dev_desc)
 #if 0  /* only used to test the powersaving mode,
         * if enabled, the drive goes after 5 sec
         * in standby mode */
-       outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
+       ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
        c = ide_wait (device, IDE_TIME_OUT);
-       outb (device, ATA_SECT_CNT, 1);
-       outb (device, ATA_LBA_LOW,  0);
-       outb (device, ATA_LBA_MID,  0);
-       outb (device, ATA_LBA_HIGH, 0);
-       outb (device, ATA_DEV_HD,   ATA_LBA             |
+       ide_outb (device, ATA_SECT_CNT, 1);
+       ide_outb (device, ATA_LBA_LOW,  0);
+       ide_outb (device, ATA_LBA_MID,  0);
+       ide_outb (device, ATA_LBA_HIGH, 0);
+       ide_outb (device, ATA_DEV_HD,   ATA_LBA         |
                                    ATA_DEVICE(device));
-       outb (device, ATA_COMMAND,  0xe3);
+       ide_outb (device, ATA_COMMAND,  0xe3);
        udelay (50);
        c = ide_wait (device, IDE_TIME_OUT);    /* can't take over 500 ms */
 #endif
@@ -897,7 +1107,7 @@ ulong ide_read (int device, ulong blknr, ulong blkcnt, ulong *buffer)
 
        /* Select device
         */
-       outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
+       ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
        c = ide_wait (device, IDE_TIME_OUT);
 
        if (c & ATA_STAT_BUSY) {
@@ -907,7 +1117,7 @@ ulong ide_read (int device, ulong blknr, ulong blkcnt, ulong *buffer)
 
        /* first check if the drive is in Powersaving mode, if yes,
         * increase the timeout value */
-       outb (device, ATA_COMMAND,  ATA_CMD_CHK_PWR);
+       ide_outb (device, ATA_COMMAND,  ATA_CMD_CHK_PWR);
        udelay (50);
 
        c = ide_wait (device, IDE_TIME_OUT);    /* can't take over 500 ms */
@@ -919,7 +1129,7 @@ ulong ide_read (int device, ulong blknr, ulong blkcnt, ulong *buffer)
        if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
                printf ("No Powersaving mode %X\n", c);
        } else {
-               c = inb(device,ATA_SECT_CNT);
+               c = ide_inb(device,ATA_SECT_CNT);
                PRINTF("Powersaving %02X\n",c);
                if(c==0)
                        pwrsave=1;
@@ -935,14 +1145,14 @@ ulong ide_read (int device, ulong blknr, ulong blkcnt, ulong *buffer)
                        break;
                }
 
-               outb (device, ATA_SECT_CNT, 1);
-               outb (device, ATA_LBA_LOW,  (blknr >>  0) & 0xFF);
-               outb (device, ATA_LBA_MID,  (blknr >>  8) & 0xFF);
-               outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
-               outb (device, ATA_DEV_HD,   ATA_LBA             |
+               ide_outb (device, ATA_SECT_CNT, 1);
+               ide_outb (device, ATA_LBA_LOW,  (blknr >>  0) & 0xFF);
+               ide_outb (device, ATA_LBA_MID,  (blknr >>  8) & 0xFF);
+               ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
+               ide_outb (device, ATA_DEV_HD,   ATA_LBA         |
                                            ATA_DEVICE(device)  |
                                            ((blknr >> 24) & 0xF) );
-               outb (device, ATA_COMMAND,  ATA_CMD_READ);
+               ide_outb (device, ATA_COMMAND,  ATA_CMD_READ);
 
                udelay (50);
 
@@ -960,7 +1170,7 @@ ulong ide_read (int device, ulong blknr, ulong blkcnt, ulong *buffer)
                }
 
                input_data (device, buffer, ATA_SECTORWORDS);
-               (void) inb (device, ATA_STATUS);        /* clear IRQ */
+               (void) ide_inb (device, ATA_STATUS);    /* clear IRQ */
 
                ++n;
                ++blknr;
@@ -983,7 +1193,7 @@ ulong ide_write (int device, ulong blknr, ulong blkcnt, ulong *buffer)
 
        /* Select device
         */
-       outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
+       ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
 
        while (blkcnt-- > 0) {
 
@@ -994,14 +1204,14 @@ ulong ide_write (int device, ulong blknr, ulong blkcnt, ulong *buffer)
                        goto WR_OUT;
                }
 
-               outb (device, ATA_SECT_CNT, 1);
-               outb (device, ATA_LBA_LOW,  (blknr >>  0) & 0xFF);
-               outb (device, ATA_LBA_MID,  (blknr >>  8) & 0xFF);
-               outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
-               outb (device, ATA_DEV_HD,   ATA_LBA             |
+               ide_outb (device, ATA_SECT_CNT, 1);
+               ide_outb (device, ATA_LBA_LOW,  (blknr >>  0) & 0xFF);
+               ide_outb (device, ATA_LBA_MID,  (blknr >>  8) & 0xFF);
+               ide_outb (device, ATA_LBA_HIGH, (blknr >> 16) & 0xFF);
+               ide_outb (device, ATA_DEV_HD,   ATA_LBA         |
                                            ATA_DEVICE(device)  |
                                            ((blknr >> 24) & 0xF) );
-               outb (device, ATA_COMMAND,  ATA_CMD_WRITE);
+               ide_outb (device, ATA_COMMAND,  ATA_CMD_WRITE);
 
                udelay (50);
 
@@ -1014,7 +1224,7 @@ ulong ide_write (int device, ulong blknr, ulong blkcnt, ulong *buffer)
                }
 
                output_data (device, buffer, ATA_SECTORWORDS);
-               c = inb (device, ATA_STATUS);   /* clear IRQ */
+               c = ide_inb (device, ATA_STATUS);       /* clear IRQ */
                ++n;
                ++blknr;
                buffer += ATA_SECTORWORDS;
@@ -1063,7 +1273,7 @@ static uchar ide_wait (int dev, ulong t)
        ulong delay = 10 * t;           /* poll every 100 us */
        uchar c;
 
-       while ((c = inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
+       while ((c = ide_inb(dev, ATA_STATUS)) & ATA_STAT_BUSY) {
                udelay (100);
                if (delay-- == 0) {
                        break;
@@ -1152,7 +1362,7 @@ static void ide_reset (void)
 
 /* ------------------------------------------------------------------------- */
 
-#ifdef CONFIG_IDE_LED
+#if defined(CONFIG_IDE_LED) && !defined(CONFIG_AMIGAONEG3SE) && !defined(CONFIG_KUP4K)
 
 static uchar   led_buffer = 0;         /* Buffer for current LED status        */
 
@@ -1188,6 +1398,7 @@ static void ide_led (uchar led, uchar status)
 #define AT_PRINTF(fmt,args...)
 #endif
 
+#ifdef __PPC__
 /* since ATAPI may use commands with not 4 bytes alligned length
  * we have our own transfer functions, 2 bytes alligned */
 static void
@@ -1218,6 +1429,22 @@ input_data_shorts(int dev, ushort *sect_buf, int shorts)
        }
 }
 
+#else  /* ! __PPC__ */
+static void
+output_data_shorts(int dev, ushort *sect_buf, int shorts)
+{
+       outsw(ATA_DATA_REG, sect_buf, shorts);
+}
+
+
+static void
+input_data_shorts(int dev, ushort *sect_buf, int shorts)
+{
+       insw(ATA_DATA_REG, sect_buf, shorts);
+}
+
+#endif /* __PPC__ */
+
 /*
  * Wait until (Status & mask) == res, or timeout (in ms)
  * Return last status
@@ -1229,9 +1456,8 @@ static uchar atapi_wait_mask (int dev, ulong t,uchar mask, uchar res)
        ulong delay = 10 * t;           /* poll every 100 us */
        uchar c;
 
-       c = inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
-       while (((c = inb(dev, ATA_STATUS)) & mask)
-                       != res) {
+       c = ide_inb(dev,ATA_DEV_CTL); /* prevents to read the status before valid */
+       while (((c = ide_inb(dev, ATA_STATUS)) & mask) != res) {
                /* break if error occurs (doesn't make sense to wait more) */
                if((c & ATA_STAT_ERR)==ATA_STAT_ERR)
                        break;
@@ -1256,7 +1482,10 @@ unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned cha
         */
        mask = ATA_STAT_BUSY|ATA_STAT_DRQ;
        res = 0;
-       outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
+#ifdef CONFIG_AMIGAONEG3SE
+# warning THF: Removed LBA mode ???
+#endif
+       ide_outb (device, ATA_DEV_HD, ATA_LBA | ATA_DEVICE(device));
        c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
        if ((c & mask) != res) {
                printf ("ATAPI_ISSUE: device %d not ready status %X\n", device,c);
@@ -1264,12 +1493,17 @@ unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned cha
                goto AI_OUT;
        }
        /* write taskfile */
-       outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
-       outb (device, ATA_CYL_LOW,  (unsigned char)(buflen & 0xFF));
-       outb (device, ATA_CYL_HIGH, (unsigned char)((buflen<<8) & 0xFF));
-       outb (device, ATA_DEV_HD,   ATA_LBA | ATA_DEVICE(device));
+       ide_outb (device, ATA_ERROR_REG, 0); /* no DMA, no overlaped */
+       ide_outb (device, ATA_SECT_CNT, 0);
+       ide_outb (device, ATA_SECT_NUM, 0);
+       ide_outb (device, ATA_CYL_LOW,  (unsigned char)(buflen & 0xFF));
+       ide_outb (device, ATA_CYL_HIGH, (unsigned char)((buflen>>8) & 0xFF));
+#ifdef CONFIG_AMIGAONEG3SE
+# warning THF: Removed LBA mode ???
+#endif
+       ide_outb (device, ATA_DEV_HD,   ATA_LBA | ATA_DEVICE(device));
 
-       outb (device, ATA_COMMAND,  ATAPI_CMD_PACKET);
+       ide_outb (device, ATA_COMMAND,  ATAPI_CMD_PACKET);
        udelay (50);
 
        mask = ATA_STAT_DRQ|ATA_STAT_BUSY|ATA_STAT_ERR;
@@ -1295,7 +1529,7 @@ unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned cha
        c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
        if ((c & mask) != res ) {
                if (c & ATA_STAT_ERR) {
-                       err=(inb(device,ATA_ERROR_REG))>>4;
+                       err=(ide_inb(device,ATA_ERROR_REG))>>4;
                        AT_PRINTF("atapi_issue 1 returned sense key %X status %02X\n",err,c);
                } else {
                        printf ("ATTAPI_ISSUE: (no DRQ) after sending ccb (%x)  status 0x%02x\n", ccb[0],c);
@@ -1303,9 +1537,9 @@ unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned cha
                }
                goto AI_OUT;
        }
-       n=inb(device, ATA_CYL_HIGH);
+       n=ide_inb(device, ATA_CYL_HIGH);
        n<<=8;
-       n+=inb(device, ATA_CYL_LOW);
+       n+=ide_inb(device, ATA_CYL_LOW);
        if(n>buflen) {
                printf("ERROR, transfer bytes %d requested only %d\n",n,buflen);
                err=0xff;
@@ -1324,7 +1558,7 @@ unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned cha
                 /* we transfer shorts */
                n>>=1;
                /* ok now decide if it is an in or output */
-               if ((inb(device, ATA_SECT_CNT)&0x02)==0) {
+               if ((ide_inb(device, ATA_SECT_CNT)&0x02)==0) {
                        AT_PRINTF("Write to device\n");
                        output_data_shorts(device,(unsigned short *)buffer,n);
                } else {
@@ -1337,7 +1571,7 @@ unsigned char atapi_issue(int device,unsigned char* ccb,int ccblen, unsigned cha
        res=0;
        c = atapi_wait_mask(device,ATAPI_TIME_OUT,mask,res);
        if ((c & ATA_STAT_ERR) == ATA_STAT_ERR) {
-               err=(inb(device,ATA_ERROR_REG) >> 4);
+               err=(ide_inb(device,ATA_ERROR_REG) >> 4);
                AT_PRINTF("atapi_issue 2 returned sense key %X status %X\n",err,c);
        } else {
                err = 0;
@@ -1365,6 +1599,16 @@ unsigned char atapi_issue_autoreq (int device,
        unsigned char res,key,asc,ascq;
        int notready,unitattn;
 
+#ifdef CONFIG_AMIGAONEG3SE
+       char *s;
+       unsigned int timeout, retrycnt;
+
+       s = getenv("ide_cd_timeout");
+       timeout = s ? (simple_strtol(s, NULL, 10)*1000000)/5 : 0;
+
+       retrycnt = 0;
+#endif
+
        unitattn=ATAPI_UNIT_ATTN;
        notready=ATAPI_DRIVE_NOT_READY;
 
@@ -1381,7 +1625,7 @@ retry:
        memset(sense_ccb,0,sizeof(sense_ccb));
        memset(sense_data,0,sizeof(sense_data));
        sense_ccb[0]=ATAPI_CMD_REQ_SENSE;
-       sense_ccb[4]=18; /* allocation Legnth */
+       sense_ccb[4]=18; /* allocation Length */
 
        res=atapi_issue(device,sense_ccb,12,sense_data,18);
        key=(sense_data[2]&0xF);
@@ -1418,6 +1662,26 @@ retry:
                AT_PRINTF("Media not present\n");
                goto error;
        }
+
+#ifdef CONFIG_AMIGAONEG3SE
+       if ((sense_data[2]&0xF)==0x0B) {
+               AT_PRINTF("ABORTED COMMAND...retry\n");
+               if (retrycnt++ < 4)
+                       goto retry;
+               return (0xFF);
+       }
+
+       if ((sense_data[2]&0xf) == 0x02 &&
+           sense_data[12] == 0x04      &&
+           sense_data[13] == 0x01      ) {
+               AT_PRINTF("Waiting for unit to become active\n");
+               udelay(timeout);
+               if (retrycnt++ < 4)
+                       goto retry;
+               return 0xFF;
+       }
+#endif /* CONFIG_AMIGAONEG3SE */
+
        printf ("ERROR: Unknown Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);
 error:
        AT_PRINTF ("ERROR Sense key %02X ASC %02X ASCQ %02X\n",key,asc,ascq);