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