ide.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:40k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _IDE_H
  2. #define _IDE_H
  3. /*
  4.  *  linux/include/linux/ide.h
  5.  *
  6.  *  Copyright (C) 1994-1998  Linus Torvalds & authors
  7.  */
  8. #include <linux/config.h>
  9. #include <linux/init.h>
  10. #include <linux/ioport.h>
  11. #include <linux/hdreg.h>
  12. #include <linux/hdsmart.h>
  13. #include <linux/blkdev.h>
  14. #include <linux/proc_fs.h>
  15. #include <linux/devfs_fs_kernel.h>
  16. #include <asm/hdreg.h>
  17. /*
  18.  * This is the multiple IDE interface driver, as evolved from hd.c.
  19.  * It supports up to four IDE interfaces, on one or more IRQs (usually 14 & 15).
  20.  * There can be up to two drives per interface, as per the ATA-2 spec.
  21.  *
  22.  * Primary i/f:    ide0: major=3;  (hda)         minor=0; (hdb)         minor=64
  23.  * Secondary i/f:  ide1: major=22; (hdc or hd1a) minor=0; (hdd or hd1b) minor=64
  24.  * Tertiary i/f:   ide2: major=33; (hde)         minor=0; (hdf)         minor=64
  25.  * Quaternary i/f: ide3: major=34; (hdg)         minor=0; (hdh)         minor=64
  26.  */
  27. /******************************************************************************
  28.  * IDE driver configuration options (play with these as desired):
  29.  *
  30.  * REALLY_SLOW_IO can be defined in ide.c and ide-cd.c, if necessary
  31.  */
  32. #undef REALLY_FAST_IO /* define if ide ports are perfect */
  33. #define INITIAL_MULT_COUNT 0 /* off=0; on=2,4,8,16,32, etc.. */
  34. #ifndef SUPPORT_SLOW_DATA_PORTS /* 1 to support slow data ports */
  35. #define SUPPORT_SLOW_DATA_PORTS 1 /* 0 to reduce kernel size */
  36. #endif
  37. #ifndef SUPPORT_VLB_SYNC /* 1 to support weird 32-bit chips */
  38. #define SUPPORT_VLB_SYNC 1 /* 0 to reduce kernel size */
  39. #endif
  40. #ifndef DISK_RECOVERY_TIME /* off=0; on=access_delay_time */
  41. #define DISK_RECOVERY_TIME 0 /*  for hardware that needs it */
  42. #endif
  43. #ifndef OK_TO_RESET_CONTROLLER /* 1 needed for good error recovery */
  44. #define OK_TO_RESET_CONTROLLER 1 /* 0 for use with AH2372A/B interface */
  45. #endif
  46. #ifndef FANCY_STATUS_DUMPS /* 1 for human-readable drive errors */
  47. #define FANCY_STATUS_DUMPS 1 /* 0 to reduce kernel size */
  48. #endif
  49. #ifdef CONFIG_BLK_DEV_CMD640
  50. #if 0 /* change to 1 when debugging cmd640 problems */
  51. void cmd640_dump_regs (void);
  52. #define CMD640_DUMP_REGS cmd640_dump_regs() /* for debugging cmd640 chipset */
  53. #endif
  54. #endif  /* CONFIG_BLK_DEV_CMD640 */
  55. #ifndef DISABLE_IRQ_NOSYNC
  56. #define DISABLE_IRQ_NOSYNC 0
  57. #endif
  58. /*
  59.  * IDE_DRIVE_CMD is used to implement many features of the hdparm utility
  60.  */
  61. #define IDE_DRIVE_CMD 99 /* (magic) undef to reduce kernel size*/
  62. #define IDE_DRIVE_TASK 98
  63. /*
  64.  * IDE_DRIVE_TASKFILE is used to implement many features needed for raw tasks
  65.  */
  66. #define IDE_DRIVE_TASKFILE 97
  67. /*
  68.  *  "No user-serviceable parts" beyond this point  :)
  69.  *****************************************************************************/
  70. typedef unsigned char byte; /* used everywhere */
  71. /*
  72.  * Probably not wise to fiddle with these
  73.  */
  74. #define ERROR_MAX 8 /* Max read/write errors per sector */
  75. #define ERROR_RESET 3 /* Reset controller every 4th retry */
  76. #define ERROR_RECAL 1 /* Recalibrate every 2nd retry */
  77. /*
  78.  * state flags
  79.  */
  80. #define DMA_PIO_RETRY 1 /* retrying in PIO */
  81. /*
  82.  * Ensure that various configuration flags have compatible settings
  83.  */
  84. #ifdef REALLY_SLOW_IO
  85. #undef REALLY_FAST_IO
  86. #endif
  87. #define HWIF(drive) ((ide_hwif_t *)((drive)->hwif))
  88. #define HWGROUP(drive) ((ide_hwgroup_t *)(HWIF(drive)->hwgroup))
  89. /*
  90.  * Definitions for accessing IDE controller registers
  91.  */
  92. #define IDE_NR_PORTS (10)
  93. #define IDE_DATA_OFFSET (0)
  94. #define IDE_ERROR_OFFSET (1)
  95. #define IDE_NSECTOR_OFFSET (2)
  96. #define IDE_SECTOR_OFFSET (3)
  97. #define IDE_LCYL_OFFSET (4)
  98. #define IDE_HCYL_OFFSET (5)
  99. #define IDE_SELECT_OFFSET (6)
  100. #define IDE_STATUS_OFFSET (7)
  101. #define IDE_CONTROL_OFFSET (8)
  102. #define IDE_IRQ_OFFSET (9)
  103. #define IDE_FEATURE_OFFSET IDE_ERROR_OFFSET
  104. #define IDE_COMMAND_OFFSET IDE_STATUS_OFFSET
  105. #define IDE_DATA_OFFSET_HOB (0)
  106. #define IDE_ERROR_OFFSET_HOB (1)
  107. #define IDE_NSECTOR_OFFSET_HOB (2)
  108. #define IDE_SECTOR_OFFSET_HOB (3)
  109. #define IDE_LCYL_OFFSET_HOB (4)
  110. #define IDE_HCYL_OFFSET_HOB (5)
  111. #define IDE_SELECT_OFFSET_HOB (6)
  112. #define IDE_CONTROL_OFFSET_HOB (7)
  113. #define IDE_FEATURE_OFFSET_HOB IDE_ERROR_OFFSET_HOB
  114. #define IDE_DATA_REG (HWIF(drive)->io_ports[IDE_DATA_OFFSET])
  115. #define IDE_ERROR_REG (HWIF(drive)->io_ports[IDE_ERROR_OFFSET])
  116. #define IDE_NSECTOR_REG (HWIF(drive)->io_ports[IDE_NSECTOR_OFFSET])
  117. #define IDE_SECTOR_REG (HWIF(drive)->io_ports[IDE_SECTOR_OFFSET])
  118. #define IDE_LCYL_REG (HWIF(drive)->io_ports[IDE_LCYL_OFFSET])
  119. #define IDE_HCYL_REG (HWIF(drive)->io_ports[IDE_HCYL_OFFSET])
  120. #define IDE_SELECT_REG (HWIF(drive)->io_ports[IDE_SELECT_OFFSET])
  121. #define IDE_STATUS_REG (HWIF(drive)->io_ports[IDE_STATUS_OFFSET])
  122. #define IDE_CONTROL_REG (HWIF(drive)->io_ports[IDE_CONTROL_OFFSET])
  123. #define IDE_IRQ_REG (HWIF(drive)->io_ports[IDE_IRQ_OFFSET])
  124. #define IDE_DATA_REG_HOB (HWIF(drive)->io_ports[IDE_DATA_OFFSET])
  125. #define IDE_ERROR_REG_HOB (HWIF(drive)->io_ports[IDE_ERROR_OFFSET])
  126. #define IDE_NSECTOR_REG_HOB (HWIF(drive)->io_ports[IDE_NSECTOR_OFFSET])
  127. #define IDE_SECTOR_REG_HOB (HWIF(drive)->io_ports[IDE_SECTOR_OFFSET])
  128. #define IDE_LCYL_REG_HOB (HWIF(drive)->io_ports[IDE_LCYL_OFFSET])
  129. #define IDE_HCYL_REG_HOB (HWIF(drive)->io_ports[IDE_HCYL_OFFSET])
  130. #define IDE_SELECT_REG_HOB (HWIF(drive)->io_ports[IDE_SELECT_OFFSET])
  131. #define IDE_STATUS_REG_HOB (HWIF(drive)->io_ports[IDE_STATUS_OFFSET])
  132. #define IDE_CONTROL_REG_HOB (HWIF(drive)->io_ports[IDE_CONTROL_OFFSET])
  133. #define IDE_FEATURE_REG IDE_ERROR_REG
  134. #define IDE_COMMAND_REG IDE_STATUS_REG
  135. #define IDE_ALTSTATUS_REG IDE_CONTROL_REG
  136. #define IDE_IREASON_REG IDE_NSECTOR_REG
  137. #define IDE_BCOUNTL_REG IDE_LCYL_REG
  138. #define IDE_BCOUNTH_REG IDE_HCYL_REG
  139. #define GET_ERR() IN_BYTE(IDE_ERROR_REG)
  140. #define GET_STAT() IN_BYTE(IDE_STATUS_REG)
  141. #define GET_ALTSTAT() IN_BYTE(IDE_CONTROL_REG)
  142. #define OK_STAT(stat,good,bad) (((stat)&((good)|(bad)))==(good))
  143. #define BAD_R_STAT (BUSY_STAT   | ERR_STAT)
  144. #define BAD_W_STAT (BAD_R_STAT  | WRERR_STAT)
  145. #define BAD_STAT (BAD_R_STAT  | DRQ_STAT)
  146. #define DRIVE_READY (READY_STAT  | SEEK_STAT)
  147. #define DATA_READY (DRQ_STAT)
  148. /*
  149.  * Some more useful definitions
  150.  */
  151. #define IDE_MAJOR_NAME "hd" /* the same for all i/f; see also genhd.c */
  152. #define MAJOR_NAME IDE_MAJOR_NAME
  153. #define PARTN_BITS 6 /* number of minor dev bits for partitions */
  154. #define PARTN_MASK ((1<<PARTN_BITS)-1) /* a useful bit mask */
  155. #define MAX_DRIVES 2 /* per interface; 2 assumed by lots of code */
  156. #define CASCADE_DRIVES 8 /* per interface; 8|2 assumed by lots of code */
  157. #define SECTOR_SIZE 512
  158. #define SECTOR_WORDS (SECTOR_SIZE / 4) /* number of 32bit words per sector */
  159. #define IDE_LARGE_SEEK(b1,b2,t) (((b1) > (b2) + (t)) || ((b2) > (b1) + (t)))
  160. #define IDE_MIN(a,b) ((a)<(b) ? (a):(b))
  161. #define IDE_MAX(a,b) ((a)>(b) ? (a):(b))
  162. #ifndef SPLIT_WORD
  163. #  define SPLIT_WORD(W,HB,LB) ((HB)=(W>>8), (LB)=(W-((W>>8)<<8)))
  164. #endif
  165. #ifndef MAKE_WORD
  166. #  define MAKE_WORD(W,HB,LB) ((W)=((HB<<8)+LB))
  167. #endif
  168. /*
  169.  * Timeouts for various operations:
  170.  */
  171. #define WAIT_DRQ (5*HZ/100) /* 50msec - spec allows up to 20ms */
  172. #if defined(CONFIG_APM) || defined(CONFIG_APM_MODULE)
  173. #define WAIT_READY (5*HZ) /* 5sec - some laptops are very slow */
  174. #else
  175. #define WAIT_READY (3*HZ/100) /* 30msec - should be instantaneous */
  176. #endif /* CONFIG_APM || CONFIG_APM_MODULE */
  177. #define WAIT_PIDENTIFY (10*HZ) /* 10sec  - should be less than 3ms (?), if all ATAPI CD is closed at boot */
  178. #define WAIT_WORSTCASE (30*HZ) /* 30sec  - worst case when spinning up */
  179. #define WAIT_CMD (10*HZ) /* 10sec  - maximum wait for an IRQ to happen */
  180. #define WAIT_MIN_SLEEP (2*HZ/100) /* 20msec - minimum sleep time */
  181. #define SELECT_DRIVE(hwif,drive)
  182. {
  183. if (hwif->selectproc)
  184. hwif->selectproc(drive);
  185. OUT_BYTE((drive)->select.all, hwif->io_ports[IDE_SELECT_OFFSET]); 
  186. }
  187. #define SELECT_INTERRUPT(hwif,drive)
  188. {
  189. if (hwif->intrproc)
  190. hwif->intrproc(drive);
  191. else
  192. OUT_BYTE((drive)->ctl|2, hwif->io_ports[IDE_CONTROL_OFFSET]);
  193. }
  194. #define SELECT_MASK(hwif,drive,mask)
  195. {
  196. if (hwif->maskproc)
  197. hwif->maskproc(drive,mask);
  198. }
  199. #define SELECT_READ_WRITE(hwif,drive,func)
  200. {
  201. if (hwif->rwproc)
  202. hwif->rwproc(drive,func);
  203. }
  204. #define QUIRK_LIST(hwif,drive)
  205. {
  206. if (hwif->quirkproc)
  207. (drive)->quirk_list = hwif->quirkproc(drive);
  208. }
  209. #define HOST(hwif,chipset)
  210. {
  211. return ((hwif)->chipset == chipset) ? 1 : 0;
  212. }
  213. #define IDE_DEBUG(lineno) 
  214. printk("%s,%s,line=%dn", __FILE__, __FUNCTION__, (lineno))
  215. /*
  216.  * Check for an interrupt and acknowledge the interrupt status
  217.  */
  218. struct hwif_s;
  219. typedef int (ide_ack_intr_t)(struct hwif_s *);
  220. #ifndef NO_DMA
  221. #define NO_DMA  255
  222. #endif
  223. /*
  224.  * hwif_chipset_t is used to keep track of the specific hardware
  225.  * chipset used by each IDE interface, if known.
  226.  */
  227. typedef enum { ide_unknown, ide_generic, ide_pci,
  228. ide_cmd640, ide_dtc2278, ide_ali14xx,
  229. ide_qd65xx, ide_umc8672, ide_ht6560b,
  230. ide_pdc4030, ide_rz1000, ide_trm290,
  231. ide_cmd646, ide_cy82c693, ide_4drives,
  232. ide_pmac, ide_etrax100
  233. } hwif_chipset_t;
  234. /*
  235.  * Structure to hold all information about the location of this port
  236.  */
  237. typedef struct hw_regs_s {
  238. ide_ioreg_t io_ports[IDE_NR_PORTS]; /* task file registers */
  239. int irq; /* our irq number */
  240. int dma; /* our dma entry */
  241. ide_ack_intr_t *ack_intr; /* acknowledge interrupt */
  242. void *priv; /* interface specific data */
  243. hwif_chipset_t  chipset;
  244. } hw_regs_t;
  245. /*
  246.  * Register new hardware with ide
  247.  */
  248. int ide_register_hw(hw_regs_t *hw, struct hwif_s **hwifp);
  249. /*
  250.  * Set up hw_regs_t structure before calling ide_register_hw (optional)
  251.  */
  252. void ide_setup_ports( hw_regs_t *hw,
  253. ide_ioreg_t base,
  254. int *offsets,
  255. ide_ioreg_t ctrl,
  256. ide_ioreg_t intr,
  257. ide_ack_intr_t *ack_intr,
  258. int irq);
  259. #include <asm/ide.h>
  260. /*
  261.  * If the arch-dependant ide.h did not declare/define any OUT_BYTE
  262.  * or IN_BYTE functions, we make some defaults here.
  263.  */
  264. #ifndef HAVE_ARCH_OUT_BYTE
  265. #ifdef REALLY_FAST_IO
  266. #define OUT_BYTE(b,p)          outb((b),(p))
  267. #define OUT_WORD(w,p)          outw((w),(p))
  268. #else
  269. #define OUT_BYTE(b,p)          outb_p((b),(p))
  270. #define OUT_WORD(w,p)          outw_p((w),(p))
  271. #endif
  272. #endif
  273. #ifndef HAVE_ARCH_IN_BYTE
  274. #ifdef REALLY_FAST_IO
  275. #define IN_BYTE(p)             (byte)inb(p)
  276. #define IN_WORD(p)             (short)inw(p)
  277. #else
  278. #define IN_BYTE(p)             (byte)inb_p(p)
  279. #define IN_WORD(p)             (short)inw_p(p)
  280. #endif
  281. #endif
  282. /*
  283.  * Now for the data we need to maintain per-drive:  ide_drive_t
  284.  */
  285. #define ide_scsi 0x21
  286. #define ide_disk 0x20
  287. #define ide_optical 0x7
  288. #define ide_cdrom 0x5
  289. #define ide_tape 0x1
  290. #define ide_floppy 0x0
  291. typedef union {
  292. unsigned all : 8; /* all of the bits together */
  293. struct {
  294. unsigned set_geometry : 1; /* respecify drive geometry */
  295. unsigned recalibrate : 1; /* seek to cyl 0      */
  296. unsigned set_multmode : 1; /* set multmode count */
  297. unsigned set_tune : 1; /* tune interface for drive */
  298. unsigned reserved : 4; /* unused */
  299. } b;
  300. } special_t;
  301. typedef struct ide_drive_s {
  302. request_queue_t  queue; /* request queue */
  303. struct ide_drive_s  *next; /* circular list of hwgroup drives */
  304. unsigned long sleep; /* sleep until this time */
  305. unsigned long service_start; /* time we started last request */
  306. unsigned long service_time; /* service time of last request */
  307. unsigned long timeout; /* max time to wait for irq */
  308. special_t special; /* special action flags */
  309. byte     keep_settings; /* restore settings after drive reset */
  310. byte     using_dma; /* disk is using dma for read/write */
  311. byte  retry_pio; /* retrying dma capable host in pio */
  312. byte  state; /* retry state */
  313. byte     waiting_for_dma; /* dma currently in progress */
  314. byte     unmask; /* flag: okay to unmask other irqs */
  315. byte     slow; /* flag: slow data port */
  316. byte     bswap; /* flag: byte swap data */
  317. byte     dsc_overlap; /* flag: DSC overlap */
  318. byte     nice1; /* flag: give potential excess bandwidth */
  319. unsigned present : 1; /* drive is physically present */
  320. unsigned noprobe  : 1; /* from:  hdx=noprobe */
  321. unsigned busy : 1; /* currently doing revalidate_disk() */
  322. unsigned removable : 1; /* 1 if need to do check_media_change */
  323. unsigned forced_geom : 1; /* 1 if hdx=c,h,s was given at boot */
  324. unsigned no_unmask : 1; /* disallow setting unmask bit */
  325. unsigned no_io_32bit : 1; /* disallow enabling 32bit I/O */
  326. unsigned nobios : 1; /* flag: do not probe bios for drive */
  327. unsigned revalidate : 1; /* request revalidation */
  328. unsigned atapi_overlap : 1; /* flag: ATAPI overlap (not supported) */
  329. unsigned nice0 : 1; /* flag: give obvious excess bandwidth */
  330. unsigned nice2 : 1; /* flag: give a share in our own bandwidth */
  331. unsigned doorlocking : 1; /* flag: for removable only: door lock/unlock works */
  332. unsigned autotune : 2; /* 1=autotune, 2=noautotune, 0=default */
  333. unsigned remap_0_to_1 : 2; /* 0=remap if ezdrive, 1=remap, 2=noremap */
  334. unsigned ata_flash : 1; /* 1=present, 0=default */
  335. unsigned addressing; /* : 2; 0=28-bit, 1=48-bit, 2=64-bit */
  336. byte scsi; /* 0=default, 1=skip current ide-subdriver for ide-scsi emulation */
  337. byte media; /* disk, cdrom, tape, floppy, ... */
  338. select_t select; /* basic drive/head select reg value */
  339. byte ctl; /* "normal" value for IDE_CONTROL_REG */
  340. byte ready_stat; /* min status value for drive ready */
  341. byte mult_count; /* current multiple sector setting */
  342. byte  mult_req; /* requested multiple sector setting */
  343. byte  tune_req; /* requested drive tuning setting */
  344. byte io_32bit; /* 0=16-bit, 1=32-bit, 2/3=32bit+sync */
  345. byte bad_wstat; /* used for ignoring WRERR_STAT */
  346. byte nowerr; /* used for ignoring WRERR_STAT */
  347. byte sect0; /* offset of first sector for DM6:DDO */
  348. unsigned int usage; /* current "open()" count for drive */
  349. byte  head; /* "real" number of heads */
  350. byte sect; /* "real" sectors per track */
  351. byte bios_head; /* BIOS/fdisk/LILO number of heads */
  352. byte bios_sect; /* BIOS/fdisk/LILO sectors per track */
  353. unsigned int bios_cyl; /* BIOS/fdisk/LILO number of cyls */
  354. unsigned int cyl; /* "real" number of cyls */
  355. unsigned long capacity; /* total number of sectors */
  356. unsigned long long capacity48; /* total number of sectors */
  357. unsigned int drive_data; /* for use by tuneproc/selectproc as needed */
  358. void   *hwif; /* actually (ide_hwif_t *) */
  359. wait_queue_head_t wqueue; /* used to wait for drive in open() */
  360. struct hd_driveid *id; /* drive model identification info */
  361. struct hd_struct  *part; /* drive partition table */
  362. char name[4]; /* drive name, such as "hda" */
  363. void  *driver; /* (ide_driver_t *) */
  364. void *driver_data; /* extra driver data */
  365. devfs_handle_t de; /* directory for device */
  366. struct proc_dir_entry *proc; /* /proc/ide/ directory entry */
  367. void *settings; /* /proc/ide/ drive settings */
  368. char driver_req[10]; /* requests specific driver */
  369. int last_lun; /* last logical unit */
  370. int forced_lun; /* if hdxlun was given at boot */
  371. int lun; /* logical unit */
  372. int crc_count; /* crc counter to reduce drive speed */
  373. byte quirk_list; /* drive is considered quirky if set for a specific host */
  374. byte suspend_reset; /* drive suspend mode flag, soft-reset recovers */
  375. byte init_speed; /* transfer rate set at boot */
  376. byte current_speed; /* current transfer rate set */
  377. byte dn; /* now wide spread use */
  378. byte wcache; /* status of write cache */
  379. byte acoustic; /* acoustic management */
  380. unsigned int failures; /* current failure count */
  381. unsigned int max_failures; /* maximum allowed failure count */
  382. } ide_drive_t;
  383. /*
  384.  * An ide_dmaproc_t() initiates/aborts DMA read/write operations on a drive.
  385.  *
  386.  * The caller is assumed to have selected the drive and programmed the drive's
  387.  * sector address using CHS or LBA.  All that remains is to prepare for DMA
  388.  * and then issue the actual read/write DMA/PIO command to the drive.
  389.  *
  390.  * Returns 0 if all went well.
  391.  * Returns 1 if DMA read/write could not be started, in which case the caller
  392.  * should either try again later, or revert to PIO for the current request.
  393.  */
  394. typedef enum { ide_dma_read, ide_dma_write, ide_dma_begin,
  395. ide_dma_end, ide_dma_check, ide_dma_on,
  396. ide_dma_off, ide_dma_off_quietly, ide_dma_test_irq,
  397. ide_dma_bad_drive, ide_dma_good_drive,
  398. ide_dma_verbose, ide_dma_retune,
  399. ide_dma_lostirq, ide_dma_timeout
  400. } ide_dma_action_t;
  401. typedef int (ide_dmaproc_t)(ide_dma_action_t, ide_drive_t *);
  402. /*
  403.  * An ide_ideproc_t() performs CPU-polled transfers to/from a drive.
  404.  * Arguments are: the drive, the buffer pointer, and the length (in bytes or
  405.  * words depending on if it's an IDE or ATAPI call).
  406.  *
  407.  * If it is not defined for a controller, standard-code is used from ide.c.
  408.  *
  409.  * Controllers which are not memory-mapped in the standard way need to 
  410.  * override that mechanism using this function to work.
  411.  *
  412.  */
  413. typedef enum { ideproc_ide_input_data,    ideproc_ide_output_data,
  414.        ideproc_atapi_input_bytes, ideproc_atapi_output_bytes
  415. } ide_ide_action_t;
  416. typedef void (ide_ideproc_t)(ide_ide_action_t, ide_drive_t *, void *, unsigned int);
  417. /*
  418.  * An ide_tuneproc_t() is used to set the speed of an IDE interface
  419.  * to a particular PIO mode.  The "byte" parameter is used
  420.  * to select the PIO mode by number (0,1,2,3,4,5), and a value of 255
  421.  * indicates that the interface driver should "auto-tune" the PIO mode
  422.  * according to the drive capabilities in drive->id;
  423.  *
  424.  * Not all interface types support tuning, and not all of those
  425.  * support all possible PIO settings.  They may silently ignore
  426.  * or round values as they see fit.
  427.  */
  428. typedef void (ide_tuneproc_t) (ide_drive_t *, byte);
  429. typedef int (ide_speedproc_t) (ide_drive_t *, byte);
  430. /*
  431.  * This is used to provide support for strange interfaces
  432.  */
  433. typedef void (ide_selectproc_t) (ide_drive_t *);
  434. typedef void (ide_resetproc_t) (ide_drive_t *);
  435. typedef int (ide_quirkproc_t) (ide_drive_t *);
  436. typedef void (ide_intrproc_t) (ide_drive_t *);
  437. typedef void (ide_maskproc_t) (ide_drive_t *, int);
  438. typedef void (ide_rw_proc_t) (ide_drive_t *, ide_dma_action_t);
  439. /*
  440.  * ide soft-power support
  441.  */
  442. typedef int (ide_busproc_t) (ide_drive_t *, int);
  443. #define IDE_CHIPSET_PCI_MASK
  444.     ((1<<ide_pci)|(1<<ide_cmd646)|(1<<ide_ali14xx))
  445. #define IDE_CHIPSET_IS_PCI(c) ((IDE_CHIPSET_PCI_MASK >> (c)) & 1)
  446. #ifdef CONFIG_BLK_DEV_IDEPCI
  447. typedef struct ide_pci_devid_s {
  448. unsigned short vid;
  449. unsigned short did;
  450. } ide_pci_devid_t;
  451. #define IDE_PCI_DEVID_NULL ((ide_pci_devid_t){0,0})
  452. #define IDE_PCI_DEVID_EQ(a,b) (a.vid == b.vid && a.did == b.did)
  453. #endif /* CONFIG_BLK_DEV_IDEPCI */
  454. typedef struct hwif_s {
  455. struct hwif_s *next; /* for linked-list in ide_hwgroup_t */
  456. void *hwgroup; /* actually (ide_hwgroup_t *) */
  457. ide_ioreg_t io_ports[IDE_NR_PORTS]; /* task file registers */
  458. hw_regs_t hw; /* Hardware info */
  459. ide_drive_t drives[MAX_DRIVES]; /* drive info */
  460. struct gendisk *gd; /* gendisk structure */
  461. ide_tuneproc_t *tuneproc; /* routine to tune PIO mode for drives */
  462. ide_speedproc_t *speedproc; /* routine to retune DMA modes for drives */
  463. ide_selectproc_t *selectproc; /* tweaks hardware to select drive */
  464. ide_resetproc_t *resetproc; /* routine to reset controller after a disk reset */
  465. ide_intrproc_t *intrproc; /* special interrupt handling for shared pci interrupts */
  466. ide_maskproc_t *maskproc; /* special host masking for drive selection */
  467. ide_quirkproc_t *quirkproc; /* check host's drive quirk list */
  468. ide_rw_proc_t *rwproc; /* adjust timing based upon rq->cmd direction */
  469. ide_ideproc_t   *ideproc;       /* CPU-polled transfer routine */
  470. ide_dmaproc_t *dmaproc; /* dma read/write/abort routine */
  471. unsigned int *dmatable_cpu; /* dma physical region descriptor table (cpu view) */
  472. dma_addr_t dmatable_dma; /* dma physical region descriptor table (dma view) */
  473. struct scatterlist *sg_table; /* Scatter-gather list used to build the above */
  474. int sg_nents; /* Current number of entries in it */
  475. int sg_dma_direction; /* dma transfer direction */
  476. int sg_dma_active; /* is it in use */
  477. struct hwif_s *mate; /* other hwif from same PCI chip */
  478. unsigned long dma_base; /* base addr for dma ports */
  479. unsigned dma_extra; /* extra addr for dma ports */
  480. unsigned long config_data; /* for use by chipset-specific code */
  481. unsigned long select_data; /* for use by chipset-specific code */
  482. struct proc_dir_entry *proc; /* /proc/ide/ directory entry */
  483. int irq; /* our irq number */
  484. byte major; /* our major number */
  485. char  name[6]; /* name of interface, eg. "ide0" */
  486. byte index; /* 0 for ide0; 1 for ide1; ... */
  487. hwif_chipset_t chipset; /* sub-module for tuning.. */
  488. unsigned noprobe    : 1; /* don't probe for this interface */
  489. unsigned present    : 1; /* this interface exists */
  490. unsigned serialized : 1; /* serialized operation with mate hwif */
  491. unsigned sharing_irq: 1; /* 1 = sharing irq with another hwif */
  492. unsigned reset      : 1; /* reset after probe */
  493. unsigned autodma    : 1; /* automatically try to enable DMA at boot */
  494. unsigned udma_four  : 1; /* 1=ATA-66 capable, 0=default */
  495. unsigned no_highio  : 1; /* don't trust pci dma mask, bounce */
  496. byte channel; /* for dual-port chips: 0=primary, 1=secondary */
  497. #ifdef CONFIG_BLK_DEV_IDEPCI
  498. struct pci_dev *pci_dev; /* for pci chipsets */
  499. ide_pci_devid_t pci_devid; /* for pci chipsets: {VID,DID} */
  500. #endif /* CONFIG_BLK_DEV_IDEPCI */
  501. #if (DISK_RECOVERY_TIME > 0)
  502. unsigned long last_time; /* time when previous rq was done */
  503. #endif
  504. byte straight8; /* Alan's straight 8 check */
  505. void *hwif_data; /* extra hwif data */
  506. ide_busproc_t *busproc; /* driver soft-power interface */
  507. byte bus_state; /* power state of the IDE bus */
  508. } ide_hwif_t;
  509. /*
  510.  * Status returned from various ide_ functions
  511.  */
  512. typedef enum {
  513. ide_stopped, /* no drive operation was started */
  514. ide_started /* a drive operation was started, and a handler was set */
  515. } ide_startstop_t;
  516. /*
  517.  *  internal ide interrupt handler type
  518.  */
  519. typedef ide_startstop_t (ide_pre_handler_t)(ide_drive_t *, struct request *);
  520. typedef ide_startstop_t (ide_handler_t)(ide_drive_t *);
  521. typedef ide_startstop_t (ide_post_handler_t)(ide_drive_t *);
  522. /*
  523.  * when ide_timer_expiry fires, invoke a handler of this type
  524.  * to decide what to do.
  525.  */
  526. typedef int (ide_expiry_t)(ide_drive_t *);
  527. typedef struct hwgroup_s {
  528. ide_handler_t *handler;/* irq handler, if active */
  529. volatile int busy; /* BOOL: protects all fields below */
  530. int sleeping; /* BOOL: wake us up on timer expiry */
  531. ide_drive_t *drive; /* current drive */
  532. ide_hwif_t *hwif; /* ptr to current hwif in linked-list */
  533. struct request *rq; /* current request */
  534. struct timer_list timer; /* failsafe timer */
  535. struct request wrq; /* local copy of current write rq */
  536. unsigned long poll_timeout; /* timeout value during long polls */
  537. ide_expiry_t *expiry; /* queried upon timeouts */
  538. } ide_hwgroup_t;
  539. /* structure attached to the request for IDE_TASK_CMDS */
  540. /*
  541.  * configurable drive settings
  542.  */
  543. #define TYPE_INT 0
  544. #define TYPE_INTA 1
  545. #define TYPE_BYTE 2
  546. #define TYPE_SHORT 3
  547. #define SETTING_READ (1 << 0)
  548. #define SETTING_WRITE (1 << 1)
  549. #define SETTING_RW (SETTING_READ | SETTING_WRITE)
  550. typedef int (ide_procset_t)(ide_drive_t *, int);
  551. typedef struct ide_settings_s {
  552. char *name;
  553. int rw;
  554. int read_ioctl;
  555. int write_ioctl;
  556. int data_type;
  557. int min;
  558. int max;
  559. int mul_factor;
  560. int div_factor;
  561. void *data;
  562. ide_procset_t *set;
  563. int auto_remove;
  564. struct ide_settings_s *next;
  565. } ide_settings_t;
  566. void 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);
  567. void ide_remove_setting(ide_drive_t *drive, char *name);
  568. ide_settings_t *ide_find_setting_by_name(ide_drive_t *drive, char *name);
  569. int ide_read_setting(ide_drive_t *t, ide_settings_t *setting);
  570. int ide_write_setting(ide_drive_t *drive, ide_settings_t *setting, int val);
  571. void ide_add_generic_settings(ide_drive_t *drive);
  572. /*
  573.  * /proc/ide interface
  574.  */
  575. typedef struct {
  576. const char *name;
  577. mode_t mode;
  578. read_proc_t *read_proc;
  579. write_proc_t *write_proc;
  580. } ide_proc_entry_t;
  581. #ifdef CONFIG_PROC_FS
  582. void proc_ide_create(void);
  583. void proc_ide_destroy(void);
  584. void recreate_proc_ide_device(ide_hwif_t *, ide_drive_t *);
  585. void destroy_proc_ide_device(ide_hwif_t *, ide_drive_t *);
  586. void destroy_proc_ide_drives(ide_hwif_t *);
  587. void create_proc_ide_interfaces(void);
  588. void ide_add_proc_entries(struct proc_dir_entry *dir, ide_proc_entry_t *p, void *data);
  589. void ide_remove_proc_entries(struct proc_dir_entry *dir, ide_proc_entry_t *p);
  590. read_proc_t proc_ide_read_capacity;
  591. read_proc_t proc_ide_read_geometry;
  592. /*
  593.  * Standard exit stuff:
  594.  */
  595. #define PROC_IDE_READ_RETURN(page,start,off,count,eof,len) 
  596. {
  597. len -= off;
  598. if (len < count) {
  599. *eof = 1;
  600. if (len <= 0)
  601. return 0;
  602. } else
  603. len = count;
  604. *start = page + off;
  605. return len;
  606. }
  607. #else
  608. #define PROC_IDE_READ_RETURN(page,start,off,count,eof,len) return 0;
  609. #endif
  610. /*
  611.  * Subdrivers support.
  612.  */
  613. #define IDE_SUBDRIVER_VERSION 1
  614. typedef int (ide_cleanup_proc)(ide_drive_t *);
  615. typedef int (ide_standby_proc)(ide_drive_t *);
  616. typedef int (ide_flushcache_proc)(ide_drive_t *);
  617. typedef ide_startstop_t (ide_do_request_proc)(ide_drive_t *, struct request *, unsigned long);
  618. typedef void (ide_end_request_proc)(byte, ide_hwgroup_t *);
  619. typedef int (ide_ioctl_proc)(ide_drive_t *, struct inode *, struct file *, unsigned int, unsigned long);
  620. typedef int (ide_open_proc)(struct inode *, struct file *, ide_drive_t *);
  621. typedef void (ide_release_proc)(struct inode *, struct file *, ide_drive_t *);
  622. typedef int (ide_check_media_change_proc)(ide_drive_t *);
  623. typedef void (ide_revalidate_proc)(ide_drive_t *);
  624. typedef void (ide_pre_reset_proc)(ide_drive_t *);
  625. typedef unsigned long (ide_capacity_proc)(ide_drive_t *);
  626. typedef ide_startstop_t (ide_special_proc)(ide_drive_t *);
  627. typedef void (ide_setting_proc)(ide_drive_t *);
  628. typedef int (ide_reinit_proc)(ide_drive_t *);
  629. typedef void (ata_prebuilder_proc)(ide_drive_t *);
  630. typedef void (atapi_prebuilder_proc)(ide_drive_t *);
  631. typedef struct ide_driver_s {
  632. const char *name;
  633. const char *version;
  634. byte media;
  635. unsigned busy : 1;
  636. unsigned supports_dma : 1;
  637. unsigned supports_dsc_overlap : 1;
  638. ide_cleanup_proc *cleanup;
  639. ide_standby_proc *standby;
  640. ide_flushcache_proc *flushcache;
  641. ide_do_request_proc *do_request;
  642. ide_end_request_proc *end_request;
  643. ide_ioctl_proc *ioctl;
  644. ide_open_proc *open;
  645. ide_release_proc *release;
  646. ide_check_media_change_proc *media_change;
  647. ide_revalidate_proc *revalidate;
  648. ide_pre_reset_proc *pre_reset;
  649. ide_capacity_proc *capacity;
  650. ide_special_proc *special;
  651. ide_proc_entry_t *proc;
  652. ide_reinit_proc *reinit;
  653. ata_prebuilder_proc *ata_prebuilder;
  654. atapi_prebuilder_proc *atapi_prebuilder;
  655. } ide_driver_t;
  656. #define DRIVER(drive) ((ide_driver_t *)((drive)->driver))
  657. /*
  658.  * IDE modules.
  659.  */
  660. #define IDE_CHIPSET_MODULE 0 /* not supported yet */
  661. #define IDE_PROBE_MODULE 1
  662. #define IDE_DRIVER_MODULE 2
  663. typedef int (ide_module_init_proc)(void);
  664. typedef struct ide_module_s {
  665. int type;
  666. ide_module_init_proc *init;
  667. void *info;
  668. struct ide_module_s *next;
  669. } ide_module_t;
  670. /*
  671.  * ide_hwifs[] is the master data structure used to keep track
  672.  * of just about everything in ide.c.  Whenever possible, routines
  673.  * should be using pointers to a drive (ide_drive_t *) or
  674.  * pointers to a hwif (ide_hwif_t *), rather than indexing this
  675.  * structure directly (the allocation/layout may change!).
  676.  *
  677.  */
  678. #ifndef _IDE_C
  679. extern ide_hwif_t ide_hwifs[]; /* master data repository */
  680. extern ide_module_t *ide_modules;
  681. extern ide_module_t *ide_probe;
  682. #endif
  683. extern int noautodma;
  684. /*
  685.  * We need blk.h, but we replace its end_request by our own version.
  686.  */
  687. #define IDE_DRIVER /* Toggle some magic bits in blk.h */
  688. #define LOCAL_END_REQUEST /* Don't generate end_request in blk.h */
  689. #include <linux/blk.h>
  690. void ide_end_request(byte uptodate, ide_hwgroup_t *hwgroup);
  691. /*
  692.  * This is used for (nearly) all data transfers from/to the IDE interface
  693.  * FIXME for 2.5, to a pointer pass verses memcpy........
  694.  */
  695. void ide_input_data (ide_drive_t *drive, void *buffer, unsigned int wcount);
  696. void ide_output_data (ide_drive_t *drive, void *buffer, unsigned int wcount);
  697. /*
  698.  * This is used for (nearly) all ATAPI data transfers from/to the IDE interface
  699.  * FIXME for 2.5, to a pointer pass verses memcpy........
  700.  */
  701. void atapi_input_bytes (ide_drive_t *drive, void *buffer, unsigned int bytecount);
  702. void atapi_output_bytes (ide_drive_t *drive, void *buffer, unsigned int bytecount);
  703. int drive_is_ready (ide_drive_t *drive);
  704. /*
  705.  * This is used on exit from the driver, to designate the next irq handler
  706.  * and also to start the safety timer.
  707.  */
  708. void ide_set_handler (ide_drive_t *drive, ide_handler_t *handler, unsigned int timeout, ide_expiry_t *expiry);
  709. /*
  710.  * Error reporting, in human readable form (luxurious, but a memory hog).
  711.  */
  712. byte ide_dump_status (ide_drive_t *drive, const char *msg, byte stat);
  713. /*
  714.  * ide_error() takes action based on the error returned by the controller.
  715.  * The caller should return immediately after invoking this.
  716.  */
  717. ide_startstop_t ide_error (ide_drive_t *drive, const char *msg, byte stat);
  718. /*
  719.  * Issue a simple drive command
  720.  * The drive must be selected beforehand.
  721.  */
  722. void ide_cmd (ide_drive_t *drive, byte cmd, byte nsect, ide_handler_t *handler);
  723. /*
  724.  * ide_fixstring() cleans up and (optionally) byte-swaps a text string,
  725.  * removing leading/trailing blanks and compressing internal blanks.
  726.  * It is primarily used to tidy up the model name/number fields as
  727.  * returned by the WIN_[P]IDENTIFY commands.
  728.  */
  729. void ide_fixstring (byte *s, const int bytecount, const int byteswap);
  730. /*
  731.  * This routine busy-waits for the drive status to be not "busy".
  732.  * It then checks the status for all of the "good" bits and none
  733.  * of the "bad" bits, and if all is okay it returns 0.  All other
  734.  * cases return 1 after doing "*startstop = ide_error()", and the
  735.  * caller should return the updated value of "startstop" in this case.
  736.  * "startstop" is unchanged when the function returns 0;
  737.  */
  738. int ide_wait_stat (ide_startstop_t *startstop, ide_drive_t *drive, byte good, byte bad, unsigned long timeout);
  739. int ide_wait_noerr (ide_drive_t *drive, byte good, byte bad, unsigned long timeout);
  740. /*
  741.  * This routine is called from the partition-table code in genhd.c
  742.  * to "convert" a drive to a logical geometry with fewer than 1024 cyls.
  743.  */
  744. int ide_xlate_1024 (kdev_t, int, int, const char *);
  745. /*
  746.  * Convert kdev_t structure into ide_drive_t * one.
  747.  */
  748. ide_drive_t *get_info_ptr (kdev_t i_rdev);
  749. /*
  750.  * Return the current idea about the total capacity of this drive.
  751.  */
  752. unsigned long current_capacity (ide_drive_t *drive);
  753. /*
  754.  * Start a reset operation for an IDE interface.
  755.  * The caller should return immediately after invoking this.
  756.  */
  757. ide_startstop_t ide_do_reset (ide_drive_t *);
  758. /*
  759.  * Re-Start an operation for an IDE interface.
  760.  * The caller should return immediately after invoking this.
  761.  */
  762. ide_startstop_t restart_request (ide_drive_t *);
  763. /*
  764.  * This function is intended to be used prior to invoking ide_do_drive_cmd().
  765.  */
  766. void ide_init_drive_cmd (struct request *rq);
  767. /*
  768.  * "action" parameter type for ide_do_drive_cmd() below.
  769.  */
  770. typedef enum {
  771. ide_wait, /* insert rq at end of list, and wait for it */
  772. ide_next, /* insert rq immediately after current request */
  773. ide_preempt, /* insert rq in front of current request */
  774. ide_end /* insert rq at end of list, but don't wait for it */
  775. } ide_action_t;
  776. /*
  777.  * temporarily mapping a (possible) highmem bio
  778.  */
  779. #define ide_rq_offset(rq) (((rq)->hard_cur_sectors - (rq)->current_nr_sectors) << 9)
  780. extern inline void *ide_map_buffer(struct request *rq, unsigned long *flags)
  781. {
  782. return bh_kmap_irq(rq->bh, flags) + ide_rq_offset(rq);
  783. }
  784. extern inline void ide_unmap_buffer(char *buffer, unsigned long *flags)
  785. {
  786. bh_kunmap_irq(buffer, flags);
  787. }
  788. /*
  789.  * This function issues a special IDE device request
  790.  * onto the request queue.
  791.  *
  792.  * If action is ide_wait, then the rq is queued at the end of the
  793.  * request queue, and the function sleeps until it has been processed.
  794.  * This is for use when invoked from an ioctl handler.
  795.  *
  796.  * If action is ide_preempt, then the rq is queued at the head of
  797.  * the request queue, displacing the currently-being-processed
  798.  * request and this function returns immediately without waiting
  799.  * for the new rq to be completed.  This is VERY DANGEROUS, and is
  800.  * intended for careful use by the ATAPI tape/cdrom driver code.
  801.  *
  802.  * If action is ide_next, then the rq is queued immediately after
  803.  * the currently-being-processed-request (if any), and the function
  804.  * returns without waiting for the new rq to be completed.  As above,
  805.  * This is VERY DANGEROUS, and is intended for careful use by the
  806.  * ATAPI tape/cdrom driver code.
  807.  *
  808.  * If action is ide_end, then the rq is queued at the end of the
  809.  * request queue, and the function returns immediately without waiting
  810.  * for the new rq to be completed. This is again intended for careful
  811.  * use by the ATAPI tape/cdrom driver code.
  812.  */
  813. int ide_do_drive_cmd (ide_drive_t *drive, struct request *rq, ide_action_t action);
  814. /*
  815.  * Clean up after success/failure of an explicit drive cmd.
  816.  * stat/err are used only when (HWGROUP(drive)->rq->cmd == IDE_DRIVE_CMD).
  817.  * stat/err are used only when (HWGROUP(drive)->rq->cmd == IDE_DRIVE_TASK_MASK).
  818.  */
  819. void ide_end_drive_cmd (ide_drive_t *drive, byte stat, byte err);
  820. /*
  821.  * Issue ATA command and wait for completion. use for implementing commands in kernel
  822.  */
  823. int ide_wait_cmd (ide_drive_t *drive, int cmd, int nsect, int feature, int sectors, byte *buf);
  824. int ide_wait_cmd_task (ide_drive_t *drive, byte *buf);
  825.  
  826. typedef struct ide_task_s {
  827. task_ioreg_t tfRegister[8];
  828. task_ioreg_t hobRegister[8];
  829. ide_reg_valid_t tf_out_flags;
  830. ide_reg_valid_t tf_in_flags;
  831. int data_phase;
  832. int command_type;
  833. ide_pre_handler_t *prehandler;
  834. ide_handler_t *handler;
  835. ide_post_handler_t *posthandler;
  836. void *special; /* valid_t generally */
  837. struct request *rq; /* copy of request */
  838. unsigned long block; /* copy of block */
  839. } ide_task_t;
  840. typedef struct pkt_task_s {
  841. task_ioreg_t tfRegister[8];
  842. int data_phase;
  843. int command_type;
  844. ide_handler_t *handler;
  845. void *special;
  846. struct request *rq; /* copy of request */
  847. unsigned long block; /* copy of block */
  848. } pkt_task_t;
  849. /*
  850.  * taskfile io for disks for now...
  851.  */
  852. ide_startstop_t do_rw_taskfile (ide_drive_t *drive, ide_task_t *task);
  853. /*
  854.  * Builds request from ide_ioctl
  855.  */
  856. void do_taskfile (ide_drive_t *drive, struct hd_drive_task_hdr *taskfile, struct hd_drive_hob_hdr *hobfile, ide_handler_t *handler);
  857. /*
  858.  * Special Flagged Register Validation Caller
  859.  */
  860. // ide_startstop_t flagged_taskfile (ide_drive_t *drive, ide_task_t *task);
  861. ide_startstop_t set_multmode_intr (ide_drive_t *drive);
  862. ide_startstop_t set_geometry_intr (ide_drive_t *drive);
  863. ide_startstop_t recal_intr (ide_drive_t *drive);
  864. ide_startstop_t task_no_data_intr (ide_drive_t *drive);
  865. ide_startstop_t task_in_intr (ide_drive_t *drive);
  866. ide_startstop_t task_mulin_intr (ide_drive_t *drive);
  867. ide_startstop_t pre_task_out_intr (ide_drive_t *drive, struct request *rq);
  868. ide_startstop_t task_out_intr (ide_drive_t *drive);
  869. ide_startstop_t task_mulout_intr (ide_drive_t *drive);
  870. void ide_init_drive_taskfile (struct request *rq);
  871. int ide_wait_taskfile (ide_drive_t *drive, struct hd_drive_task_hdr *taskfile, struct hd_drive_hob_hdr *hobfile, byte *buf);
  872. int ide_raw_taskfile (ide_drive_t *drive, ide_task_t *cmd, byte *buf);
  873. ide_pre_handler_t * ide_pre_handler_parser (struct hd_drive_task_hdr *taskfile, struct hd_drive_hob_hdr *hobfile);
  874. ide_handler_t * ide_handler_parser (struct hd_drive_task_hdr *taskfile, struct hd_drive_hob_hdr *hobfile);
  875. /* Expects args is a full set of TF registers and parses the command type */
  876. int ide_cmd_type_parser (ide_task_t *args);
  877. int ide_taskfile_ioctl (ide_drive_t *drive, struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg);
  878. #ifdef CONFIG_PKT_TASK_IOCTL
  879. int pkt_taskfile_ioctl (ide_drive_t *drive, struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg);
  880. #endif /* CONFIG_PKT_TASK_IOCTL */
  881. void ide_delay_50ms (void);
  882. int system_bus_clock(void);
  883. byte ide_auto_reduce_xfer (ide_drive_t *drive);
  884. int ide_driveid_update (ide_drive_t *drive);
  885. int ide_ata66_check (ide_drive_t *drive, ide_task_t *args);
  886. int ide_config_drive_speed (ide_drive_t *drive, byte speed);
  887. byte eighty_ninty_three (ide_drive_t *drive);
  888. int set_transfer (ide_drive_t *drive, ide_task_t *args);
  889. /*
  890.  * ide_system_bus_speed() returns what we think is the system VESA/PCI
  891.  * bus speed (in MHz).  This is used for calculating interface PIO timings.
  892.  * The default is 40 for known PCI systems, 50 otherwise.
  893.  * The "idebus=xx" parameter can be used to override this value.
  894.  */
  895. int ide_system_bus_speed (void);
  896. /*
  897.  * ide_multwrite() transfers a block of up to mcount sectors of data
  898.  * to a drive as part of a disk multwrite operation.
  899.  */
  900. int ide_multwrite (ide_drive_t *drive, unsigned int mcount);
  901. /*
  902.  * ide_stall_queue() can be used by a drive to give excess bandwidth back
  903.  * to the hwgroup by sleeping for timeout jiffies.
  904.  */
  905. void ide_stall_queue (ide_drive_t *drive, unsigned long timeout);
  906. /*
  907.  * ide_get_queue() returns the queue which corresponds to a given device.
  908.  */
  909. request_queue_t *ide_get_queue (kdev_t dev);
  910. /*
  911.  * CompactFlash cards and their brethern pretend to be removable hard disks,
  912.  * but they never have a slave unit, and they don't have doorlock mechanisms.
  913.  * This test catches them, and is invoked elsewhere when setting appropriate config bits.
  914.  */
  915. int drive_is_flashcard (ide_drive_t *drive);
  916. int ide_spin_wait_hwgroup (ide_drive_t *drive);
  917. void ide_timer_expiry (unsigned long data);
  918. void ide_intr (int irq, void *dev_id, struct pt_regs *regs);
  919. void do_ide_request (request_queue_t * q);
  920. void ide_init_subdrivers (void);
  921. #ifndef _IDE_C
  922. extern struct block_device_operations ide_fops[];
  923. extern ide_proc_entry_t generic_subdriver_entries[];
  924. #endif
  925. int ide_reinit_drive (ide_drive_t *drive);
  926. #ifdef _IDE_C
  927. #ifdef CONFIG_BLK_DEV_IDE
  928. int ideprobe_init (void);
  929. #endif /* CONFIG_BLK_DEV_IDE */
  930. #ifdef CONFIG_BLK_DEV_IDEDISK
  931. int idedisk_reinit (ide_drive_t *drive);
  932. int idedisk_init (void);
  933. #endif /* CONFIG_BLK_DEV_IDEDISK */
  934. #ifdef CONFIG_BLK_DEV_IDECD
  935. int ide_cdrom_reinit (ide_drive_t *drive);
  936. int ide_cdrom_init (void);
  937. #endif /* CONFIG_BLK_DEV_IDECD */
  938. #ifdef CONFIG_BLK_DEV_IDETAPE
  939. int idetape_reinit (ide_drive_t *drive);
  940. int idetape_init (void);
  941. #endif /* CONFIG_BLK_DEV_IDETAPE */
  942. #ifdef CONFIG_BLK_DEV_IDEFLOPPY
  943. int idefloppy_reinit (ide_drive_t *drive);
  944. int idefloppy_init (void);
  945. #endif /* CONFIG_BLK_DEV_IDEFLOPPY */
  946. #ifdef CONFIG_BLK_DEV_IDESCSI
  947. int idescsi_reinit (ide_drive_t *drive);
  948. int idescsi_init (void);
  949. #endif /* CONFIG_BLK_DEV_IDESCSI */
  950. #endif /* _IDE_C */
  951. int ide_register_module (ide_module_t *module);
  952. void ide_unregister_module (ide_module_t *module);
  953. ide_drive_t *ide_scan_devices (byte media, const char *name, ide_driver_t *driver, int n);
  954. int ide_register_subdriver (ide_drive_t *drive, ide_driver_t *driver, int version);
  955. int ide_unregister_subdriver (ide_drive_t *drive);
  956. int ide_replace_subdriver(ide_drive_t *drive, const char *driver);
  957. #ifdef CONFIG_BLK_DEV_IDEPCI
  958. #define ON_BOARD 1
  959. #define NEVER_BOARD 0
  960. #ifdef CONFIG_BLK_DEV_OFFBOARD
  961. #  define OFF_BOARD ON_BOARD
  962. #else /* CONFIG_BLK_DEV_OFFBOARD */
  963. #  define OFF_BOARD NEVER_BOARD
  964. #endif /* CONFIG_BLK_DEV_OFFBOARD */
  965. unsigned long ide_find_free_region (unsigned short size) __init;
  966. void ide_scan_pcibus (int scan_direction) __init;
  967. #endif
  968. #ifdef CONFIG_BLK_DEV_IDEDMA
  969. #define BAD_DMA_DRIVE 0
  970. #define GOOD_DMA_DRIVE 1
  971. int ide_build_dmatable (ide_drive_t *drive, ide_dma_action_t func);
  972. void ide_destroy_dmatable (ide_drive_t *drive);
  973. ide_startstop_t ide_dma_intr (ide_drive_t *drive);
  974. int check_drive_lists (ide_drive_t *drive, int good_bad);
  975. int report_drive_dmaing (ide_drive_t *drive);
  976. int ide_dmaproc (ide_dma_action_t func, ide_drive_t *drive);
  977. int ide_release_dma (ide_hwif_t *hwif);
  978. void ide_setup_dma (ide_hwif_t *hwif, unsigned long dmabase, unsigned int num_ports) __init;
  979. unsigned long ide_get_or_set_dma_base (ide_hwif_t *hwif, int extra, const char *name) __init;
  980. #endif
  981. void hwif_unregister (ide_hwif_t *hwif);
  982. void export_ide_init_queue (ide_drive_t *drive);
  983. byte export_probe_for_drive (ide_drive_t *drive);
  984. #endif /* _IDE_H */