2 * linux/drivers/block/floppy.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 1993, 1994 Alain Knaff
6 * Copyright (C) 1998 Alan Cox
10 * 02.12.91 - Changed to static variables to indicate need for reset
11 * and recalibrate. This makes some things easier (output_byte reset
12 * checking etc), and means less interrupt jumping in case of errors,
13 * so the code is hopefully easier to understand.
17 * This file is certainly a mess. I've tried my best to get it working,
18 * but I don't like programming floppies, and I have only one anyway.
19 * Urgel. I should check for more errors, and do more graceful error
20 * recovery. Seems there are problems with several drives. I've tried to
21 * correct them. No promises.
25 * As with hd.c, all routines within this file can (and will) be called
26 * by interrupts, so extreme caution is needed. A hardware interrupt
27 * handler may not sleep, or a kernel panic will happen. Thus I cannot
28 * call "floppy-on" directly, but have to set a special timer interrupt
33 * 28.02.92 - made track-buffering routines, based on the routines written
34 * by entropy@wintermute.wpi.edu (Lawrence Foard). Linus.
38 * Automatic floppy-detection and formatting written by Werner Almesberger
39 * (almesber@nessie.cs.id.ethz.ch), who also corrected some problems with
40 * the floppy-change signal detection.
44 * 1992/7/22 -- Hennus Bergman: Added better error reporting, fixed
45 * FDC data overrun bug, added some preliminary stuff for vertical
48 * 1992/9/17: Added DMA allocation & DMA functions. -- hhb.
50 * TODO: Errors are still not counted properly.
54 * Modifications for ``Sector Shifting'' by Rob Hooft (hooft@chem.ruu.nl)
55 * modeled after the freeware MS-DOS program fdformat/88 V1.8 by
56 * Christoph H. Hochst\"atter.
57 * I have fixed the shift values to the ones I always use. Maybe a new
58 * ioctl() should be created to be able to modify them.
59 * There is a bug in the driver that makes it impossible to format a
60 * floppy as the first thing after bootup.
64 * 1993/4/29 -- Linus -- cleaned up the timer handling in the kernel, and
65 * this helped the floppy driver as well. Much cleaner, and still seems to
69 /* 1994/6/24 --bbroad-- added the floppy table entries and made
70 * minor modifications to allow 2.88 floppies to be run.
73 /* 1994/7/13 -- Paul Vojta -- modified the probing code to allow three or more
78 * 1994/8/8 -- Alain Knaff -- Switched to fdpatch driver: Support for bigger
79 * format bug fixes, but unfortunately some new bugs too...
82 /* 1994/9/17 -- Koen Holtman -- added logging of physical floppy write
83 * errors to allow safe writing by specialized programs.
86 /* 1995/4/24 -- Dan Fandrich -- added support for Commodore 1581 3.5" disks
87 * by defining bit 1 of the "stretch" parameter to mean put sectors on the
88 * opposite side of the disk, leaving the sector IDs alone (i.e. Commodore's
89 * drives are "upside-down").
93 * 1995/8/26 -- Andreas Busse -- added Mips support.
97 * 1995/10/18 -- Ralf Baechle -- Portability cleanup; move machine dependent
98 * features to asm/floppy.h.
102 * 1998/1/21 -- Richard Gooch <rgooch@atnf.csiro.au> -- devfs support
106 * 1998/05/07 -- Russell King -- More portability cleanups; moved definition of
107 * interrupt and dma channel to asm/floppy.h. Cleaned up some formatting &
108 * use of '0' for NULL.
112 * 1998/06/07 -- Alan Cox -- Merged the 2.0.34 fixes for resource allocation
117 * 1998/09/20 -- David Weinehall -- Added slow-down code for buggy PS/2-drives.
121 * 1999/08/13 -- Paul Slootman -- floppy stopped working on Alpha after 24
122 * days, 6 hours, 32 minutes and 32 seconds (i.e. MAXINT jiffies; ints were
123 * being used to store jiffies, which are unsigned longs).
127 * 2000/08/28 -- Arnaldo Carvalho de Melo <acme@conectiva.com.br>
128 * - get rid of check_region
133 * 2001/08/26 -- Paul Gortmaker - fix insmod oops on machines with no
134 * floppy controller (lingering task on list after module is gone... boom.)
138 * 2002/02/07 -- Anton Altaparmakov - Fix io ports reservation to correct range
139 * (0x3f2-0x3f5, 0x3f7). This fix is a bit of a hack but the proper fix
140 * requires many non-obvious changes in arch dependent code.
143 /* 2003/07/28 -- Daniele Bellucci <bellucda@tiscali.it>.
144 * Better audit of register_blkdev.
147 #undef FLOPPY_SILENT_DCL_CLEAR
149 #define REALLY_SLOW_IO
153 #define DPRINT(format, args...) \
154 pr_info("floppy%d: " format, current_drive, ##args)
156 #define DCL_DEBUG /* debug disk change line */
158 #define debug_dcl(test, fmt, args...) \
159 do { if ((test) & FD_DEBUG) DPRINT(fmt, ##args); } while (0)
161 #define debug_dcl(test, fmt, args...) \
162 do { if (0) DPRINT(fmt, ##args); } while (0)
165 /* do print messages for unexpected interrupts */
166 static int print_unex = 1;
167 #include <linux/module.h>
168 #include <linux/sched.h>
169 #include <linux/fs.h>
170 #include <linux/kernel.h>
171 #include <linux/timer.h>
172 #include <linux/workqueue.h>
174 #include <linux/fdreg.h>
175 #include <linux/fd.h>
176 #include <linux/hdreg.h>
177 #include <linux/errno.h>
178 #include <linux/slab.h>
179 #include <linux/mm.h>
180 #include <linux/bio.h>
181 #include <linux/string.h>
182 #include <linux/jiffies.h>
183 #include <linux/fcntl.h>
184 #include <linux/delay.h>
185 #include <linux/mc146818rtc.h> /* CMOS defines */
186 #include <linux/ioport.h>
187 #include <linux/interrupt.h>
188 #include <linux/init.h>
189 #include <linux/platform_device.h>
190 #include <linux/mod_devicetable.h>
191 #include <linux/mutex.h>
192 #include <linux/io.h>
193 #include <linux/uaccess.h>
196 * PS/2 floppies have much slower step rates than regular floppies.
197 * It's been recommended that take about 1/4 of the default speed
198 * in some more extreme cases.
200 static DEFINE_MUTEX(floppy_mutex);
201 static int slow_floppy;
206 static int FLOPPY_IRQ = 6;
207 static int FLOPPY_DMA = 2;
208 static int can_use_virtual_dma = 2;
210 * can use virtual DMA:
211 * 0 = use of virtual DMA disallowed by config
212 * 1 = use of virtual DMA prescribed by config
213 * 2 = no virtual DMA preference configured. By default try hard DMA,
214 * but fall back on virtual DMA when not enough memory available
217 static int use_virtual_dma;
221 * 1 using virtual DMA
222 * This variable is set to virtual when a DMA mem problem arises, and
223 * reset back in floppy_grab_irq_and_dma.
224 * It is not safe to reset it in other circumstances, because the floppy
225 * driver may have several buffers in use at once, and we do currently not
226 * record each buffers capabilities
229 static DEFINE_SPINLOCK(floppy_lock);
231 static unsigned short virtual_dma_port = 0x3f0;
232 irqreturn_t floppy_interrupt(int irq, void *dev_id);
233 static int set_dor(int fdc, char mask, char data);
235 #define K_64 0x10000 /* 64KB */
237 /* the following is the mask of allowed drives. By default units 2 and
238 * 3 of both floppy controllers are disabled, because switching on the
239 * motor of these drives causes system hangs on some PCI computers. drive
240 * 0 is the low bit (0x1), and drive 7 is the high bit (0x80). Bits are on if
241 * a drive is allowed.
243 * NOTE: This must come before we include the arch floppy header because
244 * some ports reference this variable from there. -DaveM
247 static int allowed_drive_mask = 0x33;
249 #include <asm/floppy.h>
251 static int irqdma_allocated;
253 #include <linux/blkdev.h>
254 #include <linux/blkpg.h>
255 #include <linux/cdrom.h> /* for the compatibility eject ioctl */
256 #include <linux/completion.h>
258 static struct request *current_req;
259 static void do_fd_request(struct request_queue *q);
260 static int set_next_request(void);
262 #ifndef fd_get_dma_residue
263 #define fd_get_dma_residue() get_dma_residue(FLOPPY_DMA)
266 /* Dma Memory related stuff */
268 #ifndef fd_dma_mem_free
269 #define fd_dma_mem_free(addr, size) free_pages(addr, get_order(size))
272 #ifndef fd_dma_mem_alloc
273 #define fd_dma_mem_alloc(size) __get_dma_pages(GFP_KERNEL, get_order(size))
276 static inline void fallback_on_nodma_alloc(char **addr, size_t l)
278 #ifdef FLOPPY_CAN_FALLBACK_ON_NODMA
280 return; /* we have the memory */
281 if (can_use_virtual_dma != 2)
282 return; /* no fallback allowed */
283 pr_info("DMA memory shortage. Temporarily falling back on virtual DMA\n");
284 *addr = (char *)nodma_mem_alloc(l);
290 /* End dma memory related stuff */
292 static unsigned long fake_change;
293 static bool initialized;
295 #define ITYPE(x) (((x) >> 2) & 0x1f)
296 #define TOMINOR(x) ((x & 3) | ((x & 4) << 5))
297 #define UNIT(x) ((x) & 0x03) /* drive on fdc */
298 #define FDC(x) (((x) & 0x04) >> 2) /* fdc of drive */
299 /* reverse mapping from unit and fdc to drive */
300 #define REVDRIVE(fdc, unit) ((unit) + ((fdc) << 2))
302 #define DP (&drive_params[current_drive])
303 #define DRS (&drive_state[current_drive])
304 #define DRWE (&write_errors[current_drive])
305 #define FDCS (&fdc_state[fdc])
307 #define UDP (&drive_params[drive])
308 #define UDRS (&drive_state[drive])
309 #define UDRWE (&write_errors[drive])
310 #define UFDCS (&fdc_state[FDC(drive)])
312 #define PH_HEAD(floppy, head) (((((floppy)->stretch & 2) >> 1) ^ head) << 2)
313 #define STRETCH(floppy) ((floppy)->stretch & FD_STRETCH)
316 #define COMMAND (raw_cmd->cmd[0])
317 #define DR_SELECT (raw_cmd->cmd[1])
318 #define TRACK (raw_cmd->cmd[2])
319 #define HEAD (raw_cmd->cmd[3])
320 #define SECTOR (raw_cmd->cmd[4])
321 #define SIZECODE (raw_cmd->cmd[5])
322 #define SECT_PER_TRACK (raw_cmd->cmd[6])
323 #define GAP (raw_cmd->cmd[7])
324 #define SIZECODE2 (raw_cmd->cmd[8])
328 #define F_SIZECODE (raw_cmd->cmd[2])
329 #define F_SECT_PER_TRACK (raw_cmd->cmd[3])
330 #define F_GAP (raw_cmd->cmd[4])
331 #define F_FILL (raw_cmd->cmd[5])
335 * Maximum disk size (in kilobytes).
336 * This default is used whenever the current disk size is unknown.
337 * [Now it is rather a minimum]
339 #define MAX_DISK_SIZE 4 /* 3984 */
342 * globals used by 'result()'
344 #define MAX_REPLIES 16
345 static unsigned char reply_buffer[MAX_REPLIES];
346 static int inr; /* size of reply buffer, when called from interrupt */
347 #define ST0 (reply_buffer[0])
348 #define ST1 (reply_buffer[1])
349 #define ST2 (reply_buffer[2])
350 #define ST3 (reply_buffer[0]) /* result of GETSTATUS */
351 #define R_TRACK (reply_buffer[3])
352 #define R_HEAD (reply_buffer[4])
353 #define R_SECTOR (reply_buffer[5])
354 #define R_SIZECODE (reply_buffer[6])
356 #define SEL_DLY (2 * HZ / 100)
359 * this struct defines the different floppy drive types.
362 struct floppy_drive_params params;
363 const char *name; /* name printed while booting */
364 } default_drive_params[] = {
365 /* NOTE: the time values in jiffies should be in msec!
367 | Maximum data rate supported by drive type
368 | | Head load time, msec
369 | | | Head unload time, msec (not used)
370 | | | | Step rate interval, usec
371 | | | | | Time needed for spinup time (jiffies)
372 | | | | | | Timeout for spinning down (jiffies)
373 | | | | | | | Spindown offset (where disk stops)
374 | | | | | | | | Select delay
375 | | | | | | | | | RPS
376 | | | | | | | | | | Max number of tracks
377 | | | | | | | | | | | Interrupt timeout
378 | | | | | | | | | | | | Max nonintlv. sectors
379 | | | | | | | | | | | | | -Max Errors- flags */
380 {{0, 500, 16, 16, 8000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 80, 3*HZ, 20, {3,1,2,0,2}, 0,
381 0, { 7, 4, 8, 2, 1, 5, 3,10}, 3*HZ/2, 0 }, "unknown" },
383 {{1, 300, 16, 16, 8000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 40, 3*HZ, 17, {3,1,2,0,2}, 0,
384 0, { 1, 0, 0, 0, 0, 0, 0, 0}, 3*HZ/2, 1 }, "360K PC" }, /*5 1/4 360 KB PC*/
386 {{2, 500, 16, 16, 6000, 4*HZ/10, 3*HZ, 14, SEL_DLY, 6, 83, 3*HZ, 17, {3,1,2,0,2}, 0,
387 0, { 2, 5, 6,23,10,20,12, 0}, 3*HZ/2, 2 }, "1.2M" }, /*5 1/4 HD AT*/
389 {{3, 250, 16, 16, 3000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 83, 3*HZ, 20, {3,1,2,0,2}, 0,
390 0, { 4,22,21,30, 3, 0, 0, 0}, 3*HZ/2, 4 }, "720k" }, /*3 1/2 DD*/
392 {{4, 500, 16, 16, 4000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 20, {3,1,2,0,2}, 0,
393 0, { 7, 4,25,22,31,21,29,11}, 3*HZ/2, 7 }, "1.44M" }, /*3 1/2 HD*/
395 {{5, 1000, 15, 8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 40, {3,1,2,0,2}, 0,
396 0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M AMI BIOS" }, /*3 1/2 ED*/
398 {{6, 1000, 15, 8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 40, {3,1,2,0,2}, 0,
399 0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M" } /*3 1/2 ED*/
400 /* | --autodetected formats--- | | |
401 * read_track | | Name printed when booting
403 * Frequency of disk change checks */
406 static struct floppy_drive_params drive_params[N_DRIVE];
407 static struct floppy_drive_struct drive_state[N_DRIVE];
408 static struct floppy_write_errors write_errors[N_DRIVE];
409 static struct timer_list motor_off_timer[N_DRIVE];
410 static struct gendisk *disks[N_DRIVE];
411 static struct block_device *opened_bdev[N_DRIVE];
412 static DEFINE_MUTEX(open_lock);
413 static struct floppy_raw_cmd *raw_cmd, default_raw_cmd;
414 static int fdc_queue;
417 * This struct defines the different floppy types.
419 * Bit 0 of 'stretch' tells if the tracks need to be doubled for some
420 * types (e.g. 360kB diskette in 1.2MB drive, etc.). Bit 1 of 'stretch'
421 * tells if the disk is in Commodore 1581 format, which means side 0 sectors
422 * are located on side 1 of the disk but with a side 0 ID, and vice-versa.
423 * This is the same as the Sharp MZ-80 5.25" CP/M disk format, except that the
424 * 1581's logical side 0 is on physical side 1, whereas the Sharp's logical
425 * side 0 is on physical side 0 (but with the misnamed sector IDs).
426 * 'stretch' should probably be renamed to something more general, like
429 * Bits 2 through 9 of 'stretch' tell the number of the first sector.
430 * The LSB (bit 2) is flipped. For most disks, the first sector
431 * is 1 (represented by 0x00<<2). For some CP/M and music sampler
432 * disks (such as Ensoniq EPS 16plus) it is 0 (represented as 0x01<<2).
433 * For Amstrad CPC disks it is 0xC1 (represented as 0xC0<<2).
435 * Other parameters should be self-explanatory (see also setfdprm(8)).
444 | | | | | | Data rate, | 0x40 for perp
445 | | | | | | | Spec1 (stepping rate, head unload
446 | | | | | | | | /fmt gap (gap2) */
447 static struct floppy_struct floppy_type[32] = {
448 { 0, 0,0, 0,0,0x00,0x00,0x00,0x00,NULL }, /* 0 no testing */
449 { 720, 9,2,40,0,0x2A,0x02,0xDF,0x50,"d360" }, /* 1 360KB PC */
450 { 2400,15,2,80,0,0x1B,0x00,0xDF,0x54,"h1200" }, /* 2 1.2MB AT */
451 { 720, 9,1,80,0,0x2A,0x02,0xDF,0x50,"D360" }, /* 3 360KB SS 3.5" */
452 { 1440, 9,2,80,0,0x2A,0x02,0xDF,0x50,"D720" }, /* 4 720KB 3.5" */
453 { 720, 9,2,40,1,0x23,0x01,0xDF,0x50,"h360" }, /* 5 360KB AT */
454 { 1440, 9,2,80,0,0x23,0x01,0xDF,0x50,"h720" }, /* 6 720KB AT */
455 { 2880,18,2,80,0,0x1B,0x00,0xCF,0x6C,"H1440" }, /* 7 1.44MB 3.5" */
456 { 5760,36,2,80,0,0x1B,0x43,0xAF,0x54,"E2880" }, /* 8 2.88MB 3.5" */
457 { 6240,39,2,80,0,0x1B,0x43,0xAF,0x28,"E3120" }, /* 9 3.12MB 3.5" */
459 { 2880,18,2,80,0,0x25,0x00,0xDF,0x02,"h1440" }, /* 10 1.44MB 5.25" */
460 { 3360,21,2,80,0,0x1C,0x00,0xCF,0x0C,"H1680" }, /* 11 1.68MB 3.5" */
461 { 820,10,2,41,1,0x25,0x01,0xDF,0x2E,"h410" }, /* 12 410KB 5.25" */
462 { 1640,10,2,82,0,0x25,0x02,0xDF,0x2E,"H820" }, /* 13 820KB 3.5" */
463 { 2952,18,2,82,0,0x25,0x00,0xDF,0x02,"h1476" }, /* 14 1.48MB 5.25" */
464 { 3444,21,2,82,0,0x25,0x00,0xDF,0x0C,"H1722" }, /* 15 1.72MB 3.5" */
465 { 840,10,2,42,1,0x25,0x01,0xDF,0x2E,"h420" }, /* 16 420KB 5.25" */
466 { 1660,10,2,83,0,0x25,0x02,0xDF,0x2E,"H830" }, /* 17 830KB 3.5" */
467 { 2988,18,2,83,0,0x25,0x00,0xDF,0x02,"h1494" }, /* 18 1.49MB 5.25" */
468 { 3486,21,2,83,0,0x25,0x00,0xDF,0x0C,"H1743" }, /* 19 1.74 MB 3.5" */
470 { 1760,11,2,80,0,0x1C,0x09,0xCF,0x00,"h880" }, /* 20 880KB 5.25" */
471 { 2080,13,2,80,0,0x1C,0x01,0xCF,0x00,"D1040" }, /* 21 1.04MB 3.5" */
472 { 2240,14,2,80,0,0x1C,0x19,0xCF,0x00,"D1120" }, /* 22 1.12MB 3.5" */
473 { 3200,20,2,80,0,0x1C,0x20,0xCF,0x2C,"h1600" }, /* 23 1.6MB 5.25" */
474 { 3520,22,2,80,0,0x1C,0x08,0xCF,0x2e,"H1760" }, /* 24 1.76MB 3.5" */
475 { 3840,24,2,80,0,0x1C,0x20,0xCF,0x00,"H1920" }, /* 25 1.92MB 3.5" */
476 { 6400,40,2,80,0,0x25,0x5B,0xCF,0x00,"E3200" }, /* 26 3.20MB 3.5" */
477 { 7040,44,2,80,0,0x25,0x5B,0xCF,0x00,"E3520" }, /* 27 3.52MB 3.5" */
478 { 7680,48,2,80,0,0x25,0x63,0xCF,0x00,"E3840" }, /* 28 3.84MB 3.5" */
479 { 3680,23,2,80,0,0x1C,0x10,0xCF,0x00,"H1840" }, /* 29 1.84MB 3.5" */
481 { 1600,10,2,80,0,0x25,0x02,0xDF,0x2E,"D800" }, /* 30 800KB 3.5" */
482 { 3200,20,2,80,0,0x1C,0x00,0xCF,0x2C,"H1600" }, /* 31 1.6MB 3.5" */
485 #define SECTSIZE (_FD_SECTSIZE(*floppy))
487 /* Auto-detection: Disk type used until the next media change occurs. */
488 static struct floppy_struct *current_type[N_DRIVE];
491 * User-provided type information. current_type points to
492 * the respective entry of this array.
494 static struct floppy_struct user_params[N_DRIVE];
496 static sector_t floppy_sizes[256];
498 static char floppy_device_name[] = "floppy";
501 * The driver is trying to determine the correct media format
502 * while probing is set. rw_interrupt() clears it after a
507 /* Synchronization of FDC access. */
508 #define FD_COMMAND_NONE -1
509 #define FD_COMMAND_ERROR 2
510 #define FD_COMMAND_OKAY 3
512 static volatile int command_status = FD_COMMAND_NONE;
513 static unsigned long fdc_busy;
514 static DECLARE_WAIT_QUEUE_HEAD(fdc_wait);
515 static DECLARE_WAIT_QUEUE_HEAD(command_done);
517 /* Errors during formatting are counted here. */
518 static int format_errors;
520 /* Format request descriptor. */
521 static struct format_descr format_req;
524 * Rate is 0 for 500kb/s, 1 for 300kbps, 2 for 250kbps
525 * Spec1 is 0xSH, where S is stepping rate (F=1ms, E=2ms, D=3ms etc),
526 * H is head unload time (1=16ms, 2=32ms, etc)
531 * Because these are written to by the DMA controller, they must
532 * not contain a 64k byte boundary crossing, or data will be
535 static char *floppy_track_buffer;
536 static int max_buffer_sectors;
539 typedef void (*done_f)(int);
540 static const struct cont_t {
541 void (*interrupt)(void);
542 /* this is called after the interrupt of the
544 void (*redo)(void); /* this is called to retry the operation */
545 void (*error)(void); /* this is called to tally an error */
546 done_f done; /* this is called to say if the operation has
547 * succeeded/failed */
550 static void floppy_ready(void);
551 static void floppy_start(void);
552 static void process_fd_request(void);
553 static void recalibrate_floppy(void);
554 static void floppy_shutdown(struct work_struct *);
556 static int floppy_request_regions(int);
557 static void floppy_release_regions(int);
558 static int floppy_grab_irq_and_dma(void);
559 static void floppy_release_irq_and_dma(void);
562 * The "reset" variable should be tested whenever an interrupt is scheduled,
563 * after the commands have been sent. This is to ensure that the driver doesn't
564 * get wedged when the interrupt doesn't come because of a failed command.
565 * reset doesn't need to be tested before sending commands, because
566 * output_byte is automatically disabled when reset is set.
568 static void reset_fdc(void);
571 * These are global variables, as that's the easiest way to give
572 * information to interrupts. They are the data used for the current
576 #define NEED_1_RECAL -2
577 #define NEED_2_RECAL -3
579 static atomic_t usage_count = ATOMIC_INIT(0);
581 /* buffer related variables */
582 static int buffer_track = -1;
583 static int buffer_drive = -1;
584 static int buffer_min = -1;
585 static int buffer_max = -1;
587 /* fdc related variables, should end up in a struct */
588 static struct floppy_fdc_state fdc_state[N_FDC];
589 static int fdc; /* current fdc */
591 static struct workqueue_struct *floppy_wq;
593 static struct floppy_struct *_floppy = floppy_type;
594 static unsigned char current_drive;
595 static long current_count_sectors;
596 static unsigned char fsector_t; /* sector in track */
597 static unsigned char in_sector_offset; /* offset within physical sector,
598 * expressed in units of 512 bytes */
600 static inline bool drive_no_geom(int drive)
602 return !current_type[drive] && !ITYPE(UDRS->fd_device);
606 static inline int fd_eject(int drive)
617 static long unsigned debugtimer;
619 static inline void set_debugt(void)
621 debugtimer = jiffies;
624 static inline void debugt(const char *func, const char *msg)
626 if (DP->flags & DEBUGT)
627 pr_info("%s:%s dtime=%lu\n", func, msg, jiffies - debugtimer);
630 static inline void set_debugt(void) { }
631 static inline void debugt(const char *func, const char *msg) { }
635 static DECLARE_DELAYED_WORK(fd_timeout, floppy_shutdown);
636 static const char *timeout_message;
638 static void is_alive(const char *func, const char *message)
640 /* this routine checks whether the floppy driver is "alive" */
641 if (test_bit(0, &fdc_busy) && command_status < 2 &&
642 !delayed_work_pending(&fd_timeout)) {
643 DPRINT("%s: timeout handler died. %s\n", func, message);
647 static void (*do_floppy)(void) = NULL;
651 static void (*lasthandler)(void);
652 static unsigned long interruptjiffies;
653 static unsigned long resultjiffies;
654 static int resultsize;
655 static unsigned long lastredo;
657 static struct output_log {
659 unsigned char status;
660 unsigned long jiffies;
661 } output_log[OLOGSIZE];
663 static int output_log_pos;
665 #define current_reqD -1
666 #define MAXTIMEOUT -2
668 static void __reschedule_timeout(int drive, const char *message)
672 if (drive == current_reqD)
673 drive = current_drive;
675 if (drive < 0 || drive >= N_DRIVE) {
679 delay = UDP->timeout;
681 queue_delayed_work(floppy_wq, &fd_timeout, delay);
682 if (UDP->flags & FD_DEBUG)
683 DPRINT("reschedule timeout %s\n", message);
684 timeout_message = message;
687 static void reschedule_timeout(int drive, const char *message)
691 spin_lock_irqsave(&floppy_lock, flags);
692 __reschedule_timeout(drive, message);
693 spin_unlock_irqrestore(&floppy_lock, flags);
696 #define INFBOUND(a, b) (a) = max_t(int, a, b)
697 #define SUPBOUND(a, b) (a) = min_t(int, a, b)
700 * Bottom half floppy driver.
701 * ==========================
703 * This part of the file contains the code talking directly to the hardware,
704 * and also the main service loop (seek-configure-spinup-command)
709 * This routine is responsible for maintaining the FD_DISK_CHANGE flag,
710 * and the last_checked date.
712 * last_checked is the date of the last check which showed 'no disk change'
713 * FD_DISK_CHANGE is set under two conditions:
714 * 1. The floppy has been changed after some i/o to that floppy already
716 * 2. No floppy disk is in the drive. This is done in order to ensure that
717 * requests are quickly flushed in case there is no disk in the drive. It
718 * follows that FD_DISK_CHANGE can only be cleared if there is a disk in
721 * For 1., maxblock is observed. Maxblock is 0 if no i/o has taken place yet.
722 * For 2., FD_DISK_NEWCHANGE is watched. FD_DISK_NEWCHANGE is cleared on
723 * each seek. If a disk is present, the disk change line should also be
724 * cleared on each seek. Thus, if FD_DISK_NEWCHANGE is clear, but the disk
725 * change line is set, this means either that no disk is in the drive, or
726 * that it has been removed since the last seek.
728 * This means that we really have a third possibility too:
729 * The floppy has been changed after the last seek.
732 static int disk_change(int drive)
734 int fdc = FDC(drive);
736 if (time_before(jiffies, UDRS->select_date + UDP->select_delay))
737 DPRINT("WARNING disk change called early\n");
738 if (!(FDCS->dor & (0x10 << UNIT(drive))) ||
739 (FDCS->dor & 3) != UNIT(drive) || fdc != FDC(drive)) {
740 DPRINT("probing disk change on unselected drive\n");
741 DPRINT("drive=%d fdc=%d dor=%x\n", drive, FDC(drive),
742 (unsigned int)FDCS->dor);
745 debug_dcl(UDP->flags,
746 "checking disk change line for drive %d\n", drive);
747 debug_dcl(UDP->flags, "jiffies=%lu\n", jiffies);
748 debug_dcl(UDP->flags, "disk change line=%x\n", fd_inb(FD_DIR) & 0x80);
749 debug_dcl(UDP->flags, "flags=%lx\n", UDRS->flags);
751 if (UDP->flags & FD_BROKEN_DCL)
752 return test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
753 if ((fd_inb(FD_DIR) ^ UDP->flags) & 0x80) {
754 set_bit(FD_VERIFY_BIT, &UDRS->flags);
755 /* verify write protection */
757 if (UDRS->maxblock) /* mark it changed */
758 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
760 /* invalidate its geometry */
761 if (UDRS->keep_data >= 0) {
762 if ((UDP->flags & FTD_MSG) &&
763 current_type[drive] != NULL)
764 DPRINT("Disk type is undefined after disk change\n");
765 current_type[drive] = NULL;
766 floppy_sizes[TOMINOR(drive)] = MAX_DISK_SIZE << 1;
771 UDRS->last_checked = jiffies;
772 clear_bit(FD_DISK_NEWCHANGE_BIT, &UDRS->flags);
777 static inline int is_selected(int dor, int unit)
779 return ((dor & (0x10 << unit)) && (dor & 3) == unit);
782 static bool is_ready_state(int status)
784 int state = status & (STATUS_READY | STATUS_DIR | STATUS_DMA);
785 return state == STATUS_READY;
788 static int set_dor(int fdc, char mask, char data)
792 unsigned char newdor;
793 unsigned char olddor;
795 if (FDCS->address == -1)
799 newdor = (olddor & mask) | data;
800 if (newdor != olddor) {
802 if (is_selected(olddor, unit) && !is_selected(newdor, unit)) {
803 drive = REVDRIVE(fdc, unit);
804 debug_dcl(UDP->flags,
805 "calling disk change from set_dor\n");
809 fd_outb(newdor, FD_DOR);
812 if (!is_selected(olddor, unit) && is_selected(newdor, unit)) {
813 drive = REVDRIVE(fdc, unit);
814 UDRS->select_date = jiffies;
820 static void twaddle(void)
822 if (DP->select_delay)
824 fd_outb(FDCS->dor & ~(0x10 << UNIT(current_drive)), FD_DOR);
825 fd_outb(FDCS->dor, FD_DOR);
826 DRS->select_date = jiffies;
830 * Reset all driver information about the current fdc.
831 * This is needed after a reset, and after a raw command.
833 static void reset_fdc_info(int mode)
837 FDCS->spec1 = FDCS->spec2 = -1;
838 FDCS->need_configure = 1;
841 for (drive = 0; drive < N_DRIVE; drive++)
842 if (FDC(drive) == fdc && (mode || UDRS->track != NEED_1_RECAL))
843 UDRS->track = NEED_2_RECAL;
846 /* selects the fdc and drive, and enables the fdc's input/dma. */
847 static void set_fdc(int drive)
849 if (drive >= 0 && drive < N_DRIVE) {
851 current_drive = drive;
853 if (fdc != 1 && fdc != 0) {
854 pr_info("bad fdc value\n");
859 set_dor(1 - fdc, ~8, 0);
861 if (FDCS->rawcmd == 2)
863 if (fd_inb(FD_STATUS) != STATUS_READY)
867 /* locks the driver */
868 static int lock_fdc(int drive, bool interruptible)
870 if (WARN(atomic_read(&usage_count) == 0,
871 "Trying to lock fdc while usage count=0\n"))
874 if (wait_event_interruptible(fdc_wait, !test_and_set_bit(0, &fdc_busy)))
877 command_status = FD_COMMAND_NONE;
879 reschedule_timeout(drive, "lock fdc");
884 /* unlocks the driver */
885 static void unlock_fdc(void)
887 if (!test_bit(0, &fdc_busy))
888 DPRINT("FDC access conflict!\n");
891 command_status = FD_COMMAND_NONE;
892 __cancel_delayed_work(&fd_timeout);
895 clear_bit(0, &fdc_busy);
899 /* switches the motor off after a given timeout */
900 static void motor_off_callback(unsigned long nr)
902 unsigned char mask = ~(0x10 << UNIT(nr));
904 set_dor(FDC(nr), mask, 0);
907 /* schedules motor off */
908 static void floppy_off(unsigned int drive)
910 unsigned long volatile delta;
911 int fdc = FDC(drive);
913 if (!(FDCS->dor & (0x10 << UNIT(drive))))
916 del_timer(motor_off_timer + drive);
918 /* make spindle stop in a position which minimizes spinup time
921 delta = jiffies - UDRS->first_read_date + HZ -
922 UDP->spindown_offset;
923 delta = ((delta * UDP->rps) % HZ) / UDP->rps;
924 motor_off_timer[drive].expires =
925 jiffies + UDP->spindown - delta;
927 add_timer(motor_off_timer + drive);
931 * cycle through all N_DRIVE floppy drives, for disk change testing.
932 * stopping at current drive. This is done before any long operation, to
933 * be sure to have up to date disk change information.
935 static void scandrives(void)
941 if (DP->select_delay)
944 saved_drive = current_drive;
945 for (i = 0; i < N_DRIVE; i++) {
946 drive = (saved_drive + i + 1) % N_DRIVE;
947 if (UDRS->fd_ref == 0 || UDP->select_delay != 0)
948 continue; /* skip closed drives */
950 if (!(set_dor(fdc, ~3, UNIT(drive) | (0x10 << UNIT(drive))) &
951 (0x10 << UNIT(drive))))
952 /* switch the motor off again, if it was off to
954 set_dor(fdc, ~(0x10 << UNIT(drive)), 0);
956 set_fdc(saved_drive);
959 static void empty(void)
963 static DECLARE_WORK(floppy_work, NULL);
965 static void schedule_bh(void (*handler)(void))
967 WARN_ON(work_pending(&floppy_work));
969 PREPARE_WORK(&floppy_work, (work_func_t)handler);
970 queue_work(floppy_wq, &floppy_work);
973 static DECLARE_DELAYED_WORK(fd_timer, NULL);
975 static void cancel_activity(void)
978 cancel_delayed_work_sync(&fd_timer);
979 cancel_work_sync(&floppy_work);
982 /* this function makes sure that the disk stays in the drive during the
984 static void fd_watchdog(struct work_struct *arg)
986 debug_dcl(DP->flags, "calling disk change from watchdog\n");
988 if (disk_change(current_drive)) {
989 DPRINT("disk removed during i/o\n");
994 cancel_delayed_work(&fd_timer);
995 PREPARE_DELAYED_WORK(&fd_timer, fd_watchdog);
996 queue_delayed_work(floppy_wq, &fd_timer, HZ / 10);
1000 static void main_command_interrupt(void)
1002 cancel_delayed_work(&fd_timer);
1006 /* waits for a delay (spinup or select) to pass */
1007 static int fd_wait_for_completion(unsigned long expires, work_func_t function)
1010 reset_fdc(); /* do the reset during sleep to win time
1011 * if we don't need to sleep, it's a good
1012 * occasion anyways */
1016 if (time_before(jiffies, expires)) {
1017 cancel_delayed_work(&fd_timer);
1018 PREPARE_DELAYED_WORK(&fd_timer, function);
1019 queue_delayed_work(floppy_wq, &fd_timer, expires - jiffies);
1025 static void setup_DMA(void)
1029 if (raw_cmd->length == 0) {
1032 pr_info("zero dma transfer size:");
1033 for (i = 0; i < raw_cmd->cmd_count; i++)
1034 pr_cont("%x,", raw_cmd->cmd[i]);
1040 if (((unsigned long)raw_cmd->kernel_data) % 512) {
1041 pr_info("non aligned address: %p\n", raw_cmd->kernel_data);
1046 f = claim_dma_lock();
1049 if (fd_dma_setup(raw_cmd->kernel_data, raw_cmd->length,
1050 (raw_cmd->flags & FD_RAW_READ) ?
1051 DMA_MODE_READ : DMA_MODE_WRITE, FDCS->address) < 0) {
1052 release_dma_lock(f);
1057 release_dma_lock(f);
1060 fd_cacheflush(raw_cmd->kernel_data, raw_cmd->length);
1061 fd_set_dma_mode((raw_cmd->flags & FD_RAW_READ) ?
1062 DMA_MODE_READ : DMA_MODE_WRITE);
1063 fd_set_dma_addr(raw_cmd->kernel_data);
1064 fd_set_dma_count(raw_cmd->length);
1065 virtual_dma_port = FDCS->address;
1067 release_dma_lock(f);
1071 static void show_floppy(void);
1073 /* waits until the fdc becomes ready */
1074 static int wait_til_ready(void)
1081 for (counter = 0; counter < 10000; counter++) {
1082 status = fd_inb(FD_STATUS);
1083 if (status & STATUS_READY)
1087 DPRINT("Getstatus times out (%x) on fdc %d\n", status, fdc);
1094 /* sends a command byte to the fdc */
1095 static int output_byte(char byte)
1097 int status = wait_til_ready();
1102 if (is_ready_state(status)) {
1103 fd_outb(byte, FD_DATA);
1104 output_log[output_log_pos].data = byte;
1105 output_log[output_log_pos].status = status;
1106 output_log[output_log_pos].jiffies = jiffies;
1107 output_log_pos = (output_log_pos + 1) % OLOGSIZE;
1112 DPRINT("Unable to send byte %x to FDC. Fdc=%x Status=%x\n",
1119 /* gets the response from the fdc */
1120 static int result(void)
1125 for (i = 0; i < MAX_REPLIES; i++) {
1126 status = wait_til_ready();
1129 status &= STATUS_DIR | STATUS_READY | STATUS_BUSY | STATUS_DMA;
1130 if ((status & ~STATUS_BUSY) == STATUS_READY) {
1131 resultjiffies = jiffies;
1135 if (status == (STATUS_DIR | STATUS_READY | STATUS_BUSY))
1136 reply_buffer[i] = fd_inb(FD_DATA);
1141 DPRINT("get result error. Fdc=%d Last status=%x Read bytes=%d\n",
1149 #define MORE_OUTPUT -2
1150 /* does the fdc need more output? */
1151 static int need_more_output(void)
1153 int status = wait_til_ready();
1158 if (is_ready_state(status))
1164 /* Set perpendicular mode as required, based on data rate, if supported.
1165 * 82077 Now tested. 1Mbps data rate only possible with 82077-1.
1167 static void perpendicular_mode(void)
1169 unsigned char perp_mode;
1171 if (raw_cmd->rate & 0x40) {
1172 switch (raw_cmd->rate & 3) {
1180 DPRINT("Invalid data rate for perpendicular mode!\n");
1184 * convenient way to return to
1185 * redo without too much hassle
1186 * (deep stack et al.)
1193 if (FDCS->perp_mode == perp_mode)
1195 if (FDCS->version >= FDC_82077_ORIG) {
1196 output_byte(FD_PERPENDICULAR);
1197 output_byte(perp_mode);
1198 FDCS->perp_mode = perp_mode;
1199 } else if (perp_mode) {
1200 DPRINT("perpendicular mode not supported by this FDC.\n");
1202 } /* perpendicular_mode */
1204 static int fifo_depth = 0xa;
1207 static int fdc_configure(void)
1210 output_byte(FD_CONFIGURE);
1211 if (need_more_output() != MORE_OUTPUT)
1214 output_byte(0x10 | (no_fifo & 0x20) | (fifo_depth & 0xf));
1215 output_byte(0); /* pre-compensation from track
1220 #define NOMINAL_DTR 500
1222 /* Issue a "SPECIFY" command to set the step rate time, head unload time,
1223 * head load time, and DMA disable flag to values needed by floppy.
1225 * The value "dtr" is the data transfer rate in Kbps. It is needed
1226 * to account for the data rate-based scaling done by the 82072 and 82077
1227 * FDC types. This parameter is ignored for other types of FDCs (i.e.
1230 * Note that changing the data transfer rate has a (probably deleterious)
1231 * effect on the parameters subject to scaling for 82072/82077 FDCs, so
1232 * fdc_specify is called again after each data transfer rate
1235 * srt: 1000 to 16000 in microseconds
1236 * hut: 16 to 240 milliseconds
1237 * hlt: 2 to 254 milliseconds
1239 * These values are rounded up to the next highest available delay time.
1241 static void fdc_specify(void)
1243 unsigned char spec1;
1244 unsigned char spec2;
1248 unsigned long dtr = NOMINAL_DTR;
1249 unsigned long scale_dtr = NOMINAL_DTR;
1250 int hlt_max_code = 0x7f;
1251 int hut_max_code = 0xf;
1253 if (FDCS->need_configure && FDCS->version >= FDC_82072A) {
1255 FDCS->need_configure = 0;
1258 switch (raw_cmd->rate & 0x03) {
1264 if (FDCS->version >= FDC_82078) {
1265 /* chose the default rate table, not the one
1266 * where 1 = 2 Mbps */
1267 output_byte(FD_DRIVESPEC);
1268 if (need_more_output() == MORE_OUTPUT) {
1269 output_byte(UNIT(current_drive));
1279 if (FDCS->version >= FDC_82072) {
1281 hlt_max_code = 0x00; /* 0==256msec*dtr0/dtr (not linear!) */
1282 hut_max_code = 0x0; /* 0==256msec*dtr0/dtr (not linear!) */
1285 /* Convert step rate from microseconds to milliseconds and 4 bits */
1286 srt = 16 - DIV_ROUND_UP(DP->srt * scale_dtr / 1000, NOMINAL_DTR);
1293 hlt = DIV_ROUND_UP(DP->hlt * scale_dtr / 2, NOMINAL_DTR);
1296 else if (hlt > 0x7f)
1299 hut = DIV_ROUND_UP(DP->hut * scale_dtr / 16, NOMINAL_DTR);
1305 spec1 = (srt << 4) | hut;
1306 spec2 = (hlt << 1) | (use_virtual_dma & 1);
1308 /* If these parameters did not change, just return with success */
1309 if (FDCS->spec1 != spec1 || FDCS->spec2 != spec2) {
1310 /* Go ahead and set spec1 and spec2 */
1311 output_byte(FD_SPECIFY);
1312 output_byte(FDCS->spec1 = spec1);
1313 output_byte(FDCS->spec2 = spec2);
1317 /* Set the FDC's data transfer rate on behalf of the specified drive.
1318 * NOTE: with 82072/82077 FDCs, changing the data rate requires a reissue
1319 * of the specify command (i.e. using the fdc_specify function).
1321 static int fdc_dtr(void)
1323 /* If data rate not already set to desired value, set it. */
1324 if ((raw_cmd->rate & 3) == FDCS->dtr)
1328 fd_outb(raw_cmd->rate & 3, FD_DCR);
1330 /* TODO: some FDC/drive combinations (C&T 82C711 with TEAC 1.2MB)
1331 * need a stabilization period of several milliseconds to be
1332 * enforced after data rate changes before R/W operations.
1333 * Pause 5 msec to avoid trouble. (Needs to be 2 jiffies)
1335 FDCS->dtr = raw_cmd->rate & 3;
1336 return fd_wait_for_completion(jiffies + 2UL * HZ / 100,
1337 (work_func_t)floppy_ready);
1340 static void tell_sector(void)
1342 pr_cont(": track %d, head %d, sector %d, size %d",
1343 R_TRACK, R_HEAD, R_SECTOR, R_SIZECODE);
1346 static void print_errors(void)
1349 if (ST0 & ST0_ECE) {
1350 pr_cont("Recalibrate failed!");
1351 } else if (ST2 & ST2_CRC) {
1352 pr_cont("data CRC error");
1354 } else if (ST1 & ST1_CRC) {
1355 pr_cont("CRC error");
1357 } else if ((ST1 & (ST1_MAM | ST1_ND)) ||
1360 pr_cont("sector not found");
1363 pr_cont("probe failed...");
1364 } else if (ST2 & ST2_WC) { /* seek error */
1365 pr_cont("wrong cylinder");
1366 } else if (ST2 & ST2_BC) { /* cylinder marked as bad */
1367 pr_cont("bad cylinder");
1369 pr_cont("unknown error. ST[0..2] are: 0x%x 0x%x 0x%x",
1377 * OK, this error interpreting routine is called after a
1378 * DMA read/write has succeeded
1379 * or failed, so we check the results, and copy any buffers.
1380 * hhb: Added better error reporting.
1381 * ak: Made this into a separate routine.
1383 static int interpret_errors(void)
1388 DPRINT("-- FDC reply error\n");
1393 /* check IC to find cause of interrupt */
1394 switch (ST0 & ST0_INTR) {
1395 case 0x40: /* error occurred during command execution */
1397 return 0; /* occurs with pseudo-DMA */
1400 DPRINT("Drive is write protected\n");
1401 clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
1404 } else if (ST1 & ST1_ND) {
1405 set_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
1406 } else if (ST1 & ST1_OR) {
1407 if (DP->flags & FTD_MSG)
1408 DPRINT("Over/Underrun - retrying\n");
1410 } else if (*errors >= DP->max_errors.reporting) {
1413 if (ST2 & ST2_WC || ST2 & ST2_BC)
1414 /* wrong cylinder => recal */
1415 DRS->track = NEED_2_RECAL;
1417 case 0x80: /* invalid command given */
1418 DPRINT("Invalid FDC command given!\n");
1422 DPRINT("Abnormal termination caused by polling\n");
1425 default: /* (0) Normal command termination */
1431 * This routine is called when everything should be correctly set up
1432 * for the transfer (i.e. floppy motor is on, the correct floppy is
1433 * selected, and the head is sitting on the right track).
1435 static void setup_rw_floppy(void)
1441 unsigned long ready_date;
1442 work_func_t function;
1444 flags = raw_cmd->flags;
1445 if (flags & (FD_RAW_READ | FD_RAW_WRITE))
1446 flags |= FD_RAW_INTR;
1448 if ((flags & FD_RAW_SPIN) && !(flags & FD_RAW_NO_MOTOR)) {
1449 ready_date = DRS->spinup_date + DP->spinup;
1450 /* If spinup will take a long time, rerun scandrives
1451 * again just before spinup completion. Beware that
1452 * after scandrives, we must again wait for selection.
1454 if (time_after(ready_date, jiffies + DP->select_delay)) {
1455 ready_date -= DP->select_delay;
1456 function = (work_func_t)floppy_start;
1458 function = (work_func_t)setup_rw_floppy;
1460 /* wait until the floppy is spinning fast enough */
1461 if (fd_wait_for_completion(ready_date, function))
1464 dflags = DRS->flags;
1466 if ((flags & FD_RAW_READ) || (flags & FD_RAW_WRITE))
1469 if (flags & FD_RAW_INTR)
1470 do_floppy = main_command_interrupt;
1473 for (i = 0; i < raw_cmd->cmd_count; i++)
1474 r |= output_byte(raw_cmd->cmd[i]);
1476 debugt(__func__, "rw_command");
1484 if (!(flags & FD_RAW_INTR)) {
1487 } else if (flags & FD_RAW_NEED_DISK)
1491 static int blind_seek;
1494 * This is the routine called after every seek (or recalibrate) interrupt
1495 * from the floppy controller.
1497 static void seek_interrupt(void)
1499 debugt(__func__, "");
1500 if (inr != 2 || (ST0 & 0xF8) != 0x20) {
1501 DPRINT("seek failed\n");
1502 DRS->track = NEED_2_RECAL;
1507 if (DRS->track >= 0 && DRS->track != ST1 && !blind_seek) {
1508 debug_dcl(DP->flags,
1509 "clearing NEWCHANGE flag because of effective seek\n");
1510 debug_dcl(DP->flags, "jiffies=%lu\n", jiffies);
1511 clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
1512 /* effective seek */
1513 DRS->select_date = jiffies;
1519 static void check_wp(void)
1521 if (test_bit(FD_VERIFY_BIT, &DRS->flags)) {
1522 /* check write protection */
1523 output_byte(FD_GETSTATUS);
1524 output_byte(UNIT(current_drive));
1525 if (result() != 1) {
1529 clear_bit(FD_VERIFY_BIT, &DRS->flags);
1530 clear_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
1531 debug_dcl(DP->flags,
1532 "checking whether disk is write protected\n");
1533 debug_dcl(DP->flags, "wp=%x\n", ST3 & 0x40);
1535 set_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
1537 clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
1541 static void seek_floppy(void)
1547 debug_dcl(DP->flags, "calling disk change from %s\n", __func__);
1549 if (!test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
1550 disk_change(current_drive) && (raw_cmd->flags & FD_RAW_NEED_DISK)) {
1551 /* the media changed flag should be cleared after the seek.
1552 * If it isn't, this means that there is really no disk in
1555 set_bit(FD_DISK_CHANGED_BIT, &DRS->flags);
1560 if (DRS->track <= NEED_1_RECAL) {
1561 recalibrate_floppy();
1563 } else if (test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
1564 (raw_cmd->flags & FD_RAW_NEED_DISK) &&
1565 (DRS->track <= NO_TRACK || DRS->track == raw_cmd->track)) {
1566 /* we seek to clear the media-changed condition. Does anybody
1567 * know a more elegant way, which works on all drives? */
1569 track = raw_cmd->track - 1;
1571 if (DP->flags & FD_SILENT_DCL_CLEAR) {
1572 set_dor(fdc, ~(0x10 << UNIT(current_drive)), 0);
1574 raw_cmd->flags |= FD_RAW_NEED_SEEK;
1580 if (raw_cmd->track != DRS->track &&
1581 (raw_cmd->flags & FD_RAW_NEED_SEEK))
1582 track = raw_cmd->track;
1589 do_floppy = seek_interrupt;
1590 output_byte(FD_SEEK);
1591 output_byte(UNIT(current_drive));
1592 if (output_byte(track) < 0) {
1596 debugt(__func__, "");
1599 static void recal_interrupt(void)
1601 debugt(__func__, "");
1604 else if (ST0 & ST0_ECE) {
1605 switch (DRS->track) {
1607 debugt(__func__, "need 1 recal");
1608 /* after a second recalibrate, we still haven't
1609 * reached track 0. Probably no drive. Raise an
1610 * error, as failing immediately might upset
1611 * computers possessed by the Devil :-) */
1616 debugt(__func__, "need 2 recal");
1617 /* If we already did a recalibrate,
1618 * and we are not at track 0, this
1619 * means we have moved. (The only way
1620 * not to move at recalibration is to
1621 * be already at track 0.) Clear the
1622 * new change flag */
1623 debug_dcl(DP->flags,
1624 "clearing NEWCHANGE flag because of second recalibrate\n");
1626 clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
1627 DRS->select_date = jiffies;
1630 debugt(__func__, "default");
1631 /* Recalibrate moves the head by at
1632 * most 80 steps. If after one
1633 * recalibrate we don't have reached
1634 * track 0, this might mean that we
1635 * started beyond track 80. Try
1637 DRS->track = NEED_1_RECAL;
1645 static void print_result(char *message, int inr)
1649 DPRINT("%s ", message);
1651 for (i = 0; i < inr; i++)
1652 pr_cont("repl[%d]=%x ", i, reply_buffer[i]);
1656 /* interrupt handler. Note that this can be called externally on the Sparc */
1657 irqreturn_t floppy_interrupt(int irq, void *dev_id)
1661 void (*handler)(void) = do_floppy;
1663 lasthandler = handler;
1664 interruptjiffies = jiffies;
1666 f = claim_dma_lock();
1668 release_dma_lock(f);
1671 if (fdc >= N_FDC || FDCS->address == -1) {
1672 /* we don't even know which FDC is the culprit */
1673 pr_info("DOR0=%x\n", fdc_state[0].dor);
1674 pr_info("floppy interrupt on bizarre fdc %d\n", fdc);
1675 pr_info("handler=%pf\n", handler);
1676 is_alive(__func__, "bizarre fdc");
1681 /* We have to clear the reset flag here, because apparently on boxes
1682 * with level triggered interrupts (PS/2, Sparc, ...), it is needed to
1683 * emit SENSEI's to clear the interrupt line. And FDCS->reset blocks the
1684 * emission of the SENSEI's.
1685 * It is OK to emit floppy commands because we are in an interrupt
1686 * handler here, and thus we have to fear no interference of other
1690 do_print = !handler && print_unex && initialized;
1694 print_result("unexpected interrupt", inr);
1698 output_byte(FD_SENSEI);
1701 print_result("sensei", inr);
1703 } while ((ST0 & 0x83) != UNIT(current_drive) &&
1704 inr == 2 && max_sensei);
1710 schedule_bh(handler);
1711 is_alive(__func__, "normal interrupt end");
1713 /* FIXME! Was it really for us? */
1717 static void recalibrate_floppy(void)
1719 debugt(__func__, "");
1720 do_floppy = recal_interrupt;
1721 output_byte(FD_RECALIBRATE);
1722 if (output_byte(UNIT(current_drive)) < 0)
1727 * Must do 4 FD_SENSEIs after reset because of ``drive polling''.
1729 static void reset_interrupt(void)
1731 debugt(__func__, "");
1732 result(); /* get the status ready for set_fdc */
1734 pr_info("reset set in interrupt, calling %pf\n", cont->error);
1735 cont->error(); /* a reset just after a reset. BAD! */
1741 * reset is done by pulling bit 2 of DOR low for a while (old FDCs),
1742 * or by setting the self clearing bit 7 of STATUS (newer FDCs)
1744 static void reset_fdc(void)
1746 unsigned long flags;
1748 do_floppy = reset_interrupt;
1752 /* Pseudo-DMA may intercept 'reset finished' interrupt. */
1753 /* Irrelevant for systems with true DMA (i386). */
1755 flags = claim_dma_lock();
1757 release_dma_lock(flags);
1759 if (FDCS->version >= FDC_82072A)
1760 fd_outb(0x80 | (FDCS->dtr & 3), FD_STATUS);
1762 fd_outb(FDCS->dor & ~0x04, FD_DOR);
1763 udelay(FD_RESET_DELAY);
1764 fd_outb(FDCS->dor, FD_DOR);
1768 static void show_floppy(void)
1773 pr_info("floppy driver state\n");
1774 pr_info("-------------------\n");
1775 pr_info("now=%lu last interrupt=%lu diff=%lu last called handler=%pf\n",
1776 jiffies, interruptjiffies, jiffies - interruptjiffies,
1779 pr_info("timeout_message=%s\n", timeout_message);
1780 pr_info("last output bytes:\n");
1781 for (i = 0; i < OLOGSIZE; i++)
1782 pr_info("%2x %2x %lu\n",
1783 output_log[(i + output_log_pos) % OLOGSIZE].data,
1784 output_log[(i + output_log_pos) % OLOGSIZE].status,
1785 output_log[(i + output_log_pos) % OLOGSIZE].jiffies);
1786 pr_info("last result at %lu\n", resultjiffies);
1787 pr_info("last redo_fd_request at %lu\n", lastredo);
1788 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_NONE, 16, 1,
1789 reply_buffer, resultsize, true);
1791 pr_info("status=%x\n", fd_inb(FD_STATUS));
1792 pr_info("fdc_busy=%lu\n", fdc_busy);
1794 pr_info("do_floppy=%pf\n", do_floppy);
1795 if (work_pending(&floppy_work))
1796 pr_info("floppy_work.func=%pf\n", floppy_work.func);
1797 if (delayed_work_pending(&fd_timer))
1798 pr_info("delayed work.function=%p expires=%ld\n",
1800 fd_timer.timer.expires - jiffies);
1801 if (delayed_work_pending(&fd_timeout))
1802 pr_info("timer_function=%p expires=%ld\n",
1803 fd_timeout.work.func,
1804 fd_timeout.timer.expires - jiffies);
1806 pr_info("cont=%p\n", cont);
1807 pr_info("current_req=%p\n", current_req);
1808 pr_info("command_status=%d\n", command_status);
1812 static void floppy_shutdown(struct work_struct *arg)
1814 unsigned long flags;
1820 flags = claim_dma_lock();
1822 release_dma_lock(flags);
1824 /* avoid dma going to a random drive after shutdown */
1827 DPRINT("floppy timeout called\n");
1831 cont->redo(); /* this will recall reset when needed */
1833 pr_info("no cont in shutdown!\n");
1834 process_fd_request();
1836 is_alive(__func__, "");
1839 /* start motor, check media-changed condition and write protection */
1840 static int start_motor(void (*function)(void))
1846 data = UNIT(current_drive);
1847 if (!(raw_cmd->flags & FD_RAW_NO_MOTOR)) {
1848 if (!(FDCS->dor & (0x10 << UNIT(current_drive)))) {
1850 /* no read since this drive is running */
1851 DRS->first_read_date = 0;
1852 /* note motor start time if motor is not yet running */
1853 DRS->spinup_date = jiffies;
1854 data |= (0x10 << UNIT(current_drive));
1856 } else if (FDCS->dor & (0x10 << UNIT(current_drive)))
1857 mask &= ~(0x10 << UNIT(current_drive));
1859 /* starts motor and selects floppy */
1860 del_timer(motor_off_timer + current_drive);
1861 set_dor(fdc, mask, data);
1863 /* wait_for_completion also schedules reset if needed. */
1864 return fd_wait_for_completion(DRS->select_date + DP->select_delay,
1865 (work_func_t)function);
1868 static void floppy_ready(void)
1874 if (start_motor(floppy_ready))
1879 debug_dcl(DP->flags, "calling disk change from floppy_ready\n");
1880 if (!(raw_cmd->flags & FD_RAW_NO_MOTOR) &&
1881 disk_change(current_drive) && !DP->select_delay)
1882 twaddle(); /* this clears the dcl on certain
1883 * drive/controller combinations */
1885 #ifdef fd_chose_dma_mode
1886 if ((raw_cmd->flags & FD_RAW_READ) || (raw_cmd->flags & FD_RAW_WRITE)) {
1887 unsigned long flags = claim_dma_lock();
1888 fd_chose_dma_mode(raw_cmd->kernel_data, raw_cmd->length);
1889 release_dma_lock(flags);
1893 if (raw_cmd->flags & (FD_RAW_NEED_SEEK | FD_RAW_NEED_DISK)) {
1894 perpendicular_mode();
1895 fdc_specify(); /* must be done here because of hut, hlt ... */
1898 if ((raw_cmd->flags & FD_RAW_READ) ||
1899 (raw_cmd->flags & FD_RAW_WRITE))
1905 static void floppy_start(void)
1907 reschedule_timeout(current_reqD, "floppy start");
1910 debug_dcl(DP->flags, "setting NEWCHANGE in floppy_start\n");
1911 set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
1916 * ========================================================================
1917 * here ends the bottom half. Exported routines are:
1918 * floppy_start, floppy_off, floppy_ready, lock_fdc, unlock_fdc, set_fdc,
1919 * start_motor, reset_fdc, reset_fdc_info, interpret_errors.
1920 * Initialization also uses output_byte, result, set_dor, floppy_interrupt
1922 * ========================================================================
1925 * General purpose continuations.
1926 * ==============================
1929 static void do_wakeup(void)
1931 reschedule_timeout(MAXTIMEOUT, "do wakeup");
1933 command_status += 2;
1934 wake_up(&command_done);
1937 static const struct cont_t wakeup_cont = {
1941 .done = (done_f)empty
1944 static const struct cont_t intr_cont = {
1946 .redo = process_fd_request,
1948 .done = (done_f)empty
1951 static int wait_til_done(void (*handler)(void), bool interruptible)
1955 schedule_bh(handler);
1958 wait_event_interruptible(command_done, command_status >= 2);
1960 wait_event(command_done, command_status >= 2);
1962 if (command_status < 2) {
1970 command_status = FD_COMMAND_ERROR;
1971 if (command_status == FD_COMMAND_OKAY)
1975 command_status = FD_COMMAND_NONE;
1979 static void generic_done(int result)
1981 command_status = result;
1982 cont = &wakeup_cont;
1985 static void generic_success(void)
1990 static void generic_failure(void)
1995 static void success_and_wakeup(void)
2002 * formatting and rw support.
2003 * ==========================
2006 static int next_valid_format(void)
2010 probed_format = DRS->probed_format;
2012 if (probed_format >= 8 || !DP->autodetect[probed_format]) {
2013 DRS->probed_format = 0;
2016 if (floppy_type[DP->autodetect[probed_format]].sect) {
2017 DRS->probed_format = probed_format;
2024 static void bad_flp_intr(void)
2029 DRS->probed_format++;
2030 if (!next_valid_format())
2033 err_count = ++(*errors);
2034 INFBOUND(DRWE->badness, err_count);
2035 if (err_count > DP->max_errors.abort)
2037 if (err_count > DP->max_errors.reset)
2039 else if (err_count > DP->max_errors.recal)
2040 DRS->track = NEED_2_RECAL;
2043 static void set_floppy(int drive)
2045 int type = ITYPE(UDRS->fd_device);
2048 _floppy = floppy_type + type;
2050 _floppy = current_type[drive];
2054 * formatting support.
2055 * ===================
2057 static void format_interrupt(void)
2059 switch (interpret_errors()) {
2070 #define FM_MODE(x, y) ((y) & ~(((x)->rate & 0x80) >> 1))
2071 #define CT(x) ((x) | 0xc0)
2073 static void setup_format_params(int track)
2081 unsigned char track, head, sect, size;
2082 } *here = (struct fparm *)floppy_track_buffer;
2084 raw_cmd = &default_raw_cmd;
2085 raw_cmd->track = track;
2087 raw_cmd->flags = (FD_RAW_WRITE | FD_RAW_INTR | FD_RAW_SPIN |
2088 FD_RAW_NEED_DISK | FD_RAW_NEED_SEEK);
2089 raw_cmd->rate = _floppy->rate & 0x43;
2090 raw_cmd->cmd_count = NR_F;
2091 COMMAND = FM_MODE(_floppy, FD_FORMAT);
2092 DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, format_req.head);
2093 F_SIZECODE = FD_SIZECODE(_floppy);
2094 F_SECT_PER_TRACK = _floppy->sect << 2 >> F_SIZECODE;
2095 F_GAP = _floppy->fmt_gap;
2096 F_FILL = FD_FILL_BYTE;
2098 raw_cmd->kernel_data = floppy_track_buffer;
2099 raw_cmd->length = 4 * F_SECT_PER_TRACK;
2101 /* allow for about 30ms for data transport per track */
2102 head_shift = (F_SECT_PER_TRACK + 5) / 6;
2104 /* a ``cylinder'' is two tracks plus a little stepping time */
2105 track_shift = 2 * head_shift + 3;
2107 /* position of logical sector 1 on this track */
2108 n = (track_shift * format_req.track + head_shift * format_req.head)
2111 /* determine interleave */
2113 if (_floppy->fmt_gap < 0x22)
2116 /* initialize field */
2117 for (count = 0; count < F_SECT_PER_TRACK; ++count) {
2118 here[count].track = format_req.track;
2119 here[count].head = format_req.head;
2120 here[count].sect = 0;
2121 here[count].size = F_SIZECODE;
2123 /* place logical sectors */
2124 for (count = 1; count <= F_SECT_PER_TRACK; ++count) {
2125 here[n].sect = count;
2126 n = (n + il) % F_SECT_PER_TRACK;
2127 if (here[n].sect) { /* sector busy, find next free sector */
2129 if (n >= F_SECT_PER_TRACK) {
2130 n -= F_SECT_PER_TRACK;
2131 while (here[n].sect)
2136 if (_floppy->stretch & FD_SECTBASEMASK) {
2137 for (count = 0; count < F_SECT_PER_TRACK; count++)
2138 here[count].sect += FD_SECTBASE(_floppy) - 1;
2142 static void redo_format(void)
2145 setup_format_params(format_req.track << STRETCH(_floppy));
2147 debugt(__func__, "queue format request");
2150 static const struct cont_t format_cont = {
2151 .interrupt = format_interrupt,
2152 .redo = redo_format,
2153 .error = bad_flp_intr,
2154 .done = generic_done
2157 static int do_format(int drive, struct format_descr *tmp_format_req)
2161 if (lock_fdc(drive, true))
2166 _floppy->track > DP->tracks ||
2167 tmp_format_req->track >= _floppy->track ||
2168 tmp_format_req->head >= _floppy->head ||
2169 (_floppy->sect << 2) % (1 << FD_SIZECODE(_floppy)) ||
2170 !_floppy->fmt_gap) {
2171 process_fd_request();
2174 format_req = *tmp_format_req;
2176 cont = &format_cont;
2177 errors = &format_errors;
2178 ret = wait_til_done(redo_format, true);
2181 process_fd_request();
2186 * Buffer read/write and support
2187 * =============================
2190 static void floppy_end_request(struct request *req, int error)
2192 unsigned int nr_sectors = current_count_sectors;
2193 unsigned int drive = (unsigned long)req->rq_disk->private_data;
2195 /* current_count_sectors can be zero if transfer failed */
2197 nr_sectors = blk_rq_cur_sectors(req);
2198 if (__blk_end_request(req, error, nr_sectors << 9))
2201 /* We're done with the request */
2206 /* new request_done. Can handle physical sectors which are smaller than a
2208 static void request_done(int uptodate)
2210 struct request *req = current_req;
2211 struct request_queue *q;
2212 unsigned long flags;
2214 char msg[sizeof("request done ") + sizeof(int) * 3];
2217 snprintf(msg, sizeof(msg), "request done %d", uptodate);
2218 reschedule_timeout(MAXTIMEOUT, msg);
2221 pr_info("floppy.c: no request in request_done\n");
2228 /* maintain values for invalidation on geometry
2230 block = current_count_sectors + blk_rq_pos(req);
2231 INFBOUND(DRS->maxblock, block);
2232 if (block > _floppy->sect)
2235 /* unlock chained buffers */
2236 spin_lock_irqsave(q->queue_lock, flags);
2237 floppy_end_request(req, 0);
2238 spin_unlock_irqrestore(q->queue_lock, flags);
2240 if (rq_data_dir(req) == WRITE) {
2241 /* record write error information */
2242 DRWE->write_errors++;
2243 if (DRWE->write_errors == 1) {
2244 DRWE->first_error_sector = blk_rq_pos(req);
2245 DRWE->first_error_generation = DRS->generation;
2247 DRWE->last_error_sector = blk_rq_pos(req);
2248 DRWE->last_error_generation = DRS->generation;
2250 spin_lock_irqsave(q->queue_lock, flags);
2251 floppy_end_request(req, -EIO);
2252 spin_unlock_irqrestore(q->queue_lock, flags);
2256 /* Interrupt handler evaluating the result of the r/w operation */
2257 static void rw_interrupt(void)
2265 /* some Toshiba floppy controllers occasionnally seem to
2266 * return bogus interrupts after read/write operations, which
2267 * can be recognized by a bad head number (>= 2) */
2271 if (!DRS->first_read_date)
2272 DRS->first_read_date = jiffies;
2275 ssize = DIV_ROUND_UP(1 << SIZECODE, 4);
2287 nr_sectors = (((R_TRACK - TRACK) * heads +
2288 R_HEAD - HEAD) * SECT_PER_TRACK +
2289 R_SECTOR - SECTOR + eoc) << SIZECODE >> 2;
2291 if (nr_sectors / ssize >
2292 DIV_ROUND_UP(in_sector_offset + current_count_sectors, ssize)) {
2293 DPRINT("long rw: %x instead of %lx\n",
2294 nr_sectors, current_count_sectors);
2295 pr_info("rs=%d s=%d\n", R_SECTOR, SECTOR);
2296 pr_info("rh=%d h=%d\n", R_HEAD, HEAD);
2297 pr_info("rt=%d t=%d\n", R_TRACK, TRACK);
2298 pr_info("heads=%d eoc=%d\n", heads, eoc);
2299 pr_info("spt=%d st=%d ss=%d\n",
2300 SECT_PER_TRACK, fsector_t, ssize);
2301 pr_info("in_sector_offset=%d\n", in_sector_offset);
2304 nr_sectors -= in_sector_offset;
2305 INFBOUND(nr_sectors, 0);
2306 SUPBOUND(current_count_sectors, nr_sectors);
2308 switch (interpret_errors()) {
2313 if (!current_count_sectors) {
2320 if (!current_count_sectors) {
2324 current_type[current_drive] = _floppy;
2325 floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
2330 if (DP->flags & FTD_MSG)
2331 DPRINT("Auto-detected floppy type %s in fd%d\n",
2332 _floppy->name, current_drive);
2333 current_type[current_drive] = _floppy;
2334 floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
2338 if (CT(COMMAND) != FD_READ ||
2339 raw_cmd->kernel_data == current_req->buffer) {
2340 /* transfer directly from buffer */
2342 } else if (CT(COMMAND) == FD_READ) {
2343 buffer_track = raw_cmd->track;
2344 buffer_drive = current_drive;
2345 INFBOUND(buffer_max, nr_sectors + fsector_t);
2350 /* Compute maximal contiguous buffer size. */
2351 static int buffer_chain_size(void)
2355 struct req_iterator iter;
2358 base = bio_data(current_req->bio);
2361 rq_for_each_segment(bv, current_req, iter) {
2362 if (page_address(bv->bv_page) + bv->bv_offset != base + size)
2371 /* Compute the maximal transfer size */
2372 static int transfer_size(int ssize, int max_sector, int max_size)
2374 SUPBOUND(max_sector, fsector_t + max_size);
2377 max_sector -= (max_sector % _floppy->sect) % ssize;
2379 /* transfer size, beginning not aligned */
2380 current_count_sectors = max_sector - fsector_t;
2386 * Move data from/to the track buffer to/from the buffer cache.
2388 static void copy_buffer(int ssize, int max_sector, int max_sector_2)
2390 int remaining; /* number of transferred 512-byte sectors */
2395 struct req_iterator iter;
2397 max_sector = transfer_size(ssize,
2398 min(max_sector, max_sector_2),
2399 blk_rq_sectors(current_req));
2401 if (current_count_sectors <= 0 && CT(COMMAND) == FD_WRITE &&
2402 buffer_max > fsector_t + blk_rq_sectors(current_req))
2403 current_count_sectors = min_t(int, buffer_max - fsector_t,
2404 blk_rq_sectors(current_req));
2406 remaining = current_count_sectors << 9;
2407 if (remaining > blk_rq_bytes(current_req) && CT(COMMAND) == FD_WRITE) {
2408 DPRINT("in copy buffer\n");
2409 pr_info("current_count_sectors=%ld\n", current_count_sectors);
2410 pr_info("remaining=%d\n", remaining >> 9);
2411 pr_info("current_req->nr_sectors=%u\n",
2412 blk_rq_sectors(current_req));
2413 pr_info("current_req->current_nr_sectors=%u\n",
2414 blk_rq_cur_sectors(current_req));
2415 pr_info("max_sector=%d\n", max_sector);
2416 pr_info("ssize=%d\n", ssize);
2419 buffer_max = max(max_sector, buffer_max);
2421 dma_buffer = floppy_track_buffer + ((fsector_t - buffer_min) << 9);
2423 size = blk_rq_cur_bytes(current_req);
2425 rq_for_each_segment(bv, current_req, iter) {
2430 SUPBOUND(size, remaining);
2432 buffer = page_address(bv->bv_page) + bv->bv_offset;
2433 if (dma_buffer + size >
2434 floppy_track_buffer + (max_buffer_sectors << 10) ||
2435 dma_buffer < floppy_track_buffer) {
2436 DPRINT("buffer overrun in copy buffer %d\n",
2437 (int)((floppy_track_buffer - dma_buffer) >> 9));
2438 pr_info("fsector_t=%d buffer_min=%d\n",
2439 fsector_t, buffer_min);
2440 pr_info("current_count_sectors=%ld\n",
2441 current_count_sectors);
2442 if (CT(COMMAND) == FD_READ)
2444 if (CT(COMMAND) == FD_WRITE)
2448 if (((unsigned long)buffer) % 512)
2449 DPRINT("%p buffer not aligned\n", buffer);
2451 if (CT(COMMAND) == FD_READ)
2452 memcpy(buffer, dma_buffer, size);
2454 memcpy(dma_buffer, buffer, size);
2461 max_sector -= remaining >> 9;
2462 DPRINT("weirdness: remaining %d\n", remaining >> 9);
2466 /* work around a bug in pseudo DMA
2467 * (on some FDCs) pseudo DMA does not stop when the CPU stops
2468 * sending data. Hence we need a different way to signal the
2469 * transfer length: We use SECT_PER_TRACK. Unfortunately, this
2470 * does not work with MT, hence we can only transfer one head at
2473 static void virtualdmabug_workaround(void)
2478 if (CT(COMMAND) == FD_WRITE) {
2479 COMMAND &= ~0x80; /* switch off multiple track mode */
2481 hard_sectors = raw_cmd->length >> (7 + SIZECODE);
2482 end_sector = SECTOR + hard_sectors - 1;
2483 if (end_sector > SECT_PER_TRACK) {
2484 pr_info("too many sectors %d > %d\n",
2485 end_sector, SECT_PER_TRACK);
2488 SECT_PER_TRACK = end_sector;
2489 /* make sure SECT_PER_TRACK
2490 * points to end of transfer */
2495 * Formulate a read/write request.
2496 * this routine decides where to load the data (directly to buffer, or to
2497 * tmp floppy area), how much data to load (the size of the buffer, the whole
2498 * track, or a single sector)
2499 * All floppy_track_buffer handling goes in here. If we ever add track buffer
2500 * allocation on the fly, it should be done here. No other part should need
2504 static int make_raw_rw_request(void)
2506 int aligned_sector_t;
2512 if (WARN(max_buffer_sectors == 0, "VFS: Block I/O scheduled on unopened device\n"))
2515 set_fdc((long)current_req->rq_disk->private_data);
2517 raw_cmd = &default_raw_cmd;
2518 raw_cmd->flags = FD_RAW_SPIN | FD_RAW_NEED_DISK | FD_RAW_NEED_DISK |
2520 raw_cmd->cmd_count = NR_RW;
2521 if (rq_data_dir(current_req) == READ) {
2522 raw_cmd->flags |= FD_RAW_READ;
2523 COMMAND = FM_MODE(_floppy, FD_READ);
2524 } else if (rq_data_dir(current_req) == WRITE) {
2525 raw_cmd->flags |= FD_RAW_WRITE;
2526 COMMAND = FM_MODE(_floppy, FD_WRITE);
2528 DPRINT("%s: unknown command\n", __func__);
2532 max_sector = _floppy->sect * _floppy->head;
2534 TRACK = (int)blk_rq_pos(current_req) / max_sector;
2535 fsector_t = (int)blk_rq_pos(current_req) % max_sector;
2536 if (_floppy->track && TRACK >= _floppy->track) {
2537 if (blk_rq_cur_sectors(current_req) & 1) {
2538 current_count_sectors = 1;
2543 HEAD = fsector_t / _floppy->sect;
2545 if (((_floppy->stretch & (FD_SWAPSIDES | FD_SECTBASEMASK)) ||
2546 test_bit(FD_NEED_TWADDLE_BIT, &DRS->flags)) &&
2547 fsector_t < _floppy->sect)
2548 max_sector = _floppy->sect;
2550 /* 2M disks have phantom sectors on the first track */
2551 if ((_floppy->rate & FD_2M) && (!TRACK) && (!HEAD)) {
2552 max_sector = 2 * _floppy->sect / 3;
2553 if (fsector_t >= max_sector) {
2554 current_count_sectors =
2555 min_t(int, _floppy->sect - fsector_t,
2556 blk_rq_sectors(current_req));
2561 SIZECODE = FD_SIZECODE(_floppy);
2562 raw_cmd->rate = _floppy->rate & 0x43;
2563 if ((_floppy->rate & FD_2M) && (TRACK || HEAD) && raw_cmd->rate == 2)
2570 raw_cmd->track = TRACK << STRETCH(_floppy);
2571 DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, HEAD);
2573 ssize = DIV_ROUND_UP(1 << SIZECODE, 4);
2574 SECT_PER_TRACK = _floppy->sect << 2 >> SIZECODE;
2575 SECTOR = ((fsector_t % _floppy->sect) << 2 >> SIZECODE) +
2576 FD_SECTBASE(_floppy);
2578 /* tracksize describes the size which can be filled up with sectors
2581 tracksize = _floppy->sect - _floppy->sect % ssize;
2582 if (tracksize < _floppy->sect) {
2584 if (tracksize <= fsector_t % _floppy->sect)
2587 /* if we are beyond tracksize, fill up using smaller sectors */
2588 while (tracksize <= fsector_t % _floppy->sect) {
2589 while (tracksize + ssize > _floppy->sect) {
2597 max_sector = HEAD * _floppy->sect + tracksize;
2598 } else if (!TRACK && !HEAD && !(_floppy->rate & FD_2M) && probing) {
2599 max_sector = _floppy->sect;
2600 } else if (!HEAD && CT(COMMAND) == FD_WRITE) {
2601 /* for virtual DMA bug workaround */
2602 max_sector = _floppy->sect;
2605 in_sector_offset = (fsector_t % _floppy->sect) % ssize;
2606 aligned_sector_t = fsector_t - in_sector_offset;
2607 max_size = blk_rq_sectors(current_req);
2608 if ((raw_cmd->track == buffer_track) &&
2609 (current_drive == buffer_drive) &&
2610 (fsector_t >= buffer_min) && (fsector_t < buffer_max)) {
2611 /* data already in track buffer */
2612 if (CT(COMMAND) == FD_READ) {
2613 copy_buffer(1, max_sector, buffer_max);
2616 } else if (in_sector_offset || blk_rq_sectors(current_req) < ssize) {
2617 if (CT(COMMAND) == FD_WRITE) {
2618 unsigned int sectors;
2620 sectors = fsector_t + blk_rq_sectors(current_req);
2621 if (sectors > ssize && sectors < ssize + ssize)
2622 max_size = ssize + ssize;
2626 raw_cmd->flags &= ~FD_RAW_WRITE;
2627 raw_cmd->flags |= FD_RAW_READ;
2628 COMMAND = FM_MODE(_floppy, FD_READ);
2629 } else if ((unsigned long)current_req->buffer < MAX_DMA_ADDRESS) {
2630 unsigned long dma_limit;
2631 int direct, indirect;
2634 transfer_size(ssize, max_sector,
2635 max_buffer_sectors * 2) - fsector_t;
2638 * Do NOT use minimum() here---MAX_DMA_ADDRESS is 64 bits wide
2639 * on a 64 bit machine!
2641 max_size = buffer_chain_size();
2642 dma_limit = (MAX_DMA_ADDRESS -
2643 ((unsigned long)current_req->buffer)) >> 9;
2644 if ((unsigned long)max_size > dma_limit)
2645 max_size = dma_limit;
2646 /* 64 kb boundaries */
2647 if (CROSS_64KB(current_req->buffer, max_size << 9))
2649 ((unsigned long)current_req->buffer) %
2651 direct = transfer_size(ssize, max_sector, max_size) - fsector_t;
2653 * We try to read tracks, but if we get too many errors, we
2654 * go back to reading just one sector at a time.
2656 * This means we should be able to read a sector even if there
2657 * are other bad sectors on this track.
2660 (indirect * 2 > direct * 3 &&
2661 *errors < DP->max_errors.read_track &&
2663 (DP->read_track & (1 << DRS->probed_format)))))) {
2664 max_size = blk_rq_sectors(current_req);
2666 raw_cmd->kernel_data = current_req->buffer;
2667 raw_cmd->length = current_count_sectors << 9;
2668 if (raw_cmd->length == 0) {
2669 DPRINT("%s: zero dma transfer attempted\n", __func__);
2670 DPRINT("indirect=%d direct=%d fsector_t=%d\n",
2671 indirect, direct, fsector_t);
2674 virtualdmabug_workaround();
2679 if (CT(COMMAND) == FD_READ)
2680 max_size = max_sector; /* unbounded */
2682 /* claim buffer track if needed */
2683 if (buffer_track != raw_cmd->track || /* bad track */
2684 buffer_drive != current_drive || /* bad drive */
2685 fsector_t > buffer_max ||
2686 fsector_t < buffer_min ||
2687 ((CT(COMMAND) == FD_READ ||
2688 (!in_sector_offset && blk_rq_sectors(current_req) >= ssize)) &&
2689 max_sector > 2 * max_buffer_sectors + buffer_min &&
2690 max_size + fsector_t > 2 * max_buffer_sectors + buffer_min)) {
2691 /* not enough space */
2693 buffer_drive = current_drive;
2694 buffer_max = buffer_min = aligned_sector_t;
2696 raw_cmd->kernel_data = floppy_track_buffer +
2697 ((aligned_sector_t - buffer_min) << 9);
2699 if (CT(COMMAND) == FD_WRITE) {
2700 /* copy write buffer to track buffer.
2701 * if we get here, we know that the write
2702 * is either aligned or the data already in the buffer
2703 * (buffer will be overwritten) */
2704 if (in_sector_offset && buffer_track == -1)
2705 DPRINT("internal error offset !=0 on write\n");
2706 buffer_track = raw_cmd->track;
2707 buffer_drive = current_drive;
2708 copy_buffer(ssize, max_sector,
2709 2 * max_buffer_sectors + buffer_min);
2711 transfer_size(ssize, max_sector,
2712 2 * max_buffer_sectors + buffer_min -
2715 /* round up current_count_sectors to get dma xfer size */
2716 raw_cmd->length = in_sector_offset + current_count_sectors;
2717 raw_cmd->length = ((raw_cmd->length - 1) | (ssize - 1)) + 1;
2718 raw_cmd->length <<= 9;
2719 if ((raw_cmd->length < current_count_sectors << 9) ||
2720 (raw_cmd->kernel_data != current_req->buffer &&
2721 CT(COMMAND) == FD_WRITE &&
2722 (aligned_sector_t + (raw_cmd->length >> 9) > buffer_max ||
2723 aligned_sector_t < buffer_min)) ||
2724 raw_cmd->length % (128 << SIZECODE) ||
2725 raw_cmd->length <= 0 || current_count_sectors <= 0) {
2726 DPRINT("fractionary current count b=%lx s=%lx\n",
2727 raw_cmd->length, current_count_sectors);
2728 if (raw_cmd->kernel_data != current_req->buffer)
2729 pr_info("addr=%d, length=%ld\n",
2730 (int)((raw_cmd->kernel_data -
2731 floppy_track_buffer) >> 9),
2732 current_count_sectors);
2733 pr_info("st=%d ast=%d mse=%d msi=%d\n",
2734 fsector_t, aligned_sector_t, max_sector, max_size);
2735 pr_info("ssize=%x SIZECODE=%d\n", ssize, SIZECODE);
2736 pr_info("command=%x SECTOR=%d HEAD=%d, TRACK=%d\n",
2737 COMMAND, SECTOR, HEAD, TRACK);
2738 pr_info("buffer drive=%d\n", buffer_drive);
2739 pr_info("buffer track=%d\n", buffer_track);
2740 pr_info("buffer_min=%d\n", buffer_min);
2741 pr_info("buffer_max=%d\n", buffer_max);
2745 if (raw_cmd->kernel_data != current_req->buffer) {
2746 if (raw_cmd->kernel_data < floppy_track_buffer ||
2747 current_count_sectors < 0 ||
2748 raw_cmd->length < 0 ||
2749 raw_cmd->kernel_data + raw_cmd->length >
2750 floppy_track_buffer + (max_buffer_sectors << 10)) {
2751 DPRINT("buffer overrun in schedule dma\n");
2752 pr_info("fsector_t=%d buffer_min=%d current_count=%ld\n",
2753 fsector_t, buffer_min, raw_cmd->length >> 9);
2754 pr_info("current_count_sectors=%ld\n",
2755 current_count_sectors);
2756 if (CT(COMMAND) == FD_READ)
2758 if (CT(COMMAND) == FD_WRITE)
2762 } else if (raw_cmd->length > blk_rq_bytes(current_req) ||
2763 current_count_sectors > blk_rq_sectors(current_req)) {
2764 DPRINT("buffer overrun in direct transfer\n");
2766 } else if (raw_cmd->length < current_count_sectors << 9) {
2767 DPRINT("more sectors than bytes\n");
2768 pr_info("bytes=%ld\n", raw_cmd->length >> 9);
2769 pr_info("sectors=%ld\n", current_count_sectors);
2771 if (raw_cmd->length == 0) {
2772 DPRINT("zero dma transfer attempted from make_raw_request\n");
2776 virtualdmabug_workaround();
2781 * Round-robin between our available drives, doing one request from each
2783 static int set_next_request(void)
2785 struct request_queue *q;
2786 int old_pos = fdc_queue;
2789 q = disks[fdc_queue]->queue;
2790 if (++fdc_queue == N_DRIVE)
2793 current_req = blk_fetch_request(q);
2797 } while (fdc_queue != old_pos);
2799 return current_req != NULL;
2802 static void redo_fd_request(void)
2808 if (current_drive < N_DRIVE)
2809 floppy_off(current_drive);
2815 spin_lock_irq(&floppy_lock);
2816 pending = set_next_request();
2817 spin_unlock_irq(&floppy_lock);
2824 drive = (long)current_req->rq_disk->private_data;
2826 reschedule_timeout(current_reqD, "redo fd request");
2829 raw_cmd = &default_raw_cmd;
2831 if (start_motor(redo_fd_request))
2834 disk_change(current_drive);
2835 if (test_bit(current_drive, &fake_change) ||
2836 test_bit(FD_DISK_CHANGED_BIT, &DRS->flags)) {
2837 DPRINT("disk absent or changed during operation\n");
2841 if (!_floppy) { /* Autodetection */
2843 DRS->probed_format = 0;
2844 if (next_valid_format()) {
2845 DPRINT("no autodetectable formats\n");
2852 _floppy = floppy_type + DP->autodetect[DRS->probed_format];
2855 errors = &(current_req->errors);
2856 tmp = make_raw_rw_request();
2862 if (test_bit(FD_NEED_TWADDLE_BIT, &DRS->flags))
2864 schedule_bh(floppy_start);
2865 debugt(__func__, "queue fd request");
2869 static const struct cont_t rw_cont = {
2870 .interrupt = rw_interrupt,
2871 .redo = redo_fd_request,
2872 .error = bad_flp_intr,
2873 .done = request_done
2876 static void process_fd_request(void)
2879 schedule_bh(redo_fd_request);
2882 static void do_fd_request(struct request_queue *q)
2884 if (WARN(max_buffer_sectors == 0,
2885 "VFS: %s called on non-open device\n", __func__))
2888 if (WARN(atomic_read(&usage_count) == 0,
2889 "warning: usage count=0, current_req=%p sect=%ld type=%x flags=%x\n",
2890 current_req, (long)blk_rq_pos(current_req), current_req->cmd_type,
2891 current_req->cmd_flags))
2894 if (test_and_set_bit(0, &fdc_busy)) {
2895 /* fdc busy, this new request will be treated when the
2896 current one is done */
2897 is_alive(__func__, "old request running");
2900 command_status = FD_COMMAND_NONE;
2901 __reschedule_timeout(MAXTIMEOUT, "fd_request");
2903 process_fd_request();
2904 is_alive(__func__, "");
2907 static const struct cont_t poll_cont = {
2908 .interrupt = success_and_wakeup,
2909 .redo = floppy_ready,
2910 .error = generic_failure,
2911 .done = generic_done
2914 static int poll_drive(bool interruptible, int flag)
2916 /* no auto-sense, just clear dcl */
2917 raw_cmd = &default_raw_cmd;
2918 raw_cmd->flags = flag;
2920 raw_cmd->cmd_count = 0;
2922 debug_dcl(DP->flags, "setting NEWCHANGE in poll_drive\n");
2923 set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
2925 return wait_til_done(floppy_ready, interruptible);
2929 * User triggered reset
2930 * ====================
2933 static void reset_intr(void)
2935 pr_info("weird, reset interrupt called\n");
2938 static const struct cont_t reset_cont = {
2939 .interrupt = reset_intr,
2940 .redo = success_and_wakeup,
2941 .error = generic_failure,
2942 .done = generic_done
2945 static int user_reset_fdc(int drive, int arg, bool interruptible)
2949 if (lock_fdc(drive, interruptible))
2952 if (arg == FD_RESET_ALWAYS)
2956 ret = wait_til_done(reset_fdc, interruptible);
2960 process_fd_request();
2965 * Misc Ioctl's and support
2966 * ========================
2968 static inline int fd_copyout(void __user *param, const void *address,
2971 return copy_to_user(param, address, size) ? -EFAULT : 0;
2974 static inline int fd_copyin(void __user *param, void *address,
2977 return copy_from_user(address, param, size) ? -EFAULT : 0;
2980 static const char *drive_name(int type, int drive)
2982 struct floppy_struct *floppy;
2985 floppy = floppy_type + type;
2987 if (UDP->native_format)
2988 floppy = floppy_type + UDP->native_format;
2993 return floppy->name;
2999 static void raw_cmd_done(int flag)
3004 raw_cmd->flags |= FD_RAW_FAILURE;
3005 raw_cmd->flags |= FD_RAW_HARDFAILURE;
3007 raw_cmd->reply_count = inr;
3008 if (raw_cmd->reply_count > MAX_REPLIES)
3009 raw_cmd->reply_count = 0;
3010 for (i = 0; i < raw_cmd->reply_count; i++)
3011 raw_cmd->reply[i] = reply_buffer[i];
3013 if (raw_cmd->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
3014 unsigned long flags;
3015 flags = claim_dma_lock();
3016 raw_cmd->length = fd_get_dma_residue();
3017 release_dma_lock(flags);
3020 if ((raw_cmd->flags & FD_RAW_SOFTFAILURE) &&
3021 (!raw_cmd->reply_count || (raw_cmd->reply[0] & 0xc0)))
3022 raw_cmd->flags |= FD_RAW_FAILURE;
3024 if (disk_change(current_drive))
3025 raw_cmd->flags |= FD_RAW_DISK_CHANGE;
3027 raw_cmd->flags &= ~FD_RAW_DISK_CHANGE;
3028 if (raw_cmd->flags & FD_RAW_NO_MOTOR_AFTER)
3029 motor_off_callback(current_drive);
3031 if (raw_cmd->next &&
3032 (!(raw_cmd->flags & FD_RAW_FAILURE) ||
3033 !(raw_cmd->flags & FD_RAW_STOP_IF_FAILURE)) &&
3034 ((raw_cmd->flags & FD_RAW_FAILURE) ||
3035 !(raw_cmd->flags & FD_RAW_STOP_IF_SUCCESS))) {
3036 raw_cmd = raw_cmd->next;
3043 static const struct cont_t raw_cmd_cont = {
3044 .interrupt = success_and_wakeup,
3045 .redo = floppy_start,
3046 .error = generic_failure,
3047 .done = raw_cmd_done
3050 static int raw_cmd_copyout(int cmd, void __user *param,
3051 struct floppy_raw_cmd *ptr)
3056 ret = copy_to_user(param, ptr, sizeof(*ptr));
3059 param += sizeof(struct floppy_raw_cmd);
3060 if ((ptr->flags & FD_RAW_READ) && ptr->buffer_length) {
3061 if (ptr->length >= 0 &&
3062 ptr->length <= ptr->buffer_length) {
3063 long length = ptr->buffer_length - ptr->length;
3064 ret = fd_copyout(ptr->data, ptr->kernel_data,
3076 static void raw_cmd_free(struct floppy_raw_cmd **ptr)
3078 struct floppy_raw_cmd *next;
3079 struct floppy_raw_cmd *this;
3084 if (this->buffer_length) {
3085 fd_dma_mem_free((unsigned long)this->kernel_data,
3086 this->buffer_length);
3087 this->buffer_length = 0;
3095 static int raw_cmd_copyin(int cmd, void __user *param,
3096 struct floppy_raw_cmd **rcmd)
3098 struct floppy_raw_cmd *ptr;
3105 ptr = kmalloc(sizeof(struct floppy_raw_cmd), GFP_USER);
3109 ret = copy_from_user(ptr, param, sizeof(*ptr));
3113 ptr->buffer_length = 0;
3114 param += sizeof(struct floppy_raw_cmd);
3115 if (ptr->cmd_count > 33)
3116 /* the command may now also take up the space
3117 * initially intended for the reply & the
3118 * reply count. Needed for long 82078 commands
3119 * such as RESTORE, which takes ... 17 command
3120 * bytes. Murphy's law #137: When you reserve
3121 * 16 bytes for a structure, you'll one day
3122 * discover that you really need 17...
3126 for (i = 0; i < 16; i++)
3128 ptr->resultcode = 0;
3129 ptr->kernel_data = NULL;
3131 if (ptr->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
3132 if (ptr->length <= 0)
3134 ptr->kernel_data = (char *)fd_dma_mem_alloc(ptr->length);
3135 fallback_on_nodma_alloc(&ptr->kernel_data, ptr->length);
3136 if (!ptr->kernel_data)
3138 ptr->buffer_length = ptr->length;
3140 if (ptr->flags & FD_RAW_WRITE) {
3141 ret = fd_copyin(ptr->data, ptr->kernel_data, ptr->length);
3146 if (ptr->flags & FD_RAW_MORE) {
3147 rcmd = &(ptr->next);
3155 static int raw_cmd_ioctl(int cmd, void __user *param)
3157 struct floppy_raw_cmd *my_raw_cmd;
3162 if (FDCS->rawcmd <= 1)
3164 for (drive = 0; drive < N_DRIVE; drive++) {
3165 if (FDC(drive) != fdc)
3167 if (drive == current_drive) {
3168 if (UDRS->fd_ref > 1) {
3172 } else if (UDRS->fd_ref) {
3181 ret = raw_cmd_copyin(cmd, param, &my_raw_cmd);
3183 raw_cmd_free(&my_raw_cmd);
3187 raw_cmd = my_raw_cmd;
3188 cont = &raw_cmd_cont;
3189 ret = wait_til_done(floppy_start, true);
3190 debug_dcl(DP->flags, "calling disk change from raw_cmd ioctl\n");
3192 if (ret != -EINTR && FDCS->reset)
3195 DRS->track = NO_TRACK;
3197 ret2 = raw_cmd_copyout(cmd, param, my_raw_cmd);
3200 raw_cmd_free(&my_raw_cmd);
3204 static int invalidate_drive(struct block_device *bdev)
3206 /* invalidate the buffer track to force a reread */
3207 set_bit((long)bdev->bd_disk->private_data, &fake_change);
3208 process_fd_request();
3209 check_disk_change(bdev);
3213 static int set_geometry(unsigned int cmd, struct floppy_struct *g,
3214 int drive, int type, struct block_device *bdev)
3218 /* sanity checking for parameters. */
3221 g->track <= 0 || g->track > UDP->tracks >> STRETCH(g) ||
3222 /* check if reserved bits are set */
3223 (g->stretch & ~(FD_STRETCH | FD_SWAPSIDES | FD_SECTBASEMASK)) != 0)
3226 if (!capable(CAP_SYS_ADMIN))
3228 mutex_lock(&open_lock);
3229 if (lock_fdc(drive, true)) {
3230 mutex_unlock(&open_lock);
3233 floppy_type[type] = *g;
3234 floppy_type[type].name = "user format";
3235 for (cnt = type << 2; cnt < (type << 2) + 4; cnt++)
3236 floppy_sizes[cnt] = floppy_sizes[cnt + 0x80] =
3237 floppy_type[type].size + 1;
3238 process_fd_request();
3239 for (cnt = 0; cnt < N_DRIVE; cnt++) {
3240 struct block_device *bdev = opened_bdev[cnt];
3241 if (!bdev || ITYPE(drive_state[cnt].fd_device) != type)
3243 __invalidate_device(bdev, true);
3245 mutex_unlock(&open_lock);
3249 if (lock_fdc(drive, true))
3251 if (cmd != FDDEFPRM) {
3252 /* notice a disk change immediately, else
3253 * we lose our settings immediately*/
3254 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
3257 oldStretch = g->stretch;
3258 user_params[drive] = *g;
3259 if (buffer_drive == drive)
3260 SUPBOUND(buffer_max, user_params[drive].sect);
3261 current_type[drive] = &user_params[drive];
3262 floppy_sizes[drive] = user_params[drive].size;
3263 if (cmd == FDDEFPRM)
3264 DRS->keep_data = -1;
3267 /* invalidation. Invalidate only when needed, i.e.
3268 * when there are already sectors in the buffer cache
3269 * whose number will change. This is useful, because
3270 * mtools often changes the geometry of the disk after
3271 * looking at the boot block */
3272 if (DRS->maxblock > user_params[drive].sect ||
3274 ((user_params[drive].sect ^ oldStretch) &
3275 (FD_SWAPSIDES | FD_SECTBASEMASK)))
3276 invalidate_drive(bdev);
3278 process_fd_request();
3283 /* handle obsolete ioctl's */
3284 static unsigned int ioctl_table[] = {
3312 static int normalize_ioctl(unsigned int *cmd, int *size)
3316 for (i = 0; i < ARRAY_SIZE(ioctl_table); i++) {
3317 if ((*cmd & 0xffff) == (ioctl_table[i] & 0xffff)) {
3318 *size = _IOC_SIZE(*cmd);
3319 *cmd = ioctl_table[i];
3320 if (*size > _IOC_SIZE(*cmd)) {
3321 pr_info("ioctl not yet supported\n");
3330 static int get_floppy_geometry(int drive, int type, struct floppy_struct **g)
3333 *g = &floppy_type[type];
3335 if (lock_fdc(drive, false))
3337 if (poll_drive(false, 0) == -EINTR)
3339 process_fd_request();
3340 *g = current_type[drive];
3347 static int fd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
3349 int drive = (long)bdev->bd_disk->private_data;
3350 int type = ITYPE(drive_state[drive].fd_device);
3351 struct floppy_struct *g;
3354 ret = get_floppy_geometry(drive, type, &g);
3358 geo->heads = g->head;
3359 geo->sectors = g->sect;
3360 geo->cylinders = g->track;
3364 static int fd_locked_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
3365 unsigned long param)
3367 int drive = (long)bdev->bd_disk->private_data;
3368 int type = ITYPE(UDRS->fd_device);
3373 struct floppy_struct g; /* geometry */
3374 struct format_descr f;
3375 struct floppy_max_errors max_errors;
3376 struct floppy_drive_params dp;
3377 } inparam; /* parameters coming from user space */
3378 const void *outparam; /* parameters passed back to user space */
3380 /* convert compatibility eject ioctls into floppy eject ioctl.
3381 * We do this in order to provide a means to eject floppy disks before
3382 * installing the new fdutils package */
3383 if (cmd == CDROMEJECT || /* CD-ROM eject */
3384 cmd == 0x6470) { /* SunOS floppy eject */
3385 DPRINT("obsolete eject ioctl\n");
3386 DPRINT("please use floppycontrol --eject\n");
3390 if (!((cmd & 0xff00) == 0x0200))
3393 /* convert the old style command into a new style command */
3394 ret = normalize_ioctl(&cmd, &size);
3398 /* permission checks */
3399 if (((cmd & 0x40) && !(mode & (FMODE_WRITE | FMODE_WRITE_IOCTL))) ||
3400 ((cmd & 0x80) && !capable(CAP_SYS_ADMIN)))
3403 if (WARN_ON(size < 0 || size > sizeof(inparam)))
3407 memset(&inparam, 0, sizeof(inparam));
3408 if (_IOC_DIR(cmd) & _IOC_WRITE) {
3409 ret = fd_copyin((void __user *)param, &inparam, size);
3416 if (UDRS->fd_ref != 1)
3417 /* somebody else has this drive open */
3419 if (lock_fdc(drive, true))
3422 /* do the actual eject. Fails on
3423 * non-Sparc architectures */
3424 ret = fd_eject(UNIT(drive));
3426 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
3427 set_bit(FD_VERIFY_BIT, &UDRS->flags);
3428 process_fd_request();
3431 if (lock_fdc(drive, true))
3433 current_type[drive] = NULL;
3434 floppy_sizes[drive] = MAX_DISK_SIZE << 1;
3435 UDRS->keep_data = 0;
3436 return invalidate_drive(bdev);
3439 return set_geometry(cmd, &inparam.g, drive, type, bdev);
3441 ret = get_floppy_geometry(drive, type,
3442 (struct floppy_struct **)&outparam);
3447 UDP->flags |= FTD_MSG;
3450 UDP->flags &= ~FTD_MSG;
3453 if (lock_fdc(drive, true))
3455 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
3458 process_fd_request();
3459 if (ret & FD_VERIFY)
3461 if (!(ret & FD_DISK_WRITABLE))
3465 if (UDRS->fd_ref != 1)
3467 return do_format(drive, &inparam.f);
3470 if (lock_fdc(drive, true))
3472 return invalidate_drive(bdev);
3473 case FDSETEMSGTRESH:
3474 UDP->max_errors.reporting = (unsigned short)(param & 0x0f);
3477 outparam = &UDP->max_errors;
3480 UDP->max_errors = inparam.max_errors;
3483 outparam = drive_name(type, drive);
3484 SUPBOUND(size, strlen((const char *)outparam) + 1);
3493 if (lock_fdc(drive, true))
3495 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
3497 process_fd_request();
3503 return user_reset_fdc(drive, (int)param, true);
3508 memset(UDRWE, 0, sizeof(*UDRWE));
3516 if (lock_fdc(drive, true))
3519 i = raw_cmd_ioctl(cmd, (void __user *)param);
3522 process_fd_request();
3525 if (lock_fdc(drive, true))
3528 process_fd_request();
3534 if (_IOC_DIR(cmd) & _IOC_READ)
3535 return fd_copyout((void __user *)param, outparam, size);
3540 static int fd_ioctl(struct block_device *bdev, fmode_t mode,
3541 unsigned int cmd, unsigned long param)
3545 mutex_lock(&floppy_mutex);
3546 ret = fd_locked_ioctl(bdev, mode, cmd, param);
3547 mutex_unlock(&floppy_mutex);
3552 static void __init config_types(void)
3554 bool has_drive = false;
3557 /* read drive info out of physical CMOS */
3560 UDP->cmos = FLOPPY0_TYPE;
3562 if (!UDP->cmos && FLOPPY1_TYPE)
3563 UDP->cmos = FLOPPY1_TYPE;
3565 /* FIXME: additional physical CMOS drive detection should go here */
3567 for (drive = 0; drive < N_DRIVE; drive++) {
3568 unsigned int type = UDP->cmos;
3569 struct floppy_drive_params *params;
3570 const char *name = NULL;
3571 static char temparea[32];
3573 if (type < ARRAY_SIZE(default_drive_params)) {
3574 params = &default_drive_params[type].params;
3576 name = default_drive_params[type].name;
3577 allowed_drive_mask |= 1 << drive;
3579 allowed_drive_mask &= ~(1 << drive);
3581 params = &default_drive_params[0].params;
3582 sprintf(temparea, "unknown type %d (usb?)", type);
3586 const char *prepend;
3590 pr_info("Floppy drive(s):");
3595 pr_cont("%s fd%d is %s", prepend, drive, name);
3604 static int floppy_release(struct gendisk *disk, fmode_t mode)
3606 int drive = (long)disk->private_data;
3608 mutex_lock(&floppy_mutex);
3609 mutex_lock(&open_lock);
3610 if (!UDRS->fd_ref--) {
3611 DPRINT("floppy_release with fd_ref == 0");
3615 opened_bdev[drive] = NULL;
3616 mutex_unlock(&open_lock);
3617 mutex_unlock(&floppy_mutex);
3623 * floppy_open check for aliasing (/dev/fd0 can be the same as
3624 * /dev/PS0 etc), and disallows simultaneous access to the same
3625 * drive with different device numbers.
3627 static int floppy_open(struct block_device *bdev, fmode_t mode)
3629 int drive = (long)bdev->bd_disk->private_data;
3630 int old_dev, new_dev;
3635 mutex_lock(&floppy_mutex);
3636 mutex_lock(&open_lock);
3637 old_dev = UDRS->fd_device;
3638 if (opened_bdev[drive] && opened_bdev[drive] != bdev)
3641 if (!UDRS->fd_ref && (UDP->flags & FD_BROKEN_DCL)) {
3642 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
3643 set_bit(FD_VERIFY_BIT, &UDRS->flags);
3648 opened_bdev[drive] = bdev;
3652 if (!floppy_track_buffer) {
3653 /* if opening an ED drive, reserve a big buffer,
3654 * else reserve a small one */
3655 if ((UDP->cmos == 6) || (UDP->cmos == 5))
3656 try = 64; /* Only 48 actually useful */
3658 try = 32; /* Only 24 actually useful */
3660 tmp = (char *)fd_dma_mem_alloc(1024 * try);
3661 if (!tmp && !floppy_track_buffer) {
3662 try >>= 1; /* buffer only one side */
3664 tmp = (char *)fd_dma_mem_alloc(1024 * try);
3666 if (!tmp && !floppy_track_buffer)
3667 fallback_on_nodma_alloc(&tmp, 2048 * try);
3668 if (!tmp && !floppy_track_buffer) {
3669 DPRINT("Unable to allocate DMA memory\n");
3672 if (floppy_track_buffer) {
3674 fd_dma_mem_free((unsigned long)tmp, try * 1024);
3676 buffer_min = buffer_max = -1;
3677 floppy_track_buffer = tmp;
3678 max_buffer_sectors = try;
3682 new_dev = MINOR(bdev->bd_dev);
3683 UDRS->fd_device = new_dev;
3684 set_capacity(disks[drive], floppy_sizes[new_dev]);
3685 if (old_dev != -1 && old_dev != new_dev) {
3686 if (buffer_drive == drive)
3690 if (UFDCS->rawcmd == 1)
3693 if (!(mode & FMODE_NDELAY)) {
3694 if (mode & (FMODE_READ|FMODE_WRITE)) {
3695 UDRS->last_checked = 0;
3696 check_disk_change(bdev);
3697 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags))
3701 if ((mode & FMODE_WRITE) &&
3702 !test_bit(FD_DISK_WRITABLE_BIT, &UDRS->flags))
3705 mutex_unlock(&open_lock);
3706 mutex_unlock(&floppy_mutex);
3712 opened_bdev[drive] = NULL;
3714 mutex_unlock(&open_lock);
3715 mutex_unlock(&floppy_mutex);
3720 * Check if the disk has been changed or if a change has been faked.
3722 static unsigned int floppy_check_events(struct gendisk *disk,
3723 unsigned int clearing)
3725 int drive = (long)disk->private_data;
3727 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
3728 test_bit(FD_VERIFY_BIT, &UDRS->flags))
3729 return DISK_EVENT_MEDIA_CHANGE;
3731 if (time_after(jiffies, UDRS->last_checked + UDP->checkfreq)) {
3732 lock_fdc(drive, false);
3733 poll_drive(false, 0);
3734 process_fd_request();
3737 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
3738 test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
3739 test_bit(drive, &fake_change) ||
3740 drive_no_geom(drive))
3741 return DISK_EVENT_MEDIA_CHANGE;
3746 * This implements "read block 0" for floppy_revalidate().
3747 * Needed for format autodetection, checking whether there is
3748 * a disk in the drive, and whether that disk is writable.
3751 static void floppy_rb0_complete(struct bio *bio, int err)
3753 complete((struct completion *)bio->bi_private);
3756 static int __floppy_read_block_0(struct block_device *bdev)
3759 struct bio_vec bio_vec;
3760 struct completion complete;
3764 page = alloc_page(GFP_NOIO);
3766 process_fd_request();
3770 size = bdev->bd_block_size;
3775 bio.bi_io_vec = &bio_vec;
3776 bio_vec.bv_page = page;
3777 bio_vec.bv_len = size;
3778 bio_vec.bv_offset = 0;
3784 bio.bi_flags = (1 << BIO_QUIET);
3785 init_completion(&complete);
3786 bio.bi_private = &complete;
3787 bio.bi_end_io = floppy_rb0_complete;
3789 submit_bio(READ, &bio);
3790 process_fd_request();
3791 wait_for_completion(&complete);
3798 /* revalidate the floppy disk, i.e. trigger format autodetection by reading
3799 * the bootblock (block 0). "Autodetection" is also needed to check whether
3800 * there is a disk in the drive at all... Thus we also do it for fixed
3801 * geometry formats */
3802 static int floppy_revalidate(struct gendisk *disk)
3804 int drive = (long)disk->private_data;
3808 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
3809 test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
3810 test_bit(drive, &fake_change) ||
3811 drive_no_geom(drive)) {
3812 if (WARN(atomic_read(&usage_count) == 0,
3813 "VFS: revalidate called on non-open device.\n"))
3816 lock_fdc(drive, false);
3817 cf = (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
3818 test_bit(FD_VERIFY_BIT, &UDRS->flags));
3819 if (!(cf || test_bit(drive, &fake_change) || drive_no_geom(drive))) {
3820 process_fd_request(); /*already done by another thread */
3825 if (buffer_drive == drive)
3827 clear_bit(drive, &fake_change);
3828 clear_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
3831 if (drive_no_geom(drive)) {
3833 res = __floppy_read_block_0(opened_bdev[drive]);
3836 poll_drive(false, FD_RAW_NEED_DISK);
3837 process_fd_request();
3840 set_capacity(disk, floppy_sizes[UDRS->fd_device]);
3844 static const struct block_device_operations floppy_fops = {
3845 .owner = THIS_MODULE,
3846 .open = floppy_open,
3847 .release = floppy_release,
3849 .getgeo = fd_getgeo,
3850 .check_events = floppy_check_events,
3851 .revalidate_disk = floppy_revalidate,
3855 * Floppy Driver initialization
3856 * =============================
3859 /* Determine the floppy disk controller type */
3860 /* This routine was written by David C. Niemi */
3861 static char __init get_fdc_version(void)
3865 output_byte(FD_DUMPREGS); /* 82072 and better know DUMPREGS */
3870 return FDC_NONE; /* No FDC present ??? */
3871 if ((r == 1) && (reply_buffer[0] == 0x80)) {
3872 pr_info("FDC %d is an 8272A\n", fdc);
3873 return FDC_8272A; /* 8272a/765 don't know DUMPREGS */
3876 pr_info("FDC %d init: DUMPREGS: unexpected return of %d bytes.\n",
3881 if (!fdc_configure()) {
3882 pr_info("FDC %d is an 82072\n", fdc);
3883 return FDC_82072; /* 82072 doesn't know CONFIGURE */
3886 output_byte(FD_PERPENDICULAR);
3887 if (need_more_output() == MORE_OUTPUT) {
3890 pr_info("FDC %d is an 82072A\n", fdc);
3891 return FDC_82072A; /* 82072A as found on Sparcs. */
3894 output_byte(FD_UNLOCK);
3896 if ((r == 1) && (reply_buffer[0] == 0x80)) {
3897 pr_info("FDC %d is a pre-1991 82077\n", fdc);
3898 return FDC_82077_ORIG; /* Pre-1991 82077, doesn't know
3901 if ((r != 1) || (reply_buffer[0] != 0x00)) {
3902 pr_info("FDC %d init: UNLOCK: unexpected return of %d bytes.\n",
3906 output_byte(FD_PARTID);
3909 pr_info("FDC %d init: PARTID: unexpected return of %d bytes.\n",
3913 if (reply_buffer[0] == 0x80) {
3914 pr_info("FDC %d is a post-1991 82077\n", fdc);
3915 return FDC_82077; /* Revised 82077AA passes all the tests */
3917 switch (reply_buffer[0] >> 5) {
3919 /* Either a 82078-1 or a 82078SL running at 5Volt */
3920 pr_info("FDC %d is an 82078.\n", fdc);
3923 pr_info("FDC %d is a 44pin 82078\n", fdc);
3926 pr_info("FDC %d is a S82078B\n", fdc);
3929 pr_info("FDC %d is a National Semiconductor PC87306\n", fdc);
3932 pr_info("FDC %d init: 82078 variant with unknown PARTID=%d.\n",
3933 fdc, reply_buffer[0] >> 5);
3934 return FDC_82078_UNKN;
3936 } /* get_fdc_version */
3938 /* lilo configuration */
3940 static void __init floppy_set_flags(int *ints, int param, int param2)
3944 for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
3946 default_drive_params[i].params.flags |= param2;
3948 default_drive_params[i].params.flags &= ~param2;
3950 DPRINT("%s flag 0x%x\n", param2 ? "Setting" : "Clearing", param);
3953 static void __init daring(int *ints, int param, int param2)
3957 for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
3959 default_drive_params[i].params.select_delay = 0;
3960 default_drive_params[i].params.flags |=
3961 FD_SILENT_DCL_CLEAR;
3963 default_drive_params[i].params.select_delay =
3965 default_drive_params[i].params.flags &=
3966 ~FD_SILENT_DCL_CLEAR;
3969 DPRINT("Assuming %s floppy hardware\n", param ? "standard" : "broken");
3972 static void __init set_cmos(int *ints, int dummy, int dummy2)
3974 int current_drive = 0;
3977 DPRINT("wrong number of parameters for CMOS\n");
3980 current_drive = ints[1];
3981 if (current_drive < 0 || current_drive >= 8) {
3982 DPRINT("bad drive for set_cmos\n");
3986 if (current_drive >= 4 && !FDC2)
3990 DPRINT("setting CMOS code to %d\n", ints[2]);
3993 static struct param_table {
3995 void (*fn) (int *ints, int param, int param2);
3999 } config_params[] __initdata = {
4000 {"allowed_drive_mask", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
4001 {"all_drives", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
4002 {"asus_pci", NULL, &allowed_drive_mask, 0x33, 0},
4003 {"irq", NULL, &FLOPPY_IRQ, 6, 0},
4004 {"dma", NULL, &FLOPPY_DMA, 2, 0},
4005 {"daring", daring, NULL, 1, 0},
4007 {"two_fdc", NULL, &FDC2, 0x370, 0},
4008 {"one_fdc", NULL, &FDC2, 0, 0},
4010 {"thinkpad", floppy_set_flags, NULL, 1, FD_INVERTED_DCL},
4011 {"broken_dcl", floppy_set_flags, NULL, 1, FD_BROKEN_DCL},
4012 {"messages", floppy_set_flags, NULL, 1, FTD_MSG},
4013 {"silent_dcl_clear", floppy_set_flags, NULL, 1, FD_SILENT_DCL_CLEAR},
4014 {"debug", floppy_set_flags, NULL, 1, FD_DEBUG},
4015 {"nodma", NULL, &can_use_virtual_dma, 1, 0},
4016 {"omnibook", NULL, &can_use_virtual_dma, 1, 0},
4017 {"yesdma", NULL, &can_use_virtual_dma, 0, 0},
4018 {"fifo_depth", NULL, &fifo_depth, 0xa, 0},
4019 {"nofifo", NULL, &no_fifo, 0x20, 0},
4020 {"usefifo", NULL, &no_fifo, 0, 0},
4021 {"cmos", set_cmos, NULL, 0, 0},
4022 {"slow", NULL, &slow_floppy, 1, 0},
4023 {"unexpected_interrupts", NULL, &print_unex, 1, 0},
4024 {"no_unexpected_interrupts", NULL, &print_unex, 0, 0},
4025 {"L40SX", NULL, &print_unex, 0, 0}
4030 static int __init floppy_setup(char *str)
4036 str = get_options(str, ARRAY_SIZE(ints), ints);
4038 for (i = 0; i < ARRAY_SIZE(config_params); i++) {
4039 if (strcmp(str, config_params[i].name) == 0) {
4043 param = config_params[i].def_param;
4044 if (config_params[i].fn)
4045 config_params[i].fn(ints, param,
4048 if (config_params[i].var) {
4049 DPRINT("%s=%d\n", str, param);
4050 *config_params[i].var = param;
4057 DPRINT("unknown floppy option [%s]\n", str);
4059 DPRINT("allowed options are:");
4060 for (i = 0; i < ARRAY_SIZE(config_params); i++)
4061 pr_cont(" %s", config_params[i].name);
4064 DPRINT("botched floppy option\n");
4065 DPRINT("Read Documentation/blockdev/floppy.txt\n");
4069 static int have_no_fdc = -ENODEV;
4071 static ssize_t floppy_cmos_show(struct device *dev,
4072 struct device_attribute *attr, char *buf)
4074 struct platform_device *p = to_platform_device(dev);
4078 return sprintf(buf, "%X\n", UDP->cmos);
4081 static DEVICE_ATTR(cmos, S_IRUGO, floppy_cmos_show, NULL);
4083 static void floppy_device_release(struct device *dev)
4087 static int floppy_resume(struct device *dev)
4091 for (fdc = 0; fdc < N_FDC; fdc++)
4092 if (FDCS->address != -1)
4093 user_reset_fdc(-1, FD_RESET_ALWAYS, false);
4098 static const struct dev_pm_ops floppy_pm_ops = {
4099 .resume = floppy_resume,
4100 .restore = floppy_resume,
4103 static struct platform_driver floppy_driver = {
4106 .pm = &floppy_pm_ops,
4110 static struct platform_device floppy_device[N_DRIVE];
4112 static struct kobject *floppy_find(dev_t dev, int *part, void *data)
4114 int drive = (*part & 3) | ((*part & 0x80) >> 5);
4115 if (drive >= N_DRIVE ||
4116 !(allowed_drive_mask & (1 << drive)) ||
4117 fdc_state[FDC(drive)].version == FDC_NONE)
4119 if (((*part >> 2) & 0x1f) >= ARRAY_SIZE(floppy_type))
4122 return get_disk(disks[drive]);
4125 static int __init floppy_init(void)
4131 interruptjiffies = resultjiffies = jiffies;
4133 #if defined(CONFIG_PPC)
4134 if (check_legacy_ioport(FDC1))
4140 for (dr = 0; dr < N_DRIVE; dr++) {
4141 disks[dr] = alloc_disk(1);
4147 floppy_wq = alloc_ordered_workqueue("floppy", 0);
4153 disks[dr]->queue = blk_init_queue(do_fd_request, &floppy_lock);
4154 if (!disks[dr]->queue) {
4156 goto out_destroy_workq;
4159 blk_queue_max_hw_sectors(disks[dr]->queue, 64);
4160 disks[dr]->major = FLOPPY_MAJOR;
4161 disks[dr]->first_minor = TOMINOR(dr);
4162 disks[dr]->fops = &floppy_fops;
4163 sprintf(disks[dr]->disk_name, "fd%d", dr);
4165 init_timer(&motor_off_timer[dr]);
4166 motor_off_timer[dr].data = dr;
4167 motor_off_timer[dr].function = motor_off_callback;
4170 err = register_blkdev(FLOPPY_MAJOR, "fd");
4174 err = platform_driver_register(&floppy_driver);
4176 goto out_unreg_blkdev;
4178 blk_register_region(MKDEV(FLOPPY_MAJOR, 0), 256, THIS_MODULE,
4179 floppy_find, NULL, NULL);
4181 for (i = 0; i < 256; i++)
4183 floppy_sizes[i] = floppy_type[ITYPE(i)].size;
4185 floppy_sizes[i] = MAX_DISK_SIZE << 1;
4187 reschedule_timeout(MAXTIMEOUT, "floppy init");
4190 for (i = 0; i < N_FDC; i++) {
4192 memset(FDCS, 0, sizeof(*FDCS));
4195 #if defined(__sparc__) || defined(__mc68000__)
4196 /*sparcs/sun3x don't have a DOR reset which we can fall back on to */
4200 FDCS->version = FDC_82072A;
4204 use_virtual_dma = can_use_virtual_dma & 1;
4205 fdc_state[0].address = FDC1;
4206 if (fdc_state[0].address == -1) {
4207 cancel_delayed_work(&fd_timeout);
4209 goto out_unreg_region;
4212 fdc_state[1].address = FDC2;
4215 fdc = 0; /* reset fdc in case of unexpected interrupt */
4216 err = floppy_grab_irq_and_dma();
4218 cancel_delayed_work(&fd_timeout);
4220 goto out_unreg_region;
4223 /* initialise drive state */
4224 for (drive = 0; drive < N_DRIVE; drive++) {
4225 memset(UDRS, 0, sizeof(*UDRS));
4226 memset(UDRWE, 0, sizeof(*UDRWE));
4227 set_bit(FD_DISK_NEWCHANGE_BIT, &UDRS->flags);
4228 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
4229 set_bit(FD_VERIFY_BIT, &UDRS->flags);
4230 UDRS->fd_device = -1;
4231 floppy_track_buffer = NULL;
4232 max_buffer_sectors = 0;
4235 * Small 10 msec delay to let through any interrupt that
4236 * initialization might have triggered, to not
4237 * confuse detection:
4241 for (i = 0; i < N_FDC; i++) {
4243 FDCS->driver_version = FD_DRIVER_VERSION;
4244 for (unit = 0; unit < 4; unit++)
4245 FDCS->track[unit] = 0;
4246 if (FDCS->address == -1)
4249 if (user_reset_fdc(-1, FD_RESET_ALWAYS, false)) {
4250 /* free ioports reserved by floppy_grab_irq_and_dma() */
4251 floppy_release_regions(fdc);
4253 FDCS->version = FDC_NONE;
4256 /* Try to determine the floppy controller type */
4257 FDCS->version = get_fdc_version();
4258 if (FDCS->version == FDC_NONE) {
4259 /* free ioports reserved by floppy_grab_irq_and_dma() */
4260 floppy_release_regions(fdc);
4264 if (can_use_virtual_dma == 2 && FDCS->version < FDC_82072A)
4265 can_use_virtual_dma = 0;
4268 /* Not all FDCs seem to be able to handle the version command
4269 * properly, so force a reset for the standard FDC clones,
4270 * to avoid interrupt garbage.
4272 user_reset_fdc(-1, FD_RESET_ALWAYS, false);
4275 cancel_delayed_work(&fd_timeout);
4279 DPRINT("no floppy controllers found\n");
4281 goto out_release_dma;
4284 for (drive = 0; drive < N_DRIVE; drive++) {
4285 if (!(allowed_drive_mask & (1 << drive)))
4287 if (fdc_state[FDC(drive)].version == FDC_NONE)
4290 floppy_device[drive].name = floppy_device_name;
4291 floppy_device[drive].id = drive;
4292 floppy_device[drive].dev.release = floppy_device_release;
4294 err = platform_device_register(&floppy_device[drive]);
4296 goto out_release_dma;
4298 err = device_create_file(&floppy_device[drive].dev,
4301 goto out_unreg_platform_dev;
4303 /* to be cleaned up... */
4304 disks[drive]->private_data = (void *)(long)drive;
4305 disks[drive]->flags |= GENHD_FL_REMOVABLE;
4306 disks[drive]->driverfs_dev = &floppy_device[drive].dev;
4307 add_disk(disks[drive]);
4312 out_unreg_platform_dev:
4313 platform_device_unregister(&floppy_device[drive]);
4315 if (atomic_read(&usage_count))
4316 floppy_release_irq_and_dma();
4318 blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
4319 platform_driver_unregister(&floppy_driver);
4321 destroy_workqueue(floppy_wq);
4323 unregister_blkdev(FLOPPY_MAJOR, "fd");
4326 del_timer_sync(&motor_off_timer[dr]);
4327 if (disks[dr]->queue) {
4328 blk_cleanup_queue(disks[dr]->queue);
4330 * put_disk() is not paired with add_disk() and
4331 * will put queue reference one extra time. fix it.
4333 disks[dr]->queue = NULL;
4335 put_disk(disks[dr]);
4340 static const struct io_region {
4345 /* address + 3 is sometimes reserved by pnp bios for motherboard */
4347 /* address + 6 is reserved, and may be taken by IDE.
4348 * Unfortunately, Adaptec doesn't know this :-(, */
4352 static void floppy_release_allocated_regions(int fdc, const struct io_region *p)
4354 while (p != io_regions) {
4356 release_region(FDCS->address + p->offset, p->size);
4360 #define ARRAY_END(X) (&((X)[ARRAY_SIZE(X)]))
4362 static int floppy_request_regions(int fdc)
4364 const struct io_region *p;
4366 for (p = io_regions; p < ARRAY_END(io_regions); p++) {
4367 if (!request_region(FDCS->address + p->offset,
4368 p->size, "floppy")) {
4369 DPRINT("Floppy io-port 0x%04lx in use\n",
4370 FDCS->address + p->offset);
4371 floppy_release_allocated_regions(fdc, p);
4378 static void floppy_release_regions(int fdc)
4380 floppy_release_allocated_regions(fdc, ARRAY_END(io_regions));
4383 static int floppy_grab_irq_and_dma(void)
4385 if (atomic_inc_return(&usage_count) > 1)
4389 * We might have scheduled a free_irq(), wait it to
4392 flush_workqueue(floppy_wq);
4394 if (fd_request_irq()) {
4395 DPRINT("Unable to grab IRQ%d for the floppy driver\n",
4397 atomic_dec(&usage_count);
4400 if (fd_request_dma()) {
4401 DPRINT("Unable to grab DMA%d for the floppy driver\n",
4403 if (can_use_virtual_dma & 2)
4404 use_virtual_dma = can_use_virtual_dma = 1;
4405 if (!(can_use_virtual_dma & 1)) {
4407 atomic_dec(&usage_count);
4412 for (fdc = 0; fdc < N_FDC; fdc++) {
4413 if (FDCS->address != -1) {
4414 if (floppy_request_regions(fdc))
4418 for (fdc = 0; fdc < N_FDC; fdc++) {
4419 if (FDCS->address != -1) {
4421 fd_outb(FDCS->dor, FD_DOR);
4425 set_dor(0, ~0, 8); /* avoid immediate interrupt */
4427 for (fdc = 0; fdc < N_FDC; fdc++)
4428 if (FDCS->address != -1)
4429 fd_outb(FDCS->dor, FD_DOR);
4431 * The driver will try and free resources and relies on us
4432 * to know if they were allocated or not.
4435 irqdma_allocated = 1;
4441 floppy_release_regions(fdc);
4442 atomic_dec(&usage_count);
4446 static void floppy_release_irq_and_dma(void)
4453 unsigned long tmpaddr;
4455 if (!atomic_dec_and_test(&usage_count))
4458 if (irqdma_allocated) {
4462 irqdma_allocated = 0;
4469 if (floppy_track_buffer && max_buffer_sectors) {
4470 tmpsize = max_buffer_sectors * 1024;
4471 tmpaddr = (unsigned long)floppy_track_buffer;
4472 floppy_track_buffer = NULL;
4473 max_buffer_sectors = 0;
4474 buffer_min = buffer_max = -1;
4475 fd_dma_mem_free(tmpaddr, tmpsize);
4478 for (drive = 0; drive < N_FDC * 4; drive++)
4479 if (timer_pending(motor_off_timer + drive))
4480 pr_info("motor off timer %d still active\n", drive);
4483 if (delayed_work_pending(&fd_timeout))
4484 pr_info("floppy timer still active:%s\n", timeout_message);
4485 if (delayed_work_pending(&fd_timer))
4486 pr_info("auxiliary floppy timer still active\n");
4487 if (work_pending(&floppy_work))
4488 pr_info("work still pending\n");
4490 for (fdc = 0; fdc < N_FDC; fdc++)
4491 if (FDCS->address != -1)
4492 floppy_release_regions(fdc);
4498 static char *floppy;
4500 static void __init parse_floppy_cfg_string(char *cfg)
4506 while (*cfg && *cfg != ' ' && *cfg != '\t')
4517 static int __init floppy_module_init(void)
4520 parse_floppy_cfg_string(floppy);
4521 return floppy_init();
4523 module_init(floppy_module_init);
4525 static void __exit floppy_module_exit(void)
4529 blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
4530 unregister_blkdev(FLOPPY_MAJOR, "fd");
4531 platform_driver_unregister(&floppy_driver);
4533 for (drive = 0; drive < N_DRIVE; drive++) {
4534 del_timer_sync(&motor_off_timer[drive]);
4536 if ((allowed_drive_mask & (1 << drive)) &&
4537 fdc_state[FDC(drive)].version != FDC_NONE) {
4538 del_gendisk(disks[drive]);
4539 device_remove_file(&floppy_device[drive].dev, &dev_attr_cmos);
4540 platform_device_unregister(&floppy_device[drive]);
4542 blk_cleanup_queue(disks[drive]->queue);
4545 * These disks have not called add_disk(). Don't put down
4546 * queue reference in put_disk().
4548 if (!(allowed_drive_mask & (1 << drive)) ||
4549 fdc_state[FDC(drive)].version == FDC_NONE)
4550 disks[drive]->queue = NULL;
4552 put_disk(disks[drive]);
4555 cancel_delayed_work_sync(&fd_timeout);
4556 cancel_delayed_work_sync(&fd_timer);
4557 destroy_workqueue(floppy_wq);
4559 if (atomic_read(&usage_count))
4560 floppy_release_irq_and_dma();
4562 /* eject disk, if any */
4566 module_exit(floppy_module_exit);
4568 module_param(floppy, charp, 0);
4569 module_param(FLOPPY_IRQ, int, 0);
4570 module_param(FLOPPY_DMA, int, 0);
4571 MODULE_AUTHOR("Alain L. Knaff");
4572 MODULE_SUPPORTED_DEVICE("fd");
4573 MODULE_LICENSE("GPL");
4575 /* This doesn't actually get used other than for module information */
4576 static const struct pnp_device_id floppy_pnpids[] = {
4581 MODULE_DEVICE_TABLE(pnp, floppy_pnpids);
4585 __setup("floppy=", floppy_setup);
4586 module_init(floppy_init)
4589 MODULE_ALIAS_BLOCKDEV_MAJOR(FLOPPY_MAJOR);