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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _LINUX_XD_H
  2. #define _LINUX_XD_H
  3. /*
  4.  * This file contains the definitions for the IO ports and errors etc. for XT hard disk controllers (at least the DTC 5150X).
  5.  *
  6.  * Author: Pat Mackinlay, pat@it.com.au
  7.  * Date: 29/09/92
  8.  *
  9.  * Revised: 01/01/93, ...
  10.  *
  11.  * Ref: DTC 5150X Controller Specification (thanks to Kevin Fowler, kevinf@agora.rain.com)
  12.  * Also thanks to: Salvador Abreu, Dave Thaler, Risto Kankkunen and Wim Van Dorst.
  13.  */
  14. /* XT hard disk controller registers */
  15. #define XD_DATA (xd_iobase + 0x00) /* data RW register */
  16. #define XD_RESET (xd_iobase + 0x01) /* reset WO register */
  17. #define XD_STATUS (xd_iobase + 0x01) /* status RO register */
  18. #define XD_SELECT (xd_iobase + 0x02) /* select WO register */
  19. #define XD_JUMPER (xd_iobase + 0x02) /* jumper RO register */
  20. #define XD_CONTROL (xd_iobase + 0x03) /* DMAE/INTE WO register */
  21. #define XD_RESERVED (xd_iobase + 0x03) /* reserved */
  22. /* XT hard disk controller commands (incomplete list) */
  23. #define CMD_TESTREADY 0x00 /* test drive ready */
  24. #define CMD_RECALIBRATE 0x01 /* recalibrate drive */
  25. #define CMD_SENSE 0x03 /* request sense */
  26. #define CMD_FORMATDRV 0x04 /* format drive */
  27. #define CMD_VERIFY 0x05 /* read verify */
  28. #define CMD_FORMATTRK 0x06 /* format track */
  29. #define CMD_FORMATBAD 0x07 /* format bad track */
  30. #define CMD_READ 0x08 /* read */
  31. #define CMD_WRITE 0x0A /* write */
  32. #define CMD_SEEK 0x0B /* seek */
  33. /* Controller specific commands */
  34. #define CMD_DTCSETPARAM 0x0C /* set drive parameters (DTC 5150X & CX only?) */
  35. #define CMD_DTCGETECC 0x0D /* get ecc error length (DTC 5150X only?) */
  36. #define CMD_DTCREADBUF 0x0E /* read sector buffer (DTC 5150X only?) */
  37. #define CMD_DTCWRITEBUF 0x0F /* write sector buffer (DTC 5150X only?) */
  38. #define CMD_DTCREMAPTRK 0x11 /* assign alternate track (DTC 5150X only?) */
  39. #define CMD_DTCGETPARAM 0xFB /* get drive parameters (DTC 5150X only?) */
  40. #define CMD_DTCSETSTEP 0xFC /* set step rate (DTC 5150X only?) */
  41. #define CMD_DTCSETGEOM 0xFE /* set geometry data (DTC 5150X only?) */
  42. #define CMD_DTCGETGEOM 0xFF /* get geometry data (DTC 5150X only?) */
  43. #define CMD_ST11GETGEOM 0xF8 /* get geometry data (Seagate ST11R/M only?) */
  44. #define CMD_WDSETPARAM 0x0C /* set drive parameters (WD 1004A27X only?) */
  45. #define CMD_XBSETPARAM 0x0C /* set drive parameters (XEBEC only?) */
  46. /* Bits for command status byte */
  47. #define CSB_ERROR 0x02 /* error */
  48. #define CSB_LUN 0x20 /* logical Unit Number */
  49. /* XT hard disk controller status bits */
  50. #define STAT_READY 0x01 /* controller is ready */
  51. #define STAT_INPUT 0x02 /* data flowing from controller to host */
  52. #define STAT_COMMAND 0x04 /* controller in command phase */
  53. #define STAT_SELECT 0x08 /* controller is selected */
  54. #define STAT_REQUEST 0x10 /* controller requesting data */
  55. #define STAT_INTERRUPT 0x20 /* controller requesting interrupt */
  56. /* XT hard disk controller control bits */
  57. #define PIO_MODE 0x00 /* control bits to set for PIO */
  58. #define DMA_MODE 0x03 /* control bits to set for DMA & interrupt */
  59. #define XD_MAXDRIVES 2 /* maximum 2 drives */
  60. #define XD_TIMEOUT HZ /* 1 second timeout */
  61. #define XD_RETRIES 4 /* maximum 4 retries */
  62. #undef DEBUG /* define for debugging output */
  63. #ifdef DEBUG
  64. #define DEBUG_STARTUP /* debug driver initialisation */
  65. #define DEBUG_OVERRIDE /* debug override geometry detection */
  66. #define DEBUG_READWRITE /* debug each read/write command */
  67. #define DEBUG_OTHER /* debug misc. interrupt/DMA stuff */
  68. #define DEBUG_COMMAND /* debug each controller command */
  69. #endif /* DEBUG */
  70. /* this structure defines the XT drives and their types */
  71. typedef struct {
  72. u8 heads;
  73. u16 cylinders;
  74. u8 sectors;
  75. u8 control;
  76. } XD_INFO;
  77. /* this structure is returned to the HDIO_GETGEO ioctl */
  78. typedef struct {
  79. __u8 heads;
  80. __u8 sectors;
  81. __u8 cylinders;
  82. __u32 start;
  83. } XD_GEOMETRY;
  84. /* this structure defines a ROM BIOS signature */
  85. typedef struct {
  86. unsigned int offset;
  87. const char *string;
  88. void (*init_controller)(unsigned int address);
  89. void (*init_drive)(u8 drive);
  90. const char *name;
  91. } XD_SIGNATURE;
  92. #ifndef MODULE
  93. static int xd_manual_geo_init (char *command);
  94. #endif /* MODULE */
  95. static u8 xd_detect (u8 *controller, unsigned int *address);
  96. static u8 xd_initdrives (void (*init_drive)(u8 drive));
  97. static void xd_geninit (void);
  98. static int xd_open (struct inode *inode,struct file *file);
  99. static void do_xd_request (request_queue_t * q);
  100. static int xd_ioctl (struct inode *inode,struct file *file,unsigned int cmd,unsigned long arg);
  101. static int xd_release (struct inode *inode,struct file *file);
  102. static int xd_reread_partitions (kdev_t dev);
  103. static int xd_readwrite (u8 operation,u8 drive,char *buffer,u_int block,u_int count);
  104. static void xd_recalibrate (u8 drive);
  105. static void xd_interrupt_handler (int irq, void *dev_id, struct pt_regs *regs);
  106. static u8 xd_setup_dma (u8 opcode,u8 *buffer,u_int count);
  107. static u8 *xd_build (u8 *cmdblk,u8 command,u8 drive,u8 head,u16 cylinder,u8 sector,u8 count,u8 control);
  108. static void xd_watchdog (unsigned long unused);
  109. static inline u8 xd_waitport (u16 port,u8 flags,u8 mask,unsigned long timeout);
  110. static u_int xd_command (u8 *command,u8 mode,u8 *indata,u8 *outdata,u8 *sense,unsigned long timeout);
  111. /* card specific setup and geometry gathering code */
  112. static void xd_dtc_init_controller (unsigned int address);
  113. static void xd_dtc5150cx_init_drive (u8 drive);
  114. static void xd_dtc_init_drive (u8 drive);
  115. static void xd_wd_init_controller (unsigned int address);
  116. static void xd_wd_init_drive (u8 drive);
  117. static void xd_seagate_init_controller (unsigned int address);
  118. static void xd_seagate_init_drive (u8 drive);
  119. static void xd_omti_init_controller (unsigned int address);
  120. static void xd_omti_init_drive (u8 drive);
  121. static void xd_xebec_init_controller (unsigned int address);
  122. static void xd_xebec_init_drive (u8 drive);
  123. static void xd_setparam (u8 command,u8 drive,u8 heads,u16 cylinders,u16 rwrite,u16 wprecomp,u8 ecc);
  124. static void xd_override_init_drive (u8 drive);
  125. #endif /* _LINUX_XD_H */