diff options
Diffstat (limited to 'drivers/ata/ahci.c')
-rw-r--r-- | drivers/ata/ahci.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 483733783cf8..d52b73ab795a 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c | |||
@@ -1368,6 +1368,30 @@ static void ahci_port_intr(struct ata_port *ap) | |||
1368 | return; | 1368 | return; |
1369 | } | 1369 | } |
1370 | 1370 | ||
1371 | if (status & PORT_IRQ_SDB_FIS) { | ||
1372 | /* | ||
1373 | * if this is an ATAPI device with AN turned on, | ||
1374 | * then we should interrogate the device to | ||
1375 | * determine the cause of the interrupt | ||
1376 | * | ||
1377 | * for AN - this we should check the SDB FIS | ||
1378 | * and find the I and N bits set | ||
1379 | */ | ||
1380 | const __le32 *f = pp->rx_fis + RX_FIS_SDB; | ||
1381 | u32 f0 = le32_to_cpu(f[0]); | ||
1382 | |||
1383 | /* check the 'N' bit in word 0 of the FIS */ | ||
1384 | if (f0 & (1 << 15)) { | ||
1385 | int port_addr = ((f0 & 0x00000f00) >> 8); | ||
1386 | struct ata_device *adev; | ||
1387 | if (port_addr < ATA_MAX_DEVICES) { | ||
1388 | adev = &ap->link.device[port_addr]; | ||
1389 | if (adev->flags & ATA_DFLAG_AN) | ||
1390 | ata_scsi_media_change_notify(adev); | ||
1391 | } | ||
1392 | } | ||
1393 | } | ||
1394 | |||
1371 | if (ap->link.sactive) | 1395 | if (ap->link.sactive) |
1372 | qc_active = readl(port_mmio + PORT_SCR_ACT); | 1396 | qc_active = readl(port_mmio + PORT_SCR_ACT); |
1373 | else | 1397 | else |