diff options
author | <jgarzik@pretzel.yyz.us> | 2005-06-04 01:02:00 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-06-04 01:02:00 -0400 |
commit | 70c85233814949184070ee35f8929dde64402dc9 (patch) | |
tree | 4a44a9a886be12b9477fd254d693f4fbb0297527 /drivers | |
parent | 31c94a6e987af162ac5ede83cddf49870cd1f2ed (diff) | |
parent | 73561695b2e77473e353a5ae63bab81ed5098d8e (diff) |
Merge of /spare/repo/libata-dev branch bridge-detect
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/libata-core.c | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/drivers/scsi/libata-core.c b/drivers/scsi/libata-core.c index 21d194c6ace3..84c4770e5bb4 100644 --- a/drivers/scsi/libata-core.c +++ b/drivers/scsi/libata-core.c | |||
@@ -1295,6 +1295,37 @@ err_out: | |||
1295 | DPRINTK("EXIT, err\n"); | 1295 | DPRINTK("EXIT, err\n"); |
1296 | } | 1296 | } |
1297 | 1297 | ||
1298 | |||
1299 | static inline u8 ata_dev_knobble(struct ata_port *ap) | ||
1300 | { | ||
1301 | return ((ap->cbl == ATA_CBL_SATA) && (!ata_id_is_sata(ap->device->id))); | ||
1302 | } | ||
1303 | |||
1304 | /** | ||
1305 | * ata_dev_config - Run device specific handlers and check for | ||
1306 | * SATA->PATA bridges | ||
1307 | * @ap: Bus | ||
1308 | * @i: Device | ||
1309 | * | ||
1310 | * LOCKING: | ||
1311 | */ | ||
1312 | |||
1313 | void ata_dev_config(struct ata_port *ap, unsigned int i) | ||
1314 | { | ||
1315 | /* limit bridge transfers to udma5, 200 sectors */ | ||
1316 | if (ata_dev_knobble(ap)) { | ||
1317 | printk(KERN_INFO "ata%u(%u): applying bridge limits\n", | ||
1318 | ap->id, ap->device->devno); | ||
1319 | ap->udma_mask &= ATA_UDMA5; | ||
1320 | ap->host->max_sectors = ATA_MAX_SECTORS; | ||
1321 | ap->host->hostt->max_sectors = ATA_MAX_SECTORS; | ||
1322 | ap->device->flags |= ATA_DFLAG_LOCK_SECTORS; | ||
1323 | } | ||
1324 | |||
1325 | if (ap->ops->dev_config) | ||
1326 | ap->ops->dev_config(ap, &ap->device[i]); | ||
1327 | } | ||
1328 | |||
1298 | /** | 1329 | /** |
1299 | * ata_bus_probe - Reset and probe ATA bus | 1330 | * ata_bus_probe - Reset and probe ATA bus |
1300 | * @ap: Bus to probe | 1331 | * @ap: Bus to probe |
@@ -1322,8 +1353,7 @@ static int ata_bus_probe(struct ata_port *ap) | |||
1322 | ata_dev_identify(ap, i); | 1353 | ata_dev_identify(ap, i); |
1323 | if (ata_dev_present(&ap->device[i])) { | 1354 | if (ata_dev_present(&ap->device[i])) { |
1324 | found = 1; | 1355 | found = 1; |
1325 | if (ap->ops->dev_config) | 1356 | ata_dev_config(ap,i); |
1326 | ap->ops->dev_config(ap, &ap->device[i]); | ||
1327 | } | 1357 | } |
1328 | } | 1358 | } |
1329 | 1359 | ||
@@ -4408,6 +4438,7 @@ EXPORT_SYMBOL_GPL(ata_scsi_release); | |||
4408 | EXPORT_SYMBOL_GPL(ata_host_intr); | 4438 | EXPORT_SYMBOL_GPL(ata_host_intr); |
4409 | EXPORT_SYMBOL_GPL(ata_dev_classify); | 4439 | EXPORT_SYMBOL_GPL(ata_dev_classify); |
4410 | EXPORT_SYMBOL_GPL(ata_dev_id_string); | 4440 | EXPORT_SYMBOL_GPL(ata_dev_id_string); |
4441 | EXPORT_SYMBOL_GPL(ata_dev_config); | ||
4411 | EXPORT_SYMBOL_GPL(ata_scsi_simulate); | 4442 | EXPORT_SYMBOL_GPL(ata_scsi_simulate); |
4412 | 4443 | ||
4413 | #ifdef CONFIG_PCI | 4444 | #ifdef CONFIG_PCI |