diff options
author | Tejun Heo <htejun@gmail.com> | 2007-09-23 00:14:12 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-10-12 14:55:41 -0400 |
commit | ae791c05694d7391ee9261a0450a50f7e95aedfd (patch) | |
tree | 73e3fbcd6cdfe667b5dcc512daaec7fb5941a132 /include/linux/libata.h | |
parent | da917d69d0ea63f5390716cba6e77f490ce96df9 (diff) |
libata-pmp-prep: implement ATA_LFLAG_NO_SRST, ASSUME_ATA and ASSUME_SEMB
Some links on some PMPs locks up on SRST and/or report incorrect
device signature. Implement ATA_LFLAG_NO_SRST, ASSUME_ATA and
ASSUME_SEMB to handle these quirky links. NO_SRST makes EH avoid
SRST. ASSUME_ATA and SEMB forces class code to ATA and SEMB_UNSUP
respectively. Note that SEMB isn't currently supported yet so the
_UNSUP variant is used.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'include/linux/libata.h')
-rw-r--r-- | include/linux/libata.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index f9f81fd93293..6266fffb0eb3 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -165,6 +165,10 @@ enum { | |||
165 | ATA_LFLAG_HRST_TO_RESUME = (1 << 0), /* hardreset to resume link */ | 165 | ATA_LFLAG_HRST_TO_RESUME = (1 << 0), /* hardreset to resume link */ |
166 | ATA_LFLAG_SKIP_D2H_BSY = (1 << 1), /* can't wait for the first D2H | 166 | ATA_LFLAG_SKIP_D2H_BSY = (1 << 1), /* can't wait for the first D2H |
167 | * Register FIS clearing BSY */ | 167 | * Register FIS clearing BSY */ |
168 | ATA_LFLAG_NO_SRST = (1 << 2), /* avoid softreset */ | ||
169 | ATA_LFLAG_ASSUME_ATA = (1 << 3), /* assume ATA class */ | ||
170 | ATA_LFLAG_ASSUME_SEMB = (1 << 4), /* assume SEMB class */ | ||
171 | ATA_LFLAG_ASSUME_CLASS = ATA_LFLAG_ASSUME_ATA | ATA_LFLAG_ASSUME_SEMB, | ||
168 | 172 | ||
169 | /* struct ata_port flags */ | 173 | /* struct ata_port flags */ |
170 | ATA_FLAG_SLAVE_POSS = (1 << 0), /* host supports slave dev */ | 174 | ATA_FLAG_SLAVE_POSS = (1 << 0), /* host supports slave dev */ |