blob: a54183935aa1a7562e328e34be5de94ced530fb2 [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>
Al Viro229b53c2017-06-27 15:47:56 -0400195#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197/*
198 * PS/2 floppies have much slower step rates than regular floppies.
199 * It's been recommended that take about 1/4 of the default speed
200 * in some more extreme cases.
201 */
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200202static DEFINE_MUTEX(floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static int slow_floppy;
204
205#include <asm/dma.h>
206#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208static int FLOPPY_IRQ = 6;
209static int FLOPPY_DMA = 2;
210static int can_use_virtual_dma = 2;
211/* =======
212 * can use virtual DMA:
213 * 0 = use of virtual DMA disallowed by config
214 * 1 = use of virtual DMA prescribed by config
215 * 2 = no virtual DMA preference configured. By default try hard DMA,
216 * but fall back on virtual DMA when not enough memory available
217 */
218
219static int use_virtual_dma;
220/* =======
221 * use virtual DMA
222 * 0 using hard DMA
223 * 1 using virtual DMA
224 * This variable is set to virtual when a DMA mem problem arises, and
225 * reset back in floppy_grab_irq_and_dma.
226 * It is not safe to reset it in other circumstances, because the floppy
227 * driver may have several buffers in use at once, and we do currently not
228 * record each buffers capabilities
229 */
230
231static DEFINE_SPINLOCK(floppy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233static unsigned short virtual_dma_port = 0x3f0;
David Howells7d12e782006-10-05 14:55:46 +0100234irqreturn_t floppy_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235static int set_dor(int fdc, char mask, char data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237#define K_64 0x10000 /* 64KB */
238
239/* the following is the mask of allowed drives. By default units 2 and
240 * 3 of both floppy controllers are disabled, because switching on the
241 * motor of these drives causes system hangs on some PCI computers. drive
242 * 0 is the low bit (0x1), and drive 7 is the high bit (0x80). Bits are on if
243 * a drive is allowed.
244 *
245 * NOTE: This must come before we include the arch floppy header because
246 * some ports reference this variable from there. -DaveM
247 */
248
249static int allowed_drive_mask = 0x33;
250
251#include <asm/floppy.h>
252
253static int irqdma_allocated;
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255#include <linux/blkdev.h>
256#include <linux/blkpg.h>
257#include <linux/cdrom.h> /* for the compatibility eject ioctl */
258#include <linux/completion.h>
259
260static struct request *current_req;
Joe Perches48c8cee2010-03-10 15:20:45 -0800261static void do_fd_request(struct request_queue *q);
Jens Axboe48821182010-09-22 09:32:36 +0200262static int set_next_request(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264#ifndef fd_get_dma_residue
265#define fd_get_dma_residue() get_dma_residue(FLOPPY_DMA)
266#endif
267
268/* Dma Memory related stuff */
269
270#ifndef fd_dma_mem_free
271#define fd_dma_mem_free(addr, size) free_pages(addr, get_order(size))
272#endif
273
274#ifndef fd_dma_mem_alloc
Joe Perches48c8cee2010-03-10 15:20:45 -0800275#define fd_dma_mem_alloc(size) __get_dma_pages(GFP_KERNEL, get_order(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276#endif
277
Christoph Hellwigacfef4f2017-07-13 16:12:05 +0200278#ifndef fd_cacheflush
279#define fd_cacheflush(addr, size) /* nothing... */
280#endif
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282static inline void fallback_on_nodma_alloc(char **addr, size_t l)
283{
284#ifdef FLOPPY_CAN_FALLBACK_ON_NODMA
285 if (*addr)
286 return; /* we have the memory */
287 if (can_use_virtual_dma != 2)
288 return; /* no fallback allowed */
Joe Perchesb46df352010-03-10 15:20:46 -0800289 pr_info("DMA memory shortage. Temporarily falling back on virtual DMA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 *addr = (char *)nodma_mem_alloc(l);
291#else
292 return;
293#endif
294}
295
296/* End dma memory related stuff */
297
298static unsigned long fake_change;
Joe Perches29f1c782010-03-10 15:21:00 -0800299static bool initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Joe Perches48c8cee2010-03-10 15:20:45 -0800301#define ITYPE(x) (((x) >> 2) & 0x1f)
302#define TOMINOR(x) ((x & 3) | ((x & 4) << 5))
303#define UNIT(x) ((x) & 0x03) /* drive on fdc */
304#define FDC(x) (((x) & 0x04) >> 2) /* fdc of drive */
Jesper Juhl06f748c2007-10-16 23:30:57 -0700305 /* reverse mapping from unit and fdc to drive */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306#define REVDRIVE(fdc, unit) ((unit) + ((fdc) << 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Joe Perches48c8cee2010-03-10 15:20:45 -0800308#define DP (&drive_params[current_drive])
309#define DRS (&drive_state[current_drive])
310#define DRWE (&write_errors[current_drive])
311#define FDCS (&fdc_state[fdc])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Joe Perches48c8cee2010-03-10 15:20:45 -0800313#define UDP (&drive_params[drive])
314#define UDRS (&drive_state[drive])
315#define UDRWE (&write_errors[drive])
316#define UFDCS (&fdc_state[FDC(drive)])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Joe Perches48c8cee2010-03-10 15:20:45 -0800318#define PH_HEAD(floppy, head) (((((floppy)->stretch & 2) >> 1) ^ head) << 2)
319#define STRETCH(floppy) ((floppy)->stretch & FD_STRETCH)
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321/* read/write */
Joe Perches48c8cee2010-03-10 15:20:45 -0800322#define COMMAND (raw_cmd->cmd[0])
323#define DR_SELECT (raw_cmd->cmd[1])
324#define TRACK (raw_cmd->cmd[2])
325#define HEAD (raw_cmd->cmd[3])
326#define SECTOR (raw_cmd->cmd[4])
327#define SIZECODE (raw_cmd->cmd[5])
328#define SECT_PER_TRACK (raw_cmd->cmd[6])
329#define GAP (raw_cmd->cmd[7])
330#define SIZECODE2 (raw_cmd->cmd[8])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331#define NR_RW 9
332
333/* format */
Joe Perches48c8cee2010-03-10 15:20:45 -0800334#define F_SIZECODE (raw_cmd->cmd[2])
335#define F_SECT_PER_TRACK (raw_cmd->cmd[3])
336#define F_GAP (raw_cmd->cmd[4])
337#define F_FILL (raw_cmd->cmd[5])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338#define NR_F 6
339
340/*
Joe Perches48c8cee2010-03-10 15:20:45 -0800341 * Maximum disk size (in kilobytes).
342 * This default is used whenever the current disk size is unknown.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 * [Now it is rather a minimum]
344 */
345#define MAX_DISK_SIZE 4 /* 3984 */
346
347/*
348 * globals used by 'result()'
349 */
350#define MAX_REPLIES 16
351static unsigned char reply_buffer[MAX_REPLIES];
Joe Perches891eda82010-03-10 15:21:05 -0800352static int inr; /* size of reply buffer, when called from interrupt */
Joe Perches48c8cee2010-03-10 15:20:45 -0800353#define ST0 (reply_buffer[0])
354#define ST1 (reply_buffer[1])
355#define ST2 (reply_buffer[2])
356#define ST3 (reply_buffer[0]) /* result of GETSTATUS */
357#define R_TRACK (reply_buffer[3])
358#define R_HEAD (reply_buffer[4])
359#define R_SECTOR (reply_buffer[5])
360#define R_SIZECODE (reply_buffer[6])
361
362#define SEL_DLY (2 * HZ / 100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364/*
365 * this struct defines the different floppy drive types.
366 */
367static struct {
368 struct floppy_drive_params params;
369 const char *name; /* name printed while booting */
370} default_drive_params[] = {
371/* NOTE: the time values in jiffies should be in msec!
372 CMOS drive type
373 | Maximum data rate supported by drive type
374 | | Head load time, msec
375 | | | Head unload time, msec (not used)
376 | | | | Step rate interval, usec
377 | | | | | Time needed for spinup time (jiffies)
378 | | | | | | Timeout for spinning down (jiffies)
379 | | | | | | | Spindown offset (where disk stops)
380 | | | | | | | | Select delay
381 | | | | | | | | | RPS
382 | | | | | | | | | | Max number of tracks
383 | | | | | | | | | | | Interrupt timeout
384 | | | | | | | | | | | | Max nonintlv. sectors
385 | | | | | | | | | | | | | -Max Errors- flags */
386{{0, 500, 16, 16, 8000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 80, 3*HZ, 20, {3,1,2,0,2}, 0,
387 0, { 7, 4, 8, 2, 1, 5, 3,10}, 3*HZ/2, 0 }, "unknown" },
388
389{{1, 300, 16, 16, 8000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 40, 3*HZ, 17, {3,1,2,0,2}, 0,
390 0, { 1, 0, 0, 0, 0, 0, 0, 0}, 3*HZ/2, 1 }, "360K PC" }, /*5 1/4 360 KB PC*/
391
392{{2, 500, 16, 16, 6000, 4*HZ/10, 3*HZ, 14, SEL_DLY, 6, 83, 3*HZ, 17, {3,1,2,0,2}, 0,
393 0, { 2, 5, 6,23,10,20,12, 0}, 3*HZ/2, 2 }, "1.2M" }, /*5 1/4 HD AT*/
394
395{{3, 250, 16, 16, 3000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 83, 3*HZ, 20, {3,1,2,0,2}, 0,
396 0, { 4,22,21,30, 3, 0, 0, 0}, 3*HZ/2, 4 }, "720k" }, /*3 1/2 DD*/
397
398{{4, 500, 16, 16, 4000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 20, {3,1,2,0,2}, 0,
399 0, { 7, 4,25,22,31,21,29,11}, 3*HZ/2, 7 }, "1.44M" }, /*3 1/2 HD*/
400
401{{5, 1000, 15, 8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 40, {3,1,2,0,2}, 0,
402 0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M AMI BIOS" }, /*3 1/2 ED*/
403
404{{6, 1000, 15, 8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 40, {3,1,2,0,2}, 0,
405 0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M" } /*3 1/2 ED*/
406/* | --autodetected formats--- | | |
407 * read_track | | Name printed when booting
408 * | Native format
409 * Frequency of disk change checks */
410};
411
412static struct floppy_drive_params drive_params[N_DRIVE];
413static struct floppy_drive_struct drive_state[N_DRIVE];
414static struct floppy_write_errors write_errors[N_DRIVE];
415static struct timer_list motor_off_timer[N_DRIVE];
416static struct gendisk *disks[N_DRIVE];
417static struct block_device *opened_bdev[N_DRIVE];
Jes Sorensenb1c82b52006-03-23 03:00:26 -0800418static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419static struct floppy_raw_cmd *raw_cmd, default_raw_cmd;
Jens Axboe48821182010-09-22 09:32:36 +0200420static int fdc_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422/*
423 * This struct defines the different floppy types.
424 *
425 * Bit 0 of 'stretch' tells if the tracks need to be doubled for some
426 * types (e.g. 360kB diskette in 1.2MB drive, etc.). Bit 1 of 'stretch'
427 * tells if the disk is in Commodore 1581 format, which means side 0 sectors
428 * are located on side 1 of the disk but with a side 0 ID, and vice-versa.
429 * This is the same as the Sharp MZ-80 5.25" CP/M disk format, except that the
430 * 1581's logical side 0 is on physical side 1, whereas the Sharp's logical
431 * side 0 is on physical side 0 (but with the misnamed sector IDs).
432 * 'stretch' should probably be renamed to something more general, like
Keith Wansbrough9e491842008-09-22 14:57:17 -0700433 * 'options'.
434 *
435 * Bits 2 through 9 of 'stretch' tell the number of the first sector.
436 * The LSB (bit 2) is flipped. For most disks, the first sector
437 * is 1 (represented by 0x00<<2). For some CP/M and music sampler
438 * disks (such as Ensoniq EPS 16plus) it is 0 (represented as 0x01<<2).
439 * For Amstrad CPC disks it is 0xC1 (represented as 0xC0<<2).
440 *
441 * Other parameters should be self-explanatory (see also setfdprm(8)).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 */
443/*
444 Size
445 | Sectors per track
446 | | Head
447 | | | Tracks
448 | | | | Stretch
449 | | | | | Gap 1 size
450 | | | | | | Data rate, | 0x40 for perp
451 | | | | | | | Spec1 (stepping rate, head unload
452 | | | | | | | | /fmt gap (gap2) */
453static struct floppy_struct floppy_type[32] = {
454 { 0, 0,0, 0,0,0x00,0x00,0x00,0x00,NULL }, /* 0 no testing */
455 { 720, 9,2,40,0,0x2A,0x02,0xDF,0x50,"d360" }, /* 1 360KB PC */
456 { 2400,15,2,80,0,0x1B,0x00,0xDF,0x54,"h1200" }, /* 2 1.2MB AT */
457 { 720, 9,1,80,0,0x2A,0x02,0xDF,0x50,"D360" }, /* 3 360KB SS 3.5" */
458 { 1440, 9,2,80,0,0x2A,0x02,0xDF,0x50,"D720" }, /* 4 720KB 3.5" */
459 { 720, 9,2,40,1,0x23,0x01,0xDF,0x50,"h360" }, /* 5 360KB AT */
460 { 1440, 9,2,80,0,0x23,0x01,0xDF,0x50,"h720" }, /* 6 720KB AT */
461 { 2880,18,2,80,0,0x1B,0x00,0xCF,0x6C,"H1440" }, /* 7 1.44MB 3.5" */
462 { 5760,36,2,80,0,0x1B,0x43,0xAF,0x54,"E2880" }, /* 8 2.88MB 3.5" */
463 { 6240,39,2,80,0,0x1B,0x43,0xAF,0x28,"E3120" }, /* 9 3.12MB 3.5" */
464
465 { 2880,18,2,80,0,0x25,0x00,0xDF,0x02,"h1440" }, /* 10 1.44MB 5.25" */
466 { 3360,21,2,80,0,0x1C,0x00,0xCF,0x0C,"H1680" }, /* 11 1.68MB 3.5" */
467 { 820,10,2,41,1,0x25,0x01,0xDF,0x2E,"h410" }, /* 12 410KB 5.25" */
468 { 1640,10,2,82,0,0x25,0x02,0xDF,0x2E,"H820" }, /* 13 820KB 3.5" */
469 { 2952,18,2,82,0,0x25,0x00,0xDF,0x02,"h1476" }, /* 14 1.48MB 5.25" */
470 { 3444,21,2,82,0,0x25,0x00,0xDF,0x0C,"H1722" }, /* 15 1.72MB 3.5" */
471 { 840,10,2,42,1,0x25,0x01,0xDF,0x2E,"h420" }, /* 16 420KB 5.25" */
472 { 1660,10,2,83,0,0x25,0x02,0xDF,0x2E,"H830" }, /* 17 830KB 3.5" */
473 { 2988,18,2,83,0,0x25,0x00,0xDF,0x02,"h1494" }, /* 18 1.49MB 5.25" */
474 { 3486,21,2,83,0,0x25,0x00,0xDF,0x0C,"H1743" }, /* 19 1.74 MB 3.5" */
475
476 { 1760,11,2,80,0,0x1C,0x09,0xCF,0x00,"h880" }, /* 20 880KB 5.25" */
477 { 2080,13,2,80,0,0x1C,0x01,0xCF,0x00,"D1040" }, /* 21 1.04MB 3.5" */
478 { 2240,14,2,80,0,0x1C,0x19,0xCF,0x00,"D1120" }, /* 22 1.12MB 3.5" */
479 { 3200,20,2,80,0,0x1C,0x20,0xCF,0x2C,"h1600" }, /* 23 1.6MB 5.25" */
480 { 3520,22,2,80,0,0x1C,0x08,0xCF,0x2e,"H1760" }, /* 24 1.76MB 3.5" */
481 { 3840,24,2,80,0,0x1C,0x20,0xCF,0x00,"H1920" }, /* 25 1.92MB 3.5" */
482 { 6400,40,2,80,0,0x25,0x5B,0xCF,0x00,"E3200" }, /* 26 3.20MB 3.5" */
483 { 7040,44,2,80,0,0x25,0x5B,0xCF,0x00,"E3520" }, /* 27 3.52MB 3.5" */
484 { 7680,48,2,80,0,0x25,0x63,0xCF,0x00,"E3840" }, /* 28 3.84MB 3.5" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 { 3680,23,2,80,0,0x1C,0x10,0xCF,0x00,"H1840" }, /* 29 1.84MB 3.5" */
Jesper Juhl06f748c2007-10-16 23:30:57 -0700486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 { 1600,10,2,80,0,0x25,0x02,0xDF,0x2E,"D800" }, /* 30 800KB 3.5" */
488 { 3200,20,2,80,0,0x1C,0x00,0xCF,0x2C,"H1600" }, /* 31 1.6MB 3.5" */
489};
490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491#define SECTSIZE (_FD_SECTSIZE(*floppy))
492
493/* Auto-detection: Disk type used until the next media change occurs. */
494static struct floppy_struct *current_type[N_DRIVE];
495
496/*
497 * User-provided type information. current_type points to
498 * the respective entry of this array.
499 */
500static struct floppy_struct user_params[N_DRIVE];
501
502static sector_t floppy_sizes[256];
503
Hannes Reinecke94fd0db2005-07-15 10:09:25 +0200504static char floppy_device_name[] = "floppy";
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506/*
507 * The driver is trying to determine the correct media format
508 * while probing is set. rw_interrupt() clears it after a
509 * successful access.
510 */
511static int probing;
512
513/* Synchronization of FDC access. */
Joe Perches48c8cee2010-03-10 15:20:45 -0800514#define FD_COMMAND_NONE -1
515#define FD_COMMAND_ERROR 2
516#define FD_COMMAND_OKAY 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518static volatile int command_status = FD_COMMAND_NONE;
519static unsigned long fdc_busy;
520static DECLARE_WAIT_QUEUE_HEAD(fdc_wait);
521static DECLARE_WAIT_QUEUE_HEAD(command_done);
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/* Errors during formatting are counted here. */
524static int format_errors;
525
526/* Format request descriptor. */
527static struct format_descr format_req;
528
529/*
530 * Rate is 0 for 500kb/s, 1 for 300kbps, 2 for 250kbps
531 * Spec1 is 0xSH, where S is stepping rate (F=1ms, E=2ms, D=3ms etc),
532 * H is head unload time (1=16ms, 2=32ms, etc)
533 */
534
535/*
536 * Track buffer
537 * Because these are written to by the DMA controller, they must
538 * not contain a 64k byte boundary crossing, or data will be
539 * corrupted/lost.
540 */
541static char *floppy_track_buffer;
542static int max_buffer_sectors;
543
544static int *errors;
Jesper Juhl06f748c2007-10-16 23:30:57 -0700545typedef void (*done_f)(int);
Stephen Hemminger3b06c212010-07-20 20:09:00 -0600546static const struct cont_t {
Joe Perches48c8cee2010-03-10 15:20:45 -0800547 void (*interrupt)(void);
548 /* this is called after the interrupt of the
549 * main command */
Jesper Juhl06f748c2007-10-16 23:30:57 -0700550 void (*redo)(void); /* this is called to retry the operation */
551 void (*error)(void); /* this is called to tally an error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 done_f done; /* this is called to say if the operation has
553 * succeeded/failed */
554} *cont;
555
556static void floppy_ready(void);
557static void floppy_start(void);
558static void process_fd_request(void);
559static void recalibrate_floppy(void);
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200560static void floppy_shutdown(struct work_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Philippe De Muyter5a74db02009-02-18 14:48:36 -0800562static int floppy_request_regions(int);
563static void floppy_release_regions(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564static int floppy_grab_irq_and_dma(void);
565static void floppy_release_irq_and_dma(void);
566
567/*
568 * The "reset" variable should be tested whenever an interrupt is scheduled,
569 * after the commands have been sent. This is to ensure that the driver doesn't
570 * get wedged when the interrupt doesn't come because of a failed command.
571 * reset doesn't need to be tested before sending commands, because
572 * output_byte is automatically disabled when reset is set.
573 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574static void reset_fdc(void);
575
576/*
577 * These are global variables, as that's the easiest way to give
578 * information to interrupts. They are the data used for the current
579 * request.
580 */
Joe Perches48c8cee2010-03-10 15:20:45 -0800581#define NO_TRACK -1
582#define NEED_1_RECAL -2
583#define NEED_2_RECAL -3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Stephen Hemminger575cfc62010-06-15 13:21:11 +0200585static atomic_t usage_count = ATOMIC_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587/* buffer related variables */
588static int buffer_track = -1;
589static int buffer_drive = -1;
590static int buffer_min = -1;
591static int buffer_max = -1;
592
593/* fdc related variables, should end up in a struct */
594static struct floppy_fdc_state fdc_state[N_FDC];
595static int fdc; /* current fdc */
596
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200597static struct workqueue_struct *floppy_wq;
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599static struct floppy_struct *_floppy = floppy_type;
600static unsigned char current_drive;
601static long current_count_sectors;
602static unsigned char fsector_t; /* sector in track */
603static unsigned char in_sector_offset; /* offset within physical sector,
604 * expressed in units of 512 bytes */
605
Pekka Enberg2b51dca2010-11-08 14:44:34 +0100606static inline bool drive_no_geom(int drive)
607{
608 return !current_type[drive] && !ITYPE(UDRS->fd_device);
609}
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611#ifndef fd_eject
612static inline int fd_eject(int drive)
613{
614 return -EINVAL;
615}
616#endif
617
618/*
619 * Debugging
620 * =========
621 */
622#ifdef DEBUGT
623static long unsigned debugtimer;
624
625static inline void set_debugt(void)
626{
627 debugtimer = jiffies;
628}
629
Joe Perchesded28632010-03-10 15:21:09 -0800630static inline void debugt(const char *func, const char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 if (DP->flags & DEBUGT)
Joe Perchesded28632010-03-10 15:21:09 -0800633 pr_info("%s:%s dtime=%lu\n", func, msg, jiffies - debugtimer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634}
635#else
636static inline void set_debugt(void) { }
Joe Perchesded28632010-03-10 15:21:09 -0800637static inline void debugt(const char *func, const char *msg) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638#endif /* DEBUGT */
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200641static DECLARE_DELAYED_WORK(fd_timeout, floppy_shutdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642static const char *timeout_message;
643
Joe Perches275176b2010-03-10 15:21:06 -0800644static void is_alive(const char *func, const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
646 /* this routine checks whether the floppy driver is "alive" */
Joe Perchesc5297302010-03-10 15:20:58 -0800647 if (test_bit(0, &fdc_busy) && command_status < 2 &&
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200648 !delayed_work_pending(&fd_timeout)) {
Joe Perches275176b2010-03-10 15:21:06 -0800649 DPRINT("%s: timeout handler died. %s\n", func, message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
Joe Perches48c8cee2010-03-10 15:20:45 -0800653static void (*do_floppy)(void) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655#define OLOGSIZE 20
656
Joe Perches48c8cee2010-03-10 15:20:45 -0800657static void (*lasthandler)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658static unsigned long interruptjiffies;
659static unsigned long resultjiffies;
660static int resultsize;
661static unsigned long lastredo;
662
663static struct output_log {
664 unsigned char data;
665 unsigned char status;
666 unsigned long jiffies;
667} output_log[OLOGSIZE];
668
669static int output_log_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671#define current_reqD -1
672#define MAXTIMEOUT -2
673
Joe Perches73507e62010-03-10 15:21:03 -0800674static void __reschedule_timeout(int drive, const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200676 unsigned long delay;
677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (drive == current_reqD)
679 drive = current_drive;
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200680
Eric Sesterhenn / Snakebyte4acb3e22007-05-23 13:58:15 -0700681 if (drive < 0 || drive >= N_DRIVE) {
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200682 delay = 20UL * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 drive = 0;
684 } else
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200685 delay = UDP->timeout;
686
Tejun Heoe7c2f962012-08-21 13:18:24 -0700687 mod_delayed_work(floppy_wq, &fd_timeout, delay);
Joe Perchesa81ee542010-03-10 15:20:46 -0800688 if (UDP->flags & FD_DEBUG)
Joe Perches73507e62010-03-10 15:21:03 -0800689 DPRINT("reschedule timeout %s\n", message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 timeout_message = message;
691}
692
Joe Perches73507e62010-03-10 15:21:03 -0800693static void reschedule_timeout(int drive, const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 unsigned long flags;
696
697 spin_lock_irqsave(&floppy_lock, flags);
Joe Perches73507e62010-03-10 15:21:03 -0800698 __reschedule_timeout(drive, message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 spin_unlock_irqrestore(&floppy_lock, flags);
700}
701
Joe Perches48c8cee2010-03-10 15:20:45 -0800702#define INFBOUND(a, b) (a) = max_t(int, a, b)
703#define SUPBOUND(a, b) (a) = min_t(int, a, b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705/*
706 * Bottom half floppy driver.
707 * ==========================
708 *
709 * This part of the file contains the code talking directly to the hardware,
710 * and also the main service loop (seek-configure-spinup-command)
711 */
712
713/*
714 * disk change.
715 * This routine is responsible for maintaining the FD_DISK_CHANGE flag,
716 * and the last_checked date.
717 *
718 * last_checked is the date of the last check which showed 'no disk change'
719 * FD_DISK_CHANGE is set under two conditions:
720 * 1. The floppy has been changed after some i/o to that floppy already
721 * took place.
722 * 2. No floppy disk is in the drive. This is done in order to ensure that
723 * requests are quickly flushed in case there is no disk in the drive. It
724 * follows that FD_DISK_CHANGE can only be cleared if there is a disk in
725 * the drive.
726 *
727 * For 1., maxblock is observed. Maxblock is 0 if no i/o has taken place yet.
728 * For 2., FD_DISK_NEWCHANGE is watched. FD_DISK_NEWCHANGE is cleared on
729 * each seek. If a disk is present, the disk change line should also be
730 * cleared on each seek. Thus, if FD_DISK_NEWCHANGE is clear, but the disk
731 * change line is set, this means either that no disk is in the drive, or
732 * that it has been removed since the last seek.
733 *
734 * This means that we really have a third possibility too:
735 * The floppy has been changed after the last seek.
736 */
737
738static int disk_change(int drive)
739{
740 int fdc = FDC(drive);
Jesper Juhl06f748c2007-10-16 23:30:57 -0700741
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -0800742 if (time_before(jiffies, UDRS->select_date + UDP->select_delay))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 DPRINT("WARNING disk change called early\n");
744 if (!(FDCS->dor & (0x10 << UNIT(drive))) ||
745 (FDCS->dor & 3) != UNIT(drive) || fdc != FDC(drive)) {
746 DPRINT("probing disk change on unselected drive\n");
747 DPRINT("drive=%d fdc=%d dor=%x\n", drive, FDC(drive),
748 (unsigned int)FDCS->dor);
749 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Joe Perches87f530d2010-03-10 15:20:54 -0800751 debug_dcl(UDP->flags,
752 "checking disk change line for drive %d\n", drive);
753 debug_dcl(UDP->flags, "jiffies=%lu\n", jiffies);
754 debug_dcl(UDP->flags, "disk change line=%x\n", fd_inb(FD_DIR) & 0x80);
755 debug_dcl(UDP->flags, "flags=%lx\n", UDRS->flags);
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (UDP->flags & FD_BROKEN_DCL)
Joe Perchese0298532010-03-10 15:20:55 -0800758 return test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if ((fd_inb(FD_DIR) ^ UDP->flags) & 0x80) {
Joe Perchese0298532010-03-10 15:20:55 -0800760 set_bit(FD_VERIFY_BIT, &UDRS->flags);
761 /* verify write protection */
762
763 if (UDRS->maxblock) /* mark it changed */
764 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 /* invalidate its geometry */
767 if (UDRS->keep_data >= 0) {
768 if ((UDP->flags & FTD_MSG) &&
769 current_type[drive] != NULL)
Joe Perches891eda82010-03-10 15:21:05 -0800770 DPRINT("Disk type is undefined after disk change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 current_type[drive] = NULL;
772 floppy_sizes[TOMINOR(drive)] = MAX_DISK_SIZE << 1;
773 }
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return 1;
776 } else {
777 UDRS->last_checked = jiffies;
Joe Perchese0298532010-03-10 15:20:55 -0800778 clear_bit(FD_DISK_NEWCHANGE_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780 return 0;
781}
782
783static inline int is_selected(int dor, int unit)
784{
785 return ((dor & (0x10 << unit)) && (dor & 3) == unit);
786}
787
Joe Perches57584c52010-03-10 15:21:00 -0800788static bool is_ready_state(int status)
789{
790 int state = status & (STATUS_READY | STATUS_DIR | STATUS_DMA);
791 return state == STATUS_READY;
792}
793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794static int set_dor(int fdc, char mask, char data)
795{
Jesper Juhlfdc1ca82007-10-16 23:30:58 -0700796 unsigned char unit;
797 unsigned char drive;
798 unsigned char newdor;
799 unsigned char olddor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
801 if (FDCS->address == -1)
802 return -1;
803
804 olddor = FDCS->dor;
805 newdor = (olddor & mask) | data;
806 if (newdor != olddor) {
807 unit = olddor & 0x3;
808 if (is_selected(olddor, unit) && !is_selected(newdor, unit)) {
809 drive = REVDRIVE(fdc, unit);
Joe Perches87f530d2010-03-10 15:20:54 -0800810 debug_dcl(UDP->flags,
811 "calling disk change from set_dor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 disk_change(drive);
813 }
814 FDCS->dor = newdor;
815 fd_outb(newdor, FD_DOR);
816
817 unit = newdor & 0x3;
818 if (!is_selected(olddor, unit) && is_selected(newdor, unit)) {
819 drive = REVDRIVE(fdc, unit);
820 UDRS->select_date = jiffies;
821 }
822 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return olddor;
824}
825
826static void twaddle(void)
827{
828 if (DP->select_delay)
829 return;
830 fd_outb(FDCS->dor & ~(0x10 << UNIT(current_drive)), FD_DOR);
831 fd_outb(FDCS->dor, FD_DOR);
832 DRS->select_date = jiffies;
833}
834
Joe Perches57584c52010-03-10 15:21:00 -0800835/*
836 * Reset all driver information about the current fdc.
837 * This is needed after a reset, and after a raw command.
838 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839static void reset_fdc_info(int mode)
840{
841 int drive;
842
843 FDCS->spec1 = FDCS->spec2 = -1;
844 FDCS->need_configure = 1;
845 FDCS->perp_mode = 1;
846 FDCS->rawcmd = 0;
847 for (drive = 0; drive < N_DRIVE; drive++)
848 if (FDC(drive) == fdc && (mode || UDRS->track != NEED_1_RECAL))
849 UDRS->track = NEED_2_RECAL;
850}
851
852/* selects the fdc and drive, and enables the fdc's input/dma. */
853static void set_fdc(int drive)
854{
855 if (drive >= 0 && drive < N_DRIVE) {
856 fdc = FDC(drive);
857 current_drive = drive;
858 }
859 if (fdc != 1 && fdc != 0) {
Joe Perchesb46df352010-03-10 15:20:46 -0800860 pr_info("bad fdc value\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return;
862 }
863 set_dor(fdc, ~0, 8);
864#if N_FDC > 1
865 set_dor(1 - fdc, ~8, 0);
866#endif
867 if (FDCS->rawcmd == 2)
868 reset_fdc_info(1);
869 if (fd_inb(FD_STATUS) != STATUS_READY)
870 FDCS->reset = 1;
871}
872
873/* locks the driver */
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +0100874static int lock_fdc(int drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Stephen Hemmingerb862f262010-06-15 13:21:11 +0200876 if (WARN(atomic_read(&usage_count) == 0,
877 "Trying to lock fdc while usage count=0\n"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Stephen Hemmingerb862f262010-06-15 13:21:11 +0200880 if (wait_event_interruptible(fdc_wait, !test_and_set_bit(0, &fdc_busy)))
881 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 command_status = FD_COMMAND_NONE;
884
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200885 reschedule_timeout(drive, "lock fdc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 set_fdc(drive);
887 return 0;
888}
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890/* unlocks the driver */
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +0200891static void unlock_fdc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (!test_bit(0, &fdc_busy))
894 DPRINT("FDC access conflict!\n");
895
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200896 raw_cmd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 command_status = FD_COMMAND_NONE;
Tejun Heo136b5722012-08-21 13:18:24 -0700898 cancel_delayed_work(&fd_timeout);
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200899 do_floppy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 cont = NULL;
901 clear_bit(0, &fdc_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 wake_up(&fdc_wait);
903}
904
905/* switches the motor off after a given timeout */
906static void motor_off_callback(unsigned long nr)
907{
908 unsigned char mask = ~(0x10 << UNIT(nr));
909
910 set_dor(FDC(nr), mask, 0);
911}
912
913/* schedules motor off */
914static void floppy_off(unsigned int drive)
915{
916 unsigned long volatile delta;
Jesper Juhlfdc1ca82007-10-16 23:30:58 -0700917 int fdc = FDC(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 if (!(FDCS->dor & (0x10 << UNIT(drive))))
920 return;
921
922 del_timer(motor_off_timer + drive);
923
924 /* make spindle stop in a position which minimizes spinup time
925 * next time */
926 if (UDP->rps) {
927 delta = jiffies - UDRS->first_read_date + HZ -
928 UDP->spindown_offset;
929 delta = ((delta * UDP->rps) % HZ) / UDP->rps;
930 motor_off_timer[drive].expires =
931 jiffies + UDP->spindown - delta;
932 }
933 add_timer(motor_off_timer + drive);
934}
935
936/*
937 * cycle through all N_DRIVE floppy drives, for disk change testing.
938 * stopping at current drive. This is done before any long operation, to
939 * be sure to have up to date disk change information.
940 */
941static void scandrives(void)
942{
Jesper Juhl06f748c2007-10-16 23:30:57 -0700943 int i;
944 int drive;
945 int saved_drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 if (DP->select_delay)
948 return;
949
950 saved_drive = current_drive;
951 for (i = 0; i < N_DRIVE; i++) {
952 drive = (saved_drive + i + 1) % N_DRIVE;
953 if (UDRS->fd_ref == 0 || UDP->select_delay != 0)
954 continue; /* skip closed drives */
955 set_fdc(drive);
956 if (!(set_dor(fdc, ~3, UNIT(drive) | (0x10 << UNIT(drive))) &
957 (0x10 << UNIT(drive))))
958 /* switch the motor off again, if it was off to
959 * begin with */
960 set_dor(fdc, ~(0x10 << UNIT(drive)), 0);
961 }
962 set_fdc(saved_drive);
963}
964
965static void empty(void)
966{
967}
968
Tejun Heo75ddb382014-03-07 10:24:48 -0500969static void (*floppy_work_fn)(void);
970
971static void floppy_work_workfn(struct work_struct *work)
972{
973 floppy_work_fn();
974}
975
976static DECLARE_WORK(floppy_work, floppy_work_workfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Joe Perches48c8cee2010-03-10 15:20:45 -0800978static void schedule_bh(void (*handler)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200980 WARN_ON(work_pending(&floppy_work));
981
Tejun Heo75ddb382014-03-07 10:24:48 -0500982 floppy_work_fn = handler;
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200983 queue_work(floppy_wq, &floppy_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984}
985
Tejun Heo75ddb382014-03-07 10:24:48 -0500986static void (*fd_timer_fn)(void) = NULL;
987
988static void fd_timer_workfn(struct work_struct *work)
989{
990 fd_timer_fn();
991}
992
993static DECLARE_DELAYED_WORK(fd_timer, fd_timer_workfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995static void cancel_activity(void)
996{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 do_floppy = NULL;
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200998 cancel_delayed_work_sync(&fd_timer);
999 cancel_work_sync(&floppy_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
1002/* this function makes sure that the disk stays in the drive during the
1003 * transfer */
Tejun Heo75ddb382014-03-07 10:24:48 -05001004static void fd_watchdog(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Joe Perches87f530d2010-03-10 15:20:54 -08001006 debug_dcl(DP->flags, "calling disk change from watchdog\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 if (disk_change(current_drive)) {
1009 DPRINT("disk removed during i/o\n");
1010 cancel_activity();
1011 cont->done(0);
1012 reset_fdc();
1013 } else {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001014 cancel_delayed_work(&fd_timer);
Tejun Heo75ddb382014-03-07 10:24:48 -05001015 fd_timer_fn = fd_watchdog;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001016 queue_delayed_work(floppy_wq, &fd_timer, HZ / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018}
1019
1020static void main_command_interrupt(void)
1021{
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001022 cancel_delayed_work(&fd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 cont->interrupt();
1024}
1025
1026/* waits for a delay (spinup or select) to pass */
Tejun Heo75ddb382014-03-07 10:24:48 -05001027static int fd_wait_for_completion(unsigned long expires,
1028 void (*function)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
1030 if (FDCS->reset) {
1031 reset_fdc(); /* do the reset during sleep to win time
1032 * if we don't need to sleep, it's a good
1033 * occasion anyways */
1034 return 1;
1035 }
1036
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001037 if (time_before(jiffies, expires)) {
1038 cancel_delayed_work(&fd_timer);
Tejun Heo75ddb382014-03-07 10:24:48 -05001039 fd_timer_fn = function;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001040 queue_delayed_work(floppy_wq, &fd_timer, expires - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return 1;
1042 }
1043 return 0;
1044}
1045
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046static void setup_DMA(void)
1047{
1048 unsigned long f;
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (raw_cmd->length == 0) {
1051 int i;
1052
Joe Perchesb46df352010-03-10 15:20:46 -08001053 pr_info("zero dma transfer size:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 for (i = 0; i < raw_cmd->cmd_count; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001055 pr_cont("%x,", raw_cmd->cmd[i]);
1056 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 cont->done(0);
1058 FDCS->reset = 1;
1059 return;
1060 }
1061 if (((unsigned long)raw_cmd->kernel_data) % 512) {
Joe Perchesb46df352010-03-10 15:20:46 -08001062 pr_info("non aligned address: %p\n", raw_cmd->kernel_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 cont->done(0);
1064 FDCS->reset = 1;
1065 return;
1066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 f = claim_dma_lock();
1068 fd_disable_dma();
1069#ifdef fd_dma_setup
1070 if (fd_dma_setup(raw_cmd->kernel_data, raw_cmd->length,
1071 (raw_cmd->flags & FD_RAW_READ) ?
1072 DMA_MODE_READ : DMA_MODE_WRITE, FDCS->address) < 0) {
1073 release_dma_lock(f);
1074 cont->done(0);
1075 FDCS->reset = 1;
1076 return;
1077 }
1078 release_dma_lock(f);
1079#else
1080 fd_clear_dma_ff();
1081 fd_cacheflush(raw_cmd->kernel_data, raw_cmd->length);
1082 fd_set_dma_mode((raw_cmd->flags & FD_RAW_READ) ?
1083 DMA_MODE_READ : DMA_MODE_WRITE);
1084 fd_set_dma_addr(raw_cmd->kernel_data);
1085 fd_set_dma_count(raw_cmd->length);
1086 virtual_dma_port = FDCS->address;
1087 fd_enable_dma();
1088 release_dma_lock(f);
1089#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090}
1091
1092static void show_floppy(void);
1093
1094/* waits until the fdc becomes ready */
1095static int wait_til_ready(void)
1096{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001097 int status;
1098 int counter;
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (FDCS->reset)
1101 return -1;
1102 for (counter = 0; counter < 10000; counter++) {
1103 status = fd_inb(FD_STATUS);
1104 if (status & STATUS_READY)
1105 return status;
1106 }
Joe Perches29f1c782010-03-10 15:21:00 -08001107 if (initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 DPRINT("Getstatus times out (%x) on fdc %d\n", status, fdc);
1109 show_floppy();
1110 }
1111 FDCS->reset = 1;
1112 return -1;
1113}
1114
1115/* sends a command byte to the fdc */
1116static int output_byte(char byte)
1117{
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001118 int status = wait_til_ready();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001120 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 return -1;
Joe Perches57584c52010-03-10 15:21:00 -08001122
1123 if (is_ready_state(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 fd_outb(byte, FD_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 output_log[output_log_pos].data = byte;
1126 output_log[output_log_pos].status = status;
1127 output_log[output_log_pos].jiffies = jiffies;
1128 output_log_pos = (output_log_pos + 1) % OLOGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 return 0;
1130 }
1131 FDCS->reset = 1;
Joe Perches29f1c782010-03-10 15:21:00 -08001132 if (initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 DPRINT("Unable to send byte %x to FDC. Fdc=%x Status=%x\n",
1134 byte, fdc, status);
1135 show_floppy();
1136 }
1137 return -1;
1138}
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140/* gets the response from the fdc */
1141static int result(void)
1142{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001143 int i;
1144 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 for (i = 0; i < MAX_REPLIES; i++) {
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001147 status = wait_til_ready();
1148 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 break;
1150 status &= STATUS_DIR | STATUS_READY | STATUS_BUSY | STATUS_DMA;
1151 if ((status & ~STATUS_BUSY) == STATUS_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 resultjiffies = jiffies;
1153 resultsize = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 return i;
1155 }
1156 if (status == (STATUS_DIR | STATUS_READY | STATUS_BUSY))
1157 reply_buffer[i] = fd_inb(FD_DATA);
1158 else
1159 break;
1160 }
Joe Perches29f1c782010-03-10 15:21:00 -08001161 if (initialized) {
1162 DPRINT("get result error. Fdc=%d Last status=%x Read bytes=%d\n",
1163 fdc, status, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 show_floppy();
1165 }
1166 FDCS->reset = 1;
1167 return -1;
1168}
1169
1170#define MORE_OUTPUT -2
1171/* does the fdc need more output? */
1172static int need_more_output(void)
1173{
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001174 int status = wait_til_ready();
Jesper Juhl06f748c2007-10-16 23:30:57 -07001175
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001176 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return -1;
Joe Perches57584c52010-03-10 15:21:00 -08001178
1179 if (is_ready_state(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 return MORE_OUTPUT;
Joe Perches57584c52010-03-10 15:21:00 -08001181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return result();
1183}
1184
1185/* Set perpendicular mode as required, based on data rate, if supported.
1186 * 82077 Now tested. 1Mbps data rate only possible with 82077-1.
1187 */
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02001188static void perpendicular_mode(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
1190 unsigned char perp_mode;
1191
1192 if (raw_cmd->rate & 0x40) {
1193 switch (raw_cmd->rate & 3) {
1194 case 0:
1195 perp_mode = 2;
1196 break;
1197 case 3:
1198 perp_mode = 3;
1199 break;
1200 default:
1201 DPRINT("Invalid data rate for perpendicular mode!\n");
1202 cont->done(0);
Joe Perchesbb57f0c62010-03-10 15:20:50 -08001203 FDCS->reset = 1;
1204 /*
1205 * convenient way to return to
1206 * redo without too much hassle
1207 * (deep stack et al.)
1208 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 return;
1210 }
1211 } else
1212 perp_mode = 0;
1213
1214 if (FDCS->perp_mode == perp_mode)
1215 return;
1216 if (FDCS->version >= FDC_82077_ORIG) {
1217 output_byte(FD_PERPENDICULAR);
1218 output_byte(perp_mode);
1219 FDCS->perp_mode = perp_mode;
1220 } else if (perp_mode) {
1221 DPRINT("perpendicular mode not supported by this FDC.\n");
1222 }
1223} /* perpendicular_mode */
1224
1225static int fifo_depth = 0xa;
1226static int no_fifo;
1227
1228static int fdc_configure(void)
1229{
1230 /* Turn on FIFO */
1231 output_byte(FD_CONFIGURE);
1232 if (need_more_output() != MORE_OUTPUT)
1233 return 0;
1234 output_byte(0);
1235 output_byte(0x10 | (no_fifo & 0x20) | (fifo_depth & 0xf));
1236 output_byte(0); /* pre-compensation from track
1237 0 upwards */
1238 return 1;
1239}
1240
1241#define NOMINAL_DTR 500
1242
1243/* Issue a "SPECIFY" command to set the step rate time, head unload time,
1244 * head load time, and DMA disable flag to values needed by floppy.
1245 *
1246 * The value "dtr" is the data transfer rate in Kbps. It is needed
1247 * to account for the data rate-based scaling done by the 82072 and 82077
1248 * FDC types. This parameter is ignored for other types of FDCs (i.e.
1249 * 8272a).
1250 *
1251 * Note that changing the data transfer rate has a (probably deleterious)
1252 * effect on the parameters subject to scaling for 82072/82077 FDCs, so
1253 * fdc_specify is called again after each data transfer rate
1254 * change.
1255 *
1256 * srt: 1000 to 16000 in microseconds
1257 * hut: 16 to 240 milliseconds
1258 * hlt: 2 to 254 milliseconds
1259 *
1260 * These values are rounded up to the next highest available delay time.
1261 */
1262static void fdc_specify(void)
1263{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001264 unsigned char spec1;
1265 unsigned char spec2;
1266 unsigned long srt;
1267 unsigned long hlt;
1268 unsigned long hut;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 unsigned long dtr = NOMINAL_DTR;
1270 unsigned long scale_dtr = NOMINAL_DTR;
1271 int hlt_max_code = 0x7f;
1272 int hut_max_code = 0xf;
1273
1274 if (FDCS->need_configure && FDCS->version >= FDC_82072A) {
1275 fdc_configure();
1276 FDCS->need_configure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
1278
1279 switch (raw_cmd->rate & 0x03) {
1280 case 3:
1281 dtr = 1000;
1282 break;
1283 case 1:
1284 dtr = 300;
1285 if (FDCS->version >= FDC_82078) {
1286 /* chose the default rate table, not the one
1287 * where 1 = 2 Mbps */
1288 output_byte(FD_DRIVESPEC);
1289 if (need_more_output() == MORE_OUTPUT) {
1290 output_byte(UNIT(current_drive));
1291 output_byte(0xc0);
1292 }
1293 }
1294 break;
1295 case 2:
1296 dtr = 250;
1297 break;
1298 }
1299
1300 if (FDCS->version >= FDC_82072) {
1301 scale_dtr = dtr;
1302 hlt_max_code = 0x00; /* 0==256msec*dtr0/dtr (not linear!) */
1303 hut_max_code = 0x0; /* 0==256msec*dtr0/dtr (not linear!) */
1304 }
1305
1306 /* Convert step rate from microseconds to milliseconds and 4 bits */
Julia Lawall061837b2008-09-22 14:57:16 -07001307 srt = 16 - DIV_ROUND_UP(DP->srt * scale_dtr / 1000, NOMINAL_DTR);
Joe Perchesa81ee542010-03-10 15:20:46 -08001308 if (slow_floppy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 srt = srt / 4;
Joe Perchesa81ee542010-03-10 15:20:46 -08001310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 SUPBOUND(srt, 0xf);
1312 INFBOUND(srt, 0);
1313
Julia Lawall061837b2008-09-22 14:57:16 -07001314 hlt = DIV_ROUND_UP(DP->hlt * scale_dtr / 2, NOMINAL_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (hlt < 0x01)
1316 hlt = 0x01;
1317 else if (hlt > 0x7f)
1318 hlt = hlt_max_code;
1319
Julia Lawall061837b2008-09-22 14:57:16 -07001320 hut = DIV_ROUND_UP(DP->hut * scale_dtr / 16, NOMINAL_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (hut < 0x1)
1322 hut = 0x1;
1323 else if (hut > 0xf)
1324 hut = hut_max_code;
1325
1326 spec1 = (srt << 4) | hut;
1327 spec2 = (hlt << 1) | (use_virtual_dma & 1);
1328
1329 /* If these parameters did not change, just return with success */
1330 if (FDCS->spec1 != spec1 || FDCS->spec2 != spec2) {
1331 /* Go ahead and set spec1 and spec2 */
1332 output_byte(FD_SPECIFY);
1333 output_byte(FDCS->spec1 = spec1);
1334 output_byte(FDCS->spec2 = spec2);
1335 }
1336} /* fdc_specify */
1337
1338/* Set the FDC's data transfer rate on behalf of the specified drive.
1339 * NOTE: with 82072/82077 FDCs, changing the data rate requires a reissue
1340 * of the specify command (i.e. using the fdc_specify function).
1341 */
1342static int fdc_dtr(void)
1343{
1344 /* If data rate not already set to desired value, set it. */
1345 if ((raw_cmd->rate & 3) == FDCS->dtr)
1346 return 0;
1347
1348 /* Set dtr */
1349 fd_outb(raw_cmd->rate & 3, FD_DCR);
1350
1351 /* TODO: some FDC/drive combinations (C&T 82C711 with TEAC 1.2MB)
1352 * need a stabilization period of several milliseconds to be
1353 * enforced after data rate changes before R/W operations.
1354 * Pause 5 msec to avoid trouble. (Needs to be 2 jiffies)
1355 */
1356 FDCS->dtr = raw_cmd->rate & 3;
Tejun Heo75ddb382014-03-07 10:24:48 -05001357 return fd_wait_for_completion(jiffies + 2UL * HZ / 100, floppy_ready);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358} /* fdc_dtr */
1359
1360static void tell_sector(void)
1361{
Joe Perchesb46df352010-03-10 15:20:46 -08001362 pr_cont(": track %d, head %d, sector %d, size %d",
1363 R_TRACK, R_HEAD, R_SECTOR, R_SIZECODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364} /* tell_sector */
1365
Joe Perchesb46df352010-03-10 15:20:46 -08001366static void print_errors(void)
1367{
1368 DPRINT("");
1369 if (ST0 & ST0_ECE) {
1370 pr_cont("Recalibrate failed!");
1371 } else if (ST2 & ST2_CRC) {
1372 pr_cont("data CRC error");
1373 tell_sector();
1374 } else if (ST1 & ST1_CRC) {
1375 pr_cont("CRC error");
1376 tell_sector();
1377 } else if ((ST1 & (ST1_MAM | ST1_ND)) ||
1378 (ST2 & ST2_MAM)) {
1379 if (!probing) {
1380 pr_cont("sector not found");
1381 tell_sector();
1382 } else
1383 pr_cont("probe failed...");
1384 } else if (ST2 & ST2_WC) { /* seek error */
1385 pr_cont("wrong cylinder");
1386 } else if (ST2 & ST2_BC) { /* cylinder marked as bad */
1387 pr_cont("bad cylinder");
1388 } else {
1389 pr_cont("unknown error. ST[0..2] are: 0x%x 0x%x 0x%x",
1390 ST0, ST1, ST2);
1391 tell_sector();
1392 }
1393 pr_cont("\n");
1394}
1395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396/*
1397 * OK, this error interpreting routine is called after a
1398 * DMA read/write has succeeded
1399 * or failed, so we check the results, and copy any buffers.
1400 * hhb: Added better error reporting.
1401 * ak: Made this into a separate routine.
1402 */
1403static int interpret_errors(void)
1404{
1405 char bad;
1406
1407 if (inr != 7) {
Joe Perches891eda82010-03-10 15:21:05 -08001408 DPRINT("-- FDC reply error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 FDCS->reset = 1;
1410 return 1;
1411 }
1412
1413 /* check IC to find cause of interrupt */
1414 switch (ST0 & ST0_INTR) {
1415 case 0x40: /* error occurred during command execution */
1416 if (ST1 & ST1_EOC)
1417 return 0; /* occurs with pseudo-DMA */
1418 bad = 1;
1419 if (ST1 & ST1_WP) {
1420 DPRINT("Drive is write protected\n");
Joe Perchese0298532010-03-10 15:20:55 -08001421 clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 cont->done(0);
1423 bad = 2;
1424 } else if (ST1 & ST1_ND) {
Joe Perchese0298532010-03-10 15:20:55 -08001425 set_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 } else if (ST1 & ST1_OR) {
1427 if (DP->flags & FTD_MSG)
1428 DPRINT("Over/Underrun - retrying\n");
1429 bad = 0;
1430 } else if (*errors >= DP->max_errors.reporting) {
Joe Perchesb46df352010-03-10 15:20:46 -08001431 print_errors();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 }
1433 if (ST2 & ST2_WC || ST2 & ST2_BC)
1434 /* wrong cylinder => recal */
1435 DRS->track = NEED_2_RECAL;
1436 return bad;
1437 case 0x80: /* invalid command given */
1438 DPRINT("Invalid FDC command given!\n");
1439 cont->done(0);
1440 return 2;
1441 case 0xc0:
1442 DPRINT("Abnormal termination caused by polling\n");
1443 cont->error();
1444 return 2;
1445 default: /* (0) Normal command termination */
1446 return 0;
1447 }
1448}
1449
1450/*
1451 * This routine is called when everything should be correctly set up
1452 * for the transfer (i.e. floppy motor is on, the correct floppy is
1453 * selected, and the head is sitting on the right track).
1454 */
1455static void setup_rw_floppy(void)
1456{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001457 int i;
1458 int r;
1459 int flags;
1460 int dflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 unsigned long ready_date;
Tejun Heo75ddb382014-03-07 10:24:48 -05001462 void (*function)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 flags = raw_cmd->flags;
1465 if (flags & (FD_RAW_READ | FD_RAW_WRITE))
1466 flags |= FD_RAW_INTR;
1467
1468 if ((flags & FD_RAW_SPIN) && !(flags & FD_RAW_NO_MOTOR)) {
1469 ready_date = DRS->spinup_date + DP->spinup;
1470 /* If spinup will take a long time, rerun scandrives
1471 * again just before spinup completion. Beware that
1472 * after scandrives, we must again wait for selection.
1473 */
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -08001474 if (time_after(ready_date, jiffies + DP->select_delay)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 ready_date -= DP->select_delay;
Tejun Heo75ddb382014-03-07 10:24:48 -05001476 function = floppy_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 } else
Tejun Heo75ddb382014-03-07 10:24:48 -05001478 function = setup_rw_floppy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 /* wait until the floppy is spinning fast enough */
1481 if (fd_wait_for_completion(ready_date, function))
1482 return;
1483 }
1484 dflags = DRS->flags;
1485
1486 if ((flags & FD_RAW_READ) || (flags & FD_RAW_WRITE))
1487 setup_DMA();
1488
1489 if (flags & FD_RAW_INTR)
1490 do_floppy = main_command_interrupt;
1491
1492 r = 0;
1493 for (i = 0; i < raw_cmd->cmd_count; i++)
1494 r |= output_byte(raw_cmd->cmd[i]);
1495
Joe Perchesded28632010-03-10 15:21:09 -08001496 debugt(__func__, "rw_command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 if (r) {
1499 cont->error();
1500 reset_fdc();
1501 return;
1502 }
1503
1504 if (!(flags & FD_RAW_INTR)) {
1505 inr = result();
1506 cont->interrupt();
1507 } else if (flags & FD_RAW_NEED_DISK)
Tejun Heo75ddb382014-03-07 10:24:48 -05001508 fd_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
1511static int blind_seek;
1512
1513/*
1514 * This is the routine called after every seek (or recalibrate) interrupt
1515 * from the floppy controller.
1516 */
1517static void seek_interrupt(void)
1518{
Joe Perchesded28632010-03-10 15:21:09 -08001519 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 if (inr != 2 || (ST0 & 0xF8) != 0x20) {
1521 DPRINT("seek failed\n");
1522 DRS->track = NEED_2_RECAL;
1523 cont->error();
1524 cont->redo();
1525 return;
1526 }
1527 if (DRS->track >= 0 && DRS->track != ST1 && !blind_seek) {
Joe Perches87f530d2010-03-10 15:20:54 -08001528 debug_dcl(DP->flags,
1529 "clearing NEWCHANGE flag because of effective seek\n");
1530 debug_dcl(DP->flags, "jiffies=%lu\n", jiffies);
Joe Perchese0298532010-03-10 15:20:55 -08001531 clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
1532 /* effective seek */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 DRS->select_date = jiffies;
1534 }
1535 DRS->track = ST1;
1536 floppy_ready();
1537}
1538
1539static void check_wp(void)
1540{
Joe Perchese0298532010-03-10 15:20:55 -08001541 if (test_bit(FD_VERIFY_BIT, &DRS->flags)) {
1542 /* check write protection */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 output_byte(FD_GETSTATUS);
1544 output_byte(UNIT(current_drive));
1545 if (result() != 1) {
1546 FDCS->reset = 1;
1547 return;
1548 }
Joe Perchese0298532010-03-10 15:20:55 -08001549 clear_bit(FD_VERIFY_BIT, &DRS->flags);
1550 clear_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
Joe Perches87f530d2010-03-10 15:20:54 -08001551 debug_dcl(DP->flags,
1552 "checking whether disk is write protected\n");
1553 debug_dcl(DP->flags, "wp=%x\n", ST3 & 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 if (!(ST3 & 0x40))
Joe Perchese0298532010-03-10 15:20:55 -08001555 set_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 else
Joe Perchese0298532010-03-10 15:20:55 -08001557 clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
1559}
1560
1561static void seek_floppy(void)
1562{
1563 int track;
1564
1565 blind_seek = 0;
1566
Joe Perchesded28632010-03-10 15:21:09 -08001567 debug_dcl(DP->flags, "calling disk change from %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Joe Perchese0298532010-03-10 15:20:55 -08001569 if (!test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 disk_change(current_drive) && (raw_cmd->flags & FD_RAW_NEED_DISK)) {
1571 /* the media changed flag should be cleared after the seek.
1572 * If it isn't, this means that there is really no disk in
1573 * the drive.
1574 */
Joe Perchese0298532010-03-10 15:20:55 -08001575 set_bit(FD_DISK_CHANGED_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 cont->done(0);
1577 cont->redo();
1578 return;
1579 }
1580 if (DRS->track <= NEED_1_RECAL) {
1581 recalibrate_floppy();
1582 return;
Joe Perchese0298532010-03-10 15:20:55 -08001583 } else if (test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 (raw_cmd->flags & FD_RAW_NEED_DISK) &&
1585 (DRS->track <= NO_TRACK || DRS->track == raw_cmd->track)) {
1586 /* we seek to clear the media-changed condition. Does anybody
1587 * know a more elegant way, which works on all drives? */
1588 if (raw_cmd->track)
1589 track = raw_cmd->track - 1;
1590 else {
1591 if (DP->flags & FD_SILENT_DCL_CLEAR) {
1592 set_dor(fdc, ~(0x10 << UNIT(current_drive)), 0);
1593 blind_seek = 1;
1594 raw_cmd->flags |= FD_RAW_NEED_SEEK;
1595 }
1596 track = 1;
1597 }
1598 } else {
1599 check_wp();
1600 if (raw_cmd->track != DRS->track &&
1601 (raw_cmd->flags & FD_RAW_NEED_SEEK))
1602 track = raw_cmd->track;
1603 else {
1604 setup_rw_floppy();
1605 return;
1606 }
1607 }
1608
1609 do_floppy = seek_interrupt;
1610 output_byte(FD_SEEK);
1611 output_byte(UNIT(current_drive));
Joe Perches2300f902010-03-10 15:20:49 -08001612 if (output_byte(track) < 0) {
1613 reset_fdc();
1614 return;
1615 }
Joe Perchesded28632010-03-10 15:21:09 -08001616 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
1619static void recal_interrupt(void)
1620{
Joe Perchesded28632010-03-10 15:21:09 -08001621 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 if (inr != 2)
1623 FDCS->reset = 1;
1624 else if (ST0 & ST0_ECE) {
1625 switch (DRS->track) {
1626 case NEED_1_RECAL:
Joe Perchesded28632010-03-10 15:21:09 -08001627 debugt(__func__, "need 1 recal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 /* after a second recalibrate, we still haven't
1629 * reached track 0. Probably no drive. Raise an
1630 * error, as failing immediately might upset
1631 * computers possessed by the Devil :-) */
1632 cont->error();
1633 cont->redo();
1634 return;
1635 case NEED_2_RECAL:
Joe Perchesded28632010-03-10 15:21:09 -08001636 debugt(__func__, "need 2 recal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 /* If we already did a recalibrate,
1638 * and we are not at track 0, this
1639 * means we have moved. (The only way
1640 * not to move at recalibration is to
1641 * be already at track 0.) Clear the
1642 * new change flag */
Joe Perches87f530d2010-03-10 15:20:54 -08001643 debug_dcl(DP->flags,
1644 "clearing NEWCHANGE flag because of second recalibrate\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
Joe Perchese0298532010-03-10 15:20:55 -08001646 clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 DRS->select_date = jiffies;
1648 /* fall through */
1649 default:
Joe Perchesded28632010-03-10 15:21:09 -08001650 debugt(__func__, "default");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 /* Recalibrate moves the head by at
1652 * most 80 steps. If after one
1653 * recalibrate we don't have reached
1654 * track 0, this might mean that we
1655 * started beyond track 80. Try
1656 * again. */
1657 DRS->track = NEED_1_RECAL;
1658 break;
1659 }
1660 } else
1661 DRS->track = ST1;
1662 floppy_ready();
1663}
1664
1665static void print_result(char *message, int inr)
1666{
1667 int i;
1668
1669 DPRINT("%s ", message);
1670 if (inr >= 0)
1671 for (i = 0; i < inr; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001672 pr_cont("repl[%d]=%x ", i, reply_buffer[i]);
1673 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674}
1675
1676/* interrupt handler. Note that this can be called externally on the Sparc */
David Howells7d12e782006-10-05 14:55:46 +01001677irqreturn_t floppy_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 int do_print;
1680 unsigned long f;
Jesper Juhl06f748c2007-10-16 23:30:57 -07001681 void (*handler)(void) = do_floppy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 lasthandler = handler;
1684 interruptjiffies = jiffies;
1685
1686 f = claim_dma_lock();
1687 fd_disable_dma();
1688 release_dma_lock(f);
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 do_floppy = NULL;
1691 if (fdc >= N_FDC || FDCS->address == -1) {
1692 /* we don't even know which FDC is the culprit */
Joe Perchesb46df352010-03-10 15:20:46 -08001693 pr_info("DOR0=%x\n", fdc_state[0].dor);
1694 pr_info("floppy interrupt on bizarre fdc %d\n", fdc);
Joe Perches1ebddd82010-03-10 15:21:07 -08001695 pr_info("handler=%pf\n", handler);
Joe Perches275176b2010-03-10 15:21:06 -08001696 is_alive(__func__, "bizarre fdc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 return IRQ_NONE;
1698 }
1699
1700 FDCS->reset = 0;
1701 /* We have to clear the reset flag here, because apparently on boxes
1702 * with level triggered interrupts (PS/2, Sparc, ...), it is needed to
1703 * emit SENSEI's to clear the interrupt line. And FDCS->reset blocks the
1704 * emission of the SENSEI's.
1705 * It is OK to emit floppy commands because we are in an interrupt
1706 * handler here, and thus we have to fear no interference of other
1707 * activity.
1708 */
1709
Joe Perches29f1c782010-03-10 15:21:00 -08001710 do_print = !handler && print_unex && initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712 inr = result();
1713 if (do_print)
1714 print_result("unexpected interrupt", inr);
1715 if (inr == 0) {
1716 int max_sensei = 4;
1717 do {
1718 output_byte(FD_SENSEI);
1719 inr = result();
1720 if (do_print)
1721 print_result("sensei", inr);
1722 max_sensei--;
Joe Perchesc5297302010-03-10 15:20:58 -08001723 } while ((ST0 & 0x83) != UNIT(current_drive) &&
1724 inr == 2 && max_sensei);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
1726 if (!handler) {
1727 FDCS->reset = 1;
1728 return IRQ_NONE;
1729 }
1730 schedule_bh(handler);
Joe Perches275176b2010-03-10 15:21:06 -08001731 is_alive(__func__, "normal interrupt end");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 /* FIXME! Was it really for us? */
1734 return IRQ_HANDLED;
1735}
1736
1737static void recalibrate_floppy(void)
1738{
Joe Perchesded28632010-03-10 15:21:09 -08001739 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 do_floppy = recal_interrupt;
1741 output_byte(FD_RECALIBRATE);
Joe Perches15b26302010-03-10 15:21:01 -08001742 if (output_byte(UNIT(current_drive)) < 0)
Joe Perches2300f902010-03-10 15:20:49 -08001743 reset_fdc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744}
1745
1746/*
1747 * Must do 4 FD_SENSEIs after reset because of ``drive polling''.
1748 */
1749static void reset_interrupt(void)
1750{
Joe Perchesded28632010-03-10 15:21:09 -08001751 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 result(); /* get the status ready for set_fdc */
1753 if (FDCS->reset) {
Joe Perches1ebddd82010-03-10 15:21:07 -08001754 pr_info("reset set in interrupt, calling %pf\n", cont->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 cont->error(); /* a reset just after a reset. BAD! */
1756 }
1757 cont->redo();
1758}
1759
1760/*
1761 * reset is done by pulling bit 2 of DOR low for a while (old FDCs),
1762 * or by setting the self clearing bit 7 of STATUS (newer FDCs)
1763 */
1764static void reset_fdc(void)
1765{
1766 unsigned long flags;
1767
1768 do_floppy = reset_interrupt;
1769 FDCS->reset = 0;
1770 reset_fdc_info(0);
1771
1772 /* Pseudo-DMA may intercept 'reset finished' interrupt. */
1773 /* Irrelevant for systems with true DMA (i386). */
1774
1775 flags = claim_dma_lock();
1776 fd_disable_dma();
1777 release_dma_lock(flags);
1778
1779 if (FDCS->version >= FDC_82072A)
1780 fd_outb(0x80 | (FDCS->dtr & 3), FD_STATUS);
1781 else {
1782 fd_outb(FDCS->dor & ~0x04, FD_DOR);
1783 udelay(FD_RESET_DELAY);
1784 fd_outb(FDCS->dor, FD_DOR);
1785 }
1786}
1787
1788static void show_floppy(void)
1789{
1790 int i;
1791
Joe Perchesb46df352010-03-10 15:20:46 -08001792 pr_info("\n");
1793 pr_info("floppy driver state\n");
1794 pr_info("-------------------\n");
Joe Perches1ebddd82010-03-10 15:21:07 -08001795 pr_info("now=%lu last interrupt=%lu diff=%lu last called handler=%pf\n",
Joe Perchesb46df352010-03-10 15:20:46 -08001796 jiffies, interruptjiffies, jiffies - interruptjiffies,
1797 lasthandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
Joe Perchesb46df352010-03-10 15:20:46 -08001799 pr_info("timeout_message=%s\n", timeout_message);
1800 pr_info("last output bytes:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 for (i = 0; i < OLOGSIZE; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001802 pr_info("%2x %2x %lu\n",
1803 output_log[(i + output_log_pos) % OLOGSIZE].data,
1804 output_log[(i + output_log_pos) % OLOGSIZE].status,
1805 output_log[(i + output_log_pos) % OLOGSIZE].jiffies);
1806 pr_info("last result at %lu\n", resultjiffies);
1807 pr_info("last redo_fd_request at %lu\n", lastredo);
1808 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_NONE, 16, 1,
1809 reply_buffer, resultsize, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Joe Perchesb46df352010-03-10 15:20:46 -08001811 pr_info("status=%x\n", fd_inb(FD_STATUS));
1812 pr_info("fdc_busy=%lu\n", fdc_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 if (do_floppy)
Joe Perches1ebddd82010-03-10 15:21:07 -08001814 pr_info("do_floppy=%pf\n", do_floppy);
David Howells365970a2006-11-22 14:54:49 +00001815 if (work_pending(&floppy_work))
Joe Perches1ebddd82010-03-10 15:21:07 -08001816 pr_info("floppy_work.func=%pf\n", floppy_work.func);
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001817 if (delayed_work_pending(&fd_timer))
1818 pr_info("delayed work.function=%p expires=%ld\n",
1819 fd_timer.work.func,
1820 fd_timer.timer.expires - jiffies);
1821 if (delayed_work_pending(&fd_timeout))
1822 pr_info("timer_function=%p expires=%ld\n",
1823 fd_timeout.work.func,
1824 fd_timeout.timer.expires - jiffies);
1825
Joe Perchesb46df352010-03-10 15:20:46 -08001826 pr_info("cont=%p\n", cont);
1827 pr_info("current_req=%p\n", current_req);
1828 pr_info("command_status=%d\n", command_status);
1829 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001832static void floppy_shutdown(struct work_struct *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833{
1834 unsigned long flags;
1835
Joe Perches29f1c782010-03-10 15:21:00 -08001836 if (initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 show_floppy();
1838 cancel_activity();
1839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 flags = claim_dma_lock();
1841 fd_disable_dma();
1842 release_dma_lock(flags);
1843
1844 /* avoid dma going to a random drive after shutdown */
1845
Joe Perches29f1c782010-03-10 15:21:00 -08001846 if (initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 DPRINT("floppy timeout called\n");
1848 FDCS->reset = 1;
1849 if (cont) {
1850 cont->done(0);
1851 cont->redo(); /* this will recall reset when needed */
1852 } else {
Joe Perchesb46df352010-03-10 15:20:46 -08001853 pr_info("no cont in shutdown!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 process_fd_request();
1855 }
Joe Perches275176b2010-03-10 15:21:06 -08001856 is_alive(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859/* start motor, check media-changed condition and write protection */
Jesper Juhl06f748c2007-10-16 23:30:57 -07001860static int start_motor(void (*function)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001862 int mask;
1863 int data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
1865 mask = 0xfc;
1866 data = UNIT(current_drive);
1867 if (!(raw_cmd->flags & FD_RAW_NO_MOTOR)) {
1868 if (!(FDCS->dor & (0x10 << UNIT(current_drive)))) {
1869 set_debugt();
1870 /* no read since this drive is running */
1871 DRS->first_read_date = 0;
1872 /* note motor start time if motor is not yet running */
1873 DRS->spinup_date = jiffies;
1874 data |= (0x10 << UNIT(current_drive));
1875 }
1876 } else if (FDCS->dor & (0x10 << UNIT(current_drive)))
1877 mask &= ~(0x10 << UNIT(current_drive));
1878
1879 /* starts motor and selects floppy */
1880 del_timer(motor_off_timer + current_drive);
1881 set_dor(fdc, mask, data);
1882
1883 /* wait_for_completion also schedules reset if needed. */
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001884 return fd_wait_for_completion(DRS->select_date + DP->select_delay,
Tejun Heo75ddb382014-03-07 10:24:48 -05001885 function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886}
1887
1888static void floppy_ready(void)
1889{
Joe Perches045f9832010-03-10 15:20:47 -08001890 if (FDCS->reset) {
1891 reset_fdc();
1892 return;
1893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 if (start_motor(floppy_ready))
1895 return;
1896 if (fdc_dtr())
1897 return;
1898
Joe Perches87f530d2010-03-10 15:20:54 -08001899 debug_dcl(DP->flags, "calling disk change from floppy_ready\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 if (!(raw_cmd->flags & FD_RAW_NO_MOTOR) &&
1901 disk_change(current_drive) && !DP->select_delay)
Joe Perchesbb57f0c62010-03-10 15:20:50 -08001902 twaddle(); /* this clears the dcl on certain
1903 * drive/controller combinations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905#ifdef fd_chose_dma_mode
1906 if ((raw_cmd->flags & FD_RAW_READ) || (raw_cmd->flags & FD_RAW_WRITE)) {
1907 unsigned long flags = claim_dma_lock();
1908 fd_chose_dma_mode(raw_cmd->kernel_data, raw_cmd->length);
1909 release_dma_lock(flags);
1910 }
1911#endif
1912
1913 if (raw_cmd->flags & (FD_RAW_NEED_SEEK | FD_RAW_NEED_DISK)) {
1914 perpendicular_mode();
1915 fdc_specify(); /* must be done here because of hut, hlt ... */
1916 seek_floppy();
1917 } else {
1918 if ((raw_cmd->flags & FD_RAW_READ) ||
1919 (raw_cmd->flags & FD_RAW_WRITE))
1920 fdc_specify();
1921 setup_rw_floppy();
1922 }
1923}
1924
1925static void floppy_start(void)
1926{
Joe Perches73507e62010-03-10 15:21:03 -08001927 reschedule_timeout(current_reqD, "floppy start");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
1929 scandrives();
Joe Perches87f530d2010-03-10 15:20:54 -08001930 debug_dcl(DP->flags, "setting NEWCHANGE in floppy_start\n");
Joe Perchese0298532010-03-10 15:20:55 -08001931 set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 floppy_ready();
1933}
1934
1935/*
1936 * ========================================================================
1937 * here ends the bottom half. Exported routines are:
1938 * floppy_start, floppy_off, floppy_ready, lock_fdc, unlock_fdc, set_fdc,
1939 * start_motor, reset_fdc, reset_fdc_info, interpret_errors.
1940 * Initialization also uses output_byte, result, set_dor, floppy_interrupt
1941 * and set_dor.
1942 * ========================================================================
1943 */
1944/*
1945 * General purpose continuations.
1946 * ==============================
1947 */
1948
1949static void do_wakeup(void)
1950{
Joe Perches73507e62010-03-10 15:21:03 -08001951 reschedule_timeout(MAXTIMEOUT, "do wakeup");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 cont = NULL;
1953 command_status += 2;
1954 wake_up(&command_done);
1955}
1956
Stephen Hemminger3b06c212010-07-20 20:09:00 -06001957static const struct cont_t wakeup_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 .interrupt = empty,
1959 .redo = do_wakeup,
1960 .error = empty,
Jesper Juhl06f748c2007-10-16 23:30:57 -07001961 .done = (done_f)empty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962};
1963
Stephen Hemminger3b06c212010-07-20 20:09:00 -06001964static const struct cont_t intr_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 .interrupt = empty,
1966 .redo = process_fd_request,
1967 .error = empty,
Jesper Juhl06f748c2007-10-16 23:30:57 -07001968 .done = (done_f)empty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969};
1970
Joe Perches74f63f42010-03-10 15:20:58 -08001971static int wait_til_done(void (*handler)(void), bool interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
1973 int ret;
1974
1975 schedule_bh(handler);
1976
Stephen Hemmingerb862f262010-06-15 13:21:11 +02001977 if (interruptible)
1978 wait_event_interruptible(command_done, command_status >= 2);
1979 else
1980 wait_event(command_done, command_status >= 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
1982 if (command_status < 2) {
1983 cancel_activity();
1984 cont = &intr_cont;
1985 reset_fdc();
1986 return -EINTR;
1987 }
1988
1989 if (FDCS->reset)
1990 command_status = FD_COMMAND_ERROR;
1991 if (command_status == FD_COMMAND_OKAY)
1992 ret = 0;
1993 else
1994 ret = -EIO;
1995 command_status = FD_COMMAND_NONE;
1996 return ret;
1997}
1998
1999static void generic_done(int result)
2000{
2001 command_status = result;
2002 cont = &wakeup_cont;
2003}
2004
2005static void generic_success(void)
2006{
2007 cont->done(1);
2008}
2009
2010static void generic_failure(void)
2011{
2012 cont->done(0);
2013}
2014
2015static void success_and_wakeup(void)
2016{
2017 generic_success();
2018 cont->redo();
2019}
2020
2021/*
2022 * formatting and rw support.
2023 * ==========================
2024 */
2025
2026static int next_valid_format(void)
2027{
2028 int probed_format;
2029
2030 probed_format = DRS->probed_format;
2031 while (1) {
2032 if (probed_format >= 8 || !DP->autodetect[probed_format]) {
2033 DRS->probed_format = 0;
2034 return 1;
2035 }
2036 if (floppy_type[DP->autodetect[probed_format]].sect) {
2037 DRS->probed_format = probed_format;
2038 return 0;
2039 }
2040 probed_format++;
2041 }
2042}
2043
2044static void bad_flp_intr(void)
2045{
2046 int err_count;
2047
2048 if (probing) {
2049 DRS->probed_format++;
2050 if (!next_valid_format())
2051 return;
2052 }
2053 err_count = ++(*errors);
2054 INFBOUND(DRWE->badness, err_count);
2055 if (err_count > DP->max_errors.abort)
2056 cont->done(0);
2057 if (err_count > DP->max_errors.reset)
2058 FDCS->reset = 1;
2059 else if (err_count > DP->max_errors.recal)
2060 DRS->track = NEED_2_RECAL;
2061}
2062
2063static void set_floppy(int drive)
2064{
2065 int type = ITYPE(UDRS->fd_device);
Jesper Juhl06f748c2007-10-16 23:30:57 -07002066
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 if (type)
2068 _floppy = floppy_type + type;
2069 else
2070 _floppy = current_type[drive];
2071}
2072
2073/*
2074 * formatting support.
2075 * ===================
2076 */
2077static void format_interrupt(void)
2078{
2079 switch (interpret_errors()) {
2080 case 1:
2081 cont->error();
2082 case 2:
2083 break;
2084 case 0:
2085 cont->done(1);
2086 }
2087 cont->redo();
2088}
2089
Joe Perches48c8cee2010-03-10 15:20:45 -08002090#define FM_MODE(x, y) ((y) & ~(((x)->rate & 0x80) >> 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091#define CT(x) ((x) | 0xc0)
Joe Perches48c8cee2010-03-10 15:20:45 -08002092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093static void setup_format_params(int track)
2094{
Jesper Juhl06f748c2007-10-16 23:30:57 -07002095 int n;
2096 int il;
2097 int count;
2098 int head_shift;
2099 int track_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 struct fparm {
2101 unsigned char track, head, sect, size;
2102 } *here = (struct fparm *)floppy_track_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
2104 raw_cmd = &default_raw_cmd;
2105 raw_cmd->track = track;
2106
Joe Perches48c8cee2010-03-10 15:20:45 -08002107 raw_cmd->flags = (FD_RAW_WRITE | FD_RAW_INTR | FD_RAW_SPIN |
2108 FD_RAW_NEED_DISK | FD_RAW_NEED_SEEK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 raw_cmd->rate = _floppy->rate & 0x43;
2110 raw_cmd->cmd_count = NR_F;
2111 COMMAND = FM_MODE(_floppy, FD_FORMAT);
2112 DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, format_req.head);
2113 F_SIZECODE = FD_SIZECODE(_floppy);
2114 F_SECT_PER_TRACK = _floppy->sect << 2 >> F_SIZECODE;
2115 F_GAP = _floppy->fmt_gap;
2116 F_FILL = FD_FILL_BYTE;
2117
2118 raw_cmd->kernel_data = floppy_track_buffer;
2119 raw_cmd->length = 4 * F_SECT_PER_TRACK;
2120
2121 /* allow for about 30ms for data transport per track */
2122 head_shift = (F_SECT_PER_TRACK + 5) / 6;
2123
2124 /* a ``cylinder'' is two tracks plus a little stepping time */
2125 track_shift = 2 * head_shift + 3;
2126
2127 /* position of logical sector 1 on this track */
2128 n = (track_shift * format_req.track + head_shift * format_req.head)
2129 % F_SECT_PER_TRACK;
2130
2131 /* determine interleave */
2132 il = 1;
2133 if (_floppy->fmt_gap < 0x22)
2134 il++;
2135
2136 /* initialize field */
2137 for (count = 0; count < F_SECT_PER_TRACK; ++count) {
2138 here[count].track = format_req.track;
2139 here[count].head = format_req.head;
2140 here[count].sect = 0;
2141 here[count].size = F_SIZECODE;
2142 }
2143 /* place logical sectors */
2144 for (count = 1; count <= F_SECT_PER_TRACK; ++count) {
2145 here[n].sect = count;
2146 n = (n + il) % F_SECT_PER_TRACK;
2147 if (here[n].sect) { /* sector busy, find next free sector */
2148 ++n;
2149 if (n >= F_SECT_PER_TRACK) {
2150 n -= F_SECT_PER_TRACK;
2151 while (here[n].sect)
2152 ++n;
2153 }
2154 }
2155 }
Keith Wansbrough9e491842008-09-22 14:57:17 -07002156 if (_floppy->stretch & FD_SECTBASEMASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 for (count = 0; count < F_SECT_PER_TRACK; count++)
Keith Wansbrough9e491842008-09-22 14:57:17 -07002158 here[count].sect += FD_SECTBASE(_floppy) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 }
2160}
2161
2162static void redo_format(void)
2163{
2164 buffer_track = -1;
2165 setup_format_params(format_req.track << STRETCH(_floppy));
2166 floppy_start();
Joe Perchesded28632010-03-10 15:21:09 -08002167 debugt(__func__, "queue format request");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002170static const struct cont_t format_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 .interrupt = format_interrupt,
2172 .redo = redo_format,
2173 .error = bad_flp_intr,
2174 .done = generic_done
2175};
2176
2177static int do_format(int drive, struct format_descr *tmp_format_req)
2178{
2179 int ret;
2180
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01002181 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08002182 return -EINTR;
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 set_floppy(drive);
2185 if (!_floppy ||
2186 _floppy->track > DP->tracks ||
2187 tmp_format_req->track >= _floppy->track ||
2188 tmp_format_req->head >= _floppy->head ||
2189 (_floppy->sect << 2) % (1 << FD_SIZECODE(_floppy)) ||
2190 !_floppy->fmt_gap) {
2191 process_fd_request();
2192 return -EINVAL;
2193 }
2194 format_req = *tmp_format_req;
2195 format_errors = 0;
2196 cont = &format_cont;
2197 errors = &format_errors;
Joe Perches74f63f42010-03-10 15:20:58 -08002198 ret = wait_til_done(redo_format, true);
Joe Perches55eee802010-03-10 15:20:57 -08002199 if (ret == -EINTR)
2200 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 process_fd_request();
2202 return ret;
2203}
2204
2205/*
2206 * Buffer read/write and support
2207 * =============================
2208 */
2209
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002210static void floppy_end_request(struct request *req, blk_status_t error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211{
2212 unsigned int nr_sectors = current_count_sectors;
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002213 unsigned int drive = (unsigned long)req->rq_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
2215 /* current_count_sectors can be zero if transfer failed */
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002216 if (error)
Tejun Heo83096eb2009-05-07 22:24:39 +09002217 nr_sectors = blk_rq_cur_sectors(req);
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002218 if (__blk_end_request(req, error, nr_sectors << 9))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
2221 /* We're done with the request */
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002222 floppy_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 current_req = NULL;
2224}
2225
2226/* new request_done. Can handle physical sectors which are smaller than a
2227 * logical buffer */
2228static void request_done(int uptodate)
2229{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 struct request *req = current_req;
Jens Axboe48821182010-09-22 09:32:36 +02002231 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 unsigned long flags;
2233 int block;
Joe Perches73507e62010-03-10 15:21:03 -08002234 char msg[sizeof("request done ") + sizeof(int) * 3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235
2236 probing = 0;
Joe Perches73507e62010-03-10 15:21:03 -08002237 snprintf(msg, sizeof(msg), "request done %d", uptodate);
2238 reschedule_timeout(MAXTIMEOUT, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
2240 if (!req) {
Joe Perchesb46df352010-03-10 15:20:46 -08002241 pr_info("floppy.c: no request in request_done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 return;
2243 }
2244
Jens Axboe48821182010-09-22 09:32:36 +02002245 q = req->q;
2246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 if (uptodate) {
2248 /* maintain values for invalidation on geometry
2249 * change */
Tejun Heo83096eb2009-05-07 22:24:39 +09002250 block = current_count_sectors + blk_rq_pos(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 INFBOUND(DRS->maxblock, block);
2252 if (block > _floppy->sect)
2253 DRS->maxtrack = 1;
2254
2255 /* unlock chained buffers */
2256 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002257 floppy_end_request(req, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 spin_unlock_irqrestore(q->queue_lock, flags);
2259 } else {
2260 if (rq_data_dir(req) == WRITE) {
2261 /* record write error information */
2262 DRWE->write_errors++;
2263 if (DRWE->write_errors == 1) {
Tejun Heo83096eb2009-05-07 22:24:39 +09002264 DRWE->first_error_sector = blk_rq_pos(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 DRWE->first_error_generation = DRS->generation;
2266 }
Tejun Heo83096eb2009-05-07 22:24:39 +09002267 DRWE->last_error_sector = blk_rq_pos(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 DRWE->last_error_generation = DRS->generation;
2269 }
2270 spin_lock_irqsave(q->queue_lock, flags);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002271 floppy_end_request(req, BLK_STS_IOERR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 spin_unlock_irqrestore(q->queue_lock, flags);
2273 }
2274}
2275
2276/* Interrupt handler evaluating the result of the r/w operation */
2277static void rw_interrupt(void)
2278{
Jesper Juhl06f748c2007-10-16 23:30:57 -07002279 int eoc;
2280 int ssize;
2281 int heads;
2282 int nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
2284 if (R_HEAD >= 2) {
2285 /* some Toshiba floppy controllers occasionnally seem to
2286 * return bogus interrupts after read/write operations, which
2287 * can be recognized by a bad head number (>= 2) */
2288 return;
2289 }
2290
2291 if (!DRS->first_read_date)
2292 DRS->first_read_date = jiffies;
2293
2294 nr_sectors = 0;
Joe Perches712e1de2010-03-10 15:21:10 -08002295 ssize = DIV_ROUND_UP(1 << SIZECODE, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
2297 if (ST1 & ST1_EOC)
2298 eoc = 1;
2299 else
2300 eoc = 0;
2301
2302 if (COMMAND & 0x80)
2303 heads = 2;
2304 else
2305 heads = 1;
2306
2307 nr_sectors = (((R_TRACK - TRACK) * heads +
2308 R_HEAD - HEAD) * SECT_PER_TRACK +
2309 R_SECTOR - SECTOR + eoc) << SIZECODE >> 2;
2310
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (nr_sectors / ssize >
Julia Lawall061837b2008-09-22 14:57:16 -07002312 DIV_ROUND_UP(in_sector_offset + current_count_sectors, ssize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 DPRINT("long rw: %x instead of %lx\n",
2314 nr_sectors, current_count_sectors);
Joe Perchesb46df352010-03-10 15:20:46 -08002315 pr_info("rs=%d s=%d\n", R_SECTOR, SECTOR);
2316 pr_info("rh=%d h=%d\n", R_HEAD, HEAD);
2317 pr_info("rt=%d t=%d\n", R_TRACK, TRACK);
2318 pr_info("heads=%d eoc=%d\n", heads, eoc);
2319 pr_info("spt=%d st=%d ss=%d\n",
2320 SECT_PER_TRACK, fsector_t, ssize);
2321 pr_info("in_sector_offset=%d\n", in_sector_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324 nr_sectors -= in_sector_offset;
2325 INFBOUND(nr_sectors, 0);
2326 SUPBOUND(current_count_sectors, nr_sectors);
2327
2328 switch (interpret_errors()) {
2329 case 2:
2330 cont->redo();
2331 return;
2332 case 1:
2333 if (!current_count_sectors) {
2334 cont->error();
2335 cont->redo();
2336 return;
2337 }
2338 break;
2339 case 0:
2340 if (!current_count_sectors) {
2341 cont->redo();
2342 return;
2343 }
2344 current_type[current_drive] = _floppy;
2345 floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
2346 break;
2347 }
2348
2349 if (probing) {
2350 if (DP->flags & FTD_MSG)
2351 DPRINT("Auto-detected floppy type %s in fd%d\n",
2352 _floppy->name, current_drive);
2353 current_type[current_drive] = _floppy;
2354 floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
2355 probing = 0;
2356 }
2357
2358 if (CT(COMMAND) != FD_READ ||
Jens Axboeb4f42e22014-04-10 09:46:28 -06002359 raw_cmd->kernel_data == bio_data(current_req->bio)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 /* transfer directly from buffer */
2361 cont->done(1);
2362 } else if (CT(COMMAND) == FD_READ) {
2363 buffer_track = raw_cmd->track;
2364 buffer_drive = current_drive;
2365 INFBOUND(buffer_max, nr_sectors + fsector_t);
2366 }
2367 cont->redo();
2368}
2369
2370/* Compute maximal contiguous buffer size. */
2371static int buffer_chain_size(void)
2372{
Kent Overstreet79886132013-11-23 17:19:00 -08002373 struct bio_vec bv;
NeilBrown5705f702007-09-25 12:35:59 +02002374 int size;
2375 struct req_iterator iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 char *base;
2377
2378 base = bio_data(current_req->bio);
2379 size = 0;
2380
NeilBrown5705f702007-09-25 12:35:59 +02002381 rq_for_each_segment(bv, current_req, iter) {
Kent Overstreet79886132013-11-23 17:19:00 -08002382 if (page_address(bv.bv_page) + bv.bv_offset != base + size)
NeilBrown5705f702007-09-25 12:35:59 +02002383 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Kent Overstreet79886132013-11-23 17:19:00 -08002385 size += bv.bv_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 }
2387
2388 return size >> 9;
2389}
2390
2391/* Compute the maximal transfer size */
2392static int transfer_size(int ssize, int max_sector, int max_size)
2393{
2394 SUPBOUND(max_sector, fsector_t + max_size);
2395
2396 /* alignment */
2397 max_sector -= (max_sector % _floppy->sect) % ssize;
2398
2399 /* transfer size, beginning not aligned */
2400 current_count_sectors = max_sector - fsector_t;
2401
2402 return max_sector;
2403}
2404
2405/*
2406 * Move data from/to the track buffer to/from the buffer cache.
2407 */
2408static void copy_buffer(int ssize, int max_sector, int max_sector_2)
2409{
2410 int remaining; /* number of transferred 512-byte sectors */
Kent Overstreet79886132013-11-23 17:19:00 -08002411 struct bio_vec bv;
Jesper Juhl06f748c2007-10-16 23:30:57 -07002412 char *buffer;
2413 char *dma_buffer;
NeilBrown5705f702007-09-25 12:35:59 +02002414 int size;
2415 struct req_iterator iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 max_sector = transfer_size(ssize,
2418 min(max_sector, max_sector_2),
Tejun Heo83096eb2009-05-07 22:24:39 +09002419 blk_rq_sectors(current_req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420
2421 if (current_count_sectors <= 0 && CT(COMMAND) == FD_WRITE &&
Tejun Heo83096eb2009-05-07 22:24:39 +09002422 buffer_max > fsector_t + blk_rq_sectors(current_req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 current_count_sectors = min_t(int, buffer_max - fsector_t,
Tejun Heo83096eb2009-05-07 22:24:39 +09002424 blk_rq_sectors(current_req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
2426 remaining = current_count_sectors << 9;
Tejun Heo1011c1b2009-05-07 22:24:45 +09002427 if (remaining > blk_rq_bytes(current_req) && CT(COMMAND) == FD_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 DPRINT("in copy buffer\n");
Joe Perchesb46df352010-03-10 15:20:46 -08002429 pr_info("current_count_sectors=%ld\n", current_count_sectors);
2430 pr_info("remaining=%d\n", remaining >> 9);
2431 pr_info("current_req->nr_sectors=%u\n",
2432 blk_rq_sectors(current_req));
2433 pr_info("current_req->current_nr_sectors=%u\n",
2434 blk_rq_cur_sectors(current_req));
2435 pr_info("max_sector=%d\n", max_sector);
2436 pr_info("ssize=%d\n", ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
2439 buffer_max = max(max_sector, buffer_max);
2440
2441 dma_buffer = floppy_track_buffer + ((fsector_t - buffer_min) << 9);
2442
Tejun Heo1011c1b2009-05-07 22:24:45 +09002443 size = blk_rq_cur_bytes(current_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
NeilBrown5705f702007-09-25 12:35:59 +02002445 rq_for_each_segment(bv, current_req, iter) {
2446 if (!remaining)
2447 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Kent Overstreet79886132013-11-23 17:19:00 -08002449 size = bv.bv_len;
NeilBrown5705f702007-09-25 12:35:59 +02002450 SUPBOUND(size, remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Kent Overstreet79886132013-11-23 17:19:00 -08002452 buffer = page_address(bv.bv_page) + bv.bv_offset;
NeilBrown5705f702007-09-25 12:35:59 +02002453 if (dma_buffer + size >
2454 floppy_track_buffer + (max_buffer_sectors << 10) ||
2455 dma_buffer < floppy_track_buffer) {
2456 DPRINT("buffer overrun in copy buffer %d\n",
Joe Perchesb46df352010-03-10 15:20:46 -08002457 (int)((floppy_track_buffer - dma_buffer) >> 9));
2458 pr_info("fsector_t=%d buffer_min=%d\n",
2459 fsector_t, buffer_min);
2460 pr_info("current_count_sectors=%ld\n",
2461 current_count_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 if (CT(COMMAND) == FD_READ)
Joe Perchesb46df352010-03-10 15:20:46 -08002463 pr_info("read\n");
NeilBrown5705f702007-09-25 12:35:59 +02002464 if (CT(COMMAND) == FD_WRITE)
Joe Perchesb46df352010-03-10 15:20:46 -08002465 pr_info("write\n");
NeilBrown5705f702007-09-25 12:35:59 +02002466 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 }
NeilBrown5705f702007-09-25 12:35:59 +02002468 if (((unsigned long)buffer) % 512)
2469 DPRINT("%p buffer not aligned\n", buffer);
Joe Perches1a23d132010-03-10 15:21:04 -08002470
NeilBrown5705f702007-09-25 12:35:59 +02002471 if (CT(COMMAND) == FD_READ)
2472 memcpy(buffer, dma_buffer, size);
2473 else
2474 memcpy(dma_buffer, buffer, size);
2475
2476 remaining -= size;
2477 dma_buffer += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 if (remaining) {
2480 if (remaining > 0)
2481 max_sector -= remaining >> 9;
2482 DPRINT("weirdness: remaining %d\n", remaining >> 9);
2483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484}
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486/* work around a bug in pseudo DMA
2487 * (on some FDCs) pseudo DMA does not stop when the CPU stops
2488 * sending data. Hence we need a different way to signal the
2489 * transfer length: We use SECT_PER_TRACK. Unfortunately, this
2490 * does not work with MT, hence we can only transfer one head at
2491 * a time
2492 */
2493static void virtualdmabug_workaround(void)
2494{
Jesper Juhl06f748c2007-10-16 23:30:57 -07002495 int hard_sectors;
2496 int end_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
2498 if (CT(COMMAND) == FD_WRITE) {
2499 COMMAND &= ~0x80; /* switch off multiple track mode */
2500
2501 hard_sectors = raw_cmd->length >> (7 + SIZECODE);
2502 end_sector = SECTOR + hard_sectors - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 if (end_sector > SECT_PER_TRACK) {
Joe Perchesb46df352010-03-10 15:20:46 -08002504 pr_info("too many sectors %d > %d\n",
2505 end_sector, SECT_PER_TRACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 return;
2507 }
Joe Perches48c8cee2010-03-10 15:20:45 -08002508 SECT_PER_TRACK = end_sector;
2509 /* make sure SECT_PER_TRACK
2510 * points to end of transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 }
2512}
2513
2514/*
2515 * Formulate a read/write request.
2516 * this routine decides where to load the data (directly to buffer, or to
2517 * tmp floppy area), how much data to load (the size of the buffer, the whole
2518 * track, or a single sector)
2519 * All floppy_track_buffer handling goes in here. If we ever add track buffer
2520 * allocation on the fly, it should be done here. No other part should need
2521 * modification.
2522 */
2523
2524static int make_raw_rw_request(void)
2525{
2526 int aligned_sector_t;
Jesper Juhl06f748c2007-10-16 23:30:57 -07002527 int max_sector;
2528 int max_size;
2529 int tracksize;
2530 int ssize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002532 if (WARN(max_buffer_sectors == 0, "VFS: Block I/O scheduled on unopened device\n"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
2535 set_fdc((long)current_req->rq_disk->private_data);
2536
2537 raw_cmd = &default_raw_cmd;
Fengguang Wu2fb2ca62012-07-28 19:45:59 +08002538 raw_cmd->flags = FD_RAW_SPIN | FD_RAW_NEED_DISK | FD_RAW_NEED_SEEK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 raw_cmd->cmd_count = NR_RW;
2540 if (rq_data_dir(current_req) == READ) {
2541 raw_cmd->flags |= FD_RAW_READ;
2542 COMMAND = FM_MODE(_floppy, FD_READ);
2543 } else if (rq_data_dir(current_req) == WRITE) {
2544 raw_cmd->flags |= FD_RAW_WRITE;
2545 COMMAND = FM_MODE(_floppy, FD_WRITE);
2546 } else {
Joe Perches275176b2010-03-10 15:21:06 -08002547 DPRINT("%s: unknown command\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 return 0;
2549 }
2550
2551 max_sector = _floppy->sect * _floppy->head;
2552
Tejun Heo83096eb2009-05-07 22:24:39 +09002553 TRACK = (int)blk_rq_pos(current_req) / max_sector;
2554 fsector_t = (int)blk_rq_pos(current_req) % max_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 if (_floppy->track && TRACK >= _floppy->track) {
Tejun Heo83096eb2009-05-07 22:24:39 +09002556 if (blk_rq_cur_sectors(current_req) & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 current_count_sectors = 1;
2558 return 1;
2559 } else
2560 return 0;
2561 }
2562 HEAD = fsector_t / _floppy->sect;
2563
Keith Wansbrough9e491842008-09-22 14:57:17 -07002564 if (((_floppy->stretch & (FD_SWAPSIDES | FD_SECTBASEMASK)) ||
Joe Perchese0298532010-03-10 15:20:55 -08002565 test_bit(FD_NEED_TWADDLE_BIT, &DRS->flags)) &&
2566 fsector_t < _floppy->sect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 max_sector = _floppy->sect;
2568
2569 /* 2M disks have phantom sectors on the first track */
2570 if ((_floppy->rate & FD_2M) && (!TRACK) && (!HEAD)) {
2571 max_sector = 2 * _floppy->sect / 3;
2572 if (fsector_t >= max_sector) {
2573 current_count_sectors =
2574 min_t(int, _floppy->sect - fsector_t,
Tejun Heo83096eb2009-05-07 22:24:39 +09002575 blk_rq_sectors(current_req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 return 1;
2577 }
2578 SIZECODE = 2;
2579 } else
2580 SIZECODE = FD_SIZECODE(_floppy);
2581 raw_cmd->rate = _floppy->rate & 0x43;
2582 if ((_floppy->rate & FD_2M) && (TRACK || HEAD) && raw_cmd->rate == 2)
2583 raw_cmd->rate = 1;
2584
2585 if (SIZECODE)
2586 SIZECODE2 = 0xff;
2587 else
2588 SIZECODE2 = 0x80;
2589 raw_cmd->track = TRACK << STRETCH(_floppy);
2590 DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, HEAD);
2591 GAP = _floppy->gap;
Joe Perches712e1de2010-03-10 15:21:10 -08002592 ssize = DIV_ROUND_UP(1 << SIZECODE, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 SECT_PER_TRACK = _floppy->sect << 2 >> SIZECODE;
2594 SECTOR = ((fsector_t % _floppy->sect) << 2 >> SIZECODE) +
Keith Wansbrough9e491842008-09-22 14:57:17 -07002595 FD_SECTBASE(_floppy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596
2597 /* tracksize describes the size which can be filled up with sectors
2598 * of size ssize.
2599 */
2600 tracksize = _floppy->sect - _floppy->sect % ssize;
2601 if (tracksize < _floppy->sect) {
2602 SECT_PER_TRACK++;
2603 if (tracksize <= fsector_t % _floppy->sect)
2604 SECTOR--;
2605
2606 /* if we are beyond tracksize, fill up using smaller sectors */
2607 while (tracksize <= fsector_t % _floppy->sect) {
2608 while (tracksize + ssize > _floppy->sect) {
2609 SIZECODE--;
2610 ssize >>= 1;
2611 }
2612 SECTOR++;
2613 SECT_PER_TRACK++;
2614 tracksize += ssize;
2615 }
2616 max_sector = HEAD * _floppy->sect + tracksize;
2617 } else if (!TRACK && !HEAD && !(_floppy->rate & FD_2M) && probing) {
2618 max_sector = _floppy->sect;
2619 } else if (!HEAD && CT(COMMAND) == FD_WRITE) {
2620 /* for virtual DMA bug workaround */
2621 max_sector = _floppy->sect;
2622 }
2623
2624 in_sector_offset = (fsector_t % _floppy->sect) % ssize;
2625 aligned_sector_t = fsector_t - in_sector_offset;
Tejun Heo83096eb2009-05-07 22:24:39 +09002626 max_size = blk_rq_sectors(current_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 if ((raw_cmd->track == buffer_track) &&
2628 (current_drive == buffer_drive) &&
2629 (fsector_t >= buffer_min) && (fsector_t < buffer_max)) {
2630 /* data already in track buffer */
2631 if (CT(COMMAND) == FD_READ) {
2632 copy_buffer(1, max_sector, buffer_max);
2633 return 1;
2634 }
Tejun Heo83096eb2009-05-07 22:24:39 +09002635 } else if (in_sector_offset || blk_rq_sectors(current_req) < ssize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 if (CT(COMMAND) == FD_WRITE) {
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002637 unsigned int sectors;
2638
2639 sectors = fsector_t + blk_rq_sectors(current_req);
2640 if (sectors > ssize && sectors < ssize + ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 max_size = ssize + ssize;
2642 else
2643 max_size = ssize;
2644 }
2645 raw_cmd->flags &= ~FD_RAW_WRITE;
2646 raw_cmd->flags |= FD_RAW_READ;
2647 COMMAND = FM_MODE(_floppy, FD_READ);
Jens Axboeb4f42e22014-04-10 09:46:28 -06002648 } else if ((unsigned long)bio_data(current_req->bio) < MAX_DMA_ADDRESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 unsigned long dma_limit;
2650 int direct, indirect;
2651
2652 indirect =
2653 transfer_size(ssize, max_sector,
2654 max_buffer_sectors * 2) - fsector_t;
2655
2656 /*
2657 * Do NOT use minimum() here---MAX_DMA_ADDRESS is 64 bits wide
2658 * on a 64 bit machine!
2659 */
2660 max_size = buffer_chain_size();
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002661 dma_limit = (MAX_DMA_ADDRESS -
Jens Axboeb4f42e22014-04-10 09:46:28 -06002662 ((unsigned long)bio_data(current_req->bio))) >> 9;
Joe Perchesa81ee542010-03-10 15:20:46 -08002663 if ((unsigned long)max_size > dma_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 max_size = dma_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 /* 64 kb boundaries */
Jens Axboeb4f42e22014-04-10 09:46:28 -06002666 if (CROSS_64KB(bio_data(current_req->bio), max_size << 9))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 max_size = (K_64 -
Jens Axboeb4f42e22014-04-10 09:46:28 -06002668 ((unsigned long)bio_data(current_req->bio)) %
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 K_64) >> 9;
2670 direct = transfer_size(ssize, max_sector, max_size) - fsector_t;
2671 /*
2672 * We try to read tracks, but if we get too many errors, we
2673 * go back to reading just one sector at a time.
2674 *
2675 * This means we should be able to read a sector even if there
2676 * are other bad sectors on this track.
2677 */
2678 if (!direct ||
2679 (indirect * 2 > direct * 3 &&
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002680 *errors < DP->max_errors.read_track &&
2681 ((!probing ||
2682 (DP->read_track & (1 << DRS->probed_format)))))) {
Tejun Heo83096eb2009-05-07 22:24:39 +09002683 max_size = blk_rq_sectors(current_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 } else {
Jens Axboeb4f42e22014-04-10 09:46:28 -06002685 raw_cmd->kernel_data = bio_data(current_req->bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 raw_cmd->length = current_count_sectors << 9;
2687 if (raw_cmd->length == 0) {
Joe Perches275176b2010-03-10 15:21:06 -08002688 DPRINT("%s: zero dma transfer attempted\n", __func__);
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002689 DPRINT("indirect=%d direct=%d fsector_t=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 indirect, direct, fsector_t);
2691 return 0;
2692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 virtualdmabug_workaround();
2694 return 2;
2695 }
2696 }
2697
2698 if (CT(COMMAND) == FD_READ)
2699 max_size = max_sector; /* unbounded */
2700
2701 /* claim buffer track if needed */
2702 if (buffer_track != raw_cmd->track || /* bad track */
2703 buffer_drive != current_drive || /* bad drive */
2704 fsector_t > buffer_max ||
2705 fsector_t < buffer_min ||
2706 ((CT(COMMAND) == FD_READ ||
Tejun Heo83096eb2009-05-07 22:24:39 +09002707 (!in_sector_offset && blk_rq_sectors(current_req) >= ssize)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 max_sector > 2 * max_buffer_sectors + buffer_min &&
Joe Perchesbb57f0c62010-03-10 15:20:50 -08002709 max_size + fsector_t > 2 * max_buffer_sectors + buffer_min)) {
2710 /* not enough space */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 buffer_track = -1;
2712 buffer_drive = current_drive;
2713 buffer_max = buffer_min = aligned_sector_t;
2714 }
2715 raw_cmd->kernel_data = floppy_track_buffer +
Joe Perchesbb57f0c62010-03-10 15:20:50 -08002716 ((aligned_sector_t - buffer_min) << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717
2718 if (CT(COMMAND) == FD_WRITE) {
2719 /* copy write buffer to track buffer.
2720 * if we get here, we know that the write
2721 * is either aligned or the data already in the buffer
2722 * (buffer will be overwritten) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 if (in_sector_offset && buffer_track == -1)
2724 DPRINT("internal error offset !=0 on write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 buffer_track = raw_cmd->track;
2726 buffer_drive = current_drive;
2727 copy_buffer(ssize, max_sector,
2728 2 * max_buffer_sectors + buffer_min);
2729 } else
2730 transfer_size(ssize, max_sector,
2731 2 * max_buffer_sectors + buffer_min -
2732 aligned_sector_t);
2733
2734 /* round up current_count_sectors to get dma xfer size */
2735 raw_cmd->length = in_sector_offset + current_count_sectors;
2736 raw_cmd->length = ((raw_cmd->length - 1) | (ssize - 1)) + 1;
2737 raw_cmd->length <<= 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 if ((raw_cmd->length < current_count_sectors << 9) ||
Jens Axboeb4f42e22014-04-10 09:46:28 -06002739 (raw_cmd->kernel_data != bio_data(current_req->bio) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 CT(COMMAND) == FD_WRITE &&
2741 (aligned_sector_t + (raw_cmd->length >> 9) > buffer_max ||
2742 aligned_sector_t < buffer_min)) ||
2743 raw_cmd->length % (128 << SIZECODE) ||
2744 raw_cmd->length <= 0 || current_count_sectors <= 0) {
2745 DPRINT("fractionary current count b=%lx s=%lx\n",
2746 raw_cmd->length, current_count_sectors);
Jens Axboeb4f42e22014-04-10 09:46:28 -06002747 if (raw_cmd->kernel_data != bio_data(current_req->bio))
Joe Perchesb46df352010-03-10 15:20:46 -08002748 pr_info("addr=%d, length=%ld\n",
2749 (int)((raw_cmd->kernel_data -
2750 floppy_track_buffer) >> 9),
2751 current_count_sectors);
2752 pr_info("st=%d ast=%d mse=%d msi=%d\n",
2753 fsector_t, aligned_sector_t, max_sector, max_size);
2754 pr_info("ssize=%x SIZECODE=%d\n", ssize, SIZECODE);
2755 pr_info("command=%x SECTOR=%d HEAD=%d, TRACK=%d\n",
2756 COMMAND, SECTOR, HEAD, TRACK);
2757 pr_info("buffer drive=%d\n", buffer_drive);
2758 pr_info("buffer track=%d\n", buffer_track);
2759 pr_info("buffer_min=%d\n", buffer_min);
2760 pr_info("buffer_max=%d\n", buffer_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 return 0;
2762 }
2763
Jens Axboeb4f42e22014-04-10 09:46:28 -06002764 if (raw_cmd->kernel_data != bio_data(current_req->bio)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 if (raw_cmd->kernel_data < floppy_track_buffer ||
2766 current_count_sectors < 0 ||
2767 raw_cmd->length < 0 ||
2768 raw_cmd->kernel_data + raw_cmd->length >
2769 floppy_track_buffer + (max_buffer_sectors << 10)) {
2770 DPRINT("buffer overrun in schedule dma\n");
Joe Perchesb46df352010-03-10 15:20:46 -08002771 pr_info("fsector_t=%d buffer_min=%d current_count=%ld\n",
2772 fsector_t, buffer_min, raw_cmd->length >> 9);
2773 pr_info("current_count_sectors=%ld\n",
2774 current_count_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 if (CT(COMMAND) == FD_READ)
Joe Perchesb46df352010-03-10 15:20:46 -08002776 pr_info("read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 if (CT(COMMAND) == FD_WRITE)
Joe Perchesb46df352010-03-10 15:20:46 -08002778 pr_info("write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 return 0;
2780 }
Tejun Heo1011c1b2009-05-07 22:24:45 +09002781 } else if (raw_cmd->length > blk_rq_bytes(current_req) ||
Tejun Heo83096eb2009-05-07 22:24:39 +09002782 current_count_sectors > blk_rq_sectors(current_req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 DPRINT("buffer overrun in direct transfer\n");
2784 return 0;
2785 } else if (raw_cmd->length < current_count_sectors << 9) {
2786 DPRINT("more sectors than bytes\n");
Joe Perchesb46df352010-03-10 15:20:46 -08002787 pr_info("bytes=%ld\n", raw_cmd->length >> 9);
2788 pr_info("sectors=%ld\n", current_count_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 }
2790 if (raw_cmd->length == 0) {
2791 DPRINT("zero dma transfer attempted from make_raw_request\n");
2792 return 0;
2793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
2795 virtualdmabug_workaround();
2796 return 2;
2797}
2798
Jens Axboe48821182010-09-22 09:32:36 +02002799/*
2800 * Round-robin between our available drives, doing one request from each
2801 */
2802static int set_next_request(void)
2803{
2804 struct request_queue *q;
2805 int old_pos = fdc_queue;
2806
2807 do {
2808 q = disks[fdc_queue]->queue;
2809 if (++fdc_queue == N_DRIVE)
2810 fdc_queue = 0;
2811 if (q) {
2812 current_req = blk_fetch_request(q);
Christoph Hellwig45908792017-04-20 16:03:12 +02002813 if (current_req) {
2814 current_req->error_count = 0;
Jens Axboe48821182010-09-22 09:32:36 +02002815 break;
Christoph Hellwig45908792017-04-20 16:03:12 +02002816 }
Jens Axboe48821182010-09-22 09:32:36 +02002817 }
2818 } while (fdc_queue != old_pos);
2819
2820 return current_req != NULL;
2821}
2822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823static void redo_fd_request(void)
2824{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 int drive;
2826 int tmp;
2827
2828 lastredo = jiffies;
2829 if (current_drive < N_DRIVE)
2830 floppy_off(current_drive);
2831
Joe Perches0da31322010-03-10 15:21:03 -08002832do_request:
2833 if (!current_req) {
Jens Axboe48821182010-09-22 09:32:36 +02002834 int pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Jens Axboe48821182010-09-22 09:32:36 +02002836 spin_lock_irq(&floppy_lock);
2837 pending = set_next_request();
2838 spin_unlock_irq(&floppy_lock);
Jens Axboe48821182010-09-22 09:32:36 +02002839 if (!pending) {
Joe Perches0da31322010-03-10 15:21:03 -08002840 do_floppy = NULL;
2841 unlock_fdc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 }
Joe Perches0da31322010-03-10 15:21:03 -08002845 drive = (long)current_req->rq_disk->private_data;
2846 set_fdc(drive);
Joe Perches73507e62010-03-10 15:21:03 -08002847 reschedule_timeout(current_reqD, "redo fd request");
Joe Perches0da31322010-03-10 15:21:03 -08002848
2849 set_floppy(drive);
2850 raw_cmd = &default_raw_cmd;
2851 raw_cmd->flags = 0;
2852 if (start_motor(redo_fd_request))
2853 return;
2854
2855 disk_change(current_drive);
2856 if (test_bit(current_drive, &fake_change) ||
2857 test_bit(FD_DISK_CHANGED_BIT, &DRS->flags)) {
2858 DPRINT("disk absent or changed during operation\n");
2859 request_done(0);
2860 goto do_request;
2861 }
2862 if (!_floppy) { /* Autodetection */
2863 if (!probing) {
2864 DRS->probed_format = 0;
2865 if (next_valid_format()) {
2866 DPRINT("no autodetectable formats\n");
2867 _floppy = NULL;
2868 request_done(0);
2869 goto do_request;
2870 }
2871 }
2872 probing = 1;
2873 _floppy = floppy_type + DP->autodetect[DRS->probed_format];
2874 } else
2875 probing = 0;
Christoph Hellwig45908792017-04-20 16:03:12 +02002876 errors = &(current_req->error_count);
Joe Perches0da31322010-03-10 15:21:03 -08002877 tmp = make_raw_rw_request();
2878 if (tmp < 2) {
2879 request_done(tmp);
2880 goto do_request;
2881 }
2882
2883 if (test_bit(FD_NEED_TWADDLE_BIT, &DRS->flags))
2884 twaddle();
2885 schedule_bh(floppy_start);
Joe Perchesded28632010-03-10 15:21:09 -08002886 debugt(__func__, "queue fd request");
Joe Perches0da31322010-03-10 15:21:03 -08002887 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002890static const struct cont_t rw_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 .interrupt = rw_interrupt,
2892 .redo = redo_fd_request,
2893 .error = bad_flp_intr,
2894 .done = request_done
2895};
2896
2897static void process_fd_request(void)
2898{
2899 cont = &rw_cont;
2900 schedule_bh(redo_fd_request);
2901}
2902
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002903static void do_fd_request(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002905 if (WARN(max_buffer_sectors == 0,
2906 "VFS: %s called on non-open device\n", __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002909 if (WARN(atomic_read(&usage_count) == 0,
Christoph Hellwigaebf5262017-01-31 16:57:31 +01002910 "warning: usage count=0, current_req=%p sect=%ld flags=%llx\n",
2911 current_req, (long)blk_rq_pos(current_req),
Jens Axboe59533162013-05-23 12:25:08 +02002912 (unsigned long long) current_req->cmd_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 return;
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002914
Jiri Kosina070ad7e2012-05-18 13:50:25 +02002915 if (test_and_set_bit(0, &fdc_busy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 /* fdc busy, this new request will be treated when the
2917 current one is done */
Joe Perches275176b2010-03-10 15:21:06 -08002918 is_alive(__func__, "old request running");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 return;
2920 }
Jiri Kosina070ad7e2012-05-18 13:50:25 +02002921 command_status = FD_COMMAND_NONE;
2922 __reschedule_timeout(MAXTIMEOUT, "fd_request");
2923 set_fdc(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 process_fd_request();
Joe Perches275176b2010-03-10 15:21:06 -08002925 is_alive(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926}
2927
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002928static const struct cont_t poll_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 .interrupt = success_and_wakeup,
2930 .redo = floppy_ready,
2931 .error = generic_failure,
2932 .done = generic_done
2933};
2934
Joe Perches74f63f42010-03-10 15:20:58 -08002935static int poll_drive(bool interruptible, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 /* no auto-sense, just clear dcl */
2938 raw_cmd = &default_raw_cmd;
2939 raw_cmd->flags = flag;
2940 raw_cmd->track = 0;
2941 raw_cmd->cmd_count = 0;
2942 cont = &poll_cont;
Joe Perches87f530d2010-03-10 15:20:54 -08002943 debug_dcl(DP->flags, "setting NEWCHANGE in poll_drive\n");
Joe Perchese0298532010-03-10 15:20:55 -08002944 set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Joe Perches55eee802010-03-10 15:20:57 -08002945
2946 return wait_til_done(floppy_ready, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947}
2948
2949/*
2950 * User triggered reset
2951 * ====================
2952 */
2953
2954static void reset_intr(void)
2955{
Joe Perchesb46df352010-03-10 15:20:46 -08002956 pr_info("weird, reset interrupt called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957}
2958
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002959static const struct cont_t reset_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 .interrupt = reset_intr,
2961 .redo = success_and_wakeup,
2962 .error = generic_failure,
2963 .done = generic_done
2964};
2965
Joe Perches74f63f42010-03-10 15:20:58 -08002966static int user_reset_fdc(int drive, int arg, bool interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967{
2968 int ret;
2969
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01002970 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08002971 return -EINTR;
2972
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 if (arg == FD_RESET_ALWAYS)
2974 FDCS->reset = 1;
2975 if (FDCS->reset) {
2976 cont = &reset_cont;
Joe Perches55eee802010-03-10 15:20:57 -08002977 ret = wait_til_done(reset_fdc, interruptible);
2978 if (ret == -EINTR)
2979 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 }
2981 process_fd_request();
Joe Perches52a0d612010-03-10 15:20:53 -08002982 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983}
2984
2985/*
2986 * Misc Ioctl's and support
2987 * ========================
2988 */
2989static inline int fd_copyout(void __user *param, const void *address,
2990 unsigned long size)
2991{
2992 return copy_to_user(param, address, size) ? -EFAULT : 0;
2993}
2994
Joe Perches48c8cee2010-03-10 15:20:45 -08002995static inline int fd_copyin(void __user *param, void *address,
2996 unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997{
2998 return copy_from_user(address, param, size) ? -EFAULT : 0;
2999}
3000
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003001static const char *drive_name(int type, int drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002{
3003 struct floppy_struct *floppy;
3004
3005 if (type)
3006 floppy = floppy_type + type;
3007 else {
3008 if (UDP->native_format)
3009 floppy = floppy_type + UDP->native_format;
3010 else
3011 return "(null)";
3012 }
3013 if (floppy->name)
3014 return floppy->name;
3015 else
3016 return "(null)";
3017}
3018
3019/* raw commands */
3020static void raw_cmd_done(int flag)
3021{
3022 int i;
3023
3024 if (!flag) {
3025 raw_cmd->flags |= FD_RAW_FAILURE;
3026 raw_cmd->flags |= FD_RAW_HARDFAILURE;
3027 } else {
3028 raw_cmd->reply_count = inr;
3029 if (raw_cmd->reply_count > MAX_REPLIES)
3030 raw_cmd->reply_count = 0;
3031 for (i = 0; i < raw_cmd->reply_count; i++)
3032 raw_cmd->reply[i] = reply_buffer[i];
3033
3034 if (raw_cmd->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
3035 unsigned long flags;
3036 flags = claim_dma_lock();
3037 raw_cmd->length = fd_get_dma_residue();
3038 release_dma_lock(flags);
3039 }
3040
3041 if ((raw_cmd->flags & FD_RAW_SOFTFAILURE) &&
3042 (!raw_cmd->reply_count || (raw_cmd->reply[0] & 0xc0)))
3043 raw_cmd->flags |= FD_RAW_FAILURE;
3044
3045 if (disk_change(current_drive))
3046 raw_cmd->flags |= FD_RAW_DISK_CHANGE;
3047 else
3048 raw_cmd->flags &= ~FD_RAW_DISK_CHANGE;
3049 if (raw_cmd->flags & FD_RAW_NO_MOTOR_AFTER)
3050 motor_off_callback(current_drive);
3051
3052 if (raw_cmd->next &&
3053 (!(raw_cmd->flags & FD_RAW_FAILURE) ||
3054 !(raw_cmd->flags & FD_RAW_STOP_IF_FAILURE)) &&
3055 ((raw_cmd->flags & FD_RAW_FAILURE) ||
3056 !(raw_cmd->flags & FD_RAW_STOP_IF_SUCCESS))) {
3057 raw_cmd = raw_cmd->next;
3058 return;
3059 }
3060 }
3061 generic_done(flag);
3062}
3063
Stephen Hemminger3b06c212010-07-20 20:09:00 -06003064static const struct cont_t raw_cmd_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 .interrupt = success_and_wakeup,
3066 .redo = floppy_start,
3067 .error = generic_failure,
3068 .done = raw_cmd_done
3069};
3070
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003071static int raw_cmd_copyout(int cmd, void __user *param,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 struct floppy_raw_cmd *ptr)
3073{
3074 int ret;
3075
3076 while (ptr) {
Matthew Daley2145e152014-04-28 19:05:21 +12003077 struct floppy_raw_cmd cmd = *ptr;
3078 cmd.next = NULL;
3079 cmd.kernel_data = NULL;
3080 ret = copy_to_user(param, &cmd, sizeof(cmd));
Joe Perches86b12b42010-03-10 15:20:56 -08003081 if (ret)
3082 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 param += sizeof(struct floppy_raw_cmd);
3084 if ((ptr->flags & FD_RAW_READ) && ptr->buffer_length) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08003085 if (ptr->length >= 0 &&
3086 ptr->length <= ptr->buffer_length) {
3087 long length = ptr->buffer_length - ptr->length;
Joe Perches4575b552010-03-10 15:20:55 -08003088 ret = fd_copyout(ptr->data, ptr->kernel_data,
3089 length);
3090 if (ret)
3091 return ret;
Joe Perchesbb57f0c62010-03-10 15:20:50 -08003092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 }
3094 ptr = ptr->next;
3095 }
Joe Perches7f252712010-03-10 15:21:08 -08003096
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 return 0;
3098}
3099
3100static void raw_cmd_free(struct floppy_raw_cmd **ptr)
3101{
Jesper Juhl06f748c2007-10-16 23:30:57 -07003102 struct floppy_raw_cmd *next;
3103 struct floppy_raw_cmd *this;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
3105 this = *ptr;
3106 *ptr = NULL;
3107 while (this) {
3108 if (this->buffer_length) {
3109 fd_dma_mem_free((unsigned long)this->kernel_data,
3110 this->buffer_length);
3111 this->buffer_length = 0;
3112 }
3113 next = this->next;
3114 kfree(this);
3115 this = next;
3116 }
3117}
3118
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003119static int raw_cmd_copyin(int cmd, void __user *param,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 struct floppy_raw_cmd **rcmd)
3121{
3122 struct floppy_raw_cmd *ptr;
3123 int ret;
3124 int i;
3125
3126 *rcmd = NULL;
Joe Perches7f252712010-03-10 15:21:08 -08003127
3128loop:
Vlastimil Babka1661f2e2017-01-04 11:19:31 +01003129 ptr = kmalloc(sizeof(struct floppy_raw_cmd), GFP_KERNEL);
Joe Perches7f252712010-03-10 15:21:08 -08003130 if (!ptr)
3131 return -ENOMEM;
3132 *rcmd = ptr;
3133 ret = copy_from_user(ptr, param, sizeof(*ptr));
Joe Perches7f252712010-03-10 15:21:08 -08003134 ptr->next = NULL;
3135 ptr->buffer_length = 0;
Matthew Daleyef87dbe2014-04-28 19:05:20 +12003136 ptr->kernel_data = NULL;
3137 if (ret)
3138 return -EFAULT;
Joe Perches7f252712010-03-10 15:21:08 -08003139 param += sizeof(struct floppy_raw_cmd);
3140 if (ptr->cmd_count > 33)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 /* the command may now also take up the space
3142 * initially intended for the reply & the
3143 * reply count. Needed for long 82078 commands
3144 * such as RESTORE, which takes ... 17 command
3145 * bytes. Murphy's law #137: When you reserve
3146 * 16 bytes for a structure, you'll one day
3147 * discover that you really need 17...
3148 */
Joe Perches7f252712010-03-10 15:21:08 -08003149 return -EINVAL;
3150
3151 for (i = 0; i < 16; i++)
3152 ptr->reply[i] = 0;
3153 ptr->resultcode = 0;
Joe Perches7f252712010-03-10 15:21:08 -08003154
3155 if (ptr->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
3156 if (ptr->length <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 return -EINVAL;
Joe Perches7f252712010-03-10 15:21:08 -08003158 ptr->kernel_data = (char *)fd_dma_mem_alloc(ptr->length);
3159 fallback_on_nodma_alloc(&ptr->kernel_data, ptr->length);
3160 if (!ptr->kernel_data)
3161 return -ENOMEM;
3162 ptr->buffer_length = ptr->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 }
Joe Perches7f252712010-03-10 15:21:08 -08003164 if (ptr->flags & FD_RAW_WRITE) {
3165 ret = fd_copyin(ptr->data, ptr->kernel_data, ptr->length);
3166 if (ret)
3167 return ret;
3168 }
3169
3170 if (ptr->flags & FD_RAW_MORE) {
3171 rcmd = &(ptr->next);
3172 ptr->rate &= 0x43;
3173 goto loop;
3174 }
3175
3176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177}
3178
3179static int raw_cmd_ioctl(int cmd, void __user *param)
3180{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 struct floppy_raw_cmd *my_raw_cmd;
Jesper Juhl06f748c2007-10-16 23:30:57 -07003182 int drive;
3183 int ret2;
3184 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
3186 if (FDCS->rawcmd <= 1)
3187 FDCS->rawcmd = 1;
3188 for (drive = 0; drive < N_DRIVE; drive++) {
3189 if (FDC(drive) != fdc)
3190 continue;
3191 if (drive == current_drive) {
3192 if (UDRS->fd_ref > 1) {
3193 FDCS->rawcmd = 2;
3194 break;
3195 }
3196 } else if (UDRS->fd_ref) {
3197 FDCS->rawcmd = 2;
3198 break;
3199 }
3200 }
3201
3202 if (FDCS->reset)
3203 return -EIO;
3204
3205 ret = raw_cmd_copyin(cmd, param, &my_raw_cmd);
3206 if (ret) {
3207 raw_cmd_free(&my_raw_cmd);
3208 return ret;
3209 }
3210
3211 raw_cmd = my_raw_cmd;
3212 cont = &raw_cmd_cont;
Joe Perches74f63f42010-03-10 15:20:58 -08003213 ret = wait_til_done(floppy_start, true);
Joe Perches87f530d2010-03-10 15:20:54 -08003214 debug_dcl(DP->flags, "calling disk change from raw_cmd ioctl\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
3216 if (ret != -EINTR && FDCS->reset)
3217 ret = -EIO;
3218
3219 DRS->track = NO_TRACK;
3220
3221 ret2 = raw_cmd_copyout(cmd, param, my_raw_cmd);
3222 if (!ret)
3223 ret = ret2;
3224 raw_cmd_free(&my_raw_cmd);
3225 return ret;
3226}
3227
3228static int invalidate_drive(struct block_device *bdev)
3229{
3230 /* invalidate the buffer track to force a reread */
3231 set_bit((long)bdev->bd_disk->private_data, &fake_change);
3232 process_fd_request();
3233 check_disk_change(bdev);
3234 return 0;
3235}
3236
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003237static int set_geometry(unsigned int cmd, struct floppy_struct *g,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 int drive, int type, struct block_device *bdev)
3239{
3240 int cnt;
3241
3242 /* sanity checking for parameters. */
3243 if (g->sect <= 0 ||
3244 g->head <= 0 ||
3245 g->track <= 0 || g->track > UDP->tracks >> STRETCH(g) ||
3246 /* check if reserved bits are set */
Keith Wansbrough9e491842008-09-22 14:57:17 -07003247 (g->stretch & ~(FD_STRETCH | FD_SWAPSIDES | FD_SECTBASEMASK)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 return -EINVAL;
3249 if (type) {
3250 if (!capable(CAP_SYS_ADMIN))
3251 return -EPERM;
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003252 mutex_lock(&open_lock);
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003253 if (lock_fdc(drive)) {
Jiri Slaby8516a502009-06-30 11:41:44 -07003254 mutex_unlock(&open_lock);
3255 return -EINTR;
3256 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 floppy_type[type] = *g;
3258 floppy_type[type].name = "user format";
3259 for (cnt = type << 2; cnt < (type << 2) + 4; cnt++)
3260 floppy_sizes[cnt] = floppy_sizes[cnt + 0x80] =
3261 floppy_type[type].size + 1;
3262 process_fd_request();
3263 for (cnt = 0; cnt < N_DRIVE; cnt++) {
3264 struct block_device *bdev = opened_bdev[cnt];
3265 if (!bdev || ITYPE(drive_state[cnt].fd_device) != type)
3266 continue;
NeilBrown93b270f2011-02-24 17:25:47 +11003267 __invalidate_device(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 }
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003269 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 } else {
3271 int oldStretch;
Joe Perches52a0d612010-03-10 15:20:53 -08003272
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003273 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003274 return -EINTR;
Joe Perches4575b552010-03-10 15:20:55 -08003275 if (cmd != FDDEFPRM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 /* notice a disk change immediately, else
3277 * we lose our settings immediately*/
Joe Perches74f63f42010-03-10 15:20:58 -08003278 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003279 return -EINTR;
3280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 oldStretch = g->stretch;
3282 user_params[drive] = *g;
3283 if (buffer_drive == drive)
3284 SUPBOUND(buffer_max, user_params[drive].sect);
3285 current_type[drive] = &user_params[drive];
3286 floppy_sizes[drive] = user_params[drive].size;
3287 if (cmd == FDDEFPRM)
3288 DRS->keep_data = -1;
3289 else
3290 DRS->keep_data = 1;
3291 /* invalidation. Invalidate only when needed, i.e.
3292 * when there are already sectors in the buffer cache
3293 * whose number will change. This is useful, because
3294 * mtools often changes the geometry of the disk after
3295 * looking at the boot block */
3296 if (DRS->maxblock > user_params[drive].sect ||
3297 DRS->maxtrack ||
3298 ((user_params[drive].sect ^ oldStretch) &
Keith Wansbrough9e491842008-09-22 14:57:17 -07003299 (FD_SWAPSIDES | FD_SECTBASEMASK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 invalidate_drive(bdev);
3301 else
3302 process_fd_request();
3303 }
3304 return 0;
3305}
3306
3307/* handle obsolete ioctl's */
Stephen Hemminger21af5442010-06-15 13:21:11 +02003308static unsigned int ioctl_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 FDCLRPRM,
3310 FDSETPRM,
3311 FDDEFPRM,
3312 FDGETPRM,
3313 FDMSGON,
3314 FDMSGOFF,
3315 FDFMTBEG,
3316 FDFMTTRK,
3317 FDFMTEND,
3318 FDSETEMSGTRESH,
3319 FDFLUSH,
3320 FDSETMAXERRS,
3321 FDGETMAXERRS,
3322 FDGETDRVTYP,
3323 FDSETDRVPRM,
3324 FDGETDRVPRM,
3325 FDGETDRVSTAT,
3326 FDPOLLDRVSTAT,
3327 FDRESET,
3328 FDGETFDCSTAT,
3329 FDWERRORCLR,
3330 FDWERRORGET,
3331 FDRAWCMD,
3332 FDEJECT,
3333 FDTWADDLE
3334};
3335
Stephen Hemminger21af5442010-06-15 13:21:11 +02003336static int normalize_ioctl(unsigned int *cmd, int *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337{
3338 int i;
3339
3340 for (i = 0; i < ARRAY_SIZE(ioctl_table); i++) {
3341 if ((*cmd & 0xffff) == (ioctl_table[i] & 0xffff)) {
3342 *size = _IOC_SIZE(*cmd);
3343 *cmd = ioctl_table[i];
3344 if (*size > _IOC_SIZE(*cmd)) {
Joe Perchesb46df352010-03-10 15:20:46 -08003345 pr_info("ioctl not yet supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 return -EFAULT;
3347 }
3348 return 0;
3349 }
3350 }
3351 return -EINVAL;
3352}
3353
3354static int get_floppy_geometry(int drive, int type, struct floppy_struct **g)
3355{
3356 if (type)
3357 *g = &floppy_type[type];
3358 else {
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003359 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003360 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003361 if (poll_drive(false, 0) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003362 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 process_fd_request();
3364 *g = current_type[drive];
3365 }
3366 if (!*g)
3367 return -ENODEV;
3368 return 0;
3369}
3370
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08003371static int fd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
3372{
3373 int drive = (long)bdev->bd_disk->private_data;
3374 int type = ITYPE(drive_state[drive].fd_device);
3375 struct floppy_struct *g;
3376 int ret;
3377
3378 ret = get_floppy_geometry(drive, type, &g);
3379 if (ret)
3380 return ret;
3381
3382 geo->heads = g->head;
3383 geo->sectors = g->sect;
3384 geo->cylinders = g->track;
3385 return 0;
3386}
3387
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003388static int fd_locked_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 unsigned long param)
3390{
Al Viroa4af9b42008-03-02 09:27:55 -05003391 int drive = (long)bdev->bd_disk->private_data;
Jesper Juhl06f748c2007-10-16 23:30:57 -07003392 int type = ITYPE(UDRS->fd_device);
3393 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 int ret;
3395 int size;
3396 union inparam {
3397 struct floppy_struct g; /* geometry */
3398 struct format_descr f;
3399 struct floppy_max_errors max_errors;
3400 struct floppy_drive_params dp;
3401 } inparam; /* parameters coming from user space */
Joe Perches724ee622010-03-10 15:21:11 -08003402 const void *outparam; /* parameters passed back to user space */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
3404 /* convert compatibility eject ioctls into floppy eject ioctl.
3405 * We do this in order to provide a means to eject floppy disks before
3406 * installing the new fdutils package */
3407 if (cmd == CDROMEJECT || /* CD-ROM eject */
Joe Perchesa81ee542010-03-10 15:20:46 -08003408 cmd == 0x6470) { /* SunOS floppy eject */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 DPRINT("obsolete eject ioctl\n");
3410 DPRINT("please use floppycontrol --eject\n");
3411 cmd = FDEJECT;
3412 }
3413
Joe Perchesa81ee542010-03-10 15:20:46 -08003414 if (!((cmd & 0xff00) == 0x0200))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 return -EINVAL;
3416
Joe Perchesa81ee542010-03-10 15:20:46 -08003417 /* convert the old style command into a new style command */
Joe Perches4575b552010-03-10 15:20:55 -08003418 ret = normalize_ioctl(&cmd, &size);
3419 if (ret)
3420 return ret;
Joe Perchesa81ee542010-03-10 15:20:46 -08003421
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 /* permission checks */
Joe Perches0aad92c2010-03-10 15:21:10 -08003423 if (((cmd & 0x40) && !(mode & (FMODE_WRITE | FMODE_WRITE_IOCTL))) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 ((cmd & 0x80) && !capable(CAP_SYS_ADMIN)))
3425 return -EPERM;
3426
Arjan van de Ven2886a8b2009-12-14 18:00:11 -08003427 if (WARN_ON(size < 0 || size > sizeof(inparam)))
3428 return -EINVAL;
3429
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 /* copyin */
Joe Perchesb87c9e02010-03-10 15:20:50 -08003431 memset(&inparam, 0, sizeof(inparam));
Joe Perches4575b552010-03-10 15:20:55 -08003432 if (_IOC_DIR(cmd) & _IOC_WRITE) {
3433 ret = fd_copyin((void __user *)param, &inparam, size);
3434 if (ret)
3435 return ret;
3436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437
Joe Perchesda273652010-03-10 15:20:52 -08003438 switch (cmd) {
3439 case FDEJECT:
3440 if (UDRS->fd_ref != 1)
3441 /* somebody else has this drive open */
3442 return -EBUSY;
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003443 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003444 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445
Joe Perchesda273652010-03-10 15:20:52 -08003446 /* do the actual eject. Fails on
3447 * non-Sparc architectures */
3448 ret = fd_eject(UNIT(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Joe Perchese0298532010-03-10 15:20:55 -08003450 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
3451 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Joe Perchesda273652010-03-10 15:20:52 -08003452 process_fd_request();
3453 return ret;
3454 case FDCLRPRM:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003455 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003456 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003457 current_type[drive] = NULL;
3458 floppy_sizes[drive] = MAX_DISK_SIZE << 1;
3459 UDRS->keep_data = 0;
3460 return invalidate_drive(bdev);
3461 case FDSETPRM:
3462 case FDDEFPRM:
3463 return set_geometry(cmd, &inparam.g, drive, type, bdev);
3464 case FDGETPRM:
Joe Perches4575b552010-03-10 15:20:55 -08003465 ret = get_floppy_geometry(drive, type,
Joe Perches724ee622010-03-10 15:21:11 -08003466 (struct floppy_struct **)&outparam);
Joe Perches4575b552010-03-10 15:20:55 -08003467 if (ret)
3468 return ret;
Joe Perchesda273652010-03-10 15:20:52 -08003469 break;
3470 case FDMSGON:
3471 UDP->flags |= FTD_MSG;
3472 return 0;
3473 case FDMSGOFF:
3474 UDP->flags &= ~FTD_MSG;
3475 return 0;
3476 case FDFMTBEG:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003477 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003478 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003479 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003480 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003481 ret = UDRS->flags;
3482 process_fd_request();
3483 if (ret & FD_VERIFY)
3484 return -ENODEV;
3485 if (!(ret & FD_DISK_WRITABLE))
3486 return -EROFS;
3487 return 0;
3488 case FDFMTTRK:
3489 if (UDRS->fd_ref != 1)
3490 return -EBUSY;
3491 return do_format(drive, &inparam.f);
3492 case FDFMTEND:
3493 case FDFLUSH:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003494 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003495 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003496 return invalidate_drive(bdev);
3497 case FDSETEMSGTRESH:
3498 UDP->max_errors.reporting = (unsigned short)(param & 0x0f);
3499 return 0;
3500 case FDGETMAXERRS:
Joe Perches724ee622010-03-10 15:21:11 -08003501 outparam = &UDP->max_errors;
Joe Perchesda273652010-03-10 15:20:52 -08003502 break;
3503 case FDSETMAXERRS:
3504 UDP->max_errors = inparam.max_errors;
3505 break;
3506 case FDGETDRVTYP:
3507 outparam = drive_name(type, drive);
Joe Perches724ee622010-03-10 15:21:11 -08003508 SUPBOUND(size, strlen((const char *)outparam) + 1);
Joe Perchesda273652010-03-10 15:20:52 -08003509 break;
3510 case FDSETDRVPRM:
3511 *UDP = inparam.dp;
3512 break;
3513 case FDGETDRVPRM:
Joe Perches724ee622010-03-10 15:21:11 -08003514 outparam = UDP;
Joe Perchesda273652010-03-10 15:20:52 -08003515 break;
3516 case FDPOLLDRVSTAT:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003517 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003518 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003519 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003520 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003521 process_fd_request();
3522 /* fall through */
3523 case FDGETDRVSTAT:
Joe Perches724ee622010-03-10 15:21:11 -08003524 outparam = UDRS;
Joe Perchesda273652010-03-10 15:20:52 -08003525 break;
3526 case FDRESET:
Joe Perches74f63f42010-03-10 15:20:58 -08003527 return user_reset_fdc(drive, (int)param, true);
Joe Perchesda273652010-03-10 15:20:52 -08003528 case FDGETFDCSTAT:
Joe Perches724ee622010-03-10 15:21:11 -08003529 outparam = UFDCS;
Joe Perchesda273652010-03-10 15:20:52 -08003530 break;
3531 case FDWERRORCLR:
3532 memset(UDRWE, 0, sizeof(*UDRWE));
3533 return 0;
3534 case FDWERRORGET:
Joe Perches724ee622010-03-10 15:21:11 -08003535 outparam = UDRWE;
Joe Perchesda273652010-03-10 15:20:52 -08003536 break;
3537 case FDRAWCMD:
3538 if (type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 return -EINVAL;
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003540 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003541 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003542 set_floppy(drive);
Joe Perches4575b552010-03-10 15:20:55 -08003543 i = raw_cmd_ioctl(cmd, (void __user *)param);
3544 if (i == -EINTR)
3545 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003546 process_fd_request();
3547 return i;
3548 case FDTWADDLE:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003549 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003550 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003551 twaddle();
3552 process_fd_request();
3553 return 0;
3554 default:
3555 return -EINVAL;
3556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557
3558 if (_IOC_DIR(cmd) & _IOC_READ)
3559 return fd_copyout((void __user *)param, outparam, size);
Joe Perchesda273652010-03-10 15:20:52 -08003560
3561 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562}
3563
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003564static int fd_ioctl(struct block_device *bdev, fmode_t mode,
3565 unsigned int cmd, unsigned long param)
3566{
3567 int ret;
3568
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003569 mutex_lock(&floppy_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003570 ret = fd_locked_ioctl(bdev, mode, cmd, param);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003571 mutex_unlock(&floppy_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003572
3573 return ret;
3574}
3575
Al Viro229b53c2017-06-27 15:47:56 -04003576#ifdef CONFIG_COMPAT
3577
3578struct compat_floppy_drive_params {
3579 char cmos;
3580 compat_ulong_t max_dtr;
3581 compat_ulong_t hlt;
3582 compat_ulong_t hut;
3583 compat_ulong_t srt;
3584 compat_ulong_t spinup;
3585 compat_ulong_t spindown;
3586 unsigned char spindown_offset;
3587 unsigned char select_delay;
3588 unsigned char rps;
3589 unsigned char tracks;
3590 compat_ulong_t timeout;
3591 unsigned char interleave_sect;
3592 struct floppy_max_errors max_errors;
3593 char flags;
3594 char read_track;
3595 short autodetect[8];
3596 compat_int_t checkfreq;
3597 compat_int_t native_format;
3598};
3599
3600struct compat_floppy_drive_struct {
3601 signed char flags;
3602 compat_ulong_t spinup_date;
3603 compat_ulong_t select_date;
3604 compat_ulong_t first_read_date;
3605 short probed_format;
3606 short track;
3607 short maxblock;
3608 short maxtrack;
3609 compat_int_t generation;
3610 compat_int_t keep_data;
3611 compat_int_t fd_ref;
3612 compat_int_t fd_device;
3613 compat_int_t last_checked;
3614 compat_caddr_t dmabuf;
3615 compat_int_t bufblocks;
3616};
3617
3618struct compat_floppy_fdc_state {
3619 compat_int_t spec1;
3620 compat_int_t spec2;
3621 compat_int_t dtr;
3622 unsigned char version;
3623 unsigned char dor;
3624 compat_ulong_t address;
3625 unsigned int rawcmd:2;
3626 unsigned int reset:1;
3627 unsigned int need_configure:1;
3628 unsigned int perp_mode:2;
3629 unsigned int has_fifo:1;
3630 unsigned int driver_version;
3631 unsigned char track[4];
3632};
3633
3634struct compat_floppy_write_errors {
3635 unsigned int write_errors;
3636 compat_ulong_t first_error_sector;
3637 compat_int_t first_error_generation;
3638 compat_ulong_t last_error_sector;
3639 compat_int_t last_error_generation;
3640 compat_uint_t badness;
3641};
3642
3643#define FDSETPRM32 _IOW(2, 0x42, struct compat_floppy_struct)
3644#define FDDEFPRM32 _IOW(2, 0x43, struct compat_floppy_struct)
3645#define FDSETDRVPRM32 _IOW(2, 0x90, struct compat_floppy_drive_params)
3646#define FDGETDRVPRM32 _IOR(2, 0x11, struct compat_floppy_drive_params)
3647#define FDGETDRVSTAT32 _IOR(2, 0x12, struct compat_floppy_drive_struct)
3648#define FDPOLLDRVSTAT32 _IOR(2, 0x13, struct compat_floppy_drive_struct)
3649#define FDGETFDCSTAT32 _IOR(2, 0x15, struct compat_floppy_fdc_state)
3650#define FDWERRORGET32 _IOR(2, 0x17, struct compat_floppy_write_errors)
3651
3652static int compat_set_geometry(struct block_device *bdev, fmode_t mode, unsigned int cmd,
3653 struct compat_floppy_struct __user *arg)
3654{
3655 struct floppy_struct v;
3656 int drive, type;
3657 int err;
3658
3659 BUILD_BUG_ON(offsetof(struct floppy_struct, name) !=
3660 offsetof(struct compat_floppy_struct, name));
3661
3662 if (!(mode & (FMODE_WRITE | FMODE_WRITE_IOCTL)))
3663 return -EPERM;
3664
3665 memset(&v, 0, sizeof(struct floppy_struct));
3666 if (copy_from_user(&v, arg, offsetof(struct floppy_struct, name)))
3667 return -EFAULT;
3668
3669 mutex_lock(&floppy_mutex);
3670 drive = (long)bdev->bd_disk->private_data;
3671 type = ITYPE(UDRS->fd_device);
3672 err = set_geometry(cmd == FDSETPRM32 ? FDSETPRM : FDDEFPRM,
3673 &v, drive, type, bdev);
3674 mutex_unlock(&floppy_mutex);
3675 return err;
3676}
3677
3678static int compat_get_prm(int drive,
3679 struct compat_floppy_struct __user *arg)
3680{
3681 struct compat_floppy_struct v;
3682 struct floppy_struct *p;
3683 int err;
3684
3685 memset(&v, 0, sizeof(v));
3686 mutex_lock(&floppy_mutex);
3687 err = get_floppy_geometry(drive, ITYPE(UDRS->fd_device), &p);
3688 if (err) {
3689 mutex_unlock(&floppy_mutex);
3690 return err;
3691 }
3692 memcpy(&v, p, offsetof(struct floppy_struct, name));
3693 mutex_unlock(&floppy_mutex);
3694 if (copy_to_user(arg, &v, sizeof(struct compat_floppy_struct)))
3695 return -EFAULT;
3696 return 0;
3697}
3698
3699static int compat_setdrvprm(int drive,
3700 struct compat_floppy_drive_params __user *arg)
3701{
3702 struct compat_floppy_drive_params v;
3703
3704 if (!capable(CAP_SYS_ADMIN))
3705 return -EPERM;
3706 if (copy_from_user(&v, arg, sizeof(struct compat_floppy_drive_params)))
3707 return -EFAULT;
3708 mutex_lock(&floppy_mutex);
3709 UDP->cmos = v.cmos;
3710 UDP->max_dtr = v.max_dtr;
3711 UDP->hlt = v.hlt;
3712 UDP->hut = v.hut;
3713 UDP->srt = v.srt;
3714 UDP->spinup = v.spinup;
3715 UDP->spindown = v.spindown;
3716 UDP->spindown_offset = v.spindown_offset;
3717 UDP->select_delay = v.select_delay;
3718 UDP->rps = v.rps;
3719 UDP->tracks = v.tracks;
3720 UDP->timeout = v.timeout;
3721 UDP->interleave_sect = v.interleave_sect;
3722 UDP->max_errors = v.max_errors;
3723 UDP->flags = v.flags;
3724 UDP->read_track = v.read_track;
3725 memcpy(UDP->autodetect, v.autodetect, sizeof(v.autodetect));
3726 UDP->checkfreq = v.checkfreq;
3727 UDP->native_format = v.native_format;
3728 mutex_unlock(&floppy_mutex);
3729 return 0;
3730}
3731
3732static int compat_getdrvprm(int drive,
3733 struct compat_floppy_drive_params __user *arg)
3734{
3735 struct compat_floppy_drive_params v;
3736
3737 memset(&v, 0, sizeof(struct compat_floppy_drive_params));
3738 mutex_lock(&floppy_mutex);
3739 v.cmos = UDP->cmos;
3740 v.max_dtr = UDP->max_dtr;
3741 v.hlt = UDP->hlt;
3742 v.hut = UDP->hut;
3743 v.srt = UDP->srt;
3744 v.spinup = UDP->spinup;
3745 v.spindown = UDP->spindown;
3746 v.spindown_offset = UDP->spindown_offset;
3747 v.select_delay = UDP->select_delay;
3748 v.rps = UDP->rps;
3749 v.tracks = UDP->tracks;
3750 v.timeout = UDP->timeout;
3751 v.interleave_sect = UDP->interleave_sect;
3752 v.max_errors = UDP->max_errors;
3753 v.flags = UDP->flags;
3754 v.read_track = UDP->read_track;
3755 memcpy(v.autodetect, UDP->autodetect, sizeof(v.autodetect));
3756 v.checkfreq = UDP->checkfreq;
3757 v.native_format = UDP->native_format;
3758 mutex_unlock(&floppy_mutex);
3759
3760 if (copy_from_user(arg, &v, sizeof(struct compat_floppy_drive_params)))
3761 return -EFAULT;
3762 return 0;
3763}
3764
3765static int compat_getdrvstat(int drive, bool poll,
3766 struct compat_floppy_drive_struct __user *arg)
3767{
3768 struct compat_floppy_drive_struct v;
3769
3770 memset(&v, 0, sizeof(struct compat_floppy_drive_struct));
3771 mutex_lock(&floppy_mutex);
3772
3773 if (poll) {
3774 if (lock_fdc(drive))
3775 goto Eintr;
3776 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
3777 goto Eintr;
3778 process_fd_request();
3779 }
3780 v.spinup_date = UDRS->spinup_date;
3781 v.select_date = UDRS->select_date;
3782 v.first_read_date = UDRS->first_read_date;
3783 v.probed_format = UDRS->probed_format;
3784 v.track = UDRS->track;
3785 v.maxblock = UDRS->maxblock;
3786 v.maxtrack = UDRS->maxtrack;
3787 v.generation = UDRS->generation;
3788 v.keep_data = UDRS->keep_data;
3789 v.fd_ref = UDRS->fd_ref;
3790 v.fd_device = UDRS->fd_device;
3791 v.last_checked = UDRS->last_checked;
3792 v.dmabuf = (uintptr_t)UDRS->dmabuf;
3793 v.bufblocks = UDRS->bufblocks;
3794 mutex_unlock(&floppy_mutex);
3795
3796 if (copy_from_user(arg, &v, sizeof(struct compat_floppy_drive_struct)))
3797 return -EFAULT;
3798 return 0;
3799Eintr:
3800 mutex_unlock(&floppy_mutex);
3801 return -EINTR;
3802}
3803
3804static int compat_getfdcstat(int drive,
3805 struct compat_floppy_fdc_state __user *arg)
3806{
3807 struct compat_floppy_fdc_state v32;
3808 struct floppy_fdc_state v;
3809
3810 mutex_lock(&floppy_mutex);
3811 v = *UFDCS;
3812 mutex_unlock(&floppy_mutex);
3813
3814 memset(&v32, 0, sizeof(struct compat_floppy_fdc_state));
3815 v32.spec1 = v.spec1;
3816 v32.spec2 = v.spec2;
3817 v32.dtr = v.dtr;
3818 v32.version = v.version;
3819 v32.dor = v.dor;
3820 v32.address = v.address;
3821 v32.rawcmd = v.rawcmd;
3822 v32.reset = v.reset;
3823 v32.need_configure = v.need_configure;
3824 v32.perp_mode = v.perp_mode;
3825 v32.has_fifo = v.has_fifo;
3826 v32.driver_version = v.driver_version;
3827 memcpy(v32.track, v.track, 4);
3828 if (copy_to_user(arg, &v32, sizeof(struct compat_floppy_fdc_state)))
3829 return -EFAULT;
3830 return 0;
3831}
3832
3833static int compat_werrorget(int drive,
3834 struct compat_floppy_write_errors __user *arg)
3835{
3836 struct compat_floppy_write_errors v32;
3837 struct floppy_write_errors v;
3838
3839 memset(&v32, 0, sizeof(struct compat_floppy_write_errors));
3840 mutex_lock(&floppy_mutex);
3841 v = *UDRWE;
3842 mutex_unlock(&floppy_mutex);
3843 v32.write_errors = v.write_errors;
3844 v32.first_error_sector = v.first_error_sector;
3845 v32.first_error_generation = v.first_error_generation;
3846 v32.last_error_sector = v.last_error_sector;
3847 v32.last_error_generation = v.last_error_generation;
3848 v32.badness = v.badness;
3849 if (copy_to_user(arg, &v32, sizeof(struct compat_floppy_write_errors)))
3850 return -EFAULT;
3851 return 0;
3852}
3853
3854static int fd_compat_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
3855 unsigned long param)
3856{
3857 int drive = (long)bdev->bd_disk->private_data;
3858 switch (cmd) {
3859 case FDMSGON:
3860 case FDMSGOFF:
3861 case FDSETEMSGTRESH:
3862 case FDFLUSH:
3863 case FDWERRORCLR:
3864 case FDEJECT:
3865 case FDCLRPRM:
3866 case FDFMTBEG:
3867 case FDRESET:
3868 case FDTWADDLE:
3869 return fd_ioctl(bdev, mode, cmd, param);
3870 case FDSETMAXERRS:
3871 case FDGETMAXERRS:
3872 case FDGETDRVTYP:
3873 case FDFMTEND:
3874 case FDFMTTRK:
3875 case FDRAWCMD:
3876 return fd_ioctl(bdev, mode, cmd,
3877 (unsigned long)compat_ptr(param));
3878 case FDSETPRM32:
3879 case FDDEFPRM32:
3880 return compat_set_geometry(bdev, mode, cmd, compat_ptr(param));
3881 case FDGETPRM32:
3882 return compat_get_prm(drive, compat_ptr(param));
3883 case FDSETDRVPRM32:
3884 return compat_setdrvprm(drive, compat_ptr(param));
3885 case FDGETDRVPRM32:
3886 return compat_getdrvprm(drive, compat_ptr(param));
3887 case FDPOLLDRVSTAT32:
3888 return compat_getdrvstat(drive, true, compat_ptr(param));
3889 case FDGETDRVSTAT32:
3890 return compat_getdrvstat(drive, false, compat_ptr(param));
3891 case FDGETFDCSTAT32:
3892 return compat_getfdcstat(drive, compat_ptr(param));
3893 case FDWERRORGET32:
3894 return compat_werrorget(drive, compat_ptr(param));
3895 }
3896 return -EINVAL;
3897}
3898#endif
3899
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900static void __init config_types(void)
3901{
Joe Perchesb46df352010-03-10 15:20:46 -08003902 bool has_drive = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 int drive;
3904
3905 /* read drive info out of physical CMOS */
3906 drive = 0;
3907 if (!UDP->cmos)
3908 UDP->cmos = FLOPPY0_TYPE;
3909 drive = 1;
3910 if (!UDP->cmos && FLOPPY1_TYPE)
3911 UDP->cmos = FLOPPY1_TYPE;
3912
Jesper Juhl06f748c2007-10-16 23:30:57 -07003913 /* FIXME: additional physical CMOS drive detection should go here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914
3915 for (drive = 0; drive < N_DRIVE; drive++) {
3916 unsigned int type = UDP->cmos;
3917 struct floppy_drive_params *params;
3918 const char *name = NULL;
Rasmus Villemoesbcf42992015-12-01 15:54:01 +01003919 char temparea[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920
Tobias Klauser945f3902006-01-08 01:05:11 -08003921 if (type < ARRAY_SIZE(default_drive_params)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 params = &default_drive_params[type].params;
3923 if (type) {
3924 name = default_drive_params[type].name;
3925 allowed_drive_mask |= 1 << drive;
3926 } else
3927 allowed_drive_mask &= ~(1 << drive);
3928 } else {
3929 params = &default_drive_params[0].params;
Rasmus Villemoesbcf42992015-12-01 15:54:01 +01003930 snprintf(temparea, sizeof(temparea),
3931 "unknown type %d (usb?)", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 name = temparea;
3933 }
3934 if (name) {
Joe Perchesb46df352010-03-10 15:20:46 -08003935 const char *prepend;
3936 if (!has_drive) {
3937 prepend = "";
3938 has_drive = true;
3939 pr_info("Floppy drive(s):");
3940 } else {
3941 prepend = ",";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 }
Joe Perchesb46df352010-03-10 15:20:46 -08003943
3944 pr_cont("%s fd%d is %s", prepend, drive, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 }
3946 *UDP = *params;
3947 }
Joe Perchesb46df352010-03-10 15:20:46 -08003948
3949 if (has_drive)
3950 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951}
3952
Al Virodb2a1442013-05-05 21:52:57 -04003953static void floppy_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954{
Al Viroa4af9b42008-03-02 09:27:55 -05003955 int drive = (long)disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003957 mutex_lock(&floppy_mutex);
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003958 mutex_lock(&open_lock);
Jiri Kosinabfa10b82012-05-18 13:50:28 +02003959 if (!UDRS->fd_ref--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 DPRINT("floppy_release with fd_ref == 0");
3961 UDRS->fd_ref = 0;
3962 }
3963 if (!UDRS->fd_ref)
3964 opened_bdev[drive] = NULL;
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003965 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003966 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967}
3968
3969/*
3970 * floppy_open check for aliasing (/dev/fd0 can be the same as
3971 * /dev/PS0 etc), and disallows simultaneous access to the same
3972 * drive with different device numbers.
3973 */
Al Viroa4af9b42008-03-02 09:27:55 -05003974static int floppy_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975{
Al Viroa4af9b42008-03-02 09:27:55 -05003976 int drive = (long)bdev->bd_disk->private_data;
3977 int old_dev, new_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 int try;
3979 int res = -EBUSY;
3980 char *tmp;
3981
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003982 mutex_lock(&floppy_mutex);
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003983 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984 old_dev = UDRS->fd_device;
Al Viroa4af9b42008-03-02 09:27:55 -05003985 if (opened_bdev[drive] && opened_bdev[drive] != bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 goto out2;
3987
3988 if (!UDRS->fd_ref && (UDP->flags & FD_BROKEN_DCL)) {
Joe Perchese0298532010-03-10 15:20:55 -08003989 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
3990 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 }
3992
Jiri Kosinabfa10b82012-05-18 13:50:28 +02003993 UDRS->fd_ref++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994
Al Viroa4af9b42008-03-02 09:27:55 -05003995 opened_bdev[drive] = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
3997 res = -ENXIO;
3998
3999 if (!floppy_track_buffer) {
4000 /* if opening an ED drive, reserve a big buffer,
4001 * else reserve a small one */
4002 if ((UDP->cmos == 6) || (UDP->cmos == 5))
4003 try = 64; /* Only 48 actually useful */
4004 else
4005 try = 32; /* Only 24 actually useful */
4006
4007 tmp = (char *)fd_dma_mem_alloc(1024 * try);
4008 if (!tmp && !floppy_track_buffer) {
4009 try >>= 1; /* buffer only one side */
4010 INFBOUND(try, 16);
4011 tmp = (char *)fd_dma_mem_alloc(1024 * try);
4012 }
Joe Perchesa81ee542010-03-10 15:20:46 -08004013 if (!tmp && !floppy_track_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 fallback_on_nodma_alloc(&tmp, 2048 * try);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 if (!tmp && !floppy_track_buffer) {
4016 DPRINT("Unable to allocate DMA memory\n");
4017 goto out;
4018 }
4019 if (floppy_track_buffer) {
4020 if (tmp)
4021 fd_dma_mem_free((unsigned long)tmp, try * 1024);
4022 } else {
4023 buffer_min = buffer_max = -1;
4024 floppy_track_buffer = tmp;
4025 max_buffer_sectors = try;
4026 }
4027 }
4028
Al Viroa4af9b42008-03-02 09:27:55 -05004029 new_dev = MINOR(bdev->bd_dev);
4030 UDRS->fd_device = new_dev;
4031 set_capacity(disks[drive], floppy_sizes[new_dev]);
4032 if (old_dev != -1 && old_dev != new_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 if (buffer_drive == drive)
4034 buffer_track = -1;
4035 }
4036
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 if (UFDCS->rawcmd == 1)
4038 UFDCS->rawcmd = 2;
4039
Jens Axboef2791e72016-08-25 08:56:51 -06004040 if (!(mode & FMODE_NDELAY)) {
4041 if (mode & (FMODE_READ|FMODE_WRITE)) {
4042 UDRS->last_checked = 0;
4043 clear_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags);
4044 check_disk_change(bdev);
4045 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags))
4046 goto out;
4047 if (test_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags))
4048 goto out;
4049 }
4050 res = -EROFS;
4051 if ((mode & FMODE_WRITE) &&
4052 !test_bit(FD_DISK_WRITABLE_BIT, &UDRS->flags))
4053 goto out;
4054 }
Jes Sorensenb1c82b52006-03-23 03:00:26 -08004055 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02004056 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 return 0;
4058out:
Jiri Kosinabfa10b82012-05-18 13:50:28 +02004059 UDRS->fd_ref--;
4060
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 if (!UDRS->fd_ref)
4062 opened_bdev[drive] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063out2:
Jes Sorensenb1c82b52006-03-23 03:00:26 -08004064 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02004065 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 return res;
4067}
4068
4069/*
4070 * Check if the disk has been changed or if a change has been faked.
4071 */
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004072static unsigned int floppy_check_events(struct gendisk *disk,
4073 unsigned int clearing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074{
4075 int drive = (long)disk->private_data;
4076
Joe Perchese0298532010-03-10 15:20:55 -08004077 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4078 test_bit(FD_VERIFY_BIT, &UDRS->flags))
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004079 return DISK_EVENT_MEDIA_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -08004081 if (time_after(jiffies, UDRS->last_checked + UDP->checkfreq)) {
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01004082 if (lock_fdc(drive))
4083 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08004084 poll_drive(false, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 process_fd_request();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 }
4087
Joe Perchese0298532010-03-10 15:20:55 -08004088 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4089 test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 test_bit(drive, &fake_change) ||
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004091 drive_no_geom(drive))
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004092 return DISK_EVENT_MEDIA_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 return 0;
4094}
4095
4096/*
4097 * This implements "read block 0" for floppy_revalidate().
4098 * Needed for format autodetection, checking whether there is
4099 * a disk in the drive, and whether that disk is writable.
4100 */
4101
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004102struct rb0_cbdata {
4103 int drive;
4104 struct completion complete;
4105};
4106
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02004107static void floppy_rb0_cb(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108{
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004109 struct rb0_cbdata *cbdata = (struct rb0_cbdata *)bio->bi_private;
4110 int drive = cbdata->drive;
4111
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02004112 if (bio->bi_status) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02004113 pr_info("floppy: error %d while reading block 0\n",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02004114 bio->bi_status);
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004115 set_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags);
4116 }
4117 complete(&cbdata->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118}
4119
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004120static int __floppy_read_block_0(struct block_device *bdev, int drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121{
4122 struct bio bio;
4123 struct bio_vec bio_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 struct page *page;
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004125 struct rb0_cbdata cbdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 size_t size;
4127
4128 page = alloc_page(GFP_NOIO);
4129 if (!page) {
4130 process_fd_request();
4131 return -ENOMEM;
4132 }
4133
4134 size = bdev->bd_block_size;
4135 if (!size)
4136 size = 1024;
4137
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004138 cbdata.drive = drive;
4139
Ming Lei3a83f462016-11-22 08:57:21 -07004140 bio_init(&bio, &bio_vec, 1);
Christoph Hellwig74d46992017-08-23 19:10:32 +02004141 bio_set_dev(&bio, bdev);
Ming Lei2c73a602016-11-11 20:05:31 +08004142 bio_add_page(&bio, page, size, 0);
4143
Kent Overstreet4f024f32013-10-11 15:44:27 -07004144 bio.bi_iter.bi_sector = 0;
Jiri Kosina6314a102014-05-28 11:55:23 +02004145 bio.bi_flags |= (1 << BIO_QUIET);
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004146 bio.bi_private = &cbdata;
4147 bio.bi_end_io = floppy_rb0_cb;
Mike Christie95fe6c12016-06-05 14:31:48 -05004148 bio_set_op_attrs(&bio, REQ_OP_READ, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149
Mike Christie4e49ea42016-06-05 14:31:41 -05004150 submit_bio(&bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 process_fd_request();
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004152
4153 init_completion(&cbdata.complete);
4154 wait_for_completion(&cbdata.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155
4156 __free_page(page);
4157
4158 return 0;
4159}
4160
4161/* revalidate the floppy disk, i.e. trigger format autodetection by reading
4162 * the bootblock (block 0). "Autodetection" is also needed to check whether
4163 * there is a disk in the drive at all... Thus we also do it for fixed
4164 * geometry formats */
4165static int floppy_revalidate(struct gendisk *disk)
4166{
4167 int drive = (long)disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 int cf;
4169 int res = 0;
4170
Joe Perchese0298532010-03-10 15:20:55 -08004171 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4172 test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004173 test_bit(drive, &fake_change) ||
4174 drive_no_geom(drive)) {
Stephen Hemminger01b6b672010-06-15 13:21:11 +02004175 if (WARN(atomic_read(&usage_count) == 0,
4176 "VFS: revalidate called on non-open device.\n"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 return -EFAULT;
Stephen Hemminger01b6b672010-06-15 13:21:11 +02004178
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01004179 res = lock_fdc(drive);
4180 if (res)
4181 return res;
Joe Perchese0298532010-03-10 15:20:55 -08004182 cf = (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4183 test_bit(FD_VERIFY_BIT, &UDRS->flags));
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004184 if (!(cf || test_bit(drive, &fake_change) || drive_no_geom(drive))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 process_fd_request(); /*already done by another thread */
4186 return 0;
4187 }
4188 UDRS->maxblock = 0;
4189 UDRS->maxtrack = 0;
4190 if (buffer_drive == drive)
4191 buffer_track = -1;
4192 clear_bit(drive, &fake_change);
Joe Perchese0298532010-03-10 15:20:55 -08004193 clear_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 if (cf)
4195 UDRS->generation++;
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004196 if (drive_no_geom(drive)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 /* auto-sensing */
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004198 res = __floppy_read_block_0(opened_bdev[drive], drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 } else {
4200 if (cf)
Joe Perches74f63f42010-03-10 15:20:58 -08004201 poll_drive(false, FD_RAW_NEED_DISK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 process_fd_request();
4203 }
4204 }
4205 set_capacity(disk, floppy_sizes[UDRS->fd_device]);
4206 return res;
4207}
4208
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07004209static const struct block_device_operations floppy_fops = {
Jesper Juhl06f748c2007-10-16 23:30:57 -07004210 .owner = THIS_MODULE,
Al Viroa4af9b42008-03-02 09:27:55 -05004211 .open = floppy_open,
4212 .release = floppy_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02004213 .ioctl = fd_ioctl,
Jesper Juhl06f748c2007-10-16 23:30:57 -07004214 .getgeo = fd_getgeo,
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004215 .check_events = floppy_check_events,
Jesper Juhl06f748c2007-10-16 23:30:57 -07004216 .revalidate_disk = floppy_revalidate,
Al Viro229b53c2017-06-27 15:47:56 -04004217#ifdef CONFIG_COMPAT
4218 .compat_ioctl = fd_compat_ioctl,
4219#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222/*
4223 * Floppy Driver initialization
4224 * =============================
4225 */
4226
4227/* Determine the floppy disk controller type */
4228/* This routine was written by David C. Niemi */
4229static char __init get_fdc_version(void)
4230{
4231 int r;
4232
4233 output_byte(FD_DUMPREGS); /* 82072 and better know DUMPREGS */
4234 if (FDCS->reset)
4235 return FDC_NONE;
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08004236 r = result();
4237 if (r <= 0x00)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 return FDC_NONE; /* No FDC present ??? */
4239 if ((r == 1) && (reply_buffer[0] == 0x80)) {
Joe Perchesb46df352010-03-10 15:20:46 -08004240 pr_info("FDC %d is an 8272A\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 return FDC_8272A; /* 8272a/765 don't know DUMPREGS */
4242 }
4243 if (r != 10) {
Joe Perchesb46df352010-03-10 15:20:46 -08004244 pr_info("FDC %d init: DUMPREGS: unexpected return of %d bytes.\n",
4245 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 return FDC_UNKNOWN;
4247 }
4248
4249 if (!fdc_configure()) {
Joe Perchesb46df352010-03-10 15:20:46 -08004250 pr_info("FDC %d is an 82072\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 return FDC_82072; /* 82072 doesn't know CONFIGURE */
4252 }
4253
4254 output_byte(FD_PERPENDICULAR);
4255 if (need_more_output() == MORE_OUTPUT) {
4256 output_byte(0);
4257 } else {
Joe Perchesb46df352010-03-10 15:20:46 -08004258 pr_info("FDC %d is an 82072A\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 return FDC_82072A; /* 82072A as found on Sparcs. */
4260 }
4261
4262 output_byte(FD_UNLOCK);
4263 r = result();
4264 if ((r == 1) && (reply_buffer[0] == 0x80)) {
Joe Perchesb46df352010-03-10 15:20:46 -08004265 pr_info("FDC %d is a pre-1991 82077\n", fdc);
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08004266 return FDC_82077_ORIG; /* Pre-1991 82077, doesn't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 * LOCK/UNLOCK */
4268 }
4269 if ((r != 1) || (reply_buffer[0] != 0x00)) {
Joe Perchesb46df352010-03-10 15:20:46 -08004270 pr_info("FDC %d init: UNLOCK: unexpected return of %d bytes.\n",
4271 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 return FDC_UNKNOWN;
4273 }
4274 output_byte(FD_PARTID);
4275 r = result();
4276 if (r != 1) {
Joe Perchesb46df352010-03-10 15:20:46 -08004277 pr_info("FDC %d init: PARTID: unexpected return of %d bytes.\n",
4278 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 return FDC_UNKNOWN;
4280 }
4281 if (reply_buffer[0] == 0x80) {
Joe Perchesb46df352010-03-10 15:20:46 -08004282 pr_info("FDC %d is a post-1991 82077\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 return FDC_82077; /* Revised 82077AA passes all the tests */
4284 }
4285 switch (reply_buffer[0] >> 5) {
4286 case 0x0:
4287 /* Either a 82078-1 or a 82078SL running at 5Volt */
Joe Perchesb46df352010-03-10 15:20:46 -08004288 pr_info("FDC %d is an 82078.\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289 return FDC_82078;
4290 case 0x1:
Joe Perchesb46df352010-03-10 15:20:46 -08004291 pr_info("FDC %d is a 44pin 82078\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 return FDC_82078;
4293 case 0x2:
Joe Perchesb46df352010-03-10 15:20:46 -08004294 pr_info("FDC %d is a S82078B\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 return FDC_S82078B;
4296 case 0x3:
Joe Perchesb46df352010-03-10 15:20:46 -08004297 pr_info("FDC %d is a National Semiconductor PC87306\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 return FDC_87306;
4299 default:
Joe Perchesb46df352010-03-10 15:20:46 -08004300 pr_info("FDC %d init: 82078 variant with unknown PARTID=%d.\n",
4301 fdc, reply_buffer[0] >> 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 return FDC_82078_UNKN;
4303 }
4304} /* get_fdc_version */
4305
4306/* lilo configuration */
4307
4308static void __init floppy_set_flags(int *ints, int param, int param2)
4309{
4310 int i;
4311
4312 for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
4313 if (param)
4314 default_drive_params[i].params.flags |= param2;
4315 else
4316 default_drive_params[i].params.flags &= ~param2;
4317 }
4318 DPRINT("%s flag 0x%x\n", param2 ? "Setting" : "Clearing", param);
4319}
4320
4321static void __init daring(int *ints, int param, int param2)
4322{
4323 int i;
4324
4325 for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
4326 if (param) {
4327 default_drive_params[i].params.select_delay = 0;
4328 default_drive_params[i].params.flags |=
4329 FD_SILENT_DCL_CLEAR;
4330 } else {
4331 default_drive_params[i].params.select_delay =
4332 2 * HZ / 100;
4333 default_drive_params[i].params.flags &=
4334 ~FD_SILENT_DCL_CLEAR;
4335 }
4336 }
4337 DPRINT("Assuming %s floppy hardware\n", param ? "standard" : "broken");
4338}
4339
4340static void __init set_cmos(int *ints, int dummy, int dummy2)
4341{
4342 int current_drive = 0;
4343
4344 if (ints[0] != 2) {
4345 DPRINT("wrong number of parameters for CMOS\n");
4346 return;
4347 }
4348 current_drive = ints[1];
4349 if (current_drive < 0 || current_drive >= 8) {
4350 DPRINT("bad drive for set_cmos\n");
4351 return;
4352 }
4353#if N_FDC > 1
4354 if (current_drive >= 4 && !FDC2)
4355 FDC2 = 0x370;
4356#endif
4357 DP->cmos = ints[2];
4358 DPRINT("setting CMOS code to %d\n", ints[2]);
4359}
4360
4361static struct param_table {
4362 const char *name;
4363 void (*fn) (int *ints, int param, int param2);
4364 int *var;
4365 int def_param;
4366 int param2;
4367} config_params[] __initdata = {
4368 {"allowed_drive_mask", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
4369 {"all_drives", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
4370 {"asus_pci", NULL, &allowed_drive_mask, 0x33, 0},
4371 {"irq", NULL, &FLOPPY_IRQ, 6, 0},
4372 {"dma", NULL, &FLOPPY_DMA, 2, 0},
4373 {"daring", daring, NULL, 1, 0},
4374#if N_FDC > 1
4375 {"two_fdc", NULL, &FDC2, 0x370, 0},
4376 {"one_fdc", NULL, &FDC2, 0, 0},
4377#endif
4378 {"thinkpad", floppy_set_flags, NULL, 1, FD_INVERTED_DCL},
4379 {"broken_dcl", floppy_set_flags, NULL, 1, FD_BROKEN_DCL},
4380 {"messages", floppy_set_flags, NULL, 1, FTD_MSG},
4381 {"silent_dcl_clear", floppy_set_flags, NULL, 1, FD_SILENT_DCL_CLEAR},
4382 {"debug", floppy_set_flags, NULL, 1, FD_DEBUG},
4383 {"nodma", NULL, &can_use_virtual_dma, 1, 0},
4384 {"omnibook", NULL, &can_use_virtual_dma, 1, 0},
4385 {"yesdma", NULL, &can_use_virtual_dma, 0, 0},
4386 {"fifo_depth", NULL, &fifo_depth, 0xa, 0},
4387 {"nofifo", NULL, &no_fifo, 0x20, 0},
4388 {"usefifo", NULL, &no_fifo, 0, 0},
4389 {"cmos", set_cmos, NULL, 0, 0},
4390 {"slow", NULL, &slow_floppy, 1, 0},
4391 {"unexpected_interrupts", NULL, &print_unex, 1, 0},
4392 {"no_unexpected_interrupts", NULL, &print_unex, 0, 0},
4393 {"L40SX", NULL, &print_unex, 0, 0}
4394
4395 EXTRA_FLOPPY_PARAMS
4396};
4397
4398static int __init floppy_setup(char *str)
4399{
4400 int i;
4401 int param;
4402 int ints[11];
4403
4404 str = get_options(str, ARRAY_SIZE(ints), ints);
4405 if (str) {
4406 for (i = 0; i < ARRAY_SIZE(config_params); i++) {
4407 if (strcmp(str, config_params[i].name) == 0) {
4408 if (ints[0])
4409 param = ints[1];
4410 else
4411 param = config_params[i].def_param;
4412 if (config_params[i].fn)
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004413 config_params[i].fn(ints, param,
4414 config_params[i].
4415 param2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416 if (config_params[i].var) {
4417 DPRINT("%s=%d\n", str, param);
4418 *config_params[i].var = param;
4419 }
4420 return 1;
4421 }
4422 }
4423 }
4424 if (str) {
4425 DPRINT("unknown floppy option [%s]\n", str);
4426
4427 DPRINT("allowed options are:");
4428 for (i = 0; i < ARRAY_SIZE(config_params); i++)
Joe Perchesb46df352010-03-10 15:20:46 -08004429 pr_cont(" %s", config_params[i].name);
4430 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431 } else
4432 DPRINT("botched floppy option\n");
Randy Dunlap31c00fc2008-11-13 21:33:24 +00004433 DPRINT("Read Documentation/blockdev/floppy.txt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 return 0;
4435}
4436
4437static int have_no_fdc = -ENODEV;
4438
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004439static ssize_t floppy_cmos_show(struct device *dev,
4440 struct device_attribute *attr, char *buf)
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004441{
Eric Miao71b3e0c2009-01-31 22:47:44 +08004442 struct platform_device *p = to_platform_device(dev);
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004443 int drive;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004444
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004445 drive = p->id;
4446 return sprintf(buf, "%X\n", UDP->cmos);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004447}
Joe Perches48c8cee2010-03-10 15:20:45 -08004448
Stephen Hemmingerbe1c0fb2010-06-15 13:21:11 +02004449static DEVICE_ATTR(cmos, S_IRUGO, floppy_cmos_show, NULL);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004450
Takashi Iwaib7f120b2015-02-02 17:08:45 +01004451static struct attribute *floppy_dev_attrs[] = {
4452 &dev_attr_cmos.attr,
4453 NULL
4454};
4455
4456ATTRIBUTE_GROUPS(floppy_dev);
4457
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458static void floppy_device_release(struct device *dev)
4459{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004460}
4461
Frans Popc90cd332009-07-25 22:24:54 +02004462static int floppy_resume(struct device *dev)
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004463{
4464 int fdc;
4465
4466 for (fdc = 0; fdc < N_FDC; fdc++)
4467 if (FDCS->address != -1)
Joe Perches74f63f42010-03-10 15:20:58 -08004468 user_reset_fdc(-1, FD_RESET_ALWAYS, false);
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004469
4470 return 0;
4471}
4472
Alexey Dobriyan47145212009-12-14 18:00:08 -08004473static const struct dev_pm_ops floppy_pm_ops = {
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004474 .resume = floppy_resume,
Frans Popc90cd332009-07-25 22:24:54 +02004475 .restore = floppy_resume,
4476};
4477
4478static struct platform_driver floppy_driver = {
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004479 .driver = {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004480 .name = "floppy",
4481 .pm = &floppy_pm_ops,
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004482 },
4483};
4484
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004485static struct platform_device floppy_device[N_DRIVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004487static bool floppy_available(int drive)
4488{
4489 if (!(allowed_drive_mask & (1 << drive)))
4490 return false;
4491 if (fdc_state[FDC(drive)].version == FDC_NONE)
4492 return false;
4493 return true;
4494}
4495
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496static struct kobject *floppy_find(dev_t dev, int *part, void *data)
4497{
4498 int drive = (*part & 3) | ((*part & 0x80) >> 5);
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004499 if (drive >= N_DRIVE || !floppy_available(drive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 return NULL;
Tobias Klauser945f3902006-01-08 01:05:11 -08004501 if (((*part >> 2) & 0x1f) >= ARRAY_SIZE(floppy_type))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 return NULL;
4503 *part = 0;
4504 return get_disk(disks[drive]);
4505}
4506
Andi Kleen0cc15d032012-07-02 17:27:04 -07004507static int __init do_floppy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508{
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004509 int i, unit, drive, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510
Stephen Hemminger285203c2010-06-15 13:21:11 +02004511 set_debugt();
4512 interruptjiffies = resultjiffies = jiffies;
4513
Kumar Gala68e1ee62008-09-22 14:41:31 -07004514#if defined(CONFIG_PPC)
Olaf Heringef16b512006-08-31 21:27:41 -07004515 if (check_legacy_ioport(FDC1))
4516 return -ENODEV;
4517#endif
4518
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 raw_cmd = NULL;
4520
Herton Ronaldo Krzesinskib54e1f82012-08-27 20:56:51 -03004521 floppy_wq = alloc_ordered_workqueue("floppy", 0);
4522 if (!floppy_wq)
4523 return -ENOMEM;
4524
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004525 for (drive = 0; drive < N_DRIVE; drive++) {
4526 disks[drive] = alloc_disk(1);
4527 if (!disks[drive]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 err = -ENOMEM;
4529 goto out_put_disk;
4530 }
4531
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004532 disks[drive]->queue = blk_init_queue(do_fd_request, &floppy_lock);
4533 if (!disks[drive]->queue) {
Jens Axboe48821182010-09-22 09:32:36 +02004534 err = -ENOMEM;
Herton Ronaldo Krzesinskib54e1f82012-08-27 20:56:51 -03004535 goto out_put_disk;
Jens Axboe48821182010-09-22 09:32:36 +02004536 }
4537
Christoph Hellwig8fc45042017-06-19 09:26:26 +02004538 blk_queue_bounce_limit(disks[drive]->queue, BLK_BOUNCE_HIGH);
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004539 blk_queue_max_hw_sectors(disks[drive]->queue, 64);
4540 disks[drive]->major = FLOPPY_MAJOR;
4541 disks[drive]->first_minor = TOMINOR(drive);
4542 disks[drive]->fops = &floppy_fops;
4543 sprintf(disks[drive]->disk_name, "fd%d", drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
Geliang Tang68219bd2017-03-24 22:15:10 +08004545 setup_timer(&motor_off_timer[drive], motor_off_callback, drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 }
4547
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 err = register_blkdev(FLOPPY_MAJOR, "fd");
4549 if (err)
Greg Kroah-Hartman8ab5e4c2005-06-20 21:15:16 -07004550 goto out_put_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004552 err = platform_driver_register(&floppy_driver);
4553 if (err)
4554 goto out_unreg_blkdev;
4555
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 blk_register_region(MKDEV(FLOPPY_MAJOR, 0), 256, THIS_MODULE,
4557 floppy_find, NULL, NULL);
4558
4559 for (i = 0; i < 256; i++)
4560 if (ITYPE(i))
4561 floppy_sizes[i] = floppy_type[ITYPE(i)].size;
4562 else
4563 floppy_sizes[i] = MAX_DISK_SIZE << 1;
4564
Joe Perches73507e62010-03-10 15:21:03 -08004565 reschedule_timeout(MAXTIMEOUT, "floppy init");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 config_types();
4567
4568 for (i = 0; i < N_FDC; i++) {
4569 fdc = i;
Joe Perchesb87c9e02010-03-10 15:20:50 -08004570 memset(FDCS, 0, sizeof(*FDCS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 FDCS->dtr = -1;
4572 FDCS->dor = 0x4;
4573#if defined(__sparc__) || defined(__mc68000__)
Joe Perches96534f12010-03-10 15:20:51 -08004574 /*sparcs/sun3x don't have a DOR reset which we can fall back on to */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575#ifdef __mc68000__
4576 if (MACH_IS_SUN3X)
4577#endif
4578 FDCS->version = FDC_82072A;
4579#endif
4580 }
4581
4582 use_virtual_dma = can_use_virtual_dma & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583 fdc_state[0].address = FDC1;
4584 if (fdc_state[0].address == -1) {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004585 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 err = -ENODEV;
4587 goto out_unreg_region;
4588 }
4589#if N_FDC > 1
4590 fdc_state[1].address = FDC2;
4591#endif
4592
4593 fdc = 0; /* reset fdc in case of unexpected interrupt */
4594 err = floppy_grab_irq_and_dma();
4595 if (err) {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004596 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597 err = -EBUSY;
4598 goto out_unreg_region;
4599 }
4600
4601 /* initialise drive state */
4602 for (drive = 0; drive < N_DRIVE; drive++) {
Joe Perchesb87c9e02010-03-10 15:20:50 -08004603 memset(UDRS, 0, sizeof(*UDRS));
4604 memset(UDRWE, 0, sizeof(*UDRWE));
Joe Perchese0298532010-03-10 15:20:55 -08004605 set_bit(FD_DISK_NEWCHANGE_BIT, &UDRS->flags);
4606 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
4607 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004608 UDRS->fd_device = -1;
4609 floppy_track_buffer = NULL;
4610 max_buffer_sectors = 0;
4611 }
4612 /*
4613 * Small 10 msec delay to let through any interrupt that
4614 * initialization might have triggered, to not
4615 * confuse detection:
4616 */
4617 msleep(10);
4618
4619 for (i = 0; i < N_FDC; i++) {
4620 fdc = i;
4621 FDCS->driver_version = FD_DRIVER_VERSION;
4622 for (unit = 0; unit < 4; unit++)
4623 FDCS->track[unit] = 0;
4624 if (FDCS->address == -1)
4625 continue;
4626 FDCS->rawcmd = 2;
Joe Perches74f63f42010-03-10 15:20:58 -08004627 if (user_reset_fdc(-1, FD_RESET_ALWAYS, false)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628 /* free ioports reserved by floppy_grab_irq_and_dma() */
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004629 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004630 FDCS->address = -1;
4631 FDCS->version = FDC_NONE;
4632 continue;
4633 }
4634 /* Try to determine the floppy controller type */
4635 FDCS->version = get_fdc_version();
4636 if (FDCS->version == FDC_NONE) {
4637 /* free ioports reserved by floppy_grab_irq_and_dma() */
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004638 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004639 FDCS->address = -1;
4640 continue;
4641 }
4642 if (can_use_virtual_dma == 2 && FDCS->version < FDC_82072A)
4643 can_use_virtual_dma = 0;
4644
4645 have_no_fdc = 0;
4646 /* Not all FDCs seem to be able to handle the version command
4647 * properly, so force a reset for the standard FDC clones,
4648 * to avoid interrupt garbage.
4649 */
Joe Perches74f63f42010-03-10 15:20:58 -08004650 user_reset_fdc(-1, FD_RESET_ALWAYS, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651 }
4652 fdc = 0;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004653 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 current_drive = 0;
Joe Perches29f1c782010-03-10 15:21:00 -08004655 initialized = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004656 if (have_no_fdc) {
4657 DPRINT("no floppy controllers found\n");
4658 err = have_no_fdc;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004659 goto out_release_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 }
4661
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 for (drive = 0; drive < N_DRIVE; drive++) {
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004663 if (!floppy_available(drive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 continue;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004665
4666 floppy_device[drive].name = floppy_device_name;
4667 floppy_device[drive].id = drive;
4668 floppy_device[drive].dev.release = floppy_device_release;
Takashi Iwaib7f120b2015-02-02 17:08:45 +01004669 floppy_device[drive].dev.groups = floppy_dev_groups;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004670
4671 err = platform_device_register(&floppy_device[drive]);
4672 if (err)
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004673 goto out_remove_drives;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004674
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 /* to be cleaned up... */
4676 disks[drive]->private_data = (void *)(long)drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 disks[drive]->flags |= GENHD_FL_REMOVABLE;
Dan Williams0d52c7562016-06-15 19:44:20 -07004678 device_add_disk(&floppy_device[drive].dev, disks[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004679 }
4680
4681 return 0;
4682
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004683out_remove_drives:
4684 while (drive--) {
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004685 if (floppy_available(drive)) {
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004686 del_gendisk(disks[drive]);
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004687 platform_device_unregister(&floppy_device[drive]);
4688 }
4689 }
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004690out_release_dma:
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004691 if (atomic_read(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 floppy_release_irq_and_dma();
4693out_unreg_region:
4694 blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004695 platform_driver_unregister(&floppy_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696out_unreg_blkdev:
4697 unregister_blkdev(FLOPPY_MAJOR, "fd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698out_put_disk:
Jiri Kosinaeac7cc52012-11-06 11:47:13 +01004699 destroy_workqueue(floppy_wq);
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004700 for (drive = 0; drive < N_DRIVE; drive++) {
4701 if (!disks[drive])
4702 break;
4703 if (disks[drive]->queue) {
4704 del_timer_sync(&motor_off_timer[drive]);
4705 blk_cleanup_queue(disks[drive]->queue);
4706 disks[drive]->queue = NULL;
Vivek Goyal3f9a5aa2012-02-08 20:03:38 +01004707 }
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004708 put_disk(disks[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 }
4710 return err;
4711}
4712
Andi Kleen0cc15d032012-07-02 17:27:04 -07004713#ifndef MODULE
4714static __init void floppy_async_init(void *data, async_cookie_t cookie)
4715{
4716 do_floppy_init();
4717}
4718#endif
4719
4720static int __init floppy_init(void)
4721{
4722#ifdef MODULE
4723 return do_floppy_init();
4724#else
4725 /* Don't hold up the bootup by the floppy initialization */
4726 async_schedule(floppy_async_init, NULL);
4727 return 0;
4728#endif
4729}
4730
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004731static const struct io_region {
4732 int offset;
4733 int size;
4734} io_regions[] = {
4735 { 2, 1 },
4736 /* address + 3 is sometimes reserved by pnp bios for motherboard */
4737 { 4, 2 },
4738 /* address + 6 is reserved, and may be taken by IDE.
4739 * Unfortunately, Adaptec doesn't know this :-(, */
4740 { 7, 1 },
4741};
4742
4743static void floppy_release_allocated_regions(int fdc, const struct io_region *p)
4744{
4745 while (p != io_regions) {
4746 p--;
4747 release_region(FDCS->address + p->offset, p->size);
4748 }
4749}
4750
4751#define ARRAY_END(X) (&((X)[ARRAY_SIZE(X)]))
4752
4753static int floppy_request_regions(int fdc)
4754{
4755 const struct io_region *p;
4756
4757 for (p = io_regions; p < ARRAY_END(io_regions); p++) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004758 if (!request_region(FDCS->address + p->offset,
4759 p->size, "floppy")) {
4760 DPRINT("Floppy io-port 0x%04lx in use\n",
4761 FDCS->address + p->offset);
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004762 floppy_release_allocated_regions(fdc, p);
4763 return -EBUSY;
4764 }
4765 }
4766 return 0;
4767}
4768
4769static void floppy_release_regions(int fdc)
4770{
4771 floppy_release_allocated_regions(fdc, ARRAY_END(io_regions));
4772}
4773
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774static int floppy_grab_irq_and_dma(void)
4775{
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004776 if (atomic_inc_return(&usage_count) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777 return 0;
Ingo Molnar6dc659d2006-03-26 01:36:54 -08004778
4779 /*
4780 * We might have scheduled a free_irq(), wait it to
4781 * drain first:
4782 */
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004783 flush_workqueue(floppy_wq);
Ingo Molnar6dc659d2006-03-26 01:36:54 -08004784
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785 if (fd_request_irq()) {
4786 DPRINT("Unable to grab IRQ%d for the floppy driver\n",
4787 FLOPPY_IRQ);
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004788 atomic_dec(&usage_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 return -1;
4790 }
4791 if (fd_request_dma()) {
4792 DPRINT("Unable to grab DMA%d for the floppy driver\n",
4793 FLOPPY_DMA);
Jan Beulich2e9c47c2007-10-16 23:27:32 -07004794 if (can_use_virtual_dma & 2)
4795 use_virtual_dma = can_use_virtual_dma = 1;
4796 if (!(can_use_virtual_dma & 1)) {
4797 fd_free_irq();
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004798 atomic_dec(&usage_count);
Jan Beulich2e9c47c2007-10-16 23:27:32 -07004799 return -1;
4800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801 }
4802
4803 for (fdc = 0; fdc < N_FDC; fdc++) {
4804 if (FDCS->address != -1) {
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004805 if (floppy_request_regions(fdc))
4806 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 }
4808 }
4809 for (fdc = 0; fdc < N_FDC; fdc++) {
4810 if (FDCS->address != -1) {
4811 reset_fdc_info(1);
4812 fd_outb(FDCS->dor, FD_DOR);
4813 }
4814 }
4815 fdc = 0;
4816 set_dor(0, ~0, 8); /* avoid immediate interrupt */
4817
4818 for (fdc = 0; fdc < N_FDC; fdc++)
4819 if (FDCS->address != -1)
4820 fd_outb(FDCS->dor, FD_DOR);
4821 /*
Jesper Juhl06f748c2007-10-16 23:30:57 -07004822 * The driver will try and free resources and relies on us
4823 * to know if they were allocated or not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 */
4825 fdc = 0;
4826 irqdma_allocated = 1;
4827 return 0;
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004828cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 fd_free_irq();
4830 fd_free_dma();
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004831 while (--fdc >= 0)
4832 floppy_release_regions(fdc);
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004833 atomic_dec(&usage_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 return -1;
4835}
4836
4837static void floppy_release_irq_and_dma(void)
4838{
4839 int old_fdc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840#ifndef __sparc__
4841 int drive;
4842#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 long tmpsize;
4844 unsigned long tmpaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004845
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004846 if (!atomic_dec_and_test(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847 return;
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004848
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849 if (irqdma_allocated) {
4850 fd_disable_dma();
4851 fd_free_dma();
Ingo Molnar3e541a42006-07-03 00:24:23 -07004852 fd_free_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 irqdma_allocated = 0;
4854 }
4855 set_dor(0, ~0, 8);
4856#if N_FDC > 1
4857 set_dor(1, ~8, 0);
4858#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859
4860 if (floppy_track_buffer && max_buffer_sectors) {
4861 tmpsize = max_buffer_sectors * 1024;
4862 tmpaddr = (unsigned long)floppy_track_buffer;
4863 floppy_track_buffer = NULL;
4864 max_buffer_sectors = 0;
4865 buffer_min = buffer_max = -1;
4866 fd_dma_mem_free(tmpaddr, tmpsize);
4867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868#ifndef __sparc__
4869 for (drive = 0; drive < N_FDC * 4; drive++)
4870 if (timer_pending(motor_off_timer + drive))
Joe Perchesb46df352010-03-10 15:20:46 -08004871 pr_info("motor off timer %d still active\n", drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872#endif
4873
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004874 if (delayed_work_pending(&fd_timeout))
Joe Perchesb46df352010-03-10 15:20:46 -08004875 pr_info("floppy timer still active:%s\n", timeout_message);
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004876 if (delayed_work_pending(&fd_timer))
Joe Perchesb46df352010-03-10 15:20:46 -08004877 pr_info("auxiliary floppy timer still active\n");
David Howells365970a2006-11-22 14:54:49 +00004878 if (work_pending(&floppy_work))
Joe Perchesb46df352010-03-10 15:20:46 -08004879 pr_info("work still pending\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 old_fdc = fdc;
4881 for (fdc = 0; fdc < N_FDC; fdc++)
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004882 if (FDCS->address != -1)
4883 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 fdc = old_fdc;
4885}
4886
4887#ifdef MODULE
4888
4889static char *floppy;
4890
Linus Torvalds1da177e2005-04-16 15:20:36 -07004891static void __init parse_floppy_cfg_string(char *cfg)
4892{
4893 char *ptr;
4894
4895 while (*cfg) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004896 ptr = cfg;
4897 while (*cfg && *cfg != ' ' && *cfg != '\t')
4898 cfg++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 if (*cfg) {
4900 *cfg = '\0';
4901 cfg++;
4902 }
4903 if (*ptr)
4904 floppy_setup(ptr);
4905 }
4906}
4907
Jon Schindler7afea3b2008-04-29 00:59:21 -07004908static int __init floppy_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909{
4910 if (floppy)
4911 parse_floppy_cfg_string(floppy);
4912 return floppy_init();
4913}
Jon Schindler7afea3b2008-04-29 00:59:21 -07004914module_init(floppy_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
Jon Schindler7afea3b2008-04-29 00:59:21 -07004916static void __exit floppy_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917{
4918 int drive;
4919
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
4921 unregister_blkdev(FLOPPY_MAJOR, "fd");
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004922 platform_driver_unregister(&floppy_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004923
Jiri Kosinaeac7cc52012-11-06 11:47:13 +01004924 destroy_workqueue(floppy_wq);
4925
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 for (drive = 0; drive < N_DRIVE; drive++) {
4927 del_timer_sync(&motor_off_timer[drive]);
4928
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004929 if (floppy_available(drive)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004930 del_gendisk(disks[drive]);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004931 platform_device_unregister(&floppy_device[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932 }
Jens Axboe48821182010-09-22 09:32:36 +02004933 blk_cleanup_queue(disks[drive]->queue);
Vivek Goyal4609dff2012-02-08 20:03:39 +01004934
4935 /*
4936 * These disks have not called add_disk(). Don't put down
4937 * queue reference in put_disk().
4938 */
4939 if (!(allowed_drive_mask & (1 << drive)) ||
4940 fdc_state[FDC(drive)].version == FDC_NONE)
4941 disks[drive]->queue = NULL;
4942
Vivek Goyald017bf62010-11-06 08:16:05 -04004943 put_disk(disks[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004946 cancel_delayed_work_sync(&fd_timeout);
4947 cancel_delayed_work_sync(&fd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004948
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004949 if (atomic_read(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004950 floppy_release_irq_and_dma();
4951
4952 /* eject disk, if any */
4953 fd_eject(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954}
Joe Perches48c8cee2010-03-10 15:20:45 -08004955
Jon Schindler7afea3b2008-04-29 00:59:21 -07004956module_exit(floppy_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004957
4958module_param(floppy, charp, 0);
4959module_param(FLOPPY_IRQ, int, 0);
4960module_param(FLOPPY_DMA, int, 0);
4961MODULE_AUTHOR("Alain L. Knaff");
4962MODULE_SUPPORTED_DEVICE("fd");
4963MODULE_LICENSE("GPL");
4964
Scott James Remnant83f9ef42009-04-02 16:56:47 -07004965/* This doesn't actually get used other than for module information */
4966static const struct pnp_device_id floppy_pnpids[] = {
Joe Perches48c8cee2010-03-10 15:20:45 -08004967 {"PNP0700", 0},
4968 {}
Scott James Remnant83f9ef42009-04-02 16:56:47 -07004969};
Joe Perches48c8cee2010-03-10 15:20:45 -08004970
Scott James Remnant83f9ef42009-04-02 16:56:47 -07004971MODULE_DEVICE_TABLE(pnp, floppy_pnpids);
4972
Linus Torvalds1da177e2005-04-16 15:20:36 -07004973#else
4974
4975__setup("floppy=", floppy_setup);
4976module_init(floppy_init)
4977#endif
4978
4979MODULE_ALIAS_BLOCKDEV_MAJOR(FLOPPY_MAJOR);