fd.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_FD_H
  2. #define _LINUX_FD_H
  3. #include <linux/ioctl.h>
  4. /* New file layout: Now the ioctl definitions immediately follow the
  5.  * definitions of the structures that they use */
  6. /*
  7.  * Geometry
  8.  */
  9. struct floppy_struct {
  10. unsigned int size, /* nr of sectors total */
  11. sect, /* sectors per track */
  12. head, /* nr of heads */
  13. track, /* nr of tracks */
  14. stretch; /* !=0 means double track steps */
  15. #define FD_STRETCH 1
  16. #define FD_SWAPSIDES 2
  17. unsigned char gap, /* gap1 size */
  18. rate, /* data rate. |= 0x40 for perpendicular */
  19. #define FD_2M 0x4
  20. #define FD_SIZECODEMASK 0x38
  21. #define FD_SIZECODE(floppy) (((((floppy)->rate&FD_SIZECODEMASK)>> 3)+ 2) %8)
  22. #define FD_SECTSIZE(floppy) ( (floppy)->rate & FD_2M ? 
  23.      512 : 128 << FD_SIZECODE(floppy) )
  24. #define FD_PERP 0x40
  25. spec1, /* stepping rate, head unload time */
  26. fmt_gap; /* gap2 size */
  27. const char * name; /* used only for predefined formats */
  28. };
  29. /* commands needing write access have 0x40 set */
  30. /* commands needing super user access have 0x80 set */
  31. #define FDCLRPRM _IO(2, 0x41)
  32. /* clear user-defined parameters */
  33. #define FDSETPRM _IOW(2, 0x42, struct floppy_struct) 
  34. #define FDSETMEDIAPRM FDSETPRM
  35. /* set user-defined parameters for current media */
  36. #define FDDEFPRM _IOW(2, 0x43, struct floppy_struct) 
  37. #define FDGETPRM _IOR(2, 0x04, struct floppy_struct)
  38. #define FDDEFMEDIAPRM FDDEFPRM
  39. #define FDGETMEDIAPRM FDGETPRM
  40. /* set/get disk parameters */
  41. #define FDMSGON  _IO(2,0x45)
  42. #define FDMSGOFF _IO(2,0x46)
  43. /* issue/don't issue kernel messages on media type change */
  44. /* 
  45.  * Formatting (obsolete)
  46.  */
  47. #define FD_FILL_BYTE 0xF6 /* format fill byte. */
  48. struct format_descr {
  49. unsigned int device,head,track;
  50. };
  51. #define FDFMTBEG _IO(2,0x47)
  52. /* begin formatting a disk */
  53. #define FDFMTTRK _IOW(2,0x48, struct format_descr)
  54. /* format the specified track */
  55. #define FDFMTEND _IO(2,0x49)
  56. /* end formatting a disk */
  57. /*
  58.  * Error thresholds
  59.  */
  60. struct floppy_max_errors {
  61. unsigned int
  62.   abort,      /* number of errors to be reached before aborting */
  63.   read_track, /* maximal number of errors permitted to read an
  64.        * entire track at once */
  65.   reset,      /* maximal number of errors before a reset is tried */
  66.   recal,      /* maximal number of errors before a recalibrate is
  67.        * tried */
  68.   /*
  69.    * Threshold for reporting FDC errors to the console.
  70.    * Setting this to zero may flood your screen when using
  71.    * ultra cheap floppies ;-)
  72.    */
  73.   reporting;
  74. };
  75. #define FDSETEMSGTRESH _IO(2,0x4a)
  76. /* set fdc error reporting threshold */
  77. #define FDFLUSH  _IO(2,0x4b)
  78. /* flush buffers for media; either for verifying media, or for
  79.  * handling a media change without closing the file descriptor */
  80. #define FDSETMAXERRS _IOW(2, 0x4c, struct floppy_max_errors)
  81. #define FDGETMAXERRS _IOR(2, 0x0e, struct floppy_max_errors)
  82. /* set/get abortion and read_track threshold. See also floppy_drive_params
  83.  * structure */
  84. typedef char floppy_drive_name[16];
  85. #define FDGETDRVTYP _IOR(2, 0x0f, floppy_drive_name)
  86. /* get drive type: 5 1/4 or 3 1/2 */
  87. /*
  88.  * Drive parameters (user modifiable)
  89.  */
  90. struct floppy_drive_params {
  91. signed char cmos; /* CMOS type */
  92. /* Spec2 is (HLD<<1 | ND), where HLD is head load time (1=2ms, 2=4 ms 
  93.  * etc) and ND is set means no DMA. Hardcoded to 6 (HLD=6ms, use DMA).
  94.  */
  95. unsigned long max_dtr; /* Step rate, usec */
  96. unsigned long hlt;      /* Head load/settle time, msec */
  97. unsigned long hut;      /* Head unload time (remnant of 
  98.  * 8" drives) */
  99. unsigned long srt;      /* Step rate, usec */
  100. unsigned long spinup; /* time needed for spinup (expressed
  101.  * in jiffies) */
  102. unsigned long spindown; /* timeout needed for spindown */
  103. unsigned char spindown_offset; /* decides in which position the disk
  104.  * will stop */
  105. unsigned char select_delay; /* delay to wait after select */
  106. unsigned char rps; /* rotations per second */
  107. unsigned char tracks; /* maximum number of tracks */
  108. unsigned long timeout; /* timeout for interrupt requests */
  109. unsigned char interleave_sect; /* if there are more sectors, use 
  110.  * interleave */
  111. struct floppy_max_errors max_errors;
  112. char flags; /* various flags, including ftd_msg */
  113. /*
  114.  * Announce successful media type detection and media information loss after
  115.  * disk changes.
  116.  * Also used to enable/disable printing of overrun warnings.
  117.  */
  118. #define FTD_MSG 0x10
  119. #define FD_BROKEN_DCL 0x20
  120. #define FD_DEBUG 0x02
  121. #define FD_SILENT_DCL_CLEAR 0x4
  122. #define FD_INVERTED_DCL 0x80 /* must be 0x80, because of hardware 
  123. considerations */
  124. char read_track; /* use readtrack during probing? */
  125. /*
  126.  * Auto-detection. Each drive type has eight formats which are
  127.  * used in succession to try to read the disk. If the FDC cannot lock onto
  128.  * the disk, the next format is tried. This uses the variable 'probing'.
  129.  */
  130. short autodetect[8]; /* autodetected formats */
  131. int checkfreq; /* how often should the drive be checked for disk 
  132. * changes */
  133. int native_format; /* native format of this drive */
  134. };
  135. enum {
  136. FD_NEED_TWADDLE_BIT, /* more magic */
  137. FD_VERIFY_BIT, /* inquire for write protection */
  138. FD_DISK_NEWCHANGE_BIT, /* change detected, and no action undertaken yet
  139.  * to clear media change status */
  140. FD_UNUSED_BIT,
  141. FD_DISK_CHANGED_BIT, /* disk has been changed since last i/o */
  142. FD_DISK_WRITABLE_BIT /* disk is writable */
  143. };
  144. #define FDSETDRVPRM _IOW(2, 0x90, struct floppy_drive_params)
  145. #define FDGETDRVPRM _IOR(2, 0x11, struct floppy_drive_params)
  146. /* set/get drive parameters */
  147. /*
  148.  * Current drive state (not directly modifiable by user, readonly)
  149.  */
  150. struct floppy_drive_struct {
  151. unsigned long flags;
  152. /* values for these flags */
  153. #define FD_NEED_TWADDLE (1 << FD_NEED_TWADDLE_BIT)
  154. #define FD_VERIFY (1 << FD_VERIFY_BIT)
  155. #define FD_DISK_NEWCHANGE (1 << FD_DISK_NEWCHANGE_BIT)
  156. #define FD_DISK_CHANGED (1 << FD_DISK_CHANGED_BIT)
  157. #define FD_DISK_WRITABLE (1 << FD_DISK_WRITABLE_BIT)
  158. unsigned long spinup_date;
  159. unsigned long select_date;
  160. unsigned long first_read_date;
  161. short probed_format;
  162. short track; /* current track */
  163. short maxblock; /* id of highest block read */
  164. short maxtrack; /* id of highest half track read */
  165. int generation; /* how many diskchanges? */
  166. /*
  167.  * (User-provided) media information is _not_ discarded after a media change
  168.  * if the corresponding keep_data flag is non-zero. Positive values are
  169.  * decremented after each probe.
  170.  */
  171. int keep_data;
  172. /* Prevent "aliased" accesses. */
  173. int fd_ref;
  174. int fd_device;
  175. unsigned long last_checked; /* when was the drive last checked for a disk 
  176.    * change? */
  177. char *dmabuf;
  178. int bufblocks;
  179. };
  180. #define FDGETDRVSTAT _IOR(2, 0x12, struct floppy_drive_struct)
  181. #define FDPOLLDRVSTAT _IOR(2, 0x13, struct floppy_drive_struct)
  182. /* get drive state: GET returns the cached state, POLL polls for new state */
  183. /*
  184.  * reset FDC
  185.  */
  186. enum reset_mode {
  187. FD_RESET_IF_NEEDED, /* reset only if the reset flags is set */
  188. FD_RESET_IF_RAWCMD, /* obsolete */
  189. FD_RESET_ALWAYS /* reset always */
  190. };
  191. #define FDRESET _IO(2, 0x54)
  192. /*
  193.  * FDC state
  194.  */
  195. struct floppy_fdc_state {
  196. int spec1; /* spec1 value last used */
  197. int spec2; /* spec2 value last used */
  198. int dtr;
  199. unsigned char version; /* FDC version code */
  200. unsigned char dor;
  201. unsigned long address; /* io address */
  202. unsigned int rawcmd:2;
  203. unsigned int reset:1;
  204. unsigned int need_configure:1;
  205. unsigned int perp_mode:2;
  206. unsigned int has_fifo:1;
  207. unsigned int driver_version; /* version code for floppy driver */
  208. #define FD_DRIVER_VERSION 0x100
  209. /* user programs using the floppy API should use floppy_fdc_state to
  210.  * get the version number of the floppy driver that they are running
  211.  * on. If this version number is bigger than the one compiled into the
  212.  * user program (the FD_DRIVER_VERSION define), it should be prepared
  213.  * to bigger structures
  214.  */
  215. unsigned char track[4];
  216. /* Position of the heads of the 4 units attached to this FDC,
  217.  * as stored on the FDC. In the future, the position as stored
  218.  * on the FDC might not agree with the actual physical
  219.  * position of these drive heads. By allowing such
  220.  * disagreement, it will be possible to reset the FDC without
  221.  * incurring the expensive cost of repositioning all heads.
  222.  * Right now, these positions are hard wired to 0. */
  223. };
  224. #define FDGETFDCSTAT _IOR(2, 0x15, struct floppy_fdc_state)
  225. /*
  226.  * Asynchronous Write error tracking
  227.  */
  228. struct floppy_write_errors {
  229. /* Write error logging.
  230.  *
  231.  * These fields can be cleared with the FDWERRORCLR ioctl.
  232.  * Only writes that were attempted but failed due to a physical media
  233.  * error are logged.  write(2) calls that fail and return an error code
  234.  * to the user process are not counted.
  235.  */
  236. unsigned int write_errors;  /* number of physical write errors 
  237.      * encountered */
  238. /* position of first and last write errors */
  239. unsigned long first_error_sector;
  240. int           first_error_generation;
  241. unsigned long last_error_sector;
  242. int           last_error_generation;
  243. unsigned int badness; /* highest retry count for a read or write 
  244.        * operation */
  245. };
  246. #define FDWERRORCLR  _IO(2, 0x56)
  247. /* clear write error and badness information */
  248. #define FDWERRORGET  _IOR(2, 0x17, struct floppy_write_errors)
  249. /* get write error and badness information */
  250. /*
  251.  * Raw commands
  252.  */
  253. /* new interface flag: now we can do them in batches */
  254. #define FDHAVEBATCHEDRAWCMD
  255. struct floppy_raw_cmd {
  256. unsigned int flags;
  257. #define FD_RAW_READ 1
  258. #define FD_RAW_WRITE 2
  259. #define FD_RAW_NO_MOTOR 4
  260. #define FD_RAW_DISK_CHANGE 4 /* out: disk change flag was set */
  261. #define FD_RAW_INTR 8    /* wait for an interrupt */
  262. #define FD_RAW_SPIN 0x10 /* spin up the disk for this command */
  263. #define FD_RAW_NO_MOTOR_AFTER 0x20 /* switch the motor off after command 
  264.     * completion */
  265. #define FD_RAW_NEED_DISK 0x40  /* this command needs a disk to be present */
  266. #define FD_RAW_NEED_SEEK 0x80  /* this command uses an implied seek (soft) */
  267. /* more "in" flags */
  268. #define FD_RAW_MORE 0x100  /* more records follow */
  269. #define FD_RAW_STOP_IF_FAILURE 0x200 /* stop if we encounter a failure */
  270. #define FD_RAW_STOP_IF_SUCCESS 0x400 /* stop if command successful */
  271. #define FD_RAW_SOFTFAILURE 0x800 /* consider the return value for failure
  272.   * detection too */
  273. /* more "out" flags */
  274. #define FD_RAW_FAILURE 0x10000 /* command sent to fdc, fdc returned error */
  275. #define FD_RAW_HARDFAILURE 0x20000 /* fdc had to be reset, or timed out */
  276. void *data;
  277. char *kernel_data; /* location of data buffer in the kernel */
  278. struct floppy_raw_cmd *next; /* used for chaining of raw cmd's 
  279.       * within the kernel */
  280. long length; /* in: length of dma transfer. out: remaining bytes */
  281. long phys_length; /* physical length, if different from dma length */
  282. int buffer_length; /* length of allocated buffer */
  283. unsigned char rate;
  284. unsigned char cmd_count;
  285. unsigned char cmd[16];
  286. unsigned char reply_count;
  287. unsigned char reply[16];
  288. int track;
  289. int resultcode;
  290. int reserved1;
  291. int reserved2;
  292. };
  293. #define FDRAWCMD _IO(2, 0x58)
  294. /* send a raw command to the fdc. Structure size not included, because of
  295.  * batches */
  296. #define FDTWADDLE _IO(2, 0x59)
  297. /* flicker motor-on bit before reading a sector. Experimental */
  298. #define FDEJECT _IO(2, 0x5a)
  299. /* eject the disk */
  300. #ifdef __KERNEL__
  301. /* eject the boot floppy (if we need the drive for a different root floppy) */
  302. void floppy_eject(void);
  303. #endif
  304. #endif