aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/ata/libata-core.c21
-rw-r--r--include/linux/ata.h9
-rw-r--r--include/linux/libata.h1
3 files changed, 30 insertions, 1 deletions
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
index 3ed3cf2f5568..ec3ce120a517 100644
--- a/drivers/ata/libata-core.c
+++ b/drivers/ata/libata-core.c
@@ -4241,6 +4241,10 @@ static const struct ata_blacklist_entry ata_device_blacklist [] = {
4241 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, }, 4241 { "ST340823A", NULL, ATA_HORKAGE_HPA_SIZE, },
4242 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, }, 4242 { "ST320413A", NULL, ATA_HORKAGE_HPA_SIZE, },
4243 4243
4244 /* Devices which get the IVB wrong */
4245 { "QUANTUM FIREBALLlct10 05", "A03.0900", ATA_HORKAGE_IVB, },
4246 { "TSSTcorp CDDVDW SH-S202J", "SB00", ATA_HORKAGE_IVB, },
4247
4244 /* End Marker */ 4248 /* End Marker */
4245 { } 4249 { }
4246}; 4250};
@@ -4302,6 +4306,21 @@ static int ata_dma_blacklisted(const struct ata_device *dev)
4302} 4306}
4303 4307
4304/** 4308/**
4309 * ata_is_40wire - check drive side detection
4310 * @dev: device
4311 *
4312 * Perform drive side detection decoding, allowing for device vendors
4313 * who can't follow the documentation.
4314 */
4315
4316static int ata_is_40wire(struct ata_device *dev)
4317{
4318 if (dev->horkage & ATA_HORKAGE_IVB)
4319 return ata_drive_40wire_relaxed(dev->id);
4320 return ata_drive_40wire(dev->id);
4321}
4322
4323/**
4305 * ata_dev_xfermask - Compute supported xfermask of the given device 4324 * ata_dev_xfermask - Compute supported xfermask of the given device
4306 * @dev: Device to compute xfermask for 4325 * @dev: Device to compute xfermask for
4307 * 4326 *
@@ -4370,7 +4389,7 @@ static void ata_dev_xfermask(struct ata_device *dev)
4370 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA)) 4389 if (xfer_mask & (0xF8 << ATA_SHIFT_UDMA))
4371 /* UDMA/44 or higher would be available */ 4390 /* UDMA/44 or higher would be available */
4372 if ((ap->cbl == ATA_CBL_PATA40) || 4391 if ((ap->cbl == ATA_CBL_PATA40) ||
4373 (ata_drive_40wire(dev->id) && 4392 (ata_is_40wire(dev) &&
4374 (ap->cbl == ATA_CBL_PATA_UNK || 4393 (ap->cbl == ATA_CBL_PATA_UNK ||
4375 ap->cbl == ATA_CBL_PATA80))) { 4394 ap->cbl == ATA_CBL_PATA80))) {
4376 ata_dev_printk(dev, KERN_WARNING, 4395 ata_dev_printk(dev, KERN_WARNING,
diff --git a/include/linux/ata.h b/include/linux/ata.h
index 304825b1c977..5c4e54a2a8d6 100644
--- a/include/linux/ata.h
+++ b/include/linux/ata.h
@@ -537,6 +537,15 @@ static inline int ata_drive_40wire(const u16 *dev_id)
537 return 1; 537 return 1;
538} 538}
539 539
540static inline int ata_drive_40wire_relaxed(const u16 *dev_id)
541{
542 if (ata_id_is_sata(dev_id))
543 return 0; /* SATA */
544 if ((dev_id[93] & 0x2000) == 0x2000)
545 return 0; /* 80 wire */
546 return 1;
547}
548
540static inline int atapi_cdb_len(const u16 *dev_id) 549static inline int atapi_cdb_len(const u16 *dev_id)
541{ 550{
542 u16 tmp = dev_id[0] & 0x3; 551 u16 tmp = dev_id[0] & 0x3;
diff --git a/include/linux/libata.h b/include/linux/libata.h
index 1e277852ba42..56a5673aebad 100644
--- a/include/linux/libata.h
+++ b/include/linux/libata.h
@@ -339,6 +339,7 @@ enum {
339 ATA_HORKAGE_SKIP_PM = (1 << 5), /* Skip PM operations */ 339 ATA_HORKAGE_SKIP_PM = (1 << 5), /* Skip PM operations */
340 ATA_HORKAGE_HPA_SIZE = (1 << 6), /* native size off by one */ 340 ATA_HORKAGE_HPA_SIZE = (1 << 6), /* native size off by one */
341 ATA_HORKAGE_IPM = (1 << 7), /* Link PM problems */ 341 ATA_HORKAGE_IPM = (1 << 7), /* Link PM problems */
342 ATA_HORKAGE_IVB = (1 << 8), /* cbl det validity bit bugs */
342 343
343 /* DMA mask for user DMA control: User visible values; DO NOT 344 /* DMA mask for user DMA control: User visible values; DO NOT
344 renumber */ 345 renumber */