blob: eeb4be8d000bbce5b2444945d0448cc124b92f93 [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
Omar Sandovala9f38e12018-10-15 09:21:34 -0600255#include <linux/blk-mq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#include <linux/blkpg.h>
257#include <linux/cdrom.h> /* for the compatibility eject ioctl */
258#include <linux/completion.h>
259
Omar Sandovala9f38e12018-10-15 09:21:34 -0600260static LIST_HEAD(floppy_reqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261static struct request *current_req;
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];
Omar Sandovala9f38e12018-10-15 09:21:34 -0600417static struct blk_mq_tag_set tag_sets[N_DRIVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418static struct block_device *opened_bdev[N_DRIVE];
Jes Sorensenb1c82b52006-03-23 03:00:26 -0800419static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420static struct floppy_raw_cmd *raw_cmd, default_raw_cmd;
421
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 */
Kees Cookb1bf4212017-10-04 17:49:29 -0700906static void motor_off_callback(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Kees Cookb1bf4212017-10-04 17:49:29 -0700908 unsigned long nr = t - motor_off_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 unsigned char mask = ~(0x10 << UNIT(nr));
910
Kees Cookb1bf4212017-10-04 17:49:29 -0700911 if (WARN_ON_ONCE(nr >= N_DRIVE))
912 return;
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 set_dor(FDC(nr), mask, 0);
915}
916
917/* schedules motor off */
918static void floppy_off(unsigned int drive)
919{
920 unsigned long volatile delta;
Jesper Juhlfdc1ca82007-10-16 23:30:58 -0700921 int fdc = FDC(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 if (!(FDCS->dor & (0x10 << UNIT(drive))))
924 return;
925
926 del_timer(motor_off_timer + drive);
927
928 /* make spindle stop in a position which minimizes spinup time
929 * next time */
930 if (UDP->rps) {
931 delta = jiffies - UDRS->first_read_date + HZ -
932 UDP->spindown_offset;
933 delta = ((delta * UDP->rps) % HZ) / UDP->rps;
934 motor_off_timer[drive].expires =
935 jiffies + UDP->spindown - delta;
936 }
937 add_timer(motor_off_timer + drive);
938}
939
940/*
941 * cycle through all N_DRIVE floppy drives, for disk change testing.
942 * stopping at current drive. This is done before any long operation, to
943 * be sure to have up to date disk change information.
944 */
945static void scandrives(void)
946{
Jesper Juhl06f748c2007-10-16 23:30:57 -0700947 int i;
948 int drive;
949 int saved_drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 if (DP->select_delay)
952 return;
953
954 saved_drive = current_drive;
955 for (i = 0; i < N_DRIVE; i++) {
956 drive = (saved_drive + i + 1) % N_DRIVE;
957 if (UDRS->fd_ref == 0 || UDP->select_delay != 0)
958 continue; /* skip closed drives */
959 set_fdc(drive);
960 if (!(set_dor(fdc, ~3, UNIT(drive) | (0x10 << UNIT(drive))) &
961 (0x10 << UNIT(drive))))
962 /* switch the motor off again, if it was off to
963 * begin with */
964 set_dor(fdc, ~(0x10 << UNIT(drive)), 0);
965 }
966 set_fdc(saved_drive);
967}
968
969static void empty(void)
970{
971}
972
Tejun Heo75ddb382014-03-07 10:24:48 -0500973static void (*floppy_work_fn)(void);
974
975static void floppy_work_workfn(struct work_struct *work)
976{
977 floppy_work_fn();
978}
979
980static DECLARE_WORK(floppy_work, floppy_work_workfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Joe Perches48c8cee2010-03-10 15:20:45 -0800982static void schedule_bh(void (*handler)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200984 WARN_ON(work_pending(&floppy_work));
985
Tejun Heo75ddb382014-03-07 10:24:48 -0500986 floppy_work_fn = handler;
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200987 queue_work(floppy_wq, &floppy_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
Tejun Heo75ddb382014-03-07 10:24:48 -0500990static void (*fd_timer_fn)(void) = NULL;
991
992static void fd_timer_workfn(struct work_struct *work)
993{
994 fd_timer_fn();
995}
996
997static DECLARE_DELAYED_WORK(fd_timer, fd_timer_workfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999static void cancel_activity(void)
1000{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 do_floppy = NULL;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001002 cancel_delayed_work_sync(&fd_timer);
1003 cancel_work_sync(&floppy_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004}
1005
1006/* this function makes sure that the disk stays in the drive during the
1007 * transfer */
Tejun Heo75ddb382014-03-07 10:24:48 -05001008static void fd_watchdog(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
Joe Perches87f530d2010-03-10 15:20:54 -08001010 debug_dcl(DP->flags, "calling disk change from watchdog\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 if (disk_change(current_drive)) {
1013 DPRINT("disk removed during i/o\n");
1014 cancel_activity();
1015 cont->done(0);
1016 reset_fdc();
1017 } else {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001018 cancel_delayed_work(&fd_timer);
Tejun Heo75ddb382014-03-07 10:24:48 -05001019 fd_timer_fn = fd_watchdog;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001020 queue_delayed_work(floppy_wq, &fd_timer, HZ / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
1022}
1023
1024static void main_command_interrupt(void)
1025{
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001026 cancel_delayed_work(&fd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 cont->interrupt();
1028}
1029
1030/* waits for a delay (spinup or select) to pass */
Tejun Heo75ddb382014-03-07 10:24:48 -05001031static int fd_wait_for_completion(unsigned long expires,
1032 void (*function)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
1034 if (FDCS->reset) {
1035 reset_fdc(); /* do the reset during sleep to win time
1036 * if we don't need to sleep, it's a good
1037 * occasion anyways */
1038 return 1;
1039 }
1040
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001041 if (time_before(jiffies, expires)) {
1042 cancel_delayed_work(&fd_timer);
Tejun Heo75ddb382014-03-07 10:24:48 -05001043 fd_timer_fn = function;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001044 queue_delayed_work(floppy_wq, &fd_timer, expires - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return 1;
1046 }
1047 return 0;
1048}
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050static void setup_DMA(void)
1051{
1052 unsigned long f;
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (raw_cmd->length == 0) {
1055 int i;
1056
Joe Perchesb46df352010-03-10 15:20:46 -08001057 pr_info("zero dma transfer size:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 for (i = 0; i < raw_cmd->cmd_count; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001059 pr_cont("%x,", raw_cmd->cmd[i]);
1060 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 cont->done(0);
1062 FDCS->reset = 1;
1063 return;
1064 }
1065 if (((unsigned long)raw_cmd->kernel_data) % 512) {
Joe Perchesb46df352010-03-10 15:20:46 -08001066 pr_info("non aligned address: %p\n", raw_cmd->kernel_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 cont->done(0);
1068 FDCS->reset = 1;
1069 return;
1070 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 f = claim_dma_lock();
1072 fd_disable_dma();
1073#ifdef fd_dma_setup
1074 if (fd_dma_setup(raw_cmd->kernel_data, raw_cmd->length,
1075 (raw_cmd->flags & FD_RAW_READ) ?
1076 DMA_MODE_READ : DMA_MODE_WRITE, FDCS->address) < 0) {
1077 release_dma_lock(f);
1078 cont->done(0);
1079 FDCS->reset = 1;
1080 return;
1081 }
1082 release_dma_lock(f);
1083#else
1084 fd_clear_dma_ff();
1085 fd_cacheflush(raw_cmd->kernel_data, raw_cmd->length);
1086 fd_set_dma_mode((raw_cmd->flags & FD_RAW_READ) ?
1087 DMA_MODE_READ : DMA_MODE_WRITE);
1088 fd_set_dma_addr(raw_cmd->kernel_data);
1089 fd_set_dma_count(raw_cmd->length);
1090 virtual_dma_port = FDCS->address;
1091 fd_enable_dma();
1092 release_dma_lock(f);
1093#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094}
1095
1096static void show_floppy(void);
1097
1098/* waits until the fdc becomes ready */
1099static int wait_til_ready(void)
1100{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001101 int status;
1102 int counter;
1103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if (FDCS->reset)
1105 return -1;
1106 for (counter = 0; counter < 10000; counter++) {
1107 status = fd_inb(FD_STATUS);
1108 if (status & STATUS_READY)
1109 return status;
1110 }
Joe Perches29f1c782010-03-10 15:21:00 -08001111 if (initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 DPRINT("Getstatus times out (%x) on fdc %d\n", status, fdc);
1113 show_floppy();
1114 }
1115 FDCS->reset = 1;
1116 return -1;
1117}
1118
1119/* sends a command byte to the fdc */
1120static int output_byte(char byte)
1121{
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001122 int status = wait_til_ready();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001124 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 return -1;
Joe Perches57584c52010-03-10 15:21:00 -08001126
1127 if (is_ready_state(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 fd_outb(byte, FD_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 output_log[output_log_pos].data = byte;
1130 output_log[output_log_pos].status = status;
1131 output_log[output_log_pos].jiffies = jiffies;
1132 output_log_pos = (output_log_pos + 1) % OLOGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return 0;
1134 }
1135 FDCS->reset = 1;
Joe Perches29f1c782010-03-10 15:21:00 -08001136 if (initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 DPRINT("Unable to send byte %x to FDC. Fdc=%x Status=%x\n",
1138 byte, fdc, status);
1139 show_floppy();
1140 }
1141 return -1;
1142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144/* gets the response from the fdc */
1145static int result(void)
1146{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001147 int i;
1148 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 for (i = 0; i < MAX_REPLIES; i++) {
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001151 status = wait_til_ready();
1152 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 break;
1154 status &= STATUS_DIR | STATUS_READY | STATUS_BUSY | STATUS_DMA;
1155 if ((status & ~STATUS_BUSY) == STATUS_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 resultjiffies = jiffies;
1157 resultsize = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 return i;
1159 }
1160 if (status == (STATUS_DIR | STATUS_READY | STATUS_BUSY))
1161 reply_buffer[i] = fd_inb(FD_DATA);
1162 else
1163 break;
1164 }
Joe Perches29f1c782010-03-10 15:21:00 -08001165 if (initialized) {
1166 DPRINT("get result error. Fdc=%d Last status=%x Read bytes=%d\n",
1167 fdc, status, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 show_floppy();
1169 }
1170 FDCS->reset = 1;
1171 return -1;
1172}
1173
1174#define MORE_OUTPUT -2
1175/* does the fdc need more output? */
1176static int need_more_output(void)
1177{
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001178 int status = wait_til_ready();
Jesper Juhl06f748c2007-10-16 23:30:57 -07001179
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001180 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return -1;
Joe Perches57584c52010-03-10 15:21:00 -08001182
1183 if (is_ready_state(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 return MORE_OUTPUT;
Joe Perches57584c52010-03-10 15:21:00 -08001185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return result();
1187}
1188
1189/* Set perpendicular mode as required, based on data rate, if supported.
1190 * 82077 Now tested. 1Mbps data rate only possible with 82077-1.
1191 */
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02001192static void perpendicular_mode(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
1194 unsigned char perp_mode;
1195
1196 if (raw_cmd->rate & 0x40) {
1197 switch (raw_cmd->rate & 3) {
1198 case 0:
1199 perp_mode = 2;
1200 break;
1201 case 3:
1202 perp_mode = 3;
1203 break;
1204 default:
1205 DPRINT("Invalid data rate for perpendicular mode!\n");
1206 cont->done(0);
Joe Perchesbb57f0c62010-03-10 15:20:50 -08001207 FDCS->reset = 1;
1208 /*
1209 * convenient way to return to
1210 * redo without too much hassle
1211 * (deep stack et al.)
1212 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return;
1214 }
1215 } else
1216 perp_mode = 0;
1217
1218 if (FDCS->perp_mode == perp_mode)
1219 return;
1220 if (FDCS->version >= FDC_82077_ORIG) {
1221 output_byte(FD_PERPENDICULAR);
1222 output_byte(perp_mode);
1223 FDCS->perp_mode = perp_mode;
1224 } else if (perp_mode) {
1225 DPRINT("perpendicular mode not supported by this FDC.\n");
1226 }
1227} /* perpendicular_mode */
1228
1229static int fifo_depth = 0xa;
1230static int no_fifo;
1231
1232static int fdc_configure(void)
1233{
1234 /* Turn on FIFO */
1235 output_byte(FD_CONFIGURE);
1236 if (need_more_output() != MORE_OUTPUT)
1237 return 0;
1238 output_byte(0);
1239 output_byte(0x10 | (no_fifo & 0x20) | (fifo_depth & 0xf));
1240 output_byte(0); /* pre-compensation from track
1241 0 upwards */
1242 return 1;
1243}
1244
1245#define NOMINAL_DTR 500
1246
1247/* Issue a "SPECIFY" command to set the step rate time, head unload time,
1248 * head load time, and DMA disable flag to values needed by floppy.
1249 *
1250 * The value "dtr" is the data transfer rate in Kbps. It is needed
1251 * to account for the data rate-based scaling done by the 82072 and 82077
1252 * FDC types. This parameter is ignored for other types of FDCs (i.e.
1253 * 8272a).
1254 *
1255 * Note that changing the data transfer rate has a (probably deleterious)
1256 * effect on the parameters subject to scaling for 82072/82077 FDCs, so
1257 * fdc_specify is called again after each data transfer rate
1258 * change.
1259 *
1260 * srt: 1000 to 16000 in microseconds
1261 * hut: 16 to 240 milliseconds
1262 * hlt: 2 to 254 milliseconds
1263 *
1264 * These values are rounded up to the next highest available delay time.
1265 */
1266static void fdc_specify(void)
1267{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001268 unsigned char spec1;
1269 unsigned char spec2;
1270 unsigned long srt;
1271 unsigned long hlt;
1272 unsigned long hut;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 unsigned long dtr = NOMINAL_DTR;
1274 unsigned long scale_dtr = NOMINAL_DTR;
1275 int hlt_max_code = 0x7f;
1276 int hut_max_code = 0xf;
1277
1278 if (FDCS->need_configure && FDCS->version >= FDC_82072A) {
1279 fdc_configure();
1280 FDCS->need_configure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
1282
1283 switch (raw_cmd->rate & 0x03) {
1284 case 3:
1285 dtr = 1000;
1286 break;
1287 case 1:
1288 dtr = 300;
1289 if (FDCS->version >= FDC_82078) {
1290 /* chose the default rate table, not the one
1291 * where 1 = 2 Mbps */
1292 output_byte(FD_DRIVESPEC);
1293 if (need_more_output() == MORE_OUTPUT) {
1294 output_byte(UNIT(current_drive));
1295 output_byte(0xc0);
1296 }
1297 }
1298 break;
1299 case 2:
1300 dtr = 250;
1301 break;
1302 }
1303
1304 if (FDCS->version >= FDC_82072) {
1305 scale_dtr = dtr;
1306 hlt_max_code = 0x00; /* 0==256msec*dtr0/dtr (not linear!) */
1307 hut_max_code = 0x0; /* 0==256msec*dtr0/dtr (not linear!) */
1308 }
1309
1310 /* Convert step rate from microseconds to milliseconds and 4 bits */
Julia Lawall061837b2008-09-22 14:57:16 -07001311 srt = 16 - DIV_ROUND_UP(DP->srt * scale_dtr / 1000, NOMINAL_DTR);
Joe Perchesa81ee542010-03-10 15:20:46 -08001312 if (slow_floppy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 srt = srt / 4;
Joe Perchesa81ee542010-03-10 15:20:46 -08001314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 SUPBOUND(srt, 0xf);
1316 INFBOUND(srt, 0);
1317
Julia Lawall061837b2008-09-22 14:57:16 -07001318 hlt = DIV_ROUND_UP(DP->hlt * scale_dtr / 2, NOMINAL_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 if (hlt < 0x01)
1320 hlt = 0x01;
1321 else if (hlt > 0x7f)
1322 hlt = hlt_max_code;
1323
Julia Lawall061837b2008-09-22 14:57:16 -07001324 hut = DIV_ROUND_UP(DP->hut * scale_dtr / 16, NOMINAL_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 if (hut < 0x1)
1326 hut = 0x1;
1327 else if (hut > 0xf)
1328 hut = hut_max_code;
1329
1330 spec1 = (srt << 4) | hut;
1331 spec2 = (hlt << 1) | (use_virtual_dma & 1);
1332
1333 /* If these parameters did not change, just return with success */
1334 if (FDCS->spec1 != spec1 || FDCS->spec2 != spec2) {
1335 /* Go ahead and set spec1 and spec2 */
1336 output_byte(FD_SPECIFY);
1337 output_byte(FDCS->spec1 = spec1);
1338 output_byte(FDCS->spec2 = spec2);
1339 }
1340} /* fdc_specify */
1341
1342/* Set the FDC's data transfer rate on behalf of the specified drive.
1343 * NOTE: with 82072/82077 FDCs, changing the data rate requires a reissue
1344 * of the specify command (i.e. using the fdc_specify function).
1345 */
1346static int fdc_dtr(void)
1347{
1348 /* If data rate not already set to desired value, set it. */
1349 if ((raw_cmd->rate & 3) == FDCS->dtr)
1350 return 0;
1351
1352 /* Set dtr */
1353 fd_outb(raw_cmd->rate & 3, FD_DCR);
1354
1355 /* TODO: some FDC/drive combinations (C&T 82C711 with TEAC 1.2MB)
1356 * need a stabilization period of several milliseconds to be
1357 * enforced after data rate changes before R/W operations.
1358 * Pause 5 msec to avoid trouble. (Needs to be 2 jiffies)
1359 */
1360 FDCS->dtr = raw_cmd->rate & 3;
Tejun Heo75ddb382014-03-07 10:24:48 -05001361 return fd_wait_for_completion(jiffies + 2UL * HZ / 100, floppy_ready);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362} /* fdc_dtr */
1363
1364static void tell_sector(void)
1365{
Joe Perchesb46df352010-03-10 15:20:46 -08001366 pr_cont(": track %d, head %d, sector %d, size %d",
1367 R_TRACK, R_HEAD, R_SECTOR, R_SIZECODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368} /* tell_sector */
1369
Joe Perchesb46df352010-03-10 15:20:46 -08001370static void print_errors(void)
1371{
1372 DPRINT("");
1373 if (ST0 & ST0_ECE) {
1374 pr_cont("Recalibrate failed!");
1375 } else if (ST2 & ST2_CRC) {
1376 pr_cont("data CRC error");
1377 tell_sector();
1378 } else if (ST1 & ST1_CRC) {
1379 pr_cont("CRC error");
1380 tell_sector();
1381 } else if ((ST1 & (ST1_MAM | ST1_ND)) ||
1382 (ST2 & ST2_MAM)) {
1383 if (!probing) {
1384 pr_cont("sector not found");
1385 tell_sector();
1386 } else
1387 pr_cont("probe failed...");
1388 } else if (ST2 & ST2_WC) { /* seek error */
1389 pr_cont("wrong cylinder");
1390 } else if (ST2 & ST2_BC) { /* cylinder marked as bad */
1391 pr_cont("bad cylinder");
1392 } else {
1393 pr_cont("unknown error. ST[0..2] are: 0x%x 0x%x 0x%x",
1394 ST0, ST1, ST2);
1395 tell_sector();
1396 }
1397 pr_cont("\n");
1398}
1399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400/*
1401 * OK, this error interpreting routine is called after a
1402 * DMA read/write has succeeded
1403 * or failed, so we check the results, and copy any buffers.
1404 * hhb: Added better error reporting.
1405 * ak: Made this into a separate routine.
1406 */
1407static int interpret_errors(void)
1408{
1409 char bad;
1410
1411 if (inr != 7) {
Joe Perches891eda82010-03-10 15:21:05 -08001412 DPRINT("-- FDC reply error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 FDCS->reset = 1;
1414 return 1;
1415 }
1416
1417 /* check IC to find cause of interrupt */
1418 switch (ST0 & ST0_INTR) {
1419 case 0x40: /* error occurred during command execution */
1420 if (ST1 & ST1_EOC)
1421 return 0; /* occurs with pseudo-DMA */
1422 bad = 1;
1423 if (ST1 & ST1_WP) {
1424 DPRINT("Drive is write protected\n");
Joe Perchese0298532010-03-10 15:20:55 -08001425 clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 cont->done(0);
1427 bad = 2;
1428 } else if (ST1 & ST1_ND) {
Joe Perchese0298532010-03-10 15:20:55 -08001429 set_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 } else if (ST1 & ST1_OR) {
1431 if (DP->flags & FTD_MSG)
1432 DPRINT("Over/Underrun - retrying\n");
1433 bad = 0;
1434 } else if (*errors >= DP->max_errors.reporting) {
Joe Perchesb46df352010-03-10 15:20:46 -08001435 print_errors();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
1437 if (ST2 & ST2_WC || ST2 & ST2_BC)
1438 /* wrong cylinder => recal */
1439 DRS->track = NEED_2_RECAL;
1440 return bad;
1441 case 0x80: /* invalid command given */
1442 DPRINT("Invalid FDC command given!\n");
1443 cont->done(0);
1444 return 2;
1445 case 0xc0:
1446 DPRINT("Abnormal termination caused by polling\n");
1447 cont->error();
1448 return 2;
1449 default: /* (0) Normal command termination */
1450 return 0;
1451 }
1452}
1453
1454/*
1455 * This routine is called when everything should be correctly set up
1456 * for the transfer (i.e. floppy motor is on, the correct floppy is
1457 * selected, and the head is sitting on the right track).
1458 */
1459static void setup_rw_floppy(void)
1460{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001461 int i;
1462 int r;
1463 int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 unsigned long ready_date;
Tejun Heo75ddb382014-03-07 10:24:48 -05001465 void (*function)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 flags = raw_cmd->flags;
1468 if (flags & (FD_RAW_READ | FD_RAW_WRITE))
1469 flags |= FD_RAW_INTR;
1470
1471 if ((flags & FD_RAW_SPIN) && !(flags & FD_RAW_NO_MOTOR)) {
1472 ready_date = DRS->spinup_date + DP->spinup;
1473 /* If spinup will take a long time, rerun scandrives
1474 * again just before spinup completion. Beware that
1475 * after scandrives, we must again wait for selection.
1476 */
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -08001477 if (time_after(ready_date, jiffies + DP->select_delay)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 ready_date -= DP->select_delay;
Tejun Heo75ddb382014-03-07 10:24:48 -05001479 function = floppy_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 } else
Tejun Heo75ddb382014-03-07 10:24:48 -05001481 function = setup_rw_floppy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
1483 /* wait until the floppy is spinning fast enough */
1484 if (fd_wait_for_completion(ready_date, function))
1485 return;
1486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 if ((flags & FD_RAW_READ) || (flags & FD_RAW_WRITE))
1488 setup_DMA();
1489
1490 if (flags & FD_RAW_INTR)
1491 do_floppy = main_command_interrupt;
1492
1493 r = 0;
1494 for (i = 0; i < raw_cmd->cmd_count; i++)
1495 r |= output_byte(raw_cmd->cmd[i]);
1496
Joe Perchesded28632010-03-10 15:21:09 -08001497 debugt(__func__, "rw_command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 if (r) {
1500 cont->error();
1501 reset_fdc();
1502 return;
1503 }
1504
1505 if (!(flags & FD_RAW_INTR)) {
1506 inr = result();
1507 cont->interrupt();
1508 } else if (flags & FD_RAW_NEED_DISK)
Tejun Heo75ddb382014-03-07 10:24:48 -05001509 fd_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
1512static int blind_seek;
1513
1514/*
1515 * This is the routine called after every seek (or recalibrate) interrupt
1516 * from the floppy controller.
1517 */
1518static void seek_interrupt(void)
1519{
Joe Perchesded28632010-03-10 15:21:09 -08001520 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (inr != 2 || (ST0 & 0xF8) != 0x20) {
1522 DPRINT("seek failed\n");
1523 DRS->track = NEED_2_RECAL;
1524 cont->error();
1525 cont->redo();
1526 return;
1527 }
1528 if (DRS->track >= 0 && DRS->track != ST1 && !blind_seek) {
Joe Perches87f530d2010-03-10 15:20:54 -08001529 debug_dcl(DP->flags,
1530 "clearing NEWCHANGE flag because of effective seek\n");
1531 debug_dcl(DP->flags, "jiffies=%lu\n", jiffies);
Joe Perchese0298532010-03-10 15:20:55 -08001532 clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
1533 /* effective seek */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 DRS->select_date = jiffies;
1535 }
1536 DRS->track = ST1;
1537 floppy_ready();
1538}
1539
1540static void check_wp(void)
1541{
Joe Perchese0298532010-03-10 15:20:55 -08001542 if (test_bit(FD_VERIFY_BIT, &DRS->flags)) {
1543 /* check write protection */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 output_byte(FD_GETSTATUS);
1545 output_byte(UNIT(current_drive));
1546 if (result() != 1) {
1547 FDCS->reset = 1;
1548 return;
1549 }
Joe Perchese0298532010-03-10 15:20:55 -08001550 clear_bit(FD_VERIFY_BIT, &DRS->flags);
1551 clear_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
Joe Perches87f530d2010-03-10 15:20:54 -08001552 debug_dcl(DP->flags,
1553 "checking whether disk is write protected\n");
1554 debug_dcl(DP->flags, "wp=%x\n", ST3 & 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (!(ST3 & 0x40))
Joe Perchese0298532010-03-10 15:20:55 -08001556 set_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 else
Joe Perchese0298532010-03-10 15:20:55 -08001558 clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 }
1560}
1561
1562static void seek_floppy(void)
1563{
1564 int track;
1565
1566 blind_seek = 0;
1567
Joe Perchesded28632010-03-10 15:21:09 -08001568 debug_dcl(DP->flags, "calling disk change from %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
Joe Perchese0298532010-03-10 15:20:55 -08001570 if (!test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 disk_change(current_drive) && (raw_cmd->flags & FD_RAW_NEED_DISK)) {
1572 /* the media changed flag should be cleared after the seek.
1573 * If it isn't, this means that there is really no disk in
1574 * the drive.
1575 */
Joe Perchese0298532010-03-10 15:20:55 -08001576 set_bit(FD_DISK_CHANGED_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 cont->done(0);
1578 cont->redo();
1579 return;
1580 }
1581 if (DRS->track <= NEED_1_RECAL) {
1582 recalibrate_floppy();
1583 return;
Joe Perchese0298532010-03-10 15:20:55 -08001584 } else if (test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 (raw_cmd->flags & FD_RAW_NEED_DISK) &&
1586 (DRS->track <= NO_TRACK || DRS->track == raw_cmd->track)) {
1587 /* we seek to clear the media-changed condition. Does anybody
1588 * know a more elegant way, which works on all drives? */
1589 if (raw_cmd->track)
1590 track = raw_cmd->track - 1;
1591 else {
1592 if (DP->flags & FD_SILENT_DCL_CLEAR) {
1593 set_dor(fdc, ~(0x10 << UNIT(current_drive)), 0);
1594 blind_seek = 1;
1595 raw_cmd->flags |= FD_RAW_NEED_SEEK;
1596 }
1597 track = 1;
1598 }
1599 } else {
1600 check_wp();
1601 if (raw_cmd->track != DRS->track &&
1602 (raw_cmd->flags & FD_RAW_NEED_SEEK))
1603 track = raw_cmd->track;
1604 else {
1605 setup_rw_floppy();
1606 return;
1607 }
1608 }
1609
1610 do_floppy = seek_interrupt;
1611 output_byte(FD_SEEK);
1612 output_byte(UNIT(current_drive));
Joe Perches2300f902010-03-10 15:20:49 -08001613 if (output_byte(track) < 0) {
1614 reset_fdc();
1615 return;
1616 }
Joe Perchesded28632010-03-10 15:21:09 -08001617 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618}
1619
1620static void recal_interrupt(void)
1621{
Joe Perchesded28632010-03-10 15:21:09 -08001622 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (inr != 2)
1624 FDCS->reset = 1;
1625 else if (ST0 & ST0_ECE) {
1626 switch (DRS->track) {
1627 case NEED_1_RECAL:
Joe Perchesded28632010-03-10 15:21:09 -08001628 debugt(__func__, "need 1 recal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 /* after a second recalibrate, we still haven't
1630 * reached track 0. Probably no drive. Raise an
1631 * error, as failing immediately might upset
1632 * computers possessed by the Devil :-) */
1633 cont->error();
1634 cont->redo();
1635 return;
1636 case NEED_2_RECAL:
Joe Perchesded28632010-03-10 15:21:09 -08001637 debugt(__func__, "need 2 recal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 /* If we already did a recalibrate,
1639 * and we are not at track 0, this
1640 * means we have moved. (The only way
1641 * not to move at recalibration is to
1642 * be already at track 0.) Clear the
1643 * new change flag */
Joe Perches87f530d2010-03-10 15:20:54 -08001644 debug_dcl(DP->flags,
1645 "clearing NEWCHANGE flag because of second recalibrate\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Joe Perchese0298532010-03-10 15:20:55 -08001647 clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 DRS->select_date = jiffies;
1649 /* fall through */
1650 default:
Joe Perchesded28632010-03-10 15:21:09 -08001651 debugt(__func__, "default");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 /* Recalibrate moves the head by at
1653 * most 80 steps. If after one
1654 * recalibrate we don't have reached
1655 * track 0, this might mean that we
1656 * started beyond track 80. Try
1657 * again. */
1658 DRS->track = NEED_1_RECAL;
1659 break;
1660 }
1661 } else
1662 DRS->track = ST1;
1663 floppy_ready();
1664}
1665
1666static void print_result(char *message, int inr)
1667{
1668 int i;
1669
1670 DPRINT("%s ", message);
1671 if (inr >= 0)
1672 for (i = 0; i < inr; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001673 pr_cont("repl[%d]=%x ", i, reply_buffer[i]);
1674 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675}
1676
1677/* interrupt handler. Note that this can be called externally on the Sparc */
David Howells7d12e782006-10-05 14:55:46 +01001678irqreturn_t floppy_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 int do_print;
1681 unsigned long f;
Jesper Juhl06f748c2007-10-16 23:30:57 -07001682 void (*handler)(void) = do_floppy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 lasthandler = handler;
1685 interruptjiffies = jiffies;
1686
1687 f = claim_dma_lock();
1688 fd_disable_dma();
1689 release_dma_lock(f);
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 do_floppy = NULL;
1692 if (fdc >= N_FDC || FDCS->address == -1) {
1693 /* we don't even know which FDC is the culprit */
Joe Perchesb46df352010-03-10 15:20:46 -08001694 pr_info("DOR0=%x\n", fdc_state[0].dor);
1695 pr_info("floppy interrupt on bizarre fdc %d\n", fdc);
Joe Perches1ebddd82010-03-10 15:21:07 -08001696 pr_info("handler=%pf\n", handler);
Joe Perches275176b2010-03-10 15:21:06 -08001697 is_alive(__func__, "bizarre fdc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 return IRQ_NONE;
1699 }
1700
1701 FDCS->reset = 0;
1702 /* We have to clear the reset flag here, because apparently on boxes
1703 * with level triggered interrupts (PS/2, Sparc, ...), it is needed to
1704 * emit SENSEI's to clear the interrupt line. And FDCS->reset blocks the
1705 * emission of the SENSEI's.
1706 * It is OK to emit floppy commands because we are in an interrupt
1707 * handler here, and thus we have to fear no interference of other
1708 * activity.
1709 */
1710
Joe Perches29f1c782010-03-10 15:21:00 -08001711 do_print = !handler && print_unex && initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 inr = result();
1714 if (do_print)
1715 print_result("unexpected interrupt", inr);
1716 if (inr == 0) {
1717 int max_sensei = 4;
1718 do {
1719 output_byte(FD_SENSEI);
1720 inr = result();
1721 if (do_print)
1722 print_result("sensei", inr);
1723 max_sensei--;
Joe Perchesc5297302010-03-10 15:20:58 -08001724 } while ((ST0 & 0x83) != UNIT(current_drive) &&
1725 inr == 2 && max_sensei);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 }
1727 if (!handler) {
1728 FDCS->reset = 1;
1729 return IRQ_NONE;
1730 }
1731 schedule_bh(handler);
Joe Perches275176b2010-03-10 15:21:06 -08001732 is_alive(__func__, "normal interrupt end");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 /* FIXME! Was it really for us? */
1735 return IRQ_HANDLED;
1736}
1737
1738static void recalibrate_floppy(void)
1739{
Joe Perchesded28632010-03-10 15:21:09 -08001740 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 do_floppy = recal_interrupt;
1742 output_byte(FD_RECALIBRATE);
Joe Perches15b26302010-03-10 15:21:01 -08001743 if (output_byte(UNIT(current_drive)) < 0)
Joe Perches2300f902010-03-10 15:20:49 -08001744 reset_fdc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745}
1746
1747/*
1748 * Must do 4 FD_SENSEIs after reset because of ``drive polling''.
1749 */
1750static void reset_interrupt(void)
1751{
Joe Perchesded28632010-03-10 15:21:09 -08001752 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 result(); /* get the status ready for set_fdc */
1754 if (FDCS->reset) {
Joe Perches1ebddd82010-03-10 15:21:07 -08001755 pr_info("reset set in interrupt, calling %pf\n", cont->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 cont->error(); /* a reset just after a reset. BAD! */
1757 }
1758 cont->redo();
1759}
1760
1761/*
1762 * reset is done by pulling bit 2 of DOR low for a while (old FDCs),
1763 * or by setting the self clearing bit 7 of STATUS (newer FDCs)
1764 */
1765static void reset_fdc(void)
1766{
1767 unsigned long flags;
1768
1769 do_floppy = reset_interrupt;
1770 FDCS->reset = 0;
1771 reset_fdc_info(0);
1772
1773 /* Pseudo-DMA may intercept 'reset finished' interrupt. */
1774 /* Irrelevant for systems with true DMA (i386). */
1775
1776 flags = claim_dma_lock();
1777 fd_disable_dma();
1778 release_dma_lock(flags);
1779
1780 if (FDCS->version >= FDC_82072A)
1781 fd_outb(0x80 | (FDCS->dtr & 3), FD_STATUS);
1782 else {
1783 fd_outb(FDCS->dor & ~0x04, FD_DOR);
1784 udelay(FD_RESET_DELAY);
1785 fd_outb(FDCS->dor, FD_DOR);
1786 }
1787}
1788
1789static void show_floppy(void)
1790{
1791 int i;
1792
Joe Perchesb46df352010-03-10 15:20:46 -08001793 pr_info("\n");
1794 pr_info("floppy driver state\n");
1795 pr_info("-------------------\n");
Joe Perches1ebddd82010-03-10 15:21:07 -08001796 pr_info("now=%lu last interrupt=%lu diff=%lu last called handler=%pf\n",
Joe Perchesb46df352010-03-10 15:20:46 -08001797 jiffies, interruptjiffies, jiffies - interruptjiffies,
1798 lasthandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Joe Perchesb46df352010-03-10 15:20:46 -08001800 pr_info("timeout_message=%s\n", timeout_message);
1801 pr_info("last output bytes:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 for (i = 0; i < OLOGSIZE; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001803 pr_info("%2x %2x %lu\n",
1804 output_log[(i + output_log_pos) % OLOGSIZE].data,
1805 output_log[(i + output_log_pos) % OLOGSIZE].status,
1806 output_log[(i + output_log_pos) % OLOGSIZE].jiffies);
1807 pr_info("last result at %lu\n", resultjiffies);
1808 pr_info("last redo_fd_request at %lu\n", lastredo);
1809 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_NONE, 16, 1,
1810 reply_buffer, resultsize, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Joe Perchesb46df352010-03-10 15:20:46 -08001812 pr_info("status=%x\n", fd_inb(FD_STATUS));
1813 pr_info("fdc_busy=%lu\n", fdc_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (do_floppy)
Joe Perches1ebddd82010-03-10 15:21:07 -08001815 pr_info("do_floppy=%pf\n", do_floppy);
David Howells365970a2006-11-22 14:54:49 +00001816 if (work_pending(&floppy_work))
Joe Perches1ebddd82010-03-10 15:21:07 -08001817 pr_info("floppy_work.func=%pf\n", floppy_work.func);
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001818 if (delayed_work_pending(&fd_timer))
1819 pr_info("delayed work.function=%p expires=%ld\n",
1820 fd_timer.work.func,
1821 fd_timer.timer.expires - jiffies);
1822 if (delayed_work_pending(&fd_timeout))
1823 pr_info("timer_function=%p expires=%ld\n",
1824 fd_timeout.work.func,
1825 fd_timeout.timer.expires - jiffies);
1826
Joe Perchesb46df352010-03-10 15:20:46 -08001827 pr_info("cont=%p\n", cont);
1828 pr_info("current_req=%p\n", current_req);
1829 pr_info("command_status=%d\n", command_status);
1830 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
1832
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001833static void floppy_shutdown(struct work_struct *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
1835 unsigned long flags;
1836
Joe Perches29f1c782010-03-10 15:21:00 -08001837 if (initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 show_floppy();
1839 cancel_activity();
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 flags = claim_dma_lock();
1842 fd_disable_dma();
1843 release_dma_lock(flags);
1844
1845 /* avoid dma going to a random drive after shutdown */
1846
Joe Perches29f1c782010-03-10 15:21:00 -08001847 if (initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 DPRINT("floppy timeout called\n");
1849 FDCS->reset = 1;
1850 if (cont) {
1851 cont->done(0);
1852 cont->redo(); /* this will recall reset when needed */
1853 } else {
Joe Perchesb46df352010-03-10 15:20:46 -08001854 pr_info("no cont in shutdown!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 process_fd_request();
1856 }
Joe Perches275176b2010-03-10 15:21:06 -08001857 is_alive(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860/* start motor, check media-changed condition and write protection */
Jesper Juhl06f748c2007-10-16 23:30:57 -07001861static int start_motor(void (*function)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001863 int mask;
1864 int data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865
1866 mask = 0xfc;
1867 data = UNIT(current_drive);
1868 if (!(raw_cmd->flags & FD_RAW_NO_MOTOR)) {
1869 if (!(FDCS->dor & (0x10 << UNIT(current_drive)))) {
1870 set_debugt();
1871 /* no read since this drive is running */
1872 DRS->first_read_date = 0;
1873 /* note motor start time if motor is not yet running */
1874 DRS->spinup_date = jiffies;
1875 data |= (0x10 << UNIT(current_drive));
1876 }
1877 } else if (FDCS->dor & (0x10 << UNIT(current_drive)))
1878 mask &= ~(0x10 << UNIT(current_drive));
1879
1880 /* starts motor and selects floppy */
1881 del_timer(motor_off_timer + current_drive);
1882 set_dor(fdc, mask, data);
1883
1884 /* wait_for_completion also schedules reset if needed. */
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001885 return fd_wait_for_completion(DRS->select_date + DP->select_delay,
Tejun Heo75ddb382014-03-07 10:24:48 -05001886 function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887}
1888
1889static void floppy_ready(void)
1890{
Joe Perches045f9832010-03-10 15:20:47 -08001891 if (FDCS->reset) {
1892 reset_fdc();
1893 return;
1894 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 if (start_motor(floppy_ready))
1896 return;
1897 if (fdc_dtr())
1898 return;
1899
Joe Perches87f530d2010-03-10 15:20:54 -08001900 debug_dcl(DP->flags, "calling disk change from floppy_ready\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 if (!(raw_cmd->flags & FD_RAW_NO_MOTOR) &&
1902 disk_change(current_drive) && !DP->select_delay)
Joe Perchesbb57f0c62010-03-10 15:20:50 -08001903 twaddle(); /* this clears the dcl on certain
1904 * drive/controller combinations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906#ifdef fd_chose_dma_mode
1907 if ((raw_cmd->flags & FD_RAW_READ) || (raw_cmd->flags & FD_RAW_WRITE)) {
1908 unsigned long flags = claim_dma_lock();
1909 fd_chose_dma_mode(raw_cmd->kernel_data, raw_cmd->length);
1910 release_dma_lock(flags);
1911 }
1912#endif
1913
1914 if (raw_cmd->flags & (FD_RAW_NEED_SEEK | FD_RAW_NEED_DISK)) {
1915 perpendicular_mode();
1916 fdc_specify(); /* must be done here because of hut, hlt ... */
1917 seek_floppy();
1918 } else {
1919 if ((raw_cmd->flags & FD_RAW_READ) ||
1920 (raw_cmd->flags & FD_RAW_WRITE))
1921 fdc_specify();
1922 setup_rw_floppy();
1923 }
1924}
1925
1926static void floppy_start(void)
1927{
Joe Perches73507e62010-03-10 15:21:03 -08001928 reschedule_timeout(current_reqD, "floppy start");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930 scandrives();
Joe Perches87f530d2010-03-10 15:20:54 -08001931 debug_dcl(DP->flags, "setting NEWCHANGE in floppy_start\n");
Joe Perchese0298532010-03-10 15:20:55 -08001932 set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 floppy_ready();
1934}
1935
1936/*
1937 * ========================================================================
1938 * here ends the bottom half. Exported routines are:
1939 * floppy_start, floppy_off, floppy_ready, lock_fdc, unlock_fdc, set_fdc,
1940 * start_motor, reset_fdc, reset_fdc_info, interpret_errors.
1941 * Initialization also uses output_byte, result, set_dor, floppy_interrupt
1942 * and set_dor.
1943 * ========================================================================
1944 */
1945/*
1946 * General purpose continuations.
1947 * ==============================
1948 */
1949
1950static void do_wakeup(void)
1951{
Joe Perches73507e62010-03-10 15:21:03 -08001952 reschedule_timeout(MAXTIMEOUT, "do wakeup");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 cont = NULL;
1954 command_status += 2;
1955 wake_up(&command_done);
1956}
1957
Stephen Hemminger3b06c212010-07-20 20:09:00 -06001958static const struct cont_t wakeup_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 .interrupt = empty,
1960 .redo = do_wakeup,
1961 .error = empty,
Jesper Juhl06f748c2007-10-16 23:30:57 -07001962 .done = (done_f)empty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963};
1964
Stephen Hemminger3b06c212010-07-20 20:09:00 -06001965static const struct cont_t intr_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 .interrupt = empty,
1967 .redo = process_fd_request,
1968 .error = empty,
Jesper Juhl06f748c2007-10-16 23:30:57 -07001969 .done = (done_f)empty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970};
1971
Joe Perches74f63f42010-03-10 15:20:58 -08001972static int wait_til_done(void (*handler)(void), bool interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973{
1974 int ret;
1975
1976 schedule_bh(handler);
1977
Stephen Hemmingerb862f262010-06-15 13:21:11 +02001978 if (interruptible)
1979 wait_event_interruptible(command_done, command_status >= 2);
1980 else
1981 wait_event(command_done, command_status >= 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 if (command_status < 2) {
1984 cancel_activity();
1985 cont = &intr_cont;
1986 reset_fdc();
1987 return -EINTR;
1988 }
1989
1990 if (FDCS->reset)
1991 command_status = FD_COMMAND_ERROR;
1992 if (command_status == FD_COMMAND_OKAY)
1993 ret = 0;
1994 else
1995 ret = -EIO;
1996 command_status = FD_COMMAND_NONE;
1997 return ret;
1998}
1999
2000static void generic_done(int result)
2001{
2002 command_status = result;
2003 cont = &wakeup_cont;
2004}
2005
2006static void generic_success(void)
2007{
2008 cont->done(1);
2009}
2010
2011static void generic_failure(void)
2012{
2013 cont->done(0);
2014}
2015
2016static void success_and_wakeup(void)
2017{
2018 generic_success();
2019 cont->redo();
2020}
2021
2022/*
2023 * formatting and rw support.
2024 * ==========================
2025 */
2026
2027static int next_valid_format(void)
2028{
2029 int probed_format;
2030
2031 probed_format = DRS->probed_format;
2032 while (1) {
2033 if (probed_format >= 8 || !DP->autodetect[probed_format]) {
2034 DRS->probed_format = 0;
2035 return 1;
2036 }
2037 if (floppy_type[DP->autodetect[probed_format]].sect) {
2038 DRS->probed_format = probed_format;
2039 return 0;
2040 }
2041 probed_format++;
2042 }
2043}
2044
2045static void bad_flp_intr(void)
2046{
2047 int err_count;
2048
2049 if (probing) {
2050 DRS->probed_format++;
2051 if (!next_valid_format())
2052 return;
2053 }
2054 err_count = ++(*errors);
2055 INFBOUND(DRWE->badness, err_count);
2056 if (err_count > DP->max_errors.abort)
2057 cont->done(0);
2058 if (err_count > DP->max_errors.reset)
2059 FDCS->reset = 1;
2060 else if (err_count > DP->max_errors.recal)
2061 DRS->track = NEED_2_RECAL;
2062}
2063
2064static void set_floppy(int drive)
2065{
2066 int type = ITYPE(UDRS->fd_device);
Jesper Juhl06f748c2007-10-16 23:30:57 -07002067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 if (type)
2069 _floppy = floppy_type + type;
2070 else
2071 _floppy = current_type[drive];
2072}
2073
2074/*
2075 * formatting support.
2076 * ===================
2077 */
2078static void format_interrupt(void)
2079{
2080 switch (interpret_errors()) {
2081 case 1:
2082 cont->error();
2083 case 2:
2084 break;
2085 case 0:
2086 cont->done(1);
2087 }
2088 cont->redo();
2089}
2090
Joe Perches48c8cee2010-03-10 15:20:45 -08002091#define FM_MODE(x, y) ((y) & ~(((x)->rate & 0x80) >> 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092#define CT(x) ((x) | 0xc0)
Joe Perches48c8cee2010-03-10 15:20:45 -08002093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094static void setup_format_params(int track)
2095{
Jesper Juhl06f748c2007-10-16 23:30:57 -07002096 int n;
2097 int il;
2098 int count;
2099 int head_shift;
2100 int track_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 struct fparm {
2102 unsigned char track, head, sect, size;
2103 } *here = (struct fparm *)floppy_track_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 raw_cmd = &default_raw_cmd;
2106 raw_cmd->track = track;
2107
Joe Perches48c8cee2010-03-10 15:20:45 -08002108 raw_cmd->flags = (FD_RAW_WRITE | FD_RAW_INTR | FD_RAW_SPIN |
2109 FD_RAW_NEED_DISK | FD_RAW_NEED_SEEK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 raw_cmd->rate = _floppy->rate & 0x43;
2111 raw_cmd->cmd_count = NR_F;
2112 COMMAND = FM_MODE(_floppy, FD_FORMAT);
2113 DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, format_req.head);
2114 F_SIZECODE = FD_SIZECODE(_floppy);
2115 F_SECT_PER_TRACK = _floppy->sect << 2 >> F_SIZECODE;
2116 F_GAP = _floppy->fmt_gap;
2117 F_FILL = FD_FILL_BYTE;
2118
2119 raw_cmd->kernel_data = floppy_track_buffer;
2120 raw_cmd->length = 4 * F_SECT_PER_TRACK;
2121
2122 /* allow for about 30ms for data transport per track */
2123 head_shift = (F_SECT_PER_TRACK + 5) / 6;
2124
2125 /* a ``cylinder'' is two tracks plus a little stepping time */
2126 track_shift = 2 * head_shift + 3;
2127
2128 /* position of logical sector 1 on this track */
2129 n = (track_shift * format_req.track + head_shift * format_req.head)
2130 % F_SECT_PER_TRACK;
2131
2132 /* determine interleave */
2133 il = 1;
2134 if (_floppy->fmt_gap < 0x22)
2135 il++;
2136
2137 /* initialize field */
2138 for (count = 0; count < F_SECT_PER_TRACK; ++count) {
2139 here[count].track = format_req.track;
2140 here[count].head = format_req.head;
2141 here[count].sect = 0;
2142 here[count].size = F_SIZECODE;
2143 }
2144 /* place logical sectors */
2145 for (count = 1; count <= F_SECT_PER_TRACK; ++count) {
2146 here[n].sect = count;
2147 n = (n + il) % F_SECT_PER_TRACK;
2148 if (here[n].sect) { /* sector busy, find next free sector */
2149 ++n;
2150 if (n >= F_SECT_PER_TRACK) {
2151 n -= F_SECT_PER_TRACK;
2152 while (here[n].sect)
2153 ++n;
2154 }
2155 }
2156 }
Keith Wansbrough9e491842008-09-22 14:57:17 -07002157 if (_floppy->stretch & FD_SECTBASEMASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 for (count = 0; count < F_SECT_PER_TRACK; count++)
Keith Wansbrough9e491842008-09-22 14:57:17 -07002159 here[count].sect += FD_SECTBASE(_floppy) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 }
2161}
2162
2163static void redo_format(void)
2164{
2165 buffer_track = -1;
2166 setup_format_params(format_req.track << STRETCH(_floppy));
2167 floppy_start();
Joe Perchesded28632010-03-10 15:21:09 -08002168 debugt(__func__, "queue format request");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169}
2170
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002171static const struct cont_t format_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 .interrupt = format_interrupt,
2173 .redo = redo_format,
2174 .error = bad_flp_intr,
2175 .done = generic_done
2176};
2177
2178static int do_format(int drive, struct format_descr *tmp_format_req)
2179{
2180 int ret;
2181
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01002182 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08002183 return -EINTR;
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 set_floppy(drive);
2186 if (!_floppy ||
2187 _floppy->track > DP->tracks ||
2188 tmp_format_req->track >= _floppy->track ||
2189 tmp_format_req->head >= _floppy->head ||
2190 (_floppy->sect << 2) % (1 << FD_SIZECODE(_floppy)) ||
2191 !_floppy->fmt_gap) {
2192 process_fd_request();
2193 return -EINVAL;
2194 }
2195 format_req = *tmp_format_req;
2196 format_errors = 0;
2197 cont = &format_cont;
2198 errors = &format_errors;
Joe Perches74f63f42010-03-10 15:20:58 -08002199 ret = wait_til_done(redo_format, true);
Joe Perches55eee802010-03-10 15:20:57 -08002200 if (ret == -EINTR)
2201 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 process_fd_request();
2203 return ret;
2204}
2205
2206/*
2207 * Buffer read/write and support
2208 * =============================
2209 */
2210
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002211static void floppy_end_request(struct request *req, blk_status_t error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212{
2213 unsigned int nr_sectors = current_count_sectors;
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002214 unsigned int drive = (unsigned long)req->rq_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 /* current_count_sectors can be zero if transfer failed */
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002217 if (error)
Tejun Heo83096eb2009-05-07 22:24:39 +09002218 nr_sectors = blk_rq_cur_sectors(req);
Omar Sandovala9f38e12018-10-15 09:21:34 -06002219 if (blk_update_request(req, error, nr_sectors << 9))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 return;
Omar Sandovala9f38e12018-10-15 09:21:34 -06002221 __blk_mq_end_request(req, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 /* We're done with the request */
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002224 floppy_off(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 current_req = NULL;
2226}
2227
2228/* new request_done. Can handle physical sectors which are smaller than a
2229 * logical buffer */
2230static void request_done(int uptodate)
2231{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 struct request *req = current_req;
Jens Axboe48821182010-09-22 09:32:36 +02002233 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 unsigned long flags;
2235 int block;
Joe Perches73507e62010-03-10 15:21:03 -08002236 char msg[sizeof("request done ") + sizeof(int) * 3];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
2238 probing = 0;
Joe Perches73507e62010-03-10 15:21:03 -08002239 snprintf(msg, sizeof(msg), "request done %d", uptodate);
2240 reschedule_timeout(MAXTIMEOUT, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
2242 if (!req) {
Joe Perchesb46df352010-03-10 15:20:46 -08002243 pr_info("floppy.c: no request in request_done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 return;
2245 }
2246
Jens Axboe48821182010-09-22 09:32:36 +02002247 q = req->q;
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 if (uptodate) {
2250 /* maintain values for invalidation on geometry
2251 * change */
Tejun Heo83096eb2009-05-07 22:24:39 +09002252 block = current_count_sectors + blk_rq_pos(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 INFBOUND(DRS->maxblock, block);
2254 if (block > _floppy->sect)
2255 DRS->maxtrack = 1;
2256
2257 /* unlock chained buffers */
Christoph Hellwig0d945c12018-11-15 12:17:28 -07002258 spin_lock_irqsave(&q->queue_lock, flags);
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002259 floppy_end_request(req, 0);
Christoph Hellwig0d945c12018-11-15 12:17:28 -07002260 spin_unlock_irqrestore(&q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 } else {
2262 if (rq_data_dir(req) == WRITE) {
2263 /* record write error information */
2264 DRWE->write_errors++;
2265 if (DRWE->write_errors == 1) {
Tejun Heo83096eb2009-05-07 22:24:39 +09002266 DRWE->first_error_sector = blk_rq_pos(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 DRWE->first_error_generation = DRS->generation;
2268 }
Tejun Heo83096eb2009-05-07 22:24:39 +09002269 DRWE->last_error_sector = blk_rq_pos(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 DRWE->last_error_generation = DRS->generation;
2271 }
Christoph Hellwig0d945c12018-11-15 12:17:28 -07002272 spin_lock_irqsave(&q->queue_lock, flags);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002273 floppy_end_request(req, BLK_STS_IOERR);
Christoph Hellwig0d945c12018-11-15 12:17:28 -07002274 spin_unlock_irqrestore(&q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 }
2276}
2277
2278/* Interrupt handler evaluating the result of the r/w operation */
2279static void rw_interrupt(void)
2280{
Jesper Juhl06f748c2007-10-16 23:30:57 -07002281 int eoc;
2282 int ssize;
2283 int heads;
2284 int nr_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
2286 if (R_HEAD >= 2) {
2287 /* some Toshiba floppy controllers occasionnally seem to
2288 * return bogus interrupts after read/write operations, which
2289 * can be recognized by a bad head number (>= 2) */
2290 return;
2291 }
2292
2293 if (!DRS->first_read_date)
2294 DRS->first_read_date = jiffies;
2295
2296 nr_sectors = 0;
Joe Perches712e1de2010-03-10 15:21:10 -08002297 ssize = DIV_ROUND_UP(1 << SIZECODE, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
2299 if (ST1 & ST1_EOC)
2300 eoc = 1;
2301 else
2302 eoc = 0;
2303
2304 if (COMMAND & 0x80)
2305 heads = 2;
2306 else
2307 heads = 1;
2308
2309 nr_sectors = (((R_TRACK - TRACK) * heads +
2310 R_HEAD - HEAD) * SECT_PER_TRACK +
2311 R_SECTOR - SECTOR + eoc) << SIZECODE >> 2;
2312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 if (nr_sectors / ssize >
Julia Lawall061837b2008-09-22 14:57:16 -07002314 DIV_ROUND_UP(in_sector_offset + current_count_sectors, ssize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 DPRINT("long rw: %x instead of %lx\n",
2316 nr_sectors, current_count_sectors);
Joe Perchesb46df352010-03-10 15:20:46 -08002317 pr_info("rs=%d s=%d\n", R_SECTOR, SECTOR);
2318 pr_info("rh=%d h=%d\n", R_HEAD, HEAD);
2319 pr_info("rt=%d t=%d\n", R_TRACK, TRACK);
2320 pr_info("heads=%d eoc=%d\n", heads, eoc);
2321 pr_info("spt=%d st=%d ss=%d\n",
2322 SECT_PER_TRACK, fsector_t, ssize);
2323 pr_info("in_sector_offset=%d\n", in_sector_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
2326 nr_sectors -= in_sector_offset;
2327 INFBOUND(nr_sectors, 0);
2328 SUPBOUND(current_count_sectors, nr_sectors);
2329
2330 switch (interpret_errors()) {
2331 case 2:
2332 cont->redo();
2333 return;
2334 case 1:
2335 if (!current_count_sectors) {
2336 cont->error();
2337 cont->redo();
2338 return;
2339 }
2340 break;
2341 case 0:
2342 if (!current_count_sectors) {
2343 cont->redo();
2344 return;
2345 }
2346 current_type[current_drive] = _floppy;
2347 floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
2348 break;
2349 }
2350
2351 if (probing) {
2352 if (DP->flags & FTD_MSG)
2353 DPRINT("Auto-detected floppy type %s in fd%d\n",
2354 _floppy->name, current_drive);
2355 current_type[current_drive] = _floppy;
2356 floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
2357 probing = 0;
2358 }
2359
2360 if (CT(COMMAND) != FD_READ ||
Jens Axboeb4f42e22014-04-10 09:46:28 -06002361 raw_cmd->kernel_data == bio_data(current_req->bio)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 /* transfer directly from buffer */
2363 cont->done(1);
2364 } else if (CT(COMMAND) == FD_READ) {
2365 buffer_track = raw_cmd->track;
2366 buffer_drive = current_drive;
2367 INFBOUND(buffer_max, nr_sectors + fsector_t);
2368 }
2369 cont->redo();
2370}
2371
2372/* Compute maximal contiguous buffer size. */
2373static int buffer_chain_size(void)
2374{
Kent Overstreet79886132013-11-23 17:19:00 -08002375 struct bio_vec bv;
NeilBrown5705f702007-09-25 12:35:59 +02002376 int size;
2377 struct req_iterator iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 char *base;
2379
2380 base = bio_data(current_req->bio);
2381 size = 0;
2382
NeilBrown5705f702007-09-25 12:35:59 +02002383 rq_for_each_segment(bv, current_req, iter) {
Kent Overstreet79886132013-11-23 17:19:00 -08002384 if (page_address(bv.bv_page) + bv.bv_offset != base + size)
NeilBrown5705f702007-09-25 12:35:59 +02002385 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
Kent Overstreet79886132013-11-23 17:19:00 -08002387 size += bv.bv_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 }
2389
2390 return size >> 9;
2391}
2392
2393/* Compute the maximal transfer size */
2394static int transfer_size(int ssize, int max_sector, int max_size)
2395{
2396 SUPBOUND(max_sector, fsector_t + max_size);
2397
2398 /* alignment */
2399 max_sector -= (max_sector % _floppy->sect) % ssize;
2400
2401 /* transfer size, beginning not aligned */
2402 current_count_sectors = max_sector - fsector_t;
2403
2404 return max_sector;
2405}
2406
2407/*
2408 * Move data from/to the track buffer to/from the buffer cache.
2409 */
2410static void copy_buffer(int ssize, int max_sector, int max_sector_2)
2411{
2412 int remaining; /* number of transferred 512-byte sectors */
Kent Overstreet79886132013-11-23 17:19:00 -08002413 struct bio_vec bv;
Jesper Juhl06f748c2007-10-16 23:30:57 -07002414 char *buffer;
2415 char *dma_buffer;
NeilBrown5705f702007-09-25 12:35:59 +02002416 int size;
2417 struct req_iterator iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 max_sector = transfer_size(ssize,
2420 min(max_sector, max_sector_2),
Tejun Heo83096eb2009-05-07 22:24:39 +09002421 blk_rq_sectors(current_req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 if (current_count_sectors <= 0 && CT(COMMAND) == FD_WRITE &&
Tejun Heo83096eb2009-05-07 22:24:39 +09002424 buffer_max > fsector_t + blk_rq_sectors(current_req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 current_count_sectors = min_t(int, buffer_max - fsector_t,
Tejun Heo83096eb2009-05-07 22:24:39 +09002426 blk_rq_sectors(current_req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
2428 remaining = current_count_sectors << 9;
Tejun Heo1011c1b2009-05-07 22:24:45 +09002429 if (remaining > blk_rq_bytes(current_req) && CT(COMMAND) == FD_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 DPRINT("in copy buffer\n");
Joe Perchesb46df352010-03-10 15:20:46 -08002431 pr_info("current_count_sectors=%ld\n", current_count_sectors);
2432 pr_info("remaining=%d\n", remaining >> 9);
2433 pr_info("current_req->nr_sectors=%u\n",
2434 blk_rq_sectors(current_req));
2435 pr_info("current_req->current_nr_sectors=%u\n",
2436 blk_rq_cur_sectors(current_req));
2437 pr_info("max_sector=%d\n", max_sector);
2438 pr_info("ssize=%d\n", ssize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440
2441 buffer_max = max(max_sector, buffer_max);
2442
2443 dma_buffer = floppy_track_buffer + ((fsector_t - buffer_min) << 9);
2444
Tejun Heo1011c1b2009-05-07 22:24:45 +09002445 size = blk_rq_cur_bytes(current_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
NeilBrown5705f702007-09-25 12:35:59 +02002447 rq_for_each_segment(bv, current_req, iter) {
2448 if (!remaining)
2449 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Kent Overstreet79886132013-11-23 17:19:00 -08002451 size = bv.bv_len;
NeilBrown5705f702007-09-25 12:35:59 +02002452 SUPBOUND(size, remaining);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Kent Overstreet79886132013-11-23 17:19:00 -08002454 buffer = page_address(bv.bv_page) + bv.bv_offset;
NeilBrown5705f702007-09-25 12:35:59 +02002455 if (dma_buffer + size >
2456 floppy_track_buffer + (max_buffer_sectors << 10) ||
2457 dma_buffer < floppy_track_buffer) {
2458 DPRINT("buffer overrun in copy buffer %d\n",
Joe Perchesb46df352010-03-10 15:20:46 -08002459 (int)((floppy_track_buffer - dma_buffer) >> 9));
2460 pr_info("fsector_t=%d buffer_min=%d\n",
2461 fsector_t, buffer_min);
2462 pr_info("current_count_sectors=%ld\n",
2463 current_count_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 if (CT(COMMAND) == FD_READ)
Joe Perchesb46df352010-03-10 15:20:46 -08002465 pr_info("read\n");
NeilBrown5705f702007-09-25 12:35:59 +02002466 if (CT(COMMAND) == FD_WRITE)
Joe Perchesb46df352010-03-10 15:20:46 -08002467 pr_info("write\n");
NeilBrown5705f702007-09-25 12:35:59 +02002468 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 }
NeilBrown5705f702007-09-25 12:35:59 +02002470 if (((unsigned long)buffer) % 512)
2471 DPRINT("%p buffer not aligned\n", buffer);
Joe Perches1a23d132010-03-10 15:21:04 -08002472
NeilBrown5705f702007-09-25 12:35:59 +02002473 if (CT(COMMAND) == FD_READ)
2474 memcpy(buffer, dma_buffer, size);
2475 else
2476 memcpy(dma_buffer, buffer, size);
2477
2478 remaining -= size;
2479 dma_buffer += size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 if (remaining) {
2482 if (remaining > 0)
2483 max_sector -= remaining >> 9;
2484 DPRINT("weirdness: remaining %d\n", remaining >> 9);
2485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
2487
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488/* work around a bug in pseudo DMA
2489 * (on some FDCs) pseudo DMA does not stop when the CPU stops
2490 * sending data. Hence we need a different way to signal the
2491 * transfer length: We use SECT_PER_TRACK. Unfortunately, this
2492 * does not work with MT, hence we can only transfer one head at
2493 * a time
2494 */
2495static void virtualdmabug_workaround(void)
2496{
Jesper Juhl06f748c2007-10-16 23:30:57 -07002497 int hard_sectors;
2498 int end_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
2500 if (CT(COMMAND) == FD_WRITE) {
2501 COMMAND &= ~0x80; /* switch off multiple track mode */
2502
2503 hard_sectors = raw_cmd->length >> (7 + SIZECODE);
2504 end_sector = SECTOR + hard_sectors - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 if (end_sector > SECT_PER_TRACK) {
Joe Perchesb46df352010-03-10 15:20:46 -08002506 pr_info("too many sectors %d > %d\n",
2507 end_sector, SECT_PER_TRACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 return;
2509 }
Joe Perches48c8cee2010-03-10 15:20:45 -08002510 SECT_PER_TRACK = end_sector;
2511 /* make sure SECT_PER_TRACK
2512 * points to end of transfer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 }
2514}
2515
2516/*
2517 * Formulate a read/write request.
2518 * this routine decides where to load the data (directly to buffer, or to
2519 * tmp floppy area), how much data to load (the size of the buffer, the whole
2520 * track, or a single sector)
2521 * All floppy_track_buffer handling goes in here. If we ever add track buffer
2522 * allocation on the fly, it should be done here. No other part should need
2523 * modification.
2524 */
2525
2526static int make_raw_rw_request(void)
2527{
2528 int aligned_sector_t;
Jesper Juhl06f748c2007-10-16 23:30:57 -07002529 int max_sector;
2530 int max_size;
2531 int tracksize;
2532 int ssize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002534 if (WARN(max_buffer_sectors == 0, "VFS: Block I/O scheduled on unopened device\n"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
2537 set_fdc((long)current_req->rq_disk->private_data);
2538
2539 raw_cmd = &default_raw_cmd;
Fengguang Wu2fb2ca62012-07-28 19:45:59 +08002540 raw_cmd->flags = FD_RAW_SPIN | FD_RAW_NEED_DISK | FD_RAW_NEED_SEEK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 raw_cmd->cmd_count = NR_RW;
2542 if (rq_data_dir(current_req) == READ) {
2543 raw_cmd->flags |= FD_RAW_READ;
2544 COMMAND = FM_MODE(_floppy, FD_READ);
2545 } else if (rq_data_dir(current_req) == WRITE) {
2546 raw_cmd->flags |= FD_RAW_WRITE;
2547 COMMAND = FM_MODE(_floppy, FD_WRITE);
2548 } else {
Joe Perches275176b2010-03-10 15:21:06 -08002549 DPRINT("%s: unknown command\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 return 0;
2551 }
2552
2553 max_sector = _floppy->sect * _floppy->head;
2554
Tejun Heo83096eb2009-05-07 22:24:39 +09002555 TRACK = (int)blk_rq_pos(current_req) / max_sector;
2556 fsector_t = (int)blk_rq_pos(current_req) % max_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 if (_floppy->track && TRACK >= _floppy->track) {
Tejun Heo83096eb2009-05-07 22:24:39 +09002558 if (blk_rq_cur_sectors(current_req) & 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 current_count_sectors = 1;
2560 return 1;
2561 } else
2562 return 0;
2563 }
2564 HEAD = fsector_t / _floppy->sect;
2565
Keith Wansbrough9e491842008-09-22 14:57:17 -07002566 if (((_floppy->stretch & (FD_SWAPSIDES | FD_SECTBASEMASK)) ||
Joe Perchese0298532010-03-10 15:20:55 -08002567 test_bit(FD_NEED_TWADDLE_BIT, &DRS->flags)) &&
2568 fsector_t < _floppy->sect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 max_sector = _floppy->sect;
2570
2571 /* 2M disks have phantom sectors on the first track */
2572 if ((_floppy->rate & FD_2M) && (!TRACK) && (!HEAD)) {
2573 max_sector = 2 * _floppy->sect / 3;
2574 if (fsector_t >= max_sector) {
2575 current_count_sectors =
2576 min_t(int, _floppy->sect - fsector_t,
Tejun Heo83096eb2009-05-07 22:24:39 +09002577 blk_rq_sectors(current_req));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 return 1;
2579 }
2580 SIZECODE = 2;
2581 } else
2582 SIZECODE = FD_SIZECODE(_floppy);
2583 raw_cmd->rate = _floppy->rate & 0x43;
2584 if ((_floppy->rate & FD_2M) && (TRACK || HEAD) && raw_cmd->rate == 2)
2585 raw_cmd->rate = 1;
2586
2587 if (SIZECODE)
2588 SIZECODE2 = 0xff;
2589 else
2590 SIZECODE2 = 0x80;
2591 raw_cmd->track = TRACK << STRETCH(_floppy);
2592 DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, HEAD);
2593 GAP = _floppy->gap;
Joe Perches712e1de2010-03-10 15:21:10 -08002594 ssize = DIV_ROUND_UP(1 << SIZECODE, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 SECT_PER_TRACK = _floppy->sect << 2 >> SIZECODE;
2596 SECTOR = ((fsector_t % _floppy->sect) << 2 >> SIZECODE) +
Keith Wansbrough9e491842008-09-22 14:57:17 -07002597 FD_SECTBASE(_floppy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599 /* tracksize describes the size which can be filled up with sectors
2600 * of size ssize.
2601 */
2602 tracksize = _floppy->sect - _floppy->sect % ssize;
2603 if (tracksize < _floppy->sect) {
2604 SECT_PER_TRACK++;
2605 if (tracksize <= fsector_t % _floppy->sect)
2606 SECTOR--;
2607
2608 /* if we are beyond tracksize, fill up using smaller sectors */
2609 while (tracksize <= fsector_t % _floppy->sect) {
2610 while (tracksize + ssize > _floppy->sect) {
2611 SIZECODE--;
2612 ssize >>= 1;
2613 }
2614 SECTOR++;
2615 SECT_PER_TRACK++;
2616 tracksize += ssize;
2617 }
2618 max_sector = HEAD * _floppy->sect + tracksize;
2619 } else if (!TRACK && !HEAD && !(_floppy->rate & FD_2M) && probing) {
2620 max_sector = _floppy->sect;
2621 } else if (!HEAD && CT(COMMAND) == FD_WRITE) {
2622 /* for virtual DMA bug workaround */
2623 max_sector = _floppy->sect;
2624 }
2625
2626 in_sector_offset = (fsector_t % _floppy->sect) % ssize;
2627 aligned_sector_t = fsector_t - in_sector_offset;
Tejun Heo83096eb2009-05-07 22:24:39 +09002628 max_size = blk_rq_sectors(current_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 if ((raw_cmd->track == buffer_track) &&
2630 (current_drive == buffer_drive) &&
2631 (fsector_t >= buffer_min) && (fsector_t < buffer_max)) {
2632 /* data already in track buffer */
2633 if (CT(COMMAND) == FD_READ) {
2634 copy_buffer(1, max_sector, buffer_max);
2635 return 1;
2636 }
Tejun Heo83096eb2009-05-07 22:24:39 +09002637 } else if (in_sector_offset || blk_rq_sectors(current_req) < ssize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 if (CT(COMMAND) == FD_WRITE) {
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002639 unsigned int sectors;
2640
2641 sectors = fsector_t + blk_rq_sectors(current_req);
2642 if (sectors > ssize && sectors < ssize + ssize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 max_size = ssize + ssize;
2644 else
2645 max_size = ssize;
2646 }
2647 raw_cmd->flags &= ~FD_RAW_WRITE;
2648 raw_cmd->flags |= FD_RAW_READ;
2649 COMMAND = FM_MODE(_floppy, FD_READ);
Jens Axboeb4f42e22014-04-10 09:46:28 -06002650 } else if ((unsigned long)bio_data(current_req->bio) < MAX_DMA_ADDRESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 unsigned long dma_limit;
2652 int direct, indirect;
2653
2654 indirect =
2655 transfer_size(ssize, max_sector,
2656 max_buffer_sectors * 2) - fsector_t;
2657
2658 /*
2659 * Do NOT use minimum() here---MAX_DMA_ADDRESS is 64 bits wide
2660 * on a 64 bit machine!
2661 */
2662 max_size = buffer_chain_size();
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002663 dma_limit = (MAX_DMA_ADDRESS -
Jens Axboeb4f42e22014-04-10 09:46:28 -06002664 ((unsigned long)bio_data(current_req->bio))) >> 9;
Joe Perchesa81ee542010-03-10 15:20:46 -08002665 if ((unsigned long)max_size > dma_limit)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 max_size = dma_limit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 /* 64 kb boundaries */
Jens Axboeb4f42e22014-04-10 09:46:28 -06002668 if (CROSS_64KB(bio_data(current_req->bio), max_size << 9))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 max_size = (K_64 -
Jens Axboeb4f42e22014-04-10 09:46:28 -06002670 ((unsigned long)bio_data(current_req->bio)) %
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 K_64) >> 9;
2672 direct = transfer_size(ssize, max_sector, max_size) - fsector_t;
2673 /*
2674 * We try to read tracks, but if we get too many errors, we
2675 * go back to reading just one sector at a time.
2676 *
2677 * This means we should be able to read a sector even if there
2678 * are other bad sectors on this track.
2679 */
2680 if (!direct ||
2681 (indirect * 2 > direct * 3 &&
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002682 *errors < DP->max_errors.read_track &&
2683 ((!probing ||
2684 (DP->read_track & (1 << DRS->probed_format)))))) {
Tejun Heo83096eb2009-05-07 22:24:39 +09002685 max_size = blk_rq_sectors(current_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 } else {
Jens Axboeb4f42e22014-04-10 09:46:28 -06002687 raw_cmd->kernel_data = bio_data(current_req->bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 raw_cmd->length = current_count_sectors << 9;
2689 if (raw_cmd->length == 0) {
Joe Perches275176b2010-03-10 15:21:06 -08002690 DPRINT("%s: zero dma transfer attempted\n", __func__);
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002691 DPRINT("indirect=%d direct=%d fsector_t=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 indirect, direct, fsector_t);
2693 return 0;
2694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 virtualdmabug_workaround();
2696 return 2;
2697 }
2698 }
2699
2700 if (CT(COMMAND) == FD_READ)
2701 max_size = max_sector; /* unbounded */
2702
2703 /* claim buffer track if needed */
2704 if (buffer_track != raw_cmd->track || /* bad track */
2705 buffer_drive != current_drive || /* bad drive */
2706 fsector_t > buffer_max ||
2707 fsector_t < buffer_min ||
2708 ((CT(COMMAND) == FD_READ ||
Tejun Heo83096eb2009-05-07 22:24:39 +09002709 (!in_sector_offset && blk_rq_sectors(current_req) >= ssize)) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 max_sector > 2 * max_buffer_sectors + buffer_min &&
Joe Perchesbb57f0c62010-03-10 15:20:50 -08002711 max_size + fsector_t > 2 * max_buffer_sectors + buffer_min)) {
2712 /* not enough space */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 buffer_track = -1;
2714 buffer_drive = current_drive;
2715 buffer_max = buffer_min = aligned_sector_t;
2716 }
2717 raw_cmd->kernel_data = floppy_track_buffer +
Joe Perchesbb57f0c62010-03-10 15:20:50 -08002718 ((aligned_sector_t - buffer_min) << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
2720 if (CT(COMMAND) == FD_WRITE) {
2721 /* copy write buffer to track buffer.
2722 * if we get here, we know that the write
2723 * is either aligned or the data already in the buffer
2724 * (buffer will be overwritten) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 if (in_sector_offset && buffer_track == -1)
2726 DPRINT("internal error offset !=0 on write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 buffer_track = raw_cmd->track;
2728 buffer_drive = current_drive;
2729 copy_buffer(ssize, max_sector,
2730 2 * max_buffer_sectors + buffer_min);
2731 } else
2732 transfer_size(ssize, max_sector,
2733 2 * max_buffer_sectors + buffer_min -
2734 aligned_sector_t);
2735
2736 /* round up current_count_sectors to get dma xfer size */
2737 raw_cmd->length = in_sector_offset + current_count_sectors;
2738 raw_cmd->length = ((raw_cmd->length - 1) | (ssize - 1)) + 1;
2739 raw_cmd->length <<= 9;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 if ((raw_cmd->length < current_count_sectors << 9) ||
Jens Axboeb4f42e22014-04-10 09:46:28 -06002741 (raw_cmd->kernel_data != bio_data(current_req->bio) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 CT(COMMAND) == FD_WRITE &&
2743 (aligned_sector_t + (raw_cmd->length >> 9) > buffer_max ||
2744 aligned_sector_t < buffer_min)) ||
2745 raw_cmd->length % (128 << SIZECODE) ||
2746 raw_cmd->length <= 0 || current_count_sectors <= 0) {
2747 DPRINT("fractionary current count b=%lx s=%lx\n",
2748 raw_cmd->length, current_count_sectors);
Jens Axboeb4f42e22014-04-10 09:46:28 -06002749 if (raw_cmd->kernel_data != bio_data(current_req->bio))
Joe Perchesb46df352010-03-10 15:20:46 -08002750 pr_info("addr=%d, length=%ld\n",
2751 (int)((raw_cmd->kernel_data -
2752 floppy_track_buffer) >> 9),
2753 current_count_sectors);
2754 pr_info("st=%d ast=%d mse=%d msi=%d\n",
2755 fsector_t, aligned_sector_t, max_sector, max_size);
2756 pr_info("ssize=%x SIZECODE=%d\n", ssize, SIZECODE);
2757 pr_info("command=%x SECTOR=%d HEAD=%d, TRACK=%d\n",
2758 COMMAND, SECTOR, HEAD, TRACK);
2759 pr_info("buffer drive=%d\n", buffer_drive);
2760 pr_info("buffer track=%d\n", buffer_track);
2761 pr_info("buffer_min=%d\n", buffer_min);
2762 pr_info("buffer_max=%d\n", buffer_max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 return 0;
2764 }
2765
Jens Axboeb4f42e22014-04-10 09:46:28 -06002766 if (raw_cmd->kernel_data != bio_data(current_req->bio)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 if (raw_cmd->kernel_data < floppy_track_buffer ||
2768 current_count_sectors < 0 ||
2769 raw_cmd->length < 0 ||
2770 raw_cmd->kernel_data + raw_cmd->length >
2771 floppy_track_buffer + (max_buffer_sectors << 10)) {
2772 DPRINT("buffer overrun in schedule dma\n");
Joe Perchesb46df352010-03-10 15:20:46 -08002773 pr_info("fsector_t=%d buffer_min=%d current_count=%ld\n",
2774 fsector_t, buffer_min, raw_cmd->length >> 9);
2775 pr_info("current_count_sectors=%ld\n",
2776 current_count_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 if (CT(COMMAND) == FD_READ)
Joe Perchesb46df352010-03-10 15:20:46 -08002778 pr_info("read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 if (CT(COMMAND) == FD_WRITE)
Joe Perchesb46df352010-03-10 15:20:46 -08002780 pr_info("write\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 return 0;
2782 }
Tejun Heo1011c1b2009-05-07 22:24:45 +09002783 } else if (raw_cmd->length > blk_rq_bytes(current_req) ||
Tejun Heo83096eb2009-05-07 22:24:39 +09002784 current_count_sectors > blk_rq_sectors(current_req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 DPRINT("buffer overrun in direct transfer\n");
2786 return 0;
2787 } else if (raw_cmd->length < current_count_sectors << 9) {
2788 DPRINT("more sectors than bytes\n");
Joe Perchesb46df352010-03-10 15:20:46 -08002789 pr_info("bytes=%ld\n", raw_cmd->length >> 9);
2790 pr_info("sectors=%ld\n", current_count_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 }
2792 if (raw_cmd->length == 0) {
2793 DPRINT("zero dma transfer attempted from make_raw_request\n");
2794 return 0;
2795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
2797 virtualdmabug_workaround();
2798 return 2;
2799}
2800
Jens Axboe48821182010-09-22 09:32:36 +02002801static int set_next_request(void)
2802{
Omar Sandovala9f38e12018-10-15 09:21:34 -06002803 current_req = list_first_entry_or_null(&floppy_reqs, struct request,
2804 queuelist);
2805 if (current_req) {
2806 current_req->error_count = 0;
2807 list_del_init(&current_req->queuelist);
2808 }
Jens Axboe48821182010-09-22 09:32:36 +02002809 return current_req != NULL;
2810}
2811
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812static void redo_fd_request(void)
2813{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 int drive;
2815 int tmp;
2816
2817 lastredo = jiffies;
2818 if (current_drive < N_DRIVE)
2819 floppy_off(current_drive);
2820
Joe Perches0da31322010-03-10 15:21:03 -08002821do_request:
2822 if (!current_req) {
Jens Axboe48821182010-09-22 09:32:36 +02002823 int pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Jens Axboe48821182010-09-22 09:32:36 +02002825 spin_lock_irq(&floppy_lock);
2826 pending = set_next_request();
2827 spin_unlock_irq(&floppy_lock);
Jens Axboe48821182010-09-22 09:32:36 +02002828 if (!pending) {
Joe Perches0da31322010-03-10 15:21:03 -08002829 do_floppy = NULL;
2830 unlock_fdc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 }
Joe Perches0da31322010-03-10 15:21:03 -08002834 drive = (long)current_req->rq_disk->private_data;
2835 set_fdc(drive);
Joe Perches73507e62010-03-10 15:21:03 -08002836 reschedule_timeout(current_reqD, "redo fd request");
Joe Perches0da31322010-03-10 15:21:03 -08002837
2838 set_floppy(drive);
2839 raw_cmd = &default_raw_cmd;
2840 raw_cmd->flags = 0;
2841 if (start_motor(redo_fd_request))
2842 return;
2843
2844 disk_change(current_drive);
2845 if (test_bit(current_drive, &fake_change) ||
2846 test_bit(FD_DISK_CHANGED_BIT, &DRS->flags)) {
2847 DPRINT("disk absent or changed during operation\n");
2848 request_done(0);
2849 goto do_request;
2850 }
2851 if (!_floppy) { /* Autodetection */
2852 if (!probing) {
2853 DRS->probed_format = 0;
2854 if (next_valid_format()) {
2855 DPRINT("no autodetectable formats\n");
2856 _floppy = NULL;
2857 request_done(0);
2858 goto do_request;
2859 }
2860 }
2861 probing = 1;
2862 _floppy = floppy_type + DP->autodetect[DRS->probed_format];
2863 } else
2864 probing = 0;
Christoph Hellwig45908792017-04-20 16:03:12 +02002865 errors = &(current_req->error_count);
Joe Perches0da31322010-03-10 15:21:03 -08002866 tmp = make_raw_rw_request();
2867 if (tmp < 2) {
2868 request_done(tmp);
2869 goto do_request;
2870 }
2871
2872 if (test_bit(FD_NEED_TWADDLE_BIT, &DRS->flags))
2873 twaddle();
2874 schedule_bh(floppy_start);
Joe Perchesded28632010-03-10 15:21:09 -08002875 debugt(__func__, "queue fd request");
Joe Perches0da31322010-03-10 15:21:03 -08002876 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877}
2878
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002879static const struct cont_t rw_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 .interrupt = rw_interrupt,
2881 .redo = redo_fd_request,
2882 .error = bad_flp_intr,
2883 .done = request_done
2884};
2885
2886static void process_fd_request(void)
2887{
2888 cont = &rw_cont;
2889 schedule_bh(redo_fd_request);
2890}
2891
Omar Sandovala9f38e12018-10-15 09:21:34 -06002892static blk_status_t floppy_queue_rq(struct blk_mq_hw_ctx *hctx,
2893 const struct blk_mq_queue_data *bd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894{
Omar Sandovala9f38e12018-10-15 09:21:34 -06002895 blk_mq_start_request(bd->rq);
2896
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002897 if (WARN(max_buffer_sectors == 0,
2898 "VFS: %s called on non-open device\n", __func__))
Omar Sandovala9f38e12018-10-15 09:21:34 -06002899 return BLK_STS_IOERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002901 if (WARN(atomic_read(&usage_count) == 0,
Christoph Hellwigaebf5262017-01-31 16:57:31 +01002902 "warning: usage count=0, current_req=%p sect=%ld flags=%llx\n",
2903 current_req, (long)blk_rq_pos(current_req),
Jens Axboe59533162013-05-23 12:25:08 +02002904 (unsigned long long) current_req->cmd_flags))
Omar Sandovala9f38e12018-10-15 09:21:34 -06002905 return BLK_STS_IOERR;
2906
2907 spin_lock_irq(&floppy_lock);
2908 list_add_tail(&bd->rq->queuelist, &floppy_reqs);
2909 spin_unlock_irq(&floppy_lock);
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002910
Jiri Kosina070ad7e2012-05-18 13:50:25 +02002911 if (test_and_set_bit(0, &fdc_busy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 /* fdc busy, this new request will be treated when the
2913 current one is done */
Joe Perches275176b2010-03-10 15:21:06 -08002914 is_alive(__func__, "old request running");
Omar Sandovala9f38e12018-10-15 09:21:34 -06002915 return BLK_STS_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 }
Omar Sandovala9f38e12018-10-15 09:21:34 -06002917
Jiri Kosina070ad7e2012-05-18 13:50:25 +02002918 command_status = FD_COMMAND_NONE;
2919 __reschedule_timeout(MAXTIMEOUT, "fd_request");
2920 set_fdc(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 process_fd_request();
Joe Perches275176b2010-03-10 15:21:06 -08002922 is_alive(__func__, "");
Omar Sandovala9f38e12018-10-15 09:21:34 -06002923 return BLK_STS_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924}
2925
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002926static const struct cont_t poll_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 .interrupt = success_and_wakeup,
2928 .redo = floppy_ready,
2929 .error = generic_failure,
2930 .done = generic_done
2931};
2932
Joe Perches74f63f42010-03-10 15:20:58 -08002933static int poll_drive(bool interruptible, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 /* no auto-sense, just clear dcl */
2936 raw_cmd = &default_raw_cmd;
2937 raw_cmd->flags = flag;
2938 raw_cmd->track = 0;
2939 raw_cmd->cmd_count = 0;
2940 cont = &poll_cont;
Joe Perches87f530d2010-03-10 15:20:54 -08002941 debug_dcl(DP->flags, "setting NEWCHANGE in poll_drive\n");
Joe Perchese0298532010-03-10 15:20:55 -08002942 set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Joe Perches55eee802010-03-10 15:20:57 -08002943
2944 return wait_til_done(floppy_ready, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945}
2946
2947/*
2948 * User triggered reset
2949 * ====================
2950 */
2951
2952static void reset_intr(void)
2953{
Joe Perchesb46df352010-03-10 15:20:46 -08002954 pr_info("weird, reset interrupt called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955}
2956
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002957static const struct cont_t reset_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 .interrupt = reset_intr,
2959 .redo = success_and_wakeup,
2960 .error = generic_failure,
2961 .done = generic_done
2962};
2963
Joe Perches74f63f42010-03-10 15:20:58 -08002964static int user_reset_fdc(int drive, int arg, bool interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965{
2966 int ret;
2967
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01002968 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08002969 return -EINTR;
2970
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 if (arg == FD_RESET_ALWAYS)
2972 FDCS->reset = 1;
2973 if (FDCS->reset) {
2974 cont = &reset_cont;
Joe Perches55eee802010-03-10 15:20:57 -08002975 ret = wait_til_done(reset_fdc, interruptible);
2976 if (ret == -EINTR)
2977 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 }
2979 process_fd_request();
Joe Perches52a0d612010-03-10 15:20:53 -08002980 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981}
2982
2983/*
2984 * Misc Ioctl's and support
2985 * ========================
2986 */
2987static inline int fd_copyout(void __user *param, const void *address,
2988 unsigned long size)
2989{
2990 return copy_to_user(param, address, size) ? -EFAULT : 0;
2991}
2992
Joe Perches48c8cee2010-03-10 15:20:45 -08002993static inline int fd_copyin(void __user *param, void *address,
2994 unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
2996 return copy_from_user(address, param, size) ? -EFAULT : 0;
2997}
2998
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02002999static const char *drive_name(int type, int drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000{
3001 struct floppy_struct *floppy;
3002
3003 if (type)
3004 floppy = floppy_type + type;
3005 else {
3006 if (UDP->native_format)
3007 floppy = floppy_type + UDP->native_format;
3008 else
3009 return "(null)";
3010 }
3011 if (floppy->name)
3012 return floppy->name;
3013 else
3014 return "(null)";
3015}
3016
3017/* raw commands */
3018static void raw_cmd_done(int flag)
3019{
3020 int i;
3021
3022 if (!flag) {
3023 raw_cmd->flags |= FD_RAW_FAILURE;
3024 raw_cmd->flags |= FD_RAW_HARDFAILURE;
3025 } else {
3026 raw_cmd->reply_count = inr;
3027 if (raw_cmd->reply_count > MAX_REPLIES)
3028 raw_cmd->reply_count = 0;
3029 for (i = 0; i < raw_cmd->reply_count; i++)
3030 raw_cmd->reply[i] = reply_buffer[i];
3031
3032 if (raw_cmd->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
3033 unsigned long flags;
3034 flags = claim_dma_lock();
3035 raw_cmd->length = fd_get_dma_residue();
3036 release_dma_lock(flags);
3037 }
3038
3039 if ((raw_cmd->flags & FD_RAW_SOFTFAILURE) &&
3040 (!raw_cmd->reply_count || (raw_cmd->reply[0] & 0xc0)))
3041 raw_cmd->flags |= FD_RAW_FAILURE;
3042
3043 if (disk_change(current_drive))
3044 raw_cmd->flags |= FD_RAW_DISK_CHANGE;
3045 else
3046 raw_cmd->flags &= ~FD_RAW_DISK_CHANGE;
3047 if (raw_cmd->flags & FD_RAW_NO_MOTOR_AFTER)
Kees Cookb1bf4212017-10-04 17:49:29 -07003048 motor_off_callback(&motor_off_timer[current_drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049
3050 if (raw_cmd->next &&
3051 (!(raw_cmd->flags & FD_RAW_FAILURE) ||
3052 !(raw_cmd->flags & FD_RAW_STOP_IF_FAILURE)) &&
3053 ((raw_cmd->flags & FD_RAW_FAILURE) ||
3054 !(raw_cmd->flags & FD_RAW_STOP_IF_SUCCESS))) {
3055 raw_cmd = raw_cmd->next;
3056 return;
3057 }
3058 }
3059 generic_done(flag);
3060}
3061
Stephen Hemminger3b06c212010-07-20 20:09:00 -06003062static const struct cont_t raw_cmd_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 .interrupt = success_and_wakeup,
3064 .redo = floppy_start,
3065 .error = generic_failure,
3066 .done = raw_cmd_done
3067};
3068
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003069static int raw_cmd_copyout(int cmd, void __user *param,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 struct floppy_raw_cmd *ptr)
3071{
3072 int ret;
3073
3074 while (ptr) {
Matthew Daley2145e152014-04-28 19:05:21 +12003075 struct floppy_raw_cmd cmd = *ptr;
3076 cmd.next = NULL;
3077 cmd.kernel_data = NULL;
3078 ret = copy_to_user(param, &cmd, sizeof(cmd));
Joe Perches86b12b42010-03-10 15:20:56 -08003079 if (ret)
3080 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 param += sizeof(struct floppy_raw_cmd);
3082 if ((ptr->flags & FD_RAW_READ) && ptr->buffer_length) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08003083 if (ptr->length >= 0 &&
3084 ptr->length <= ptr->buffer_length) {
3085 long length = ptr->buffer_length - ptr->length;
Joe Perches4575b552010-03-10 15:20:55 -08003086 ret = fd_copyout(ptr->data, ptr->kernel_data,
3087 length);
3088 if (ret)
3089 return ret;
Joe Perchesbb57f0c62010-03-10 15:20:50 -08003090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 }
3092 ptr = ptr->next;
3093 }
Joe Perches7f252712010-03-10 15:21:08 -08003094
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 return 0;
3096}
3097
3098static void raw_cmd_free(struct floppy_raw_cmd **ptr)
3099{
Jesper Juhl06f748c2007-10-16 23:30:57 -07003100 struct floppy_raw_cmd *next;
3101 struct floppy_raw_cmd *this;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102
3103 this = *ptr;
3104 *ptr = NULL;
3105 while (this) {
3106 if (this->buffer_length) {
3107 fd_dma_mem_free((unsigned long)this->kernel_data,
3108 this->buffer_length);
3109 this->buffer_length = 0;
3110 }
3111 next = this->next;
3112 kfree(this);
3113 this = next;
3114 }
3115}
3116
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003117static int raw_cmd_copyin(int cmd, void __user *param,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 struct floppy_raw_cmd **rcmd)
3119{
3120 struct floppy_raw_cmd *ptr;
3121 int ret;
3122 int i;
3123
3124 *rcmd = NULL;
Joe Perches7f252712010-03-10 15:21:08 -08003125
3126loop:
Vlastimil Babka1661f2e2017-01-04 11:19:31 +01003127 ptr = kmalloc(sizeof(struct floppy_raw_cmd), GFP_KERNEL);
Joe Perches7f252712010-03-10 15:21:08 -08003128 if (!ptr)
3129 return -ENOMEM;
3130 *rcmd = ptr;
3131 ret = copy_from_user(ptr, param, sizeof(*ptr));
Joe Perches7f252712010-03-10 15:21:08 -08003132 ptr->next = NULL;
3133 ptr->buffer_length = 0;
Matthew Daleyef87dbe2014-04-28 19:05:20 +12003134 ptr->kernel_data = NULL;
3135 if (ret)
3136 return -EFAULT;
Joe Perches7f252712010-03-10 15:21:08 -08003137 param += sizeof(struct floppy_raw_cmd);
3138 if (ptr->cmd_count > 33)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 /* the command may now also take up the space
3140 * initially intended for the reply & the
3141 * reply count. Needed for long 82078 commands
3142 * such as RESTORE, which takes ... 17 command
3143 * bytes. Murphy's law #137: When you reserve
3144 * 16 bytes for a structure, you'll one day
3145 * discover that you really need 17...
3146 */
Joe Perches7f252712010-03-10 15:21:08 -08003147 return -EINVAL;
3148
3149 for (i = 0; i < 16; i++)
3150 ptr->reply[i] = 0;
3151 ptr->resultcode = 0;
Joe Perches7f252712010-03-10 15:21:08 -08003152
3153 if (ptr->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
3154 if (ptr->length <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 return -EINVAL;
Joe Perches7f252712010-03-10 15:21:08 -08003156 ptr->kernel_data = (char *)fd_dma_mem_alloc(ptr->length);
3157 fallback_on_nodma_alloc(&ptr->kernel_data, ptr->length);
3158 if (!ptr->kernel_data)
3159 return -ENOMEM;
3160 ptr->buffer_length = ptr->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 }
Joe Perches7f252712010-03-10 15:21:08 -08003162 if (ptr->flags & FD_RAW_WRITE) {
3163 ret = fd_copyin(ptr->data, ptr->kernel_data, ptr->length);
3164 if (ret)
3165 return ret;
3166 }
3167
3168 if (ptr->flags & FD_RAW_MORE) {
3169 rcmd = &(ptr->next);
3170 ptr->rate &= 0x43;
3171 goto loop;
3172 }
3173
3174 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175}
3176
3177static int raw_cmd_ioctl(int cmd, void __user *param)
3178{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 struct floppy_raw_cmd *my_raw_cmd;
Jesper Juhl06f748c2007-10-16 23:30:57 -07003180 int drive;
3181 int ret2;
3182 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183
3184 if (FDCS->rawcmd <= 1)
3185 FDCS->rawcmd = 1;
3186 for (drive = 0; drive < N_DRIVE; drive++) {
3187 if (FDC(drive) != fdc)
3188 continue;
3189 if (drive == current_drive) {
3190 if (UDRS->fd_ref > 1) {
3191 FDCS->rawcmd = 2;
3192 break;
3193 }
3194 } else if (UDRS->fd_ref) {
3195 FDCS->rawcmd = 2;
3196 break;
3197 }
3198 }
3199
3200 if (FDCS->reset)
3201 return -EIO;
3202
3203 ret = raw_cmd_copyin(cmd, param, &my_raw_cmd);
3204 if (ret) {
3205 raw_cmd_free(&my_raw_cmd);
3206 return ret;
3207 }
3208
3209 raw_cmd = my_raw_cmd;
3210 cont = &raw_cmd_cont;
Joe Perches74f63f42010-03-10 15:20:58 -08003211 ret = wait_til_done(floppy_start, true);
Joe Perches87f530d2010-03-10 15:20:54 -08003212 debug_dcl(DP->flags, "calling disk change from raw_cmd ioctl\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
3214 if (ret != -EINTR && FDCS->reset)
3215 ret = -EIO;
3216
3217 DRS->track = NO_TRACK;
3218
3219 ret2 = raw_cmd_copyout(cmd, param, my_raw_cmd);
3220 if (!ret)
3221 ret = ret2;
3222 raw_cmd_free(&my_raw_cmd);
3223 return ret;
3224}
3225
3226static int invalidate_drive(struct block_device *bdev)
3227{
3228 /* invalidate the buffer track to force a reread */
3229 set_bit((long)bdev->bd_disk->private_data, &fake_change);
3230 process_fd_request();
3231 check_disk_change(bdev);
3232 return 0;
3233}
3234
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003235static int set_geometry(unsigned int cmd, struct floppy_struct *g,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 int drive, int type, struct block_device *bdev)
3237{
3238 int cnt;
3239
3240 /* sanity checking for parameters. */
3241 if (g->sect <= 0 ||
3242 g->head <= 0 ||
3243 g->track <= 0 || g->track > UDP->tracks >> STRETCH(g) ||
3244 /* check if reserved bits are set */
Keith Wansbrough9e491842008-09-22 14:57:17 -07003245 (g->stretch & ~(FD_STRETCH | FD_SWAPSIDES | FD_SECTBASEMASK)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 return -EINVAL;
3247 if (type) {
3248 if (!capable(CAP_SYS_ADMIN))
3249 return -EPERM;
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003250 mutex_lock(&open_lock);
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003251 if (lock_fdc(drive)) {
Jiri Slaby8516a502009-06-30 11:41:44 -07003252 mutex_unlock(&open_lock);
3253 return -EINTR;
3254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 floppy_type[type] = *g;
3256 floppy_type[type].name = "user format";
3257 for (cnt = type << 2; cnt < (type << 2) + 4; cnt++)
3258 floppy_sizes[cnt] = floppy_sizes[cnt + 0x80] =
3259 floppy_type[type].size + 1;
3260 process_fd_request();
3261 for (cnt = 0; cnt < N_DRIVE; cnt++) {
3262 struct block_device *bdev = opened_bdev[cnt];
3263 if (!bdev || ITYPE(drive_state[cnt].fd_device) != type)
3264 continue;
NeilBrown93b270f2011-02-24 17:25:47 +11003265 __invalidate_device(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 }
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003267 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 } else {
3269 int oldStretch;
Joe Perches52a0d612010-03-10 15:20:53 -08003270
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003271 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003272 return -EINTR;
Joe Perches4575b552010-03-10 15:20:55 -08003273 if (cmd != FDDEFPRM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 /* notice a disk change immediately, else
3275 * we lose our settings immediately*/
Joe Perches74f63f42010-03-10 15:20:58 -08003276 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003277 return -EINTR;
3278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 oldStretch = g->stretch;
3280 user_params[drive] = *g;
3281 if (buffer_drive == drive)
3282 SUPBOUND(buffer_max, user_params[drive].sect);
3283 current_type[drive] = &user_params[drive];
3284 floppy_sizes[drive] = user_params[drive].size;
3285 if (cmd == FDDEFPRM)
3286 DRS->keep_data = -1;
3287 else
3288 DRS->keep_data = 1;
3289 /* invalidation. Invalidate only when needed, i.e.
3290 * when there are already sectors in the buffer cache
3291 * whose number will change. This is useful, because
3292 * mtools often changes the geometry of the disk after
3293 * looking at the boot block */
3294 if (DRS->maxblock > user_params[drive].sect ||
3295 DRS->maxtrack ||
3296 ((user_params[drive].sect ^ oldStretch) &
Keith Wansbrough9e491842008-09-22 14:57:17 -07003297 (FD_SWAPSIDES | FD_SECTBASEMASK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 invalidate_drive(bdev);
3299 else
3300 process_fd_request();
3301 }
3302 return 0;
3303}
3304
3305/* handle obsolete ioctl's */
Stephen Hemminger21af5442010-06-15 13:21:11 +02003306static unsigned int ioctl_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 FDCLRPRM,
3308 FDSETPRM,
3309 FDDEFPRM,
3310 FDGETPRM,
3311 FDMSGON,
3312 FDMSGOFF,
3313 FDFMTBEG,
3314 FDFMTTRK,
3315 FDFMTEND,
3316 FDSETEMSGTRESH,
3317 FDFLUSH,
3318 FDSETMAXERRS,
3319 FDGETMAXERRS,
3320 FDGETDRVTYP,
3321 FDSETDRVPRM,
3322 FDGETDRVPRM,
3323 FDGETDRVSTAT,
3324 FDPOLLDRVSTAT,
3325 FDRESET,
3326 FDGETFDCSTAT,
3327 FDWERRORCLR,
3328 FDWERRORGET,
3329 FDRAWCMD,
3330 FDEJECT,
3331 FDTWADDLE
3332};
3333
Stephen Hemminger21af5442010-06-15 13:21:11 +02003334static int normalize_ioctl(unsigned int *cmd, int *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335{
3336 int i;
3337
3338 for (i = 0; i < ARRAY_SIZE(ioctl_table); i++) {
3339 if ((*cmd & 0xffff) == (ioctl_table[i] & 0xffff)) {
3340 *size = _IOC_SIZE(*cmd);
3341 *cmd = ioctl_table[i];
3342 if (*size > _IOC_SIZE(*cmd)) {
Joe Perchesb46df352010-03-10 15:20:46 -08003343 pr_info("ioctl not yet supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 return -EFAULT;
3345 }
3346 return 0;
3347 }
3348 }
3349 return -EINVAL;
3350}
3351
3352static int get_floppy_geometry(int drive, int type, struct floppy_struct **g)
3353{
3354 if (type)
3355 *g = &floppy_type[type];
3356 else {
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003357 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003358 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003359 if (poll_drive(false, 0) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003360 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 process_fd_request();
3362 *g = current_type[drive];
3363 }
3364 if (!*g)
3365 return -ENODEV;
3366 return 0;
3367}
3368
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08003369static int fd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
3370{
3371 int drive = (long)bdev->bd_disk->private_data;
3372 int type = ITYPE(drive_state[drive].fd_device);
3373 struct floppy_struct *g;
3374 int ret;
3375
3376 ret = get_floppy_geometry(drive, type, &g);
3377 if (ret)
3378 return ret;
3379
3380 geo->heads = g->head;
3381 geo->sectors = g->sect;
3382 geo->cylinders = g->track;
3383 return 0;
3384}
3385
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003386static int fd_locked_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 unsigned long param)
3388{
Al Viroa4af9b42008-03-02 09:27:55 -05003389 int drive = (long)bdev->bd_disk->private_data;
Jesper Juhl06f748c2007-10-16 23:30:57 -07003390 int type = ITYPE(UDRS->fd_device);
3391 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 int ret;
3393 int size;
3394 union inparam {
3395 struct floppy_struct g; /* geometry */
3396 struct format_descr f;
3397 struct floppy_max_errors max_errors;
3398 struct floppy_drive_params dp;
3399 } inparam; /* parameters coming from user space */
Joe Perches724ee622010-03-10 15:21:11 -08003400 const void *outparam; /* parameters passed back to user space */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
3402 /* convert compatibility eject ioctls into floppy eject ioctl.
3403 * We do this in order to provide a means to eject floppy disks before
3404 * installing the new fdutils package */
3405 if (cmd == CDROMEJECT || /* CD-ROM eject */
Joe Perchesa81ee542010-03-10 15:20:46 -08003406 cmd == 0x6470) { /* SunOS floppy eject */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 DPRINT("obsolete eject ioctl\n");
3408 DPRINT("please use floppycontrol --eject\n");
3409 cmd = FDEJECT;
3410 }
3411
Joe Perchesa81ee542010-03-10 15:20:46 -08003412 if (!((cmd & 0xff00) == 0x0200))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 return -EINVAL;
3414
Joe Perchesa81ee542010-03-10 15:20:46 -08003415 /* convert the old style command into a new style command */
Joe Perches4575b552010-03-10 15:20:55 -08003416 ret = normalize_ioctl(&cmd, &size);
3417 if (ret)
3418 return ret;
Joe Perchesa81ee542010-03-10 15:20:46 -08003419
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 /* permission checks */
Joe Perches0aad92c2010-03-10 15:21:10 -08003421 if (((cmd & 0x40) && !(mode & (FMODE_WRITE | FMODE_WRITE_IOCTL))) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 ((cmd & 0x80) && !capable(CAP_SYS_ADMIN)))
3423 return -EPERM;
3424
Arjan van de Ven2886a8b2009-12-14 18:00:11 -08003425 if (WARN_ON(size < 0 || size > sizeof(inparam)))
3426 return -EINVAL;
3427
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 /* copyin */
Joe Perchesb87c9e02010-03-10 15:20:50 -08003429 memset(&inparam, 0, sizeof(inparam));
Joe Perches4575b552010-03-10 15:20:55 -08003430 if (_IOC_DIR(cmd) & _IOC_WRITE) {
3431 ret = fd_copyin((void __user *)param, &inparam, size);
3432 if (ret)
3433 return ret;
3434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Joe Perchesda273652010-03-10 15:20:52 -08003436 switch (cmd) {
3437 case FDEJECT:
3438 if (UDRS->fd_ref != 1)
3439 /* somebody else has this drive open */
3440 return -EBUSY;
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003441 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003442 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443
Joe Perchesda273652010-03-10 15:20:52 -08003444 /* do the actual eject. Fails on
3445 * non-Sparc architectures */
3446 ret = fd_eject(UNIT(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
Joe Perchese0298532010-03-10 15:20:55 -08003448 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
3449 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Joe Perchesda273652010-03-10 15:20:52 -08003450 process_fd_request();
3451 return ret;
3452 case FDCLRPRM:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003453 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003454 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003455 current_type[drive] = NULL;
3456 floppy_sizes[drive] = MAX_DISK_SIZE << 1;
3457 UDRS->keep_data = 0;
3458 return invalidate_drive(bdev);
3459 case FDSETPRM:
3460 case FDDEFPRM:
3461 return set_geometry(cmd, &inparam.g, drive, type, bdev);
3462 case FDGETPRM:
Joe Perches4575b552010-03-10 15:20:55 -08003463 ret = get_floppy_geometry(drive, type,
Joe Perches724ee622010-03-10 15:21:11 -08003464 (struct floppy_struct **)&outparam);
Joe Perches4575b552010-03-10 15:20:55 -08003465 if (ret)
3466 return ret;
Andy Whitcroft65eea8e2018-09-20 09:09:48 -06003467 memcpy(&inparam.g, outparam,
3468 offsetof(struct floppy_struct, name));
3469 outparam = &inparam.g;
Joe Perchesda273652010-03-10 15:20:52 -08003470 break;
3471 case FDMSGON:
3472 UDP->flags |= FTD_MSG;
3473 return 0;
3474 case FDMSGOFF:
3475 UDP->flags &= ~FTD_MSG;
3476 return 0;
3477 case FDFMTBEG:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003478 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003479 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003480 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003481 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003482 ret = UDRS->flags;
3483 process_fd_request();
3484 if (ret & FD_VERIFY)
3485 return -ENODEV;
3486 if (!(ret & FD_DISK_WRITABLE))
3487 return -EROFS;
3488 return 0;
3489 case FDFMTTRK:
3490 if (UDRS->fd_ref != 1)
3491 return -EBUSY;
3492 return do_format(drive, &inparam.f);
3493 case FDFMTEND:
3494 case FDFLUSH:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003495 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003496 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003497 return invalidate_drive(bdev);
3498 case FDSETEMSGTRESH:
3499 UDP->max_errors.reporting = (unsigned short)(param & 0x0f);
3500 return 0;
3501 case FDGETMAXERRS:
Joe Perches724ee622010-03-10 15:21:11 -08003502 outparam = &UDP->max_errors;
Joe Perchesda273652010-03-10 15:20:52 -08003503 break;
3504 case FDSETMAXERRS:
3505 UDP->max_errors = inparam.max_errors;
3506 break;
3507 case FDGETDRVTYP:
3508 outparam = drive_name(type, drive);
Joe Perches724ee622010-03-10 15:21:11 -08003509 SUPBOUND(size, strlen((const char *)outparam) + 1);
Joe Perchesda273652010-03-10 15:20:52 -08003510 break;
3511 case FDSETDRVPRM:
3512 *UDP = inparam.dp;
3513 break;
3514 case FDGETDRVPRM:
Joe Perches724ee622010-03-10 15:21:11 -08003515 outparam = UDP;
Joe Perchesda273652010-03-10 15:20:52 -08003516 break;
3517 case FDPOLLDRVSTAT:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003518 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003519 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003520 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003521 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003522 process_fd_request();
3523 /* fall through */
3524 case FDGETDRVSTAT:
Joe Perches724ee622010-03-10 15:21:11 -08003525 outparam = UDRS;
Joe Perchesda273652010-03-10 15:20:52 -08003526 break;
3527 case FDRESET:
Joe Perches74f63f42010-03-10 15:20:58 -08003528 return user_reset_fdc(drive, (int)param, true);
Joe Perchesda273652010-03-10 15:20:52 -08003529 case FDGETFDCSTAT:
Joe Perches724ee622010-03-10 15:21:11 -08003530 outparam = UFDCS;
Joe Perchesda273652010-03-10 15:20:52 -08003531 break;
3532 case FDWERRORCLR:
3533 memset(UDRWE, 0, sizeof(*UDRWE));
3534 return 0;
3535 case FDWERRORGET:
Joe Perches724ee622010-03-10 15:21:11 -08003536 outparam = UDRWE;
Joe Perchesda273652010-03-10 15:20:52 -08003537 break;
3538 case FDRAWCMD:
3539 if (type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 return -EINVAL;
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003541 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003542 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003543 set_floppy(drive);
Joe Perches4575b552010-03-10 15:20:55 -08003544 i = raw_cmd_ioctl(cmd, (void __user *)param);
3545 if (i == -EINTR)
3546 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003547 process_fd_request();
3548 return i;
3549 case FDTWADDLE:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003550 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003551 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003552 twaddle();
3553 process_fd_request();
3554 return 0;
3555 default:
3556 return -EINVAL;
3557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558
3559 if (_IOC_DIR(cmd) & _IOC_READ)
3560 return fd_copyout((void __user *)param, outparam, size);
Joe Perchesda273652010-03-10 15:20:52 -08003561
3562 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563}
3564
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003565static int fd_ioctl(struct block_device *bdev, fmode_t mode,
3566 unsigned int cmd, unsigned long param)
3567{
3568 int ret;
3569
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003570 mutex_lock(&floppy_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003571 ret = fd_locked_ioctl(bdev, mode, cmd, param);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003572 mutex_unlock(&floppy_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003573
3574 return ret;
3575}
3576
Al Viro229b53c2017-06-27 15:47:56 -04003577#ifdef CONFIG_COMPAT
3578
3579struct compat_floppy_drive_params {
3580 char cmos;
3581 compat_ulong_t max_dtr;
3582 compat_ulong_t hlt;
3583 compat_ulong_t hut;
3584 compat_ulong_t srt;
3585 compat_ulong_t spinup;
3586 compat_ulong_t spindown;
3587 unsigned char spindown_offset;
3588 unsigned char select_delay;
3589 unsigned char rps;
3590 unsigned char tracks;
3591 compat_ulong_t timeout;
3592 unsigned char interleave_sect;
3593 struct floppy_max_errors max_errors;
3594 char flags;
3595 char read_track;
3596 short autodetect[8];
3597 compat_int_t checkfreq;
3598 compat_int_t native_format;
3599};
3600
3601struct compat_floppy_drive_struct {
3602 signed char flags;
3603 compat_ulong_t spinup_date;
3604 compat_ulong_t select_date;
3605 compat_ulong_t first_read_date;
3606 short probed_format;
3607 short track;
3608 short maxblock;
3609 short maxtrack;
3610 compat_int_t generation;
3611 compat_int_t keep_data;
3612 compat_int_t fd_ref;
3613 compat_int_t fd_device;
3614 compat_int_t last_checked;
3615 compat_caddr_t dmabuf;
3616 compat_int_t bufblocks;
3617};
3618
3619struct compat_floppy_fdc_state {
3620 compat_int_t spec1;
3621 compat_int_t spec2;
3622 compat_int_t dtr;
3623 unsigned char version;
3624 unsigned char dor;
3625 compat_ulong_t address;
3626 unsigned int rawcmd:2;
3627 unsigned int reset:1;
3628 unsigned int need_configure:1;
3629 unsigned int perp_mode:2;
3630 unsigned int has_fifo:1;
3631 unsigned int driver_version;
3632 unsigned char track[4];
3633};
3634
3635struct compat_floppy_write_errors {
3636 unsigned int write_errors;
3637 compat_ulong_t first_error_sector;
3638 compat_int_t first_error_generation;
3639 compat_ulong_t last_error_sector;
3640 compat_int_t last_error_generation;
3641 compat_uint_t badness;
3642};
3643
3644#define FDSETPRM32 _IOW(2, 0x42, struct compat_floppy_struct)
3645#define FDDEFPRM32 _IOW(2, 0x43, struct compat_floppy_struct)
3646#define FDSETDRVPRM32 _IOW(2, 0x90, struct compat_floppy_drive_params)
3647#define FDGETDRVPRM32 _IOR(2, 0x11, struct compat_floppy_drive_params)
3648#define FDGETDRVSTAT32 _IOR(2, 0x12, struct compat_floppy_drive_struct)
3649#define FDPOLLDRVSTAT32 _IOR(2, 0x13, struct compat_floppy_drive_struct)
3650#define FDGETFDCSTAT32 _IOR(2, 0x15, struct compat_floppy_fdc_state)
3651#define FDWERRORGET32 _IOR(2, 0x17, struct compat_floppy_write_errors)
3652
3653static int compat_set_geometry(struct block_device *bdev, fmode_t mode, unsigned int cmd,
3654 struct compat_floppy_struct __user *arg)
3655{
3656 struct floppy_struct v;
3657 int drive, type;
3658 int err;
3659
3660 BUILD_BUG_ON(offsetof(struct floppy_struct, name) !=
3661 offsetof(struct compat_floppy_struct, name));
3662
3663 if (!(mode & (FMODE_WRITE | FMODE_WRITE_IOCTL)))
3664 return -EPERM;
3665
3666 memset(&v, 0, sizeof(struct floppy_struct));
3667 if (copy_from_user(&v, arg, offsetof(struct floppy_struct, name)))
3668 return -EFAULT;
3669
3670 mutex_lock(&floppy_mutex);
3671 drive = (long)bdev->bd_disk->private_data;
3672 type = ITYPE(UDRS->fd_device);
3673 err = set_geometry(cmd == FDSETPRM32 ? FDSETPRM : FDDEFPRM,
3674 &v, drive, type, bdev);
3675 mutex_unlock(&floppy_mutex);
3676 return err;
3677}
3678
3679static int compat_get_prm(int drive,
3680 struct compat_floppy_struct __user *arg)
3681{
3682 struct compat_floppy_struct v;
3683 struct floppy_struct *p;
3684 int err;
3685
3686 memset(&v, 0, sizeof(v));
3687 mutex_lock(&floppy_mutex);
3688 err = get_floppy_geometry(drive, ITYPE(UDRS->fd_device), &p);
3689 if (err) {
3690 mutex_unlock(&floppy_mutex);
3691 return err;
3692 }
3693 memcpy(&v, p, offsetof(struct floppy_struct, name));
3694 mutex_unlock(&floppy_mutex);
3695 if (copy_to_user(arg, &v, sizeof(struct compat_floppy_struct)))
3696 return -EFAULT;
3697 return 0;
3698}
3699
3700static int compat_setdrvprm(int drive,
3701 struct compat_floppy_drive_params __user *arg)
3702{
3703 struct compat_floppy_drive_params v;
3704
3705 if (!capable(CAP_SYS_ADMIN))
3706 return -EPERM;
3707 if (copy_from_user(&v, arg, sizeof(struct compat_floppy_drive_params)))
3708 return -EFAULT;
3709 mutex_lock(&floppy_mutex);
3710 UDP->cmos = v.cmos;
3711 UDP->max_dtr = v.max_dtr;
3712 UDP->hlt = v.hlt;
3713 UDP->hut = v.hut;
3714 UDP->srt = v.srt;
3715 UDP->spinup = v.spinup;
3716 UDP->spindown = v.spindown;
3717 UDP->spindown_offset = v.spindown_offset;
3718 UDP->select_delay = v.select_delay;
3719 UDP->rps = v.rps;
3720 UDP->tracks = v.tracks;
3721 UDP->timeout = v.timeout;
3722 UDP->interleave_sect = v.interleave_sect;
3723 UDP->max_errors = v.max_errors;
3724 UDP->flags = v.flags;
3725 UDP->read_track = v.read_track;
3726 memcpy(UDP->autodetect, v.autodetect, sizeof(v.autodetect));
3727 UDP->checkfreq = v.checkfreq;
3728 UDP->native_format = v.native_format;
3729 mutex_unlock(&floppy_mutex);
3730 return 0;
3731}
3732
3733static int compat_getdrvprm(int drive,
3734 struct compat_floppy_drive_params __user *arg)
3735{
3736 struct compat_floppy_drive_params v;
3737
3738 memset(&v, 0, sizeof(struct compat_floppy_drive_params));
3739 mutex_lock(&floppy_mutex);
3740 v.cmos = UDP->cmos;
3741 v.max_dtr = UDP->max_dtr;
3742 v.hlt = UDP->hlt;
3743 v.hut = UDP->hut;
3744 v.srt = UDP->srt;
3745 v.spinup = UDP->spinup;
3746 v.spindown = UDP->spindown;
3747 v.spindown_offset = UDP->spindown_offset;
3748 v.select_delay = UDP->select_delay;
3749 v.rps = UDP->rps;
3750 v.tracks = UDP->tracks;
3751 v.timeout = UDP->timeout;
3752 v.interleave_sect = UDP->interleave_sect;
3753 v.max_errors = UDP->max_errors;
3754 v.flags = UDP->flags;
3755 v.read_track = UDP->read_track;
3756 memcpy(v.autodetect, UDP->autodetect, sizeof(v.autodetect));
3757 v.checkfreq = UDP->checkfreq;
3758 v.native_format = UDP->native_format;
3759 mutex_unlock(&floppy_mutex);
3760
3761 if (copy_from_user(arg, &v, sizeof(struct compat_floppy_drive_params)))
3762 return -EFAULT;
3763 return 0;
3764}
3765
3766static int compat_getdrvstat(int drive, bool poll,
3767 struct compat_floppy_drive_struct __user *arg)
3768{
3769 struct compat_floppy_drive_struct v;
3770
3771 memset(&v, 0, sizeof(struct compat_floppy_drive_struct));
3772 mutex_lock(&floppy_mutex);
3773
3774 if (poll) {
3775 if (lock_fdc(drive))
3776 goto Eintr;
3777 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
3778 goto Eintr;
3779 process_fd_request();
3780 }
3781 v.spinup_date = UDRS->spinup_date;
3782 v.select_date = UDRS->select_date;
3783 v.first_read_date = UDRS->first_read_date;
3784 v.probed_format = UDRS->probed_format;
3785 v.track = UDRS->track;
3786 v.maxblock = UDRS->maxblock;
3787 v.maxtrack = UDRS->maxtrack;
3788 v.generation = UDRS->generation;
3789 v.keep_data = UDRS->keep_data;
3790 v.fd_ref = UDRS->fd_ref;
3791 v.fd_device = UDRS->fd_device;
3792 v.last_checked = UDRS->last_checked;
3793 v.dmabuf = (uintptr_t)UDRS->dmabuf;
3794 v.bufblocks = UDRS->bufblocks;
3795 mutex_unlock(&floppy_mutex);
3796
3797 if (copy_from_user(arg, &v, sizeof(struct compat_floppy_drive_struct)))
3798 return -EFAULT;
3799 return 0;
3800Eintr:
3801 mutex_unlock(&floppy_mutex);
3802 return -EINTR;
3803}
3804
3805static int compat_getfdcstat(int drive,
3806 struct compat_floppy_fdc_state __user *arg)
3807{
3808 struct compat_floppy_fdc_state v32;
3809 struct floppy_fdc_state v;
3810
3811 mutex_lock(&floppy_mutex);
3812 v = *UFDCS;
3813 mutex_unlock(&floppy_mutex);
3814
3815 memset(&v32, 0, sizeof(struct compat_floppy_fdc_state));
3816 v32.spec1 = v.spec1;
3817 v32.spec2 = v.spec2;
3818 v32.dtr = v.dtr;
3819 v32.version = v.version;
3820 v32.dor = v.dor;
3821 v32.address = v.address;
3822 v32.rawcmd = v.rawcmd;
3823 v32.reset = v.reset;
3824 v32.need_configure = v.need_configure;
3825 v32.perp_mode = v.perp_mode;
3826 v32.has_fifo = v.has_fifo;
3827 v32.driver_version = v.driver_version;
3828 memcpy(v32.track, v.track, 4);
3829 if (copy_to_user(arg, &v32, sizeof(struct compat_floppy_fdc_state)))
3830 return -EFAULT;
3831 return 0;
3832}
3833
3834static int compat_werrorget(int drive,
3835 struct compat_floppy_write_errors __user *arg)
3836{
3837 struct compat_floppy_write_errors v32;
3838 struct floppy_write_errors v;
3839
3840 memset(&v32, 0, sizeof(struct compat_floppy_write_errors));
3841 mutex_lock(&floppy_mutex);
3842 v = *UDRWE;
3843 mutex_unlock(&floppy_mutex);
3844 v32.write_errors = v.write_errors;
3845 v32.first_error_sector = v.first_error_sector;
3846 v32.first_error_generation = v.first_error_generation;
3847 v32.last_error_sector = v.last_error_sector;
3848 v32.last_error_generation = v.last_error_generation;
3849 v32.badness = v.badness;
3850 if (copy_to_user(arg, &v32, sizeof(struct compat_floppy_write_errors)))
3851 return -EFAULT;
3852 return 0;
3853}
3854
3855static int fd_compat_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
3856 unsigned long param)
3857{
3858 int drive = (long)bdev->bd_disk->private_data;
3859 switch (cmd) {
3860 case FDMSGON:
3861 case FDMSGOFF:
3862 case FDSETEMSGTRESH:
3863 case FDFLUSH:
3864 case FDWERRORCLR:
3865 case FDEJECT:
3866 case FDCLRPRM:
3867 case FDFMTBEG:
3868 case FDRESET:
3869 case FDTWADDLE:
3870 return fd_ioctl(bdev, mode, cmd, param);
3871 case FDSETMAXERRS:
3872 case FDGETMAXERRS:
3873 case FDGETDRVTYP:
3874 case FDFMTEND:
3875 case FDFMTTRK:
3876 case FDRAWCMD:
3877 return fd_ioctl(bdev, mode, cmd,
3878 (unsigned long)compat_ptr(param));
3879 case FDSETPRM32:
3880 case FDDEFPRM32:
3881 return compat_set_geometry(bdev, mode, cmd, compat_ptr(param));
3882 case FDGETPRM32:
3883 return compat_get_prm(drive, compat_ptr(param));
3884 case FDSETDRVPRM32:
3885 return compat_setdrvprm(drive, compat_ptr(param));
3886 case FDGETDRVPRM32:
3887 return compat_getdrvprm(drive, compat_ptr(param));
3888 case FDPOLLDRVSTAT32:
3889 return compat_getdrvstat(drive, true, compat_ptr(param));
3890 case FDGETDRVSTAT32:
3891 return compat_getdrvstat(drive, false, compat_ptr(param));
3892 case FDGETFDCSTAT32:
3893 return compat_getfdcstat(drive, compat_ptr(param));
3894 case FDWERRORGET32:
3895 return compat_werrorget(drive, compat_ptr(param));
3896 }
3897 return -EINVAL;
3898}
3899#endif
3900
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901static void __init config_types(void)
3902{
Joe Perchesb46df352010-03-10 15:20:46 -08003903 bool has_drive = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 int drive;
3905
3906 /* read drive info out of physical CMOS */
3907 drive = 0;
3908 if (!UDP->cmos)
3909 UDP->cmos = FLOPPY0_TYPE;
3910 drive = 1;
3911 if (!UDP->cmos && FLOPPY1_TYPE)
3912 UDP->cmos = FLOPPY1_TYPE;
3913
Jesper Juhl06f748c2007-10-16 23:30:57 -07003914 /* FIXME: additional physical CMOS drive detection should go here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
3916 for (drive = 0; drive < N_DRIVE; drive++) {
3917 unsigned int type = UDP->cmos;
3918 struct floppy_drive_params *params;
3919 const char *name = NULL;
Rasmus Villemoesbcf42992015-12-01 15:54:01 +01003920 char temparea[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
Tobias Klauser945f3902006-01-08 01:05:11 -08003922 if (type < ARRAY_SIZE(default_drive_params)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 params = &default_drive_params[type].params;
3924 if (type) {
3925 name = default_drive_params[type].name;
3926 allowed_drive_mask |= 1 << drive;
3927 } else
3928 allowed_drive_mask &= ~(1 << drive);
3929 } else {
3930 params = &default_drive_params[0].params;
Rasmus Villemoesbcf42992015-12-01 15:54:01 +01003931 snprintf(temparea, sizeof(temparea),
3932 "unknown type %d (usb?)", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 name = temparea;
3934 }
3935 if (name) {
Joe Perchesb46df352010-03-10 15:20:46 -08003936 const char *prepend;
3937 if (!has_drive) {
3938 prepend = "";
3939 has_drive = true;
3940 pr_info("Floppy drive(s):");
3941 } else {
3942 prepend = ",";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 }
Joe Perchesb46df352010-03-10 15:20:46 -08003944
3945 pr_cont("%s fd%d is %s", prepend, drive, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 }
3947 *UDP = *params;
3948 }
Joe Perchesb46df352010-03-10 15:20:46 -08003949
3950 if (has_drive)
3951 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952}
3953
Al Virodb2a1442013-05-05 21:52:57 -04003954static void floppy_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955{
Al Viroa4af9b42008-03-02 09:27:55 -05003956 int drive = (long)disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003958 mutex_lock(&floppy_mutex);
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003959 mutex_lock(&open_lock);
Jiri Kosinabfa10b82012-05-18 13:50:28 +02003960 if (!UDRS->fd_ref--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 DPRINT("floppy_release with fd_ref == 0");
3962 UDRS->fd_ref = 0;
3963 }
3964 if (!UDRS->fd_ref)
3965 opened_bdev[drive] = NULL;
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003966 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003967 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968}
3969
3970/*
3971 * floppy_open check for aliasing (/dev/fd0 can be the same as
3972 * /dev/PS0 etc), and disallows simultaneous access to the same
3973 * drive with different device numbers.
3974 */
Al Viroa4af9b42008-03-02 09:27:55 -05003975static int floppy_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976{
Al Viroa4af9b42008-03-02 09:27:55 -05003977 int drive = (long)bdev->bd_disk->private_data;
3978 int old_dev, new_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 int try;
3980 int res = -EBUSY;
3981 char *tmp;
3982
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003983 mutex_lock(&floppy_mutex);
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003984 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 old_dev = UDRS->fd_device;
Al Viroa4af9b42008-03-02 09:27:55 -05003986 if (opened_bdev[drive] && opened_bdev[drive] != bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 goto out2;
3988
3989 if (!UDRS->fd_ref && (UDP->flags & FD_BROKEN_DCL)) {
Joe Perchese0298532010-03-10 15:20:55 -08003990 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
3991 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 }
3993
Jiri Kosinabfa10b82012-05-18 13:50:28 +02003994 UDRS->fd_ref++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
Al Viroa4af9b42008-03-02 09:27:55 -05003996 opened_bdev[drive] = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
3998 res = -ENXIO;
3999
4000 if (!floppy_track_buffer) {
4001 /* if opening an ED drive, reserve a big buffer,
4002 * else reserve a small one */
4003 if ((UDP->cmos == 6) || (UDP->cmos == 5))
4004 try = 64; /* Only 48 actually useful */
4005 else
4006 try = 32; /* Only 24 actually useful */
4007
4008 tmp = (char *)fd_dma_mem_alloc(1024 * try);
4009 if (!tmp && !floppy_track_buffer) {
4010 try >>= 1; /* buffer only one side */
4011 INFBOUND(try, 16);
4012 tmp = (char *)fd_dma_mem_alloc(1024 * try);
4013 }
Joe Perchesa81ee542010-03-10 15:20:46 -08004014 if (!tmp && !floppy_track_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 fallback_on_nodma_alloc(&tmp, 2048 * try);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 if (!tmp && !floppy_track_buffer) {
4017 DPRINT("Unable to allocate DMA memory\n");
4018 goto out;
4019 }
4020 if (floppy_track_buffer) {
4021 if (tmp)
4022 fd_dma_mem_free((unsigned long)tmp, try * 1024);
4023 } else {
4024 buffer_min = buffer_max = -1;
4025 floppy_track_buffer = tmp;
4026 max_buffer_sectors = try;
4027 }
4028 }
4029
Al Viroa4af9b42008-03-02 09:27:55 -05004030 new_dev = MINOR(bdev->bd_dev);
4031 UDRS->fd_device = new_dev;
4032 set_capacity(disks[drive], floppy_sizes[new_dev]);
4033 if (old_dev != -1 && old_dev != new_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 if (buffer_drive == drive)
4035 buffer_track = -1;
4036 }
4037
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 if (UFDCS->rawcmd == 1)
4039 UFDCS->rawcmd = 2;
4040
Jens Axboef2791e72016-08-25 08:56:51 -06004041 if (!(mode & FMODE_NDELAY)) {
4042 if (mode & (FMODE_READ|FMODE_WRITE)) {
4043 UDRS->last_checked = 0;
4044 clear_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags);
4045 check_disk_change(bdev);
4046 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags))
4047 goto out;
4048 if (test_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags))
4049 goto out;
4050 }
4051 res = -EROFS;
4052 if ((mode & FMODE_WRITE) &&
4053 !test_bit(FD_DISK_WRITABLE_BIT, &UDRS->flags))
4054 goto out;
4055 }
Jes Sorensenb1c82b52006-03-23 03:00:26 -08004056 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02004057 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 return 0;
4059out:
Jiri Kosinabfa10b82012-05-18 13:50:28 +02004060 UDRS->fd_ref--;
4061
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 if (!UDRS->fd_ref)
4063 opened_bdev[drive] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064out2:
Jes Sorensenb1c82b52006-03-23 03:00:26 -08004065 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02004066 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 return res;
4068}
4069
4070/*
4071 * Check if the disk has been changed or if a change has been faked.
4072 */
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004073static unsigned int floppy_check_events(struct gendisk *disk,
4074 unsigned int clearing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075{
4076 int drive = (long)disk->private_data;
4077
Joe Perchese0298532010-03-10 15:20:55 -08004078 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4079 test_bit(FD_VERIFY_BIT, &UDRS->flags))
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004080 return DISK_EVENT_MEDIA_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -08004082 if (time_after(jiffies, UDRS->last_checked + UDP->checkfreq)) {
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01004083 if (lock_fdc(drive))
4084 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08004085 poll_drive(false, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 process_fd_request();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 }
4088
Joe Perchese0298532010-03-10 15:20:55 -08004089 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4090 test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 test_bit(drive, &fake_change) ||
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004092 drive_no_geom(drive))
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004093 return DISK_EVENT_MEDIA_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 return 0;
4095}
4096
4097/*
4098 * This implements "read block 0" for floppy_revalidate().
4099 * Needed for format autodetection, checking whether there is
4100 * a disk in the drive, and whether that disk is writable.
4101 */
4102
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004103struct rb0_cbdata {
4104 int drive;
4105 struct completion complete;
4106};
4107
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02004108static void floppy_rb0_cb(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109{
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004110 struct rb0_cbdata *cbdata = (struct rb0_cbdata *)bio->bi_private;
4111 int drive = cbdata->drive;
4112
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02004113 if (bio->bi_status) {
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02004114 pr_info("floppy: error %d while reading block 0\n",
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02004115 bio->bi_status);
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004116 set_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags);
4117 }
4118 complete(&cbdata->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119}
4120
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004121static int __floppy_read_block_0(struct block_device *bdev, int drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122{
4123 struct bio bio;
4124 struct bio_vec bio_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 struct page *page;
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004126 struct rb0_cbdata cbdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 size_t size;
4128
4129 page = alloc_page(GFP_NOIO);
4130 if (!page) {
4131 process_fd_request();
4132 return -ENOMEM;
4133 }
4134
4135 size = bdev->bd_block_size;
4136 if (!size)
4137 size = 1024;
4138
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004139 cbdata.drive = drive;
4140
Ming Lei3a83f462016-11-22 08:57:21 -07004141 bio_init(&bio, &bio_vec, 1);
Christoph Hellwig74d46992017-08-23 19:10:32 +02004142 bio_set_dev(&bio, bdev);
Ming Lei2c73a602016-11-11 20:05:31 +08004143 bio_add_page(&bio, page, size, 0);
4144
Kent Overstreet4f024f32013-10-11 15:44:27 -07004145 bio.bi_iter.bi_sector = 0;
Jiri Kosina6314a102014-05-28 11:55:23 +02004146 bio.bi_flags |= (1 << BIO_QUIET);
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004147 bio.bi_private = &cbdata;
4148 bio.bi_end_io = floppy_rb0_cb;
Mike Christie95fe6c12016-06-05 14:31:48 -05004149 bio_set_op_attrs(&bio, REQ_OP_READ, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150
Mike Christie4e49ea42016-06-05 14:31:41 -05004151 submit_bio(&bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 process_fd_request();
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004153
4154 init_completion(&cbdata.complete);
4155 wait_for_completion(&cbdata.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156
4157 __free_page(page);
4158
4159 return 0;
4160}
4161
4162/* revalidate the floppy disk, i.e. trigger format autodetection by reading
4163 * the bootblock (block 0). "Autodetection" is also needed to check whether
4164 * there is a disk in the drive at all... Thus we also do it for fixed
4165 * geometry formats */
4166static int floppy_revalidate(struct gendisk *disk)
4167{
4168 int drive = (long)disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 int cf;
4170 int res = 0;
4171
Joe Perchese0298532010-03-10 15:20:55 -08004172 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4173 test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004174 test_bit(drive, &fake_change) ||
4175 drive_no_geom(drive)) {
Stephen Hemminger01b6b672010-06-15 13:21:11 +02004176 if (WARN(atomic_read(&usage_count) == 0,
4177 "VFS: revalidate called on non-open device.\n"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178 return -EFAULT;
Stephen Hemminger01b6b672010-06-15 13:21:11 +02004179
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01004180 res = lock_fdc(drive);
4181 if (res)
4182 return res;
Joe Perchese0298532010-03-10 15:20:55 -08004183 cf = (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4184 test_bit(FD_VERIFY_BIT, &UDRS->flags));
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004185 if (!(cf || test_bit(drive, &fake_change) || drive_no_geom(drive))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 process_fd_request(); /*already done by another thread */
4187 return 0;
4188 }
4189 UDRS->maxblock = 0;
4190 UDRS->maxtrack = 0;
4191 if (buffer_drive == drive)
4192 buffer_track = -1;
4193 clear_bit(drive, &fake_change);
Joe Perchese0298532010-03-10 15:20:55 -08004194 clear_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 if (cf)
4196 UDRS->generation++;
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004197 if (drive_no_geom(drive)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 /* auto-sensing */
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004199 res = __floppy_read_block_0(opened_bdev[drive], drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 } else {
4201 if (cf)
Joe Perches74f63f42010-03-10 15:20:58 -08004202 poll_drive(false, FD_RAW_NEED_DISK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 process_fd_request();
4204 }
4205 }
4206 set_capacity(disk, floppy_sizes[UDRS->fd_device]);
4207 return res;
4208}
4209
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07004210static const struct block_device_operations floppy_fops = {
Jesper Juhl06f748c2007-10-16 23:30:57 -07004211 .owner = THIS_MODULE,
Al Viroa4af9b42008-03-02 09:27:55 -05004212 .open = floppy_open,
4213 .release = floppy_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02004214 .ioctl = fd_ioctl,
Jesper Juhl06f748c2007-10-16 23:30:57 -07004215 .getgeo = fd_getgeo,
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004216 .check_events = floppy_check_events,
Jesper Juhl06f748c2007-10-16 23:30:57 -07004217 .revalidate_disk = floppy_revalidate,
Al Viro229b53c2017-06-27 15:47:56 -04004218#ifdef CONFIG_COMPAT
4219 .compat_ioctl = fd_compat_ioctl,
4220#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223/*
4224 * Floppy Driver initialization
4225 * =============================
4226 */
4227
4228/* Determine the floppy disk controller type */
4229/* This routine was written by David C. Niemi */
4230static char __init get_fdc_version(void)
4231{
4232 int r;
4233
4234 output_byte(FD_DUMPREGS); /* 82072 and better know DUMPREGS */
4235 if (FDCS->reset)
4236 return FDC_NONE;
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08004237 r = result();
4238 if (r <= 0x00)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 return FDC_NONE; /* No FDC present ??? */
4240 if ((r == 1) && (reply_buffer[0] == 0x80)) {
Joe Perchesb46df352010-03-10 15:20:46 -08004241 pr_info("FDC %d is an 8272A\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 return FDC_8272A; /* 8272a/765 don't know DUMPREGS */
4243 }
4244 if (r != 10) {
Joe Perchesb46df352010-03-10 15:20:46 -08004245 pr_info("FDC %d init: DUMPREGS: unexpected return of %d bytes.\n",
4246 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 return FDC_UNKNOWN;
4248 }
4249
4250 if (!fdc_configure()) {
Joe Perchesb46df352010-03-10 15:20:46 -08004251 pr_info("FDC %d is an 82072\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 return FDC_82072; /* 82072 doesn't know CONFIGURE */
4253 }
4254
4255 output_byte(FD_PERPENDICULAR);
4256 if (need_more_output() == MORE_OUTPUT) {
4257 output_byte(0);
4258 } else {
Joe Perchesb46df352010-03-10 15:20:46 -08004259 pr_info("FDC %d is an 82072A\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 return FDC_82072A; /* 82072A as found on Sparcs. */
4261 }
4262
4263 output_byte(FD_UNLOCK);
4264 r = result();
4265 if ((r == 1) && (reply_buffer[0] == 0x80)) {
Joe Perchesb46df352010-03-10 15:20:46 -08004266 pr_info("FDC %d is a pre-1991 82077\n", fdc);
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08004267 return FDC_82077_ORIG; /* Pre-1991 82077, doesn't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 * LOCK/UNLOCK */
4269 }
4270 if ((r != 1) || (reply_buffer[0] != 0x00)) {
Joe Perchesb46df352010-03-10 15:20:46 -08004271 pr_info("FDC %d init: UNLOCK: unexpected return of %d bytes.\n",
4272 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 return FDC_UNKNOWN;
4274 }
4275 output_byte(FD_PARTID);
4276 r = result();
4277 if (r != 1) {
Joe Perchesb46df352010-03-10 15:20:46 -08004278 pr_info("FDC %d init: PARTID: unexpected return of %d bytes.\n",
4279 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 return FDC_UNKNOWN;
4281 }
4282 if (reply_buffer[0] == 0x80) {
Joe Perchesb46df352010-03-10 15:20:46 -08004283 pr_info("FDC %d is a post-1991 82077\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 return FDC_82077; /* Revised 82077AA passes all the tests */
4285 }
4286 switch (reply_buffer[0] >> 5) {
4287 case 0x0:
4288 /* Either a 82078-1 or a 82078SL running at 5Volt */
Joe Perchesb46df352010-03-10 15:20:46 -08004289 pr_info("FDC %d is an 82078.\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 return FDC_82078;
4291 case 0x1:
Joe Perchesb46df352010-03-10 15:20:46 -08004292 pr_info("FDC %d is a 44pin 82078\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 return FDC_82078;
4294 case 0x2:
Joe Perchesb46df352010-03-10 15:20:46 -08004295 pr_info("FDC %d is a S82078B\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 return FDC_S82078B;
4297 case 0x3:
Joe Perchesb46df352010-03-10 15:20:46 -08004298 pr_info("FDC %d is a National Semiconductor PC87306\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 return FDC_87306;
4300 default:
Joe Perchesb46df352010-03-10 15:20:46 -08004301 pr_info("FDC %d init: 82078 variant with unknown PARTID=%d.\n",
4302 fdc, reply_buffer[0] >> 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 return FDC_82078_UNKN;
4304 }
4305} /* get_fdc_version */
4306
4307/* lilo configuration */
4308
4309static void __init floppy_set_flags(int *ints, int param, int param2)
4310{
4311 int i;
4312
4313 for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
4314 if (param)
4315 default_drive_params[i].params.flags |= param2;
4316 else
4317 default_drive_params[i].params.flags &= ~param2;
4318 }
4319 DPRINT("%s flag 0x%x\n", param2 ? "Setting" : "Clearing", param);
4320}
4321
4322static void __init daring(int *ints, int param, int param2)
4323{
4324 int i;
4325
4326 for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
4327 if (param) {
4328 default_drive_params[i].params.select_delay = 0;
4329 default_drive_params[i].params.flags |=
4330 FD_SILENT_DCL_CLEAR;
4331 } else {
4332 default_drive_params[i].params.select_delay =
4333 2 * HZ / 100;
4334 default_drive_params[i].params.flags &=
4335 ~FD_SILENT_DCL_CLEAR;
4336 }
4337 }
4338 DPRINT("Assuming %s floppy hardware\n", param ? "standard" : "broken");
4339}
4340
4341static void __init set_cmos(int *ints, int dummy, int dummy2)
4342{
4343 int current_drive = 0;
4344
4345 if (ints[0] != 2) {
4346 DPRINT("wrong number of parameters for CMOS\n");
4347 return;
4348 }
4349 current_drive = ints[1];
4350 if (current_drive < 0 || current_drive >= 8) {
4351 DPRINT("bad drive for set_cmos\n");
4352 return;
4353 }
4354#if N_FDC > 1
4355 if (current_drive >= 4 && !FDC2)
4356 FDC2 = 0x370;
4357#endif
4358 DP->cmos = ints[2];
4359 DPRINT("setting CMOS code to %d\n", ints[2]);
4360}
4361
4362static struct param_table {
4363 const char *name;
4364 void (*fn) (int *ints, int param, int param2);
4365 int *var;
4366 int def_param;
4367 int param2;
4368} config_params[] __initdata = {
4369 {"allowed_drive_mask", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
4370 {"all_drives", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
4371 {"asus_pci", NULL, &allowed_drive_mask, 0x33, 0},
4372 {"irq", NULL, &FLOPPY_IRQ, 6, 0},
4373 {"dma", NULL, &FLOPPY_DMA, 2, 0},
4374 {"daring", daring, NULL, 1, 0},
4375#if N_FDC > 1
4376 {"two_fdc", NULL, &FDC2, 0x370, 0},
4377 {"one_fdc", NULL, &FDC2, 0, 0},
4378#endif
4379 {"thinkpad", floppy_set_flags, NULL, 1, FD_INVERTED_DCL},
4380 {"broken_dcl", floppy_set_flags, NULL, 1, FD_BROKEN_DCL},
4381 {"messages", floppy_set_flags, NULL, 1, FTD_MSG},
4382 {"silent_dcl_clear", floppy_set_flags, NULL, 1, FD_SILENT_DCL_CLEAR},
4383 {"debug", floppy_set_flags, NULL, 1, FD_DEBUG},
4384 {"nodma", NULL, &can_use_virtual_dma, 1, 0},
4385 {"omnibook", NULL, &can_use_virtual_dma, 1, 0},
4386 {"yesdma", NULL, &can_use_virtual_dma, 0, 0},
4387 {"fifo_depth", NULL, &fifo_depth, 0xa, 0},
4388 {"nofifo", NULL, &no_fifo, 0x20, 0},
4389 {"usefifo", NULL, &no_fifo, 0, 0},
4390 {"cmos", set_cmos, NULL, 0, 0},
4391 {"slow", NULL, &slow_floppy, 1, 0},
4392 {"unexpected_interrupts", NULL, &print_unex, 1, 0},
4393 {"no_unexpected_interrupts", NULL, &print_unex, 0, 0},
4394 {"L40SX", NULL, &print_unex, 0, 0}
4395
4396 EXTRA_FLOPPY_PARAMS
4397};
4398
4399static int __init floppy_setup(char *str)
4400{
4401 int i;
4402 int param;
4403 int ints[11];
4404
4405 str = get_options(str, ARRAY_SIZE(ints), ints);
4406 if (str) {
4407 for (i = 0; i < ARRAY_SIZE(config_params); i++) {
4408 if (strcmp(str, config_params[i].name) == 0) {
4409 if (ints[0])
4410 param = ints[1];
4411 else
4412 param = config_params[i].def_param;
4413 if (config_params[i].fn)
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004414 config_params[i].fn(ints, param,
4415 config_params[i].
4416 param2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417 if (config_params[i].var) {
4418 DPRINT("%s=%d\n", str, param);
4419 *config_params[i].var = param;
4420 }
4421 return 1;
4422 }
4423 }
4424 }
4425 if (str) {
4426 DPRINT("unknown floppy option [%s]\n", str);
4427
4428 DPRINT("allowed options are:");
4429 for (i = 0; i < ARRAY_SIZE(config_params); i++)
Joe Perchesb46df352010-03-10 15:20:46 -08004430 pr_cont(" %s", config_params[i].name);
4431 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 } else
4433 DPRINT("botched floppy option\n");
Randy Dunlap31c00fc2008-11-13 21:33:24 +00004434 DPRINT("Read Documentation/blockdev/floppy.txt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 return 0;
4436}
4437
4438static int have_no_fdc = -ENODEV;
4439
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004440static ssize_t floppy_cmos_show(struct device *dev,
4441 struct device_attribute *attr, char *buf)
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004442{
Eric Miao71b3e0c2009-01-31 22:47:44 +08004443 struct platform_device *p = to_platform_device(dev);
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004444 int drive;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004445
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004446 drive = p->id;
4447 return sprintf(buf, "%X\n", UDP->cmos);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004448}
Joe Perches48c8cee2010-03-10 15:20:45 -08004449
Joe Perches5657a812018-05-24 13:38:59 -06004450static DEVICE_ATTR(cmos, 0444, floppy_cmos_show, NULL);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004451
Takashi Iwaib7f120b2015-02-02 17:08:45 +01004452static struct attribute *floppy_dev_attrs[] = {
4453 &dev_attr_cmos.attr,
4454 NULL
4455};
4456
4457ATTRIBUTE_GROUPS(floppy_dev);
4458
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459static void floppy_device_release(struct device *dev)
4460{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461}
4462
Frans Popc90cd332009-07-25 22:24:54 +02004463static int floppy_resume(struct device *dev)
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004464{
4465 int fdc;
4466
4467 for (fdc = 0; fdc < N_FDC; fdc++)
4468 if (FDCS->address != -1)
Joe Perches74f63f42010-03-10 15:20:58 -08004469 user_reset_fdc(-1, FD_RESET_ALWAYS, false);
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004470
4471 return 0;
4472}
4473
Alexey Dobriyan47145212009-12-14 18:00:08 -08004474static const struct dev_pm_ops floppy_pm_ops = {
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004475 .resume = floppy_resume,
Frans Popc90cd332009-07-25 22:24:54 +02004476 .restore = floppy_resume,
4477};
4478
4479static struct platform_driver floppy_driver = {
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004480 .driver = {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004481 .name = "floppy",
4482 .pm = &floppy_pm_ops,
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004483 },
4484};
4485
Omar Sandovala9f38e12018-10-15 09:21:34 -06004486static const struct blk_mq_ops floppy_mq_ops = {
4487 .queue_rq = floppy_queue_rq,
4488};
4489
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004490static struct platform_device floppy_device[N_DRIVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004492static bool floppy_available(int drive)
4493{
4494 if (!(allowed_drive_mask & (1 << drive)))
4495 return false;
4496 if (fdc_state[FDC(drive)].version == FDC_NONE)
4497 return false;
4498 return true;
4499}
4500
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501static struct kobject *floppy_find(dev_t dev, int *part, void *data)
4502{
4503 int drive = (*part & 3) | ((*part & 0x80) >> 5);
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004504 if (drive >= N_DRIVE || !floppy_available(drive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 return NULL;
Tobias Klauser945f3902006-01-08 01:05:11 -08004506 if (((*part >> 2) & 0x1f) >= ARRAY_SIZE(floppy_type))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 return NULL;
4508 *part = 0;
Jan Kara3079c222018-02-26 13:01:38 +01004509 return get_disk_and_module(disks[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510}
4511
Andi Kleen0cc15d032012-07-02 17:27:04 -07004512static int __init do_floppy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513{
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004514 int i, unit, drive, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515
Stephen Hemminger285203c2010-06-15 13:21:11 +02004516 set_debugt();
4517 interruptjiffies = resultjiffies = jiffies;
4518
Kumar Gala68e1ee62008-09-22 14:41:31 -07004519#if defined(CONFIG_PPC)
Olaf Heringef16b512006-08-31 21:27:41 -07004520 if (check_legacy_ioport(FDC1))
4521 return -ENODEV;
4522#endif
4523
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 raw_cmd = NULL;
4525
Herton Ronaldo Krzesinskib54e1f82012-08-27 20:56:51 -03004526 floppy_wq = alloc_ordered_workqueue("floppy", 0);
4527 if (!floppy_wq)
4528 return -ENOMEM;
4529
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004530 for (drive = 0; drive < N_DRIVE; drive++) {
4531 disks[drive] = alloc_disk(1);
4532 if (!disks[drive]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 err = -ENOMEM;
4534 goto out_put_disk;
4535 }
4536
Omar Sandovala9f38e12018-10-15 09:21:34 -06004537 disks[drive]->queue = blk_mq_init_sq_queue(&tag_sets[drive],
4538 &floppy_mq_ops, 2,
4539 BLK_MQ_F_SHOULD_MERGE);
4540 if (IS_ERR(disks[drive]->queue)) {
4541 err = PTR_ERR(disks[drive]->queue);
4542 disks[drive]->queue = NULL;
Herton Ronaldo Krzesinskib54e1f82012-08-27 20:56:51 -03004543 goto out_put_disk;
Jens Axboe48821182010-09-22 09:32:36 +02004544 }
4545
Christoph Hellwig8fc45042017-06-19 09:26:26 +02004546 blk_queue_bounce_limit(disks[drive]->queue, BLK_BOUNCE_HIGH);
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004547 blk_queue_max_hw_sectors(disks[drive]->queue, 64);
4548 disks[drive]->major = FLOPPY_MAJOR;
4549 disks[drive]->first_minor = TOMINOR(drive);
4550 disks[drive]->fops = &floppy_fops;
4551 sprintf(disks[drive]->disk_name, "fd%d", drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552
Kees Cookb1bf4212017-10-04 17:49:29 -07004553 timer_setup(&motor_off_timer[drive], motor_off_callback, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 }
4555
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 err = register_blkdev(FLOPPY_MAJOR, "fd");
4557 if (err)
Greg Kroah-Hartman8ab5e4c2005-06-20 21:15:16 -07004558 goto out_put_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004560 err = platform_driver_register(&floppy_driver);
4561 if (err)
4562 goto out_unreg_blkdev;
4563
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 blk_register_region(MKDEV(FLOPPY_MAJOR, 0), 256, THIS_MODULE,
4565 floppy_find, NULL, NULL);
4566
4567 for (i = 0; i < 256; i++)
4568 if (ITYPE(i))
4569 floppy_sizes[i] = floppy_type[ITYPE(i)].size;
4570 else
4571 floppy_sizes[i] = MAX_DISK_SIZE << 1;
4572
Joe Perches73507e62010-03-10 15:21:03 -08004573 reschedule_timeout(MAXTIMEOUT, "floppy init");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 config_types();
4575
4576 for (i = 0; i < N_FDC; i++) {
4577 fdc = i;
Joe Perchesb87c9e02010-03-10 15:20:50 -08004578 memset(FDCS, 0, sizeof(*FDCS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 FDCS->dtr = -1;
4580 FDCS->dor = 0x4;
4581#if defined(__sparc__) || defined(__mc68000__)
Joe Perches96534f12010-03-10 15:20:51 -08004582 /*sparcs/sun3x don't have a DOR reset which we can fall back on to */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583#ifdef __mc68000__
4584 if (MACH_IS_SUN3X)
4585#endif
4586 FDCS->version = FDC_82072A;
4587#endif
4588 }
4589
4590 use_virtual_dma = can_use_virtual_dma & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 fdc_state[0].address = FDC1;
4592 if (fdc_state[0].address == -1) {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004593 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 err = -ENODEV;
4595 goto out_unreg_region;
4596 }
4597#if N_FDC > 1
4598 fdc_state[1].address = FDC2;
4599#endif
4600
4601 fdc = 0; /* reset fdc in case of unexpected interrupt */
4602 err = floppy_grab_irq_and_dma();
4603 if (err) {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004604 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 err = -EBUSY;
4606 goto out_unreg_region;
4607 }
4608
4609 /* initialise drive state */
4610 for (drive = 0; drive < N_DRIVE; drive++) {
Joe Perchesb87c9e02010-03-10 15:20:50 -08004611 memset(UDRS, 0, sizeof(*UDRS));
4612 memset(UDRWE, 0, sizeof(*UDRWE));
Joe Perchese0298532010-03-10 15:20:55 -08004613 set_bit(FD_DISK_NEWCHANGE_BIT, &UDRS->flags);
4614 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
4615 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 UDRS->fd_device = -1;
4617 floppy_track_buffer = NULL;
4618 max_buffer_sectors = 0;
4619 }
4620 /*
4621 * Small 10 msec delay to let through any interrupt that
4622 * initialization might have triggered, to not
4623 * confuse detection:
4624 */
4625 msleep(10);
4626
4627 for (i = 0; i < N_FDC; i++) {
4628 fdc = i;
4629 FDCS->driver_version = FD_DRIVER_VERSION;
4630 for (unit = 0; unit < 4; unit++)
4631 FDCS->track[unit] = 0;
4632 if (FDCS->address == -1)
4633 continue;
4634 FDCS->rawcmd = 2;
Joe Perches74f63f42010-03-10 15:20:58 -08004635 if (user_reset_fdc(-1, FD_RESET_ALWAYS, false)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 /* free ioports reserved by floppy_grab_irq_and_dma() */
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004637 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 FDCS->address = -1;
4639 FDCS->version = FDC_NONE;
4640 continue;
4641 }
4642 /* Try to determine the floppy controller type */
4643 FDCS->version = get_fdc_version();
4644 if (FDCS->version == FDC_NONE) {
4645 /* free ioports reserved by floppy_grab_irq_and_dma() */
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004646 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 FDCS->address = -1;
4648 continue;
4649 }
4650 if (can_use_virtual_dma == 2 && FDCS->version < FDC_82072A)
4651 can_use_virtual_dma = 0;
4652
4653 have_no_fdc = 0;
4654 /* Not all FDCs seem to be able to handle the version command
4655 * properly, so force a reset for the standard FDC clones,
4656 * to avoid interrupt garbage.
4657 */
Joe Perches74f63f42010-03-10 15:20:58 -08004658 user_reset_fdc(-1, FD_RESET_ALWAYS, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 }
4660 fdc = 0;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004661 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004662 current_drive = 0;
Joe Perches29f1c782010-03-10 15:21:00 -08004663 initialized = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 if (have_no_fdc) {
4665 DPRINT("no floppy controllers found\n");
4666 err = have_no_fdc;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004667 goto out_release_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 }
4669
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 for (drive = 0; drive < N_DRIVE; drive++) {
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004671 if (!floppy_available(drive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 continue;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004673
4674 floppy_device[drive].name = floppy_device_name;
4675 floppy_device[drive].id = drive;
4676 floppy_device[drive].dev.release = floppy_device_release;
Takashi Iwaib7f120b2015-02-02 17:08:45 +01004677 floppy_device[drive].dev.groups = floppy_dev_groups;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004678
4679 err = platform_device_register(&floppy_device[drive]);
4680 if (err)
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004681 goto out_remove_drives;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004682
Linus Torvalds1da177e2005-04-16 15:20:36 -07004683 /* to be cleaned up... */
4684 disks[drive]->private_data = (void *)(long)drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 disks[drive]->flags |= GENHD_FL_REMOVABLE;
Hannes Reineckefef912b2018-09-28 08:17:19 +02004686 device_add_disk(&floppy_device[drive].dev, disks[drive], NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 }
4688
4689 return 0;
4690
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004691out_remove_drives:
4692 while (drive--) {
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004693 if (floppy_available(drive)) {
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004694 del_gendisk(disks[drive]);
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004695 platform_device_unregister(&floppy_device[drive]);
4696 }
4697 }
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004698out_release_dma:
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004699 if (atomic_read(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 floppy_release_irq_and_dma();
4701out_unreg_region:
4702 blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004703 platform_driver_unregister(&floppy_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704out_unreg_blkdev:
4705 unregister_blkdev(FLOPPY_MAJOR, "fd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706out_put_disk:
Jiri Kosinaeac7cc52012-11-06 11:47:13 +01004707 destroy_workqueue(floppy_wq);
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004708 for (drive = 0; drive < N_DRIVE; drive++) {
4709 if (!disks[drive])
4710 break;
4711 if (disks[drive]->queue) {
4712 del_timer_sync(&motor_off_timer[drive]);
4713 blk_cleanup_queue(disks[drive]->queue);
4714 disks[drive]->queue = NULL;
Omar Sandovala9f38e12018-10-15 09:21:34 -06004715 blk_mq_free_tag_set(&tag_sets[drive]);
Vivek Goyal3f9a5aa2012-02-08 20:03:38 +01004716 }
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004717 put_disk(disks[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718 }
4719 return err;
4720}
4721
Andi Kleen0cc15d032012-07-02 17:27:04 -07004722#ifndef MODULE
4723static __init void floppy_async_init(void *data, async_cookie_t cookie)
4724{
4725 do_floppy_init();
4726}
4727#endif
4728
4729static int __init floppy_init(void)
4730{
4731#ifdef MODULE
4732 return do_floppy_init();
4733#else
4734 /* Don't hold up the bootup by the floppy initialization */
4735 async_schedule(floppy_async_init, NULL);
4736 return 0;
4737#endif
4738}
4739
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004740static const struct io_region {
4741 int offset;
4742 int size;
4743} io_regions[] = {
4744 { 2, 1 },
4745 /* address + 3 is sometimes reserved by pnp bios for motherboard */
4746 { 4, 2 },
4747 /* address + 6 is reserved, and may be taken by IDE.
4748 * Unfortunately, Adaptec doesn't know this :-(, */
4749 { 7, 1 },
4750};
4751
4752static void floppy_release_allocated_regions(int fdc, const struct io_region *p)
4753{
4754 while (p != io_regions) {
4755 p--;
4756 release_region(FDCS->address + p->offset, p->size);
4757 }
4758}
4759
4760#define ARRAY_END(X) (&((X)[ARRAY_SIZE(X)]))
4761
4762static int floppy_request_regions(int fdc)
4763{
4764 const struct io_region *p;
4765
4766 for (p = io_regions; p < ARRAY_END(io_regions); p++) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004767 if (!request_region(FDCS->address + p->offset,
4768 p->size, "floppy")) {
4769 DPRINT("Floppy io-port 0x%04lx in use\n",
4770 FDCS->address + p->offset);
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004771 floppy_release_allocated_regions(fdc, p);
4772 return -EBUSY;
4773 }
4774 }
4775 return 0;
4776}
4777
4778static void floppy_release_regions(int fdc)
4779{
4780 floppy_release_allocated_regions(fdc, ARRAY_END(io_regions));
4781}
4782
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783static int floppy_grab_irq_and_dma(void)
4784{
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004785 if (atomic_inc_return(&usage_count) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 return 0;
Ingo Molnar6dc659d2006-03-26 01:36:54 -08004787
4788 /*
4789 * We might have scheduled a free_irq(), wait it to
4790 * drain first:
4791 */
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004792 flush_workqueue(floppy_wq);
Ingo Molnar6dc659d2006-03-26 01:36:54 -08004793
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 if (fd_request_irq()) {
4795 DPRINT("Unable to grab IRQ%d for the floppy driver\n",
4796 FLOPPY_IRQ);
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004797 atomic_dec(&usage_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 return -1;
4799 }
4800 if (fd_request_dma()) {
4801 DPRINT("Unable to grab DMA%d for the floppy driver\n",
4802 FLOPPY_DMA);
Jan Beulich2e9c47c2007-10-16 23:27:32 -07004803 if (can_use_virtual_dma & 2)
4804 use_virtual_dma = can_use_virtual_dma = 1;
4805 if (!(can_use_virtual_dma & 1)) {
4806 fd_free_irq();
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004807 atomic_dec(&usage_count);
Jan Beulich2e9c47c2007-10-16 23:27:32 -07004808 return -1;
4809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810 }
4811
4812 for (fdc = 0; fdc < N_FDC; fdc++) {
4813 if (FDCS->address != -1) {
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004814 if (floppy_request_regions(fdc))
4815 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816 }
4817 }
4818 for (fdc = 0; fdc < N_FDC; fdc++) {
4819 if (FDCS->address != -1) {
4820 reset_fdc_info(1);
4821 fd_outb(FDCS->dor, FD_DOR);
4822 }
4823 }
4824 fdc = 0;
4825 set_dor(0, ~0, 8); /* avoid immediate interrupt */
4826
4827 for (fdc = 0; fdc < N_FDC; fdc++)
4828 if (FDCS->address != -1)
4829 fd_outb(FDCS->dor, FD_DOR);
4830 /*
Jesper Juhl06f748c2007-10-16 23:30:57 -07004831 * The driver will try and free resources and relies on us
4832 * to know if they were allocated or not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004833 */
4834 fdc = 0;
4835 irqdma_allocated = 1;
4836 return 0;
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004837cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 fd_free_irq();
4839 fd_free_dma();
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004840 while (--fdc >= 0)
4841 floppy_release_regions(fdc);
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004842 atomic_dec(&usage_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 return -1;
4844}
4845
4846static void floppy_release_irq_and_dma(void)
4847{
4848 int old_fdc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849#ifndef __sparc__
4850 int drive;
4851#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852 long tmpsize;
4853 unsigned long tmpaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004854
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004855 if (!atomic_dec_and_test(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 return;
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004857
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858 if (irqdma_allocated) {
4859 fd_disable_dma();
4860 fd_free_dma();
Ingo Molnar3e541a42006-07-03 00:24:23 -07004861 fd_free_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862 irqdma_allocated = 0;
4863 }
4864 set_dor(0, ~0, 8);
4865#if N_FDC > 1
4866 set_dor(1, ~8, 0);
4867#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
4869 if (floppy_track_buffer && max_buffer_sectors) {
4870 tmpsize = max_buffer_sectors * 1024;
4871 tmpaddr = (unsigned long)floppy_track_buffer;
4872 floppy_track_buffer = NULL;
4873 max_buffer_sectors = 0;
4874 buffer_min = buffer_max = -1;
4875 fd_dma_mem_free(tmpaddr, tmpsize);
4876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004877#ifndef __sparc__
4878 for (drive = 0; drive < N_FDC * 4; drive++)
4879 if (timer_pending(motor_off_timer + drive))
Joe Perchesb46df352010-03-10 15:20:46 -08004880 pr_info("motor off timer %d still active\n", drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881#endif
4882
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004883 if (delayed_work_pending(&fd_timeout))
Joe Perchesb46df352010-03-10 15:20:46 -08004884 pr_info("floppy timer still active:%s\n", timeout_message);
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004885 if (delayed_work_pending(&fd_timer))
Joe Perchesb46df352010-03-10 15:20:46 -08004886 pr_info("auxiliary floppy timer still active\n");
David Howells365970a2006-11-22 14:54:49 +00004887 if (work_pending(&floppy_work))
Joe Perchesb46df352010-03-10 15:20:46 -08004888 pr_info("work still pending\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 old_fdc = fdc;
4890 for (fdc = 0; fdc < N_FDC; fdc++)
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004891 if (FDCS->address != -1)
4892 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004893 fdc = old_fdc;
4894}
4895
4896#ifdef MODULE
4897
4898static char *floppy;
4899
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900static void __init parse_floppy_cfg_string(char *cfg)
4901{
4902 char *ptr;
4903
4904 while (*cfg) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004905 ptr = cfg;
4906 while (*cfg && *cfg != ' ' && *cfg != '\t')
4907 cfg++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908 if (*cfg) {
4909 *cfg = '\0';
4910 cfg++;
4911 }
4912 if (*ptr)
4913 floppy_setup(ptr);
4914 }
4915}
4916
Jon Schindler7afea3b2008-04-29 00:59:21 -07004917static int __init floppy_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004918{
4919 if (floppy)
4920 parse_floppy_cfg_string(floppy);
4921 return floppy_init();
4922}
Jon Schindler7afea3b2008-04-29 00:59:21 -07004923module_init(floppy_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004924
Jon Schindler7afea3b2008-04-29 00:59:21 -07004925static void __exit floppy_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926{
4927 int drive;
4928
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929 blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
4930 unregister_blkdev(FLOPPY_MAJOR, "fd");
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004931 platform_driver_unregister(&floppy_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004932
Jiri Kosinaeac7cc52012-11-06 11:47:13 +01004933 destroy_workqueue(floppy_wq);
4934
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 for (drive = 0; drive < N_DRIVE; drive++) {
4936 del_timer_sync(&motor_off_timer[drive]);
4937
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004938 if (floppy_available(drive)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004939 del_gendisk(disks[drive]);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004940 platform_device_unregister(&floppy_device[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941 }
Jens Axboe48821182010-09-22 09:32:36 +02004942 blk_cleanup_queue(disks[drive]->queue);
Omar Sandovala9f38e12018-10-15 09:21:34 -06004943 blk_mq_free_tag_set(&tag_sets[drive]);
Vivek Goyal4609dff2012-02-08 20:03:39 +01004944
4945 /*
4946 * These disks have not called add_disk(). Don't put down
4947 * queue reference in put_disk().
4948 */
4949 if (!(allowed_drive_mask & (1 << drive)) ||
4950 fdc_state[FDC(drive)].version == FDC_NONE)
4951 disks[drive]->queue = NULL;
4952
Vivek Goyald017bf62010-11-06 08:16:05 -04004953 put_disk(disks[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004955
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004956 cancel_delayed_work_sync(&fd_timeout);
4957 cancel_delayed_work_sync(&fd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004958
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004959 if (atomic_read(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004960 floppy_release_irq_and_dma();
4961
4962 /* eject disk, if any */
4963 fd_eject(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004964}
Joe Perches48c8cee2010-03-10 15:20:45 -08004965
Jon Schindler7afea3b2008-04-29 00:59:21 -07004966module_exit(floppy_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004967
4968module_param(floppy, charp, 0);
4969module_param(FLOPPY_IRQ, int, 0);
4970module_param(FLOPPY_DMA, int, 0);
4971MODULE_AUTHOR("Alain L. Knaff");
4972MODULE_SUPPORTED_DEVICE("fd");
4973MODULE_LICENSE("GPL");
4974
Scott James Remnant83f9ef42009-04-02 16:56:47 -07004975/* This doesn't actually get used other than for module information */
4976static const struct pnp_device_id floppy_pnpids[] = {
Joe Perches48c8cee2010-03-10 15:20:45 -08004977 {"PNP0700", 0},
4978 {}
Scott James Remnant83f9ef42009-04-02 16:56:47 -07004979};
Joe Perches48c8cee2010-03-10 15:20:45 -08004980
Scott James Remnant83f9ef42009-04-02 16:56:47 -07004981MODULE_DEVICE_TABLE(pnp, floppy_pnpids);
4982
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983#else
4984
4985__setup("floppy=", floppy_setup);
4986module_init(floppy_init)
4987#endif
4988
4989MODULE_ALIAS_BLOCKDEV_MAJOR(FLOPPY_MAJOR);