This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / include / linux / ide.h
1 #ifndef _IDE_H
2 #define _IDE_H
3 /*
4  *  linux/include/linux/ide.h
5  *
6  *  Copyright (C) 1994-2002  Linus Torvalds & authors
7  */
8
9 #include <linux/config.h>
10 #include <linux/init.h>
11 #include <linux/ioport.h>
12 #include <linux/hdreg.h>
13 #include <linux/hdsmart.h>
14 #include <linux/blkdev.h>
15 #include <linux/proc_fs.h>
16 #include <linux/interrupt.h>
17 #include <linux/bitops.h>
18 #include <linux/bio.h>
19 #include <linux/device.h>
20 #include <linux/pci.h>
21 #include <asm/byteorder.h>
22 #include <asm/system.h>
23 #include <asm/io.h>
24 #include <asm/semaphore.h>
25
26 /*
27  * This is the multiple IDE interface driver, as evolved from hd.c.
28  * It supports up to four IDE interfaces, on one or more IRQs (usually 14 & 15).
29  * There can be up to two drives per interface, as per the ATA-2 spec.
30  *
31  * Primary i/f:    ide0: major=3;  (hda)         minor=0; (hdb)         minor=64
32  * Secondary i/f:  ide1: major=22; (hdc or hd1a) minor=0; (hdd or hd1b) minor=64
33  * Tertiary i/f:   ide2: major=33; (hde)         minor=0; (hdf)         minor=64
34  * Quaternary i/f: ide3: major=34; (hdg)         minor=0; (hdh)         minor=64
35  */
36
37 /******************************************************************************
38  * IDE driver configuration options (play with these as desired):
39  *
40  * REALLY_SLOW_IO can be defined in ide.c and ide-cd.c, if necessary
41  */
42 #define REALLY_FAST_IO                  /* define if ide ports are perfect */
43 #define INITIAL_MULT_COUNT      0       /* off=0; on=2,4,8,16,32, etc.. */
44
45 #ifndef SUPPORT_SLOW_DATA_PORTS         /* 1 to support slow data ports */
46 #define SUPPORT_SLOW_DATA_PORTS 1       /* 0 to reduce kernel size */
47 #endif
48 #ifndef SUPPORT_VLB_SYNC                /* 1 to support weird 32-bit chips */
49 #define SUPPORT_VLB_SYNC        1       /* 0 to reduce kernel size */
50 #endif
51 #ifndef OK_TO_RESET_CONTROLLER          /* 1 needed for good error recovery */
52 #define OK_TO_RESET_CONTROLLER  1       /* 0 for use with AH2372A/B interface */
53 #endif
54 #ifndef FANCY_STATUS_DUMPS              /* 1 for human-readable drive errors */
55 #define FANCY_STATUS_DUMPS      1       /* 0 to reduce kernel size */
56 #endif
57
58 #ifdef CONFIG_BLK_DEV_CMD640
59 #if 0   /* change to 1 when debugging cmd640 problems */
60 void cmd640_dump_regs (void);
61 #define CMD640_DUMP_REGS cmd640_dump_regs() /* for debugging cmd640 chipset */
62 #endif
63 #endif  /* CONFIG_BLK_DEV_CMD640 */
64
65 #ifndef DISABLE_IRQ_NOSYNC
66 #define DISABLE_IRQ_NOSYNC      0
67 #endif
68
69 /*
70  * Used to indicate "no IRQ", should be a value that cannot be an IRQ
71  * number.
72  */
73  
74 #define IDE_NO_IRQ              (-1)
75
76 /*
77  * IDE_DRIVE_CMD is used to implement many features of the hdparm utility
78  */
79 #define IDE_DRIVE_CMD                   99      /* (magic) undef to reduce kernel size*/
80
81 #define IDE_DRIVE_TASK                  98
82
83 /*
84  * IDE_DRIVE_TASKFILE is used to implement many features needed for raw tasks
85  */
86 #define IDE_DRIVE_TASKFILE              97
87
88 /*
89  *  "No user-serviceable parts" beyond this point  :)
90  *****************************************************************************/
91
92 typedef unsigned char   byte;   /* used everywhere */
93
94 /*
95  * Probably not wise to fiddle with these
96  */
97 #define ERROR_MAX       8       /* Max read/write errors per sector */
98 #define ERROR_RESET     3       /* Reset controller every 4th retry */
99 #define ERROR_RECAL     1       /* Recalibrate every 2nd retry */
100
101 /*
102  * Tune flags
103  */
104 #define IDE_TUNE_NOAUTO         2
105 #define IDE_TUNE_AUTO           1
106 #define IDE_TUNE_DEFAULT        0
107
108 /*
109  * state flags
110  */
111
112 #define DMA_PIO_RETRY   1       /* retrying in PIO */
113
114 /*
115  * Ensure that various configuration flags have compatible settings
116  */
117 #ifdef REALLY_SLOW_IO
118 #undef REALLY_FAST_IO
119 #endif
120
121 #define HWIF(drive)             ((ide_hwif_t *)((drive)->hwif))
122 #define HWGROUP(drive)          ((ide_hwgroup_t *)(HWIF(drive)->hwgroup))
123
124 /*
125  * Definitions for accessing IDE controller registers
126  */
127 #define IDE_NR_PORTS            (10)
128
129 #define IDE_DATA_OFFSET         (0)
130 #define IDE_ERROR_OFFSET        (1)
131 #define IDE_NSECTOR_OFFSET      (2)
132 #define IDE_SECTOR_OFFSET       (3)
133 #define IDE_LCYL_OFFSET         (4)
134 #define IDE_HCYL_OFFSET         (5)
135 #define IDE_SELECT_OFFSET       (6)
136 #define IDE_STATUS_OFFSET       (7)
137 #define IDE_CONTROL_OFFSET      (8)
138 #define IDE_IRQ_OFFSET          (9)
139
140 #define IDE_FEATURE_OFFSET      IDE_ERROR_OFFSET
141 #define IDE_COMMAND_OFFSET      IDE_STATUS_OFFSET
142
143 #define IDE_CONTROL_OFFSET_HOB  (7)
144
145 #define IDE_DATA_REG            (HWIF(drive)->io_ports[IDE_DATA_OFFSET])
146 #define IDE_ERROR_REG           (HWIF(drive)->io_ports[IDE_ERROR_OFFSET])
147 #define IDE_NSECTOR_REG         (HWIF(drive)->io_ports[IDE_NSECTOR_OFFSET])
148 #define IDE_SECTOR_REG          (HWIF(drive)->io_ports[IDE_SECTOR_OFFSET])
149 #define IDE_LCYL_REG            (HWIF(drive)->io_ports[IDE_LCYL_OFFSET])
150 #define IDE_HCYL_REG            (HWIF(drive)->io_ports[IDE_HCYL_OFFSET])
151 #define IDE_SELECT_REG          (HWIF(drive)->io_ports[IDE_SELECT_OFFSET])
152 #define IDE_STATUS_REG          (HWIF(drive)->io_ports[IDE_STATUS_OFFSET])
153 #define IDE_CONTROL_REG         (HWIF(drive)->io_ports[IDE_CONTROL_OFFSET])
154 #define IDE_IRQ_REG             (HWIF(drive)->io_ports[IDE_IRQ_OFFSET])
155
156 #define IDE_FEATURE_REG         IDE_ERROR_REG
157 #define IDE_COMMAND_REG         IDE_STATUS_REG
158 #define IDE_ALTSTATUS_REG       IDE_CONTROL_REG
159 #define IDE_IREASON_REG         IDE_NSECTOR_REG
160 #define IDE_BCOUNTL_REG         IDE_LCYL_REG
161 #define IDE_BCOUNTH_REG         IDE_HCYL_REG
162
163 #define OK_STAT(stat,good,bad)  (((stat)&((good)|(bad)))==(good))
164 #define BAD_R_STAT              (BUSY_STAT   | ERR_STAT)
165 #define BAD_W_STAT              (BAD_R_STAT  | WRERR_STAT)
166 #define BAD_STAT                (BAD_R_STAT  | DRQ_STAT)
167 #define DRIVE_READY             (READY_STAT  | SEEK_STAT)
168 #define DATA_READY              (DRQ_STAT)
169
170 #define BAD_CRC                 (ABRT_ERR    | ICRC_ERR)
171
172 #define SATA_NR_PORTS           (3)     /* 16 possible ?? */
173
174 #define SATA_STATUS_OFFSET      (0)
175 #define SATA_STATUS_REG         (HWIF(drive)->sata_scr[SATA_STATUS_OFFSET])
176 #define SATA_ERROR_OFFSET       (1)
177 #define SATA_ERROR_REG          (HWIF(drive)->sata_scr[SATA_ERROR_OFFSET])
178 #define SATA_CONTROL_OFFSET     (2)
179 #define SATA_CONTROL_REG        (HWIF(drive)->sata_scr[SATA_CONTROL_OFFSET])
180
181 #define SATA_MISC_OFFSET        (0)
182 #define SATA_MISC_REG           (HWIF(drive)->sata_misc[SATA_MISC_OFFSET])
183 #define SATA_PHY_OFFSET         (1)
184 #define SATA_PHY_REG            (HWIF(drive)->sata_misc[SATA_PHY_OFFSET])
185 #define SATA_IEN_OFFSET         (2)
186 #define SATA_IEN_REG            (HWIF(drive)->sata_misc[SATA_IEN_OFFSET])
187
188 /*
189  * Our Physical Region Descriptor (PRD) table should be large enough
190  * to handle the biggest I/O request we are likely to see.  Since requests
191  * can have no more than 256 sectors, and since the typical blocksize is
192  * two or more sectors, we could get by with a limit of 128 entries here for
193  * the usual worst case.  Most requests seem to include some contiguous blocks,
194  * further reducing the number of table entries required.
195  *
196  * The driver reverts to PIO mode for individual requests that exceed
197  * this limit (possible with 512 byte blocksizes, eg. MSDOS f/s), so handling
198  * 100% of all crazy scenarios here is not necessary.
199  *
200  * As it turns out though, we must allocate a full 4KB page for this,
201  * so the two PRD tables (ide0 & ide1) will each get half of that,
202  * allowing each to have about 256 entries (8 bytes each) from this.
203  */
204 #define PRD_BYTES       8
205 #define PRD_ENTRIES     256
206
207 /*
208  * Some more useful definitions
209  */
210 #define IDE_MAJOR_NAME  "hd"    /* the same for all i/f; see also genhd.c */
211 #define MAJOR_NAME      IDE_MAJOR_NAME
212 #define PARTN_BITS      6       /* number of minor dev bits for partitions */
213 #define PARTN_MASK      ((1<<PARTN_BITS)-1)     /* a useful bit mask */
214 #define MAX_DRIVES      2       /* per interface; 2 assumed by lots of code */
215 #define SECTOR_SIZE     512
216 #define SECTOR_WORDS    (SECTOR_SIZE / 4)       /* number of 32bit words per sector */
217 #define IDE_LARGE_SEEK(b1,b2,t) (((b1) > (b2) + (t)) || ((b2) > (b1) + (t)))
218
219 /*
220  * Timeouts for various operations:
221  */
222 #define WAIT_DRQ        (HZ/10)         /* 100msec - spec allows up to 20ms */
223 #if defined(CONFIG_APM) || defined(CONFIG_APM_MODULE)
224 #define WAIT_READY      (5*HZ)          /* 5sec - some laptops are very slow */
225 #else
226 #define WAIT_READY      (HZ/10)         /* 100msec - should be instantaneous */
227 #endif /* CONFIG_APM || CONFIG_APM_MODULE */
228 #define WAIT_PIDENTIFY  (10*HZ) /* 10sec  - should be less than 3ms (?), if all ATAPI CD is closed at boot */
229 #define WAIT_WORSTCASE  (30*HZ) /* 30sec  - worst case when spinning up */
230 #define WAIT_CMD        (10*HZ) /* 10sec  - maximum wait for an IRQ to happen */
231 #define WAIT_MIN_SLEEP  (2*HZ/100)      /* 20msec - minimum sleep time */
232
233 #define HOST(hwif,chipset)                                      \
234 {                                                               \
235         return ((hwif)->chipset == chipset) ? 1 : 0;            \
236 }
237
238 /*
239  * Check for an interrupt and acknowledge the interrupt status
240  */
241 struct hwif_s;
242 typedef int (ide_ack_intr_t)(struct hwif_s *);
243
244 #ifndef NO_DMA
245 #define NO_DMA  255
246 #endif
247
248 /*
249  * hwif_chipset_t is used to keep track of the specific hardware
250  * chipset used by each IDE interface, if known.
251  */
252 typedef enum {  ide_unknown,    ide_generic,    ide_pci,
253                 ide_cmd640,     ide_dtc2278,    ide_ali14xx,
254                 ide_qd65xx,     ide_umc8672,    ide_ht6560b,
255                 ide_pdc4030,    ide_rz1000,     ide_trm290,
256                 ide_cmd646,     ide_cy82c693,   ide_4drives,
257                 ide_pmac,       ide_etrax100,   ide_acorn,
258                 ide_pc9800,     ide_forced
259 } hwif_chipset_t;
260
261 /*
262  * Structure to hold all information about the location of this port
263  */
264 typedef struct hw_regs_s {
265         unsigned long   io_ports[IDE_NR_PORTS]; /* task file registers */
266         int             irq;                    /* our irq number */
267         int             dma;                    /* our dma entry */
268         ide_ack_intr_t  *ack_intr;              /* acknowledge interrupt */
269         void            *priv;                  /* interface specific data */
270         hwif_chipset_t  chipset;
271         unsigned long   sata_scr[SATA_NR_PORTS];
272         unsigned long   sata_misc[SATA_NR_PORTS];
273 } hw_regs_t;
274
275 /*
276  * Register new hardware with ide
277  */
278 int ide_register_hw(hw_regs_t *hw, struct hwif_s **hwifp);
279
280 /*
281  * Set up hw_regs_t structure before calling ide_register_hw (optional)
282  */
283 void ide_setup_ports(   hw_regs_t *hw,
284                         unsigned long base,
285                         int *offsets,
286                         unsigned long ctrl,
287                         unsigned long intr,
288                         ide_ack_intr_t *ack_intr,
289 #if 0
290                         ide_io_ops_t *iops,
291 #endif
292                         int irq);
293
294 static inline void ide_std_init_ports(hw_regs_t *hw,
295                                       unsigned long io_addr,
296                                       unsigned long ctl_addr)
297 {
298         unsigned int i;
299
300         for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++)
301                 hw->io_ports[i] = io_addr++;
302
303         hw->io_ports[IDE_CONTROL_OFFSET] = ctl_addr;
304 }
305
306 #include <asm/ide.h>
307
308 /*
309  * ide_init_hwif_ports() is OBSOLETE and will be removed in 2.7 series.
310  * New ports shouldn't define IDE_ARCH_OBSOLETE_INIT in <asm/ide.h>.
311  *
312  * m68k, m68knommu (broken) and i386-pc9800 (broken)
313  * still have their own versions.
314  */
315 #ifndef CONFIG_M68K
316 #ifdef IDE_ARCH_OBSOLETE_INIT
317 static inline void ide_init_hwif_ports(hw_regs_t *hw,
318                                        unsigned long io_addr,
319                                        unsigned long ctl_addr,
320                                        int *irq)
321 {
322         if (!ctl_addr)
323                 ide_std_init_ports(hw, io_addr, ide_default_io_ctl(io_addr));
324         else
325                 ide_std_init_ports(hw, io_addr, ctl_addr);
326
327         if (irq)
328                 *irq = 0;
329
330         hw->io_ports[IDE_IRQ_OFFSET] = 0;
331
332 #ifdef CONFIG_PPC32
333         if (ppc_ide_md.ide_init_hwif)
334                 ppc_ide_md.ide_init_hwif(hw, io_addr, ctl_addr, irq);
335 #endif
336 }
337 #else
338 # define ide_init_hwif_ports(hw, io, ctl, irq)  do {} while (0)
339 #endif /* IDE_ARCH_OBSOLETE_INIT */
340 #endif /* !M68K */
341
342 /* Currently only m68k, apus and m8xx need it */
343 #ifndef IDE_ARCH_ACK_INTR
344 # define ide_ack_intr(hwif) (1)
345 #endif
346
347 /* Currently only Atari needs it */
348 #ifndef IDE_ARCH_LOCK
349 # define ide_release_lock()                     do {} while (0)
350 # define ide_get_lock(hdlr, data)               do {} while (0)
351 #endif /* IDE_ARCH_LOCK */
352
353 /*
354  * Now for the data we need to maintain per-drive:  ide_drive_t
355  */
356
357 #define ide_scsi        0x21
358 #define ide_disk        0x20
359 #define ide_optical     0x7
360 #define ide_cdrom       0x5
361 #define ide_tape        0x1
362 #define ide_floppy      0x0
363
364 /*
365  * Special Driver Flags
366  *
367  * set_geometry : respecify drive geometry
368  * recalibrate  : seek to cyl 0
369  * set_multmode : set multmode count
370  * set_tune     : tune interface for drive
371  * serviced     : service command
372  * reserved     : unused
373  */
374 typedef union {
375         unsigned all                    : 8;
376         struct {
377 #if defined(__LITTLE_ENDIAN_BITFIELD)
378                 unsigned set_geometry   : 1;
379                 unsigned recalibrate    : 1;
380                 unsigned set_multmode   : 1;
381                 unsigned set_tune       : 1;
382                 unsigned serviced       : 1;
383                 unsigned reserved       : 3;
384 #elif defined(__BIG_ENDIAN_BITFIELD)
385                 unsigned reserved       : 3;
386                 unsigned serviced       : 1;
387                 unsigned set_tune       : 1;
388                 unsigned set_multmode   : 1;
389                 unsigned recalibrate    : 1;
390                 unsigned set_geometry   : 1;
391 #else
392 #error "Please fix <asm/byteorder.h>"
393 #endif
394         } b;
395 } special_t;
396
397 /*
398  * ATA DATA Register Special.
399  * ATA NSECTOR Count Register().
400  * ATAPI Byte Count Register.
401  * Channel index ordering pairs.
402  */
403 typedef union {
404         unsigned all                    :16;
405         struct {
406 #if defined(__LITTLE_ENDIAN_BITFIELD)
407                 unsigned low            :8;     /* LSB */
408                 unsigned high           :8;     /* MSB */
409 #elif defined(__BIG_ENDIAN_BITFIELD)
410                 unsigned high           :8;     /* MSB */
411                 unsigned low            :8;     /* LSB */
412 #else
413 #error "Please fix <asm/byteorder.h>"
414 #endif
415         } b;
416 } ata_nsector_t, ata_data_t, atapi_bcount_t, ata_index_t;
417
418 /*
419  * ATA-IDE Error Register
420  *
421  * mark         : Bad address mark
422  * tzero        : Couldn't find track 0
423  * abrt         : Aborted Command
424  * mcr          : Media Change Request
425  * id           : ID field not found
426  * mce          : Media Change Event
427  * ecc          : Uncorrectable ECC error
428  * bdd          : dual meaing
429  */
430 typedef union {
431         unsigned all                    :8;
432         struct {
433 #if defined(__LITTLE_ENDIAN_BITFIELD)
434                 unsigned mark           :1;
435                 unsigned tzero          :1;
436                 unsigned abrt           :1;
437                 unsigned mcr            :1;
438                 unsigned id             :1;
439                 unsigned mce            :1;
440                 unsigned ecc            :1;
441                 unsigned bdd            :1;
442 #elif defined(__BIG_ENDIAN_BITFIELD)
443                 unsigned bdd            :1;
444                 unsigned ecc            :1;
445                 unsigned mce            :1;
446                 unsigned id             :1;
447                 unsigned mcr            :1;
448                 unsigned abrt           :1;
449                 unsigned tzero          :1;
450                 unsigned mark           :1;
451 #else
452 #error "Please fix <asm/byteorder.h>"
453 #endif
454         } b;
455 } ata_error_t;
456
457 /*
458  * ATA-IDE Select Register, aka Device-Head
459  *
460  * head         : always zeros here
461  * unit         : drive select number: 0/1
462  * bit5         : always 1
463  * lba          : using LBA instead of CHS
464  * bit7         : always 1
465  */
466 typedef union {
467         unsigned all                    : 8;
468         struct {
469 #if defined(__LITTLE_ENDIAN_BITFIELD)
470                 unsigned head           : 4;
471                 unsigned unit           : 1;
472                 unsigned bit5           : 1;
473                 unsigned lba            : 1;
474                 unsigned bit7           : 1;
475 #elif defined(__BIG_ENDIAN_BITFIELD)
476                 unsigned bit7           : 1;
477                 unsigned lba            : 1;
478                 unsigned bit5           : 1;
479                 unsigned unit           : 1;
480                 unsigned head           : 4;
481 #else
482 #error "Please fix <asm/byteorder.h>"
483 #endif
484         } b;
485 } select_t, ata_select_t;
486
487 /*
488  * The ATA-IDE Status Register.
489  * The ATAPI Status Register.
490  *
491  * check        : Error occurred
492  * idx          : Index Error
493  * corr         : Correctable error occurred
494  * drq          : Data is request by the device
495  * dsc          : Disk Seek Complete                    : ata
496  *              : Media access command finished         : atapi
497  * df           : Device Fault                          : ata
498  *              : Reserved                              : atapi
499  * drdy         : Ready, Command Mode Capable           : ata
500  *              : Ignored for ATAPI commands            : atapi
501  * bsy          : Disk is Busy
502  *              : The device has access to the command block
503  */
504 typedef union {
505         unsigned all                    :8;
506         struct {
507 #if defined(__LITTLE_ENDIAN_BITFIELD)
508                 unsigned check          :1;
509                 unsigned idx            :1;
510                 unsigned corr           :1;
511                 unsigned drq            :1;
512                 unsigned dsc            :1;
513                 unsigned df             :1;
514                 unsigned drdy           :1;
515                 unsigned bsy            :1;
516 #elif defined(__BIG_ENDIAN_BITFIELD)
517                 unsigned bsy            :1;
518                 unsigned drdy           :1;
519                 unsigned df             :1;
520                 unsigned dsc            :1;
521                 unsigned drq            :1;
522                 unsigned corr           :1;
523                 unsigned idx            :1;
524                 unsigned check          :1;
525 #else
526 #error "Please fix <asm/byteorder.h>"
527 #endif
528         } b;
529 } ata_status_t, atapi_status_t;
530
531 /*
532  * ATA-IDE Control Register
533  *
534  * bit0         : Should be set to zero
535  * nIEN         : device INTRQ to host
536  * SRST         : host soft reset bit
537  * bit3         : ATA-2 thingy, Should be set to 1
538  * reserved456  : Reserved
539  * HOB          : 48-bit address ordering, High Ordered Bit
540  */
541 typedef union {
542         unsigned all                    : 8;
543         struct {
544 #if defined(__LITTLE_ENDIAN_BITFIELD)
545                 unsigned bit0           : 1;
546                 unsigned nIEN           : 1;
547                 unsigned SRST           : 1;
548                 unsigned bit3           : 1;
549                 unsigned reserved456    : 3;
550                 unsigned HOB            : 1;
551 #elif defined(__BIG_ENDIAN_BITFIELD)
552                 unsigned HOB            : 1;
553                 unsigned reserved456    : 3;
554                 unsigned bit3           : 1;
555                 unsigned SRST           : 1;
556                 unsigned nIEN           : 1;
557                 unsigned bit0           : 1;
558 #else
559 #error "Please fix <asm/byteorder.h>"
560 #endif
561         } b;
562 } ata_control_t;
563
564 /*
565  * ATAPI Feature Register
566  *
567  * dma          : Using DMA or PIO
568  * reserved321  : Reserved
569  * reserved654  : Reserved (Tag Type)
570  * reserved7    : Reserved
571  */
572 typedef union {
573         unsigned all                    :8;
574         struct {
575 #if defined(__LITTLE_ENDIAN_BITFIELD)
576                 unsigned dma            :1;
577                 unsigned reserved321    :3;
578                 unsigned reserved654    :3;
579                 unsigned reserved7      :1;
580 #elif defined(__BIG_ENDIAN_BITFIELD)
581                 unsigned reserved7      :1;
582                 unsigned reserved654    :3;
583                 unsigned reserved321    :3;
584                 unsigned dma            :1;
585 #else
586 #error "Please fix <asm/byteorder.h>"
587 #endif
588         } b;
589 } atapi_feature_t;
590
591 /*
592  * ATAPI Interrupt Reason Register.
593  *
594  * cod          : Information transferred is command (1) or data (0)
595  * io           : The device requests us to read (1) or write (0)
596  * reserved     : Reserved
597  */
598 typedef union {
599         unsigned all                    :8;
600         struct {
601 #if defined(__LITTLE_ENDIAN_BITFIELD)
602                 unsigned cod            :1;
603                 unsigned io             :1;
604                 unsigned reserved       :6;
605 #elif defined(__BIG_ENDIAN_BITFIELD)
606                 unsigned reserved       :6;
607                 unsigned io             :1;
608                 unsigned cod            :1;
609 #else
610 #error "Please fix <asm/byteorder.h>"
611 #endif
612         } b;
613 } atapi_ireason_t;
614
615 /*
616  * The ATAPI error register.
617  *
618  * ili          : Illegal Length Indication
619  * eom          : End Of Media Detected
620  * abrt         : Aborted command - As defined by ATA
621  * mcr          : Media Change Requested - As defined by ATA
622  * sense_key    : Sense key of the last failed packet command
623  */
624 typedef union {
625         unsigned all                    :8;
626         struct {
627 #if defined(__LITTLE_ENDIAN_BITFIELD)
628                 unsigned ili            :1;
629                 unsigned eom            :1;
630                 unsigned abrt           :1;
631                 unsigned mcr            :1;
632                 unsigned sense_key      :4;
633 #elif defined(__BIG_ENDIAN_BITFIELD)
634                 unsigned sense_key      :4;
635                 unsigned mcr            :1;
636                 unsigned abrt           :1;
637                 unsigned eom            :1;
638                 unsigned ili            :1;
639 #else
640 #error "Please fix <asm/byteorder.h>"
641 #endif
642         } b;
643 } atapi_error_t;
644
645 /*
646  * ATAPI floppy Drive Select Register
647  *
648  * sam_lun      : Logical unit number
649  * reserved3    : Reserved
650  * drv          : The responding drive will be drive 0 (0) or drive 1 (1)
651  * one5         : Should be set to 1
652  * reserved6    : Reserved
653  * one7         : Should be set to 1
654  */
655 typedef union {
656         unsigned all                    :8;
657         struct {
658 #if defined(__LITTLE_ENDIAN_BITFIELD)
659                 unsigned sam_lun        :3;
660                 unsigned reserved3      :1;
661                 unsigned drv            :1;
662                 unsigned one5           :1;
663                 unsigned reserved6      :1;
664                 unsigned one7           :1;
665 #elif defined(__BIG_ENDIAN_BITFIELD)
666                 unsigned one7           :1;
667                 unsigned reserved6      :1;
668                 unsigned one5           :1;
669                 unsigned drv            :1;
670                 unsigned reserved3      :1;
671                 unsigned sam_lun        :3;
672 #else
673 #error "Please fix <asm/byteorder.h>"
674 #endif
675         } b;
676 } atapi_select_t;
677
678 /*
679  * Status returned from various ide_ functions
680  */
681 typedef enum {
682         ide_stopped,    /* no drive operation was started */
683         ide_started,    /* a drive operation was started, handler was set */
684         ide_released,   /* as ide_started, but bus also released */
685 } ide_startstop_t;
686
687 struct ide_driver_s;
688 struct ide_settings_s;
689
690 typedef struct ide_drive_s {
691         char            name[4];        /* drive name, such as "hda" */
692         char            driver_req[10]; /* requests specific driver */
693
694         request_queue_t         *queue; /* request queue */
695
696         struct request          *rq;    /* current request */
697         struct ide_drive_s      *next;  /* circular list of hwgroup drives */
698         struct ide_driver_s     *driver;/* (ide_driver_t *) */
699         void            *driver_data;   /* extra driver data */
700         struct hd_driveid       *id;    /* drive model identification info */
701         struct proc_dir_entry *proc;    /* /proc/ide/ directory entry */
702         struct ide_settings_s *settings;/* /proc/ide/ drive settings */
703         char            devfs_name[64]; /* devfs crap */
704
705         struct hwif_s           *hwif;  /* actually (ide_hwif_t *) */
706
707         unsigned long sleep;            /* sleep until this time */
708         unsigned long service_start;    /* time we started last request */
709         unsigned long service_time;     /* service time of last request */
710         unsigned long timeout;          /* max time to wait for irq */
711
712         special_t       special;        /* special action flags */
713         select_t        select;         /* basic drive/head select reg value */
714
715         u8      keep_settings;          /* restore settings after drive reset */
716         u8      autodma;                /* device can safely use dma on host */
717         u8      using_dma;              /* disk is using dma for read/write */
718         u8      using_tcq;              /* disk is using queueing */
719         u8      retry_pio;              /* retrying dma capable host in pio */
720         u8      state;                  /* retry state */
721         u8      waiting_for_dma;        /* dma currently in progress */
722         u8      unmask;                 /* okay to unmask other irqs */
723         u8      bswap;                  /* byte swap data */
724         u8      dsc_overlap;            /* DSC overlap */
725         u8      nice1;                  /* give potential excess bandwidth */
726
727         unsigned present        : 1;    /* drive is physically present */
728         unsigned dead           : 1;    /* device ejected hint */
729         unsigned id_read        : 1;    /* 1=id read from disk 0 = synthetic */
730         unsigned noprobe        : 1;    /* from:  hdx=noprobe */
731         unsigned removable      : 1;    /* 1 if need to do check_media_change */
732         unsigned attach         : 1;    /* needed for removable devices */
733         unsigned is_flash       : 1;    /* 1 if probed as flash */
734         unsigned forced_geom    : 1;    /* 1 if hdx=c,h,s was given at boot */
735         unsigned no_unmask      : 1;    /* disallow setting unmask bit */
736         unsigned no_io_32bit    : 1;    /* disallow enabling 32bit I/O */
737         unsigned atapi_overlap  : 1;    /* ATAPI overlap (not supported) */
738         unsigned nice0          : 1;    /* give obvious excess bandwidth */
739         unsigned nice2          : 1;    /* give a share in our own bandwidth */
740         unsigned doorlocking    : 1;    /* for removable only: door lock/unlock works */
741         unsigned autotune       : 2;    /* 0=default, 1=autotune, 2=noautotune */
742         unsigned remap_0_to_1   : 1;    /* 0=noremap, 1=remap 0->1 (for EZDrive) */
743         unsigned blocked        : 1;    /* 1=powermanagment told us not to do anything, so sleep nicely */
744         unsigned vdma           : 1;    /* 1=doing PIO over DMA 0=doing normal DMA */
745         unsigned addressing;            /*      : 3;
746                                          *  0=28-bit
747                                          *  1=48-bit
748                                          *  2=48-bit doing 28-bit
749                                          *  3=64-bit
750                                          */
751
752         u8      scsi;           /* 0=default, 1=skip current ide-subdriver for ide-scsi emulation */
753         u8      quirk_list;     /* considered quirky, set for a specific host */
754         u8      suspend_reset;  /* drive suspend mode flag, soft-reset recovers */
755         u8      init_speed;     /* transfer rate set at boot */
756         u8      pio_speed;      /* unused by core, used by some drivers for fallback from DMA */
757         u8      current_speed;  /* current transfer rate set */
758         u8      dn;             /* now wide spread use */
759         u8      wcache;         /* status of write cache */
760         u8      acoustic;       /* acoustic management */
761         u8      media;          /* disk, cdrom, tape, floppy, ... */
762         u8      ctl;            /* "normal" value for IDE_CONTROL_REG */
763         u8      ready_stat;     /* min status value for drive ready */
764         u8      mult_count;     /* current multiple sector setting */
765         u8      mult_req;       /* requested multiple sector setting */
766         u8      tune_req;       /* requested drive tuning setting */
767         u8      io_32bit;       /* 0=16-bit, 1=32-bit, 2/3=32bit+sync */
768         u8      bad_wstat;      /* used for ignoring WRERR_STAT */
769         u8      nowerr;         /* used for ignoring WRERR_STAT */
770         u8      sect0;          /* offset of first sector for DM6:DDO */
771         u8      head;           /* "real" number of heads */
772         u8      sect;           /* "real" sectors per track */
773         u8      bios_head;      /* BIOS/fdisk/LILO number of heads */
774         u8      bios_sect;      /* BIOS/fdisk/LILO sectors per track */
775         u8      queue_depth;    /* max queue depth */
776
777         unsigned int    bios_cyl;       /* BIOS/fdisk/LILO number of cyls */
778         unsigned int    cyl;            /* "real" number of cyls */
779         unsigned int    drive_data;     /* use by tuneproc/selectproc */
780         unsigned int    usage;          /* current "open()" count for drive */
781         unsigned int    failures;       /* current failure count */
782         unsigned int    max_failures;   /* maximum allowed failure count */
783
784         u64             capacity64;     /* total number of sectors */
785
786         int             lun;            /* logical unit */
787         int             crc_count;      /* crc counter to reduce drive speed */
788         struct list_head list;
789         struct device   gendev;
790         struct semaphore gendev_rel_sem;        /* to deal with device release() */
791         struct gendisk *disk;
792 } ide_drive_t;
793
794 typedef struct ide_pio_ops_s {
795         void (*ata_input_data)(ide_drive_t *, void *, u32);
796         void (*ata_output_data)(ide_drive_t *, void *, u32);
797
798         void (*atapi_input_bytes)(ide_drive_t *, void *, u32);
799         void (*atapi_output_bytes)(ide_drive_t *, void *, u32);
800 } ide_pio_ops_t;
801
802 typedef struct ide_dma_ops_s {
803         /* insert dma operations here! */
804         int (*ide_dma_read)(ide_drive_t *drive);
805         int (*ide_dma_write)(ide_drive_t *drive);
806         int (*ide_dma_begin)(ide_drive_t *drive);
807         int (*ide_dma_end)(ide_drive_t *drive);
808         int (*ide_dma_check)(ide_drive_t *drive);
809         int (*ide_dma_on)(ide_drive_t *drive);
810         int (*ide_dma_off_quietly)(ide_drive_t *drive);
811         int (*ide_dma_test_irq)(ide_drive_t *drive);
812         int (*ide_dma_host_on)(ide_drive_t *drive);
813         int (*ide_dma_host_off)(ide_drive_t *drive);
814         int (*ide_dma_verbose)(ide_drive_t *drive);
815         int (*ide_dma_lostirq)(ide_drive_t *drive);
816         int (*ide_dma_timeout)(ide_drive_t *drive);
817 } ide_dma_ops_t;
818
819 /*
820  * mapping stuff, prepare for highmem...
821  * 
822  * temporarily mapping a (possible) highmem bio for PIO transfer
823  */
824 #ifndef CONFIG_IDE_TASKFILE_IO
825
826 #define ide_rq_offset(rq) \
827         (((rq)->hard_cur_sectors - (rq)->current_nr_sectors) << 9)
828
829 /*
830  * taskfiles really should use hard_cur_sectors as well!
831  */
832 #define task_rq_offset(rq) \
833         (((rq)->nr_sectors - (rq)->current_nr_sectors) * SECTOR_SIZE)
834
835 static inline void *ide_map_buffer(struct request *rq, unsigned long *flags)
836 {
837         /*
838          * fs request
839          */
840         if (rq->bio)
841                 return bio_kmap_irq(rq->bio, flags) + ide_rq_offset(rq);
842
843         /*
844          * task request
845          */
846         return rq->buffer + task_rq_offset(rq);
847 }
848
849 static inline void ide_unmap_buffer(struct request *rq, char *buffer, unsigned long *flags)
850 {
851         if (rq->bio)
852                 bio_kunmap_irq(buffer, flags);
853 }
854 #endif /* !CONFIG_IDE_TASKFILE_IO */
855
856 #define IDE_CHIPSET_PCI_MASK    \
857     ((1<<ide_pci)|(1<<ide_cmd646)|(1<<ide_ali14xx))
858 #define IDE_CHIPSET_IS_PCI(c)   ((IDE_CHIPSET_PCI_MASK >> (c)) & 1)
859
860 struct ide_pci_device_s;
861
862 typedef struct hwif_s {
863         struct hwif_s *next;            /* for linked-list in ide_hwgroup_t */
864         struct hwif_s *mate;            /* other hwif from same PCI chip */
865         struct hwgroup_s *hwgroup;      /* actually (ide_hwgroup_t *) */
866         struct proc_dir_entry *proc;    /* /proc/ide/ directory entry */
867
868         char name[6];                   /* name of interface, eg. "ide0" */
869
870                 /* task file registers for pata and sata */
871         unsigned long   io_ports[IDE_NR_PORTS];
872         unsigned long   sata_scr[SATA_NR_PORTS];
873         unsigned long   sata_misc[SATA_NR_PORTS];
874
875         hw_regs_t       hw;             /* Hardware info */
876         ide_drive_t     drives[MAX_DRIVES];     /* drive info */
877
878         u8 major;       /* our major number */
879         u8 index;       /* 0 for ide0; 1 for ide1; ... */
880         u8 channel;     /* for dual-port chips: 0=primary, 1=secondary */
881         u8 straight8;   /* Alan's straight 8 check */
882         u8 bus_state;   /* power state of the IDE bus */
883
884         u8 atapi_dma;   /* host supports atapi_dma */
885         u8 ultra_mask;
886         u8 mwdma_mask;
887         u8 swdma_mask;
888
889         hwif_chipset_t chipset; /* sub-module for tuning.. */
890
891         struct pci_dev  *pci_dev;       /* for pci chipsets */
892         struct ide_pci_device_s *cds;   /* chipset device struct */
893
894         ide_startstop_t (*rw_disk)(ide_drive_t *, struct request *, sector_t);
895
896 #if 0
897         ide_hwif_ops_t  *hwifops;
898 #else
899         /* routine is for HBA specific IDENTITY operations */
900         int     (*identify)(ide_drive_t *);
901         /* routine to tune PIO mode for drives */
902         void    (*tuneproc)(ide_drive_t *, u8);
903         /* routine to retune DMA modes for drives */
904         int     (*speedproc)(ide_drive_t *, u8);
905         /* tweaks hardware to select drive */
906         void    (*selectproc)(ide_drive_t *);
907         /* chipset polling based on hba specifics */
908         int     (*reset_poll)(ide_drive_t *);
909         /* chipset specific changes to default for device-hba resets */
910         void    (*pre_reset)(ide_drive_t *);
911         /* routine to reset controller after a disk reset */
912         void    (*resetproc)(ide_drive_t *);
913         /* special interrupt handling for shared pci interrupts */
914         void    (*intrproc)(ide_drive_t *);
915         /* special host masking for drive selection */
916         void    (*maskproc)(ide_drive_t *, int);
917         /* check host's drive quirk list */
918         int     (*quirkproc)(ide_drive_t *);
919         /* driver soft-power interface */
920         int     (*busproc)(ide_drive_t *, int);
921 //      /* host rate limiter */
922 //      u8      (*ratemask)(ide_drive_t *);
923 //      /* device rate limiter */
924 //      u8      (*ratefilter)(ide_drive_t *, u8);
925 #endif
926
927 #if 0
928         ide_pio_ops_t   *pioops;
929 #else
930         void (*ata_input_data)(ide_drive_t *, void *, u32);
931         void (*ata_output_data)(ide_drive_t *, void *, u32);
932
933         void (*atapi_input_bytes)(ide_drive_t *, void *, u32);
934         void (*atapi_output_bytes)(ide_drive_t *, void *, u32);
935 #endif
936
937         int (*ide_dma_read)(ide_drive_t *drive);
938         int (*ide_dma_write)(ide_drive_t *drive);
939         int (*ide_dma_begin)(ide_drive_t *drive);
940         int (*ide_dma_end)(ide_drive_t *drive);
941         int (*ide_dma_check)(ide_drive_t *drive);
942         int (*ide_dma_on)(ide_drive_t *drive);
943         int (*ide_dma_off_quietly)(ide_drive_t *drive);
944         int (*ide_dma_test_irq)(ide_drive_t *drive);
945         int (*ide_dma_host_on)(ide_drive_t *drive);
946         int (*ide_dma_host_off)(ide_drive_t *drive);
947         int (*ide_dma_verbose)(ide_drive_t *drive);
948         int (*ide_dma_lostirq)(ide_drive_t *drive);
949         int (*ide_dma_timeout)(ide_drive_t *drive);
950
951         void (*OUTB)(u8 addr, unsigned long port);
952         void (*OUTBSYNC)(ide_drive_t *drive, u8 addr, unsigned long port);
953         void (*OUTW)(u16 addr, unsigned long port);
954         void (*OUTL)(u32 addr, unsigned long port);
955         void (*OUTSW)(unsigned long port, void *addr, u32 count);
956         void (*OUTSL)(unsigned long port, void *addr, u32 count);
957
958         u8  (*INB)(unsigned long port);
959         u16 (*INW)(unsigned long port);
960         u32 (*INL)(unsigned long port);
961         void (*INSW)(unsigned long port, void *addr, u32 count);
962         void (*INSL)(unsigned long port, void *addr, u32 count);
963
964         /* dma physical region descriptor table (cpu view) */
965         unsigned int    *dmatable_cpu;
966         /* dma physical region descriptor table (dma view) */
967         dma_addr_t      dmatable_dma;
968         /* Scatter-gather list used to build the above */
969         struct scatterlist *sg_table;
970         int sg_nents;                   /* Current number of entries in it */
971         int sg_dma_direction;           /* dma transfer direction */
972         int sg_dma_active;              /* is it in use */
973
974         int             mmio;           /* hosts iomio (0) or custom (2) select */
975         int             rqsize;         /* max sectors per request */
976         int             irq;            /* our irq number */
977
978         unsigned long   dma_master;     /* reference base addr dmabase */
979         unsigned long   dma_base;       /* base addr for dma ports */
980         unsigned long   dma_command;    /* dma command register */
981         unsigned long   dma_vendor1;    /* dma vendor 1 register */
982         unsigned long   dma_status;     /* dma status register */
983         unsigned long   dma_vendor3;    /* dma vendor 3 register */
984         unsigned long   dma_prdtable;   /* actual prd table address */
985         unsigned long   dma_base2;      /* extended base addr for dma ports */
986
987         unsigned        dma_extra;      /* extra addr for dma ports */
988         unsigned long   config_data;    /* for use by chipset-specific code */
989         unsigned long   select_data;    /* for use by chipset-specific code */
990
991         unsigned        noprobe    : 1; /* don't probe for this interface */
992         unsigned        present    : 1; /* this interface exists */
993         unsigned        hold       : 1; /* this interface is always present */
994         unsigned        serialized : 1; /* serialized all channel operation */
995         unsigned        sharing_irq: 1; /* 1 = sharing irq with another hwif */
996         unsigned        reset      : 1; /* reset after probe */
997         unsigned        autodma    : 1; /* auto-attempt using DMA at boot */
998         unsigned        udma_four  : 1; /* 1=ATA-66 capable, 0=default */
999         unsigned        no_lba48   : 1; /* 1 = cannot do LBA48 */
1000         unsigned        no_dsc     : 1; /* 0 default, 1 dsc_overlap disabled */
1001         unsigned        auto_poll  : 1; /* supports nop auto-poll */
1002
1003         struct device   gendev;
1004         struct semaphore gendev_rel_sem; /* To deal with device release() */
1005
1006         void            *hwif_data;     /* extra hwif data */
1007
1008         unsigned dma;
1009
1010         void (*led_act)(void *data, int rw);
1011 } ide_hwif_t;
1012
1013 /*
1014  *  internal ide interrupt handler type
1015  */
1016 typedef ide_startstop_t (ide_pre_handler_t)(ide_drive_t *, struct request *);
1017 typedef ide_startstop_t (ide_handler_t)(ide_drive_t *);
1018 typedef int (ide_expiry_t)(ide_drive_t *);
1019
1020 typedef struct hwgroup_s {
1021                 /* irq handler, if active */
1022         ide_startstop_t (*handler)(ide_drive_t *);
1023                 /* irq handler, suspended if active */
1024         ide_startstop_t (*handler_save)(ide_drive_t *);
1025                 /* BOOL: protects all fields below */
1026         volatile int busy;
1027                 /* BOOL: wake us up on timer expiry */
1028         int sleeping;
1029                 /* current drive */
1030         ide_drive_t *drive;
1031                 /* ptr to current hwif in linked-list */
1032         ide_hwif_t *hwif;
1033
1034                 /* for pci chipsets */
1035         struct pci_dev *pci_dev;
1036                 /* chipset device struct */
1037         struct ide_pci_device_s *cds;
1038
1039                 /* current request */
1040         struct request *rq;
1041                 /* failsafe timer */
1042         struct timer_list timer;
1043                 /* local copy of current write rq */
1044         struct request wrq;
1045                 /* timeout value during long polls */
1046         unsigned long poll_timeout;
1047                 /* queried upon timeouts */
1048         int (*expiry)(ide_drive_t *);
1049                 /* ide_system_bus_speed */
1050         int pio_clock;
1051
1052         unsigned char cmd_buf[4];
1053 } ide_hwgroup_t;
1054
1055 /* structure attached to the request for IDE_TASK_CMDS */
1056
1057 /*
1058  * configurable drive settings
1059  */
1060
1061 #define TYPE_INT        0
1062 #define TYPE_INTA       1
1063 #define TYPE_BYTE       2
1064 #define TYPE_SHORT      3
1065
1066 #define SETTING_READ    (1 << 0)
1067 #define SETTING_WRITE   (1 << 1)
1068 #define SETTING_RW      (SETTING_READ | SETTING_WRITE)
1069
1070 typedef int (ide_procset_t)(ide_drive_t *, int);
1071 typedef struct ide_settings_s {
1072         char                    *name;
1073         int                     rw;
1074         int                     read_ioctl;
1075         int                     write_ioctl;
1076         int                     data_type;
1077         int                     min;
1078         int                     max;
1079         int                     mul_factor;
1080         int                     div_factor;
1081         void                    *data;
1082         ide_procset_t           *set;
1083         int                     auto_remove;
1084         struct ide_settings_s   *next;
1085 } ide_settings_t;
1086
1087 extern struct semaphore ide_setting_sem;
1088 extern int ide_add_setting(ide_drive_t *drive, const char *name, int rw, int read_ioctl, int write_ioctl, int data_type, int min, int max, int mul_factor, int div_factor, void *data, ide_procset_t *set);
1089 extern void ide_remove_setting(ide_drive_t *drive, char *name);
1090 extern ide_settings_t *ide_find_setting_by_name(ide_drive_t *drive, char *name);
1091 extern int ide_read_setting(ide_drive_t *t, ide_settings_t *setting);
1092 extern int ide_write_setting(ide_drive_t *drive, ide_settings_t *setting, int val);
1093 extern void ide_add_generic_settings(ide_drive_t *drive);
1094
1095 /*
1096  * /proc/ide interface
1097  */
1098 typedef struct {
1099         const char      *name;
1100         mode_t          mode;
1101         read_proc_t     *read_proc;
1102         write_proc_t    *write_proc;
1103 } ide_proc_entry_t;
1104
1105 #ifdef CONFIG_PROC_FS
1106 extern struct proc_dir_entry *proc_ide_root;
1107
1108 extern void proc_ide_create(void);
1109 extern void proc_ide_destroy(void);
1110 extern void destroy_proc_ide_device(ide_hwif_t *, ide_drive_t *);
1111 extern void destroy_proc_ide_drives(ide_hwif_t *);
1112 extern void create_proc_ide_interfaces(void);
1113 extern void ide_add_proc_entries(struct proc_dir_entry *, ide_proc_entry_t *, void *);
1114 extern void ide_remove_proc_entries(struct proc_dir_entry *, ide_proc_entry_t *);
1115 read_proc_t proc_ide_read_capacity;
1116 read_proc_t proc_ide_read_geometry;
1117
1118 #ifdef CONFIG_BLK_DEV_IDEPCI
1119 void ide_pci_create_host_proc(const char *, get_info_t *);
1120 #endif
1121
1122 /*
1123  * Standard exit stuff:
1124  */
1125 #define PROC_IDE_READ_RETURN(page,start,off,count,eof,len) \
1126 {                                       \
1127         len -= off;                     \
1128         if (len < count) {              \
1129                 *eof = 1;               \
1130                 if (len <= 0)           \
1131                         return 0;       \
1132         } else                          \
1133                 len = count;            \
1134         *start = page + off;            \
1135         return len;                     \
1136 }
1137 #else
1138 static inline void create_proc_ide_interfaces(void) { ; }
1139 #define PROC_IDE_READ_RETURN(page,start,off,count,eof,len) return 0;
1140 #endif
1141
1142 /*
1143  * Power Management step value (rq->pm->pm_step).
1144  *
1145  * The step value starts at 0 (ide_pm_state_start_suspend) for a
1146  * suspend operation or 1000 (ide_pm_state_start_resume) for a
1147  * resume operation.
1148  *
1149  * For each step, the core calls the subdriver start_power_step() first.
1150  * This can return:
1151  *      - ide_stopped : In this case, the core calls us back again unless
1152  *                      step have been set to ide_power_state_completed.
1153  *      - ide_started : In this case, the channel is left busy until an
1154  *                      async event (interrupt) occurs.
1155  * Typically, start_power_step() will issue a taskfile request with
1156  * do_rw_taskfile().
1157  *
1158  * Upon reception of the interrupt, the core will call complete_power_step()
1159  * with the error code if any. This routine should update the step value
1160  * and return. It should not start a new request. The core will call
1161  * start_power_step for the new step value, unless step have been set to
1162  * ide_power_state_completed.
1163  *
1164  * Subdrivers are expected to define their own additional power
1165  * steps from 1..999 for suspend and from 1001..1999 for resume,
1166  * other values are reserved for future use.
1167  */
1168
1169 enum {
1170         ide_pm_state_completed          = -1,
1171         ide_pm_state_start_suspend      = 0,
1172         ide_pm_state_start_resume       = 1000,
1173 };
1174
1175 /*
1176  * Subdrivers support.
1177  */
1178 typedef struct ide_driver_s {
1179         struct module                   *owner;
1180         const char                      *name;
1181         const char                      *version;
1182         u8                              media;
1183         unsigned busy                   : 1;
1184         unsigned supports_dsc_overlap   : 1;
1185         int             (*cleanup)(ide_drive_t *);
1186         ide_startstop_t (*do_request)(ide_drive_t *, struct request *, sector_t);
1187         int             (*end_request)(ide_drive_t *, int, int);
1188         u8              (*sense)(ide_drive_t *, const char *, u8);
1189         ide_startstop_t (*error)(ide_drive_t *, const char *, u8);
1190         ide_startstop_t (*abort)(ide_drive_t *, const char *);
1191         int             (*ioctl)(ide_drive_t *, struct inode *, struct file *, unsigned int, unsigned long);
1192         void            (*pre_reset)(ide_drive_t *);
1193         sector_t        (*capacity)(ide_drive_t *);
1194         ide_startstop_t (*special)(ide_drive_t *);
1195         ide_proc_entry_t        *proc;
1196         int             (*attach)(ide_drive_t *);
1197         void            (*ata_prebuilder)(ide_drive_t *);
1198         void            (*atapi_prebuilder)(ide_drive_t *);
1199         ide_startstop_t (*start_power_step)(ide_drive_t *, struct request *);
1200         void            (*complete_power_step)(ide_drive_t *, struct request *, u8, u8);
1201         struct device_driver    gen_driver;
1202         struct list_head drives;
1203         struct list_head drivers;
1204 } ide_driver_t;
1205
1206 #define DRIVER(drive)           ((drive)->driver)
1207
1208 extern int generic_ide_ioctl(struct block_device *, unsigned, unsigned long);
1209
1210 /*
1211  * ide_hwifs[] is the master data structure used to keep track
1212  * of just about everything in ide.c.  Whenever possible, routines
1213  * should be using pointers to a drive (ide_drive_t *) or
1214  * pointers to a hwif (ide_hwif_t *), rather than indexing this
1215  * structure directly (the allocation/layout may change!).
1216  *
1217  */
1218 #ifndef _IDE_C
1219 extern  ide_hwif_t      ide_hwifs[];            /* master data repository */
1220 #endif
1221 extern int noautodma;
1222
1223 extern int ide_end_request (ide_drive_t *drive, int uptodate, int nrsecs);
1224
1225 /*
1226  * This is used on exit from the driver to designate the next irq handler
1227  * and also to start the safety timer.
1228  */
1229 extern void ide_set_handler (ide_drive_t *drive, ide_handler_t *handler, unsigned int timeout, ide_expiry_t *expiry);
1230
1231 /*
1232  * This is used on exit from the driver to designate the next irq handler
1233  * and start the safety time safely and atomically from the IRQ handler
1234  * with respect to the command issue (which it also does)
1235  */
1236 extern void ide_execute_command(ide_drive_t *, task_ioreg_t cmd, ide_handler_t *, unsigned int, ide_expiry_t *);
1237
1238 /*
1239  * Error reporting, in human readable form (luxurious, but a memory hog).
1240  *
1241  * (drive, msg, status)
1242  */
1243 byte ide_dump_status (ide_drive_t *drive, const char *msg, byte stat);
1244
1245 /*
1246  * ide_error() takes action based on the error returned by the controller.
1247  * The caller should return immediately after invoking this.
1248  *
1249  * (drive, msg, status)
1250  */
1251 ide_startstop_t ide_error (ide_drive_t *drive, const char *msg, byte stat);
1252
1253 /*
1254  * Abort a running command on the controller triggering the abort
1255  * from a host side, non error situation
1256  * (drive, msg)
1257  */
1258 extern ide_startstop_t ide_abort(ide_drive_t *, const char *);
1259
1260 /*
1261  * Issue a simple drive command
1262  * The drive must be selected beforehand.
1263  *
1264  * (drive, command, nsector, handler)
1265  */
1266 extern void ide_cmd(ide_drive_t *, u8, u8, ide_handler_t *);
1267
1268 extern void ide_fix_driveid(struct hd_driveid *);
1269 /*
1270  * ide_fixstring() cleans up and (optionally) byte-swaps a text string,
1271  * removing leading/trailing blanks and compressing internal blanks.
1272  * It is primarily used to tidy up the model name/number fields as
1273  * returned by the WIN_[P]IDENTIFY commands.
1274  *
1275  * (s, bytecount, byteswap)
1276  */
1277 extern void ide_fixstring(u8 *, const int, const int);
1278
1279 /*
1280  * This routine busy-waits for the drive status to be not "busy".
1281  * It then checks the status for all of the "good" bits and none
1282  * of the "bad" bits, and if all is okay it returns 0.  All other
1283  * cases return 1 after doing "*startstop = ide_error()", and the
1284  * caller should return the updated value of "startstop" in this case.
1285  * "startstop" is unchanged when the function returns 0;
1286  * (startstop, drive, good, bad, timeout)
1287  */
1288 extern int ide_wait_stat(ide_startstop_t *, ide_drive_t *, u8, u8, unsigned long);
1289
1290 /*
1291  * Return the current idea about the total capacity of this drive.
1292  */
1293 extern sector_t current_capacity (ide_drive_t *drive);
1294
1295 /*
1296  * Start a reset operation for an IDE interface.
1297  * The caller should return immediately after invoking this.
1298  */
1299 extern ide_startstop_t ide_do_reset (ide_drive_t *);
1300
1301 /*
1302  * This function is intended to be used prior to invoking ide_do_drive_cmd().
1303  */
1304 extern void ide_init_drive_cmd (struct request *rq);
1305
1306 /*
1307  * "action" parameter type for ide_do_drive_cmd() below.
1308  */
1309 typedef enum {
1310         ide_wait,       /* insert rq at end of list, and wait for it */
1311         ide_next,       /* insert rq immediately after current request */
1312         ide_preempt,    /* insert rq in front of current request */
1313         ide_head_wait,  /* insert rq in front of current request and wait for it */
1314         ide_end         /* insert rq at end of list, but don't wait for it */
1315 } ide_action_t;
1316
1317 /*
1318  * This function issues a special IDE device request
1319  * onto the request queue.
1320  *
1321  * If action is ide_wait, then the rq is queued at the end of the
1322  * request queue, and the function sleeps until it has been processed.
1323  * This is for use when invoked from an ioctl handler.
1324  *
1325  * If action is ide_preempt, then the rq is queued at the head of
1326  * the request queue, displacing the currently-being-processed
1327  * request and this function returns immediately without waiting
1328  * for the new rq to be completed.  This is VERY DANGEROUS, and is
1329  * intended for careful use by the ATAPI tape/cdrom driver code.
1330  *
1331  * If action is ide_next, then the rq is queued immediately after
1332  * the currently-being-processed-request (if any), and the function
1333  * returns without waiting for the new rq to be completed.  As above,
1334  * This is VERY DANGEROUS, and is intended for careful use by the
1335  * ATAPI tape/cdrom driver code.
1336  *
1337  * If action is ide_end, then the rq is queued at the end of the
1338  * request queue, and the function returns immediately without waiting
1339  * for the new rq to be completed. This is again intended for careful
1340  * use by the ATAPI tape/cdrom driver code.
1341  */
1342 extern int ide_do_drive_cmd(ide_drive_t *, struct request *, ide_action_t);
1343
1344 /*
1345  * Clean up after success/failure of an explicit drive cmd.
1346  * stat/err are used only when (HWGROUP(drive)->rq->cmd == IDE_DRIVE_CMD).
1347  * stat/err are used only when (HWGROUP(drive)->rq->cmd == IDE_DRIVE_TASK_MASK).
1348  *
1349  * (ide_drive_t *drive, u8 stat, u8 err)
1350  */
1351 extern void ide_end_drive_cmd(ide_drive_t *, u8, u8);
1352
1353 /*
1354  * Issue ATA command and wait for completion.
1355  * Use for implementing commands in kernel
1356  *
1357  *  (ide_drive_t *drive, u8 cmd, u8 nsect, u8 feature, u8 sectors, u8 *buf)
1358  */
1359 extern int ide_wait_cmd(ide_drive_t *, u8, u8, u8, u8, u8 *);
1360
1361 /* (ide_drive_t *drive, u8 *buf) */
1362 extern int ide_wait_cmd_task(ide_drive_t *, u8 *);
1363
1364 typedef struct ide_task_s {
1365 /*
1366  *      struct hd_drive_task_hdr        tf;
1367  *      task_struct_t           tf;
1368  *      struct hd_drive_hob_hdr         hobf;
1369  *      hob_struct_t            hobf;
1370  */
1371         task_ioreg_t            tfRegister[8];
1372         task_ioreg_t            hobRegister[8];
1373         ide_reg_valid_t         tf_out_flags;
1374         ide_reg_valid_t         tf_in_flags;
1375         int                     data_phase;
1376         int                     command_type;
1377         ide_pre_handler_t       *prehandler;
1378         ide_handler_t           *handler;
1379         struct request          *rq;            /* copy of request */
1380         void                    *special;       /* valid_t generally */
1381 } ide_task_t;
1382
1383 typedef struct pkt_task_s {
1384 /*
1385  *      struct hd_drive_task_hdr        pktf;
1386  *      task_struct_t           pktf;
1387  *      u8                      pkcdb[12];
1388  */
1389         task_ioreg_t            tfRegister[8];
1390         int                     data_phase;
1391         int                     command_type;
1392         ide_handler_t           *handler;
1393         struct request          *rq;            /* copy of request */
1394         void                    *special;
1395 } pkt_task_t;
1396
1397 extern u32 ide_read_24(ide_drive_t *);
1398
1399 extern void SELECT_DRIVE(ide_drive_t *);
1400 extern void SELECT_INTERRUPT(ide_drive_t *);
1401 extern void SELECT_MASK(ide_drive_t *, int);
1402 extern void QUIRK_LIST(ide_drive_t *);
1403
1404 extern void ata_input_data(ide_drive_t *, void *, u32);
1405 extern void ata_output_data(ide_drive_t *, void *, u32);
1406 extern void atapi_input_bytes(ide_drive_t *, void *, u32);
1407 extern void atapi_output_bytes(ide_drive_t *, void *, u32);
1408 extern void taskfile_input_data(ide_drive_t *, void *, u32);
1409 extern void taskfile_output_data(ide_drive_t *, void *, u32);
1410
1411 #ifdef CONFIG_IDE_TASKFILE_IO
1412
1413 #define IDE_PIO_IN      0
1414 #define IDE_PIO_OUT     1
1415
1416 static inline void task_sectors(ide_drive_t *drive, struct request *rq,
1417                                 unsigned nsect, int rw)
1418 {
1419         unsigned long flags;
1420         unsigned int bio_rq;
1421         char *buf;
1422
1423         /*
1424          * bio_rq flag is needed because we can call
1425          * rq_unmap_buffer() with rq->cbio == NULL
1426          */
1427         bio_rq = rq->cbio ? 1 : 0;
1428
1429         if (bio_rq)
1430                 buf = rq_map_buffer(rq, &flags);        /* fs request */
1431         else
1432                 buf = rq->buffer + blk_rq_offset(rq);   /* task request */
1433
1434         /*
1435          * IRQ can happen instantly after reading/writing
1436          * last sector of the datablock.
1437          */
1438         process_that_request_first(rq, nsect);
1439
1440         if (rw == IDE_PIO_OUT)
1441                 taskfile_output_data(drive, buf, nsect * SECTOR_WORDS);
1442         else
1443                 taskfile_input_data(drive, buf, nsect * SECTOR_WORDS);
1444
1445         if (bio_rq)
1446                 rq_unmap_buffer(buf, &flags);
1447 }
1448 #endif /* CONFIG_IDE_TASKFILE_IO */
1449
1450 extern int drive_is_ready(ide_drive_t *);
1451 extern int wait_for_ready(ide_drive_t *, int /* timeout */);
1452
1453 /*
1454  * taskfile io for disks for now...and builds request from ide_ioctl
1455  */
1456 extern ide_startstop_t do_rw_taskfile(ide_drive_t *, ide_task_t *);
1457
1458 /*
1459  * Special Flagged Register Validation Caller
1460  */
1461 extern ide_startstop_t flagged_taskfile(ide_drive_t *, ide_task_t *);
1462
1463 extern ide_startstop_t set_multmode_intr(ide_drive_t *);
1464 extern ide_startstop_t set_geometry_intr(ide_drive_t *);
1465 extern ide_startstop_t recal_intr(ide_drive_t *);
1466 extern ide_startstop_t task_no_data_intr(ide_drive_t *);
1467 extern ide_startstop_t task_in_intr(ide_drive_t *);
1468 extern ide_startstop_t task_mulin_intr(ide_drive_t *);
1469 extern ide_startstop_t pre_task_out_intr(ide_drive_t *, struct request *);
1470 extern ide_startstop_t task_out_intr(ide_drive_t *);
1471 extern ide_startstop_t pre_task_mulout_intr(ide_drive_t *, struct request *);
1472 extern ide_startstop_t task_mulout_intr(ide_drive_t *);
1473
1474 extern int ide_raw_taskfile(ide_drive_t *, ide_task_t *, u8 *);
1475
1476 int ide_taskfile_ioctl(ide_drive_t *, unsigned int, unsigned long);
1477 int ide_cmd_ioctl(ide_drive_t *, unsigned int, unsigned long);
1478 int ide_task_ioctl(ide_drive_t *, unsigned int, unsigned long);
1479
1480 extern int system_bus_clock(void);
1481
1482 extern u8 ide_auto_reduce_xfer(ide_drive_t *);
1483 extern int ide_driveid_update(ide_drive_t *);
1484 extern int ide_ata66_check(ide_drive_t *, ide_task_t *);
1485 extern int ide_config_drive_speed(ide_drive_t *, u8);
1486 extern u8 eighty_ninty_three (ide_drive_t *);
1487 extern int set_transfer(ide_drive_t *, ide_task_t *);
1488 extern int taskfile_lib_get_identify(ide_drive_t *drive, u8 *);
1489
1490 extern int ide_wait_not_busy(ide_hwif_t *hwif, unsigned long timeout);
1491 ide_startstop_t __ide_do_rw_disk(ide_drive_t *drive, struct request *rq, sector_t block);
1492
1493 /*
1494  * ide_system_bus_speed() returns what we think is the system VESA/PCI
1495  * bus speed (in MHz).  This is used for calculating interface PIO timings.
1496  * The default is 40 for known PCI systems, 50 otherwise.
1497  * The "idebus=xx" parameter can be used to override this value.
1498  */
1499 extern int ide_system_bus_speed(void);
1500
1501 /*
1502  * ide_stall_queue() can be used by a drive to give excess bandwidth back
1503  * to the hwgroup by sleeping for timeout jiffies.
1504  */
1505 extern void ide_stall_queue(ide_drive_t *drive, unsigned long timeout);
1506
1507 extern int ide_spin_wait_hwgroup(ide_drive_t *);
1508 extern void ide_timer_expiry(unsigned long);
1509 extern irqreturn_t ide_intr(int irq, void *dev_id, struct pt_regs *regs);
1510 extern void do_ide_request(request_queue_t *);
1511 extern void ide_init_subdrivers(void);
1512
1513 extern struct block_device_operations ide_fops[];
1514 extern ide_proc_entry_t generic_subdriver_entries[];
1515
1516 extern int ata_attach(ide_drive_t *);
1517
1518 extern int ideprobe_init(void);
1519
1520 extern void ide_scan_pcibus(int scan_direction) __init;
1521 extern int ide_pci_register_driver(struct pci_driver *driver);
1522 extern void ide_pci_unregister_driver(struct pci_driver *driver);
1523 extern void ide_pci_setup_ports(struct pci_dev *dev, struct ide_pci_device_s *d, int autodma, int pciirq, ata_index_t *index);
1524 extern void ide_setup_pci_noise (struct pci_dev *dev, struct ide_pci_device_s *d);
1525
1526 extern void default_hwif_iops(ide_hwif_t *);
1527 extern void default_hwif_mmiops(ide_hwif_t *);
1528 extern void default_hwif_transport(ide_hwif_t *);
1529
1530 int ide_register_driver(ide_driver_t *driver);
1531 void ide_unregister_driver(ide_driver_t *driver);
1532 int ide_register_subdriver(ide_drive_t *, ide_driver_t *);
1533 int ide_unregister_subdriver (ide_drive_t *drive);
1534 int ide_replace_subdriver(ide_drive_t *drive, const char *driver);
1535
1536 #define ON_BOARD                1
1537 #define NEVER_BOARD             0
1538
1539 #ifdef CONFIG_BLK_DEV_OFFBOARD
1540 #  define OFF_BOARD             ON_BOARD
1541 #else /* CONFIG_BLK_DEV_OFFBOARD */
1542 #  define OFF_BOARD             NEVER_BOARD
1543 #endif /* CONFIG_BLK_DEV_OFFBOARD */
1544
1545 #define NODMA 0
1546 #define NOAUTODMA 1
1547 #define AUTODMA 2
1548
1549 typedef struct ide_pci_enablebit_s {
1550         u8      reg;    /* byte pci reg holding the enable-bit */
1551         u8      mask;   /* mask to isolate the enable-bit */
1552         u8      val;    /* value of masked reg when "enabled" */
1553 } ide_pci_enablebit_t;
1554
1555 typedef struct ide_pci_device_s {
1556         u16                     vendor;
1557         u16                     device;
1558         char                    *name;
1559         void                    (*init_setup)(struct pci_dev *, struct ide_pci_device_s *);
1560         void                    (*init_setup_dma)(struct pci_dev *, struct ide_pci_device_s *, ide_hwif_t *);
1561         unsigned int            (*init_chipset)(struct pci_dev *, const char *);
1562         void                    (*init_iops)(ide_hwif_t *);
1563         void                    (*init_hwif)(ide_hwif_t *);
1564         void                    (*init_dma)(ide_hwif_t *, unsigned long);
1565         u8                      channels;
1566         u8                      autodma;
1567         ide_pci_enablebit_t     enablebits[2];
1568         u8                      bootable;
1569         unsigned int            extra;
1570         struct ide_pci_device_s *next;
1571         u8                      isa_ports;      /* Uses ISA control ports not PCI ones */
1572 } ide_pci_device_t;
1573
1574 extern void ide_setup_pci_device(struct pci_dev *, ide_pci_device_t *);
1575 extern void ide_setup_pci_devices(struct pci_dev *, struct pci_dev *, ide_pci_device_t *);
1576
1577 #define BAD_DMA_DRIVE           0
1578 #define GOOD_DMA_DRIVE          1
1579
1580 #ifdef CONFIG_BLK_DEV_IDEDMA
1581 int __ide_dma_bad_drive(ide_drive_t *);
1582 int __ide_dma_good_drive(ide_drive_t *);
1583 int __ide_dma_off(ide_drive_t *);
1584
1585 #ifdef CONFIG_BLK_DEV_IDEDMA_PCI
1586 extern int ide_build_sglist(ide_drive_t *, struct request *);
1587 extern int ide_raw_build_sglist(ide_drive_t *, struct request *);
1588 extern int ide_build_dmatable(ide_drive_t *, struct request *);
1589 extern void ide_destroy_dmatable(ide_drive_t *);
1590 extern ide_startstop_t ide_dma_intr(ide_drive_t *);
1591 extern int ide_release_dma(ide_hwif_t *);
1592 extern void ide_setup_dma(ide_hwif_t *, unsigned long, unsigned int);
1593 extern int ide_start_dma(ide_hwif_t *, ide_drive_t *, int);
1594
1595 extern int __ide_dma_host_off(ide_drive_t *);
1596 extern int __ide_dma_off_quietly(ide_drive_t *);
1597 extern int __ide_dma_host_on(ide_drive_t *);
1598 extern int __ide_dma_on(ide_drive_t *);
1599 extern int __ide_dma_check(ide_drive_t *);
1600 extern int __ide_dma_read(ide_drive_t *);
1601 extern int __ide_dma_write(ide_drive_t *);
1602 extern int __ide_dma_begin(ide_drive_t *);
1603 extern int __ide_dma_end(ide_drive_t *);
1604 extern int __ide_dma_test_irq(ide_drive_t *);
1605 extern int __ide_dma_verbose(ide_drive_t *);
1606 extern int __ide_dma_lostirq(ide_drive_t *);
1607 extern int __ide_dma_timeout(ide_drive_t *);
1608 #endif /* CONFIG_BLK_DEV_IDEDMA_PCI */
1609
1610 #ifdef CONFIG_BLK_DEV_IDE_TCQ
1611 extern int __ide_dma_queued_on(ide_drive_t *drive);
1612 extern int __ide_dma_queued_off(ide_drive_t *drive);
1613 extern ide_startstop_t __ide_dma_queued_read(ide_drive_t *drive);
1614 extern ide_startstop_t __ide_dma_queued_write(ide_drive_t *drive);
1615 extern ide_startstop_t __ide_dma_queued_start(ide_drive_t *drive);
1616 #endif
1617
1618 #else
1619 static inline int __ide_dma_off(ide_drive_t *drive) { return 0; }
1620 #endif /* CONFIG_BLK_DEV_IDEDMA */
1621
1622 #ifndef CONFIG_BLK_DEV_IDEDMA_PCI
1623 static inline void ide_release_dma(ide_hwif_t *drive) {;}
1624 #endif
1625
1626 extern int ide_hwif_request_regions(ide_hwif_t *hwif);
1627 extern void ide_hwif_release_regions(ide_hwif_t* hwif);
1628 extern void ide_unregister (unsigned int index);
1629
1630 extern int probe_hwif_init(ide_hwif_t *);
1631
1632 static inline void *ide_get_hwifdata (ide_hwif_t * hwif)
1633 {
1634         return hwif->hwif_data;
1635 }
1636
1637 static inline void ide_set_hwifdata (ide_hwif_t * hwif, void *data)
1638 {
1639         hwif->hwif_data = data;
1640 }
1641
1642 /* ide-lib.c */
1643 extern u8 ide_dma_speed(ide_drive_t *drive, u8 mode);
1644 extern u8 ide_rate_filter(u8 mode, u8 speed); 
1645 extern int ide_dma_enable(ide_drive_t *drive);
1646 extern char *ide_xfer_verbose(u8 xfer_rate);
1647 extern void ide_toggle_bounce(ide_drive_t *drive, int on);
1648 extern int ide_set_xfer_rate(ide_drive_t *drive, u8 rate);
1649 extern byte ide_dump_atapi_status(ide_drive_t *drive, const char *msg, byte stat);
1650
1651 typedef struct ide_pio_timings_s {
1652         int     setup_time;     /* Address setup (ns) minimum */
1653         int     active_time;    /* Active pulse (ns) minimum */
1654         int     cycle_time;     /* Cycle time (ns) minimum = (setup + active + recovery) */
1655 } ide_pio_timings_t;
1656
1657 typedef struct ide_pio_data_s {
1658         u8 pio_mode;
1659         u8 use_iordy;
1660         u8 overridden;
1661         u8 blacklisted;
1662         unsigned int cycle_time;
1663 } ide_pio_data_t;
1664
1665 extern u8 ide_get_best_pio_mode (ide_drive_t *drive, u8 mode_wanted, u8 max_mode, ide_pio_data_t *d);
1666 extern const ide_pio_timings_t ide_pio_timings[6];
1667
1668
1669 extern spinlock_t ide_lock;
1670 extern struct semaphore ide_cfg_sem;
1671 /*
1672  * Structure locking:
1673  *
1674  * ide_cfg_sem and ide_lock together protect changes to
1675  * ide_hwif_t->{next,hwgroup}
1676  * ide_drive_t->next
1677  *
1678  * ide_hwgroup_t->busy: ide_lock
1679  * ide_hwgroup_t->hwif: ide_lock
1680  * ide_hwif_t->mate: constant, no locking
1681  * ide_drive_t->hwif: constant, no locking
1682  */
1683
1684 #define local_irq_set(flags)    do { local_save_flags((flags)); local_irq_enable(); } while (0)
1685
1686 #define IDE_MAX_TAG     32
1687 #ifdef CONFIG_BLK_DEV_IDE_TCQ
1688 static inline int ata_pending_commands(ide_drive_t *drive)
1689 {
1690         if (drive->using_tcq)
1691                 return blk_queue_tag_depth(drive->queue);
1692
1693         return 0;
1694 }
1695
1696 static inline int ata_can_queue(ide_drive_t *drive)
1697 {
1698         if (drive->using_tcq)
1699                 return blk_queue_tag_queue(drive->queue);
1700
1701         return 1;
1702 }
1703 #else
1704 #define ata_pending_commands(drive)     (0)
1705 #define ata_can_queue(drive)            (1)
1706 #endif
1707
1708 extern struct bus_type ide_bus_type;
1709
1710 #endif /* _IDE_H */