diff options
Diffstat (limited to 'include/linux/libata.h')
| -rw-r--r-- | include/linux/libata.h | 113 |
1 files changed, 81 insertions, 32 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index ceee1fc42c60..00a8a5738858 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
| @@ -91,12 +91,13 @@ enum { | |||
| 91 | ATA_SHT_EMULATED = 1, | 91 | ATA_SHT_EMULATED = 1, |
| 92 | ATA_SHT_CMD_PER_LUN = 1, | 92 | ATA_SHT_CMD_PER_LUN = 1, |
| 93 | ATA_SHT_THIS_ID = -1, | 93 | ATA_SHT_THIS_ID = -1, |
| 94 | ATA_SHT_USE_CLUSTERING = 0, | 94 | ATA_SHT_USE_CLUSTERING = 1, |
| 95 | 95 | ||
| 96 | /* struct ata_device stuff */ | 96 | /* struct ata_device stuff */ |
| 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 */ |
| @@ -154,17 +155,21 @@ enum { | |||
| 154 | ATA_SHIFT_UDMA = 0, | 155 | ATA_SHIFT_UDMA = 0, |
| 155 | ATA_SHIFT_MWDMA = 8, | 156 | ATA_SHIFT_MWDMA = 8, |
| 156 | ATA_SHIFT_PIO = 11, | 157 | ATA_SHIFT_PIO = 11, |
| 158 | |||
| 159 | /* Masks for port functions */ | ||
| 160 | ATA_PORT_PRIMARY = (1 << 0), | ||
| 161 | ATA_PORT_SECONDARY = (1 << 1), | ||
| 157 | }; | 162 | }; |
| 158 | 163 | ||
| 159 | enum pio_task_states { | 164 | enum hsm_task_states { |
| 160 | PIO_ST_UNKNOWN, | 165 | HSM_ST_UNKNOWN, |
| 161 | PIO_ST_IDLE, | 166 | HSM_ST_IDLE, |
| 162 | PIO_ST_POLL, | 167 | HSM_ST_POLL, |
| 163 | PIO_ST_TMOUT, | 168 | HSM_ST_TMOUT, |
| 164 | PIO_ST, | 169 | HSM_ST, |
| 165 | PIO_ST_LAST, | 170 | HSM_ST_LAST, |
| 166 | PIO_ST_LAST_POLL, | 171 | HSM_ST_LAST_POLL, |
| 167 | PIO_ST_ERR, | 172 | HSM_ST_ERR, |
| 168 | }; | 173 | }; |
| 169 | 174 | ||
| 170 | /* forward declarations */ | 175 | /* forward declarations */ |
| @@ -197,7 +202,7 @@ struct ata_ioports { | |||
| 197 | struct ata_probe_ent { | 202 | struct ata_probe_ent { |
| 198 | struct list_head node; | 203 | struct list_head node; |
| 199 | struct device *dev; | 204 | struct device *dev; |
| 200 | struct ata_port_operations *port_ops; | 205 | const struct ata_port_operations *port_ops; |
| 201 | Scsi_Host_Template *sht; | 206 | Scsi_Host_Template *sht; |
| 202 | struct ata_ioports port[ATA_MAX_PORTS]; | 207 | struct ata_ioports port[ATA_MAX_PORTS]; |
| 203 | unsigned int n_ports; | 208 | unsigned int n_ports; |
| @@ -220,7 +225,7 @@ struct ata_host_set { | |||
| 220 | void __iomem *mmio_base; | 225 | void __iomem *mmio_base; |
| 221 | unsigned int n_ports; | 226 | unsigned int n_ports; |
| 222 | void *private_data; | 227 | void *private_data; |
| 223 | struct ata_port_operations *ops; | 228 | const struct ata_port_operations *ops; |
| 224 | struct ata_port * ports[0]; | 229 | struct ata_port * ports[0]; |
| 225 | }; | 230 | }; |
| 226 | 231 | ||
| @@ -278,15 +283,18 @@ struct ata_device { | |||
| 278 | u8 xfer_mode; | 283 | u8 xfer_mode; |
| 279 | unsigned int xfer_shift; /* ATA_SHIFT_xxx */ | 284 | unsigned int xfer_shift; /* ATA_SHIFT_xxx */ |
| 280 | 285 | ||
| 281 | /* cache info about current transfer mode */ | 286 | unsigned int multi_count; /* sectors count for |
| 282 | u8 xfer_protocol; /* taskfile xfer protocol */ | 287 | READ/WRITE MULTIPLE */ |
| 283 | u8 read_cmd; /* opcode to use on read */ | 288 | |
| 284 | u8 write_cmd; /* opcode to use on write */ | 289 | /* for CHS addressing */ |
| 290 | u16 cylinders; /* Number of cylinders */ | ||
| 291 | u16 heads; /* Number of heads */ | ||
| 292 | u16 sectors; /* Number of sectors per track */ | ||
| 285 | }; | 293 | }; |
| 286 | 294 | ||
| 287 | struct ata_port { | 295 | struct ata_port { |
| 288 | struct Scsi_Host *host; /* our co-allocated scsi host */ | 296 | struct Scsi_Host *host; /* our co-allocated scsi host */ |
| 289 | struct ata_port_operations *ops; | 297 | const struct ata_port_operations *ops; |
| 290 | unsigned long flags; /* ATA_FLAG_xxx */ | 298 | unsigned long flags; /* ATA_FLAG_xxx */ |
| 291 | unsigned int id; /* unique id req'd by scsi midlyr */ | 299 | unsigned int id; /* unique id req'd by scsi midlyr */ |
| 292 | unsigned int port_no; /* unique port #; from zero */ | 300 | unsigned int port_no; /* unique port #; from zero */ |
| @@ -319,7 +327,7 @@ struct ata_port { | |||
| 319 | struct work_struct packet_task; | 327 | struct work_struct packet_task; |
| 320 | 328 | ||
| 321 | struct work_struct pio_task; | 329 | struct work_struct pio_task; |
| 322 | unsigned int pio_task_state; | 330 | unsigned int hsm_task_state; |
| 323 | unsigned long pio_task_timeout; | 331 | unsigned long pio_task_timeout; |
| 324 | 332 | ||
| 325 | void *private_data; | 333 | void *private_data; |
| @@ -333,10 +341,10 @@ struct ata_port_operations { | |||
| 333 | void (*set_piomode) (struct ata_port *, struct ata_device *); | 341 | void (*set_piomode) (struct ata_port *, struct ata_device *); |
| 334 | void (*set_dmamode) (struct ata_port *, struct ata_device *); | 342 | void (*set_dmamode) (struct ata_port *, struct ata_device *); |
| 335 | 343 | ||
| 336 | void (*tf_load) (struct ata_port *ap, struct ata_taskfile *tf); | 344 | void (*tf_load) (struct ata_port *ap, const struct ata_taskfile *tf); |
| 337 | void (*tf_read) (struct ata_port *ap, struct ata_taskfile *tf); | 345 | void (*tf_read) (struct ata_port *ap, struct ata_taskfile *tf); |
| 338 | 346 | ||
| 339 | void (*exec_command)(struct ata_port *ap, struct ata_taskfile *tf); | 347 | void (*exec_command)(struct ata_port *ap, const struct ata_taskfile *tf); |
| 340 | u8 (*check_status)(struct ata_port *ap); | 348 | u8 (*check_status)(struct ata_port *ap); |
| 341 | u8 (*check_altstatus)(struct ata_port *ap); | 349 | u8 (*check_altstatus)(struct ata_port *ap); |
| 342 | u8 (*check_err)(struct ata_port *ap); | 350 | u8 (*check_err)(struct ata_port *ap); |
| @@ -377,9 +385,22 @@ struct ata_port_info { | |||
| 377 | unsigned long pio_mask; | 385 | unsigned long pio_mask; |
| 378 | unsigned long mwdma_mask; | 386 | unsigned long mwdma_mask; |
| 379 | unsigned long udma_mask; | 387 | unsigned long udma_mask; |
| 380 | struct ata_port_operations *port_ops; | 388 | const struct ata_port_operations *port_ops; |
| 389 | }; | ||
| 390 | |||
| 391 | struct ata_timing { | ||
| 392 | unsigned short mode; /* ATA mode */ | ||
| 393 | unsigned short setup; /* t1 */ | ||
| 394 | unsigned short act8b; /* t2 for 8-bit I/O */ | ||
| 395 | unsigned short rec8b; /* t2i for 8-bit I/O */ | ||
| 396 | unsigned short cyc8b; /* t0 for 8-bit I/O */ | ||
| 397 | unsigned short active; /* t2 or tD */ | ||
| 398 | unsigned short recover; /* t2i or tK */ | ||
| 399 | unsigned short cycle; /* t0 */ | ||
| 400 | unsigned short udma; /* t2CYCTYP/2 */ | ||
| 381 | }; | 401 | }; |
| 382 | 402 | ||
| 403 | #define FIT(v,vmin,vmax) max_t(short,min_t(short,v,vmax),vmin) | ||
| 383 | 404 | ||
| 384 | extern void ata_port_probe(struct ata_port *); | 405 | extern void ata_port_probe(struct ata_port *); |
| 385 | extern void __sata_phy_reset(struct ata_port *ap); | 406 | extern void __sata_phy_reset(struct ata_port *ap); |
| @@ -392,7 +413,7 @@ extern int ata_pci_init_one (struct pci_dev *pdev, struct ata_port_info **port_i | |||
| 392 | unsigned int n_ports); | 413 | unsigned int n_ports); |
| 393 | extern void ata_pci_remove_one (struct pci_dev *pdev); | 414 | extern void ata_pci_remove_one (struct pci_dev *pdev); |
| 394 | #endif /* CONFIG_PCI */ | 415 | #endif /* CONFIG_PCI */ |
| 395 | extern int ata_device_add(struct ata_probe_ent *ent); | 416 | extern int ata_device_add(const struct ata_probe_ent *ent); |
| 396 | extern void ata_host_set_remove(struct ata_host_set *host_set); | 417 | extern void ata_host_set_remove(struct ata_host_set *host_set); |
| 397 | extern int ata_scsi_detect(Scsi_Host_Template *sht); | 418 | extern int ata_scsi_detect(Scsi_Host_Template *sht); |
| 398 | extern int ata_scsi_ioctl(struct scsi_device *dev, int cmd, void __user *arg); | 419 | extern int ata_scsi_ioctl(struct scsi_device *dev, int cmd, void __user *arg); |
| @@ -400,19 +421,21 @@ extern int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmn | |||
| 400 | extern int ata_scsi_error(struct Scsi_Host *host); | 421 | extern int ata_scsi_error(struct Scsi_Host *host); |
| 401 | extern int ata_scsi_release(struct Scsi_Host *host); | 422 | extern int ata_scsi_release(struct Scsi_Host *host); |
| 402 | extern unsigned int ata_host_intr(struct ata_port *ap, struct ata_queued_cmd *qc); | 423 | extern unsigned int ata_host_intr(struct ata_port *ap, struct ata_queued_cmd *qc); |
| 424 | extern int ata_ratelimit(void); | ||
| 425 | |||
| 403 | /* | 426 | /* |
| 404 | * Default driver ops implementations | 427 | * Default driver ops implementations |
| 405 | */ | 428 | */ |
| 406 | extern void ata_tf_load(struct ata_port *ap, struct ata_taskfile *tf); | 429 | extern void ata_tf_load(struct ata_port *ap, const struct ata_taskfile *tf); |
| 407 | extern void ata_tf_read(struct ata_port *ap, struct ata_taskfile *tf); | 430 | extern void ata_tf_read(struct ata_port *ap, struct ata_taskfile *tf); |
| 408 | extern void ata_tf_to_fis(struct ata_taskfile *tf, u8 *fis, u8 pmp); | 431 | extern void ata_tf_to_fis(const struct ata_taskfile *tf, u8 *fis, u8 pmp); |
| 409 | extern void ata_tf_from_fis(u8 *fis, struct ata_taskfile *tf); | 432 | extern void ata_tf_from_fis(const u8 *fis, struct ata_taskfile *tf); |
| 410 | extern void ata_noop_dev_select (struct ata_port *ap, unsigned int device); | 433 | extern void ata_noop_dev_select (struct ata_port *ap, unsigned int device); |
| 411 | extern void ata_std_dev_select (struct ata_port *ap, unsigned int device); | 434 | extern void ata_std_dev_select (struct ata_port *ap, unsigned int device); |
| 412 | extern u8 ata_check_status(struct ata_port *ap); | 435 | extern u8 ata_check_status(struct ata_port *ap); |
| 413 | extern u8 ata_altstatus(struct ata_port *ap); | 436 | extern u8 ata_altstatus(struct ata_port *ap); |
| 414 | extern u8 ata_chk_err(struct ata_port *ap); | 437 | extern u8 ata_chk_err(struct ata_port *ap); |
| 415 | extern void ata_exec_command(struct ata_port *ap, struct ata_taskfile *tf); | 438 | extern void ata_exec_command(struct ata_port *ap, const struct ata_taskfile *tf); |
| 416 | extern int ata_port_start (struct ata_port *ap); | 439 | extern int ata_port_start (struct ata_port *ap); |
| 417 | extern void ata_port_stop (struct ata_port *ap); | 440 | extern void ata_port_stop (struct ata_port *ap); |
| 418 | extern void ata_host_stop (struct ata_host_set *host_set); | 441 | extern void ata_host_stop (struct ata_host_set *host_set); |
| @@ -423,8 +446,8 @@ extern void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf, | |||
| 423 | unsigned int buflen); | 446 | unsigned int buflen); |
| 424 | extern void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg, | 447 | extern void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg, |
| 425 | unsigned int n_elem); | 448 | unsigned int n_elem); |
| 426 | extern unsigned int ata_dev_classify(struct ata_taskfile *tf); | 449 | extern unsigned int ata_dev_classify(const struct ata_taskfile *tf); |
| 427 | extern void ata_dev_id_string(u16 *id, unsigned char *s, | 450 | extern void ata_dev_id_string(const u16 *id, unsigned char *s, |
| 428 | unsigned int ofs, unsigned int len); | 451 | unsigned int ofs, unsigned int len); |
| 429 | extern void ata_dev_config(struct ata_port *ap, unsigned int i); | 452 | extern void ata_dev_config(struct ata_port *ap, unsigned int i); |
| 430 | extern void ata_bmdma_setup (struct ata_queued_cmd *qc); | 453 | extern void ata_bmdma_setup (struct ata_queued_cmd *qc); |
| @@ -441,6 +464,32 @@ extern int ata_std_bios_param(struct scsi_device *sdev, | |||
| 441 | sector_t capacity, int geom[]); | 464 | sector_t capacity, int geom[]); |
| 442 | extern int ata_scsi_slave_config(struct scsi_device *sdev); | 465 | extern int ata_scsi_slave_config(struct scsi_device *sdev); |
| 443 | 466 | ||
| 467 | /* | ||
| 468 | * Timing helpers | ||
| 469 | */ | ||
| 470 | extern int ata_timing_compute(struct ata_device *, unsigned short, | ||
| 471 | struct ata_timing *, int, int); | ||
| 472 | extern void ata_timing_merge(const struct ata_timing *, | ||
| 473 | const struct ata_timing *, struct ata_timing *, | ||
| 474 | unsigned int); | ||
| 475 | |||
| 476 | enum { | ||
| 477 | ATA_TIMING_SETUP = (1 << 0), | ||
| 478 | ATA_TIMING_ACT8B = (1 << 1), | ||
| 479 | ATA_TIMING_REC8B = (1 << 2), | ||
| 480 | ATA_TIMING_CYC8B = (1 << 3), | ||
| 481 | ATA_TIMING_8BIT = ATA_TIMING_ACT8B | ATA_TIMING_REC8B | | ||
| 482 | ATA_TIMING_CYC8B, | ||
| 483 | ATA_TIMING_ACTIVE = (1 << 4), | ||
| 484 | ATA_TIMING_RECOVER = (1 << 5), | ||
| 485 | ATA_TIMING_CYCLE = (1 << 6), | ||
| 486 | ATA_TIMING_UDMA = (1 << 7), | ||
| 487 | ATA_TIMING_ALL = ATA_TIMING_SETUP | ATA_TIMING_ACT8B | | ||
| 488 | ATA_TIMING_REC8B | ATA_TIMING_CYC8B | | ||
| 489 | ATA_TIMING_ACTIVE | ATA_TIMING_RECOVER | | ||
| 490 | ATA_TIMING_CYCLE | ATA_TIMING_UDMA, | ||
| 491 | }; | ||
| 492 | |||
| 444 | 493 | ||
| 445 | #ifdef CONFIG_PCI | 494 | #ifdef CONFIG_PCI |
| 446 | struct pci_bits { | 495 | struct pci_bits { |
| @@ -452,8 +501,8 @@ struct pci_bits { | |||
| 452 | 501 | ||
| 453 | extern void ata_pci_host_stop (struct ata_host_set *host_set); | 502 | extern void ata_pci_host_stop (struct ata_host_set *host_set); |
| 454 | extern struct ata_probe_ent * | 503 | extern struct ata_probe_ent * |
| 455 | ata_pci_init_native_mode(struct pci_dev *pdev, struct ata_port_info **port); | 504 | ata_pci_init_native_mode(struct pci_dev *pdev, struct ata_port_info **port, int portmask); |
| 456 | extern int pci_test_config_bits(struct pci_dev *pdev, struct pci_bits *bits); | 505 | extern int pci_test_config_bits(struct pci_dev *pdev, const struct pci_bits *bits); |
| 457 | 506 | ||
| 458 | #endif /* CONFIG_PCI */ | 507 | #endif /* CONFIG_PCI */ |
| 459 | 508 | ||
| @@ -463,7 +512,7 @@ static inline unsigned int ata_tag_valid(unsigned int tag) | |||
| 463 | return (tag < ATA_MAX_QUEUE) ? 1 : 0; | 512 | return (tag < ATA_MAX_QUEUE) ? 1 : 0; |
| 464 | } | 513 | } |
| 465 | 514 | ||
| 466 | static inline unsigned int ata_dev_present(struct ata_device *dev) | 515 | static inline unsigned int ata_dev_present(const struct ata_device *dev) |
| 467 | { | 516 | { |
| 468 | return ((dev->class == ATA_DEV_ATA) || | 517 | return ((dev->class == ATA_DEV_ATA) || |
| 469 | (dev->class == ATA_DEV_ATAPI)); | 518 | (dev->class == ATA_DEV_ATAPI)); |
| @@ -662,7 +711,7 @@ static inline unsigned int sata_dev_present(struct ata_port *ap) | |||
| 662 | return ((scr_read(ap, SCR_STATUS) & 0xf) == 0x3) ? 1 : 0; | 711 | return ((scr_read(ap, SCR_STATUS) & 0xf) == 0x3) ? 1 : 0; |
| 663 | } | 712 | } |
| 664 | 713 | ||
| 665 | static inline int ata_try_flush_cache(struct ata_device *dev) | 714 | static inline int ata_try_flush_cache(const struct ata_device *dev) |
| 666 | { | 715 | { |
| 667 | return ata_id_wcache_enabled(dev->id) || | 716 | return ata_id_wcache_enabled(dev->id) || |
| 668 | ata_id_has_flush(dev->id) || | 717 | ata_id_has_flush(dev->id) || |
