upgrade to linux 2.6.10-1.12_FC2
[linux-2.6.git] / drivers / ide / ide-taskfile.c
index 4826fd9..8dc1efd 100644 (file)
@@ -5,7 +5,7 @@
  *  Copyright (C) 2000-2002    Andre Hedrick <andre@linux-ide.org>
  *  Copyright (C) 2001-2002    Klaus Smolin
  *                                     IBM Storage Technology Division
- *  Copyright (C) 2003         Bartlomiej Zolnierkiewicz
+ *  Copyright (C) 2003-2004    Bartlomiej Zolnierkiewicz
  *
  *  The big the bad and the ugly.
  *
 #include <linux/delay.h>
 #include <linux/hdreg.h>
 #include <linux/ide.h>
+#include <linux/bitops.h>
 
 #include <asm/byteorder.h>
 #include <asm/irq.h>
 #include <asm/uaccess.h>
 #include <asm/io.h>
-#include <asm/bitops.h>
 
 #define DEBUG_TASKFILE 0       /* unset when fixed */
 
@@ -63,14 +63,14 @@ static void ata_bswap_data (void *buffer, int wcount)
        }
 }
 
-void taskfile_input_data(ide_drive_t *drive, void *buffer, u32 wcount)
+static void taskfile_input_data(ide_drive_t *drive, void *buffer, u32 wcount)
 {
        HWIF(drive)->ata_input_data(drive, buffer, wcount);
        if (drive->bswap)
                ata_bswap_data(buffer, wcount);
 }
 
-void taskfile_output_data(ide_drive_t *drive, void *buffer, u32 wcount)
+static void taskfile_output_data(ide_drive_t *drive, void *buffer, u32 wcount)
 {
        if (drive->bswap) {
                ata_bswap_data(buffer, wcount);
@@ -143,15 +143,15 @@ ide_startstop_t do_rw_taskfile (ide_drive_t *drive, ide_task_t *task)
                case WIN_WRITEDMA_ONCE:
                case WIN_WRITEDMA:
                case WIN_WRITEDMA_EXT:
-                       if (!hwif->ide_dma_write(drive))
-                               return ide_started;
-                       break;
                case WIN_READDMA_ONCE:
                case WIN_READDMA:
                case WIN_READDMA_EXT:
                case WIN_IDENTIFY_DMA:
-                       if (!hwif->ide_dma_read(drive))
+                       if (!hwif->ide_dma_setup(drive)) {
+                               hwif->ide_dma_exec_cmd(drive, taskfile->command);
+                               hwif->ide_dma_start(drive);
                                return ide_started;
+                       }
                        break;
                default:
                        if (task->handler == NULL)
@@ -246,73 +246,6 @@ ide_startstop_t task_no_data_intr (ide_drive_t *drive)
 
 EXPORT_SYMBOL(task_no_data_intr);
 
-static void task_buffer_sectors(ide_drive_t *drive, struct request *rq,
-                               unsigned nsect, unsigned rw)
-{
-       char *buf = rq->buffer + blk_rq_offset(rq);
-
-       rq->sector += nsect;
-       rq->current_nr_sectors -= nsect;
-       rq->nr_sectors -= nsect;
-       __task_sectors(drive, buf, nsect, rw);
-}
-
-static inline void task_buffer_multi_sectors(ide_drive_t *drive,
-                                            struct request *rq, unsigned rw)
-{
-       unsigned int msect = drive->mult_count, nsect;
-
-       nsect = rq->current_nr_sectors;
-       if (nsect > msect)
-               nsect = msect;
-
-       task_buffer_sectors(drive, rq, nsect, rw);
-}
-
-#ifdef CONFIG_IDE_TASKFILE_IO
-static void task_sectors(ide_drive_t *drive, struct request *rq,
-                        unsigned nsect, unsigned rw)
-{
-       if (rq->cbio) { /* fs request */
-               rq->errors = 0;
-               task_bio_sectors(drive, rq, nsect, rw);
-       } else          /* task request */
-               task_buffer_sectors(drive, rq, nsect, rw);
-}
-
-static inline void task_bio_multi_sectors(ide_drive_t *drive,
-                                         struct request *rq, unsigned rw)
-{
-       unsigned int nsect, msect = drive->mult_count;
-
-       do {
-               nsect = rq->current_nr_sectors;
-               if (nsect > msect)
-                       nsect = msect;
-
-               task_bio_sectors(drive, rq, nsect, rw);
-
-               if (!rq->nr_sectors)
-                       msect = 0;
-               else
-                       msect -= nsect;
-       } while (msect);
-}
-
-static void task_multi_sectors(ide_drive_t *drive,
-                              struct request *rq, unsigned rw)
-{
-       if (rq->cbio) { /* fs request */
-               rq->errors = 0;
-               task_bio_multi_sectors(drive, rq, rw);
-       } else          /* task request */
-               task_buffer_multi_sectors(drive, rq, rw);
-}
-#else
-# define task_sectors(d, rq, nsect, rw)        task_buffer_sectors(d, rq, nsect, rw)
-# define task_multi_sectors(d, rq, rw) task_buffer_multi_sectors(d, rq, rw)
-#endif /* CONFIG_IDE_TASKFILE_IO */
-
 static u8 wait_drive_not_busy(ide_drive_t *drive)
 {
        ide_hwif_t *hwif = HWIF(drive);
@@ -333,37 +266,92 @@ static u8 wait_drive_not_busy(ide_drive_t *drive)
        return stat;
 }
 
+static void ide_pio_sector(ide_drive_t *drive, unsigned int write)
+{
+       ide_hwif_t *hwif = drive->hwif;
+       struct scatterlist *sg = hwif->sg_table;
+       struct page *page;
+#ifdef CONFIG_HIGHMEM
+       unsigned long flags;
+#endif
+       unsigned int offset;
+       u8 *buf;
+
+       page = sg[hwif->cursg].page;
+       offset = sg[hwif->cursg].offset + hwif->cursg_ofs * SECTOR_SIZE;
+
+       /* get the current page and offset */
+       page = nth_page(page, (offset >> PAGE_SHIFT));
+       offset %= PAGE_SIZE;
+
+#ifdef CONFIG_HIGHMEM
+       local_irq_save(flags);
+#endif
+       buf = kmap_atomic(page, KM_BIO_SRC_IRQ) + offset;
+
+       hwif->nleft--;
+       hwif->cursg_ofs++;
+
+       if ((hwif->cursg_ofs * SECTOR_SIZE) == sg[hwif->cursg].length) {
+               hwif->cursg++;
+               hwif->cursg_ofs = 0;
+       }
+
+       /* do the actual data transfer */
+       if (write)
+               taskfile_output_data(drive, buf, SECTOR_WORDS);
+       else
+               taskfile_input_data(drive, buf, SECTOR_WORDS);
+
+       kunmap_atomic(buf, KM_BIO_SRC_IRQ);
+#ifdef CONFIG_HIGHMEM
+       local_irq_restore(flags);
+#endif
+}
+
+static void ide_pio_multi(ide_drive_t *drive, unsigned int write)
+{
+       unsigned int nsect;
+
+       nsect = min_t(unsigned int, drive->hwif->nleft, drive->mult_count);
+       while (nsect--)
+               ide_pio_sector(drive, write);
+}
+
 static inline void ide_pio_datablock(ide_drive_t *drive, struct request *rq,
                                     unsigned int write)
 {
+       if (rq->bio)    /* fs request */
+               rq->errors = 0;
+
        switch (drive->hwif->data_phase) {
        case TASKFILE_MULTI_IN:
        case TASKFILE_MULTI_OUT:
-               task_multi_sectors(drive, rq, write);
+               ide_pio_multi(drive, write);
                break;
        default:
-               task_sectors(drive, rq, 1, write);
+               ide_pio_sector(drive, write);
                break;
        }
 }
 
-#ifdef CONFIG_IDE_TASKFILE_IO
 static ide_startstop_t task_error(ide_drive_t *drive, struct request *rq,
                                  const char *s, u8 stat)
 {
        if (rq->bio) {
-               int sectors = rq->hard_nr_sectors - rq->nr_sectors;
+               ide_hwif_t *hwif = drive->hwif;
+               int sectors = hwif->nsect - hwif->nleft;
 
-               switch (drive->hwif->data_phase) {
+               switch (hwif->data_phase) {
                case TASKFILE_IN:
-                       if (rq->nr_sectors)
+                       if (hwif->nleft)
                                break;
                        /* fall through */
                case TASKFILE_OUT:
                        sectors--;
                        break;
                case TASKFILE_MULTI_IN:
-                       if (rq->nr_sectors)
+                       if (hwif->nleft)
                                break;
                        /* fall through */
                case TASKFILE_MULTI_OUT:
@@ -377,9 +365,6 @@ static ide_startstop_t task_error(ide_drive_t *drive, struct request *rq,
        }
        return drive->driver->error(drive, s, stat);
 }
-#else
-# define task_error(d, rq, s, stat) drive->driver->error(d, s, stat)
-#endif
 
 static void task_end_request(ide_drive_t *drive, struct request *rq, u8 stat)
 {
@@ -400,9 +385,11 @@ static void task_end_request(ide_drive_t *drive, struct request *rq, u8 stat)
  */
 ide_startstop_t task_in_intr (ide_drive_t *drive)
 {
+       ide_hwif_t *hwif = drive->hwif;
        struct request *rq = HWGROUP(drive)->rq;
-       u8 stat = HWIF(drive)->INB(IDE_STATUS_REG);
+       u8 stat = hwif->INB(IDE_STATUS_REG);
 
+       /* new way for dealing with premature shared PCI interrupts */
        if (!OK_STAT(stat, DATA_READY, BAD_R_STAT)) {
                if (stat & (ERR_STAT | DRQ_STAT))
                        return task_error(drive, rq, __FUNCTION__, stat);
@@ -414,7 +401,7 @@ ide_startstop_t task_in_intr (ide_drive_t *drive)
        ide_pio_datablock(drive, rq, 0);
 
        /* If it was the last datablock check status and finish transfer. */
-       if (!rq->nr_sectors) {
+       if (!hwif->nleft) {
                stat = wait_drive_not_busy(drive);
                if (!OK_STAT(stat, 0, BAD_R_STAT))
                        return task_error(drive, rq, __FUNCTION__, stat);
@@ -432,20 +419,20 @@ EXPORT_SYMBOL(task_in_intr);
 /*
  * Handler for command with PIO data-out phase (Write/Write Multiple).
  */
-ide_startstop_t task_out_intr (ide_drive_t *drive)
+static ide_startstop_t task_out_intr (ide_drive_t *drive)
 {
+       ide_hwif_t *hwif = drive->hwif;
        struct request *rq = HWGROUP(drive)->rq;
-       u8 stat;
+       u8 stat = hwif->INB(IDE_STATUS_REG);
 
-       stat = HWIF(drive)->INB(IDE_STATUS_REG);
        if (!OK_STAT(stat, DRIVE_READY, drive->bad_wstat))
                return task_error(drive, rq, __FUNCTION__, stat);
 
        /* Deal with unexpected ATA data phase. */
-       if (((stat & DRQ_STAT) == 0) ^ !rq->nr_sectors)
+       if (((stat & DRQ_STAT) == 0) ^ !hwif->nleft)
                return task_error(drive, rq, __FUNCTION__, stat);
 
-       if (!rq->nr_sectors) {
+       if (!hwif->nleft) {
                task_end_request(drive, rq, stat);
                return ide_stopped;
        }
@@ -457,8 +444,6 @@ ide_startstop_t task_out_intr (ide_drive_t *drive)
        return ide_started;
 }
 
-EXPORT_SYMBOL(task_out_intr);
-
 ide_startstop_t pre_task_out_intr (ide_drive_t *drive, struct request *rq)
 {
        ide_startstop_t startstop;
@@ -510,6 +495,9 @@ static int ide_diag_taskfile(ide_drive_t *drive, ide_task_t *args, unsigned long
 
                rq.hard_nr_sectors = rq.nr_sectors;
                rq.hard_cur_sectors = rq.current_nr_sectors = rq.nr_sectors;
+
+               if (args->command_type == IDE_DRIVE_TASK_RAW_WRITE)
+                       rq.flags |= REQ_RW;
        }
 
        rq.special = args;
@@ -518,11 +506,7 @@ static int ide_diag_taskfile(ide_drive_t *drive, ide_task_t *args, unsigned long
 
 int ide_raw_taskfile (ide_drive_t *drive, ide_task_t *args, u8 *buf)
 {
-       ide_hwif_t *hwif = HWIF(drive);
-       if(hwif->raw_taskfile)
-               return hwif->raw_taskfile(drive, args, buf);
-       else
-               return ide_diag_taskfile(drive, args, 0, buf);
+       return ide_diag_taskfile(drive, args, 0, buf);
 }
 
 EXPORT_SYMBOL(ide_raw_taskfile);
@@ -877,12 +861,11 @@ ide_startstop_t flagged_taskfile (ide_drive_t *drive, ide_task_t *task)
 
                case TASKFILE_OUT_DMAQ:
                case TASKFILE_OUT_DMA:
-                       hwif->ide_dma_write(drive);
-                       break;
-
                case TASKFILE_IN_DMAQ:
                case TASKFILE_IN_DMA:
-                       hwif->ide_dma_read(drive);
+                       hwif->ide_dma_setup(drive);
+                       hwif->ide_dma_exec_cmd(drive, taskfile->command);
+                       hwif->ide_dma_start(drive);
                        break;
 
                default: