aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ide
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ide')
-rw-r--r--drivers/ide/siimage.c27
1 files changed, 1 insertions, 26 deletions
diff --git a/drivers/ide/siimage.c b/drivers/ide/siimage.c
index 6a643fdf0e6e..af4fe7c48a01 100644
--- a/drivers/ide/siimage.c
+++ b/drivers/ide/siimage.c
@@ -338,26 +338,6 @@ static void sil_set_dma_mode(ide_drive_t *drive, const u8 speed)
338 sil_iowrite16(dev, ultra, ua); 338 sil_iowrite16(dev, ultra, ua);
339} 339}
340 340
341/* returns 1 if dma irq issued, 0 otherwise */
342static int siimage_io_dma_test_irq(ide_drive_t *drive)
343{
344 ide_hwif_t *hwif = drive->hwif;
345 struct pci_dev *dev = to_pci_dev(hwif->dev);
346 u8 dma_altstat = 0;
347 unsigned long addr = siimage_selreg(hwif, 1);
348
349 /* return 1 if INTR asserted */
350 if (inb(hwif->dma_base + ATA_DMA_STATUS) & 4)
351 return 1;
352
353 /* return 1 if Device INTR asserted */
354 pci_read_config_byte(dev, addr, &dma_altstat);
355 if (dma_altstat & 8)
356 return 0; /* return 1; */
357
358 return 0;
359}
360
361/** 341/**
362 * siimage_mmio_dma_test_irq - check we caused an IRQ 342 * siimage_mmio_dma_test_irq - check we caused an IRQ
363 * @drive: drive we are testing 343 * @drive: drive we are testing
@@ -369,7 +349,6 @@ static int siimage_io_dma_test_irq(ide_drive_t *drive)
369static int siimage_mmio_dma_test_irq(ide_drive_t *drive) 349static int siimage_mmio_dma_test_irq(ide_drive_t *drive)
370{ 350{
371 ide_hwif_t *hwif = drive->hwif; 351 ide_hwif_t *hwif = drive->hwif;
372 unsigned long addr = siimage_selreg(hwif, 0x1);
373 void __iomem *sata_error_addr 352 void __iomem *sata_error_addr
374 = (void __iomem *)hwif->sata_scr[SATA_ERROR_OFFSET]; 353 = (void __iomem *)hwif->sata_scr[SATA_ERROR_OFFSET];
375 354
@@ -398,10 +377,6 @@ static int siimage_mmio_dma_test_irq(ide_drive_t *drive)
398 if (readb((void __iomem *)(hwif->dma_base + ATA_DMA_STATUS)) & 4) 377 if (readb((void __iomem *)(hwif->dma_base + ATA_DMA_STATUS)) & 4)
399 return 1; 378 return 1;
400 379
401 /* return 1 if Device INTR asserted */
402 if (readb((void __iomem *)addr) & 8)
403 return 0; /* return 1; */
404
405 return 0; 380 return 0;
406} 381}
407 382
@@ -410,7 +385,7 @@ static int siimage_dma_test_irq(ide_drive_t *drive)
410 if (drive->hwif->host_flags & IDE_HFLAG_MMIO) 385 if (drive->hwif->host_flags & IDE_HFLAG_MMIO)
411 return siimage_mmio_dma_test_irq(drive); 386 return siimage_mmio_dma_test_irq(drive);
412 else 387 else
413 return siimage_io_dma_test_irq(drive); 388 return ide_dma_test_irq(drive);
414} 389}
415 390
416/** 391/**