diff options
author | Jeff Garzik <jgarzik@pobox.com> | 2005-09-28 12:11:15 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-09-28 12:11:15 -0400 |
commit | 64f09c98d7fce21dcb8da9f248e4159eb1ec245e (patch) | |
tree | e03ed75665d536438fcb79b468a439caacd3d7dc /include | |
parent | 14be71f4c5c5ad1e222c5202ee6d234e9c8828b7 (diff) | |
parent | 98ed72deebfd2b55b7e1bb94c8175b1169999212 (diff) |
/spare/repo/libata-dev branch 'chs-support'
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ata.h | 14 | ||||
-rw-r--r-- | include/linux/libata.h | 6 |
2 files changed, 20 insertions, 0 deletions
diff --git a/include/linux/ata.h b/include/linux/ata.h index a5b74efab067..85169ea9eb01 100644 --- a/include/linux/ata.h +++ b/include/linux/ata.h | |||
@@ -132,6 +132,7 @@ enum { | |||
132 | ATA_CMD_PACKET = 0xA0, | 132 | ATA_CMD_PACKET = 0xA0, |
133 | ATA_CMD_VERIFY = 0x40, | 133 | ATA_CMD_VERIFY = 0x40, |
134 | ATA_CMD_VERIFY_EXT = 0x42, | 134 | ATA_CMD_VERIFY_EXT = 0x42, |
135 | ATA_CMD_INIT_DEV_PARAMS = 0x91, | ||
135 | 136 | ||
136 | /* SETFEATURES stuff */ | 137 | /* SETFEATURES stuff */ |
137 | SETFEATURES_XFER = 0x03, | 138 | SETFEATURES_XFER = 0x03, |
@@ -181,6 +182,7 @@ enum { | |||
181 | ATA_TFLAG_ISADDR = (1 << 1), /* enable r/w to nsect/lba regs */ | 182 | ATA_TFLAG_ISADDR = (1 << 1), /* enable r/w to nsect/lba regs */ |
182 | ATA_TFLAG_DEVICE = (1 << 2), /* enable r/w to device reg */ | 183 | ATA_TFLAG_DEVICE = (1 << 2), /* enable r/w to device reg */ |
183 | ATA_TFLAG_WRITE = (1 << 3), /* data dir: host->dev==1 (write) */ | 184 | ATA_TFLAG_WRITE = (1 << 3), /* data dir: host->dev==1 (write) */ |
185 | ATA_TFLAG_LBA = (1 << 4), /* enable LBA */ | ||
184 | }; | 186 | }; |
185 | 187 | ||
186 | enum ata_tf_protocols { | 188 | enum ata_tf_protocols { |
@@ -250,6 +252,18 @@ struct ata_taskfile { | |||
250 | ((u64) (id)[(n) + 1] << 16) | \ | 252 | ((u64) (id)[(n) + 1] << 16) | \ |
251 | ((u64) (id)[(n) + 0]) ) | 253 | ((u64) (id)[(n) + 0]) ) |
252 | 254 | ||
255 | static inline int ata_id_current_chs_valid(u16 *id) | ||
256 | { | ||
257 | /* For ATA-1 devices, if the INITIALIZE DEVICE PARAMETERS command | ||
258 | has not been issued to the device then the values of | ||
259 | id[54] to id[56] are vendor specific. */ | ||
260 | return (id[53] & 0x01) && /* Current translation valid */ | ||
261 | id[54] && /* cylinders in current translation */ | ||
262 | id[55] && /* heads in current translation */ | ||
263 | id[55] <= 16 && | ||
264 | id[56]; /* sectors in current translation */ | ||
265 | } | ||
266 | |||
253 | static inline int atapi_cdb_len(u16 *dev_id) | 267 | static inline int atapi_cdb_len(u16 *dev_id) |
254 | { | 268 | { |
255 | u16 tmp = dev_id[0] & 0x3; | 269 | u16 tmp = dev_id[0] & 0x3; |
diff --git a/include/linux/libata.h b/include/linux/libata.h index bb2d916bce44..4739a75b983d 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -97,6 +97,7 @@ enum { | |||
97 | ATA_DFLAG_LBA48 = (1 << 0), /* device supports LBA48 */ | 97 | ATA_DFLAG_LBA48 = (1 << 0), /* device supports LBA48 */ |
98 | ATA_DFLAG_PIO = (1 << 1), /* device currently in PIO mode */ | 98 | ATA_DFLAG_PIO = (1 << 1), /* device currently in PIO mode */ |
99 | ATA_DFLAG_LOCK_SECTORS = (1 << 2), /* don't adjust max_sectors */ | 99 | ATA_DFLAG_LOCK_SECTORS = (1 << 2), /* don't adjust max_sectors */ |
100 | ATA_DFLAG_LBA = (1 << 3), /* device supports LBA */ | ||
100 | 101 | ||
101 | ATA_DEV_UNKNOWN = 0, /* unknown device */ | 102 | ATA_DEV_UNKNOWN = 0, /* unknown device */ |
102 | ATA_DEV_ATA = 1, /* ATA device */ | 103 | ATA_DEV_ATA = 1, /* ATA device */ |
@@ -282,6 +283,11 @@ struct ata_device { | |||
282 | u8 xfer_protocol; /* taskfile xfer protocol */ | 283 | u8 xfer_protocol; /* taskfile xfer protocol */ |
283 | u8 read_cmd; /* opcode to use on read */ | 284 | u8 read_cmd; /* opcode to use on read */ |
284 | u8 write_cmd; /* opcode to use on write */ | 285 | u8 write_cmd; /* opcode to use on write */ |
286 | |||
287 | /* for CHS addressing */ | ||
288 | u16 cylinders; /* Number of cylinders */ | ||
289 | u16 heads; /* Number of heads */ | ||
290 | u16 sectors; /* Number of sectors per track */ | ||
285 | }; | 291 | }; |
286 | 292 | ||
287 | struct ata_port { | 293 | struct ata_port { |