1#ifndef _IDE_H
2#define _IDE_H
3
4
5
6
7
8
9#include <linux/init.h>
10#include <linux/ioport.h>
11#include <linux/ata.h>
12#include <linux/blkdev.h>
13#include <linux/proc_fs.h>
14#include <linux/interrupt.h>
15#include <linux/bitops.h>
16#include <linux/bio.h>
17#include <linux/pci.h>
18#include <linux/completion.h>
19#include <linux/pm.h>
20#include <linux/mutex.h>
21
22#include <linux/cdrom.h>
23#include <asm/byteorder.h>
24#include <asm/io.h>
25
26#if defined(CONFIG_CRIS) || defined(CONFIG_FRV) || defined(CONFIG_MN10300)
27# define SUPPORT_VLB_SYNC 0
28#else
29# define SUPPORT_VLB_SYNC 1
30#endif
31
32
33
34
35#define IDE_DEFAULT_MAX_FAILURES 1
36#define ERROR_MAX 8
37#define ERROR_RESET 3
38#define ERROR_RECAL 1
39
40struct device;
41
42
43enum {
44 IDE_DRV_ERROR_GENERAL = 101,
45 IDE_DRV_ERROR_FILEMARK = 102,
46 IDE_DRV_ERROR_EOD = 103,
47};
48
49
50
51
52#define IDE_NR_PORTS (10)
53
54struct ide_io_ports {
55 unsigned long data_addr;
56
57 union {
58 unsigned long error_addr;
59 unsigned long feature_addr;
60 };
61
62 unsigned long nsect_addr;
63 unsigned long lbal_addr;
64 unsigned long lbam_addr;
65 unsigned long lbah_addr;
66
67 unsigned long device_addr;
68
69 union {
70 unsigned long status_addr;
71 unsigned long command_addr;
72 };
73
74 unsigned long ctl_addr;
75
76 unsigned long irq_addr;
77};
78
79#define OK_STAT(stat,good,bad) (((stat)&((good)|(bad)))==(good))
80
81#define BAD_R_STAT (ATA_BUSY | ATA_ERR)
82#define BAD_W_STAT (BAD_R_STAT | ATA_DF)
83#define BAD_STAT (BAD_R_STAT | ATA_DRQ)
84#define DRIVE_READY (ATA_DRDY | ATA_DSC)
85
86#define BAD_CRC (ATA_ABORTED | ATA_ICRC)
87
88#define SATA_NR_PORTS (3)
89
90#define SATA_STATUS_OFFSET (0)
91#define SATA_ERROR_OFFSET (1)
92#define SATA_CONTROL_OFFSET (2)
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110#define PRD_BYTES 8
111#define PRD_ENTRIES 256
112
113
114
115
116#define PARTN_BITS 6
117#define MAX_DRIVES 2
118#define SECTOR_SIZE 512
119
120
121
122
123enum {
124
125 WAIT_DRQ = 1 * HZ,
126
127 WAIT_READY = 5 * HZ,
128
129 WAIT_PIDENTIFY = 10 * HZ,
130
131 WAIT_WORSTCASE = 30 * HZ,
132
133 WAIT_CMD = 10 * HZ,
134
135 WAIT_FLOPPY_CMD = 50 * HZ,
136
137
138
139
140
141 WAIT_TAPE_CMD = 900 * HZ,
142
143 WAIT_MIN_SLEEP = HZ / 50,
144};
145
146
147
148
149
150#define REQ_DRIVE_RESET 0x20
151#define REQ_DEVSET_EXEC 0x21
152#define REQ_PARK_HEADS 0x22
153#define REQ_UNPARK_HEADS 0x23
154
155
156
157
158
159enum { ide_unknown, ide_generic, ide_pci,
160 ide_cmd640, ide_dtc2278, ide_ali14xx,
161 ide_qd65xx, ide_umc8672, ide_ht6560b,
162 ide_4drives, ide_pmac, ide_acorn,
163 ide_au1xxx, ide_palm3710
164};
165
166typedef u8 hwif_chipset_t;
167
168
169
170
171struct ide_hw {
172 union {
173 struct ide_io_ports io_ports;
174 unsigned long io_ports_array[IDE_NR_PORTS];
175 };
176
177 int irq;
178 struct device *dev, *parent;
179 unsigned long config;
180};
181
182static inline void ide_std_init_ports(struct ide_hw *hw,
183 unsigned long io_addr,
184 unsigned long ctl_addr)
185{
186 unsigned int i;
187
188 for (i = 0; i <= 7; i++)
189 hw->io_ports_array[i] = io_addr++;
190
191 hw->io_ports.ctl_addr = ctl_addr;
192}
193
194#define MAX_HWIFS 10
195
196
197
198
199
200#define ide_scsi 0x21
201#define ide_disk 0x20
202#define ide_optical 0x7
203#define ide_cdrom 0x5
204#define ide_tape 0x1
205#define ide_floppy 0x0
206
207
208
209
210enum {
211 IDE_SFLAG_SET_GEOMETRY = (1 << 0),
212 IDE_SFLAG_RECALIBRATE = (1 << 1),
213 IDE_SFLAG_SET_MULTMODE = (1 << 2),
214};
215
216
217
218
219typedef enum {
220 ide_stopped,
221 ide_started,
222} ide_startstop_t;
223
224enum {
225 IDE_VALID_ERROR = (1 << 1),
226 IDE_VALID_FEATURE = IDE_VALID_ERROR,
227 IDE_VALID_NSECT = (1 << 2),
228 IDE_VALID_LBAL = (1 << 3),
229 IDE_VALID_LBAM = (1 << 4),
230 IDE_VALID_LBAH = (1 << 5),
231 IDE_VALID_DEVICE = (1 << 6),
232 IDE_VALID_LBA = IDE_VALID_LBAL |
233 IDE_VALID_LBAM |
234 IDE_VALID_LBAH,
235 IDE_VALID_OUT_TF = IDE_VALID_FEATURE |
236 IDE_VALID_NSECT |
237 IDE_VALID_LBA,
238 IDE_VALID_IN_TF = IDE_VALID_NSECT |
239 IDE_VALID_LBA,
240 IDE_VALID_OUT_HOB = IDE_VALID_OUT_TF,
241 IDE_VALID_IN_HOB = IDE_VALID_ERROR |
242 IDE_VALID_NSECT |
243 IDE_VALID_LBA,
244};
245
246enum {
247 IDE_TFLAG_LBA48 = (1 << 0),
248 IDE_TFLAG_WRITE = (1 << 1),
249 IDE_TFLAG_CUSTOM_HANDLER = (1 << 2),
250 IDE_TFLAG_DMA_PIO_FALLBACK = (1 << 3),
251
252 IDE_TFLAG_IO_16BIT = (1 << 4),
253
254 IDE_TFLAG_DYN = (1 << 5),
255 IDE_TFLAG_FS = (1 << 6),
256 IDE_TFLAG_MULTI_PIO = (1 << 7),
257 IDE_TFLAG_SET_XFER = (1 << 8),
258};
259
260enum {
261 IDE_FTFLAG_FLAGGED = (1 << 0),
262 IDE_FTFLAG_SET_IN_FLAGS = (1 << 1),
263 IDE_FTFLAG_OUT_DATA = (1 << 2),
264 IDE_FTFLAG_IN_DATA = (1 << 3),
265};
266
267struct ide_taskfile {
268 u8 data;
269 union {
270 u8 error;
271 u8 feature;
272 };
273 u8 nsect;
274 u8 lbal;
275 u8 lbam;
276 u8 lbah;
277 u8 device;
278 union {
279 u8 status;
280 u8 command;
281 };
282};
283
284struct ide_cmd {
285 struct ide_taskfile tf;
286 struct ide_taskfile hob;
287 struct {
288 struct {
289 u8 tf;
290 u8 hob;
291 } out, in;
292 } valid;
293
294 u16 tf_flags;
295 u8 ftf_flags;
296 int protocol;
297
298 int sg_nents;
299 int orig_sg_nents;
300 int sg_dma_direction;
301
302 unsigned int nbytes;
303 unsigned int nleft;
304 unsigned int last_xfer_len;
305
306 struct scatterlist *cursg;
307 unsigned int cursg_ofs;
308
309 struct request *rq;
310};
311
312
313enum {
314
315 PC_FLAG_ABORT = (1 << 0),
316 PC_FLAG_SUPPRESS_ERROR = (1 << 1),
317 PC_FLAG_WAIT_FOR_DSC = (1 << 2),
318 PC_FLAG_DMA_OK = (1 << 3),
319 PC_FLAG_DMA_IN_PROGRESS = (1 << 4),
320 PC_FLAG_DMA_ERROR = (1 << 5),
321 PC_FLAG_WRITING = (1 << 6),
322};
323
324#define ATAPI_WAIT_PC (60 * HZ)
325
326struct ide_atapi_pc {
327
328 u8 c[12];
329
330 int retries;
331 int error;
332
333
334 int req_xfer;
335
336
337 struct request *rq;
338
339 unsigned long flags;
340
341
342
343
344
345 unsigned long timeout;
346};
347
348struct ide_devset;
349struct ide_driver;
350
351#ifdef CONFIG_BLK_DEV_IDEACPI
352struct ide_acpi_drive_link;
353struct ide_acpi_hwif_link;
354#endif
355
356struct ide_drive_s;
357
358struct ide_disk_ops {
359 int (*check)(struct ide_drive_s *, const char *);
360 int (*get_capacity)(struct ide_drive_s *);
361 void (*unlock_native_capacity)(struct ide_drive_s *);
362 void (*setup)(struct ide_drive_s *);
363 void (*flush)(struct ide_drive_s *);
364 int (*init_media)(struct ide_drive_s *, struct gendisk *);
365 int (*set_doorlock)(struct ide_drive_s *, struct gendisk *,
366 int);
367 ide_startstop_t (*do_request)(struct ide_drive_s *, struct request *,
368 sector_t);
369 int (*ioctl)(struct ide_drive_s *, struct block_device *,
370 fmode_t, unsigned int, unsigned long);
371};
372
373
374enum {
375 IDE_AFLAG_DRQ_INTERRUPT = (1 << 0),
376
377
378
379 IDE_AFLAG_NO_EJECT = (1 << 1),
380
381 IDE_AFLAG_PRE_ATAPI12 = (1 << 2),
382
383 IDE_AFLAG_TOCADDR_AS_BCD = (1 << 3),
384
385 IDE_AFLAG_TOCTRACKS_AS_BCD = (1 << 4),
386
387 IDE_AFLAG_TOC_VALID = (1 << 6),
388
389 IDE_AFLAG_DOOR_LOCKED = (1 << 7),
390
391 IDE_AFLAG_NO_SPEED_SELECT = (1 << 8),
392 IDE_AFLAG_VERTOS_300_SSD = (1 << 9),
393 IDE_AFLAG_VERTOS_600_ESD = (1 << 10),
394 IDE_AFLAG_SANYO_3CD = (1 << 11),
395 IDE_AFLAG_FULL_CAPS_PAGE = (1 << 12),
396 IDE_AFLAG_PLAY_AUDIO_OK = (1 << 13),
397 IDE_AFLAG_LE_SPEED_FIELDS = (1 << 14),
398
399
400
401 IDE_AFLAG_CLIK_DRIVE = (1 << 15),
402
403 IDE_AFLAG_ZIP_DRIVE = (1 << 16),
404
405 IDE_AFLAG_SRFP = (1 << 17),
406
407
408 IDE_AFLAG_IGNORE_DSC = (1 << 18),
409
410 IDE_AFLAG_ADDRESS_VALID = (1 << 19),
411
412 IDE_AFLAG_BUSY = (1 << 20),
413
414 IDE_AFLAG_DETECT_BS = (1 << 21),
415
416 IDE_AFLAG_FILEMARK = (1 << 22),
417
418 IDE_AFLAG_MEDIUM_PRESENT = (1 << 23),
419
420 IDE_AFLAG_NO_AUTOCLOSE = (1 << 24),
421};
422
423
424enum {
425
426 IDE_DFLAG_KEEP_SETTINGS = (1 << 0),
427
428 IDE_DFLAG_USING_DMA = (1 << 1),
429
430 IDE_DFLAG_UNMASK = (1 << 2),
431
432 IDE_DFLAG_NOFLUSH = (1 << 3),
433
434 IDE_DFLAG_DSC_OVERLAP = (1 << 4),
435
436 IDE_DFLAG_NICE1 = (1 << 5),
437
438 IDE_DFLAG_PRESENT = (1 << 6),
439
440 IDE_DFLAG_NOHPA = (1 << 7),
441
442 IDE_DFLAG_ID_READ = (1 << 8),
443 IDE_DFLAG_NOPROBE = (1 << 9),
444
445 IDE_DFLAG_REMOVABLE = (1 << 10),
446
447 IDE_DFLAG_ATTACH = (1 << 11),
448 IDE_DFLAG_FORCED_GEOM = (1 << 12),
449
450 IDE_DFLAG_NO_UNMASK = (1 << 13),
451
452 IDE_DFLAG_NO_IO_32BIT = (1 << 14),
453
454 IDE_DFLAG_DOORLOCKING = (1 << 15),
455
456 IDE_DFLAG_NODMA = (1 << 16),
457
458 IDE_DFLAG_BLOCKED = (1 << 17),
459
460 IDE_DFLAG_SLEEPING = (1 << 18),
461 IDE_DFLAG_POST_RESET = (1 << 19),
462 IDE_DFLAG_UDMA33_WARNED = (1 << 20),
463 IDE_DFLAG_LBA48 = (1 << 21),
464
465 IDE_DFLAG_WCACHE = (1 << 22),
466
467 IDE_DFLAG_NOWERR = (1 << 23),
468
469 IDE_DFLAG_DMA_PIO_RETRY = (1 << 24),
470 IDE_DFLAG_LBA = (1 << 25),
471
472 IDE_DFLAG_NO_UNLOAD = (1 << 26),
473
474 IDE_DFLAG_PARKED = (1 << 27),
475 IDE_DFLAG_MEDIA_CHANGED = (1 << 28),
476
477 IDE_DFLAG_WP = (1 << 29),
478 IDE_DFLAG_FORMAT_IN_PROGRESS = (1 << 30),
479 IDE_DFLAG_NIEN_QUIRK = (1 << 31),
480};
481
482struct ide_drive_s {
483 char name[4];
484 char driver_req[10];
485
486 struct request_queue *queue;
487
488 struct request *rq;
489 void *driver_data;
490 u16 *id;
491#ifdef CONFIG_IDE_PROC_FS
492 struct proc_dir_entry *proc;
493 const struct ide_proc_devset *settings;
494#endif
495 struct hwif_s *hwif;
496
497 const struct ide_disk_ops *disk_ops;
498
499 unsigned long dev_flags;
500
501 unsigned long sleep;
502 unsigned long timeout;
503
504 u8 special_flags;
505
506 u8 select;
507 u8 retry_pio;
508 u8 waiting_for_dma;
509 u8 dma;
510
511 u8 init_speed;
512 u8 current_speed;
513 u8 desired_speed;
514 u8 pio_mode;
515 u8 dma_mode;
516 u8 dn;
517 u8 acoustic;
518 u8 media;
519 u8 ready_stat;
520 u8 mult_count;
521 u8 mult_req;
522 u8 io_32bit;
523 u8 bad_wstat;
524 u8 head;
525 u8 sect;
526 u8 bios_head;
527 u8 bios_sect;
528
529
530 u8 pc_delay;
531
532 unsigned int bios_cyl;
533 unsigned int cyl;
534 void *drive_data;
535 unsigned int failures;
536 unsigned int max_failures;
537 u64 probed_capacity;
538 u64 capacity64;
539
540 int lun;
541 int crc_count;
542
543 unsigned long debug_mask;
544
545#ifdef CONFIG_BLK_DEV_IDEACPI
546 struct ide_acpi_drive_link *acpidata;
547#endif
548 struct list_head list;
549 struct device gendev;
550 struct completion gendev_rel_comp;
551
552
553 struct ide_atapi_pc *pc;
554
555
556 struct ide_atapi_pc *failed_pc;
557
558
559 int (*pc_callback)(struct ide_drive_s *, int);
560
561 ide_startstop_t (*irq_handler)(struct ide_drive_s *);
562
563 unsigned long atapi_flags;
564
565 struct ide_atapi_pc request_sense_pc;
566
567
568 bool sense_rq_armed;
569 struct request sense_rq;
570 struct request_sense sense_data;
571};
572
573typedef struct ide_drive_s ide_drive_t;
574
575#define to_ide_device(dev) container_of(dev, ide_drive_t, gendev)
576
577#define to_ide_drv(obj, cont_type) \
578 container_of(obj, struct cont_type, dev)
579
580#define ide_drv_g(disk, cont_type) \
581 container_of((disk)->private_data, struct cont_type, driver)
582
583struct ide_port_info;
584
585struct ide_tp_ops {
586 void (*exec_command)(struct hwif_s *, u8);
587 u8 (*read_status)(struct hwif_s *);
588 u8 (*read_altstatus)(struct hwif_s *);
589 void (*write_devctl)(struct hwif_s *, u8);
590
591 void (*dev_select)(ide_drive_t *);
592 void (*tf_load)(ide_drive_t *, struct ide_taskfile *, u8);
593 void (*tf_read)(ide_drive_t *, struct ide_taskfile *, u8);
594
595 void (*input_data)(ide_drive_t *, struct ide_cmd *,
596 void *, unsigned int);
597 void (*output_data)(ide_drive_t *, struct ide_cmd *,
598 void *, unsigned int);
599};
600
601extern const struct ide_tp_ops default_tp_ops;
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621struct ide_port_ops {
622 void (*init_dev)(ide_drive_t *);
623 void (*set_pio_mode)(struct hwif_s *, ide_drive_t *);
624 void (*set_dma_mode)(struct hwif_s *, ide_drive_t *);
625 int (*reset_poll)(ide_drive_t *);
626 void (*pre_reset)(ide_drive_t *);
627 void (*resetproc)(ide_drive_t *);
628 void (*maskproc)(ide_drive_t *, int);
629 void (*quirkproc)(ide_drive_t *);
630 void (*clear_irq)(ide_drive_t *);
631 int (*test_irq)(struct hwif_s *);
632
633 u8 (*mdma_filter)(ide_drive_t *);
634 u8 (*udma_filter)(ide_drive_t *);
635
636 u8 (*cable_detect)(struct hwif_s *);
637};
638
639struct ide_dma_ops {
640 void (*dma_host_set)(struct ide_drive_s *, int);
641 int (*dma_setup)(struct ide_drive_s *, struct ide_cmd *);
642 void (*dma_start)(struct ide_drive_s *);
643 int (*dma_end)(struct ide_drive_s *);
644 int (*dma_test_irq)(struct ide_drive_s *);
645 void (*dma_lost_irq)(struct ide_drive_s *);
646
647 int (*dma_check)(struct ide_drive_s *, struct ide_cmd *);
648 int (*dma_timer_expiry)(struct ide_drive_s *);
649 void (*dma_clear)(struct ide_drive_s *);
650
651
652
653
654 u8 (*dma_sff_read_status)(struct hwif_s *);
655};
656
657enum {
658 IDE_PFLAG_PROBING = (1 << 0),
659};
660
661struct ide_host;
662
663typedef struct hwif_s {
664 struct hwif_s *mate;
665 struct proc_dir_entry *proc;
666
667 struct ide_host *host;
668
669 char name[6];
670
671 struct ide_io_ports io_ports;
672
673 unsigned long sata_scr[SATA_NR_PORTS];
674
675 ide_drive_t *devices[MAX_DRIVES + 1];
676
677 unsigned long port_flags;
678
679 u8 major;
680 u8 index;
681 u8 channel;
682
683 u32 host_flags;
684
685 u8 pio_mask;
686
687 u8 ultra_mask;
688 u8 mwdma_mask;
689 u8 swdma_mask;
690
691 u8 cbl;
692
693 hwif_chipset_t chipset;
694
695 struct device *dev;
696
697 void (*rw_disk)(ide_drive_t *, struct request *);
698
699 const struct ide_tp_ops *tp_ops;
700 const struct ide_port_ops *port_ops;
701 const struct ide_dma_ops *dma_ops;
702
703
704 unsigned int *dmatable_cpu;
705
706 dma_addr_t dmatable_dma;
707
708
709 int prd_max_nents;
710
711 int prd_ent_size;
712
713
714 struct scatterlist *sg_table;
715 int sg_max_nents;
716
717 struct ide_cmd cmd;
718
719 int rqsize;
720 int irq;
721
722 unsigned long dma_base;
723
724 unsigned long config_data;
725 unsigned long select_data;
726
727 unsigned long extra_base;
728 unsigned extra_ports;
729
730 unsigned present : 1;
731 unsigned busy : 1;
732
733 struct device gendev;
734 struct device *portdev;
735
736 struct completion gendev_rel_comp;
737
738 void *hwif_data;
739
740#ifdef CONFIG_BLK_DEV_IDEACPI
741 struct ide_acpi_hwif_link *acpidata;
742#endif
743
744
745 ide_startstop_t (*handler)(ide_drive_t *);
746
747
748 unsigned int polling : 1;
749
750
751 ide_drive_t *cur_dev;
752
753
754 struct request *rq;
755
756
757 struct timer_list timer;
758
759 unsigned long poll_timeout;
760
761 int (*expiry)(ide_drive_t *);
762
763 int req_gen;
764 int req_gen_timer;
765
766 spinlock_t lock;
767} ____cacheline_internodealigned_in_smp ide_hwif_t;
768
769#define MAX_HOST_PORTS 4
770
771struct ide_host {
772 ide_hwif_t *ports[MAX_HOST_PORTS + 1];
773 unsigned int n_ports;
774 struct device *dev[2];
775
776 int (*init_chipset)(struct pci_dev *);
777
778 void (*get_lock)(irq_handler_t, void *);
779 void (*release_lock)(void);
780
781 irq_handler_t irq_handler;
782
783 unsigned long host_flags;
784
785 int irq_flags;
786
787 void *host_priv;
788 ide_hwif_t *cur_port;
789
790
791 volatile unsigned long host_busy;
792};
793
794#define IDE_HOST_BUSY 0
795
796
797
798
799typedef ide_startstop_t (ide_handler_t)(ide_drive_t *);
800typedef int (ide_expiry_t)(ide_drive_t *);
801
802
803typedef void (xfer_func_t)(ide_drive_t *, struct ide_cmd *, void *, unsigned);
804
805extern struct mutex ide_setting_mtx;
806
807
808
809
810
811#define DS_SYNC (1 << 0)
812
813struct ide_devset {
814 int (*get)(ide_drive_t *);
815 int (*set)(ide_drive_t *, int);
816 unsigned int flags;
817};
818
819#define __DEVSET(_flags, _get, _set) { \
820 .flags = _flags, \
821 .get = _get, \
822 .set = _set, \
823}
824
825#define ide_devset_get(name, field) \
826static int get_##name(ide_drive_t *drive) \
827{ \
828 return drive->field; \
829}
830
831#define ide_devset_set(name, field) \
832static int set_##name(ide_drive_t *drive, int arg) \
833{ \
834 drive->field = arg; \
835 return 0; \
836}
837
838#define ide_devset_get_flag(name, flag) \
839static int get_##name(ide_drive_t *drive) \
840{ \
841 return !!(drive->dev_flags & flag); \
842}
843
844#define ide_devset_set_flag(name, flag) \
845static int set_##name(ide_drive_t *drive, int arg) \
846{ \
847 if (arg) \
848 drive->dev_flags |= flag; \
849 else \
850 drive->dev_flags &= ~flag; \
851 return 0; \
852}
853
854#define __IDE_DEVSET(_name, _flags, _get, _set) \
855const struct ide_devset ide_devset_##_name = \
856 __DEVSET(_flags, _get, _set)
857
858#define IDE_DEVSET(_name, _flags, _get, _set) \
859static __IDE_DEVSET(_name, _flags, _get, _set)
860
861#define ide_devset_rw(_name, _func) \
862IDE_DEVSET(_name, 0, get_##_func, set_##_func)
863
864#define ide_devset_w(_name, _func) \
865IDE_DEVSET(_name, 0, NULL, set_##_func)
866
867#define ide_ext_devset_rw(_name, _func) \
868__IDE_DEVSET(_name, 0, get_##_func, set_##_func)
869
870#define ide_ext_devset_rw_sync(_name, _func) \
871__IDE_DEVSET(_name, DS_SYNC, get_##_func, set_##_func)
872
873#define ide_decl_devset(_name) \
874extern const struct ide_devset ide_devset_##_name
875
876ide_decl_devset(io_32bit);
877ide_decl_devset(keepsettings);
878ide_decl_devset(pio_mode);
879ide_decl_devset(unmaskirq);
880ide_decl_devset(using_dma);
881
882#ifdef CONFIG_IDE_PROC_FS
883
884
885
886
887#define ide_devset_rw_field(_name, _field) \
888ide_devset_get(_name, _field); \
889ide_devset_set(_name, _field); \
890IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
891
892#define ide_devset_rw_flag(_name, _field) \
893ide_devset_get_flag(_name, _field); \
894ide_devset_set_flag(_name, _field); \
895IDE_DEVSET(_name, DS_SYNC, get_##_name, set_##_name)
896
897struct ide_proc_devset {
898 const char *name;
899 const struct ide_devset *setting;
900 int min, max;
901 int (*mulf)(ide_drive_t *);
902 int (*divf)(ide_drive_t *);
903};
904
905#define __IDE_PROC_DEVSET(_name, _min, _max, _mulf, _divf) { \
906 .name = __stringify(_name), \
907 .setting = &ide_devset_##_name, \
908 .min = _min, \
909 .max = _max, \
910 .mulf = _mulf, \
911 .divf = _divf, \
912}
913
914#define IDE_PROC_DEVSET(_name, _min, _max) \
915__IDE_PROC_DEVSET(_name, _min, _max, NULL, NULL)
916
917typedef struct {
918 const char *name;
919 umode_t mode;
920 const struct file_operations *proc_fops;
921} ide_proc_entry_t;
922
923void proc_ide_create(void);
924void proc_ide_destroy(void);
925void ide_proc_register_port(ide_hwif_t *);
926void ide_proc_port_register_devices(ide_hwif_t *);
927void ide_proc_unregister_device(ide_drive_t *);
928void ide_proc_unregister_port(ide_hwif_t *);
929void ide_proc_register_driver(ide_drive_t *, struct ide_driver *);
930void ide_proc_unregister_driver(ide_drive_t *, struct ide_driver *);
931
932extern const struct file_operations ide_capacity_proc_fops;
933extern const struct file_operations ide_geometry_proc_fops;
934#else
935static inline void proc_ide_create(void) { ; }
936static inline void proc_ide_destroy(void) { ; }
937static inline void ide_proc_register_port(ide_hwif_t *hwif) { ; }
938static inline void ide_proc_port_register_devices(ide_hwif_t *hwif) { ; }
939static inline void ide_proc_unregister_device(ide_drive_t *drive) { ; }
940static inline void ide_proc_unregister_port(ide_hwif_t *hwif) { ; }
941static inline void ide_proc_register_driver(ide_drive_t *drive,
942 struct ide_driver *driver) { ; }
943static inline void ide_proc_unregister_driver(ide_drive_t *drive,
944 struct ide_driver *driver) { ; }
945#endif
946
947enum {
948
949 IDE_DBG_FUNC = (1 << 0),
950
951 IDE_DBG_SENSE = (1 << 1),
952
953 IDE_DBG_PC = (1 << 2),
954
955 IDE_DBG_RQ = (1 << 3),
956
957 IDE_DBG_PROBE = (1 << 4),
958};
959
960
961#define __ide_debug_log(lvl, fmt, args...) \
962{ \
963 if (unlikely(drive->debug_mask & lvl)) \
964 printk(KERN_INFO DRV_NAME ": %s: " fmt "\n", \
965 __func__, ## args); \
966}
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986enum {
987 IDE_PM_START_SUSPEND,
988 IDE_PM_FLUSH_CACHE = IDE_PM_START_SUSPEND,
989 IDE_PM_STANDBY,
990
991 IDE_PM_START_RESUME,
992 IDE_PM_RESTORE_PIO = IDE_PM_START_RESUME,
993 IDE_PM_IDLE,
994 IDE_PM_RESTORE_DMA,
995
996 IDE_PM_COMPLETED,
997};
998
999int generic_ide_suspend(struct device *, pm_message_t);
1000int generic_ide_resume(struct device *);
1001
1002void ide_complete_power_step(ide_drive_t *, struct request *);
1003ide_startstop_t ide_start_power_step(ide_drive_t *, struct request *);
1004void ide_complete_pm_rq(ide_drive_t *, struct request *);
1005void ide_check_pm_state(ide_drive_t *, struct request *);
1006
1007
1008
1009
1010
1011
1012
1013struct ide_driver {
1014 const char *version;
1015 ide_startstop_t (*do_request)(ide_drive_t *, struct request *, sector_t);
1016 struct device_driver gen_driver;
1017 int (*probe)(ide_drive_t *);
1018 void (*remove)(ide_drive_t *);
1019 void (*resume)(ide_drive_t *);
1020 void (*shutdown)(ide_drive_t *);
1021#ifdef CONFIG_IDE_PROC_FS
1022 ide_proc_entry_t * (*proc_entries)(ide_drive_t *);
1023 const struct ide_proc_devset * (*proc_devsets)(ide_drive_t *);
1024#endif
1025};
1026
1027#define to_ide_driver(drv) container_of(drv, struct ide_driver, gen_driver)
1028
1029int ide_device_get(ide_drive_t *);
1030void ide_device_put(ide_drive_t *);
1031
1032struct ide_ioctl_devset {
1033 unsigned int get_ioctl;
1034 unsigned int set_ioctl;
1035 const struct ide_devset *setting;
1036};
1037
1038int ide_setting_ioctl(ide_drive_t *, struct block_device *, unsigned int,
1039 unsigned long, const struct ide_ioctl_devset *);
1040
1041int generic_ide_ioctl(ide_drive_t *, struct block_device *, unsigned, unsigned long);
1042
1043extern int ide_vlb_clk;
1044extern int ide_pci_clk;
1045
1046int ide_end_rq(ide_drive_t *, struct request *, int, unsigned int);
1047void ide_kill_rq(ide_drive_t *, struct request *);
1048
1049void __ide_set_handler(ide_drive_t *, ide_handler_t *, unsigned int);
1050void ide_set_handler(ide_drive_t *, ide_handler_t *, unsigned int);
1051
1052void ide_execute_command(ide_drive_t *, struct ide_cmd *, ide_handler_t *,
1053 unsigned int);
1054
1055void ide_pad_transfer(ide_drive_t *, int, int);
1056
1057ide_startstop_t ide_error(ide_drive_t *, const char *, u8);
1058
1059void ide_fix_driveid(u16 *);
1060
1061extern void ide_fixstring(u8 *, const int, const int);
1062
1063int ide_busy_sleep(ide_drive_t *, unsigned long, int);
1064
1065int __ide_wait_stat(ide_drive_t *, u8, u8, unsigned long, u8 *);
1066int ide_wait_stat(ide_startstop_t *, ide_drive_t *, u8, u8, unsigned long);
1067
1068ide_startstop_t ide_do_park_unpark(ide_drive_t *, struct request *);
1069ide_startstop_t ide_do_devset(ide_drive_t *, struct request *);
1070
1071extern ide_startstop_t ide_do_reset (ide_drive_t *);
1072
1073extern int ide_devset_execute(ide_drive_t *drive,
1074 const struct ide_devset *setting, int arg);
1075
1076void ide_complete_cmd(ide_drive_t *, struct ide_cmd *, u8, u8);
1077int ide_complete_rq(ide_drive_t *, int, unsigned int);
1078
1079void ide_tf_readback(ide_drive_t *drive, struct ide_cmd *cmd);
1080void ide_tf_dump(const char *, struct ide_cmd *);
1081
1082void ide_exec_command(ide_hwif_t *, u8);
1083u8 ide_read_status(ide_hwif_t *);
1084u8 ide_read_altstatus(ide_hwif_t *);
1085void ide_write_devctl(ide_hwif_t *, u8);
1086
1087void ide_dev_select(ide_drive_t *);
1088void ide_tf_load(ide_drive_t *, struct ide_taskfile *, u8);
1089void ide_tf_read(ide_drive_t *, struct ide_taskfile *, u8);
1090
1091void ide_input_data(ide_drive_t *, struct ide_cmd *, void *, unsigned int);
1092void ide_output_data(ide_drive_t *, struct ide_cmd *, void *, unsigned int);
1093
1094void SELECT_MASK(ide_drive_t *, int);
1095
1096u8 ide_read_error(ide_drive_t *);
1097void ide_read_bcount_and_ireason(ide_drive_t *, u16 *, u8 *);
1098
1099int ide_check_ireason(ide_drive_t *, struct request *, int, int, int);
1100
1101int ide_check_atapi_device(ide_drive_t *, const char *);
1102
1103void ide_init_pc(struct ide_atapi_pc *);
1104
1105
1106extern wait_queue_head_t ide_park_wq;
1107ssize_t ide_park_show(struct device *dev, struct device_attribute *attr,
1108 char *buf);
1109ssize_t ide_park_store(struct device *dev, struct device_attribute *attr,
1110 const char *buf, size_t len);
1111
1112
1113
1114
1115
1116
1117
1118enum {
1119 REQ_IDETAPE_PC1 = (1 << 0),
1120 REQ_IDETAPE_PC2 = (1 << 1),
1121 REQ_IDETAPE_READ = (1 << 2),
1122 REQ_IDETAPE_WRITE = (1 << 3),
1123};
1124
1125int ide_queue_pc_tail(ide_drive_t *, struct gendisk *, struct ide_atapi_pc *,
1126 void *, unsigned int);
1127
1128int ide_do_test_unit_ready(ide_drive_t *, struct gendisk *);
1129int ide_do_start_stop(ide_drive_t *, struct gendisk *, int);
1130int ide_set_media_lock(ide_drive_t *, struct gendisk *, int);
1131void ide_create_request_sense_cmd(ide_drive_t *, struct ide_atapi_pc *);
1132void ide_retry_pc(ide_drive_t *drive);
1133
1134void ide_prep_sense(ide_drive_t *drive, struct request *rq);
1135int ide_queue_sense_rq(ide_drive_t *drive, void *special);
1136
1137int ide_cd_expiry(ide_drive_t *);
1138
1139int ide_cd_get_xferlen(struct request *);
1140
1141ide_startstop_t ide_issue_pc(ide_drive_t *, struct ide_cmd *);
1142
1143ide_startstop_t do_rw_taskfile(ide_drive_t *, struct ide_cmd *);
1144
1145void ide_pio_bytes(ide_drive_t *, struct ide_cmd *, unsigned int, unsigned int);
1146
1147void ide_finish_cmd(ide_drive_t *, struct ide_cmd *, u8);
1148
1149int ide_raw_taskfile(ide_drive_t *, struct ide_cmd *, u8 *, u16);
1150int ide_no_data_taskfile(ide_drive_t *, struct ide_cmd *);
1151
1152int ide_taskfile_ioctl(ide_drive_t *, unsigned long);
1153
1154int ide_dev_read_id(ide_drive_t *, u8, u16 *, int);
1155
1156extern int ide_driveid_update(ide_drive_t *);
1157extern int ide_config_drive_speed(ide_drive_t *, u8);
1158extern u8 eighty_ninty_three (ide_drive_t *);
1159extern int taskfile_lib_get_identify(ide_drive_t *drive, u8 *);
1160
1161extern int ide_wait_not_busy(ide_hwif_t *hwif, unsigned long timeout);
1162
1163extern void ide_stall_queue(ide_drive_t *drive, unsigned long timeout);
1164
1165extern void ide_timer_expiry(unsigned long);
1166extern irqreturn_t ide_intr(int irq, void *dev_id);
1167extern void do_ide_request(struct request_queue *);
1168extern void ide_requeue_and_plug(ide_drive_t *drive, struct request *rq);
1169
1170void ide_init_disk(struct gendisk *, ide_drive_t *);
1171
1172#ifdef CONFIG_IDEPCI_PCIBUS_ORDER
1173extern int __ide_pci_register_driver(struct pci_driver *driver, struct module *owner, const char *mod_name);
1174#define ide_pci_register_driver(d) __ide_pci_register_driver(d, THIS_MODULE, KBUILD_MODNAME)
1175#else
1176#define ide_pci_register_driver(d) pci_register_driver(d)
1177#endif
1178
1179static inline int ide_pci_is_in_compatibility_mode(struct pci_dev *dev)
1180{
1181 if ((dev->class >> 8) == PCI_CLASS_STORAGE_IDE && (dev->class & 5) != 5)
1182 return 1;
1183 return 0;
1184}
1185
1186void ide_pci_setup_ports(struct pci_dev *, const struct ide_port_info *,
1187 struct ide_hw *, struct ide_hw **);
1188void ide_setup_pci_noise(struct pci_dev *, const struct ide_port_info *);
1189
1190#ifdef CONFIG_BLK_DEV_IDEDMA_PCI
1191int ide_pci_set_master(struct pci_dev *, const char *);
1192unsigned long ide_pci_dma_base(ide_hwif_t *, const struct ide_port_info *);
1193int ide_pci_check_simplex(ide_hwif_t *, const struct ide_port_info *);
1194int ide_hwif_setup_dma(ide_hwif_t *, const struct ide_port_info *);
1195#else
1196static inline int ide_hwif_setup_dma(ide_hwif_t *hwif,
1197 const struct ide_port_info *d)
1198{
1199 return -EINVAL;
1200}
1201#endif
1202
1203struct ide_pci_enablebit {
1204 u8 reg;
1205 u8 mask;
1206 u8 val;
1207};
1208
1209enum {
1210
1211 IDE_HFLAG_ISA_PORTS = (1 << 0),
1212
1213 IDE_HFLAG_SINGLE = (1 << 1),
1214
1215 IDE_HFLAG_PIO_NO_BLACKLIST = (1 << 2),
1216
1217 IDE_HFLAG_QD_2ND_PORT = (1 << 3),
1218
1219 IDE_HFLAG_ABUSE_PREFETCH = (1 << 4),
1220
1221 IDE_HFLAG_ABUSE_FAST_DEVSEL = (1 << 5),
1222
1223 IDE_HFLAG_ABUSE_DMA_MODES = (1 << 6),
1224
1225
1226
1227
1228 IDE_HFLAG_SET_PIO_MODE_KEEP_DMA = (1 << 7),
1229
1230 IDE_HFLAG_POST_SET_MODE = (1 << 8),
1231
1232 IDE_HFLAG_NO_SET_MODE = (1 << 9),
1233
1234 IDE_HFLAG_TRUST_BIOS_FOR_DMA = (1 << 10),
1235
1236 IDE_HFLAG_CS5520 = (1 << 11),
1237
1238 IDE_HFLAG_NO_ATAPI_DMA = (1 << 12),
1239
1240 IDE_HFLAG_NON_BOOTABLE = (1 << 13),
1241
1242 IDE_HFLAG_NO_DMA = (1 << 14),
1243
1244 IDE_HFLAG_NO_AUTODMA = (1 << 15),
1245
1246 IDE_HFLAG_MMIO = (1 << 16),
1247
1248 IDE_HFLAG_NO_LBA48 = (1 << 17),
1249
1250 IDE_HFLAG_NO_LBA48_DMA = (1 << 18),
1251
1252 IDE_HFLAG_ERROR_STOPS_FIFO = (1 << 19),
1253
1254 IDE_HFLAG_SERIALIZE = (1 << 20),
1255
1256 IDE_HFLAG_DTC2278 = (1 << 21),
1257
1258 IDE_HFLAG_4DRIVES = (1 << 22),
1259
1260 IDE_HFLAG_TRM290 = (1 << 23),
1261
1262 IDE_HFLAG_IO_32BIT = (1 << 24),
1263
1264 IDE_HFLAG_UNMASK_IRQS = (1 << 25),
1265 IDE_HFLAG_BROKEN_ALTSTATUS = (1 << 26),
1266
1267 IDE_HFLAG_SERIALIZE_DMA = (1 << 27),
1268
1269 IDE_HFLAG_CLEAR_SIMPLEX = (1 << 28),
1270
1271 IDE_HFLAG_NO_DSC = (1 << 29),
1272
1273 IDE_HFLAG_NO_IO_32BIT = (1 << 30),
1274
1275 IDE_HFLAG_NO_UNMASK_IRQS = (1 << 31),
1276};
1277
1278#ifdef CONFIG_BLK_DEV_OFFBOARD
1279# define IDE_HFLAG_OFF_BOARD 0
1280#else
1281# define IDE_HFLAG_OFF_BOARD IDE_HFLAG_NON_BOOTABLE
1282#endif
1283
1284struct ide_port_info {
1285 char *name;
1286
1287 int (*init_chipset)(struct pci_dev *);
1288
1289 void (*get_lock)(irq_handler_t, void *);
1290 void (*release_lock)(void);
1291
1292 void (*init_iops)(ide_hwif_t *);
1293 void (*init_hwif)(ide_hwif_t *);
1294 int (*init_dma)(ide_hwif_t *,
1295 const struct ide_port_info *);
1296
1297 const struct ide_tp_ops *tp_ops;
1298 const struct ide_port_ops *port_ops;
1299 const struct ide_dma_ops *dma_ops;
1300
1301 struct ide_pci_enablebit enablebits[2];
1302
1303 hwif_chipset_t chipset;
1304
1305 u16 max_sectors;
1306
1307 u32 host_flags;
1308
1309 int irq_flags;
1310
1311 u8 pio_mask;
1312 u8 swdma_mask;
1313 u8 mwdma_mask;
1314 u8 udma_mask;
1315};
1316
1317int ide_pci_init_one(struct pci_dev *, const struct ide_port_info *, void *);
1318int ide_pci_init_two(struct pci_dev *, struct pci_dev *,
1319 const struct ide_port_info *, void *);
1320void ide_pci_remove(struct pci_dev *);
1321
1322#ifdef CONFIG_PM
1323int ide_pci_suspend(struct pci_dev *, pm_message_t);
1324int ide_pci_resume(struct pci_dev *);
1325#else
1326#define ide_pci_suspend NULL
1327#define ide_pci_resume NULL
1328#endif
1329
1330void ide_map_sg(ide_drive_t *, struct ide_cmd *);
1331void ide_init_sg_cmd(struct ide_cmd *, unsigned int);
1332
1333#define BAD_DMA_DRIVE 0
1334#define GOOD_DMA_DRIVE 1
1335
1336struct drive_list_entry {
1337 const char *id_model;
1338 const char *id_firmware;
1339};
1340
1341int ide_in_drive_list(u16 *, const struct drive_list_entry *);
1342
1343#ifdef CONFIG_BLK_DEV_IDEDMA
1344int ide_dma_good_drive(ide_drive_t *);
1345int __ide_dma_bad_drive(ide_drive_t *);
1346
1347u8 ide_find_dma_mode(ide_drive_t *, u8);
1348
1349static inline u8 ide_max_dma_mode(ide_drive_t *drive)
1350{
1351 return ide_find_dma_mode(drive, XFER_UDMA_6);
1352}
1353
1354void ide_dma_off_quietly(ide_drive_t *);
1355void ide_dma_off(ide_drive_t *);
1356void ide_dma_on(ide_drive_t *);
1357int ide_set_dma(ide_drive_t *);
1358void ide_check_dma_crc(ide_drive_t *);
1359ide_startstop_t ide_dma_intr(ide_drive_t *);
1360
1361int ide_allocate_dma_engine(ide_hwif_t *);
1362void ide_release_dma_engine(ide_hwif_t *);
1363
1364int ide_dma_prepare(ide_drive_t *, struct ide_cmd *);
1365void ide_dma_unmap_sg(ide_drive_t *, struct ide_cmd *);
1366
1367#ifdef CONFIG_BLK_DEV_IDEDMA_SFF
1368int config_drive_for_dma(ide_drive_t *);
1369int ide_build_dmatable(ide_drive_t *, struct ide_cmd *);
1370void ide_dma_host_set(ide_drive_t *, int);
1371int ide_dma_setup(ide_drive_t *, struct ide_cmd *);
1372extern void ide_dma_start(ide_drive_t *);
1373int ide_dma_end(ide_drive_t *);
1374int ide_dma_test_irq(ide_drive_t *);
1375int ide_dma_sff_timer_expiry(ide_drive_t *);
1376u8 ide_dma_sff_read_status(ide_hwif_t *);
1377extern const struct ide_dma_ops sff_dma_ops;
1378#else
1379static inline int config_drive_for_dma(ide_drive_t *drive) { return 0; }
1380#endif
1381
1382void ide_dma_lost_irq(ide_drive_t *);
1383ide_startstop_t ide_dma_timeout_retry(ide_drive_t *, int);
1384
1385#else
1386static inline u8 ide_find_dma_mode(ide_drive_t *drive, u8 speed) { return 0; }
1387static inline u8 ide_max_dma_mode(ide_drive_t *drive) { return 0; }
1388static inline void ide_dma_off_quietly(ide_drive_t *drive) { ; }
1389static inline void ide_dma_off(ide_drive_t *drive) { ; }
1390static inline void ide_dma_on(ide_drive_t *drive) { ; }
1391static inline void ide_dma_verbose(ide_drive_t *drive) { ; }
1392static inline int ide_set_dma(ide_drive_t *drive) { return 1; }
1393static inline void ide_check_dma_crc(ide_drive_t *drive) { ; }
1394static inline ide_startstop_t ide_dma_intr(ide_drive_t *drive) { return ide_stopped; }
1395static inline ide_startstop_t ide_dma_timeout_retry(ide_drive_t *drive, int error) { return ide_stopped; }
1396static inline void ide_release_dma_engine(ide_hwif_t *hwif) { ; }
1397static inline int ide_dma_prepare(ide_drive_t *drive,
1398 struct ide_cmd *cmd) { return 1; }
1399static inline void ide_dma_unmap_sg(ide_drive_t *drive,
1400 struct ide_cmd *cmd) { ; }
1401#endif
1402
1403#ifdef CONFIG_BLK_DEV_IDEACPI
1404int ide_acpi_init(void);
1405bool ide_port_acpi(ide_hwif_t *hwif);
1406extern int ide_acpi_exec_tfs(ide_drive_t *drive);
1407extern void ide_acpi_get_timing(ide_hwif_t *hwif);
1408extern void ide_acpi_push_timing(ide_hwif_t *hwif);
1409void ide_acpi_init_port(ide_hwif_t *);
1410void ide_acpi_port_init_devices(ide_hwif_t *);
1411extern void ide_acpi_set_state(ide_hwif_t *hwif, int on);
1412#else
1413static inline int ide_acpi_init(void) { return 0; }
1414static inline bool ide_port_acpi(ide_hwif_t *hwif) { return 0; }
1415static inline int ide_acpi_exec_tfs(ide_drive_t *drive) { return 0; }
1416static inline void ide_acpi_get_timing(ide_hwif_t *hwif) { ; }
1417static inline void ide_acpi_push_timing(ide_hwif_t *hwif) { ; }
1418static inline void ide_acpi_init_port(ide_hwif_t *hwif) { ; }
1419static inline void ide_acpi_port_init_devices(ide_hwif_t *hwif) { ; }
1420static inline void ide_acpi_set_state(ide_hwif_t *hwif, int on) {}
1421#endif
1422
1423void ide_register_region(struct gendisk *);
1424void ide_unregister_region(struct gendisk *);
1425
1426void ide_check_nien_quirk_list(ide_drive_t *);
1427void ide_undecoded_slave(ide_drive_t *);
1428
1429void ide_port_apply_params(ide_hwif_t *);
1430int ide_sysfs_register_port(ide_hwif_t *);
1431
1432struct ide_host *ide_host_alloc(const struct ide_port_info *, struct ide_hw **,
1433 unsigned int);
1434void ide_host_free(struct ide_host *);
1435int ide_host_register(struct ide_host *, const struct ide_port_info *,
1436 struct ide_hw **);
1437int ide_host_add(const struct ide_port_info *, struct ide_hw **, unsigned int,
1438 struct ide_host **);
1439void ide_host_remove(struct ide_host *);
1440int ide_legacy_device_add(const struct ide_port_info *, unsigned long);
1441void ide_port_unregister_devices(ide_hwif_t *);
1442void ide_port_scan(ide_hwif_t *);
1443
1444static inline void *ide_get_hwifdata (ide_hwif_t * hwif)
1445{
1446 return hwif->hwif_data;
1447}
1448
1449static inline void ide_set_hwifdata (ide_hwif_t * hwif, void *data)
1450{
1451 hwif->hwif_data = data;
1452}
1453
1454extern void ide_toggle_bounce(ide_drive_t *drive, int on);
1455
1456u64 ide_get_lba_addr(struct ide_cmd *, int);
1457u8 ide_dump_status(ide_drive_t *, const char *, u8);
1458
1459struct ide_timing {
1460 u8 mode;
1461 u8 setup;
1462 u16 act8b;
1463 u16 rec8b;
1464 u16 cyc8b;
1465 u16 active;
1466 u16 recover;
1467 u16 cycle;
1468 u16 udma;
1469};
1470
1471enum {
1472 IDE_TIMING_SETUP = (1 << 0),
1473 IDE_TIMING_ACT8B = (1 << 1),
1474 IDE_TIMING_REC8B = (1 << 2),
1475 IDE_TIMING_CYC8B = (1 << 3),
1476 IDE_TIMING_8BIT = IDE_TIMING_ACT8B | IDE_TIMING_REC8B |
1477 IDE_TIMING_CYC8B,
1478 IDE_TIMING_ACTIVE = (1 << 4),
1479 IDE_TIMING_RECOVER = (1 << 5),
1480 IDE_TIMING_CYCLE = (1 << 6),
1481 IDE_TIMING_UDMA = (1 << 7),
1482 IDE_TIMING_ALL = IDE_TIMING_SETUP | IDE_TIMING_8BIT |
1483 IDE_TIMING_ACTIVE | IDE_TIMING_RECOVER |
1484 IDE_TIMING_CYCLE | IDE_TIMING_UDMA,
1485};
1486
1487struct ide_timing *ide_timing_find_mode(u8);
1488u16 ide_pio_cycle_time(ide_drive_t *, u8);
1489void ide_timing_merge(struct ide_timing *, struct ide_timing *,
1490 struct ide_timing *, unsigned int);
1491int ide_timing_compute(ide_drive_t *, u8, struct ide_timing *, int, int);
1492
1493#ifdef CONFIG_IDE_XFER_MODE
1494int ide_scan_pio_blacklist(char *);
1495const char *ide_xfer_verbose(u8);
1496int ide_pio_need_iordy(ide_drive_t *, const u8);
1497int ide_set_pio_mode(ide_drive_t *, u8);
1498int ide_set_dma_mode(ide_drive_t *, u8);
1499void ide_set_pio(ide_drive_t *, u8);
1500int ide_set_xfer_rate(ide_drive_t *, u8);
1501#else
1502static inline void ide_set_pio(ide_drive_t *drive, u8 pio) { ; }
1503static inline int ide_set_xfer_rate(ide_drive_t *drive, u8 rate) { return -1; }
1504#endif
1505
1506static inline void ide_set_max_pio(ide_drive_t *drive)
1507{
1508 ide_set_pio(drive, 255);
1509}
1510
1511char *ide_media_string(ide_drive_t *);
1512
1513extern const struct attribute_group *ide_dev_groups[];
1514extern struct bus_type ide_bus_type;
1515extern struct class *ide_port_class;
1516
1517static inline void ide_dump_identify(u8 *id)
1518{
1519 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_NONE, 16, 2, id, 512, 0);
1520}
1521
1522static inline int hwif_to_node(ide_hwif_t *hwif)
1523{
1524 return hwif->dev ? dev_to_node(hwif->dev) : -1;
1525}
1526
1527static inline ide_drive_t *ide_get_pair_dev(ide_drive_t *drive)
1528{
1529 ide_drive_t *peer = drive->hwif->devices[(drive->dn ^ 1) & 1];
1530
1531 return (peer->dev_flags & IDE_DFLAG_PRESENT) ? peer : NULL;
1532}
1533
1534static inline void *ide_get_drivedata(ide_drive_t *drive)
1535{
1536 return drive->drive_data;
1537}
1538
1539static inline void ide_set_drivedata(ide_drive_t *drive, void *data)
1540{
1541 drive->drive_data = data;
1542}
1543
1544#define ide_port_for_each_dev(i, dev, port) \
1545 for ((i) = 0; ((dev) = (port)->devices[i]) || (i) < MAX_DRIVES; (i)++)
1546
1547#define ide_port_for_each_present_dev(i, dev, port) \
1548 for ((i) = 0; ((dev) = (port)->devices[i]) || (i) < MAX_DRIVES; (i)++) \
1549 if ((dev)->dev_flags & IDE_DFLAG_PRESENT)
1550
1551#define ide_host_for_each_port(i, port, host) \
1552 for ((i) = 0; ((port) = (host)->ports[i]) || (i) < MAX_HOST_PORTS; (i)++)
1553
1554#endif
1555