diff options
Diffstat (limited to 'include/linux/ata.h')
-rw-r--r-- | include/linux/ata.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/linux/ata.h b/include/linux/ata.h index ca5fcadf9981..6962e26fc6df 100644 --- a/include/linux/ata.h +++ b/include/linux/ata.h | |||
@@ -125,6 +125,7 @@ enum { | |||
125 | ATA_CMD_PACKET = 0xA0, | 125 | ATA_CMD_PACKET = 0xA0, |
126 | ATA_CMD_VERIFY = 0x40, | 126 | ATA_CMD_VERIFY = 0x40, |
127 | ATA_CMD_VERIFY_EXT = 0x42, | 127 | ATA_CMD_VERIFY_EXT = 0x42, |
128 | ATA_CMD_INIT_DEV_PARAMS = 0x91, | ||
128 | 129 | ||
129 | /* SETFEATURES stuff */ | 130 | /* SETFEATURES stuff */ |
130 | SETFEATURES_XFER = 0x03, | 131 | SETFEATURES_XFER = 0x03, |
@@ -174,6 +175,7 @@ enum { | |||
174 | ATA_TFLAG_ISADDR = (1 << 1), /* enable r/w to nsect/lba regs */ | 175 | ATA_TFLAG_ISADDR = (1 << 1), /* enable r/w to nsect/lba regs */ |
175 | ATA_TFLAG_DEVICE = (1 << 2), /* enable r/w to device reg */ | 176 | ATA_TFLAG_DEVICE = (1 << 2), /* enable r/w to device reg */ |
176 | ATA_TFLAG_WRITE = (1 << 3), /* data dir: host->dev==1 (write) */ | 177 | ATA_TFLAG_WRITE = (1 << 3), /* data dir: host->dev==1 (write) */ |
178 | ATA_TFLAG_LBA = (1 << 4), /* enable LBA */ | ||
177 | }; | 179 | }; |
178 | 180 | ||
179 | enum ata_tf_protocols { | 181 | enum ata_tf_protocols { |
@@ -243,6 +245,18 @@ struct ata_taskfile { | |||
243 | ((u64) (id)[(n) + 1] << 16) | \ | 245 | ((u64) (id)[(n) + 1] << 16) | \ |
244 | ((u64) (id)[(n) + 0]) ) | 246 | ((u64) (id)[(n) + 0]) ) |
245 | 247 | ||
248 | static inline int ata_id_current_chs_valid(u16 *id) | ||
249 | { | ||
250 | /* For ATA-1 devices, if the INITIALIZE DEVICE PARAMETERS command | ||
251 | has not been issued to the device then the values of | ||
252 | id[54] to id[56] are vendor specific. */ | ||
253 | return (id[53] & 0x01) && /* Current translation valid */ | ||
254 | id[54] && /* cylinders in current translation */ | ||
255 | id[55] && /* heads in current translation */ | ||
256 | id[55] <= 16 && | ||
257 | id[56]; /* sectors in current translation */ | ||
258 | } | ||
259 | |||
246 | static inline int atapi_cdb_len(u16 *dev_id) | 260 | static inline int atapi_cdb_len(u16 *dev_id) |
247 | { | 261 | { |
248 | u16 tmp = dev_id[0] & 0x3; | 262 | u16 tmp = dev_id[0] & 0x3; |