aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-10-10 16:39:30 -0400
committerBartlomiej Zolnierkiewicz <bzolnier@gmail.com>2008-10-10 16:39:30 -0400
commit4b58f17d7c45a8e5f4acda641bec388398b9c0fa (patch)
tree60ff1975dea044c3f268818f69001df5ac10eb42
parent1a4e4d4d2cceb72be70526a485914abd638c7de1 (diff)
ide: ide_id_has_flush_cache() -> ata_id_flush_enabled()
* Add ata_id_flush_enabled() inline helper to <linux/ata.h>. * ide_id_has_flush_cache() -> ata_id_flush_enabled() The latter one also checks if the command is marked as supported in word 83 and validity of words 83 & 86. Cc: Jeff Garzik <jgarzik@pobox.com> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
-rw-r--r--drivers/ide/ide-disk.c6
-rw-r--r--drivers/ide/ide-io.c2
-rw-r--r--include/linux/ata.h9
-rw-r--r--include/linux/ide.h3
4 files changed, 13 insertions, 7 deletions
diff --git a/drivers/ide/ide-disk.c b/drivers/ide/ide-disk.c
index 8f49bc0ecbf8..7b24dff17460 100644
--- a/drivers/ide/ide-disk.c
+++ b/drivers/ide/ide-disk.c
@@ -651,7 +651,7 @@ static void update_ordered(ide_drive_t *drive)
651 * not available so we don't need to recheck that. 651 * not available so we don't need to recheck that.
652 */ 652 */
653 capacity = idedisk_capacity(drive); 653 capacity = idedisk_capacity(drive);
654 barrier = ide_id_has_flush_cache(id) && !drive->noflush && 654 barrier = ata_id_flush_enabled(id) && !drive->noflush &&
655 (drive->addressing == 0 || capacity <= (1ULL << 28) || 655 (drive->addressing == 0 || capacity <= (1ULL << 28) ||
656 ide_id_has_flush_cache_ext(id)); 656 ide_id_has_flush_cache_ext(id));
657 657
@@ -678,7 +678,7 @@ static int set_wcache(ide_drive_t *drive, int arg)
678 if (arg < 0 || arg > 1) 678 if (arg < 0 || arg > 1)
679 return -EINVAL; 679 return -EINVAL;
680 680
681 if (ide_id_has_flush_cache(drive->id)) { 681 if (ata_id_flush_enabled(drive->id)) {
682 memset(&args, 0, sizeof(ide_task_t)); 682 memset(&args, 0, sizeof(ide_task_t));
683 args.tf.feature = arg ? 683 args.tf.feature = arg ?
684 SETFEATURES_WC_ON : SETFEATURES_WC_OFF; 684 SETFEATURES_WC_ON : SETFEATURES_WC_OFF;
@@ -886,7 +886,7 @@ static void idedisk_setup(ide_drive_t *drive)
886 886
887static void ide_cacheflush_p(ide_drive_t *drive) 887static void ide_cacheflush_p(ide_drive_t *drive)
888{ 888{
889 if (!drive->wcache || !ide_id_has_flush_cache(drive->id)) 889 if (!drive->wcache || ata_id_flush_enabled(drive->id) == 0)
890 return; 890 return;
891 891
892 if (do_idedisk_flushcache(drive)) 892 if (do_idedisk_flushcache(drive))
diff --git a/drivers/ide/ide-io.c b/drivers/ide/ide-io.c
index 99e0bbca3ace..c1596178fcae 100644
--- a/drivers/ide/ide-io.c
+++ b/drivers/ide/ide-io.c
@@ -184,7 +184,7 @@ static ide_startstop_t ide_start_power_step(ide_drive_t *drive, struct request *
184 if (drive->media != ide_disk) 184 if (drive->media != ide_disk)
185 break; 185 break;
186 /* Not supported? Switch to next step now. */ 186 /* Not supported? Switch to next step now. */
187 if (!drive->wcache || !ide_id_has_flush_cache(drive->id)) { 187 if (!drive->wcache || ata_id_flush_enabled(drive->id) == 0) {
188 ide_complete_power_step(drive, rq, 0, 0); 188 ide_complete_power_step(drive, rq, 0, 0);
189 return ide_stopped; 189 return ide_stopped;
190 } 190 }
diff --git a/include/linux/ata.h b/include/linux/ata.h
index 8162257b474f..921cf0fc337f 100644
--- a/include/linux/ata.h
+++ b/include/linux/ata.h
@@ -558,6 +558,15 @@ static inline int ata_id_has_flush(const u16 *id)
558 return id[ATA_ID_COMMAND_SET_2] & (1 << 12); 558 return id[ATA_ID_COMMAND_SET_2] & (1 << 12);
559} 559}
560 560
561static inline int ata_id_flush_enabled(const u16 *id)
562{
563 if (ata_id_has_flush(id) == 0)
564 return 0;
565 if ((id[ATA_ID_CSF_DEFAULT] & 0xC000) != 0x4000)
566 return 0;
567 return id[ATA_ID_CFS_ENABLE_2] & (1 << 12);
568}
569
561static inline int ata_id_has_flush_ext(const u16 *id) 570static inline int ata_id_has_flush_ext(const u16 *id)
562{ 571{
563 if ((id[ATA_ID_COMMAND_SET_2] & 0xC000) != 0x4000) 572 if ((id[ATA_ID_COMMAND_SET_2] & 0xC000) != 0x4000)
diff --git a/include/linux/ide.h b/include/linux/ide.h
index 6e22cd20dd8b..d2213d7cc4cb 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -1453,9 +1453,6 @@ extern struct mutex ide_cfg_mtx;
1453extern struct bus_type ide_bus_type; 1453extern struct bus_type ide_bus_type;
1454extern struct class *ide_port_class; 1454extern struct class *ide_port_class;
1455 1455
1456/* check if CACHE FLUSH command is supported (as defined in ATA-6) */
1457#define ide_id_has_flush_cache(id) ((id)[ATA_ID_CFS_ENABLE_2] & 0x1000)
1458
1459/* some Maxtor disks have bit 13 defined incorrectly so check bit 10 too */ 1456/* some Maxtor disks have bit 13 defined incorrectly so check bit 10 too */
1460#define ide_id_has_flush_cache_ext(id) \ 1457#define ide_id_has_flush_cache_ext(id) \
1461 (((id)[ATA_ID_CFS_ENABLE_2] & 0x2400) == 0x2400) 1458 (((id)[ATA_ID_CFS_ENABLE_2] & 0x2400) == 0x2400)