blob: 3ab67622ef933220746d1a362bb9e7217e1f25d0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jeff Garzikaf36d7f2005-08-28 20:18:39 -04002 * Copyright 2003-2005 Red Hat, Inc. All rights reserved.
3 * Copyright 2003-2005 Jeff Garzik
4 *
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; see the file COPYING. If not, write to
18 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 *
21 * libata documentation is available via 'make {ps|pdf}docs',
22 * as Documentation/DocBook/libata.*
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
26#ifndef __LINUX_LIBATA_H__
27#define __LINUX_LIBATA_H__
28
29#include <linux/delay.h>
30#include <linux/interrupt.h>
31#include <linux/pci.h>
32#include <asm/io.h>
33#include <linux/ata.h>
34#include <linux/workqueue.h>
35
36/*
37 * compile-time options
38 */
39#undef ATA_DEBUG /* debugging output */
40#undef ATA_VERBOSE_DEBUG /* yet more debugging output */
41#undef ATA_IRQ_TRAP /* define to ack screaming irqs */
42#undef ATA_NDEBUG /* define to disable quick runtime checks */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#undef ATA_ENABLE_PATA /* define to enable PATA support in some
44 * low-level drivers */
45#undef ATAPI_ENABLE_DMADIR /* enables ATAPI DMADIR bridge support */
46
47
48/* note: prints function name for you */
49#ifdef ATA_DEBUG
50#define DPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args)
51#ifdef ATA_VERBOSE_DEBUG
52#define VPRINTK(fmt, args...) printk(KERN_ERR "%s: " fmt, __FUNCTION__, ## args)
53#else
54#define VPRINTK(fmt, args...)
55#endif /* ATA_VERBOSE_DEBUG */
56#else
57#define DPRINTK(fmt, args...)
58#define VPRINTK(fmt, args...)
59#endif /* ATA_DEBUG */
60
61#ifdef ATA_NDEBUG
62#define assert(expr)
63#else
64#define assert(expr) \
65 if(unlikely(!(expr))) { \
66 printk(KERN_ERR "Assertion failed! %s,%s,%s,line=%d\n", \
67 #expr,__FILE__,__FUNCTION__,__LINE__); \
68 }
69#endif
70
71/* defines only for the constants which don't work well as enums */
72#define ATA_TAG_POISON 0xfafbfcfdU
73
74/* move to PCI layer? */
75static inline struct device *pci_dev_to_dev(struct pci_dev *pdev)
76{
77 return &pdev->dev;
78}
79
80enum {
81 /* various global constants */
82 LIBATA_MAX_PRD = ATA_MAX_PRD / 2,
83 ATA_MAX_PORTS = 8,
84 ATA_DEF_QUEUE = 1,
85 ATA_MAX_QUEUE = 1,
86 ATA_MAX_SECTORS = 200, /* FIXME */
87 ATA_MAX_BUS = 2,
88 ATA_DEF_BUSY_WAIT = 10000,
89 ATA_SHORT_PAUSE = (HZ >> 6) + 1,
90
91 ATA_SHT_EMULATED = 1,
92 ATA_SHT_CMD_PER_LUN = 1,
93 ATA_SHT_THIS_ID = -1,
94 ATA_SHT_USE_CLUSTERING = 0,
95
96 /* struct ata_device stuff */
97 ATA_DFLAG_LBA48 = (1 << 0), /* device supports LBA48 */
98 ATA_DFLAG_PIO = (1 << 1), /* device currently in PIO mode */
99 ATA_DFLAG_LOCK_SECTORS = (1 << 2), /* don't adjust max_sectors */
100
101 ATA_DEV_UNKNOWN = 0, /* unknown device */
102 ATA_DEV_ATA = 1, /* ATA device */
103 ATA_DEV_ATA_UNSUP = 2, /* ATA device (unsupported) */
104 ATA_DEV_ATAPI = 3, /* ATAPI device */
105 ATA_DEV_ATAPI_UNSUP = 4, /* ATAPI device (unsupported) */
106 ATA_DEV_NONE = 5, /* no device */
107
108 /* struct ata_port flags */
109 ATA_FLAG_SLAVE_POSS = (1 << 1), /* host supports slave dev */
110 /* (doesn't imply presence) */
111 ATA_FLAG_PORT_DISABLED = (1 << 2), /* port is disabled, ignore it */
112 ATA_FLAG_SATA = (1 << 3),
113 ATA_FLAG_NO_LEGACY = (1 << 4), /* no legacy mode check */
114 ATA_FLAG_SRST = (1 << 5), /* use ATA SRST, not E.D.D. */
115 ATA_FLAG_MMIO = (1 << 6), /* use MMIO, not PIO */
116 ATA_FLAG_SATA_RESET = (1 << 7), /* use COMRESET */
117 ATA_FLAG_PIO_DMA = (1 << 8), /* PIO cmds via DMA */
Tejun Heoc1389502005-08-22 14:59:24 +0900118 ATA_FLAG_NOINTR = (1 << 9), /* FIXME: Remove this once
119 * proper HSM is in place. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 ATA_QCFLAG_ACTIVE = (1 << 1), /* cmd not yet ack'd to scsi lyer */
122 ATA_QCFLAG_SG = (1 << 3), /* have s/g table? */
123 ATA_QCFLAG_SINGLE = (1 << 4), /* no s/g, just a single buffer */
124 ATA_QCFLAG_DMAMAP = ATA_QCFLAG_SG | ATA_QCFLAG_SINGLE,
125
126 /* various lengths of time */
127 ATA_TMOUT_EDD = 5 * HZ, /* hueristic */
128 ATA_TMOUT_PIO = 30 * HZ,
129 ATA_TMOUT_BOOT = 30 * HZ, /* hueristic */
130 ATA_TMOUT_BOOT_QUICK = 7 * HZ, /* hueristic */
131 ATA_TMOUT_CDB = 30 * HZ,
132 ATA_TMOUT_CDB_QUICK = 5 * HZ,
133
134 /* ATA bus states */
135 BUS_UNKNOWN = 0,
136 BUS_DMA = 1,
137 BUS_IDLE = 2,
138 BUS_NOINTR = 3,
139 BUS_NODATA = 4,
140 BUS_TIMER = 5,
141 BUS_PIO = 6,
142 BUS_EDD = 7,
143 BUS_IDENTIFY = 8,
144 BUS_PACKET = 9,
145
146 /* SATA port states */
147 PORT_UNKNOWN = 0,
148 PORT_ENABLED = 1,
149 PORT_DISABLED = 2,
150
151 /* encoding various smaller bitmaps into a single
152 * unsigned long bitmap
153 */
154 ATA_SHIFT_UDMA = 0,
155 ATA_SHIFT_MWDMA = 8,
156 ATA_SHIFT_PIO = 11,
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400157
158 /* size of buffer to pad xfers ending on unaligned boundaries */
159 ATA_DMA_PAD_SZ = 4,
160 ATA_DMA_PAD_BUF_SZ = ATA_DMA_PAD_SZ * ATA_MAX_QUEUE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161};
162
163enum pio_task_states {
164 PIO_ST_UNKNOWN,
165 PIO_ST_IDLE,
166 PIO_ST_POLL,
167 PIO_ST_TMOUT,
168 PIO_ST,
169 PIO_ST_LAST,
170 PIO_ST_LAST_POLL,
171 PIO_ST_ERR,
172};
173
174/* forward declarations */
175struct scsi_device;
176struct ata_port_operations;
177struct ata_port;
178struct ata_queued_cmd;
179
180/* typedefs */
181typedef int (*ata_qc_cb_t) (struct ata_queued_cmd *qc, u8 drv_stat);
182
183struct ata_ioports {
184 unsigned long cmd_addr;
185 unsigned long data_addr;
186 unsigned long error_addr;
187 unsigned long feature_addr;
188 unsigned long nsect_addr;
189 unsigned long lbal_addr;
190 unsigned long lbam_addr;
191 unsigned long lbah_addr;
192 unsigned long device_addr;
193 unsigned long status_addr;
194 unsigned long command_addr;
195 unsigned long altstatus_addr;
196 unsigned long ctl_addr;
197 unsigned long bmdma_addr;
198 unsigned long scr_addr;
199};
200
201struct ata_probe_ent {
202 struct list_head node;
203 struct device *dev;
204 struct ata_port_operations *port_ops;
205 Scsi_Host_Template *sht;
206 struct ata_ioports port[ATA_MAX_PORTS];
207 unsigned int n_ports;
208 unsigned int hard_port_no;
209 unsigned int pio_mask;
210 unsigned int mwdma_mask;
211 unsigned int udma_mask;
212 unsigned int legacy_mode;
213 unsigned long irq;
214 unsigned int irq_flags;
215 unsigned long host_flags;
216 void __iomem *mmio_base;
217 void *private_data;
218};
219
220struct ata_host_set {
221 spinlock_t lock;
222 struct device *dev;
223 unsigned long irq;
224 void __iomem *mmio_base;
225 unsigned int n_ports;
226 void *private_data;
227 struct ata_port_operations *ops;
228 struct ata_port * ports[0];
229};
230
231struct ata_queued_cmd {
232 struct ata_port *ap;
233 struct ata_device *dev;
234
235 struct scsi_cmnd *scsicmd;
236 void (*scsidone)(struct scsi_cmnd *);
237
238 struct ata_taskfile tf;
239 u8 cdb[ATAPI_CDB_LEN];
240
241 unsigned long flags; /* ATA_QCFLAG_xxx */
242 unsigned int tag;
243 unsigned int n_elem;
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400244 unsigned int orig_n_elem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 int dma_dir;
247
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400248 unsigned int pad_len;
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 unsigned int nsect;
251 unsigned int cursect;
252
253 unsigned int nbytes;
254 unsigned int curbytes;
255
256 unsigned int cursg;
257 unsigned int cursg_ofs;
258
259 struct scatterlist sgent;
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400260 struct scatterlist pad_sgent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 void *buf_virt;
262
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400263 /* DO NOT iterate over __sg manually, use ata_for_each_sg() */
264 struct scatterlist *__sg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 ata_qc_cb_t complete_fn;
267
268 struct completion *waiting;
269
270 void *private_data;
271};
272
273struct ata_host_stats {
274 unsigned long unhandled_irq;
275 unsigned long idle_irq;
276 unsigned long rw_reqbuf;
277};
278
279struct ata_device {
280 u64 n_sectors; /* size of device, if ATA */
281 unsigned long flags; /* ATA_DFLAG_xxx */
282 unsigned int class; /* ATA_DEV_xxx */
283 unsigned int devno; /* 0 or 1 */
284 u16 id[ATA_ID_WORDS]; /* IDENTIFY xxx DEVICE data */
285 u8 pio_mode;
286 u8 dma_mode;
287 u8 xfer_mode;
288 unsigned int xfer_shift; /* ATA_SHIFT_xxx */
289
290 /* cache info about current transfer mode */
291 u8 xfer_protocol; /* taskfile xfer protocol */
292 u8 read_cmd; /* opcode to use on read */
293 u8 write_cmd; /* opcode to use on write */
294};
295
296struct ata_port {
297 struct Scsi_Host *host; /* our co-allocated scsi host */
298 struct ata_port_operations *ops;
299 unsigned long flags; /* ATA_FLAG_xxx */
300 unsigned int id; /* unique id req'd by scsi midlyr */
301 unsigned int port_no; /* unique port #; from zero */
302 unsigned int hard_port_no; /* hardware port #; from zero */
303
304 struct ata_prd *prd; /* our SG list */
305 dma_addr_t prd_dma; /* and its DMA mapping */
306
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400307 void *pad; /* array of DMA pad buffers */
308 dma_addr_t pad_dma;
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 struct ata_ioports ioaddr; /* ATA cmd/ctl/dma register blocks */
311
312 u8 ctl; /* cache of ATA control register */
313 u8 last_ctl; /* Cache last written value */
314 unsigned int bus_state;
315 unsigned int port_state;
316 unsigned int pio_mask;
317 unsigned int mwdma_mask;
318 unsigned int udma_mask;
319 unsigned int cbl; /* cable type; ATA_CBL_xxx */
320 unsigned int cdb_len;
321
322 struct ata_device device[ATA_MAX_DEVICES];
323
324 struct ata_queued_cmd qcmd[ATA_MAX_QUEUE];
325 unsigned long qactive;
326 unsigned int active_tag;
327
328 struct ata_host_stats stats;
329 struct ata_host_set *host_set;
330
331 struct work_struct packet_task;
332
333 struct work_struct pio_task;
334 unsigned int pio_task_state;
335 unsigned long pio_task_timeout;
336
337 void *private_data;
338};
339
340struct ata_port_operations {
341 void (*port_disable) (struct ata_port *);
342
343 void (*dev_config) (struct ata_port *, struct ata_device *);
344
345 void (*set_piomode) (struct ata_port *, struct ata_device *);
346 void (*set_dmamode) (struct ata_port *, struct ata_device *);
347
348 void (*tf_load) (struct ata_port *ap, struct ata_taskfile *tf);
349 void (*tf_read) (struct ata_port *ap, struct ata_taskfile *tf);
350
351 void (*exec_command)(struct ata_port *ap, struct ata_taskfile *tf);
352 u8 (*check_status)(struct ata_port *ap);
353 u8 (*check_altstatus)(struct ata_port *ap);
354 u8 (*check_err)(struct ata_port *ap);
355 void (*dev_select)(struct ata_port *ap, unsigned int device);
356
357 void (*phy_reset) (struct ata_port *ap);
358 void (*post_set_mode) (struct ata_port *ap);
359
360 int (*check_atapi_dma) (struct ata_queued_cmd *qc);
361
362 void (*bmdma_setup) (struct ata_queued_cmd *qc);
363 void (*bmdma_start) (struct ata_queued_cmd *qc);
364
365 void (*qc_prep) (struct ata_queued_cmd *qc);
366 int (*qc_issue) (struct ata_queued_cmd *qc);
367
368 void (*eng_timeout) (struct ata_port *ap);
369
370 irqreturn_t (*irq_handler)(int, void *, struct pt_regs *);
371 void (*irq_clear) (struct ata_port *);
372
373 u32 (*scr_read) (struct ata_port *ap, unsigned int sc_reg);
374 void (*scr_write) (struct ata_port *ap, unsigned int sc_reg,
375 u32 val);
376
377 int (*port_start) (struct ata_port *ap);
378 void (*port_stop) (struct ata_port *ap);
379
380 void (*host_stop) (struct ata_host_set *host_set);
381
Alan Coxb73fc892005-08-26 16:03:19 +0100382 void (*bmdma_stop) (struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 u8 (*bmdma_status) (struct ata_port *ap);
384};
385
386struct ata_port_info {
387 Scsi_Host_Template *sht;
388 unsigned long host_flags;
389 unsigned long pio_mask;
390 unsigned long mwdma_mask;
391 unsigned long udma_mask;
392 struct ata_port_operations *port_ops;
393};
394
395
396extern void ata_port_probe(struct ata_port *);
397extern void __sata_phy_reset(struct ata_port *ap);
398extern void sata_phy_reset(struct ata_port *ap);
399extern void ata_bus_reset(struct ata_port *ap);
400extern void ata_port_disable(struct ata_port *);
401extern void ata_std_ports(struct ata_ioports *ioaddr);
402#ifdef CONFIG_PCI
403extern int ata_pci_init_one (struct pci_dev *pdev, struct ata_port_info **port_info,
404 unsigned int n_ports);
405extern void ata_pci_remove_one (struct pci_dev *pdev);
406#endif /* CONFIG_PCI */
407extern int ata_device_add(struct ata_probe_ent *ent);
Alan Cox17b14452005-09-15 15:44:00 +0100408extern void ata_host_set_remove(struct ata_host_set *host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409extern int ata_scsi_detect(Scsi_Host_Template *sht);
410extern int ata_scsi_ioctl(struct scsi_device *dev, int cmd, void __user *arg);
411extern int ata_scsi_queuecmd(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *));
412extern int ata_scsi_error(struct Scsi_Host *host);
413extern int ata_scsi_release(struct Scsi_Host *host);
414extern unsigned int ata_host_intr(struct ata_port *ap, struct ata_queued_cmd *qc);
415/*
416 * Default driver ops implementations
417 */
418extern void ata_tf_load(struct ata_port *ap, struct ata_taskfile *tf);
419extern void ata_tf_read(struct ata_port *ap, struct ata_taskfile *tf);
420extern void ata_tf_to_fis(struct ata_taskfile *tf, u8 *fis, u8 pmp);
421extern void ata_tf_from_fis(u8 *fis, struct ata_taskfile *tf);
422extern void ata_noop_dev_select (struct ata_port *ap, unsigned int device);
423extern void ata_std_dev_select (struct ata_port *ap, unsigned int device);
424extern u8 ata_check_status(struct ata_port *ap);
425extern u8 ata_altstatus(struct ata_port *ap);
426extern u8 ata_chk_err(struct ata_port *ap);
427extern void ata_exec_command(struct ata_port *ap, struct ata_taskfile *tf);
428extern int ata_port_start (struct ata_port *ap);
429extern void ata_port_stop (struct ata_port *ap);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -0400430extern void ata_host_stop (struct ata_host_set *host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431extern irqreturn_t ata_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
432extern void ata_qc_prep(struct ata_queued_cmd *qc);
433extern int ata_qc_issue_prot(struct ata_queued_cmd *qc);
434extern void ata_sg_init_one(struct ata_queued_cmd *qc, void *buf,
435 unsigned int buflen);
436extern void ata_sg_init(struct ata_queued_cmd *qc, struct scatterlist *sg,
437 unsigned int n_elem);
438extern unsigned int ata_dev_classify(struct ata_taskfile *tf);
439extern void ata_dev_id_string(u16 *id, unsigned char *s,
440 unsigned int ofs, unsigned int len);
Brad Campbell6f2f3812005-05-12 15:07:47 -0400441extern void ata_dev_config(struct ata_port *ap, unsigned int i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442extern void ata_bmdma_setup (struct ata_queued_cmd *qc);
443extern void ata_bmdma_start (struct ata_queued_cmd *qc);
Alan Coxb73fc892005-08-26 16:03:19 +0100444extern void ata_bmdma_stop(struct ata_queued_cmd *qc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445extern u8 ata_bmdma_status(struct ata_port *ap);
446extern void ata_bmdma_irq_clear(struct ata_port *ap);
447extern void ata_qc_complete(struct ata_queued_cmd *qc, u8 drv_stat);
448extern void ata_eng_timeout(struct ata_port *ap);
449extern void ata_scsi_simulate(u16 *id, struct scsi_cmnd *cmd,
450 void (*done)(struct scsi_cmnd *));
451extern int ata_std_bios_param(struct scsi_device *sdev,
452 struct block_device *bdev,
453 sector_t capacity, int geom[]);
454extern int ata_scsi_slave_config(struct scsi_device *sdev);
455
456
457#ifdef CONFIG_PCI
458struct pci_bits {
459 unsigned int reg; /* PCI config register to read */
460 unsigned int width; /* 1 (8 bit), 2 (16 bit), 4 (32 bit) */
461 unsigned long mask;
462 unsigned long val;
463};
464
Jeff Garzik374b1872005-08-30 05:42:52 -0400465extern void ata_pci_host_stop (struct ata_host_set *host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466extern struct ata_probe_ent *
467ata_pci_init_native_mode(struct pci_dev *pdev, struct ata_port_info **port);
468extern int pci_test_config_bits(struct pci_dev *pdev, struct pci_bits *bits);
469
470#endif /* CONFIG_PCI */
471
472
Jeff Garzikcedc9a42005-10-05 07:13:30 -0400473static inline struct scatterlist *
474ata_qc_next_sg(struct scatterlist *sg, struct ata_queued_cmd *qc)
475{
476 if (sg == &qc->pad_sgent)
477 return NULL;
478 if (++sg - qc->__sg < qc->n_elem)
479 return sg;
480 return qc->pad_len ? &qc->pad_sgent : NULL;
481}
482
483#define ata_for_each_sg(sg, qc) \
484 for (sg = qc->__sg; sg; sg = ata_qc_next_sg(sg, qc))
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486static inline unsigned int ata_tag_valid(unsigned int tag)
487{
488 return (tag < ATA_MAX_QUEUE) ? 1 : 0;
489}
490
491static inline unsigned int ata_dev_present(struct ata_device *dev)
492{
493 return ((dev->class == ATA_DEV_ATA) ||
494 (dev->class == ATA_DEV_ATAPI));
495}
496
497static inline u8 ata_chk_status(struct ata_port *ap)
498{
499 return ap->ops->check_status(ap);
500}
501
Edward Falk0baab862005-06-02 18:17:13 -0400502
503/**
504 * ata_pause - Flush writes and pause 400 nanoseconds.
505 * @ap: Port to wait for.
506 *
507 * LOCKING:
508 * Inherited from caller.
509 */
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511static inline void ata_pause(struct ata_port *ap)
512{
513 ata_altstatus(ap);
514 ndelay(400);
515}
516
Edward Falk0baab862005-06-02 18:17:13 -0400517
518/**
519 * ata_busy_wait - Wait for a port status register
520 * @ap: Port to wait for.
521 *
522 * Waits up to max*10 microseconds for the selected bits in the port's
523 * status register to be cleared.
524 * Returns final value of status register.
525 *
526 * LOCKING:
527 * Inherited from caller.
528 */
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530static inline u8 ata_busy_wait(struct ata_port *ap, unsigned int bits,
531 unsigned int max)
532{
533 u8 status;
534
535 do {
536 udelay(10);
537 status = ata_chk_status(ap);
538 max--;
539 } while ((status & bits) && (max > 0));
540
541 return status;
542}
543
Edward Falk0baab862005-06-02 18:17:13 -0400544
545/**
546 * ata_wait_idle - Wait for a port to be idle.
547 * @ap: Port to wait for.
548 *
549 * Waits up to 10ms for port's BUSY and DRQ signals to clear.
550 * Returns final value of status register.
551 *
552 * LOCKING:
553 * Inherited from caller.
554 */
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556static inline u8 ata_wait_idle(struct ata_port *ap)
557{
558 u8 status = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
559
560 if (status & (ATA_BUSY | ATA_DRQ)) {
561 unsigned long l = ap->ioaddr.status_addr;
562 printk(KERN_WARNING
563 "ATA: abnormal status 0x%X on port 0x%lX\n",
564 status, l);
565 }
566
567 return status;
568}
569
570static inline void ata_qc_set_polling(struct ata_queued_cmd *qc)
571{
572 qc->tf.ctl |= ATA_NIEN;
573}
574
575static inline struct ata_queued_cmd *ata_qc_from_tag (struct ata_port *ap,
576 unsigned int tag)
577{
578 if (likely(ata_tag_valid(tag)))
579 return &ap->qcmd[tag];
580 return NULL;
581}
582
583static inline void ata_tf_init(struct ata_port *ap, struct ata_taskfile *tf, unsigned int device)
584{
585 memset(tf, 0, sizeof(*tf));
586
587 tf->ctl = ap->ctl;
588 if (device == 0)
589 tf->device = ATA_DEVICE_OBS;
590 else
591 tf->device = ATA_DEVICE_OBS | ATA_DEV1;
592}
593
Edward Falk0baab862005-06-02 18:17:13 -0400594
595/**
596 * ata_irq_on - Enable interrupts on a port.
597 * @ap: Port on which interrupts are enabled.
598 *
599 * Enable interrupts on a legacy IDE device using MMIO or PIO,
600 * wait for idle, clear any pending interrupts.
601 *
602 * LOCKING:
603 * Inherited from caller.
604 */
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606static inline u8 ata_irq_on(struct ata_port *ap)
607{
608 struct ata_ioports *ioaddr = &ap->ioaddr;
609 u8 tmp;
610
611 ap->ctl &= ~ATA_NIEN;
612 ap->last_ctl = ap->ctl;
613
614 if (ap->flags & ATA_FLAG_MMIO)
615 writeb(ap->ctl, (void __iomem *) ioaddr->ctl_addr);
616 else
617 outb(ap->ctl, ioaddr->ctl_addr);
618 tmp = ata_wait_idle(ap);
619
620 ap->ops->irq_clear(ap);
621
622 return tmp;
623}
624
Edward Falk0baab862005-06-02 18:17:13 -0400625
626/**
627 * ata_irq_ack - Acknowledge a device interrupt.
628 * @ap: Port on which interrupts are enabled.
629 *
630 * Wait up to 10 ms for legacy IDE device to become idle (BUSY
631 * or BUSY+DRQ clear). Obtain dma status and port status from
632 * device. Clear the interrupt. Return port status.
633 *
634 * LOCKING:
635 */
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637static inline u8 ata_irq_ack(struct ata_port *ap, unsigned int chk_drq)
638{
639 unsigned int bits = chk_drq ? ATA_BUSY | ATA_DRQ : ATA_BUSY;
640 u8 host_stat, post_stat, status;
641
642 status = ata_busy_wait(ap, bits, 1000);
643 if (status & bits)
644 DPRINTK("abnormal status 0x%X\n", status);
645
646 /* get controller status; clear intr, err bits */
647 if (ap->flags & ATA_FLAG_MMIO) {
648 void __iomem *mmio = (void __iomem *) ap->ioaddr.bmdma_addr;
649 host_stat = readb(mmio + ATA_DMA_STATUS);
650 writeb(host_stat | ATA_DMA_INTR | ATA_DMA_ERR,
651 mmio + ATA_DMA_STATUS);
652
653 post_stat = readb(mmio + ATA_DMA_STATUS);
654 } else {
655 host_stat = inb(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
656 outb(host_stat | ATA_DMA_INTR | ATA_DMA_ERR,
657 ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
658
659 post_stat = inb(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
660 }
661
662 VPRINTK("irq ack: host_stat 0x%X, new host_stat 0x%X, drv_stat 0x%X\n",
663 host_stat, post_stat, status);
664
665 return status;
666}
667
668static inline u32 scr_read(struct ata_port *ap, unsigned int reg)
669{
670 return ap->ops->scr_read(ap, reg);
671}
672
673static inline void scr_write(struct ata_port *ap, unsigned int reg, u32 val)
674{
675 ap->ops->scr_write(ap, reg, val);
676}
677
Jeff Garzik8a60a072005-07-31 13:13:24 -0400678static inline void scr_write_flush(struct ata_port *ap, unsigned int reg,
Brett Russcdcca89e2005-03-28 15:10:27 -0500679 u32 val)
680{
681 ap->ops->scr_write(ap, reg, val);
682 (void) ap->ops->scr_read(ap, reg);
683}
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685static inline unsigned int sata_dev_present(struct ata_port *ap)
686{
687 return ((scr_read(ap, SCR_STATUS) & 0xf) == 0x3) ? 1 : 0;
688}
689
690static inline int ata_try_flush_cache(struct ata_device *dev)
691{
692 return ata_id_wcache_enabled(dev->id) ||
693 ata_id_has_flush(dev->id) ||
694 ata_id_has_flush_ext(dev->id);
695}
696
697#endif /* __LINUX_LIBATA_H__ */