Dr Andrew Scott G7VAV

My photo
 
June 2025
Mo Tu We Th Fr Sa Su
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 1 2 3 4 5 6


fd.h
001: #ifndef _LINUX_FD_H
002: #define _LINUX_FD_H
003: 
004: #include <linux/ioctl.h>
005: 
006: 
007: /* New file layout: Now the ioctl definitions immediately follow the
008:  * definitions of the structures that they use */
009: 
010: /*
011:  * Geometry
012:  */
013: struct floppy_struct {
014:         unsigned int    size,           /* nr of sectors total */
015:                         sect,           /* sectors per track */
016:                         head,           /* nr of heads */
017:                         track,          /* nr of tracks */
018:                         stretch;        /* bit 0 !=0 means double track steps */
019:                                         /* bit 1 != 0 means swap sides */
020:                                         /* bits 2..9 give the first sector */
021:                                         /*  number (the LSB is flipped) */
022: #define FD_STRETCH 1
023: #define FD_SWAPSIDES 2
024: #define FD_ZEROBASED 4
025: #define FD_SECTBASEMASK 0x3FC
026: #define FD_MKSECTBASE(s) (((s) ^ 1) << 2)
027: #define FD_SECTBASE(floppy) ((((floppy)->stretch & FD_SECTBASEMASK) >> 2) ^ 1)
028: 
029:         unsigned char   gap,            /* gap1 size */
030: 
031:                         rate,           /* data rate. |= 0x40 for perpendicular */
032: #define FD_2M 0x4
033: #define FD_SIZECODEMASK 0x38
034: #define FD_SIZECODE(floppy) (((((floppy)->rate&FD_SIZECODEMASK)>> 3)+ 2) %8)
035: #define FD_SECTSIZE(floppy) ( (floppy)->rate & FD_2M ? \
036:                              512 : 128 << FD_SIZECODE(floppy) )
037: #define FD_PERP 0x40
038: 
039:                         spec1,          /* stepping rate, head unload time */
040:                         fmt_gap;        /* gap2 size */
041:         const char      * name; /* used only for predefined formats */
042: };
043: 
044: 
045: /* commands needing write access have 0x40 set */
046: /* commands needing super user access have 0x80 set */
047: 
048: #define FDCLRPRM _IO(2, 0x41)
049: /* clear user-defined parameters */
050: 
051: #define FDSETPRM _IOW(2, 0x42, struct floppy_struct) 
052: #define FDSETMEDIAPRM FDSETPRM
053: /* set user-defined parameters for current media */
054: 
055: #define FDDEFPRM _IOW(2, 0x43, struct floppy_struct) 
056: #define FDGETPRM _IOR(2, 0x04, struct floppy_struct)
057: #define FDDEFMEDIAPRM FDDEFPRM
058: #define FDGETMEDIAPRM FDGETPRM
059: /* set/get disk parameters */
060: 
061: 
062: #define FDMSGON  _IO(2,0x45)
063: #define FDMSGOFF _IO(2,0x46)
064: /* issue/don't issue kernel messages on media type change */
065: 
066: 
067: /* 
068:  * Formatting (obsolete)
069:  */
070: #define FD_FILL_BYTE 0xF6 /* format fill byte. */
071: 
072: struct format_descr {
073:         unsigned int device,head,track;
074: };
075: 
076: #define FDFMTBEG _IO(2,0x47)
077: /* begin formatting a disk */
078: #define FDFMTTRK _IOW(2,0x48, struct format_descr)
079: /* format the specified track */
080: #define FDFMTEND _IO(2,0x49)
081: /* end formatting a disk */
082: 
083: 
084: /*
085:  * Error thresholds
086:  */
087: struct floppy_max_errors {
088:         unsigned int
089:           abort,      /* number of errors to be reached before aborting */
090:           read_track, /* maximal number of errors permitted to read an
091:                        * entire track at once */
092:           reset,      /* maximal number of errors before a reset is tried */
093:           recal,      /* maximal number of errors before a recalibrate is
094:                        * tried */
095: 
096:           /*
097:            * Threshold for reporting FDC errors to the console.
098:            * Setting this to zero may flood your screen when using
099:            * ultra cheap floppies ;-)
100:            */
101:           reporting;
102: 
103: };
104: 
105: #define FDSETEMSGTRESH  _IO(2,0x4a)
106: /* set fdc error reporting threshold */
107: 
108: #define FDFLUSH  _IO(2,0x4b)
109: /* flush buffers for media; either for verifying media, or for
110:  * handling a media change without closing the file descriptor */
111: 
112: #define FDSETMAXERRS _IOW(2, 0x4c, struct floppy_max_errors)
113: #define FDGETMAXERRS _IOR(2, 0x0e, struct floppy_max_errors)
114: /* set/get abortion and read_track threshold. See also floppy_drive_params
115:  * structure */
116: 
117: 
118: typedef char floppy_drive_name[16];
119: #define FDGETDRVTYP _IOR(2, 0x0f, floppy_drive_name)
120: /* get drive type: 5 1/4 or 3 1/2 */
121: 
122: 
123: /*
124:  * Drive parameters (user modifiable)
125:  */
126: struct floppy_drive_params {
127:         signed char cmos;               /* CMOS type */
128:         
129:         /* Spec2 is (HLD<<1 | ND), where HLD is head load time (1=2ms, 2=4 ms 
130:          * etc) and ND is set means no DMA. Hardcoded to 6 (HLD=6ms, use DMA).
131:          */
132:         unsigned long max_dtr;          /* Step rate, usec */
133:         unsigned long hlt;              /* Head load/settle time, msec */
134:         unsigned long hut;              /* Head unload time (remnant of 
135:                                          * 8" drives) */
136:         unsigned long srt;              /* Step rate, usec */
137: 
138:         unsigned long spinup;           /* time needed for spinup (expressed
139:                                          * in jiffies) */
140:         unsigned long spindown;         /* timeout needed for spindown */
141:         unsigned char spindown_offset;  /* decides in which position the disk
142:                                          * will stop */
143:         unsigned char select_delay;     /* delay to wait after select */
144:         unsigned char rps;              /* rotations per second */
145:         unsigned char tracks;           /* maximum number of tracks */
146:         unsigned long timeout;          /* timeout for interrupt requests */
147:         
148:         unsigned char interleave_sect;  /* if there are more sectors, use 
149:                                          * interleave */
150:         
151:         struct floppy_max_errors max_errors;
152:         
153:         char flags;                     /* various flags, including ftd_msg */
154: /*
155:  * Announce successful media type detection and media information loss after
156:  * disk changes.
157:  * Also used to enable/disable printing of overrun warnings.
158:  */
159: 
160: #define FTD_MSG 0x10
161: #define FD_BROKEN_DCL 0x20
162: #define FD_DEBUG 0x02
163: #define FD_SILENT_DCL_CLEAR 0x4
164: #define FD_INVERTED_DCL 0x80 /* must be 0x80, because of hardware 
165:                                 considerations */
166: 
167:         char read_track;                /* use readtrack during probing? */
168: 
169: /*
170:  * Auto-detection. Each drive type has eight formats which are
171:  * used in succession to try to read the disk. If the FDC cannot lock onto
172:  * the disk, the next format is tried. This uses the variable 'probing'.
173:  */
174:         short autodetect[8];            /* autodetected formats */
175:         
176:         int checkfreq; /* how often should the drive be checked for disk 
177:                         * changes */
178:         int native_format; /* native format of this drive */
179: };
180: 
181: enum {
182:         FD_NEED_TWADDLE_BIT,    /* more magic */
183:         FD_VERIFY_BIT,          /* inquire for write protection */
184:         FD_DISK_NEWCHANGE_BIT,  /* change detected, and no action undertaken yet
185:                                  * to clear media change status */
186:         FD_UNUSED_BIT,
187:         FD_DISK_CHANGED_BIT,    /* disk has been changed since last i/o */
188:         FD_DISK_WRITABLE_BIT    /* disk is writable */
189: };
190: 
191: #define FDSETDRVPRM _IOW(2, 0x90, struct floppy_drive_params)
192: #define FDGETDRVPRM _IOR(2, 0x11, struct floppy_drive_params)
193: /* set/get drive parameters */
194: 
195: 
196: /*
197:  * Current drive state (not directly modifiable by user, readonly)
198:  */
199: struct floppy_drive_struct {
200:         unsigned long flags;
201: /* values for these flags */
202: #define FD_NEED_TWADDLE (1 << FD_NEED_TWADDLE_BIT)
203: #define FD_VERIFY (1 << FD_VERIFY_BIT)
204: #define FD_DISK_NEWCHANGE (1 << FD_DISK_NEWCHANGE_BIT)
205: #define FD_DISK_CHANGED (1 << FD_DISK_CHANGED_BIT)
206: #define FD_DISK_WRITABLE (1 << FD_DISK_WRITABLE_BIT)
207: 
208:         unsigned long spinup_date;
209:         unsigned long select_date;
210:         unsigned long first_read_date;
211:         short probed_format;
212:         short track; /* current track */
213:         short maxblock; /* id of highest block read */
214:         short maxtrack; /* id of highest half track read */
215:         int generation; /* how many diskchanges? */
216: 
217: /*
218:  * (User-provided) media information is _not_ discarded after a media change
219:  * if the corresponding keep_data flag is non-zero. Positive values are
220:  * decremented after each probe.
221:  */
222:         int keep_data;
223:         
224:         /* Prevent "aliased" accesses. */
225:         int fd_ref;
226:         int fd_device;
227:         unsigned long last_checked; /* when was the drive last checked for a disk 
228:                            * change? */
229:         
230:         char *dmabuf;
231:         int bufblocks;
232: };
233: 
234: #define FDGETDRVSTAT _IOR(2, 0x12, struct floppy_drive_struct)
235: #define FDPOLLDRVSTAT _IOR(2, 0x13, struct floppy_drive_struct)
236: /* get drive state: GET returns the cached state, POLL polls for new state */
237: 
238: 
239: /*
240:  * reset FDC
241:  */
242: enum reset_mode {
243:         FD_RESET_IF_NEEDED,     /* reset only if the reset flags is set */
244:         FD_RESET_IF_RAWCMD,     /* obsolete */
245:         FD_RESET_ALWAYS         /* reset always */
246: };
247: #define FDRESET _IO(2, 0x54)
248: 
249: 
250: /*
251:  * FDC state
252:  */
253: struct floppy_fdc_state {       
254:         int spec1;              /* spec1 value last used */
255:         int spec2;              /* spec2 value last used */
256:         int dtr;
257:         unsigned char version;  /* FDC version code */
258:         unsigned char dor;
259:         unsigned long address;  /* io address */
260:         unsigned int rawcmd:2;
261:         unsigned int reset:1;
262:         unsigned int need_configure:1;
263:         unsigned int perp_mode:2;
264:         unsigned int has_fifo:1;
265:         unsigned int driver_version;    /* version code for floppy driver */
266: #define FD_DRIVER_VERSION 0x100
267: /* user programs using the floppy API should use floppy_fdc_state to
268:  * get the version number of the floppy driver that they are running
269:  * on. If this version number is bigger than the one compiled into the
270:  * user program (the FD_DRIVER_VERSION define), it should be prepared
271:  * to bigger structures
272:  */
273: 
274:         unsigned char track[4];
275:         /* Position of the heads of the 4 units attached to this FDC,
276:          * as stored on the FDC. In the future, the position as stored
277:          * on the FDC might not agree with the actual physical
278:          * position of these drive heads. By allowing such
279:          * disagreement, it will be possible to reset the FDC without
280:          * incurring the expensive cost of repositioning all heads.
281:          * Right now, these positions are hard wired to 0. */
282: 
283: };
284: 
285: #define FDGETFDCSTAT _IOR(2, 0x15, struct floppy_fdc_state)
286: 
287: 
288: /*
289:  * Asynchronous Write error tracking
290:  */
291: struct floppy_write_errors {
292:         /* Write error logging.
293:          *
294:          * These fields can be cleared with the FDWERRORCLR ioctl.
295:          * Only writes that were attempted but failed due to a physical media
296:          * error are logged.  write(2) calls that fail and return an error code
297:          * to the user process are not counted.
298:          */
299: 
300:         unsigned int write_errors;  /* number of physical write errors 
301:                                      * encountered */
302:         
303:         /* position of first and last write errors */
304:         unsigned long first_error_sector;
305:         int           first_error_generation;
306:         unsigned long last_error_sector;
307:         int           last_error_generation;
308:         
309:         unsigned int badness; /* highest retry count for a read or write 
310:                                * operation */
311: };
312: 
313: #define FDWERRORCLR  _IO(2, 0x56)
314: /* clear write error and badness information */
315: #define FDWERRORGET  _IOR(2, 0x17, struct floppy_write_errors)
316: /* get write error and badness information */
317: 
318: 
319: /*
320:  * Raw commands
321:  */
322: /* new interface flag: now we can do them in batches */
323: #define FDHAVEBATCHEDRAWCMD
324: 
325: struct floppy_raw_cmd {
326:         unsigned int flags;
327: #define FD_RAW_READ 1
328: #define FD_RAW_WRITE 2
329: #define FD_RAW_NO_MOTOR 4
330: #define FD_RAW_DISK_CHANGE 4 /* out: disk change flag was set */
331: #define FD_RAW_INTR 8    /* wait for an interrupt */
332: #define FD_RAW_SPIN 0x10 /* spin up the disk for this command */
333: #define FD_RAW_NO_MOTOR_AFTER 0x20 /* switch the motor off after command 
334:                                     * completion */
335: #define FD_RAW_NEED_DISK 0x40  /* this command needs a disk to be present */
336: #define FD_RAW_NEED_SEEK 0x80  /* this command uses an implied seek (soft) */
337: 
338: /* more "in" flags */
339: #define FD_RAW_MORE 0x100  /* more records follow */
340: #define FD_RAW_STOP_IF_FAILURE 0x200 /* stop if we encounter a failure */
341: #define FD_RAW_STOP_IF_SUCCESS 0x400 /* stop if command successful */
342: #define FD_RAW_SOFTFAILURE 0x800 /* consider the return value for failure
343:                                   * detection too */
344: 
345: /* more "out" flags */
346: #define FD_RAW_FAILURE 0x10000 /* command sent to fdc, fdc returned error */
347: #define FD_RAW_HARDFAILURE 0x20000 /* fdc had to be reset, or timed out */
348: 
349:         void *data;
350:         char *kernel_data; /* location of data buffer in the kernel */
351:         struct floppy_raw_cmd *next; /* used for chaining of raw cmd's 
352:                                       * within the kernel */
353:         long length; /* in: length of dma transfer. out: remaining bytes */
354:         long phys_length; /* physical length, if different from dma length */
355:         int buffer_length; /* length of allocated buffer */
356: 
357:         unsigned char rate;
358:         unsigned char cmd_count;
359:         unsigned char cmd[16];
360:         unsigned char reply_count;
361:         unsigned char reply[16];
362:         int track;
363:         int resultcode;
364: 
365:         int reserved1;
366:         int reserved2;
367: };
368: 
369: #define FDRAWCMD _IO(2, 0x58)
370: /* send a raw command to the fdc. Structure size not included, because of
371:  * batches */
372: 
373: #define FDTWADDLE _IO(2, 0x59)
374: /* flicker motor-on bit before reading a sector. Experimental */
375: 
376: 
377: #define FDEJECT _IO(2, 0x5a)
378: /* eject the disk */
379: 
380: 
381: 
382: #endif
383: 


for client (none)
© Andrew Scott 2006 - 2025,
All Rights Reserved
http://www.andrew-scott.uk/
Andrew Scott
http://www.andrew-scott.co.uk/