blob: a08cda9552850395c4d532b3543303ccbcde0ab4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/block/floppy.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 1993, 1994 Alain Knaff
6 * Copyright (C) 1998 Alan Cox
7 */
Jesper Juhl06f748c2007-10-16 23:30:57 -07008
Linus Torvalds1da177e2005-04-16 15:20:36 -07009/*
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.
14 */
15
16/*
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.
22 */
23
24/*
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
29 * etc.
30 */
31
32/*
33 * 28.02.92 - made track-buffering routines, based on the routines written
34 * by entropy@wintermute.wpi.edu (Lawrence Foard). Linus.
35 */
36
37/*
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.
41 */
42
43/*
44 * 1992/7/22 -- Hennus Bergman: Added better error reporting, fixed
45 * FDC data overrun bug, added some preliminary stuff for vertical
46 * recording support.
47 *
48 * 1992/9/17: Added DMA allocation & DMA functions. -- hhb.
49 *
50 * TODO: Errors are still not counted properly.
51 */
52
53/* 1992/9/20
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.
61 */
62
63/*
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
66 * work.
67 */
68
69/* 1994/6/24 --bbroad-- added the floppy table entries and made
70 * minor modifications to allow 2.88 floppies to be run.
71 */
72
73/* 1994/7/13 -- Paul Vojta -- modified the probing code to allow three or more
74 * disk types.
75 */
76
77/*
78 * 1994/8/8 -- Alain Knaff -- Switched to fdpatch driver: Support for bigger
79 * format bug fixes, but unfortunately some new bugs too...
80 */
81
82/* 1994/9/17 -- Koen Holtman -- added logging of physical floppy write
83 * errors to allow safe writing by specialized programs.
84 */
85
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").
90 */
91
92/*
93 * 1995/8/26 -- Andreas Busse -- added Mips support.
94 */
95
96/*
97 * 1995/10/18 -- Ralf Baechle -- Portability cleanup; move machine dependent
98 * features to asm/floppy.h.
99 */
100
101/*
James Nelsonb88b0982005-11-08 16:52:12 +0100102 * 1998/1/21 -- Richard Gooch <rgooch@atnf.csiro.au> -- devfs support
103 */
104
105/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * 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.
109 */
110
111/*
112 * 1998/06/07 -- Alan Cox -- Merged the 2.0.34 fixes for resource allocation
113 * failures.
114 */
115
116/*
117 * 1998/09/20 -- David Weinehall -- Added slow-down code for buggy PS/2-drives.
118 */
119
120/*
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).
124 */
125
126/*
127 * 2000/08/28 -- Arnaldo Carvalho de Melo <acme@conectiva.com.br>
128 * - get rid of check_region
129 * - s/suser/capable/
130 */
131
132/*
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.)
135 */
136
137/*
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.
141 */
142
143/* 2003/07/28 -- Daniele Bellucci <bellucda@tiscali.it>.
144 * Better audit of register_blkdev.
145 */
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#undef FLOPPY_SILENT_DCL_CLEAR
148
149#define REALLY_SLOW_IO
150
151#define DEBUGT 2
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Joe Perches891eda82010-03-10 15:21:05 -0800153#define DPRINT(format, args...) \
154 pr_info("floppy%d: " format, current_drive, ##args)
155
156#define DCL_DEBUG /* debug disk change line */
Joe Perches87f530d2010-03-10 15:20:54 -0800157#ifdef DCL_DEBUG
158#define debug_dcl(test, fmt, args...) \
159 do { if ((test) & FD_DEBUG) DPRINT(fmt, ##args); } while (0)
160#else
161#define debug_dcl(test, fmt, args...) \
162 do { if (0) DPRINT(fmt, ##args); } while (0)
163#endif
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/* do print messages for unexpected interrupts */
166static 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>
173#define FDPATCHES
174#include <linux/fdreg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175#include <linux/fd.h>
176#include <linux/hdreg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#include <linux/errno.h>
178#include <linux/slab.h>
179#include <linux/mm.h>
180#include <linux/bio.h>
181#include <linux/string.h>
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -0800182#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183#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>
Russell Kingd052d1b2005-10-29 19:07:23 +0100189#include <linux/platform_device.h>
Scott James Remnant83f9ef42009-04-02 16:56:47 -0700190#include <linux/mod_devicetable.h>
Jes Sorensenb1c82b52006-03-23 03:00:26 -0800191#include <linux/mutex.h>
Joe Perchesd4937542010-03-10 15:20:44 -0800192#include <linux/io.h>
193#include <linux/uaccess.h>
Andi Kleen0cc15d032012-07-02 17:27:04 -0700194#include <linux/async.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196/*
197 * PS/2 floppies have much slower step rates than regular floppies.
198 * It's been recommended that take about 1/4 of the default speed
199 * in some more extreme cases.
200 */
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200201static DEFINE_MUTEX(floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202static int slow_floppy;
203
204#include <asm/dma.h>
205#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207static int FLOPPY_IRQ = 6;
208static int FLOPPY_DMA = 2;
209static int can_use_virtual_dma = 2;
210/* =======
211 * can use virtual DMA:
212 * 0 = use of virtual DMA disallowed by config
213 * 1 = use of virtual DMA prescribed by config
214 * 2 = no virtual DMA preference configured. By default try hard DMA,
215 * but fall back on virtual DMA when not enough memory available
216 */
217
218static int use_virtual_dma;
219/* =======
220 * use virtual DMA
221 * 0 using hard DMA
222 * 1 using virtual DMA
223 * This variable is set to virtual when a DMA mem problem arises, and
224 * reset back in floppy_grab_irq_and_dma.
225 * It is not safe to reset it in other circumstances, because the floppy
226 * driver may have several buffers in use at once, and we do currently not
227 * record each buffers capabilities
228 */
229
230static DEFINE_SPINLOCK(floppy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232static unsigned short virtual_dma_port = 0x3f0;
David Howells7d12e782006-10-05 14:55:46 +0100233irqreturn_t floppy_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234static int set_dor(int fdc, char mask, char data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236#define K_64 0x10000 /* 64KB */
237
238/* the following is the mask of allowed drives. By default units 2 and
239 * 3 of both floppy controllers are disabled, because switching on the
240 * motor of these drives causes system hangs on some PCI computers. drive
241 * 0 is the low bit (0x1), and drive 7 is the high bit (0x80). Bits are on if
242 * a drive is allowed.
243 *
244 * NOTE: This must come before we include the arch floppy header because
245 * some ports reference this variable from there. -DaveM
246 */
247
248static int allowed_drive_mask = 0x33;
249
250#include <asm/floppy.h>
251
252static int irqdma_allocated;
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254#include <linux/blkdev.h>
255#include <linux/blkpg.h>
256#include <linux/cdrom.h> /* for the compatibility eject ioctl */
257#include <linux/completion.h>
258
259static struct request *current_req;
Joe Perches48c8cee2010-03-10 15:20:45 -0800260static void do_fd_request(struct request_queue *q);
Jens Axboe48821182010-09-22 09:32:36 +0200261static int set_next_request(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263#ifndef fd_get_dma_residue
264#define fd_get_dma_residue() get_dma_residue(FLOPPY_DMA)
265#endif
266
267/* Dma Memory related stuff */
268
269#ifndef fd_dma_mem_free
270#define fd_dma_mem_free(addr, size) free_pages(addr, get_order(size))
271#endif
272
273#ifndef fd_dma_mem_alloc
Joe Perches48c8cee2010-03-10 15:20:45 -0800274#define fd_dma_mem_alloc(size) __get_dma_pages(GFP_KERNEL, get_order(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#endif
276
277static inline void fallback_on_nodma_alloc(char **addr, size_t l)
278{
279#ifdef FLOPPY_CAN_FALLBACK_ON_NODMA
280 if (*addr)
281 return; /* we have the memory */
282 if (can_use_virtual_dma != 2)
283 return; /* no fallback allowed */
Joe Perchesb46df352010-03-10 15:20:46 -0800284 pr_info("DMA memory shortage. Temporarily falling back on virtual DMA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 *addr = (char *)nodma_mem_alloc(l);
286#else
287 return;
288#endif
289}
290
291/* End dma memory related stuff */
292
293static unsigned long fake_change;
Joe Perches29f1c782010-03-10 15:21:00 -0800294static bool initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Joe Perches48c8cee2010-03-10 15:20:45 -0800296#define ITYPE(x) (((x) >> 2) & 0x1f)
297#define TOMINOR(x) ((x & 3) | ((x & 4) << 5))
298#define UNIT(x) ((x) & 0x03) /* drive on fdc */
299#define FDC(x) (((x) & 0x04) >> 2) /* fdc of drive */
Jesper Juhl06f748c2007-10-16 23:30:57 -0700300 /* reverse mapping from unit and fdc to drive */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301#define REVDRIVE(fdc, unit) ((unit) + ((fdc) << 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Joe Perches48c8cee2010-03-10 15:20:45 -0800303#define DP (&drive_params[current_drive])
304#define DRS (&drive_state[current_drive])
305#define DRWE (&write_errors[current_drive])
306#define FDCS (&fdc_state[fdc])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Joe Perches48c8cee2010-03-10 15:20:45 -0800308#define UDP (&drive_params[drive])
309#define UDRS (&drive_state[drive])
310#define UDRWE (&write_errors[drive])
311#define UFDCS (&fdc_state[FDC(drive)])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Joe Perches48c8cee2010-03-10 15:20:45 -0800313#define PH_HEAD(floppy, head) (((((floppy)->stretch & 2) >> 1) ^ head) << 2)
314#define STRETCH(floppy) ((floppy)->stretch & FD_STRETCH)
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/* read/write */
Joe Perches48c8cee2010-03-10 15:20:45 -0800317#define COMMAND (raw_cmd->cmd[0])
318#define DR_SELECT (raw_cmd->cmd[1])
319#define TRACK (raw_cmd->cmd[2])
320#define HEAD (raw_cmd->cmd[3])
321#define SECTOR (raw_cmd->cmd[4])
322#define SIZECODE (raw_cmd->cmd[5])
323#define SECT_PER_TRACK (raw_cmd->cmd[6])
324#define GAP (raw_cmd->cmd[7])
325#define SIZECODE2 (raw_cmd->cmd[8])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#define NR_RW 9
327
328/* format */
Joe Perches48c8cee2010-03-10 15:20:45 -0800329#define F_SIZECODE (raw_cmd->cmd[2])
330#define F_SECT_PER_TRACK (raw_cmd->cmd[3])
331#define F_GAP (raw_cmd->cmd[4])
332#define F_FILL (raw_cmd->cmd[5])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333#define NR_F 6
334
335/*
Joe Perches48c8cee2010-03-10 15:20:45 -0800336 * Maximum disk size (in kilobytes).
337 * This default is used whenever the current disk size is unknown.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 * [Now it is rather a minimum]
339 */
340#define MAX_DISK_SIZE 4 /* 3984 */
341
342/*
343 * globals used by 'result()'
344 */
345#define MAX_REPLIES 16
346static unsigned char reply_buffer[MAX_REPLIES];
Joe Perches891eda82010-03-10 15:21:05 -0800347static int inr; /* size of reply buffer, when called from interrupt */
Joe Perches48c8cee2010-03-10 15:20:45 -0800348#define ST0 (reply_buffer[0])
349#define ST1 (reply_buffer[1])
350#define ST2 (reply_buffer[2])
351#define ST3 (reply_buffer[0]) /* result of GETSTATUS */
352#define R_TRACK (reply_buffer[3])
353#define R_HEAD (reply_buffer[4])
354#define R_SECTOR (reply_buffer[5])
355#define R_SIZECODE (reply_buffer[6])
356
357#define SEL_DLY (2 * HZ / 100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359/*
360 * this struct defines the different floppy drive types.
361 */
362static struct {
363 struct floppy_drive_params params;
364 const char *name; /* name printed while booting */
365} default_drive_params[] = {
366/* NOTE: the time values in jiffies should be in msec!
367 CMOS drive type
368 | Maximum data rate supported by drive type
369 | | Head load time, msec
370 | | | Head unload time, msec (not used)
371 | | | | Step rate interval, usec
372 | | | | | Time needed for spinup time (jiffies)
373 | | | | | | Timeout for spinning down (jiffies)
374 | | | | | | | Spindown offset (where disk stops)
375 | | | | | | | | Select delay
376 | | | | | | | | | RPS
377 | | | | | | | | | | Max number of tracks
378 | | | | | | | | | | | Interrupt timeout
379 | | | | | | | | | | | | Max nonintlv. sectors
380 | | | | | | | | | | | | | -Max Errors- flags */
381{{0, 500, 16, 16, 8000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 80, 3*HZ, 20, {3,1,2,0,2}, 0,
382 0, { 7, 4, 8, 2, 1, 5, 3,10}, 3*HZ/2, 0 }, "unknown" },
383
384{{1, 300, 16, 16, 8000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 40, 3*HZ, 17, {3,1,2,0,2}, 0,
385 0, { 1, 0, 0, 0, 0, 0, 0, 0}, 3*HZ/2, 1 }, "360K PC" }, /*5 1/4 360 KB PC*/
386
387{{2, 500, 16, 16, 6000, 4*HZ/10, 3*HZ, 14, SEL_DLY, 6, 83, 3*HZ, 17, {3,1,2,0,2}, 0,
388 0, { 2, 5, 6,23,10,20,12, 0}, 3*HZ/2, 2 }, "1.2M" }, /*5 1/4 HD AT*/
389
390{{3, 250, 16, 16, 3000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 83, 3*HZ, 20, {3,1,2,0,2}, 0,
391 0, { 4,22,21,30, 3, 0, 0, 0}, 3*HZ/2, 4 }, "720k" }, /*3 1/2 DD*/
392
393{{4, 500, 16, 16, 4000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 20, {3,1,2,0,2}, 0,
394 0, { 7, 4,25,22,31,21,29,11}, 3*HZ/2, 7 }, "1.44M" }, /*3 1/2 HD*/
395
396{{5, 1000, 15, 8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 40, {3,1,2,0,2}, 0,
397 0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M AMI BIOS" }, /*3 1/2 ED*/
398
399{{6, 1000, 15, 8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 40, {3,1,2,0,2}, 0,
400 0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M" } /*3 1/2 ED*/
401/* | --autodetected formats--- | | |
402 * read_track | | Name printed when booting
403 * | Native format
404 * Frequency of disk change checks */
405};
406
407static struct floppy_drive_params drive_params[N_DRIVE];
408static struct floppy_drive_struct drive_state[N_DRIVE];
409static struct floppy_write_errors write_errors[N_DRIVE];
410static struct timer_list motor_off_timer[N_DRIVE];
411static struct gendisk *disks[N_DRIVE];
412static struct block_device *opened_bdev[N_DRIVE];
Jes Sorensenb1c82b52006-03-23 03:00:26 -0800413static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414static struct floppy_raw_cmd *raw_cmd, default_raw_cmd;
Jens Axboe48821182010-09-22 09:32:36 +0200415static int fdc_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417/*
418 * This struct defines the different floppy types.
419 *
420 * Bit 0 of 'stretch' tells if the tracks need to be doubled for some
421 * types (e.g. 360kB diskette in 1.2MB drive, etc.). Bit 1 of 'stretch'
422 * tells if the disk is in Commodore 1581 format, which means side 0 sectors
423 * are located on side 1 of the disk but with a side 0 ID, and vice-versa.
424 * This is the same as the Sharp MZ-80 5.25" CP/M disk format, except that the
425 * 1581's logical side 0 is on physical side 1, whereas the Sharp's logical
426 * side 0 is on physical side 0 (but with the misnamed sector IDs).
427 * 'stretch' should probably be renamed to something more general, like
Keith Wansbrough9e491842008-09-22 14:57:17 -0700428 * 'options'.
429 *
430 * Bits 2 through 9 of 'stretch' tell the number of the first sector.
431 * The LSB (bit 2) is flipped. For most disks, the first sector
432 * is 1 (represented by 0x00<<2). For some CP/M and music sampler
433 * disks (such as Ensoniq EPS 16plus) it is 0 (represented as 0x01<<2).
434 * For Amstrad CPC disks it is 0xC1 (represented as 0xC0<<2).
435 *
436 * Other parameters should be self-explanatory (see also setfdprm(8)).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 */
438/*
439 Size
440 | Sectors per track
441 | | Head
442 | | | Tracks
443 | | | | Stretch
444 | | | | | Gap 1 size
445 | | | | | | Data rate, | 0x40 for perp
446 | | | | | | | Spec1 (stepping rate, head unload
447 | | | | | | | | /fmt gap (gap2) */
448static struct floppy_struct floppy_type[32] = {
449 { 0, 0,0, 0,0,0x00,0x00,0x00,0x00,NULL }, /* 0 no testing */
450 { 720, 9,2,40,0,0x2A,0x02,0xDF,0x50,"d360" }, /* 1 360KB PC */
451 { 2400,15,2,80,0,0x1B,0x00,0xDF,0x54,"h1200" }, /* 2 1.2MB AT */
452 { 720, 9,1,80,0,0x2A,0x02,0xDF,0x50,"D360" }, /* 3 360KB SS 3.5" */
453 { 1440, 9,2,80,0,0x2A,0x02,0xDF,0x50,"D720" }, /* 4 720KB 3.5" */
454 { 720, 9,2,40,1,0x23,0x01,0xDF,0x50,"h360" }, /* 5 360KB AT */
455 { 1440, 9,2,80,0,0x23,0x01,0xDF,0x50,"h720" }, /* 6 720KB AT */
456 { 2880,18,2,80,0,0x1B,0x00,0xCF,0x6C,"H1440" }, /* 7 1.44MB 3.5" */
457 { 5760,36,2,80,0,0x1B,0x43,0xAF,0x54,"E2880" }, /* 8 2.88MB 3.5" */
458 { 6240,39,2,80,0,0x1B,0x43,0xAF,0x28,"E3120" }, /* 9 3.12MB 3.5" */
459
460 { 2880,18,2,80,0,0x25,0x00,0xDF,0x02,"h1440" }, /* 10 1.44MB 5.25" */
461 { 3360,21,2,80,0,0x1C,0x00,0xCF,0x0C,"H1680" }, /* 11 1.68MB 3.5" */
462 { 820,10,2,41,1,0x25,0x01,0xDF,0x2E,"h410" }, /* 12 410KB 5.25" */
463 { 1640,10,2,82,0,0x25,0x02,0xDF,0x2E,"H820" }, /* 13 820KB 3.5" */
464 { 2952,18,2,82,0,0x25,0x00,0xDF,0x02,"h1476" }, /* 14 1.48MB 5.25" */
465 { 3444,21,2,82,0,0x25,0x00,0xDF,0x0C,"H1722" }, /* 15 1.72MB 3.5" */
466 { 840,10,2,42,1,0x25,0x01,0xDF,0x2E,"h420" }, /* 16 420KB 5.25" */
467 { 1660,10,2,83,0,0x25,0x02,0xDF,0x2E,"H830" }, /* 17 830KB 3.5" */
468 { 2988,18,2,83,0,0x25,0x00,0xDF,0x02,"h1494" }, /* 18 1.49MB 5.25" */
469 { 3486,21,2,83,0,0x25,0x00,0xDF,0x0C,"H1743" }, /* 19 1.74 MB 3.5" */
470
471 { 1760,11,2,80,0,0x1C,0x09,0xCF,0x00,"h880" }, /* 20 880KB 5.25" */
472 { 2080,13,2,80,0,0x1C,0x01,0xCF,0x00,"D1040" }, /* 21 1.04MB 3.5" */
473 { 2240,14,2,80,0,0x1C,0x19,0xCF,0x00,"D1120" }, /* 22 1.12MB 3.5" */
474 { 3200,20,2,80,0,0x1C,0x20,0xCF,0x2C,"h1600" }, /* 23 1.6MB 5.25" */
475 { 3520,22,2,80,0,0x1C,0x08,0xCF,0x2e,"H1760" }, /* 24 1.76MB 3.5" */
476 { 3840,24,2,80,0,0x1C,0x20,0xCF,0x00,"H1920" }, /* 25 1.92MB 3.5" */
477 { 6400,40,2,80,0,0x25,0x5B,0xCF,0x00,"E3200" }, /* 26 3.20MB 3.5" */
478 { 7040,44,2,80,0,0x25,0x5B,0xCF,0x00,"E3520" }, /* 27 3.52MB 3.5" */
479 { 7680,48,2,80,0,0x25,0x63,0xCF,0x00,"E3840" }, /* 28 3.84MB 3.5" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 { 3680,23,2,80,0,0x1C,0x10,0xCF,0x00,"H1840" }, /* 29 1.84MB 3.5" */
Jesper Juhl06f748c2007-10-16 23:30:57 -0700481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 { 1600,10,2,80,0,0x25,0x02,0xDF,0x2E,"D800" }, /* 30 800KB 3.5" */
483 { 3200,20,2,80,0,0x1C,0x00,0xCF,0x2C,"H1600" }, /* 31 1.6MB 3.5" */
484};
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486#define SECTSIZE (_FD_SECTSIZE(*floppy))
487
488/* Auto-detection: Disk type used until the next media change occurs. */
489static struct floppy_struct *current_type[N_DRIVE];
490
491/*
492 * User-provided type information. current_type points to
493 * the respective entry of this array.
494 */
495static struct floppy_struct user_params[N_DRIVE];
496
497static sector_t floppy_sizes[256];
498
Hannes Reinecke94fd0db2005-07-15 10:09:25 +0200499static char floppy_device_name[] = "floppy";
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501/*
502 * The driver is trying to determine the correct media format
503 * while probing is set. rw_interrupt() clears it after a
504 * successful access.
505 */
506static int probing;
507
508/* Synchronization of FDC access. */
Joe Perches48c8cee2010-03-10 15:20:45 -0800509#define FD_COMMAND_NONE -1
510#define FD_COMMAND_ERROR 2
511#define FD_COMMAND_OKAY 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513static volatile int command_status = FD_COMMAND_NONE;
514static unsigned long fdc_busy;
515static DECLARE_WAIT_QUEUE_HEAD(fdc_wait);
516static DECLARE_WAIT_QUEUE_HEAD(command_done);
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518/* Errors during formatting are counted here. */
519static int format_errors;
520
521/* Format request descriptor. */
522static struct format_descr format_req;
523
524/*
525 * Rate is 0 for 500kb/s, 1 for 300kbps, 2 for 250kbps
526 * Spec1 is 0xSH, where S is stepping rate (F=1ms, E=2ms, D=3ms etc),
527 * H is head unload time (1=16ms, 2=32ms, etc)
528 */
529
530/*
531 * Track buffer
532 * Because these are written to by the DMA controller, they must
533 * not contain a 64k byte boundary crossing, or data will be
534 * corrupted/lost.
535 */
536static char *floppy_track_buffer;
537static int max_buffer_sectors;
538
539static int *errors;
Jesper Juhl06f748c2007-10-16 23:30:57 -0700540typedef void (*done_f)(int);
Stephen Hemminger3b06c212010-07-20 20:09:00 -0600541static const struct cont_t {
Joe Perches48c8cee2010-03-10 15:20:45 -0800542 void (*interrupt)(void);
543 /* this is called after the interrupt of the
544 * main command */
Jesper Juhl06f748c2007-10-16 23:30:57 -0700545 void (*redo)(void); /* this is called to retry the operation */
546 void (*error)(void); /* this is called to tally an error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 done_f done; /* this is called to say if the operation has
548 * succeeded/failed */
549} *cont;
550
551static void floppy_ready(void);
552static void floppy_start(void);
553static void process_fd_request(void);
554static void recalibrate_floppy(void);
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200555static void floppy_shutdown(struct work_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Philippe De Muyter5a74db02009-02-18 14:48:36 -0800557static int floppy_request_regions(int);
558static void floppy_release_regions(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559static int floppy_grab_irq_and_dma(void);
560static void floppy_release_irq_and_dma(void);
561
562/*
563 * The "reset" variable should be tested whenever an interrupt is scheduled,
564 * after the commands have been sent. This is to ensure that the driver doesn't
565 * get wedged when the interrupt doesn't come because of a failed command.
566 * reset doesn't need to be tested before sending commands, because
567 * output_byte is automatically disabled when reset is set.
568 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569static void reset_fdc(void);
570
571/*
572 * These are global variables, as that's the easiest way to give
573 * information to interrupts. They are the data used for the current
574 * request.
575 */
Joe Perches48c8cee2010-03-10 15:20:45 -0800576#define NO_TRACK -1
577#define NEED_1_RECAL -2
578#define NEED_2_RECAL -3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Stephen Hemminger575cfc62010-06-15 13:21:11 +0200580static atomic_t usage_count = ATOMIC_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582/* buffer related variables */
583static int buffer_track = -1;
584static int buffer_drive = -1;
585static int buffer_min = -1;
586static int buffer_max = -1;
587
588/* fdc related variables, should end up in a struct */
589static struct floppy_fdc_state fdc_state[N_FDC];
590static int fdc; /* current fdc */
591
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200592static struct workqueue_struct *floppy_wq;
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594static struct floppy_struct *_floppy = floppy_type;
595static unsigned char current_drive;
596static long current_count_sectors;
597static unsigned char fsector_t; /* sector in track */
598static unsigned char in_sector_offset; /* offset within physical sector,
599 * expressed in units of 512 bytes */
600
Pekka Enberg2b51dca2010-11-08 14:44:34 +0100601static inline bool drive_no_geom(int drive)
602{
603 return !current_type[drive] && !ITYPE(UDRS->fd_device);
604}
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606#ifndef fd_eject
607static inline int fd_eject(int drive)
608{
609 return -EINVAL;
610}
611#endif
612
613/*
614 * Debugging
615 * =========
616 */
617#ifdef DEBUGT
618static long unsigned debugtimer;
619
620static inline void set_debugt(void)
621{
622 debugtimer = jiffies;
623}
624
Joe Perchesded28632010-03-10 15:21:09 -0800625static inline void debugt(const char *func, const char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 if (DP->flags & DEBUGT)
Joe Perchesded28632010-03-10 15:21:09 -0800628 pr_info("%s:%s dtime=%lu\n", func, msg, jiffies - debugtimer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630#else
631static inline void set_debugt(void) { }
Joe Perchesded28632010-03-10 15:21:09 -0800632static inline void debugt(const char *func, const char *msg) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633#endif /* DEBUGT */
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200636static DECLARE_DELAYED_WORK(fd_timeout, floppy_shutdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637static const char *timeout_message;
638
Joe Perches275176b2010-03-10 15:21:06 -0800639static void is_alive(const char *func, const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
641 /* this routine checks whether the floppy driver is "alive" */
Joe Perchesc5297302010-03-10 15:20:58 -0800642 if (test_bit(0, &fdc_busy) && command_status < 2 &&
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200643 !delayed_work_pending(&fd_timeout)) {
Joe Perches275176b2010-03-10 15:21:06 -0800644 DPRINT("%s: timeout handler died. %s\n", func, message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Joe Perches48c8cee2010-03-10 15:20:45 -0800648static void (*do_floppy)(void) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650#define OLOGSIZE 20
651
Joe Perches48c8cee2010-03-10 15:20:45 -0800652static void (*lasthandler)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653static unsigned long interruptjiffies;
654static unsigned long resultjiffies;
655static int resultsize;
656static unsigned long lastredo;
657
658static struct output_log {
659 unsigned char data;
660 unsigned char status;
661 unsigned long jiffies;
662} output_log[OLOGSIZE];
663
664static int output_log_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
666#define current_reqD -1
667#define MAXTIMEOUT -2
668
Joe Perches73507e62010-03-10 15:21:03 -0800669static void __reschedule_timeout(int drive, const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200671 unsigned long delay;
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 if (drive == current_reqD)
674 drive = current_drive;
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200675
Eric Sesterhenn / Snakebyte4acb3e22007-05-23 13:58:15 -0700676 if (drive < 0 || drive >= N_DRIVE) {
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200677 delay = 20UL * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 drive = 0;
679 } else
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200680 delay = UDP->timeout;
681
Tejun Heoe7c2f962012-08-21 13:18:24 -0700682 mod_delayed_work(floppy_wq, &fd_timeout, delay);
Joe Perchesa81ee542010-03-10 15:20:46 -0800683 if (UDP->flags & FD_DEBUG)
Joe Perches73507e62010-03-10 15:21:03 -0800684 DPRINT("reschedule timeout %s\n", message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 timeout_message = message;
686}
687
Joe Perches73507e62010-03-10 15:21:03 -0800688static void reschedule_timeout(int drive, const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 unsigned long flags;
691
692 spin_lock_irqsave(&floppy_lock, flags);
Joe Perches73507e62010-03-10 15:21:03 -0800693 __reschedule_timeout(drive, message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 spin_unlock_irqrestore(&floppy_lock, flags);
695}
696
Joe Perches48c8cee2010-03-10 15:20:45 -0800697#define INFBOUND(a, b) (a) = max_t(int, a, b)
698#define SUPBOUND(a, b) (a) = min_t(int, a, b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700/*
701 * Bottom half floppy driver.
702 * ==========================
703 *
704 * This part of the file contains the code talking directly to the hardware,
705 * and also the main service loop (seek-configure-spinup-command)
706 */
707
708/*
709 * disk change.
710 * This routine is responsible for maintaining the FD_DISK_CHANGE flag,
711 * and the last_checked date.
712 *
713 * last_checked is the date of the last check which showed 'no disk change'
714 * FD_DISK_CHANGE is set under two conditions:
715 * 1. The floppy has been changed after some i/o to that floppy already
716 * took place.
717 * 2. No floppy disk is in the drive. This is done in order to ensure that
718 * requests are quickly flushed in case there is no disk in the drive. It
719 * follows that FD_DISK_CHANGE can only be cleared if there is a disk in
720 * the drive.
721 *
722 * For 1., maxblock is observed. Maxblock is 0 if no i/o has taken place yet.
723 * For 2., FD_DISK_NEWCHANGE is watched. FD_DISK_NEWCHANGE is cleared on
724 * each seek. If a disk is present, the disk change line should also be
725 * cleared on each seek. Thus, if FD_DISK_NEWCHANGE is clear, but the disk
726 * change line is set, this means either that no disk is in the drive, or
727 * that it has been removed since the last seek.
728 *
729 * This means that we really have a third possibility too:
730 * The floppy has been changed after the last seek.
731 */
732
733static int disk_change(int drive)
734{
735 int fdc = FDC(drive);
Jesper Juhl06f748c2007-10-16 23:30:57 -0700736
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -0800737 if (time_before(jiffies, UDRS->select_date + UDP->select_delay))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 DPRINT("WARNING disk change called early\n");
739 if (!(FDCS->dor & (0x10 << UNIT(drive))) ||
740 (FDCS->dor & 3) != UNIT(drive) || fdc != FDC(drive)) {
741 DPRINT("probing disk change on unselected drive\n");
742 DPRINT("drive=%d fdc=%d dor=%x\n", drive, FDC(drive),
743 (unsigned int)FDCS->dor);
744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Joe Perches87f530d2010-03-10 15:20:54 -0800746 debug_dcl(UDP->flags,
747 "checking disk change line for drive %d\n", drive);
748 debug_dcl(UDP->flags, "jiffies=%lu\n", jiffies);
749 debug_dcl(UDP->flags, "disk change line=%x\n", fd_inb(FD_DIR) & 0x80);
750 debug_dcl(UDP->flags, "flags=%lx\n", UDRS->flags);
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (UDP->flags & FD_BROKEN_DCL)
Joe Perchese0298532010-03-10 15:20:55 -0800753 return test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if ((fd_inb(FD_DIR) ^ UDP->flags) & 0x80) {
Joe Perchese0298532010-03-10 15:20:55 -0800755 set_bit(FD_VERIFY_BIT, &UDRS->flags);
756 /* verify write protection */
757
758 if (UDRS->maxblock) /* mark it changed */
759 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 /* invalidate its geometry */
762 if (UDRS->keep_data >= 0) {
763 if ((UDP->flags & FTD_MSG) &&
764 current_type[drive] != NULL)
Joe Perches891eda82010-03-10 15:21:05 -0800765 DPRINT("Disk type is undefined after disk change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 current_type[drive] = NULL;
767 floppy_sizes[TOMINOR(drive)] = MAX_DISK_SIZE << 1;
768 }
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return 1;
771 } else {
772 UDRS->last_checked = jiffies;
Joe Perchese0298532010-03-10 15:20:55 -0800773 clear_bit(FD_DISK_NEWCHANGE_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775 return 0;
776}
777
778static inline int is_selected(int dor, int unit)
779{
780 return ((dor & (0x10 << unit)) && (dor & 3) == unit);
781}
782
Joe Perches57584c52010-03-10 15:21:00 -0800783static bool is_ready_state(int status)
784{
785 int state = status & (STATUS_READY | STATUS_DIR | STATUS_DMA);
786 return state == STATUS_READY;
787}
788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789static int set_dor(int fdc, char mask, char data)
790{
Jesper Juhlfdc1ca82007-10-16 23:30:58 -0700791 unsigned char unit;
792 unsigned char drive;
793 unsigned char newdor;
794 unsigned char olddor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796 if (FDCS->address == -1)
797 return -1;
798
799 olddor = FDCS->dor;
800 newdor = (olddor & mask) | data;
801 if (newdor != olddor) {
802 unit = olddor & 0x3;
803 if (is_selected(olddor, unit) && !is_selected(newdor, unit)) {
804 drive = REVDRIVE(fdc, unit);
Joe Perches87f530d2010-03-10 15:20:54 -0800805 debug_dcl(UDP->flags,
806 "calling disk change from set_dor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 disk_change(drive);
808 }
809 FDCS->dor = newdor;
810 fd_outb(newdor, FD_DOR);
811
812 unit = newdor & 0x3;
813 if (!is_selected(olddor, unit) && is_selected(newdor, unit)) {
814 drive = REVDRIVE(fdc, unit);
815 UDRS->select_date = jiffies;
816 }
817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return olddor;
819}
820
821static void twaddle(void)
822{
823 if (DP->select_delay)
824 return;
825 fd_outb(FDCS->dor & ~(0x10 << UNIT(current_drive)), FD_DOR);
826 fd_outb(FDCS->dor, FD_DOR);
827 DRS->select_date = jiffies;
828}
829
Joe Perches57584c52010-03-10 15:21:00 -0800830/*
831 * Reset all driver information about the current fdc.
832 * This is needed after a reset, and after a raw command.
833 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834static void reset_fdc_info(int mode)
835{
836 int drive;
837
838 FDCS->spec1 = FDCS->spec2 = -1;
839 FDCS->need_configure = 1;
840 FDCS->perp_mode = 1;
841 FDCS->rawcmd = 0;
842 for (drive = 0; drive < N_DRIVE; drive++)
843 if (FDC(drive) == fdc && (mode || UDRS->track != NEED_1_RECAL))
844 UDRS->track = NEED_2_RECAL;
845}
846
847/* selects the fdc and drive, and enables the fdc's input/dma. */
848static void set_fdc(int drive)
849{
850 if (drive >= 0 && drive < N_DRIVE) {
851 fdc = FDC(drive);
852 current_drive = drive;
853 }
854 if (fdc != 1 && fdc != 0) {
Joe Perchesb46df352010-03-10 15:20:46 -0800855 pr_info("bad fdc value\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return;
857 }
858 set_dor(fdc, ~0, 8);
859#if N_FDC > 1
860 set_dor(1 - fdc, ~8, 0);
861#endif
862 if (FDCS->rawcmd == 2)
863 reset_fdc_info(1);
864 if (fd_inb(FD_STATUS) != STATUS_READY)
865 FDCS->reset = 1;
866}
867
868/* locks the driver */
Stephen Hemmingerb862f262010-06-15 13:21:11 +0200869static int lock_fdc(int drive, bool interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Stephen Hemmingerb862f262010-06-15 13:21:11 +0200871 if (WARN(atomic_read(&usage_count) == 0,
872 "Trying to lock fdc while usage count=0\n"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Stephen Hemmingerb862f262010-06-15 13:21:11 +0200875 if (wait_event_interruptible(fdc_wait, !test_and_set_bit(0, &fdc_busy)))
876 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 command_status = FD_COMMAND_NONE;
879
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200880 reschedule_timeout(drive, "lock fdc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 set_fdc(drive);
882 return 0;
883}
884
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885/* unlocks the driver */
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +0200886static void unlock_fdc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (!test_bit(0, &fdc_busy))
889 DPRINT("FDC access conflict!\n");
890
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200891 raw_cmd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 command_status = FD_COMMAND_NONE;
Tejun Heo136b5722012-08-21 13:18:24 -0700893 cancel_delayed_work(&fd_timeout);
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200894 do_floppy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 cont = NULL;
896 clear_bit(0, &fdc_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 wake_up(&fdc_wait);
898}
899
900/* switches the motor off after a given timeout */
901static void motor_off_callback(unsigned long nr)
902{
903 unsigned char mask = ~(0x10 << UNIT(nr));
904
905 set_dor(FDC(nr), mask, 0);
906}
907
908/* schedules motor off */
909static void floppy_off(unsigned int drive)
910{
911 unsigned long volatile delta;
Jesper Juhlfdc1ca82007-10-16 23:30:58 -0700912 int fdc = FDC(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 if (!(FDCS->dor & (0x10 << UNIT(drive))))
915 return;
916
917 del_timer(motor_off_timer + drive);
918
919 /* make spindle stop in a position which minimizes spinup time
920 * next time */
921 if (UDP->rps) {
922 delta = jiffies - UDRS->first_read_date + HZ -
923 UDP->spindown_offset;
924 delta = ((delta * UDP->rps) % HZ) / UDP->rps;
925 motor_off_timer[drive].expires =
926 jiffies + UDP->spindown - delta;
927 }
928 add_timer(motor_off_timer + drive);
929}
930
931/*
932 * cycle through all N_DRIVE floppy drives, for disk change testing.
933 * stopping at current drive. This is done before any long operation, to
934 * be sure to have up to date disk change information.
935 */
936static void scandrives(void)
937{
Jesper Juhl06f748c2007-10-16 23:30:57 -0700938 int i;
939 int drive;
940 int saved_drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 if (DP->select_delay)
943 return;
944
945 saved_drive = current_drive;
946 for (i = 0; i < N_DRIVE; i++) {
947 drive = (saved_drive + i + 1) % N_DRIVE;
948 if (UDRS->fd_ref == 0 || UDP->select_delay != 0)
949 continue; /* skip closed drives */
950 set_fdc(drive);
951 if (!(set_dor(fdc, ~3, UNIT(drive) | (0x10 << UNIT(drive))) &
952 (0x10 << UNIT(drive))))
953 /* switch the motor off again, if it was off to
954 * begin with */
955 set_dor(fdc, ~(0x10 << UNIT(drive)), 0);
956 }
957 set_fdc(saved_drive);
958}
959
960static void empty(void)
961{
962}
963
Tejun Heo75ddb382014-03-07 10:24:48 -0500964static void (*floppy_work_fn)(void);
965
966static void floppy_work_workfn(struct work_struct *work)
967{
968 floppy_work_fn();
969}
970
971static DECLARE_WORK(floppy_work, floppy_work_workfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Joe Perches48c8cee2010-03-10 15:20:45 -0800973static void schedule_bh(void (*handler)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200975 WARN_ON(work_pending(&floppy_work));
976
Tejun Heo75ddb382014-03-07 10:24:48 -0500977 floppy_work_fn = handler;
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200978 queue_work(floppy_wq, &floppy_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
Tejun Heo75ddb382014-03-07 10:24:48 -0500981static void (*fd_timer_fn)(void) = NULL;
982
983static void fd_timer_workfn(struct work_struct *work)
984{
985 fd_timer_fn();
986}
987
988static DECLARE_DELAYED_WORK(fd_timer, fd_timer_workfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990static void cancel_activity(void)
991{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 do_floppy = NULL;
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200993 cancel_delayed_work_sync(&fd_timer);
994 cancel_work_sync(&floppy_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
997/* this function makes sure that the disk stays in the drive during the
998 * transfer */
Tejun Heo75ddb382014-03-07 10:24:48 -0500999static void fd_watchdog(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Joe Perches87f530d2010-03-10 15:20:54 -08001001 debug_dcl(DP->flags, "calling disk change from watchdog\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 if (disk_change(current_drive)) {
1004 DPRINT("disk removed during i/o\n");
1005 cancel_activity();
1006 cont->done(0);
1007 reset_fdc();
1008 } else {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001009 cancel_delayed_work(&fd_timer);
Tejun Heo75ddb382014-03-07 10:24:48 -05001010 fd_timer_fn = fd_watchdog;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001011 queue_delayed_work(floppy_wq, &fd_timer, HZ / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
1013}
1014
1015static void main_command_interrupt(void)
1016{
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001017 cancel_delayed_work(&fd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 cont->interrupt();
1019}
1020
1021/* waits for a delay (spinup or select) to pass */
Tejun Heo75ddb382014-03-07 10:24:48 -05001022static int fd_wait_for_completion(unsigned long expires,
1023 void (*function)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
1025 if (FDCS->reset) {
1026 reset_fdc(); /* do the reset during sleep to win time
1027 * if we don't need to sleep, it's a good
1028 * occasion anyways */
1029 return 1;
1030 }
1031
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001032 if (time_before(jiffies, expires)) {
1033 cancel_delayed_work(&fd_timer);
Tejun Heo75ddb382014-03-07 10:24:48 -05001034 fd_timer_fn = function;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001035 queue_delayed_work(floppy_wq, &fd_timer, expires - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return 1;
1037 }
1038 return 0;
1039}
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041static void setup_DMA(void)
1042{
1043 unsigned long f;
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 if (raw_cmd->length == 0) {
1046 int i;
1047
Joe Perchesb46df352010-03-10 15:20:46 -08001048 pr_info("zero dma transfer size:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 for (i = 0; i < raw_cmd->cmd_count; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001050 pr_cont("%x,", raw_cmd->cmd[i]);
1051 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 cont->done(0);
1053 FDCS->reset = 1;
1054 return;
1055 }
1056 if (((unsigned long)raw_cmd->kernel_data) % 512) {
Joe Perchesb46df352010-03-10 15:20:46 -08001057 pr_info("non aligned address: %p\n", raw_cmd->kernel_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 cont->done(0);
1059 FDCS->reset = 1;
1060 return;
1061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 f = claim_dma_lock();
1063 fd_disable_dma();
1064#ifdef fd_dma_setup
1065 if (fd_dma_setup(raw_cmd->kernel_data, raw_cmd->length,
1066 (raw_cmd->flags & FD_RAW_READ) ?
1067 DMA_MODE_READ : DMA_MODE_WRITE, FDCS->address) < 0) {
1068 release_dma_lock(f);
1069 cont->done(0);
1070 FDCS->reset = 1;
1071 return;
1072 }
1073 release_dma_lock(f);
1074#else
1075 fd_clear_dma_ff();
1076 fd_cacheflush(raw_cmd->kernel_data, raw_cmd->length);
1077 fd_set_dma_mode((raw_cmd->flags & FD_RAW_READ) ?
1078 DMA_MODE_READ : DMA_MODE_WRITE);
1079 fd_set_dma_addr(raw_cmd->kernel_data);
1080 fd_set_dma_count(raw_cmd->length);
1081 virtual_dma_port = FDCS->address;
1082 fd_enable_dma();
1083 release_dma_lock(f);
1084#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086
1087static void show_floppy(void);
1088
1089/* waits until the fdc becomes ready */
1090static int wait_til_ready(void)
1091{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001092 int status;
1093 int counter;
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (FDCS->reset)
1096 return -1;
1097 for (counter = 0; counter < 10000; counter++) {
1098 status = fd_inb(FD_STATUS);
1099 if (status & STATUS_READY)
1100 return status;
1101 }
Joe Perches29f1c782010-03-10 15:21:00 -08001102 if (initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 DPRINT("Getstatus times out (%x) on fdc %d\n", status, fdc);
1104 show_floppy();
1105 }
1106 FDCS->reset = 1;
1107 return -1;
1108}
1109
1110/* sends a command byte to the fdc */
1111static int output_byte(char byte)
1112{
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001113 int status = wait_til_ready();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001115 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 return -1;
Joe Perches57584c52010-03-10 15:21:00 -08001117
1118 if (is_ready_state(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 fd_outb(byte, FD_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 output_log[output_log_pos].data = byte;
1121 output_log[output_log_pos].status = status;
1122 output_log[output_log_pos].jiffies = jiffies;
1123 output_log_pos = (output_log_pos + 1) % OLOGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return 0;
1125 }
1126 FDCS->reset = 1;
Joe Perches29f1c782010-03-10 15:21:00 -08001127 if (initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 DPRINT("Unable to send byte %x to FDC. Fdc=%x Status=%x\n",
1129 byte, fdc, status);
1130 show_floppy();
1131 }
1132 return -1;
1133}
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135/* gets the response from the fdc */
1136static int result(void)
1137{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001138 int i;
1139 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141 for (i = 0; i < MAX_REPLIES; i++) {
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001142 status = wait_til_ready();
1143 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 break;
1145 status &= STATUS_DIR | STATUS_READY | STATUS_BUSY | STATUS_DMA;
1146 if ((status & ~STATUS_BUSY) == STATUS_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 resultjiffies = jiffies;
1148 resultsize = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 return i;
1150 }
1151 if (status == (STATUS_DIR | STATUS_READY | STATUS_BUSY))
1152 reply_buffer[i] = fd_inb(FD_DATA);
1153 else
1154 break;
1155 }
Joe Perches29f1c782010-03-10 15:21:00 -08001156 if (initialized) {
1157 DPRINT("get result error. Fdc=%d Last status=%x Read bytes=%d\n",
1158 fdc, status, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 show_floppy();
1160 }
1161 FDCS->reset = 1;
1162 return -1;
1163}
1164
1165#define MORE_OUTPUT -2
1166/* does the fdc need more output? */
1167static int need_more_output(void)
1168{
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001169 int status = wait_til_ready();
Jesper Juhl06f748c2007-10-16 23:30:57 -07001170
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001171 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return -1;
Joe Perches57584c52010-03-10 15:21:00 -08001173
1174 if (is_ready_state(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 return MORE_OUTPUT;
Joe Perches57584c52010-03-10 15:21:00 -08001176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return result();
1178}
1179
1180/* Set perpendicular mode as required, based on data rate, if supported.
1181 * 82077 Now tested. 1Mbps data rate only possible with 82077-1.
1182 */
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02001183static void perpendicular_mode(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
1185 unsigned char perp_mode;
1186
1187 if (raw_cmd->rate & 0x40) {
1188 switch (raw_cmd->rate & 3) {
1189 case 0:
1190 perp_mode = 2;
1191 break;
1192 case 3:
1193 perp_mode = 3;
1194 break;
1195 default:
1196 DPRINT("Invalid data rate for perpendicular mode!\n");
1197 cont->done(0);
Joe Perchesbb57f0c62010-03-10 15:20:50 -08001198 FDCS->reset = 1;
1199 /*
1200 * convenient way to return to
1201 * redo without too much hassle
1202 * (deep stack et al.)
1203 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 return;
1205 }
1206 } else
1207 perp_mode = 0;
1208
1209 if (FDCS->perp_mode == perp_mode)
1210 return;
1211 if (FDCS->version >= FDC_82077_ORIG) {
1212 output_byte(FD_PERPENDICULAR);
1213 output_byte(perp_mode);
1214 FDCS->perp_mode = perp_mode;
1215 } else if (perp_mode) {
1216 DPRINT("perpendicular mode not supported by this FDC.\n");
1217 }
1218} /* perpendicular_mode */
1219
1220static int fifo_depth = 0xa;
1221static int no_fifo;
1222
1223static int fdc_configure(void)
1224{
1225 /* Turn on FIFO */
1226 output_byte(FD_CONFIGURE);
1227 if (need_more_output() != MORE_OUTPUT)
1228 return 0;
1229 output_byte(0);
1230 output_byte(0x10 | (no_fifo & 0x20) | (fifo_depth & 0xf));
1231 output_byte(0); /* pre-compensation from track
1232 0 upwards */
1233 return 1;
1234}
1235
1236#define NOMINAL_DTR 500
1237
1238/* Issue a "SPECIFY" command to set the step rate time, head unload time,
1239 * head load time, and DMA disable flag to values needed by floppy.
1240 *
1241 * The value "dtr" is the data transfer rate in Kbps. It is needed
1242 * to account for the data rate-based scaling done by the 82072 and 82077
1243 * FDC types. This parameter is ignored for other types of FDCs (i.e.
1244 * 8272a).
1245 *
1246 * Note that changing the data transfer rate has a (probably deleterious)
1247 * effect on the parameters subject to scaling for 82072/82077 FDCs, so
1248 * fdc_specify is called again after each data transfer rate
1249 * change.
1250 *
1251 * srt: 1000 to 16000 in microseconds
1252 * hut: 16 to 240 milliseconds
1253 * hlt: 2 to 254 milliseconds
1254 *
1255 * These values are rounded up to the next highest available delay time.
1256 */
1257static void fdc_specify(void)
1258{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001259 unsigned char spec1;
1260 unsigned char spec2;
1261 unsigned long srt;
1262 unsigned long hlt;
1263 unsigned long hut;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 unsigned long dtr = NOMINAL_DTR;
1265 unsigned long scale_dtr = NOMINAL_DTR;
1266 int hlt_max_code = 0x7f;
1267 int hut_max_code = 0xf;
1268
1269 if (FDCS->need_configure && FDCS->version >= FDC_82072A) {
1270 fdc_configure();
1271 FDCS->need_configure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
1273
1274 switch (raw_cmd->rate & 0x03) {
1275 case 3:
1276 dtr = 1000;
1277 break;
1278 case 1:
1279 dtr = 300;
1280 if (FDCS->version >= FDC_82078) {
1281 /* chose the default rate table, not the one
1282 * where 1 = 2 Mbps */
1283 output_byte(FD_DRIVESPEC);
1284 if (need_more_output() == MORE_OUTPUT) {
1285 output_byte(UNIT(current_drive));
1286 output_byte(0xc0);
1287 }
1288 }
1289 break;
1290 case 2:
1291 dtr = 250;
1292 break;
1293 }
1294
1295 if (FDCS->version >= FDC_82072) {
1296 scale_dtr = dtr;
1297 hlt_max_code = 0x00; /* 0==256msec*dtr0/dtr (not linear!) */
1298 hut_max_code = 0x0; /* 0==256msec*dtr0/dtr (not linear!) */
1299 }
1300
1301 /* Convert step rate from microseconds to milliseconds and 4 bits */
Julia Lawall061837b2008-09-22 14:57:16 -07001302 srt = 16 - DIV_ROUND_UP(DP->srt * scale_dtr / 1000, NOMINAL_DTR);
Joe Perchesa81ee542010-03-10 15:20:46 -08001303 if (slow_floppy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 srt = srt / 4;
Joe Perchesa81ee542010-03-10 15:20:46 -08001305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 SUPBOUND(srt, 0xf);
1307 INFBOUND(srt, 0);
1308
Julia Lawall061837b2008-09-22 14:57:16 -07001309 hlt = DIV_ROUND_UP(DP->hlt * scale_dtr / 2, NOMINAL_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if (hlt < 0x01)
1311 hlt = 0x01;
1312 else if (hlt > 0x7f)
1313 hlt = hlt_max_code;
1314
Julia Lawall061837b2008-09-22 14:57:16 -07001315 hut = DIV_ROUND_UP(DP->hut * scale_dtr / 16, NOMINAL_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 if (hut < 0x1)
1317 hut = 0x1;
1318 else if (hut > 0xf)
1319 hut = hut_max_code;
1320
1321 spec1 = (srt << 4) | hut;
1322 spec2 = (hlt << 1) | (use_virtual_dma & 1);
1323
1324 /* If these parameters did not change, just return with success */
1325 if (FDCS->spec1 != spec1 || FDCS->spec2 != spec2) {
1326 /* Go ahead and set spec1 and spec2 */
1327 output_byte(FD_SPECIFY);
1328 output_byte(FDCS->spec1 = spec1);
1329 output_byte(FDCS->spec2 = spec2);
1330 }
1331} /* fdc_specify */
1332
1333/* Set the FDC's data transfer rate on behalf of the specified drive.
1334 * NOTE: with 82072/82077 FDCs, changing the data rate requires a reissue
1335 * of the specify command (i.e. using the fdc_specify function).
1336 */
1337static int fdc_dtr(void)
1338{
1339 /* If data rate not already set to desired value, set it. */
1340 if ((raw_cmd->rate & 3) == FDCS->dtr)
1341 return 0;
1342
1343 /* Set dtr */
1344 fd_outb(raw_cmd->rate & 3, FD_DCR);
1345
1346 /* TODO: some FDC/drive combinations (C&T 82C711 with TEAC 1.2MB)
1347 * need a stabilization period of several milliseconds to be
1348 * enforced after data rate changes before R/W operations.
1349 * Pause 5 msec to avoid trouble. (Needs to be 2 jiffies)
1350 */
1351 FDCS->dtr = raw_cmd->rate & 3;
Tejun Heo75ddb382014-03-07 10:24:48 -05001352 return fd_wait_for_completion(jiffies + 2UL * HZ / 100, floppy_ready);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353} /* fdc_dtr */
1354
1355static void tell_sector(void)
1356{
Joe Perchesb46df352010-03-10 15:20:46 -08001357 pr_cont(": track %d, head %d, sector %d, size %d",
1358 R_TRACK, R_HEAD, R_SECTOR, R_SIZECODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359} /* tell_sector */
1360
Joe Perchesb46df352010-03-10 15:20:46 -08001361static void print_errors(void)
1362{
1363 DPRINT("");
1364 if (ST0 & ST0_ECE) {
1365 pr_cont("Recalibrate failed!");
1366 } else if (ST2 & ST2_CRC) {
1367 pr_cont("data CRC error");
1368 tell_sector();
1369 } else if (ST1 & ST1_CRC) {
1370 pr_cont("CRC error");
1371 tell_sector();
1372 } else if ((ST1 & (ST1_MAM | ST1_ND)) ||
1373 (ST2 & ST2_MAM)) {
1374 if (!probing) {
1375 pr_cont("sector not found");
1376 tell_sector();
1377 } else
1378 pr_cont("probe failed...");
1379 } else if (ST2 & ST2_WC) { /* seek error */
1380 pr_cont("wrong cylinder");
1381 } else if (ST2 & ST2_BC) { /* cylinder marked as bad */
1382 pr_cont("bad cylinder");
1383 } else {
1384 pr_cont("unknown error. ST[0..2] are: 0x%x 0x%x 0x%x",
1385 ST0, ST1, ST2);
1386 tell_sector();
1387 }
1388 pr_cont("\n");
1389}
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391/*
1392 * OK, this error interpreting routine is called after a
1393 * DMA read/write has succeeded
1394 * or failed, so we check the results, and copy any buffers.
1395 * hhb: Added better error reporting.
1396 * ak: Made this into a separate routine.
1397 */
1398static int interpret_errors(void)
1399{
1400 char bad;
1401
1402 if (inr != 7) {
Joe Perches891eda82010-03-10 15:21:05 -08001403 DPRINT("-- FDC reply error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 FDCS->reset = 1;
1405 return 1;
1406 }
1407
1408 /* check IC to find cause of interrupt */
1409 switch (ST0 & ST0_INTR) {
1410 case 0x40: /* error occurred during command execution */
1411 if (ST1 & ST1_EOC)
1412 return 0; /* occurs with pseudo-DMA */
1413 bad = 1;
1414 if (ST1 & ST1_WP) {
1415 DPRINT("Drive is write protected\n");
Joe Perchese0298532010-03-10 15:20:55 -08001416 clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 cont->done(0);
1418 bad = 2;
1419 } else if (ST1 & ST1_ND) {
Joe Perchese0298532010-03-10 15:20:55 -08001420 set_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 } else if (ST1 & ST1_OR) {
1422 if (DP->flags & FTD_MSG)
1423 DPRINT("Over/Underrun - retrying\n");
1424 bad = 0;
1425 } else if (*errors >= DP->max_errors.reporting) {
Joe Perchesb46df352010-03-10 15:20:46 -08001426 print_errors();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 }
1428 if (ST2 & ST2_WC || ST2 & ST2_BC)
1429 /* wrong cylinder => recal */
1430 DRS->track = NEED_2_RECAL;
1431 return bad;
1432 case 0x80: /* invalid command given */
1433 DPRINT("Invalid FDC command given!\n");
1434 cont->done(0);
1435 return 2;
1436 case 0xc0:
1437 DPRINT("Abnormal termination caused by polling\n");
1438 cont->error();
1439 return 2;
1440 default: /* (0) Normal command termination */
1441 return 0;
1442 }
1443}
1444
1445/*
1446 * This routine is called when everything should be correctly set up
1447 * for the transfer (i.e. floppy motor is on, the correct floppy is
1448 * selected, and the head is sitting on the right track).
1449 */
1450static void setup_rw_floppy(void)
1451{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001452 int i;
1453 int r;
1454 int flags;
1455 int dflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 unsigned long ready_date;
Tejun Heo75ddb382014-03-07 10:24:48 -05001457 void (*function)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 flags = raw_cmd->flags;
1460 if (flags & (FD_RAW_READ | FD_RAW_WRITE))
1461 flags |= FD_RAW_INTR;
1462
1463 if ((flags & FD_RAW_SPIN) && !(flags & FD_RAW_NO_MOTOR)) {
1464 ready_date = DRS->spinup_date + DP->spinup;
1465 /* If spinup will take a long time, rerun scandrives
1466 * again just before spinup completion. Beware that
1467 * after scandrives, we must again wait for selection.
1468 */
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -08001469 if (time_after(ready_date, jiffies + DP->select_delay)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 ready_date -= DP->select_delay;
Tejun Heo75ddb382014-03-07 10:24:48 -05001471 function = floppy_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 } else
Tejun Heo75ddb382014-03-07 10:24:48 -05001473 function = setup_rw_floppy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 /* wait until the floppy is spinning fast enough */
1476 if (fd_wait_for_completion(ready_date, function))
1477 return;
1478 }
1479 dflags = DRS->flags;
1480
1481 if ((flags & FD_RAW_READ) || (flags & FD_RAW_WRITE))
1482 setup_DMA();
1483
1484 if (flags & FD_RAW_INTR)
1485 do_floppy = main_command_interrupt;
1486
1487 r = 0;
1488 for (i = 0; i < raw_cmd->cmd_count; i++)
1489 r |= output_byte(raw_cmd->cmd[i]);
1490
Joe Perchesded28632010-03-10 15:21:09 -08001491 debugt(__func__, "rw_command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
1493 if (r) {
1494 cont->error();
1495 reset_fdc();
1496 return;
1497 }
1498
1499 if (!(flags & FD_RAW_INTR)) {
1500 inr = result();
1501 cont->interrupt();
1502 } else if (flags & FD_RAW_NEED_DISK)
Tejun Heo75ddb382014-03-07 10:24:48 -05001503 fd_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504}
1505
1506static int blind_seek;
1507
1508/*
1509 * This is the routine called after every seek (or recalibrate) interrupt
1510 * from the floppy controller.
1511 */
1512static void seek_interrupt(void)
1513{
Joe Perchesded28632010-03-10 15:21:09 -08001514 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 if (inr != 2 || (ST0 & 0xF8) != 0x20) {
1516 DPRINT("seek failed\n");
1517 DRS->track = NEED_2_RECAL;
1518 cont->error();
1519 cont->redo();
1520 return;
1521 }
1522 if (DRS->track >= 0 && DRS->track != ST1 && !blind_seek) {
Joe Perches87f530d2010-03-10 15:20:54 -08001523 debug_dcl(DP->flags,
1524 "clearing NEWCHANGE flag because of effective seek\n");
1525 debug_dcl(DP->flags, "jiffies=%lu\n", jiffies);
Joe Perchese0298532010-03-10 15:20:55 -08001526 clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
1527 /* effective seek */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 DRS->select_date = jiffies;
1529 }
1530 DRS->track = ST1;
1531 floppy_ready();
1532}
1533
1534static void check_wp(void)
1535{
Joe Perchese0298532010-03-10 15:20:55 -08001536 if (test_bit(FD_VERIFY_BIT, &DRS->flags)) {
1537 /* check write protection */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 output_byte(FD_GETSTATUS);
1539 output_byte(UNIT(current_drive));
1540 if (result() != 1) {
1541 FDCS->reset = 1;
1542 return;
1543 }
Joe Perchese0298532010-03-10 15:20:55 -08001544 clear_bit(FD_VERIFY_BIT, &DRS->flags);
1545 clear_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
Joe Perches87f530d2010-03-10 15:20:54 -08001546 debug_dcl(DP->flags,
1547 "checking whether disk is write protected\n");
1548 debug_dcl(DP->flags, "wp=%x\n", ST3 & 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (!(ST3 & 0x40))
Joe Perchese0298532010-03-10 15:20:55 -08001550 set_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 else
Joe Perchese0298532010-03-10 15:20:55 -08001552 clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554}
1555
1556static void seek_floppy(void)
1557{
1558 int track;
1559
1560 blind_seek = 0;
1561
Joe Perchesded28632010-03-10 15:21:09 -08001562 debug_dcl(DP->flags, "calling disk change from %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Joe Perchese0298532010-03-10 15:20:55 -08001564 if (!test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 disk_change(current_drive) && (raw_cmd->flags & FD_RAW_NEED_DISK)) {
1566 /* the media changed flag should be cleared after the seek.
1567 * If it isn't, this means that there is really no disk in
1568 * the drive.
1569 */
Joe Perchese0298532010-03-10 15:20:55 -08001570 set_bit(FD_DISK_CHANGED_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 cont->done(0);
1572 cont->redo();
1573 return;
1574 }
1575 if (DRS->track <= NEED_1_RECAL) {
1576 recalibrate_floppy();
1577 return;
Joe Perchese0298532010-03-10 15:20:55 -08001578 } else if (test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 (raw_cmd->flags & FD_RAW_NEED_DISK) &&
1580 (DRS->track <= NO_TRACK || DRS->track == raw_cmd->track)) {
1581 /* we seek to clear the media-changed condition. Does anybody
1582 * know a more elegant way, which works on all drives? */
1583 if (raw_cmd->track)
1584 track = raw_cmd->track - 1;
1585 else {
1586 if (DP->flags & FD_SILENT_DCL_CLEAR) {
1587 set_dor(fdc, ~(0x10 << UNIT(current_drive)), 0);
1588 blind_seek = 1;
1589 raw_cmd->flags |= FD_RAW_NEED_SEEK;
1590 }
1591 track = 1;
1592 }
1593 } else {
1594 check_wp();
1595 if (raw_cmd->track != DRS->track &&
1596 (raw_cmd->flags & FD_RAW_NEED_SEEK))
1597 track = raw_cmd->track;
1598 else {
1599 setup_rw_floppy();
1600 return;
1601 }
1602 }
1603
1604 do_floppy = seek_interrupt;
1605 output_byte(FD_SEEK);
1606 output_byte(UNIT(current_drive));
Joe Perches2300f902010-03-10 15:20:49 -08001607 if (output_byte(track) < 0) {
1608 reset_fdc();
1609 return;
1610 }
Joe Perchesded28632010-03-10 15:21:09 -08001611 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
1614static void recal_interrupt(void)
1615{
Joe Perchesded28632010-03-10 15:21:09 -08001616 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (inr != 2)
1618 FDCS->reset = 1;
1619 else if (ST0 & ST0_ECE) {
1620 switch (DRS->track) {
1621 case NEED_1_RECAL:
Joe Perchesded28632010-03-10 15:21:09 -08001622 debugt(__func__, "need 1 recal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 /* after a second recalibrate, we still haven't
1624 * reached track 0. Probably no drive. Raise an
1625 * error, as failing immediately might upset
1626 * computers possessed by the Devil :-) */
1627 cont->error();
1628 cont->redo();
1629 return;
1630 case NEED_2_RECAL:
Joe Perchesded28632010-03-10 15:21:09 -08001631 debugt(__func__, "need 2 recal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 /* If we already did a recalibrate,
1633 * and we are not at track 0, this
1634 * means we have moved. (The only way
1635 * not to move at recalibration is to
1636 * be already at track 0.) Clear the
1637 * new change flag */
Joe Perches87f530d2010-03-10 15:20:54 -08001638 debug_dcl(DP->flags,
1639 "clearing NEWCHANGE flag because of second recalibrate\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Joe Perchese0298532010-03-10 15:20:55 -08001641 clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 DRS->select_date = jiffies;
1643 /* fall through */
1644 default:
Joe Perchesded28632010-03-10 15:21:09 -08001645 debugt(__func__, "default");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 /* Recalibrate moves the head by at
1647 * most 80 steps. If after one
1648 * recalibrate we don't have reached
1649 * track 0, this might mean that we
1650 * started beyond track 80. Try
1651 * again. */
1652 DRS->track = NEED_1_RECAL;
1653 break;
1654 }
1655 } else
1656 DRS->track = ST1;
1657 floppy_ready();
1658}
1659
1660static void print_result(char *message, int inr)
1661{
1662 int i;
1663
1664 DPRINT("%s ", message);
1665 if (inr >= 0)
1666 for (i = 0; i < inr; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001667 pr_cont("repl[%d]=%x ", i, reply_buffer[i]);
1668 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669}
1670
1671/* interrupt handler. Note that this can be called externally on the Sparc */
David Howells7d12e782006-10-05 14:55:46 +01001672irqreturn_t floppy_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 int do_print;
1675 unsigned long f;
Jesper Juhl06f748c2007-10-16 23:30:57 -07001676 void (*handler)(void) = do_floppy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 lasthandler = handler;
1679 interruptjiffies = jiffies;
1680
1681 f = claim_dma_lock();
1682 fd_disable_dma();
1683 release_dma_lock(f);
1684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 do_floppy = NULL;
1686 if (fdc >= N_FDC || FDCS->address == -1) {
1687 /* we don't even know which FDC is the culprit */
Joe Perchesb46df352010-03-10 15:20:46 -08001688 pr_info("DOR0=%x\n", fdc_state[0].dor);
1689 pr_info("floppy interrupt on bizarre fdc %d\n", fdc);
Joe Perches1ebddd82010-03-10 15:21:07 -08001690 pr_info("handler=%pf\n", handler);
Joe Perches275176b2010-03-10 15:21:06 -08001691 is_alive(__func__, "bizarre fdc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 return IRQ_NONE;
1693 }
1694
1695 FDCS->reset = 0;
1696 /* We have to clear the reset flag here, because apparently on boxes
1697 * with level triggered interrupts (PS/2, Sparc, ...), it is needed to
1698 * emit SENSEI's to clear the interrupt line. And FDCS->reset blocks the
1699 * emission of the SENSEI's.
1700 * It is OK to emit floppy commands because we are in an interrupt
1701 * handler here, and thus we have to fear no interference of other
1702 * activity.
1703 */
1704
Joe Perches29f1c782010-03-10 15:21:00 -08001705 do_print = !handler && print_unex && initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707 inr = result();
1708 if (do_print)
1709 print_result("unexpected interrupt", inr);
1710 if (inr == 0) {
1711 int max_sensei = 4;
1712 do {
1713 output_byte(FD_SENSEI);
1714 inr = result();
1715 if (do_print)
1716 print_result("sensei", inr);
1717 max_sensei--;
Joe Perchesc5297302010-03-10 15:20:58 -08001718 } while ((ST0 & 0x83) != UNIT(current_drive) &&
1719 inr == 2 && max_sensei);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 }
1721 if (!handler) {
1722 FDCS->reset = 1;
1723 return IRQ_NONE;
1724 }
1725 schedule_bh(handler);
Joe Perches275176b2010-03-10 15:21:06 -08001726 is_alive(__func__, "normal interrupt end");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728 /* FIXME! Was it really for us? */
1729 return IRQ_HANDLED;
1730}
1731
1732static void recalibrate_floppy(void)
1733{
Joe Perchesded28632010-03-10 15:21:09 -08001734 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 do_floppy = recal_interrupt;
1736 output_byte(FD_RECALIBRATE);
Joe Perches15b26302010-03-10 15:21:01 -08001737 if (output_byte(UNIT(current_drive)) < 0)
Joe Perches2300f902010-03-10 15:20:49 -08001738 reset_fdc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739}
1740
1741/*
1742 * Must do 4 FD_SENSEIs after reset because of ``drive polling''.
1743 */
1744static void reset_interrupt(void)
1745{
Joe Perchesded28632010-03-10 15:21:09 -08001746 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 result(); /* get the status ready for set_fdc */
1748 if (FDCS->reset) {
Joe Perches1ebddd82010-03-10 15:21:07 -08001749 pr_info("reset set in interrupt, calling %pf\n", cont->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 cont->error(); /* a reset just after a reset. BAD! */
1751 }
1752 cont->redo();
1753}
1754
1755/*
1756 * reset is done by pulling bit 2 of DOR low for a while (old FDCs),
1757 * or by setting the self clearing bit 7 of STATUS (newer FDCs)
1758 */
1759static void reset_fdc(void)
1760{
1761 unsigned long flags;
1762
1763 do_floppy = reset_interrupt;
1764 FDCS->reset = 0;
1765 reset_fdc_info(0);
1766
1767 /* Pseudo-DMA may intercept 'reset finished' interrupt. */
1768 /* Irrelevant for systems with true DMA (i386). */
1769
1770 flags = claim_dma_lock();
1771 fd_disable_dma();
1772 release_dma_lock(flags);
1773
1774 if (FDCS->version >= FDC_82072A)
1775 fd_outb(0x80 | (FDCS->dtr & 3), FD_STATUS);
1776 else {
1777 fd_outb(FDCS->dor & ~0x04, FD_DOR);
1778 udelay(FD_RESET_DELAY);
1779 fd_outb(FDCS->dor, FD_DOR);
1780 }
1781}
1782
1783static void show_floppy(void)
1784{
1785 int i;
1786
Joe Perchesb46df352010-03-10 15:20:46 -08001787 pr_info("\n");
1788 pr_info("floppy driver state\n");
1789 pr_info("-------------------\n");
Joe Perches1ebddd82010-03-10 15:21:07 -08001790 pr_info("now=%lu last interrupt=%lu diff=%lu last called handler=%pf\n",
Joe Perchesb46df352010-03-10 15:20:46 -08001791 jiffies, interruptjiffies, jiffies - interruptjiffies,
1792 lasthandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Joe Perchesb46df352010-03-10 15:20:46 -08001794 pr_info("timeout_message=%s\n", timeout_message);
1795 pr_info("last output bytes:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 for (i = 0; i < OLOGSIZE; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001797 pr_info("%2x %2x %lu\n",
1798 output_log[(i + output_log_pos) % OLOGSIZE].data,
1799 output_log[(i + output_log_pos) % OLOGSIZE].status,
1800 output_log[(i + output_log_pos) % OLOGSIZE].jiffies);
1801 pr_info("last result at %lu\n", resultjiffies);
1802 pr_info("last redo_fd_request at %lu\n", lastredo);
1803 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_NONE, 16, 1,
1804 reply_buffer, resultsize, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Joe Perchesb46df352010-03-10 15:20:46 -08001806 pr_info("status=%x\n", fd_inb(FD_STATUS));
1807 pr_info("fdc_busy=%lu\n", fdc_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 if (do_floppy)
Joe Perches1ebddd82010-03-10 15:21:07 -08001809 pr_info("do_floppy=%pf\n", do_floppy);
David Howells365970a2006-11-22 14:54:49 +00001810 if (work_pending(&floppy_work))
Joe Perches1ebddd82010-03-10 15:21:07 -08001811 pr_info("floppy_work.func=%pf\n", floppy_work.func);
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001812 if (delayed_work_pending(&fd_timer))
1813 pr_info("delayed work.function=%p expires=%ld\n",
1814 fd_timer.work.func,
1815 fd_timer.timer.expires - jiffies);
1816 if (delayed_work_pending(&fd_timeout))
1817 pr_info("timer_function=%p expires=%ld\n",
1818 fd_timeout.work.func,
1819 fd_timeout.timer.expires - jiffies);
1820
Joe Perchesb46df352010-03-10 15:20:46 -08001821 pr_info("cont=%p\n", cont);
1822 pr_info("current_req=%p\n", current_req);
1823 pr_info("command_status=%d\n", command_status);
1824 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825}
1826
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001827static void floppy_shutdown(struct work_struct *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828{
1829 unsigned long flags;
1830
Joe Perches29f1c782010-03-10 15:21:00 -08001831 if (initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 show_floppy();
1833 cancel_activity();
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 flags = claim_dma_lock();
1836 fd_disable_dma();
1837 release_dma_lock(flags);
1838
1839 /* avoid dma going to a random drive after shutdown */
1840
Joe Perches29f1c782010-03-10 15:21:00 -08001841 if (initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 DPRINT("floppy timeout called\n");
1843 FDCS->reset = 1;
1844 if (cont) {
1845 cont->done(0);
1846 cont->redo(); /* this will recall reset when needed */
1847 } else {
Joe Perchesb46df352010-03-10 15:20:46 -08001848 pr_info("no cont in shutdown!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 process_fd_request();
1850 }
Joe Perches275176b2010-03-10 15:21:06 -08001851 is_alive(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852}
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854/* start motor, check media-changed condition and write protection */
Jesper Juhl06f748c2007-10-16 23:30:57 -07001855static int start_motor(void (*function)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001857 int mask;
1858 int data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
1860 mask = 0xfc;
1861 data = UNIT(current_drive);
1862 if (!(raw_cmd->flags & FD_RAW_NO_MOTOR)) {
1863 if (!(FDCS->dor & (0x10 << UNIT(current_drive)))) {
1864 set_debugt();
1865 /* no read since this drive is running */
1866 DRS->first_read_date = 0;
1867 /* note motor start time if motor is not yet running */
1868 DRS->spinup_date = jiffies;
1869 data |= (0x10 << UNIT(current_drive));
1870 }
1871 } else if (FDCS->dor & (0x10 << UNIT(current_drive)))
1872 mask &= ~(0x10 << UNIT(current_drive));
1873
1874 /* starts motor and selects floppy */
1875 del_timer(motor_off_timer + current_drive);
1876 set_dor(fdc, mask, data);
1877
1878 /* wait_for_completion also schedules reset if needed. */
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001879 return fd_wait_for_completion(DRS->select_date + DP->select_delay,
Tejun Heo75ddb382014-03-07 10:24:48 -05001880 function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881}
1882
1883static void floppy_ready(void)
1884{
Joe Perches045f9832010-03-10 15:20:47 -08001885 if (FDCS->reset) {
1886 reset_fdc();
1887 return;
1888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if (start_motor(floppy_ready))
1890 return;
1891 if (fdc_dtr())
1892 return;
1893
Joe Perches87f530d2010-03-10 15:20:54 -08001894 debug_dcl(DP->flags, "calling disk change from floppy_ready\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 if (!(raw_cmd->flags & FD_RAW_NO_MOTOR) &&
1896 disk_change(current_drive) && !DP->select_delay)
Joe Perchesbb57f0c62010-03-10 15:20:50 -08001897 twaddle(); /* this clears the dcl on certain
1898 * drive/controller combinations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
1900#ifdef fd_chose_dma_mode
1901 if ((raw_cmd->flags & FD_RAW_READ) || (raw_cmd->flags & FD_RAW_WRITE)) {
1902 unsigned long flags = claim_dma_lock();
1903 fd_chose_dma_mode(raw_cmd->kernel_data, raw_cmd->length);
1904 release_dma_lock(flags);
1905 }
1906#endif
1907
1908 if (raw_cmd->flags & (FD_RAW_NEED_SEEK | FD_RAW_NEED_DISK)) {
1909 perpendicular_mode();
1910 fdc_specify(); /* must be done here because of hut, hlt ... */
1911 seek_floppy();
1912 } else {
1913 if ((raw_cmd->flags & FD_RAW_READ) ||
1914 (raw_cmd->flags & FD_RAW_WRITE))
1915 fdc_specify();
1916 setup_rw_floppy();
1917 }
1918}
1919
1920static void floppy_start(void)
1921{
Joe Perches73507e62010-03-10 15:21:03 -08001922 reschedule_timeout(current_reqD, "floppy start");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
1924 scandrives();
Joe Perches87f530d2010-03-10 15:20:54 -08001925 debug_dcl(DP->flags, "setting NEWCHANGE in floppy_start\n");
Joe Perchese0298532010-03-10 15:20:55 -08001926 set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 floppy_ready();
1928}
1929
1930/*
1931 * ========================================================================
1932 * here ends the bottom half. Exported routines are:
1933 * floppy_start, floppy_off, floppy_ready, lock_fdc, unlock_fdc, set_fdc,
1934 * start_motor, reset_fdc, reset_fdc_info, interpret_errors.
1935 * Initialization also uses output_byte, result, set_dor, floppy_interrupt
1936 * and set_dor.
1937 * ========================================================================
1938 */
1939/*
1940 * General purpose continuations.
1941 * ==============================
1942 */
1943
1944static void do_wakeup(void)
1945{
Joe Perches73507e62010-03-10 15:21:03 -08001946 reschedule_timeout(MAXTIMEOUT, "do wakeup");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 cont = NULL;
1948 command_status += 2;
1949 wake_up(&command_done);
1950}
1951
Stephen Hemminger3b06c212010-07-20 20:09:00 -06001952static const struct cont_t wakeup_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 .interrupt = empty,
1954 .redo = do_wakeup,
1955 .error = empty,
Jesper Juhl06f748c2007-10-16 23:30:57 -07001956 .done = (done_f)empty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957};
1958
Stephen Hemminger3b06c212010-07-20 20:09:00 -06001959static const struct cont_t intr_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 .interrupt = empty,
1961 .redo = process_fd_request,
1962 .error = empty,
Jesper Juhl06f748c2007-10-16 23:30:57 -07001963 .done = (done_f)empty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964};
1965
Joe Perches74f63f42010-03-10 15:20:58 -08001966static int wait_til_done(void (*handler)(void), bool interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967{
1968 int ret;
1969
1970 schedule_bh(handler);
1971
Stephen Hemmingerb862f262010-06-15 13:21:11 +02001972 if (interruptible)
1973 wait_event_interruptible(command_done, command_status >= 2);
1974 else
1975 wait_event(command_done, command_status >= 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 if (command_status < 2) {
1978 cancel_activity();
1979 cont = &intr_cont;
1980 reset_fdc();
1981 return -EINTR;
1982 }
1983
1984 if (FDCS->reset)
1985 command_status = FD_COMMAND_ERROR;
1986 if (command_status == FD_COMMAND_OKAY)
1987 ret = 0;
1988 else
1989 ret = -EIO;
1990 command_status = FD_COMMAND_NONE;
1991 return ret;
1992}
1993
1994static void generic_done(int result)
1995{
1996 command_status = result;
1997 cont = &wakeup_cont;
1998}
1999
2000static void generic_success(void)
2001{
2002 cont->done(1);
2003}
2004
2005static void generic_failure(void)
2006{
2007 cont->done(0);
2008}
2009
2010static void success_and_wakeup(void)
2011{
2012 generic_success();
2013 cont->redo();
2014}
2015
2016/*
2017 * formatting and rw support.
2018 * ==========================
2019 */
2020
2021static int next_valid_format(void)
2022{
2023 int probed_format;
2024
2025 probed_format = DRS->probed_format;
2026 while (1) {
2027 if (probed_format >= 8 || !DP->autodetect[probed_format]) {
2028 DRS->probed_format = 0;
2029 return 1;
2030 }
2031 if (floppy_type[DP->autodetect[probed_format]].sect) {
2032 DRS->probed_format = probed_format;
2033 return 0;
2034 }
2035 probed_format++;
2036 }
2037}
2038
2039static void bad_flp_intr(void)
2040{
2041 int err_count;
2042
2043 if (probing) {
2044 DRS->probed_format++;
2045 if (!next_valid_format())
2046 return;
2047 }
2048 err_count = ++(*errors);
2049 INFBOUND(DRWE->badness, err_count);
2050 if (err_count > DP->max_errors.abort)
2051 cont->done(0);
2052 if (err_count > DP->max_errors.reset)
2053 FDCS->reset = 1;
2054 else if (err_count > DP->max_errors.recal)
2055 DRS->track = NEED_2_RECAL;
2056}
2057
2058static void set_floppy(int drive)
2059{
2060 int type = ITYPE(UDRS->fd_device);
Jesper Juhl06f748c2007-10-16 23:30:57 -07002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 if (type)
2063 _floppy = floppy_type + type;
2064 else
2065 _floppy = current_type[drive];
2066}
2067
2068/*
2069 * formatting support.
2070 * ===================
2071 */
2072static void format_interrupt(void)
2073{
2074 switch (interpret_errors()) {
2075 case 1:
2076 cont->error();
2077 case 2:
2078 break;
2079 case 0:
2080 cont->done(1);
2081 }
2082 cont->redo();
2083}
2084
Joe Perches48c8cee2010-03-10 15:20:45 -08002085#define FM_MODE(x, y) ((y) & ~(((x)->rate & 0x80) >> 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086#define CT(x) ((x) | 0xc0)
Joe Perches48c8cee2010-03-10 15:20:45 -08002087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088static void setup_format_params(int track)
2089{
Jesper Juhl06f748c2007-10-16 23:30:57 -07002090 int n;
2091 int il;
2092 int count;
2093 int head_shift;
2094 int track_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 struct fparm {
2096 unsigned char track, head, sect, size;
2097 } *here = (struct fparm *)floppy_track_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
2099 raw_cmd = &default_raw_cmd;
2100 raw_cmd->track = track;
2101
Joe Perches48c8cee2010-03-10 15:20:45 -08002102 raw_cmd->flags = (FD_RAW_WRITE | FD_RAW_INTR | FD_RAW_SPIN |
2103 FD_RAW_NEED_DISK | FD_RAW_NEED_SEEK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 raw_cmd->rate = _floppy->rate & 0x43;
2105 raw_cmd->cmd_count = NR_F;
2106 COMMAND = FM_MODE(_floppy, FD_FORMAT);
2107 DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, format_req.head);
2108 F_SIZECODE = FD_SIZECODE(_floppy);
2109 F_SECT_PER_TRACK = _floppy->sect << 2 >> F_SIZECODE;
2110 F_GAP = _floppy->fmt_gap;
2111 F_FILL = FD_FILL_BYTE;
2112
2113 raw_cmd->kernel_data = floppy_track_buffer;
2114 raw_cmd->length = 4 * F_SECT_PER_TRACK;
2115
2116 /* allow for about 30ms for data transport per track */
2117 head_shift = (F_SECT_PER_TRACK + 5) / 6;
2118
2119 /* a ``cylinder'' is two tracks plus a little stepping time */
2120 track_shift = 2 * head_shift + 3;
2121
2122 /* position of logical sector 1 on this track */
2123 n = (track_shift * format_req.track + head_shift * format_req.head)
2124 % F_SECT_PER_TRACK;
2125
2126 /* determine interleave */
2127 il = 1;
2128 if (_floppy->fmt_gap < 0x22)
2129 il++;
2130
2131 /* initialize field */
2132 for (count = 0; count < F_SECT_PER_TRACK; ++count) {
2133 here[count].track = format_req.track;
2134 here[count].head = format_req.head;
2135 here[count].sect = 0;
2136 here[count].size = F_SIZECODE;
2137 }
2138 /* place logical sectors */
2139 for (count = 1; count <= F_SECT_PER_TRACK; ++count) {
2140 here[n].sect = count;
2141 n = (n + il) % F_SECT_PER_TRACK;
2142 if (here[n].sect) { /* sector busy, find next free sector */
2143 ++n;
2144 if (n >= F_SECT_PER_TRACK) {
2145 n -= F_SECT_PER_TRACK;
2146 while (here[n].sect)
2147 ++n;
2148 }
2149 }
2150 }
Keith Wansbrough9e491842008-09-22 14:57:17 -07002151 if (_floppy->stretch & FD_SECTBASEMASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 for (count = 0; count < F_SECT_PER_TRACK; count++)
Keith Wansbrough9e491842008-09-22 14:57:17 -07002153 here[count].sect += FD_SECTBASE(_floppy) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 }
2155}
2156
2157static void redo_format(void)
2158{
2159 buffer_track = -1;
2160 setup_format_params(format_req.track << STRETCH(_floppy));
2161 floppy_start();
Joe Perchesded28632010-03-10 15:21:09 -08002162 debugt(__func__, "queue format request");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163}
2164
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002165static const struct cont_t format_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 .interrupt = format_interrupt,
2167 .redo = redo_format,
2168 .error = bad_flp_intr,
2169 .done = generic_done
2170};
2171
2172static int do_format(int drive, struct format_descr *tmp_format_req)
2173{
2174 int ret;
2175
Joe Perches74f63f42010-03-10 15:20:58 -08002176 if (lock_fdc(drive, true))
Joe Perches52a0d612010-03-10 15:20:53 -08002177 return -EINTR;
2178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 set_floppy(drive);
2180 if (!_floppy ||
2181 _floppy->track > DP->tracks ||
2182 tmp_format_req->track >= _floppy->track ||
2183 tmp_format_req->head >= _floppy->head ||
2184 (_floppy->sect << 2) % (1 << FD_SIZECODE(_floppy)) ||
2185 !_floppy->fmt_gap) {
2186 process_fd_request();
2187 return -EINVAL;
2188 }
2189 format_req = *tmp_format_req;
2190 format_errors = 0;
2191 cont = &format_cont;
2192 errors = &format_errors;
Joe Perches74f63f42010-03-10 15:20:58 -08002193 ret = wait_til_done(redo_format, true);
Joe Perches55eee802010-03-10 15:20:57 -08002194 if (ret == -EINTR)
2195 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 process_fd_request();
2197 return ret;
2198}
2199
2200/*
2201 * Buffer read/write and support
2202 * =============================
2203 */
2204
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002205static void floppy_end_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206{
2207 unsigned int nr_sectors = current_count_sectors;
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002208 unsigned int drive = (unsigned long)req->rq_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210 /* current_count_sectors can be zero if transfer failed */
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002211 if (error)
Tejun Heo83096eb2009-05-07 22:24:39 +09002212 nr_sectors = blk_rq_cur_sectors(req);
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002213 if (__blk_end_request(req, error, nr_sectors << 9))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 /* We're done with the request */
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002217 floppy_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 current_req = NULL;
2219}
2220
2221/* new request_done. Can handle physical sectors which are smaller than a
2222 * logical buffer */
2223static void request_done(int uptodate)
2224{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 struct request *req = current_req;
Jens Axboe48821182010-09-22 09:32:36 +02002226 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 unsigned long flags;
2228 int block;
Joe Perches73507e62010-03-10 15:21:03 -08002229 char msg[sizeof("request done ") + sizeof(int) * 3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231 probing = 0;
Joe Perches73507e62010-03-10 15:21:03 -08002232 snprintf(msg, sizeof(msg), "request done %d", uptodate);
2233 reschedule_timeout(MAXTIMEOUT, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 if (!req) {
Joe Perchesb46df352010-03-10 15:20:46 -08002236 pr_info("floppy.c: no request in request_done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 return;
2238 }
2239
Jens Axboe48821182010-09-22 09:32:36 +02002240 q = req->q;
2241
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 if (uptodate) {
2243 /* maintain values for invalidation on geometry
2244 * change */
Tejun Heo83096eb2009-05-07 22:24:39 +09002245 block = current_count_sectors + blk_rq_pos(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 INFBOUND(DRS->maxblock, block);
2247 if (block > _floppy->sect)
2248 DRS->maxtrack = 1;
2249
2250 /* unlock chained buffers */
2251 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002252 floppy_end_request(req, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 spin_unlock_irqrestore(q->queue_lock, flags);
2254 } else {
2255 if (rq_data_dir(req) == WRITE) {
2256 /* record write error information */
2257 DRWE->write_errors++;
2258 if (DRWE->write_errors == 1) {
Tejun Heo83096eb2009-05-07 22:24:39 +09002259 DRWE->first_error_sector = blk_rq_pos(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 DRWE->first_error_generation = DRS->generation;
2261 }
Tejun Heo83096eb2009-05-07 22:24:39 +09002262 DRWE->last_error_sector = blk_rq_pos(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 DRWE->last_error_generation = DRS->generation;
2264 }
2265 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002266 floppy_end_request(req, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 spin_unlock_irqrestore(q->queue_lock, flags);
2268 }
2269}
2270
2271/* Interrupt handler evaluating the result of the r/w operation */
2272static void rw_interrupt(void)
2273{
Jesper Juhl06f748c2007-10-16 23:30:57 -07002274 int eoc;
2275 int ssize;
2276 int heads;
2277 int nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
2279 if (R_HEAD >= 2) {
2280 /* some Toshiba floppy controllers occasionnally seem to
2281 * return bogus interrupts after read/write operations, which
2282 * can be recognized by a bad head number (>= 2) */
2283 return;
2284 }
2285
2286 if (!DRS->first_read_date)
2287 DRS->first_read_date = jiffies;
2288
2289 nr_sectors = 0;
Joe Perches712e1de2010-03-10 15:21:10 -08002290 ssize = DIV_ROUND_UP(1 << SIZECODE, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 if (ST1 & ST1_EOC)
2293 eoc = 1;
2294 else
2295 eoc = 0;
2296
2297 if (COMMAND & 0x80)
2298 heads = 2;
2299 else
2300 heads = 1;
2301
2302 nr_sectors = (((R_TRACK - TRACK) * heads +
2303 R_HEAD - HEAD) * SECT_PER_TRACK +
2304 R_SECTOR - SECTOR + eoc) << SIZECODE >> 2;
2305
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (nr_sectors / ssize >
Julia Lawall061837b2008-09-22 14:57:16 -07002307 DIV_ROUND_UP(in_sector_offset + current_count_sectors, ssize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 DPRINT("long rw: %x instead of %lx\n",
2309 nr_sectors, current_count_sectors);
Joe Perchesb46df352010-03-10 15:20:46 -08002310 pr_info("rs=%d s=%d\n", R_SECTOR, SECTOR);
2311 pr_info("rh=%d h=%d\n", R_HEAD, HEAD);
2312 pr_info("rt=%d t=%d\n", R_TRACK, TRACK);
2313 pr_info("heads=%d eoc=%d\n", heads, eoc);
2314 pr_info("spt=%d st=%d ss=%d\n",
2315 SECT_PER_TRACK, fsector_t, ssize);
2316 pr_info("in_sector_offset=%d\n", in_sector_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
2319 nr_sectors -= in_sector_offset;
2320 INFBOUND(nr_sectors, 0);
2321 SUPBOUND(current_count_sectors, nr_sectors);
2322
2323 switch (interpret_errors()) {
2324 case 2:
2325 cont->redo();
2326 return;
2327 case 1:
2328 if (!current_count_sectors) {
2329 cont->error();
2330 cont->redo();
2331 return;
2332 }
2333 break;
2334 case 0:
2335 if (!current_count_sectors) {
2336 cont->redo();
2337 return;
2338 }
2339 current_type[current_drive] = _floppy;
2340 floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
2341 break;
2342 }
2343
2344 if (probing) {
2345 if (DP->flags & FTD_MSG)
2346 DPRINT("Auto-detected floppy type %s in fd%d\n",
2347 _floppy->name, current_drive);
2348 current_type[current_drive] = _floppy;
2349 floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
2350 probing = 0;
2351 }
2352
2353 if (CT(COMMAND) != FD_READ ||
Jens Axboeb4f42e22014-04-10 09:46:28 -06002354 raw_cmd->kernel_data == bio_data(current_req->bio)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 /* transfer directly from buffer */
2356 cont->done(1);
2357 } else if (CT(COMMAND) == FD_READ) {
2358 buffer_track = raw_cmd->track;
2359 buffer_drive = current_drive;
2360 INFBOUND(buffer_max, nr_sectors + fsector_t);
2361 }
2362 cont->redo();
2363}
2364
2365/* Compute maximal contiguous buffer size. */
2366static int buffer_chain_size(void)
2367{
Kent Overstreet79886132013-11-23 17:19:00 -08002368 struct bio_vec bv;
NeilBrown5705f702007-09-25 12:35:59 +02002369 int size;
2370 struct req_iterator iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 char *base;
2372
2373 base = bio_data(current_req->bio);
2374 size = 0;
2375
NeilBrown5705f702007-09-25 12:35:59 +02002376 rq_for_each_segment(bv, current_req, iter) {
Kent Overstreet79886132013-11-23 17:19:00 -08002377 if (page_address(bv.bv_page) + bv.bv_offset != base + size)
NeilBrown5705f702007-09-25 12:35:59 +02002378 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Kent Overstreet79886132013-11-23 17:19:00 -08002380 size += bv.bv_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 }
2382
2383 return size >> 9;
2384}
2385
2386/* Compute the maximal transfer size */
2387static int transfer_size(int ssize, int max_sector, int max_size)
2388{
2389 SUPBOUND(max_sector, fsector_t + max_size);
2390
2391 /* alignment */
2392 max_sector -= (max_sector % _floppy->sect) % ssize;
2393
2394 /* transfer size, beginning not aligned */
2395 current_count_sectors = max_sector - fsector_t;
2396
2397 return max_sector;
2398}
2399
2400/*
2401 * Move data from/to the track buffer to/from the buffer cache.
2402 */
2403static void copy_buffer(int ssize, int max_sector, int max_sector_2)
2404{
2405 int remaining; /* number of transferred 512-byte sectors */
Kent Overstreet79886132013-11-23 17:19:00 -08002406 struct bio_vec bv;
Jesper Juhl06f748c2007-10-16 23:30:57 -07002407 char *buffer;
2408 char *dma_buffer;
NeilBrown5705f702007-09-25 12:35:59 +02002409 int size;
2410 struct req_iterator iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
2412 max_sector = transfer_size(ssize,
2413 min(max_sector, max_sector_2),
Tejun Heo83096eb2009-05-07 22:24:39 +09002414 blk_rq_sectors(current_req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
2416 if (current_count_sectors <= 0 && CT(COMMAND) == FD_WRITE &&
Tejun Heo83096eb2009-05-07 22:24:39 +09002417 buffer_max > fsector_t + blk_rq_sectors(current_req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 current_count_sectors = min_t(int, buffer_max - fsector_t,
Tejun Heo83096eb2009-05-07 22:24:39 +09002419 blk_rq_sectors(current_req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
2421 remaining = current_count_sectors << 9;
Tejun Heo1011c1b2009-05-07 22:24:45 +09002422 if (remaining > blk_rq_bytes(current_req) && CT(COMMAND) == FD_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 DPRINT("in copy buffer\n");
Joe Perchesb46df352010-03-10 15:20:46 -08002424 pr_info("current_count_sectors=%ld\n", current_count_sectors);
2425 pr_info("remaining=%d\n", remaining >> 9);
2426 pr_info("current_req->nr_sectors=%u\n",
2427 blk_rq_sectors(current_req));
2428 pr_info("current_req->current_nr_sectors=%u\n",
2429 blk_rq_cur_sectors(current_req));
2430 pr_info("max_sector=%d\n", max_sector);
2431 pr_info("ssize=%d\n", ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433
2434 buffer_max = max(max_sector, buffer_max);
2435
2436 dma_buffer = floppy_track_buffer + ((fsector_t - buffer_min) << 9);
2437
Tejun Heo1011c1b2009-05-07 22:24:45 +09002438 size = blk_rq_cur_bytes(current_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
NeilBrown5705f702007-09-25 12:35:59 +02002440 rq_for_each_segment(bv, current_req, iter) {
2441 if (!remaining)
2442 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Kent Overstreet79886132013-11-23 17:19:00 -08002444 size = bv.bv_len;
NeilBrown5705f702007-09-25 12:35:59 +02002445 SUPBOUND(size, remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Kent Overstreet79886132013-11-23 17:19:00 -08002447 buffer = page_address(bv.bv_page) + bv.bv_offset;
NeilBrown5705f702007-09-25 12:35:59 +02002448 if (dma_buffer + size >
2449 floppy_track_buffer + (max_buffer_sectors << 10) ||
2450 dma_buffer < floppy_track_buffer) {
2451 DPRINT("buffer overrun in copy buffer %d\n",
Joe Perchesb46df352010-03-10 15:20:46 -08002452 (int)((floppy_track_buffer - dma_buffer) >> 9));
2453 pr_info("fsector_t=%d buffer_min=%d\n",
2454 fsector_t, buffer_min);
2455 pr_info("current_count_sectors=%ld\n",
2456 current_count_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 if (CT(COMMAND) == FD_READ)
Joe Perchesb46df352010-03-10 15:20:46 -08002458 pr_info("read\n");
NeilBrown5705f702007-09-25 12:35:59 +02002459 if (CT(COMMAND) == FD_WRITE)
Joe Perchesb46df352010-03-10 15:20:46 -08002460 pr_info("write\n");
NeilBrown5705f702007-09-25 12:35:59 +02002461 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 }
NeilBrown5705f702007-09-25 12:35:59 +02002463 if (((unsigned long)buffer) % 512)
2464 DPRINT("%p buffer not aligned\n", buffer);
Joe Perches1a23d132010-03-10 15:21:04 -08002465
NeilBrown5705f702007-09-25 12:35:59 +02002466 if (CT(COMMAND) == FD_READ)
2467 memcpy(buffer, dma_buffer, size);
2468 else
2469 memcpy(dma_buffer, buffer, size);
2470
2471 remaining -= size;
2472 dma_buffer += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 if (remaining) {
2475 if (remaining > 0)
2476 max_sector -= remaining >> 9;
2477 DPRINT("weirdness: remaining %d\n", remaining >> 9);
2478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479}
2480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481/* work around a bug in pseudo DMA
2482 * (on some FDCs) pseudo DMA does not stop when the CPU stops
2483 * sending data. Hence we need a different way to signal the
2484 * transfer length: We use SECT_PER_TRACK. Unfortunately, this
2485 * does not work with MT, hence we can only transfer one head at
2486 * a time
2487 */
2488static void virtualdmabug_workaround(void)
2489{
Jesper Juhl06f748c2007-10-16 23:30:57 -07002490 int hard_sectors;
2491 int end_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
2493 if (CT(COMMAND) == FD_WRITE) {
2494 COMMAND &= ~0x80; /* switch off multiple track mode */
2495
2496 hard_sectors = raw_cmd->length >> (7 + SIZECODE);
2497 end_sector = SECTOR + hard_sectors - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 if (end_sector > SECT_PER_TRACK) {
Joe Perchesb46df352010-03-10 15:20:46 -08002499 pr_info("too many sectors %d > %d\n",
2500 end_sector, SECT_PER_TRACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 return;
2502 }
Joe Perches48c8cee2010-03-10 15:20:45 -08002503 SECT_PER_TRACK = end_sector;
2504 /* make sure SECT_PER_TRACK
2505 * points to end of transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 }
2507}
2508
2509/*
2510 * Formulate a read/write request.
2511 * this routine decides where to load the data (directly to buffer, or to
2512 * tmp floppy area), how much data to load (the size of the buffer, the whole
2513 * track, or a single sector)
2514 * All floppy_track_buffer handling goes in here. If we ever add track buffer
2515 * allocation on the fly, it should be done here. No other part should need
2516 * modification.
2517 */
2518
2519static int make_raw_rw_request(void)
2520{
2521 int aligned_sector_t;
Jesper Juhl06f748c2007-10-16 23:30:57 -07002522 int max_sector;
2523 int max_size;
2524 int tracksize;
2525 int ssize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002527 if (WARN(max_buffer_sectors == 0, "VFS: Block I/O scheduled on unopened device\n"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
2530 set_fdc((long)current_req->rq_disk->private_data);
2531
2532 raw_cmd = &default_raw_cmd;
Fengguang Wu2fb2ca62012-07-28 19:45:59 +08002533 raw_cmd->flags = FD_RAW_SPIN | FD_RAW_NEED_DISK | FD_RAW_NEED_SEEK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 raw_cmd->cmd_count = NR_RW;
2535 if (rq_data_dir(current_req) == READ) {
2536 raw_cmd->flags |= FD_RAW_READ;
2537 COMMAND = FM_MODE(_floppy, FD_READ);
2538 } else if (rq_data_dir(current_req) == WRITE) {
2539 raw_cmd->flags |= FD_RAW_WRITE;
2540 COMMAND = FM_MODE(_floppy, FD_WRITE);
2541 } else {
Joe Perches275176b2010-03-10 15:21:06 -08002542 DPRINT("%s: unknown command\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 return 0;
2544 }
2545
2546 max_sector = _floppy->sect * _floppy->head;
2547
Tejun Heo83096eb2009-05-07 22:24:39 +09002548 TRACK = (int)blk_rq_pos(current_req) / max_sector;
2549 fsector_t = (int)blk_rq_pos(current_req) % max_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 if (_floppy->track && TRACK >= _floppy->track) {
Tejun Heo83096eb2009-05-07 22:24:39 +09002551 if (blk_rq_cur_sectors(current_req) & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 current_count_sectors = 1;
2553 return 1;
2554 } else
2555 return 0;
2556 }
2557 HEAD = fsector_t / _floppy->sect;
2558
Keith Wansbrough9e491842008-09-22 14:57:17 -07002559 if (((_floppy->stretch & (FD_SWAPSIDES | FD_SECTBASEMASK)) ||
Joe Perchese0298532010-03-10 15:20:55 -08002560 test_bit(FD_NEED_TWADDLE_BIT, &DRS->flags)) &&
2561 fsector_t < _floppy->sect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 max_sector = _floppy->sect;
2563
2564 /* 2M disks have phantom sectors on the first track */
2565 if ((_floppy->rate & FD_2M) && (!TRACK) && (!HEAD)) {
2566 max_sector = 2 * _floppy->sect / 3;
2567 if (fsector_t >= max_sector) {
2568 current_count_sectors =
2569 min_t(int, _floppy->sect - fsector_t,
Tejun Heo83096eb2009-05-07 22:24:39 +09002570 blk_rq_sectors(current_req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 return 1;
2572 }
2573 SIZECODE = 2;
2574 } else
2575 SIZECODE = FD_SIZECODE(_floppy);
2576 raw_cmd->rate = _floppy->rate & 0x43;
2577 if ((_floppy->rate & FD_2M) && (TRACK || HEAD) && raw_cmd->rate == 2)
2578 raw_cmd->rate = 1;
2579
2580 if (SIZECODE)
2581 SIZECODE2 = 0xff;
2582 else
2583 SIZECODE2 = 0x80;
2584 raw_cmd->track = TRACK << STRETCH(_floppy);
2585 DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, HEAD);
2586 GAP = _floppy->gap;
Joe Perches712e1de2010-03-10 15:21:10 -08002587 ssize = DIV_ROUND_UP(1 << SIZECODE, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 SECT_PER_TRACK = _floppy->sect << 2 >> SIZECODE;
2589 SECTOR = ((fsector_t % _floppy->sect) << 2 >> SIZECODE) +
Keith Wansbrough9e491842008-09-22 14:57:17 -07002590 FD_SECTBASE(_floppy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592 /* tracksize describes the size which can be filled up with sectors
2593 * of size ssize.
2594 */
2595 tracksize = _floppy->sect - _floppy->sect % ssize;
2596 if (tracksize < _floppy->sect) {
2597 SECT_PER_TRACK++;
2598 if (tracksize <= fsector_t % _floppy->sect)
2599 SECTOR--;
2600
2601 /* if we are beyond tracksize, fill up using smaller sectors */
2602 while (tracksize <= fsector_t % _floppy->sect) {
2603 while (tracksize + ssize > _floppy->sect) {
2604 SIZECODE--;
2605 ssize >>= 1;
2606 }
2607 SECTOR++;
2608 SECT_PER_TRACK++;
2609 tracksize += ssize;
2610 }
2611 max_sector = HEAD * _floppy->sect + tracksize;
2612 } else if (!TRACK && !HEAD && !(_floppy->rate & FD_2M) && probing) {
2613 max_sector = _floppy->sect;
2614 } else if (!HEAD && CT(COMMAND) == FD_WRITE) {
2615 /* for virtual DMA bug workaround */
2616 max_sector = _floppy->sect;
2617 }
2618
2619 in_sector_offset = (fsector_t % _floppy->sect) % ssize;
2620 aligned_sector_t = fsector_t - in_sector_offset;
Tejun Heo83096eb2009-05-07 22:24:39 +09002621 max_size = blk_rq_sectors(current_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if ((raw_cmd->track == buffer_track) &&
2623 (current_drive == buffer_drive) &&
2624 (fsector_t >= buffer_min) && (fsector_t < buffer_max)) {
2625 /* data already in track buffer */
2626 if (CT(COMMAND) == FD_READ) {
2627 copy_buffer(1, max_sector, buffer_max);
2628 return 1;
2629 }
Tejun Heo83096eb2009-05-07 22:24:39 +09002630 } else if (in_sector_offset || blk_rq_sectors(current_req) < ssize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 if (CT(COMMAND) == FD_WRITE) {
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002632 unsigned int sectors;
2633
2634 sectors = fsector_t + blk_rq_sectors(current_req);
2635 if (sectors > ssize && sectors < ssize + ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 max_size = ssize + ssize;
2637 else
2638 max_size = ssize;
2639 }
2640 raw_cmd->flags &= ~FD_RAW_WRITE;
2641 raw_cmd->flags |= FD_RAW_READ;
2642 COMMAND = FM_MODE(_floppy, FD_READ);
Jens Axboeb4f42e22014-04-10 09:46:28 -06002643 } else if ((unsigned long)bio_data(current_req->bio) < MAX_DMA_ADDRESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 unsigned long dma_limit;
2645 int direct, indirect;
2646
2647 indirect =
2648 transfer_size(ssize, max_sector,
2649 max_buffer_sectors * 2) - fsector_t;
2650
2651 /*
2652 * Do NOT use minimum() here---MAX_DMA_ADDRESS is 64 bits wide
2653 * on a 64 bit machine!
2654 */
2655 max_size = buffer_chain_size();
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002656 dma_limit = (MAX_DMA_ADDRESS -
Jens Axboeb4f42e22014-04-10 09:46:28 -06002657 ((unsigned long)bio_data(current_req->bio))) >> 9;
Joe Perchesa81ee542010-03-10 15:20:46 -08002658 if ((unsigned long)max_size > dma_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 max_size = dma_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 /* 64 kb boundaries */
Jens Axboeb4f42e22014-04-10 09:46:28 -06002661 if (CROSS_64KB(bio_data(current_req->bio), max_size << 9))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 max_size = (K_64 -
Jens Axboeb4f42e22014-04-10 09:46:28 -06002663 ((unsigned long)bio_data(current_req->bio)) %
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 K_64) >> 9;
2665 direct = transfer_size(ssize, max_sector, max_size) - fsector_t;
2666 /*
2667 * We try to read tracks, but if we get too many errors, we
2668 * go back to reading just one sector at a time.
2669 *
2670 * This means we should be able to read a sector even if there
2671 * are other bad sectors on this track.
2672 */
2673 if (!direct ||
2674 (indirect * 2 > direct * 3 &&
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002675 *errors < DP->max_errors.read_track &&
2676 ((!probing ||
2677 (DP->read_track & (1 << DRS->probed_format)))))) {
Tejun Heo83096eb2009-05-07 22:24:39 +09002678 max_size = blk_rq_sectors(current_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 } else {
Jens Axboeb4f42e22014-04-10 09:46:28 -06002680 raw_cmd->kernel_data = bio_data(current_req->bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 raw_cmd->length = current_count_sectors << 9;
2682 if (raw_cmd->length == 0) {
Joe Perches275176b2010-03-10 15:21:06 -08002683 DPRINT("%s: zero dma transfer attempted\n", __func__);
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002684 DPRINT("indirect=%d direct=%d fsector_t=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 indirect, direct, fsector_t);
2686 return 0;
2687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 virtualdmabug_workaround();
2689 return 2;
2690 }
2691 }
2692
2693 if (CT(COMMAND) == FD_READ)
2694 max_size = max_sector; /* unbounded */
2695
2696 /* claim buffer track if needed */
2697 if (buffer_track != raw_cmd->track || /* bad track */
2698 buffer_drive != current_drive || /* bad drive */
2699 fsector_t > buffer_max ||
2700 fsector_t < buffer_min ||
2701 ((CT(COMMAND) == FD_READ ||
Tejun Heo83096eb2009-05-07 22:24:39 +09002702 (!in_sector_offset && blk_rq_sectors(current_req) >= ssize)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 max_sector > 2 * max_buffer_sectors + buffer_min &&
Joe Perchesbb57f0c62010-03-10 15:20:50 -08002704 max_size + fsector_t > 2 * max_buffer_sectors + buffer_min)) {
2705 /* not enough space */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 buffer_track = -1;
2707 buffer_drive = current_drive;
2708 buffer_max = buffer_min = aligned_sector_t;
2709 }
2710 raw_cmd->kernel_data = floppy_track_buffer +
Joe Perchesbb57f0c62010-03-10 15:20:50 -08002711 ((aligned_sector_t - buffer_min) << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
2713 if (CT(COMMAND) == FD_WRITE) {
2714 /* copy write buffer to track buffer.
2715 * if we get here, we know that the write
2716 * is either aligned or the data already in the buffer
2717 * (buffer will be overwritten) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 if (in_sector_offset && buffer_track == -1)
2719 DPRINT("internal error offset !=0 on write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 buffer_track = raw_cmd->track;
2721 buffer_drive = current_drive;
2722 copy_buffer(ssize, max_sector,
2723 2 * max_buffer_sectors + buffer_min);
2724 } else
2725 transfer_size(ssize, max_sector,
2726 2 * max_buffer_sectors + buffer_min -
2727 aligned_sector_t);
2728
2729 /* round up current_count_sectors to get dma xfer size */
2730 raw_cmd->length = in_sector_offset + current_count_sectors;
2731 raw_cmd->length = ((raw_cmd->length - 1) | (ssize - 1)) + 1;
2732 raw_cmd->length <<= 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 if ((raw_cmd->length < current_count_sectors << 9) ||
Jens Axboeb4f42e22014-04-10 09:46:28 -06002734 (raw_cmd->kernel_data != bio_data(current_req->bio) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 CT(COMMAND) == FD_WRITE &&
2736 (aligned_sector_t + (raw_cmd->length >> 9) > buffer_max ||
2737 aligned_sector_t < buffer_min)) ||
2738 raw_cmd->length % (128 << SIZECODE) ||
2739 raw_cmd->length <= 0 || current_count_sectors <= 0) {
2740 DPRINT("fractionary current count b=%lx s=%lx\n",
2741 raw_cmd->length, current_count_sectors);
Jens Axboeb4f42e22014-04-10 09:46:28 -06002742 if (raw_cmd->kernel_data != bio_data(current_req->bio))
Joe Perchesb46df352010-03-10 15:20:46 -08002743 pr_info("addr=%d, length=%ld\n",
2744 (int)((raw_cmd->kernel_data -
2745 floppy_track_buffer) >> 9),
2746 current_count_sectors);
2747 pr_info("st=%d ast=%d mse=%d msi=%d\n",
2748 fsector_t, aligned_sector_t, max_sector, max_size);
2749 pr_info("ssize=%x SIZECODE=%d\n", ssize, SIZECODE);
2750 pr_info("command=%x SECTOR=%d HEAD=%d, TRACK=%d\n",
2751 COMMAND, SECTOR, HEAD, TRACK);
2752 pr_info("buffer drive=%d\n", buffer_drive);
2753 pr_info("buffer track=%d\n", buffer_track);
2754 pr_info("buffer_min=%d\n", buffer_min);
2755 pr_info("buffer_max=%d\n", buffer_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 return 0;
2757 }
2758
Jens Axboeb4f42e22014-04-10 09:46:28 -06002759 if (raw_cmd->kernel_data != bio_data(current_req->bio)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 if (raw_cmd->kernel_data < floppy_track_buffer ||
2761 current_count_sectors < 0 ||
2762 raw_cmd->length < 0 ||
2763 raw_cmd->kernel_data + raw_cmd->length >
2764 floppy_track_buffer + (max_buffer_sectors << 10)) {
2765 DPRINT("buffer overrun in schedule dma\n");
Joe Perchesb46df352010-03-10 15:20:46 -08002766 pr_info("fsector_t=%d buffer_min=%d current_count=%ld\n",
2767 fsector_t, buffer_min, raw_cmd->length >> 9);
2768 pr_info("current_count_sectors=%ld\n",
2769 current_count_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 if (CT(COMMAND) == FD_READ)
Joe Perchesb46df352010-03-10 15:20:46 -08002771 pr_info("read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 if (CT(COMMAND) == FD_WRITE)
Joe Perchesb46df352010-03-10 15:20:46 -08002773 pr_info("write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 return 0;
2775 }
Tejun Heo1011c1b2009-05-07 22:24:45 +09002776 } else if (raw_cmd->length > blk_rq_bytes(current_req) ||
Tejun Heo83096eb2009-05-07 22:24:39 +09002777 current_count_sectors > blk_rq_sectors(current_req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 DPRINT("buffer overrun in direct transfer\n");
2779 return 0;
2780 } else if (raw_cmd->length < current_count_sectors << 9) {
2781 DPRINT("more sectors than bytes\n");
Joe Perchesb46df352010-03-10 15:20:46 -08002782 pr_info("bytes=%ld\n", raw_cmd->length >> 9);
2783 pr_info("sectors=%ld\n", current_count_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 }
2785 if (raw_cmd->length == 0) {
2786 DPRINT("zero dma transfer attempted from make_raw_request\n");
2787 return 0;
2788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
2790 virtualdmabug_workaround();
2791 return 2;
2792}
2793
Jens Axboe48821182010-09-22 09:32:36 +02002794/*
2795 * Round-robin between our available drives, doing one request from each
2796 */
2797static int set_next_request(void)
2798{
2799 struct request_queue *q;
2800 int old_pos = fdc_queue;
2801
2802 do {
2803 q = disks[fdc_queue]->queue;
2804 if (++fdc_queue == N_DRIVE)
2805 fdc_queue = 0;
2806 if (q) {
2807 current_req = blk_fetch_request(q);
2808 if (current_req)
2809 break;
2810 }
2811 } while (fdc_queue != old_pos);
2812
2813 return current_req != NULL;
2814}
2815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816static void redo_fd_request(void)
2817{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 int drive;
2819 int tmp;
2820
2821 lastredo = jiffies;
2822 if (current_drive < N_DRIVE)
2823 floppy_off(current_drive);
2824
Joe Perches0da31322010-03-10 15:21:03 -08002825do_request:
2826 if (!current_req) {
Jens Axboe48821182010-09-22 09:32:36 +02002827 int pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Jens Axboe48821182010-09-22 09:32:36 +02002829 spin_lock_irq(&floppy_lock);
2830 pending = set_next_request();
2831 spin_unlock_irq(&floppy_lock);
Jens Axboe48821182010-09-22 09:32:36 +02002832 if (!pending) {
Joe Perches0da31322010-03-10 15:21:03 -08002833 do_floppy = NULL;
2834 unlock_fdc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 }
Joe Perches0da31322010-03-10 15:21:03 -08002838 drive = (long)current_req->rq_disk->private_data;
2839 set_fdc(drive);
Joe Perches73507e62010-03-10 15:21:03 -08002840 reschedule_timeout(current_reqD, "redo fd request");
Joe Perches0da31322010-03-10 15:21:03 -08002841
2842 set_floppy(drive);
2843 raw_cmd = &default_raw_cmd;
2844 raw_cmd->flags = 0;
2845 if (start_motor(redo_fd_request))
2846 return;
2847
2848 disk_change(current_drive);
2849 if (test_bit(current_drive, &fake_change) ||
2850 test_bit(FD_DISK_CHANGED_BIT, &DRS->flags)) {
2851 DPRINT("disk absent or changed during operation\n");
2852 request_done(0);
2853 goto do_request;
2854 }
2855 if (!_floppy) { /* Autodetection */
2856 if (!probing) {
2857 DRS->probed_format = 0;
2858 if (next_valid_format()) {
2859 DPRINT("no autodetectable formats\n");
2860 _floppy = NULL;
2861 request_done(0);
2862 goto do_request;
2863 }
2864 }
2865 probing = 1;
2866 _floppy = floppy_type + DP->autodetect[DRS->probed_format];
2867 } else
2868 probing = 0;
2869 errors = &(current_req->errors);
2870 tmp = make_raw_rw_request();
2871 if (tmp < 2) {
2872 request_done(tmp);
2873 goto do_request;
2874 }
2875
2876 if (test_bit(FD_NEED_TWADDLE_BIT, &DRS->flags))
2877 twaddle();
2878 schedule_bh(floppy_start);
Joe Perchesded28632010-03-10 15:21:09 -08002879 debugt(__func__, "queue fd request");
Joe Perches0da31322010-03-10 15:21:03 -08002880 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881}
2882
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002883static const struct cont_t rw_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 .interrupt = rw_interrupt,
2885 .redo = redo_fd_request,
2886 .error = bad_flp_intr,
2887 .done = request_done
2888};
2889
2890static void process_fd_request(void)
2891{
2892 cont = &rw_cont;
2893 schedule_bh(redo_fd_request);
2894}
2895
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002896static void do_fd_request(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897{
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002898 if (WARN(max_buffer_sectors == 0,
2899 "VFS: %s called on non-open device\n", __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002902 if (WARN(atomic_read(&usage_count) == 0,
Jens Axboe59533162013-05-23 12:25:08 +02002903 "warning: usage count=0, current_req=%p sect=%ld type=%x flags=%llx\n",
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002904 current_req, (long)blk_rq_pos(current_req), current_req->cmd_type,
Jens Axboe59533162013-05-23 12:25:08 +02002905 (unsigned long long) current_req->cmd_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 return;
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002907
Jiri Kosina070ad7e2012-05-18 13:50:25 +02002908 if (test_and_set_bit(0, &fdc_busy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 /* fdc busy, this new request will be treated when the
2910 current one is done */
Joe Perches275176b2010-03-10 15:21:06 -08002911 is_alive(__func__, "old request running");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 return;
2913 }
Jiri Kosina070ad7e2012-05-18 13:50:25 +02002914 command_status = FD_COMMAND_NONE;
2915 __reschedule_timeout(MAXTIMEOUT, "fd_request");
2916 set_fdc(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 process_fd_request();
Joe Perches275176b2010-03-10 15:21:06 -08002918 is_alive(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919}
2920
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002921static const struct cont_t poll_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 .interrupt = success_and_wakeup,
2923 .redo = floppy_ready,
2924 .error = generic_failure,
2925 .done = generic_done
2926};
2927
Joe Perches74f63f42010-03-10 15:20:58 -08002928static int poll_drive(bool interruptible, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 /* no auto-sense, just clear dcl */
2931 raw_cmd = &default_raw_cmd;
2932 raw_cmd->flags = flag;
2933 raw_cmd->track = 0;
2934 raw_cmd->cmd_count = 0;
2935 cont = &poll_cont;
Joe Perches87f530d2010-03-10 15:20:54 -08002936 debug_dcl(DP->flags, "setting NEWCHANGE in poll_drive\n");
Joe Perchese0298532010-03-10 15:20:55 -08002937 set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Joe Perches55eee802010-03-10 15:20:57 -08002938
2939 return wait_til_done(floppy_ready, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940}
2941
2942/*
2943 * User triggered reset
2944 * ====================
2945 */
2946
2947static void reset_intr(void)
2948{
Joe Perchesb46df352010-03-10 15:20:46 -08002949 pr_info("weird, reset interrupt called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950}
2951
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002952static const struct cont_t reset_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 .interrupt = reset_intr,
2954 .redo = success_and_wakeup,
2955 .error = generic_failure,
2956 .done = generic_done
2957};
2958
Joe Perches74f63f42010-03-10 15:20:58 -08002959static int user_reset_fdc(int drive, int arg, bool interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960{
2961 int ret;
2962
Joe Perches52a0d612010-03-10 15:20:53 -08002963 if (lock_fdc(drive, interruptible))
2964 return -EINTR;
2965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 if (arg == FD_RESET_ALWAYS)
2967 FDCS->reset = 1;
2968 if (FDCS->reset) {
2969 cont = &reset_cont;
Joe Perches55eee802010-03-10 15:20:57 -08002970 ret = wait_til_done(reset_fdc, interruptible);
2971 if (ret == -EINTR)
2972 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 }
2974 process_fd_request();
Joe Perches52a0d612010-03-10 15:20:53 -08002975 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976}
2977
2978/*
2979 * Misc Ioctl's and support
2980 * ========================
2981 */
2982static inline int fd_copyout(void __user *param, const void *address,
2983 unsigned long size)
2984{
2985 return copy_to_user(param, address, size) ? -EFAULT : 0;
2986}
2987
Joe Perches48c8cee2010-03-10 15:20:45 -08002988static inline int fd_copyin(void __user *param, void *address,
2989 unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990{
2991 return copy_from_user(address, param, size) ? -EFAULT : 0;
2992}
2993
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02002994static const char *drive_name(int type, int drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
2996 struct floppy_struct *floppy;
2997
2998 if (type)
2999 floppy = floppy_type + type;
3000 else {
3001 if (UDP->native_format)
3002 floppy = floppy_type + UDP->native_format;
3003 else
3004 return "(null)";
3005 }
3006 if (floppy->name)
3007 return floppy->name;
3008 else
3009 return "(null)";
3010}
3011
3012/* raw commands */
3013static void raw_cmd_done(int flag)
3014{
3015 int i;
3016
3017 if (!flag) {
3018 raw_cmd->flags |= FD_RAW_FAILURE;
3019 raw_cmd->flags |= FD_RAW_HARDFAILURE;
3020 } else {
3021 raw_cmd->reply_count = inr;
3022 if (raw_cmd->reply_count > MAX_REPLIES)
3023 raw_cmd->reply_count = 0;
3024 for (i = 0; i < raw_cmd->reply_count; i++)
3025 raw_cmd->reply[i] = reply_buffer[i];
3026
3027 if (raw_cmd->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
3028 unsigned long flags;
3029 flags = claim_dma_lock();
3030 raw_cmd->length = fd_get_dma_residue();
3031 release_dma_lock(flags);
3032 }
3033
3034 if ((raw_cmd->flags & FD_RAW_SOFTFAILURE) &&
3035 (!raw_cmd->reply_count || (raw_cmd->reply[0] & 0xc0)))
3036 raw_cmd->flags |= FD_RAW_FAILURE;
3037
3038 if (disk_change(current_drive))
3039 raw_cmd->flags |= FD_RAW_DISK_CHANGE;
3040 else
3041 raw_cmd->flags &= ~FD_RAW_DISK_CHANGE;
3042 if (raw_cmd->flags & FD_RAW_NO_MOTOR_AFTER)
3043 motor_off_callback(current_drive);
3044
3045 if (raw_cmd->next &&
3046 (!(raw_cmd->flags & FD_RAW_FAILURE) ||
3047 !(raw_cmd->flags & FD_RAW_STOP_IF_FAILURE)) &&
3048 ((raw_cmd->flags & FD_RAW_FAILURE) ||
3049 !(raw_cmd->flags & FD_RAW_STOP_IF_SUCCESS))) {
3050 raw_cmd = raw_cmd->next;
3051 return;
3052 }
3053 }
3054 generic_done(flag);
3055}
3056
Stephen Hemminger3b06c212010-07-20 20:09:00 -06003057static const struct cont_t raw_cmd_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 .interrupt = success_and_wakeup,
3059 .redo = floppy_start,
3060 .error = generic_failure,
3061 .done = raw_cmd_done
3062};
3063
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003064static int raw_cmd_copyout(int cmd, void __user *param,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 struct floppy_raw_cmd *ptr)
3066{
3067 int ret;
3068
3069 while (ptr) {
Matthew Daley2145e152014-04-28 19:05:21 +12003070 struct floppy_raw_cmd cmd = *ptr;
3071 cmd.next = NULL;
3072 cmd.kernel_data = NULL;
3073 ret = copy_to_user(param, &cmd, sizeof(cmd));
Joe Perches86b12b42010-03-10 15:20:56 -08003074 if (ret)
3075 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 param += sizeof(struct floppy_raw_cmd);
3077 if ((ptr->flags & FD_RAW_READ) && ptr->buffer_length) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08003078 if (ptr->length >= 0 &&
3079 ptr->length <= ptr->buffer_length) {
3080 long length = ptr->buffer_length - ptr->length;
Joe Perches4575b552010-03-10 15:20:55 -08003081 ret = fd_copyout(ptr->data, ptr->kernel_data,
3082 length);
3083 if (ret)
3084 return ret;
Joe Perchesbb57f0c62010-03-10 15:20:50 -08003085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 }
3087 ptr = ptr->next;
3088 }
Joe Perches7f252712010-03-10 15:21:08 -08003089
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 return 0;
3091}
3092
3093static void raw_cmd_free(struct floppy_raw_cmd **ptr)
3094{
Jesper Juhl06f748c2007-10-16 23:30:57 -07003095 struct floppy_raw_cmd *next;
3096 struct floppy_raw_cmd *this;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097
3098 this = *ptr;
3099 *ptr = NULL;
3100 while (this) {
3101 if (this->buffer_length) {
3102 fd_dma_mem_free((unsigned long)this->kernel_data,
3103 this->buffer_length);
3104 this->buffer_length = 0;
3105 }
3106 next = this->next;
3107 kfree(this);
3108 this = next;
3109 }
3110}
3111
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003112static int raw_cmd_copyin(int cmd, void __user *param,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 struct floppy_raw_cmd **rcmd)
3114{
3115 struct floppy_raw_cmd *ptr;
3116 int ret;
3117 int i;
3118
3119 *rcmd = NULL;
Joe Perches7f252712010-03-10 15:21:08 -08003120
3121loop:
3122 ptr = kmalloc(sizeof(struct floppy_raw_cmd), GFP_USER);
3123 if (!ptr)
3124 return -ENOMEM;
3125 *rcmd = ptr;
3126 ret = copy_from_user(ptr, param, sizeof(*ptr));
Joe Perches7f252712010-03-10 15:21:08 -08003127 ptr->next = NULL;
3128 ptr->buffer_length = 0;
Matthew Daleyef87dbe2014-04-28 19:05:20 +12003129 ptr->kernel_data = NULL;
3130 if (ret)
3131 return -EFAULT;
Joe Perches7f252712010-03-10 15:21:08 -08003132 param += sizeof(struct floppy_raw_cmd);
3133 if (ptr->cmd_count > 33)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 /* the command may now also take up the space
3135 * initially intended for the reply & the
3136 * reply count. Needed for long 82078 commands
3137 * such as RESTORE, which takes ... 17 command
3138 * bytes. Murphy's law #137: When you reserve
3139 * 16 bytes for a structure, you'll one day
3140 * discover that you really need 17...
3141 */
Joe Perches7f252712010-03-10 15:21:08 -08003142 return -EINVAL;
3143
3144 for (i = 0; i < 16; i++)
3145 ptr->reply[i] = 0;
3146 ptr->resultcode = 0;
Joe Perches7f252712010-03-10 15:21:08 -08003147
3148 if (ptr->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
3149 if (ptr->length <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 return -EINVAL;
Joe Perches7f252712010-03-10 15:21:08 -08003151 ptr->kernel_data = (char *)fd_dma_mem_alloc(ptr->length);
3152 fallback_on_nodma_alloc(&ptr->kernel_data, ptr->length);
3153 if (!ptr->kernel_data)
3154 return -ENOMEM;
3155 ptr->buffer_length = ptr->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 }
Joe Perches7f252712010-03-10 15:21:08 -08003157 if (ptr->flags & FD_RAW_WRITE) {
3158 ret = fd_copyin(ptr->data, ptr->kernel_data, ptr->length);
3159 if (ret)
3160 return ret;
3161 }
3162
3163 if (ptr->flags & FD_RAW_MORE) {
3164 rcmd = &(ptr->next);
3165 ptr->rate &= 0x43;
3166 goto loop;
3167 }
3168
3169 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170}
3171
3172static int raw_cmd_ioctl(int cmd, void __user *param)
3173{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 struct floppy_raw_cmd *my_raw_cmd;
Jesper Juhl06f748c2007-10-16 23:30:57 -07003175 int drive;
3176 int ret2;
3177 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178
3179 if (FDCS->rawcmd <= 1)
3180 FDCS->rawcmd = 1;
3181 for (drive = 0; drive < N_DRIVE; drive++) {
3182 if (FDC(drive) != fdc)
3183 continue;
3184 if (drive == current_drive) {
3185 if (UDRS->fd_ref > 1) {
3186 FDCS->rawcmd = 2;
3187 break;
3188 }
3189 } else if (UDRS->fd_ref) {
3190 FDCS->rawcmd = 2;
3191 break;
3192 }
3193 }
3194
3195 if (FDCS->reset)
3196 return -EIO;
3197
3198 ret = raw_cmd_copyin(cmd, param, &my_raw_cmd);
3199 if (ret) {
3200 raw_cmd_free(&my_raw_cmd);
3201 return ret;
3202 }
3203
3204 raw_cmd = my_raw_cmd;
3205 cont = &raw_cmd_cont;
Joe Perches74f63f42010-03-10 15:20:58 -08003206 ret = wait_til_done(floppy_start, true);
Joe Perches87f530d2010-03-10 15:20:54 -08003207 debug_dcl(DP->flags, "calling disk change from raw_cmd ioctl\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
3209 if (ret != -EINTR && FDCS->reset)
3210 ret = -EIO;
3211
3212 DRS->track = NO_TRACK;
3213
3214 ret2 = raw_cmd_copyout(cmd, param, my_raw_cmd);
3215 if (!ret)
3216 ret = ret2;
3217 raw_cmd_free(&my_raw_cmd);
3218 return ret;
3219}
3220
3221static int invalidate_drive(struct block_device *bdev)
3222{
3223 /* invalidate the buffer track to force a reread */
3224 set_bit((long)bdev->bd_disk->private_data, &fake_change);
3225 process_fd_request();
3226 check_disk_change(bdev);
3227 return 0;
3228}
3229
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003230static int set_geometry(unsigned int cmd, struct floppy_struct *g,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 int drive, int type, struct block_device *bdev)
3232{
3233 int cnt;
3234
3235 /* sanity checking for parameters. */
3236 if (g->sect <= 0 ||
3237 g->head <= 0 ||
3238 g->track <= 0 || g->track > UDP->tracks >> STRETCH(g) ||
3239 /* check if reserved bits are set */
Keith Wansbrough9e491842008-09-22 14:57:17 -07003240 (g->stretch & ~(FD_STRETCH | FD_SWAPSIDES | FD_SECTBASEMASK)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 return -EINVAL;
3242 if (type) {
3243 if (!capable(CAP_SYS_ADMIN))
3244 return -EPERM;
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003245 mutex_lock(&open_lock);
Joe Perches74f63f42010-03-10 15:20:58 -08003246 if (lock_fdc(drive, true)) {
Jiri Slaby8516a502009-06-30 11:41:44 -07003247 mutex_unlock(&open_lock);
3248 return -EINTR;
3249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 floppy_type[type] = *g;
3251 floppy_type[type].name = "user format";
3252 for (cnt = type << 2; cnt < (type << 2) + 4; cnt++)
3253 floppy_sizes[cnt] = floppy_sizes[cnt + 0x80] =
3254 floppy_type[type].size + 1;
3255 process_fd_request();
3256 for (cnt = 0; cnt < N_DRIVE; cnt++) {
3257 struct block_device *bdev = opened_bdev[cnt];
3258 if (!bdev || ITYPE(drive_state[cnt].fd_device) != type)
3259 continue;
NeilBrown93b270f2011-02-24 17:25:47 +11003260 __invalidate_device(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 }
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003262 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 } else {
3264 int oldStretch;
Joe Perches52a0d612010-03-10 15:20:53 -08003265
Joe Perches74f63f42010-03-10 15:20:58 -08003266 if (lock_fdc(drive, true))
Joe Perches52a0d612010-03-10 15:20:53 -08003267 return -EINTR;
Joe Perches4575b552010-03-10 15:20:55 -08003268 if (cmd != FDDEFPRM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 /* notice a disk change immediately, else
3270 * we lose our settings immediately*/
Joe Perches74f63f42010-03-10 15:20:58 -08003271 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003272 return -EINTR;
3273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 oldStretch = g->stretch;
3275 user_params[drive] = *g;
3276 if (buffer_drive == drive)
3277 SUPBOUND(buffer_max, user_params[drive].sect);
3278 current_type[drive] = &user_params[drive];
3279 floppy_sizes[drive] = user_params[drive].size;
3280 if (cmd == FDDEFPRM)
3281 DRS->keep_data = -1;
3282 else
3283 DRS->keep_data = 1;
3284 /* invalidation. Invalidate only when needed, i.e.
3285 * when there are already sectors in the buffer cache
3286 * whose number will change. This is useful, because
3287 * mtools often changes the geometry of the disk after
3288 * looking at the boot block */
3289 if (DRS->maxblock > user_params[drive].sect ||
3290 DRS->maxtrack ||
3291 ((user_params[drive].sect ^ oldStretch) &
Keith Wansbrough9e491842008-09-22 14:57:17 -07003292 (FD_SWAPSIDES | FD_SECTBASEMASK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 invalidate_drive(bdev);
3294 else
3295 process_fd_request();
3296 }
3297 return 0;
3298}
3299
3300/* handle obsolete ioctl's */
Stephen Hemminger21af5442010-06-15 13:21:11 +02003301static unsigned int ioctl_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 FDCLRPRM,
3303 FDSETPRM,
3304 FDDEFPRM,
3305 FDGETPRM,
3306 FDMSGON,
3307 FDMSGOFF,
3308 FDFMTBEG,
3309 FDFMTTRK,
3310 FDFMTEND,
3311 FDSETEMSGTRESH,
3312 FDFLUSH,
3313 FDSETMAXERRS,
3314 FDGETMAXERRS,
3315 FDGETDRVTYP,
3316 FDSETDRVPRM,
3317 FDGETDRVPRM,
3318 FDGETDRVSTAT,
3319 FDPOLLDRVSTAT,
3320 FDRESET,
3321 FDGETFDCSTAT,
3322 FDWERRORCLR,
3323 FDWERRORGET,
3324 FDRAWCMD,
3325 FDEJECT,
3326 FDTWADDLE
3327};
3328
Stephen Hemminger21af5442010-06-15 13:21:11 +02003329static int normalize_ioctl(unsigned int *cmd, int *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330{
3331 int i;
3332
3333 for (i = 0; i < ARRAY_SIZE(ioctl_table); i++) {
3334 if ((*cmd & 0xffff) == (ioctl_table[i] & 0xffff)) {
3335 *size = _IOC_SIZE(*cmd);
3336 *cmd = ioctl_table[i];
3337 if (*size > _IOC_SIZE(*cmd)) {
Joe Perchesb46df352010-03-10 15:20:46 -08003338 pr_info("ioctl not yet supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 return -EFAULT;
3340 }
3341 return 0;
3342 }
3343 }
3344 return -EINVAL;
3345}
3346
3347static int get_floppy_geometry(int drive, int type, struct floppy_struct **g)
3348{
3349 if (type)
3350 *g = &floppy_type[type];
3351 else {
Joe Perches74f63f42010-03-10 15:20:58 -08003352 if (lock_fdc(drive, false))
Joe Perches52a0d612010-03-10 15:20:53 -08003353 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003354 if (poll_drive(false, 0) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003355 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 process_fd_request();
3357 *g = current_type[drive];
3358 }
3359 if (!*g)
3360 return -ENODEV;
3361 return 0;
3362}
3363
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08003364static int fd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
3365{
3366 int drive = (long)bdev->bd_disk->private_data;
3367 int type = ITYPE(drive_state[drive].fd_device);
3368 struct floppy_struct *g;
3369 int ret;
3370
3371 ret = get_floppy_geometry(drive, type, &g);
3372 if (ret)
3373 return ret;
3374
3375 geo->heads = g->head;
3376 geo->sectors = g->sect;
3377 geo->cylinders = g->track;
3378 return 0;
3379}
3380
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003381static int fd_locked_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 unsigned long param)
3383{
Al Viroa4af9b42008-03-02 09:27:55 -05003384 int drive = (long)bdev->bd_disk->private_data;
Jesper Juhl06f748c2007-10-16 23:30:57 -07003385 int type = ITYPE(UDRS->fd_device);
3386 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 int ret;
3388 int size;
3389 union inparam {
3390 struct floppy_struct g; /* geometry */
3391 struct format_descr f;
3392 struct floppy_max_errors max_errors;
3393 struct floppy_drive_params dp;
3394 } inparam; /* parameters coming from user space */
Joe Perches724ee622010-03-10 15:21:11 -08003395 const void *outparam; /* parameters passed back to user space */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396
3397 /* convert compatibility eject ioctls into floppy eject ioctl.
3398 * We do this in order to provide a means to eject floppy disks before
3399 * installing the new fdutils package */
3400 if (cmd == CDROMEJECT || /* CD-ROM eject */
Joe Perchesa81ee542010-03-10 15:20:46 -08003401 cmd == 0x6470) { /* SunOS floppy eject */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 DPRINT("obsolete eject ioctl\n");
3403 DPRINT("please use floppycontrol --eject\n");
3404 cmd = FDEJECT;
3405 }
3406
Joe Perchesa81ee542010-03-10 15:20:46 -08003407 if (!((cmd & 0xff00) == 0x0200))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 return -EINVAL;
3409
Joe Perchesa81ee542010-03-10 15:20:46 -08003410 /* convert the old style command into a new style command */
Joe Perches4575b552010-03-10 15:20:55 -08003411 ret = normalize_ioctl(&cmd, &size);
3412 if (ret)
3413 return ret;
Joe Perchesa81ee542010-03-10 15:20:46 -08003414
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 /* permission checks */
Joe Perches0aad92c2010-03-10 15:21:10 -08003416 if (((cmd & 0x40) && !(mode & (FMODE_WRITE | FMODE_WRITE_IOCTL))) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 ((cmd & 0x80) && !capable(CAP_SYS_ADMIN)))
3418 return -EPERM;
3419
Arjan van de Ven2886a8b2009-12-14 18:00:11 -08003420 if (WARN_ON(size < 0 || size > sizeof(inparam)))
3421 return -EINVAL;
3422
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 /* copyin */
Joe Perchesb87c9e02010-03-10 15:20:50 -08003424 memset(&inparam, 0, sizeof(inparam));
Joe Perches4575b552010-03-10 15:20:55 -08003425 if (_IOC_DIR(cmd) & _IOC_WRITE) {
3426 ret = fd_copyin((void __user *)param, &inparam, size);
3427 if (ret)
3428 return ret;
3429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
Joe Perchesda273652010-03-10 15:20:52 -08003431 switch (cmd) {
3432 case FDEJECT:
3433 if (UDRS->fd_ref != 1)
3434 /* somebody else has this drive open */
3435 return -EBUSY;
Joe Perches74f63f42010-03-10 15:20:58 -08003436 if (lock_fdc(drive, true))
Joe Perches52a0d612010-03-10 15:20:53 -08003437 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
Joe Perchesda273652010-03-10 15:20:52 -08003439 /* do the actual eject. Fails on
3440 * non-Sparc architectures */
3441 ret = fd_eject(UNIT(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Joe Perchese0298532010-03-10 15:20:55 -08003443 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
3444 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Joe Perchesda273652010-03-10 15:20:52 -08003445 process_fd_request();
3446 return ret;
3447 case FDCLRPRM:
Joe Perches74f63f42010-03-10 15:20:58 -08003448 if (lock_fdc(drive, true))
Joe Perches52a0d612010-03-10 15:20:53 -08003449 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003450 current_type[drive] = NULL;
3451 floppy_sizes[drive] = MAX_DISK_SIZE << 1;
3452 UDRS->keep_data = 0;
3453 return invalidate_drive(bdev);
3454 case FDSETPRM:
3455 case FDDEFPRM:
3456 return set_geometry(cmd, &inparam.g, drive, type, bdev);
3457 case FDGETPRM:
Joe Perches4575b552010-03-10 15:20:55 -08003458 ret = get_floppy_geometry(drive, type,
Joe Perches724ee622010-03-10 15:21:11 -08003459 (struct floppy_struct **)&outparam);
Joe Perches4575b552010-03-10 15:20:55 -08003460 if (ret)
3461 return ret;
Joe Perchesda273652010-03-10 15:20:52 -08003462 break;
3463 case FDMSGON:
3464 UDP->flags |= FTD_MSG;
3465 return 0;
3466 case FDMSGOFF:
3467 UDP->flags &= ~FTD_MSG;
3468 return 0;
3469 case FDFMTBEG:
Joe Perches74f63f42010-03-10 15:20:58 -08003470 if (lock_fdc(drive, true))
Joe Perches52a0d612010-03-10 15:20:53 -08003471 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003472 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003473 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003474 ret = UDRS->flags;
3475 process_fd_request();
3476 if (ret & FD_VERIFY)
3477 return -ENODEV;
3478 if (!(ret & FD_DISK_WRITABLE))
3479 return -EROFS;
3480 return 0;
3481 case FDFMTTRK:
3482 if (UDRS->fd_ref != 1)
3483 return -EBUSY;
3484 return do_format(drive, &inparam.f);
3485 case FDFMTEND:
3486 case FDFLUSH:
Joe Perches74f63f42010-03-10 15:20:58 -08003487 if (lock_fdc(drive, true))
Joe Perches52a0d612010-03-10 15:20:53 -08003488 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003489 return invalidate_drive(bdev);
3490 case FDSETEMSGTRESH:
3491 UDP->max_errors.reporting = (unsigned short)(param & 0x0f);
3492 return 0;
3493 case FDGETMAXERRS:
Joe Perches724ee622010-03-10 15:21:11 -08003494 outparam = &UDP->max_errors;
Joe Perchesda273652010-03-10 15:20:52 -08003495 break;
3496 case FDSETMAXERRS:
3497 UDP->max_errors = inparam.max_errors;
3498 break;
3499 case FDGETDRVTYP:
3500 outparam = drive_name(type, drive);
Joe Perches724ee622010-03-10 15:21:11 -08003501 SUPBOUND(size, strlen((const char *)outparam) + 1);
Joe Perchesda273652010-03-10 15:20:52 -08003502 break;
3503 case FDSETDRVPRM:
3504 *UDP = inparam.dp;
3505 break;
3506 case FDGETDRVPRM:
Joe Perches724ee622010-03-10 15:21:11 -08003507 outparam = UDP;
Joe Perchesda273652010-03-10 15:20:52 -08003508 break;
3509 case FDPOLLDRVSTAT:
Joe Perches74f63f42010-03-10 15:20:58 -08003510 if (lock_fdc(drive, true))
Joe Perches52a0d612010-03-10 15:20:53 -08003511 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003512 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003513 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003514 process_fd_request();
3515 /* fall through */
3516 case FDGETDRVSTAT:
Joe Perches724ee622010-03-10 15:21:11 -08003517 outparam = UDRS;
Joe Perchesda273652010-03-10 15:20:52 -08003518 break;
3519 case FDRESET:
Joe Perches74f63f42010-03-10 15:20:58 -08003520 return user_reset_fdc(drive, (int)param, true);
Joe Perchesda273652010-03-10 15:20:52 -08003521 case FDGETFDCSTAT:
Joe Perches724ee622010-03-10 15:21:11 -08003522 outparam = UFDCS;
Joe Perchesda273652010-03-10 15:20:52 -08003523 break;
3524 case FDWERRORCLR:
3525 memset(UDRWE, 0, sizeof(*UDRWE));
3526 return 0;
3527 case FDWERRORGET:
Joe Perches724ee622010-03-10 15:21:11 -08003528 outparam = UDRWE;
Joe Perchesda273652010-03-10 15:20:52 -08003529 break;
3530 case FDRAWCMD:
3531 if (type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 return -EINVAL;
Joe Perches74f63f42010-03-10 15:20:58 -08003533 if (lock_fdc(drive, true))
Joe Perches52a0d612010-03-10 15:20:53 -08003534 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003535 set_floppy(drive);
Joe Perches4575b552010-03-10 15:20:55 -08003536 i = raw_cmd_ioctl(cmd, (void __user *)param);
3537 if (i == -EINTR)
3538 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003539 process_fd_request();
3540 return i;
3541 case FDTWADDLE:
Joe Perches74f63f42010-03-10 15:20:58 -08003542 if (lock_fdc(drive, true))
Joe Perches52a0d612010-03-10 15:20:53 -08003543 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003544 twaddle();
3545 process_fd_request();
3546 return 0;
3547 default:
3548 return -EINVAL;
3549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
3551 if (_IOC_DIR(cmd) & _IOC_READ)
3552 return fd_copyout((void __user *)param, outparam, size);
Joe Perchesda273652010-03-10 15:20:52 -08003553
3554 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555}
3556
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003557static int fd_ioctl(struct block_device *bdev, fmode_t mode,
3558 unsigned int cmd, unsigned long param)
3559{
3560 int ret;
3561
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003562 mutex_lock(&floppy_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003563 ret = fd_locked_ioctl(bdev, mode, cmd, param);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003564 mutex_unlock(&floppy_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003565
3566 return ret;
3567}
3568
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569static void __init config_types(void)
3570{
Joe Perchesb46df352010-03-10 15:20:46 -08003571 bool has_drive = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 int drive;
3573
3574 /* read drive info out of physical CMOS */
3575 drive = 0;
3576 if (!UDP->cmos)
3577 UDP->cmos = FLOPPY0_TYPE;
3578 drive = 1;
3579 if (!UDP->cmos && FLOPPY1_TYPE)
3580 UDP->cmos = FLOPPY1_TYPE;
3581
Jesper Juhl06f748c2007-10-16 23:30:57 -07003582 /* FIXME: additional physical CMOS drive detection should go here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583
3584 for (drive = 0; drive < N_DRIVE; drive++) {
3585 unsigned int type = UDP->cmos;
3586 struct floppy_drive_params *params;
3587 const char *name = NULL;
3588 static char temparea[32];
3589
Tobias Klauser945f3902006-01-08 01:05:11 -08003590 if (type < ARRAY_SIZE(default_drive_params)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 params = &default_drive_params[type].params;
3592 if (type) {
3593 name = default_drive_params[type].name;
3594 allowed_drive_mask |= 1 << drive;
3595 } else
3596 allowed_drive_mask &= ~(1 << drive);
3597 } else {
3598 params = &default_drive_params[0].params;
3599 sprintf(temparea, "unknown type %d (usb?)", type);
3600 name = temparea;
3601 }
3602 if (name) {
Joe Perchesb46df352010-03-10 15:20:46 -08003603 const char *prepend;
3604 if (!has_drive) {
3605 prepend = "";
3606 has_drive = true;
3607 pr_info("Floppy drive(s):");
3608 } else {
3609 prepend = ",";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 }
Joe Perchesb46df352010-03-10 15:20:46 -08003611
3612 pr_cont("%s fd%d is %s", prepend, drive, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 }
3614 *UDP = *params;
3615 }
Joe Perchesb46df352010-03-10 15:20:46 -08003616
3617 if (has_drive)
3618 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619}
3620
Al Virodb2a1442013-05-05 21:52:57 -04003621static void floppy_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622{
Al Viroa4af9b42008-03-02 09:27:55 -05003623 int drive = (long)disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003625 mutex_lock(&floppy_mutex);
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003626 mutex_lock(&open_lock);
Jiri Kosinabfa10b82012-05-18 13:50:28 +02003627 if (!UDRS->fd_ref--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 DPRINT("floppy_release with fd_ref == 0");
3629 UDRS->fd_ref = 0;
3630 }
3631 if (!UDRS->fd_ref)
3632 opened_bdev[drive] = NULL;
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003633 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003634 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635}
3636
3637/*
3638 * floppy_open check for aliasing (/dev/fd0 can be the same as
3639 * /dev/PS0 etc), and disallows simultaneous access to the same
3640 * drive with different device numbers.
3641 */
Al Viroa4af9b42008-03-02 09:27:55 -05003642static int floppy_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643{
Al Viroa4af9b42008-03-02 09:27:55 -05003644 int drive = (long)bdev->bd_disk->private_data;
3645 int old_dev, new_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646 int try;
3647 int res = -EBUSY;
3648 char *tmp;
3649
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003650 mutex_lock(&floppy_mutex);
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003651 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 old_dev = UDRS->fd_device;
Al Viroa4af9b42008-03-02 09:27:55 -05003653 if (opened_bdev[drive] && opened_bdev[drive] != bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 goto out2;
3655
3656 if (!UDRS->fd_ref && (UDP->flags & FD_BROKEN_DCL)) {
Joe Perchese0298532010-03-10 15:20:55 -08003657 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
3658 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 }
3660
Jiri Kosinabfa10b82012-05-18 13:50:28 +02003661 UDRS->fd_ref++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662
Al Viroa4af9b42008-03-02 09:27:55 -05003663 opened_bdev[drive] = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664
3665 res = -ENXIO;
3666
3667 if (!floppy_track_buffer) {
3668 /* if opening an ED drive, reserve a big buffer,
3669 * else reserve a small one */
3670 if ((UDP->cmos == 6) || (UDP->cmos == 5))
3671 try = 64; /* Only 48 actually useful */
3672 else
3673 try = 32; /* Only 24 actually useful */
3674
3675 tmp = (char *)fd_dma_mem_alloc(1024 * try);
3676 if (!tmp && !floppy_track_buffer) {
3677 try >>= 1; /* buffer only one side */
3678 INFBOUND(try, 16);
3679 tmp = (char *)fd_dma_mem_alloc(1024 * try);
3680 }
Joe Perchesa81ee542010-03-10 15:20:46 -08003681 if (!tmp && !floppy_track_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 fallback_on_nodma_alloc(&tmp, 2048 * try);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 if (!tmp && !floppy_track_buffer) {
3684 DPRINT("Unable to allocate DMA memory\n");
3685 goto out;
3686 }
3687 if (floppy_track_buffer) {
3688 if (tmp)
3689 fd_dma_mem_free((unsigned long)tmp, try * 1024);
3690 } else {
3691 buffer_min = buffer_max = -1;
3692 floppy_track_buffer = tmp;
3693 max_buffer_sectors = try;
3694 }
3695 }
3696
Al Viroa4af9b42008-03-02 09:27:55 -05003697 new_dev = MINOR(bdev->bd_dev);
3698 UDRS->fd_device = new_dev;
3699 set_capacity(disks[drive], floppy_sizes[new_dev]);
3700 if (old_dev != -1 && old_dev != new_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 if (buffer_drive == drive)
3702 buffer_track = -1;
3703 }
3704
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 if (UFDCS->rawcmd == 1)
3706 UFDCS->rawcmd = 2;
3707
Al Viroa4af9b42008-03-02 09:27:55 -05003708 if (!(mode & FMODE_NDELAY)) {
3709 if (mode & (FMODE_READ|FMODE_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 UDRS->last_checked = 0;
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01003711 clear_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags);
Al Viroa4af9b42008-03-02 09:27:55 -05003712 check_disk_change(bdev);
Joe Perchese0298532010-03-10 15:20:55 -08003713 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 goto out;
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01003715 if (test_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags))
3716 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 }
3718 res = -EROFS;
Joe Perchese0298532010-03-10 15:20:55 -08003719 if ((mode & FMODE_WRITE) &&
3720 !test_bit(FD_DISK_WRITABLE_BIT, &UDRS->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 goto out;
3722 }
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003723 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003724 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 return 0;
3726out:
Jiri Kosinabfa10b82012-05-18 13:50:28 +02003727 UDRS->fd_ref--;
3728
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729 if (!UDRS->fd_ref)
3730 opened_bdev[drive] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731out2:
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003732 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003733 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 return res;
3735}
3736
3737/*
3738 * Check if the disk has been changed or if a change has been faked.
3739 */
Tejun Heo1a8a74f2011-03-09 19:54:27 +01003740static unsigned int floppy_check_events(struct gendisk *disk,
3741 unsigned int clearing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742{
3743 int drive = (long)disk->private_data;
3744
Joe Perchese0298532010-03-10 15:20:55 -08003745 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
3746 test_bit(FD_VERIFY_BIT, &UDRS->flags))
Tejun Heo1a8a74f2011-03-09 19:54:27 +01003747 return DISK_EVENT_MEDIA_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -08003749 if (time_after(jiffies, UDRS->last_checked + UDP->checkfreq)) {
Joe Perches74f63f42010-03-10 15:20:58 -08003750 lock_fdc(drive, false);
3751 poll_drive(false, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 process_fd_request();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 }
3754
Joe Perchese0298532010-03-10 15:20:55 -08003755 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
3756 test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 test_bit(drive, &fake_change) ||
Pekka Enberg2b51dca2010-11-08 14:44:34 +01003758 drive_no_geom(drive))
Tejun Heo1a8a74f2011-03-09 19:54:27 +01003759 return DISK_EVENT_MEDIA_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 return 0;
3761}
3762
3763/*
3764 * This implements "read block 0" for floppy_revalidate().
3765 * Needed for format autodetection, checking whether there is
3766 * a disk in the drive, and whether that disk is writable.
3767 */
3768
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01003769struct rb0_cbdata {
3770 int drive;
3771 struct completion complete;
3772};
3773
3774static void floppy_rb0_cb(struct bio *bio, int err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775{
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01003776 struct rb0_cbdata *cbdata = (struct rb0_cbdata *)bio->bi_private;
3777 int drive = cbdata->drive;
3778
3779 if (err) {
Jiri Kosina1c65df32014-06-18 13:44:18 +02003780 pr_info("floppy: error %d while reading block 0\n", err);
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01003781 set_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags);
3782 }
3783 complete(&cbdata->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784}
3785
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01003786static int __floppy_read_block_0(struct block_device *bdev, int drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787{
3788 struct bio bio;
3789 struct bio_vec bio_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 struct page *page;
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01003791 struct rb0_cbdata cbdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 size_t size;
3793
3794 page = alloc_page(GFP_NOIO);
3795 if (!page) {
3796 process_fd_request();
3797 return -ENOMEM;
3798 }
3799
3800 size = bdev->bd_block_size;
3801 if (!size)
3802 size = 1024;
3803
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01003804 cbdata.drive = drive;
3805
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 bio_init(&bio);
3807 bio.bi_io_vec = &bio_vec;
3808 bio_vec.bv_page = page;
3809 bio_vec.bv_len = size;
3810 bio_vec.bv_offset = 0;
3811 bio.bi_vcnt = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003812 bio.bi_iter.bi_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 bio.bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07003814 bio.bi_iter.bi_sector = 0;
Jiri Kosina6314a102014-05-28 11:55:23 +02003815 bio.bi_flags |= (1 << BIO_QUIET);
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01003816 bio.bi_private = &cbdata;
3817 bio.bi_end_io = floppy_rb0_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
3819 submit_bio(READ, &bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 process_fd_request();
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01003821
3822 init_completion(&cbdata.complete);
3823 wait_for_completion(&cbdata.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
3825 __free_page(page);
3826
3827 return 0;
3828}
3829
3830/* revalidate the floppy disk, i.e. trigger format autodetection by reading
3831 * the bootblock (block 0). "Autodetection" is also needed to check whether
3832 * there is a disk in the drive at all... Thus we also do it for fixed
3833 * geometry formats */
3834static int floppy_revalidate(struct gendisk *disk)
3835{
3836 int drive = (long)disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 int cf;
3838 int res = 0;
3839
Joe Perchese0298532010-03-10 15:20:55 -08003840 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
3841 test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
Pekka Enberg2b51dca2010-11-08 14:44:34 +01003842 test_bit(drive, &fake_change) ||
3843 drive_no_geom(drive)) {
Stephen Hemminger01b6b672010-06-15 13:21:11 +02003844 if (WARN(atomic_read(&usage_count) == 0,
3845 "VFS: revalidate called on non-open device.\n"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 return -EFAULT;
Stephen Hemminger01b6b672010-06-15 13:21:11 +02003847
Joe Perches74f63f42010-03-10 15:20:58 -08003848 lock_fdc(drive, false);
Joe Perchese0298532010-03-10 15:20:55 -08003849 cf = (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
3850 test_bit(FD_VERIFY_BIT, &UDRS->flags));
Pekka Enberg2b51dca2010-11-08 14:44:34 +01003851 if (!(cf || test_bit(drive, &fake_change) || drive_no_geom(drive))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 process_fd_request(); /*already done by another thread */
3853 return 0;
3854 }
3855 UDRS->maxblock = 0;
3856 UDRS->maxtrack = 0;
3857 if (buffer_drive == drive)
3858 buffer_track = -1;
3859 clear_bit(drive, &fake_change);
Joe Perchese0298532010-03-10 15:20:55 -08003860 clear_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 if (cf)
3862 UDRS->generation++;
Pekka Enberg2b51dca2010-11-08 14:44:34 +01003863 if (drive_no_geom(drive)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 /* auto-sensing */
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01003865 res = __floppy_read_block_0(opened_bdev[drive], drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 } else {
3867 if (cf)
Joe Perches74f63f42010-03-10 15:20:58 -08003868 poll_drive(false, FD_RAW_NEED_DISK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 process_fd_request();
3870 }
3871 }
3872 set_capacity(disk, floppy_sizes[UDRS->fd_device]);
3873 return res;
3874}
3875
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07003876static const struct block_device_operations floppy_fops = {
Jesper Juhl06f748c2007-10-16 23:30:57 -07003877 .owner = THIS_MODULE,
Al Viroa4af9b42008-03-02 09:27:55 -05003878 .open = floppy_open,
3879 .release = floppy_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003880 .ioctl = fd_ioctl,
Jesper Juhl06f748c2007-10-16 23:30:57 -07003881 .getgeo = fd_getgeo,
Tejun Heo1a8a74f2011-03-09 19:54:27 +01003882 .check_events = floppy_check_events,
Jesper Juhl06f748c2007-10-16 23:30:57 -07003883 .revalidate_disk = floppy_revalidate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884};
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886/*
3887 * Floppy Driver initialization
3888 * =============================
3889 */
3890
3891/* Determine the floppy disk controller type */
3892/* This routine was written by David C. Niemi */
3893static char __init get_fdc_version(void)
3894{
3895 int r;
3896
3897 output_byte(FD_DUMPREGS); /* 82072 and better know DUMPREGS */
3898 if (FDCS->reset)
3899 return FDC_NONE;
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08003900 r = result();
3901 if (r <= 0x00)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 return FDC_NONE; /* No FDC present ??? */
3903 if ((r == 1) && (reply_buffer[0] == 0x80)) {
Joe Perchesb46df352010-03-10 15:20:46 -08003904 pr_info("FDC %d is an 8272A\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 return FDC_8272A; /* 8272a/765 don't know DUMPREGS */
3906 }
3907 if (r != 10) {
Joe Perchesb46df352010-03-10 15:20:46 -08003908 pr_info("FDC %d init: DUMPREGS: unexpected return of %d bytes.\n",
3909 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 return FDC_UNKNOWN;
3911 }
3912
3913 if (!fdc_configure()) {
Joe Perchesb46df352010-03-10 15:20:46 -08003914 pr_info("FDC %d is an 82072\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 return FDC_82072; /* 82072 doesn't know CONFIGURE */
3916 }
3917
3918 output_byte(FD_PERPENDICULAR);
3919 if (need_more_output() == MORE_OUTPUT) {
3920 output_byte(0);
3921 } else {
Joe Perchesb46df352010-03-10 15:20:46 -08003922 pr_info("FDC %d is an 82072A\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 return FDC_82072A; /* 82072A as found on Sparcs. */
3924 }
3925
3926 output_byte(FD_UNLOCK);
3927 r = result();
3928 if ((r == 1) && (reply_buffer[0] == 0x80)) {
Joe Perchesb46df352010-03-10 15:20:46 -08003929 pr_info("FDC %d is a pre-1991 82077\n", fdc);
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08003930 return FDC_82077_ORIG; /* Pre-1991 82077, doesn't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 * LOCK/UNLOCK */
3932 }
3933 if ((r != 1) || (reply_buffer[0] != 0x00)) {
Joe Perchesb46df352010-03-10 15:20:46 -08003934 pr_info("FDC %d init: UNLOCK: unexpected return of %d bytes.\n",
3935 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 return FDC_UNKNOWN;
3937 }
3938 output_byte(FD_PARTID);
3939 r = result();
3940 if (r != 1) {
Joe Perchesb46df352010-03-10 15:20:46 -08003941 pr_info("FDC %d init: PARTID: unexpected return of %d bytes.\n",
3942 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 return FDC_UNKNOWN;
3944 }
3945 if (reply_buffer[0] == 0x80) {
Joe Perchesb46df352010-03-10 15:20:46 -08003946 pr_info("FDC %d is a post-1991 82077\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 return FDC_82077; /* Revised 82077AA passes all the tests */
3948 }
3949 switch (reply_buffer[0] >> 5) {
3950 case 0x0:
3951 /* Either a 82078-1 or a 82078SL running at 5Volt */
Joe Perchesb46df352010-03-10 15:20:46 -08003952 pr_info("FDC %d is an 82078.\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 return FDC_82078;
3954 case 0x1:
Joe Perchesb46df352010-03-10 15:20:46 -08003955 pr_info("FDC %d is a 44pin 82078\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 return FDC_82078;
3957 case 0x2:
Joe Perchesb46df352010-03-10 15:20:46 -08003958 pr_info("FDC %d is a S82078B\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 return FDC_S82078B;
3960 case 0x3:
Joe Perchesb46df352010-03-10 15:20:46 -08003961 pr_info("FDC %d is a National Semiconductor PC87306\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 return FDC_87306;
3963 default:
Joe Perchesb46df352010-03-10 15:20:46 -08003964 pr_info("FDC %d init: 82078 variant with unknown PARTID=%d.\n",
3965 fdc, reply_buffer[0] >> 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 return FDC_82078_UNKN;
3967 }
3968} /* get_fdc_version */
3969
3970/* lilo configuration */
3971
3972static void __init floppy_set_flags(int *ints, int param, int param2)
3973{
3974 int i;
3975
3976 for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
3977 if (param)
3978 default_drive_params[i].params.flags |= param2;
3979 else
3980 default_drive_params[i].params.flags &= ~param2;
3981 }
3982 DPRINT("%s flag 0x%x\n", param2 ? "Setting" : "Clearing", param);
3983}
3984
3985static void __init daring(int *ints, int param, int param2)
3986{
3987 int i;
3988
3989 for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
3990 if (param) {
3991 default_drive_params[i].params.select_delay = 0;
3992 default_drive_params[i].params.flags |=
3993 FD_SILENT_DCL_CLEAR;
3994 } else {
3995 default_drive_params[i].params.select_delay =
3996 2 * HZ / 100;
3997 default_drive_params[i].params.flags &=
3998 ~FD_SILENT_DCL_CLEAR;
3999 }
4000 }
4001 DPRINT("Assuming %s floppy hardware\n", param ? "standard" : "broken");
4002}
4003
4004static void __init set_cmos(int *ints, int dummy, int dummy2)
4005{
4006 int current_drive = 0;
4007
4008 if (ints[0] != 2) {
4009 DPRINT("wrong number of parameters for CMOS\n");
4010 return;
4011 }
4012 current_drive = ints[1];
4013 if (current_drive < 0 || current_drive >= 8) {
4014 DPRINT("bad drive for set_cmos\n");
4015 return;
4016 }
4017#if N_FDC > 1
4018 if (current_drive >= 4 && !FDC2)
4019 FDC2 = 0x370;
4020#endif
4021 DP->cmos = ints[2];
4022 DPRINT("setting CMOS code to %d\n", ints[2]);
4023}
4024
4025static struct param_table {
4026 const char *name;
4027 void (*fn) (int *ints, int param, int param2);
4028 int *var;
4029 int def_param;
4030 int param2;
4031} config_params[] __initdata = {
4032 {"allowed_drive_mask", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
4033 {"all_drives", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
4034 {"asus_pci", NULL, &allowed_drive_mask, 0x33, 0},
4035 {"irq", NULL, &FLOPPY_IRQ, 6, 0},
4036 {"dma", NULL, &FLOPPY_DMA, 2, 0},
4037 {"daring", daring, NULL, 1, 0},
4038#if N_FDC > 1
4039 {"two_fdc", NULL, &FDC2, 0x370, 0},
4040 {"one_fdc", NULL, &FDC2, 0, 0},
4041#endif
4042 {"thinkpad", floppy_set_flags, NULL, 1, FD_INVERTED_DCL},
4043 {"broken_dcl", floppy_set_flags, NULL, 1, FD_BROKEN_DCL},
4044 {"messages", floppy_set_flags, NULL, 1, FTD_MSG},
4045 {"silent_dcl_clear", floppy_set_flags, NULL, 1, FD_SILENT_DCL_CLEAR},
4046 {"debug", floppy_set_flags, NULL, 1, FD_DEBUG},
4047 {"nodma", NULL, &can_use_virtual_dma, 1, 0},
4048 {"omnibook", NULL, &can_use_virtual_dma, 1, 0},
4049 {"yesdma", NULL, &can_use_virtual_dma, 0, 0},
4050 {"fifo_depth", NULL, &fifo_depth, 0xa, 0},
4051 {"nofifo", NULL, &no_fifo, 0x20, 0},
4052 {"usefifo", NULL, &no_fifo, 0, 0},
4053 {"cmos", set_cmos, NULL, 0, 0},
4054 {"slow", NULL, &slow_floppy, 1, 0},
4055 {"unexpected_interrupts", NULL, &print_unex, 1, 0},
4056 {"no_unexpected_interrupts", NULL, &print_unex, 0, 0},
4057 {"L40SX", NULL, &print_unex, 0, 0}
4058
4059 EXTRA_FLOPPY_PARAMS
4060};
4061
4062static int __init floppy_setup(char *str)
4063{
4064 int i;
4065 int param;
4066 int ints[11];
4067
4068 str = get_options(str, ARRAY_SIZE(ints), ints);
4069 if (str) {
4070 for (i = 0; i < ARRAY_SIZE(config_params); i++) {
4071 if (strcmp(str, config_params[i].name) == 0) {
4072 if (ints[0])
4073 param = ints[1];
4074 else
4075 param = config_params[i].def_param;
4076 if (config_params[i].fn)
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004077 config_params[i].fn(ints, param,
4078 config_params[i].
4079 param2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 if (config_params[i].var) {
4081 DPRINT("%s=%d\n", str, param);
4082 *config_params[i].var = param;
4083 }
4084 return 1;
4085 }
4086 }
4087 }
4088 if (str) {
4089 DPRINT("unknown floppy option [%s]\n", str);
4090
4091 DPRINT("allowed options are:");
4092 for (i = 0; i < ARRAY_SIZE(config_params); i++)
Joe Perchesb46df352010-03-10 15:20:46 -08004093 pr_cont(" %s", config_params[i].name);
4094 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 } else
4096 DPRINT("botched floppy option\n");
Randy Dunlap31c00fc2008-11-13 21:33:24 +00004097 DPRINT("Read Documentation/blockdev/floppy.txt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 return 0;
4099}
4100
4101static int have_no_fdc = -ENODEV;
4102
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004103static ssize_t floppy_cmos_show(struct device *dev,
4104 struct device_attribute *attr, char *buf)
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004105{
Eric Miao71b3e0c2009-01-31 22:47:44 +08004106 struct platform_device *p = to_platform_device(dev);
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004107 int drive;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004108
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004109 drive = p->id;
4110 return sprintf(buf, "%X\n", UDP->cmos);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004111}
Joe Perches48c8cee2010-03-10 15:20:45 -08004112
Stephen Hemmingerbe1c0fb2010-06-15 13:21:11 +02004113static DEVICE_ATTR(cmos, S_IRUGO, floppy_cmos_show, NULL);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004114
Takashi Iwaib7f120b2015-02-02 17:08:45 +01004115static struct attribute *floppy_dev_attrs[] = {
4116 &dev_attr_cmos.attr,
4117 NULL
4118};
4119
4120ATTRIBUTE_GROUPS(floppy_dev);
4121
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122static void floppy_device_release(struct device *dev)
4123{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124}
4125
Frans Popc90cd332009-07-25 22:24:54 +02004126static int floppy_resume(struct device *dev)
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004127{
4128 int fdc;
4129
4130 for (fdc = 0; fdc < N_FDC; fdc++)
4131 if (FDCS->address != -1)
Joe Perches74f63f42010-03-10 15:20:58 -08004132 user_reset_fdc(-1, FD_RESET_ALWAYS, false);
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004133
4134 return 0;
4135}
4136
Alexey Dobriyan47145212009-12-14 18:00:08 -08004137static const struct dev_pm_ops floppy_pm_ops = {
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004138 .resume = floppy_resume,
Frans Popc90cd332009-07-25 22:24:54 +02004139 .restore = floppy_resume,
4140};
4141
4142static struct platform_driver floppy_driver = {
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004143 .driver = {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004144 .name = "floppy",
4145 .pm = &floppy_pm_ops,
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004146 },
4147};
4148
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004149static struct platform_device floppy_device[N_DRIVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004151static bool floppy_available(int drive)
4152{
4153 if (!(allowed_drive_mask & (1 << drive)))
4154 return false;
4155 if (fdc_state[FDC(drive)].version == FDC_NONE)
4156 return false;
4157 return true;
4158}
4159
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160static struct kobject *floppy_find(dev_t dev, int *part, void *data)
4161{
4162 int drive = (*part & 3) | ((*part & 0x80) >> 5);
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004163 if (drive >= N_DRIVE || !floppy_available(drive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 return NULL;
Tobias Klauser945f3902006-01-08 01:05:11 -08004165 if (((*part >> 2) & 0x1f) >= ARRAY_SIZE(floppy_type))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 return NULL;
4167 *part = 0;
4168 return get_disk(disks[drive]);
4169}
4170
Andi Kleen0cc15d032012-07-02 17:27:04 -07004171static int __init do_floppy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172{
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004173 int i, unit, drive, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174
Stephen Hemminger285203c2010-06-15 13:21:11 +02004175 set_debugt();
4176 interruptjiffies = resultjiffies = jiffies;
4177
Kumar Gala68e1ee62008-09-22 14:41:31 -07004178#if defined(CONFIG_PPC)
Olaf Heringef16b512006-08-31 21:27:41 -07004179 if (check_legacy_ioport(FDC1))
4180 return -ENODEV;
4181#endif
4182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 raw_cmd = NULL;
4184
Herton Ronaldo Krzesinskib54e1f82012-08-27 20:56:51 -03004185 floppy_wq = alloc_ordered_workqueue("floppy", 0);
4186 if (!floppy_wq)
4187 return -ENOMEM;
4188
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004189 for (drive = 0; drive < N_DRIVE; drive++) {
4190 disks[drive] = alloc_disk(1);
4191 if (!disks[drive]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 err = -ENOMEM;
4193 goto out_put_disk;
4194 }
4195
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004196 disks[drive]->queue = blk_init_queue(do_fd_request, &floppy_lock);
4197 if (!disks[drive]->queue) {
Jens Axboe48821182010-09-22 09:32:36 +02004198 err = -ENOMEM;
Herton Ronaldo Krzesinskib54e1f82012-08-27 20:56:51 -03004199 goto out_put_disk;
Jens Axboe48821182010-09-22 09:32:36 +02004200 }
4201
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004202 blk_queue_max_hw_sectors(disks[drive]->queue, 64);
4203 disks[drive]->major = FLOPPY_MAJOR;
4204 disks[drive]->first_minor = TOMINOR(drive);
4205 disks[drive]->fops = &floppy_fops;
4206 sprintf(disks[drive]->disk_name, "fd%d", drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004208 init_timer(&motor_off_timer[drive]);
4209 motor_off_timer[drive].data = drive;
4210 motor_off_timer[drive].function = motor_off_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 }
4212
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 err = register_blkdev(FLOPPY_MAJOR, "fd");
4214 if (err)
Greg Kroah-Hartman8ab5e4c2005-06-20 21:15:16 -07004215 goto out_put_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004217 err = platform_driver_register(&floppy_driver);
4218 if (err)
4219 goto out_unreg_blkdev;
4220
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 blk_register_region(MKDEV(FLOPPY_MAJOR, 0), 256, THIS_MODULE,
4222 floppy_find, NULL, NULL);
4223
4224 for (i = 0; i < 256; i++)
4225 if (ITYPE(i))
4226 floppy_sizes[i] = floppy_type[ITYPE(i)].size;
4227 else
4228 floppy_sizes[i] = MAX_DISK_SIZE << 1;
4229
Joe Perches73507e62010-03-10 15:21:03 -08004230 reschedule_timeout(MAXTIMEOUT, "floppy init");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 config_types();
4232
4233 for (i = 0; i < N_FDC; i++) {
4234 fdc = i;
Joe Perchesb87c9e02010-03-10 15:20:50 -08004235 memset(FDCS, 0, sizeof(*FDCS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 FDCS->dtr = -1;
4237 FDCS->dor = 0x4;
4238#if defined(__sparc__) || defined(__mc68000__)
Joe Perches96534f12010-03-10 15:20:51 -08004239 /*sparcs/sun3x don't have a DOR reset which we can fall back on to */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240#ifdef __mc68000__
4241 if (MACH_IS_SUN3X)
4242#endif
4243 FDCS->version = FDC_82072A;
4244#endif
4245 }
4246
4247 use_virtual_dma = can_use_virtual_dma & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 fdc_state[0].address = FDC1;
4249 if (fdc_state[0].address == -1) {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004250 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 err = -ENODEV;
4252 goto out_unreg_region;
4253 }
4254#if N_FDC > 1
4255 fdc_state[1].address = FDC2;
4256#endif
4257
4258 fdc = 0; /* reset fdc in case of unexpected interrupt */
4259 err = floppy_grab_irq_and_dma();
4260 if (err) {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004261 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 err = -EBUSY;
4263 goto out_unreg_region;
4264 }
4265
4266 /* initialise drive state */
4267 for (drive = 0; drive < N_DRIVE; drive++) {
Joe Perchesb87c9e02010-03-10 15:20:50 -08004268 memset(UDRS, 0, sizeof(*UDRS));
4269 memset(UDRWE, 0, sizeof(*UDRWE));
Joe Perchese0298532010-03-10 15:20:55 -08004270 set_bit(FD_DISK_NEWCHANGE_BIT, &UDRS->flags);
4271 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
4272 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 UDRS->fd_device = -1;
4274 floppy_track_buffer = NULL;
4275 max_buffer_sectors = 0;
4276 }
4277 /*
4278 * Small 10 msec delay to let through any interrupt that
4279 * initialization might have triggered, to not
4280 * confuse detection:
4281 */
4282 msleep(10);
4283
4284 for (i = 0; i < N_FDC; i++) {
4285 fdc = i;
4286 FDCS->driver_version = FD_DRIVER_VERSION;
4287 for (unit = 0; unit < 4; unit++)
4288 FDCS->track[unit] = 0;
4289 if (FDCS->address == -1)
4290 continue;
4291 FDCS->rawcmd = 2;
Joe Perches74f63f42010-03-10 15:20:58 -08004292 if (user_reset_fdc(-1, FD_RESET_ALWAYS, false)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 /* free ioports reserved by floppy_grab_irq_and_dma() */
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004294 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 FDCS->address = -1;
4296 FDCS->version = FDC_NONE;
4297 continue;
4298 }
4299 /* Try to determine the floppy controller type */
4300 FDCS->version = get_fdc_version();
4301 if (FDCS->version == FDC_NONE) {
4302 /* free ioports reserved by floppy_grab_irq_and_dma() */
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004303 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 FDCS->address = -1;
4305 continue;
4306 }
4307 if (can_use_virtual_dma == 2 && FDCS->version < FDC_82072A)
4308 can_use_virtual_dma = 0;
4309
4310 have_no_fdc = 0;
4311 /* Not all FDCs seem to be able to handle the version command
4312 * properly, so force a reset for the standard FDC clones,
4313 * to avoid interrupt garbage.
4314 */
Joe Perches74f63f42010-03-10 15:20:58 -08004315 user_reset_fdc(-1, FD_RESET_ALWAYS, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 }
4317 fdc = 0;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004318 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 current_drive = 0;
Joe Perches29f1c782010-03-10 15:21:00 -08004320 initialized = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 if (have_no_fdc) {
4322 DPRINT("no floppy controllers found\n");
4323 err = have_no_fdc;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004324 goto out_release_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 }
4326
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 for (drive = 0; drive < N_DRIVE; drive++) {
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004328 if (!floppy_available(drive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 continue;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004330
4331 floppy_device[drive].name = floppy_device_name;
4332 floppy_device[drive].id = drive;
4333 floppy_device[drive].dev.release = floppy_device_release;
Takashi Iwaib7f120b2015-02-02 17:08:45 +01004334 floppy_device[drive].dev.groups = floppy_dev_groups;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004335
4336 err = platform_device_register(&floppy_device[drive]);
4337 if (err)
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004338 goto out_remove_drives;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004339
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 /* to be cleaned up... */
4341 disks[drive]->private_data = (void *)(long)drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 disks[drive]->flags |= GENHD_FL_REMOVABLE;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004343 disks[drive]->driverfs_dev = &floppy_device[drive].dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 add_disk(disks[drive]);
4345 }
4346
4347 return 0;
4348
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004349out_remove_drives:
4350 while (drive--) {
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004351 if (floppy_available(drive)) {
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004352 del_gendisk(disks[drive]);
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004353 platform_device_unregister(&floppy_device[drive]);
4354 }
4355 }
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004356out_release_dma:
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004357 if (atomic_read(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 floppy_release_irq_and_dma();
4359out_unreg_region:
4360 blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004361 platform_driver_unregister(&floppy_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362out_unreg_blkdev:
4363 unregister_blkdev(FLOPPY_MAJOR, "fd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364out_put_disk:
Jiri Kosinaeac7cc52012-11-06 11:47:13 +01004365 destroy_workqueue(floppy_wq);
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004366 for (drive = 0; drive < N_DRIVE; drive++) {
4367 if (!disks[drive])
4368 break;
4369 if (disks[drive]->queue) {
4370 del_timer_sync(&motor_off_timer[drive]);
4371 blk_cleanup_queue(disks[drive]->queue);
4372 disks[drive]->queue = NULL;
Vivek Goyal3f9a5aa2012-02-08 20:03:38 +01004373 }
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004374 put_disk(disks[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 }
4376 return err;
4377}
4378
Andi Kleen0cc15d032012-07-02 17:27:04 -07004379#ifndef MODULE
4380static __init void floppy_async_init(void *data, async_cookie_t cookie)
4381{
4382 do_floppy_init();
4383}
4384#endif
4385
4386static int __init floppy_init(void)
4387{
4388#ifdef MODULE
4389 return do_floppy_init();
4390#else
4391 /* Don't hold up the bootup by the floppy initialization */
4392 async_schedule(floppy_async_init, NULL);
4393 return 0;
4394#endif
4395}
4396
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004397static const struct io_region {
4398 int offset;
4399 int size;
4400} io_regions[] = {
4401 { 2, 1 },
4402 /* address + 3 is sometimes reserved by pnp bios for motherboard */
4403 { 4, 2 },
4404 /* address + 6 is reserved, and may be taken by IDE.
4405 * Unfortunately, Adaptec doesn't know this :-(, */
4406 { 7, 1 },
4407};
4408
4409static void floppy_release_allocated_regions(int fdc, const struct io_region *p)
4410{
4411 while (p != io_regions) {
4412 p--;
4413 release_region(FDCS->address + p->offset, p->size);
4414 }
4415}
4416
4417#define ARRAY_END(X) (&((X)[ARRAY_SIZE(X)]))
4418
4419static int floppy_request_regions(int fdc)
4420{
4421 const struct io_region *p;
4422
4423 for (p = io_regions; p < ARRAY_END(io_regions); p++) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004424 if (!request_region(FDCS->address + p->offset,
4425 p->size, "floppy")) {
4426 DPRINT("Floppy io-port 0x%04lx in use\n",
4427 FDCS->address + p->offset);
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004428 floppy_release_allocated_regions(fdc, p);
4429 return -EBUSY;
4430 }
4431 }
4432 return 0;
4433}
4434
4435static void floppy_release_regions(int fdc)
4436{
4437 floppy_release_allocated_regions(fdc, ARRAY_END(io_regions));
4438}
4439
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440static int floppy_grab_irq_and_dma(void)
4441{
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004442 if (atomic_inc_return(&usage_count) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 return 0;
Ingo Molnar6dc659d2006-03-26 01:36:54 -08004444
4445 /*
4446 * We might have scheduled a free_irq(), wait it to
4447 * drain first:
4448 */
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004449 flush_workqueue(floppy_wq);
Ingo Molnar6dc659d2006-03-26 01:36:54 -08004450
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 if (fd_request_irq()) {
4452 DPRINT("Unable to grab IRQ%d for the floppy driver\n",
4453 FLOPPY_IRQ);
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004454 atomic_dec(&usage_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 return -1;
4456 }
4457 if (fd_request_dma()) {
4458 DPRINT("Unable to grab DMA%d for the floppy driver\n",
4459 FLOPPY_DMA);
Jan Beulich2e9c47c2007-10-16 23:27:32 -07004460 if (can_use_virtual_dma & 2)
4461 use_virtual_dma = can_use_virtual_dma = 1;
4462 if (!(can_use_virtual_dma & 1)) {
4463 fd_free_irq();
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004464 atomic_dec(&usage_count);
Jan Beulich2e9c47c2007-10-16 23:27:32 -07004465 return -1;
4466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 }
4468
4469 for (fdc = 0; fdc < N_FDC; fdc++) {
4470 if (FDCS->address != -1) {
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004471 if (floppy_request_regions(fdc))
4472 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 }
4474 }
4475 for (fdc = 0; fdc < N_FDC; fdc++) {
4476 if (FDCS->address != -1) {
4477 reset_fdc_info(1);
4478 fd_outb(FDCS->dor, FD_DOR);
4479 }
4480 }
4481 fdc = 0;
4482 set_dor(0, ~0, 8); /* avoid immediate interrupt */
4483
4484 for (fdc = 0; fdc < N_FDC; fdc++)
4485 if (FDCS->address != -1)
4486 fd_outb(FDCS->dor, FD_DOR);
4487 /*
Jesper Juhl06f748c2007-10-16 23:30:57 -07004488 * The driver will try and free resources and relies on us
4489 * to know if they were allocated or not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490 */
4491 fdc = 0;
4492 irqdma_allocated = 1;
4493 return 0;
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004494cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495 fd_free_irq();
4496 fd_free_dma();
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004497 while (--fdc >= 0)
4498 floppy_release_regions(fdc);
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004499 atomic_dec(&usage_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 return -1;
4501}
4502
4503static void floppy_release_irq_and_dma(void)
4504{
4505 int old_fdc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506#ifndef __sparc__
4507 int drive;
4508#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 long tmpsize;
4510 unsigned long tmpaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004512 if (!atomic_dec_and_test(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513 return;
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004514
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 if (irqdma_allocated) {
4516 fd_disable_dma();
4517 fd_free_dma();
Ingo Molnar3e541a42006-07-03 00:24:23 -07004518 fd_free_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 irqdma_allocated = 0;
4520 }
4521 set_dor(0, ~0, 8);
4522#if N_FDC > 1
4523 set_dor(1, ~8, 0);
4524#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525
4526 if (floppy_track_buffer && max_buffer_sectors) {
4527 tmpsize = max_buffer_sectors * 1024;
4528 tmpaddr = (unsigned long)floppy_track_buffer;
4529 floppy_track_buffer = NULL;
4530 max_buffer_sectors = 0;
4531 buffer_min = buffer_max = -1;
4532 fd_dma_mem_free(tmpaddr, tmpsize);
4533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534#ifndef __sparc__
4535 for (drive = 0; drive < N_FDC * 4; drive++)
4536 if (timer_pending(motor_off_timer + drive))
Joe Perchesb46df352010-03-10 15:20:46 -08004537 pr_info("motor off timer %d still active\n", drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538#endif
4539
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004540 if (delayed_work_pending(&fd_timeout))
Joe Perchesb46df352010-03-10 15:20:46 -08004541 pr_info("floppy timer still active:%s\n", timeout_message);
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004542 if (delayed_work_pending(&fd_timer))
Joe Perchesb46df352010-03-10 15:20:46 -08004543 pr_info("auxiliary floppy timer still active\n");
David Howells365970a2006-11-22 14:54:49 +00004544 if (work_pending(&floppy_work))
Joe Perchesb46df352010-03-10 15:20:46 -08004545 pr_info("work still pending\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 old_fdc = fdc;
4547 for (fdc = 0; fdc < N_FDC; fdc++)
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004548 if (FDCS->address != -1)
4549 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 fdc = old_fdc;
4551}
4552
4553#ifdef MODULE
4554
4555static char *floppy;
4556
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557static void __init parse_floppy_cfg_string(char *cfg)
4558{
4559 char *ptr;
4560
4561 while (*cfg) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004562 ptr = cfg;
4563 while (*cfg && *cfg != ' ' && *cfg != '\t')
4564 cfg++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 if (*cfg) {
4566 *cfg = '\0';
4567 cfg++;
4568 }
4569 if (*ptr)
4570 floppy_setup(ptr);
4571 }
4572}
4573
Jon Schindler7afea3b2008-04-29 00:59:21 -07004574static int __init floppy_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575{
4576 if (floppy)
4577 parse_floppy_cfg_string(floppy);
4578 return floppy_init();
4579}
Jon Schindler7afea3b2008-04-29 00:59:21 -07004580module_init(floppy_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581
Jon Schindler7afea3b2008-04-29 00:59:21 -07004582static void __exit floppy_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583{
4584 int drive;
4585
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
4587 unregister_blkdev(FLOPPY_MAJOR, "fd");
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004588 platform_driver_unregister(&floppy_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589
Jiri Kosinaeac7cc52012-11-06 11:47:13 +01004590 destroy_workqueue(floppy_wq);
4591
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 for (drive = 0; drive < N_DRIVE; drive++) {
4593 del_timer_sync(&motor_off_timer[drive]);
4594
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004595 if (floppy_available(drive)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 del_gendisk(disks[drive]);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004597 platform_device_unregister(&floppy_device[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 }
Jens Axboe48821182010-09-22 09:32:36 +02004599 blk_cleanup_queue(disks[drive]->queue);
Vivek Goyal4609dff2012-02-08 20:03:39 +01004600
4601 /*
4602 * These disks have not called add_disk(). Don't put down
4603 * queue reference in put_disk().
4604 */
4605 if (!(allowed_drive_mask & (1 << drive)) ||
4606 fdc_state[FDC(drive)].version == FDC_NONE)
4607 disks[drive]->queue = NULL;
4608
Vivek Goyald017bf62010-11-06 08:16:05 -04004609 put_disk(disks[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004612 cancel_delayed_work_sync(&fd_timeout);
4613 cancel_delayed_work_sync(&fd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004615 if (atomic_read(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 floppy_release_irq_and_dma();
4617
4618 /* eject disk, if any */
4619 fd_eject(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620}
Joe Perches48c8cee2010-03-10 15:20:45 -08004621
Jon Schindler7afea3b2008-04-29 00:59:21 -07004622module_exit(floppy_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623
4624module_param(floppy, charp, 0);
4625module_param(FLOPPY_IRQ, int, 0);
4626module_param(FLOPPY_DMA, int, 0);
4627MODULE_AUTHOR("Alain L. Knaff");
4628MODULE_SUPPORTED_DEVICE("fd");
4629MODULE_LICENSE("GPL");
4630
Scott James Remnant83f9ef42009-04-02 16:56:47 -07004631/* This doesn't actually get used other than for module information */
4632static const struct pnp_device_id floppy_pnpids[] = {
Joe Perches48c8cee2010-03-10 15:20:45 -08004633 {"PNP0700", 0},
4634 {}
Scott James Remnant83f9ef42009-04-02 16:56:47 -07004635};
Joe Perches48c8cee2010-03-10 15:20:45 -08004636
Scott James Remnant83f9ef42009-04-02 16:56:47 -07004637MODULE_DEVICE_TABLE(pnp, floppy_pnpids);
4638
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639#else
4640
4641__setup("floppy=", floppy_setup);
4642module_init(floppy_init)
4643#endif
4644
4645MODULE_ALIAS_BLOCKDEV_MAJOR(FLOPPY_MAJOR);