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