blob: 4496e7a49235212ed26d5e5c0cd2e99cbf75cd29 [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 Viro06f9e7b2017-06-27 15:47:56 -0400195#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
197/*
198 * PS/2 floppies have much slower step rates than regular floppies.
199 * It's been recommended that take about 1/4 of the default speed
200 * in some more extreme cases.
201 */
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200202static DEFINE_MUTEX(floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static int slow_floppy;
204
205#include <asm/dma.h>
206#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208static int FLOPPY_IRQ = 6;
209static int FLOPPY_DMA = 2;
210static int can_use_virtual_dma = 2;
211/* =======
212 * can use virtual DMA:
213 * 0 = use of virtual DMA disallowed by config
214 * 1 = use of virtual DMA prescribed by config
215 * 2 = no virtual DMA preference configured. By default try hard DMA,
216 * but fall back on virtual DMA when not enough memory available
217 */
218
219static int use_virtual_dma;
220/* =======
221 * use virtual DMA
222 * 0 using hard DMA
223 * 1 using virtual DMA
224 * This variable is set to virtual when a DMA mem problem arises, and
225 * reset back in floppy_grab_irq_and_dma.
226 * It is not safe to reset it in other circumstances, because the floppy
227 * driver may have several buffers in use at once, and we do currently not
228 * record each buffers capabilities
229 */
230
231static DEFINE_SPINLOCK(floppy_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233static unsigned short virtual_dma_port = 0x3f0;
David Howells7d12e782006-10-05 14:55:46 +0100234irqreturn_t floppy_interrupt(int irq, void *dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235static int set_dor(int fdc, char mask, char data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237#define K_64 0x10000 /* 64KB */
238
239/* the following is the mask of allowed drives. By default units 2 and
240 * 3 of both floppy controllers are disabled, because switching on the
241 * motor of these drives causes system hangs on some PCI computers. drive
242 * 0 is the low bit (0x1), and drive 7 is the high bit (0x80). Bits are on if
243 * a drive is allowed.
244 *
245 * NOTE: This must come before we include the arch floppy header because
246 * some ports reference this variable from there. -DaveM
247 */
248
249static int allowed_drive_mask = 0x33;
250
251#include <asm/floppy.h>
252
253static int irqdma_allocated;
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255#include <linux/blkdev.h>
256#include <linux/blkpg.h>
257#include <linux/cdrom.h> /* for the compatibility eject ioctl */
258#include <linux/completion.h>
259
260static struct request *current_req;
Joe Perches48c8cee2010-03-10 15:20:45 -0800261static void do_fd_request(struct request_queue *q);
Jens Axboe48821182010-09-22 09:32:36 +0200262static int set_next_request(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264#ifndef fd_get_dma_residue
265#define fd_get_dma_residue() get_dma_residue(FLOPPY_DMA)
266#endif
267
268/* Dma Memory related stuff */
269
270#ifndef fd_dma_mem_free
271#define fd_dma_mem_free(addr, size) free_pages(addr, get_order(size))
272#endif
273
274#ifndef fd_dma_mem_alloc
Joe Perches48c8cee2010-03-10 15:20:45 -0800275#define fd_dma_mem_alloc(size) __get_dma_pages(GFP_KERNEL, get_order(size))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276#endif
277
278static inline void fallback_on_nodma_alloc(char **addr, size_t l)
279{
280#ifdef FLOPPY_CAN_FALLBACK_ON_NODMA
281 if (*addr)
282 return; /* we have the memory */
283 if (can_use_virtual_dma != 2)
284 return; /* no fallback allowed */
Joe Perchesb46df352010-03-10 15:20:46 -0800285 pr_info("DMA memory shortage. Temporarily falling back on virtual DMA\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 *addr = (char *)nodma_mem_alloc(l);
287#else
288 return;
289#endif
290}
291
292/* End dma memory related stuff */
293
294static unsigned long fake_change;
Joe Perches29f1c782010-03-10 15:21:00 -0800295static bool initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Joe Perches48c8cee2010-03-10 15:20:45 -0800297#define ITYPE(x) (((x) >> 2) & 0x1f)
298#define TOMINOR(x) ((x & 3) | ((x & 4) << 5))
299#define UNIT(x) ((x) & 0x03) /* drive on fdc */
300#define FDC(x) (((x) & 0x04) >> 2) /* fdc of drive */
Jesper Juhl06f748c2007-10-16 23:30:57 -0700301 /* reverse mapping from unit and fdc to drive */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302#define REVDRIVE(fdc, unit) ((unit) + ((fdc) << 2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Joe Perches48c8cee2010-03-10 15:20:45 -0800304#define DP (&drive_params[current_drive])
305#define DRS (&drive_state[current_drive])
306#define DRWE (&write_errors[current_drive])
307#define FDCS (&fdc_state[fdc])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Joe Perches48c8cee2010-03-10 15:20:45 -0800309#define UDP (&drive_params[drive])
310#define UDRS (&drive_state[drive])
311#define UDRWE (&write_errors[drive])
312#define UFDCS (&fdc_state[FDC(drive)])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Joe Perches48c8cee2010-03-10 15:20:45 -0800314#define PH_HEAD(floppy, head) (((((floppy)->stretch & 2) >> 1) ^ head) << 2)
315#define STRETCH(floppy) ((floppy)->stretch & FD_STRETCH)
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/* read/write */
Joe Perches48c8cee2010-03-10 15:20:45 -0800318#define COMMAND (raw_cmd->cmd[0])
319#define DR_SELECT (raw_cmd->cmd[1])
320#define TRACK (raw_cmd->cmd[2])
321#define HEAD (raw_cmd->cmd[3])
322#define SECTOR (raw_cmd->cmd[4])
323#define SIZECODE (raw_cmd->cmd[5])
324#define SECT_PER_TRACK (raw_cmd->cmd[6])
325#define GAP (raw_cmd->cmd[7])
326#define SIZECODE2 (raw_cmd->cmd[8])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327#define NR_RW 9
328
329/* format */
Joe Perches48c8cee2010-03-10 15:20:45 -0800330#define F_SIZECODE (raw_cmd->cmd[2])
331#define F_SECT_PER_TRACK (raw_cmd->cmd[3])
332#define F_GAP (raw_cmd->cmd[4])
333#define F_FILL (raw_cmd->cmd[5])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334#define NR_F 6
335
336/*
Joe Perches48c8cee2010-03-10 15:20:45 -0800337 * Maximum disk size (in kilobytes).
338 * This default is used whenever the current disk size is unknown.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 * [Now it is rather a minimum]
340 */
341#define MAX_DISK_SIZE 4 /* 3984 */
342
343/*
344 * globals used by 'result()'
345 */
346#define MAX_REPLIES 16
347static unsigned char reply_buffer[MAX_REPLIES];
Joe Perches891eda82010-03-10 15:21:05 -0800348static int inr; /* size of reply buffer, when called from interrupt */
Joe Perches48c8cee2010-03-10 15:20:45 -0800349#define ST0 (reply_buffer[0])
350#define ST1 (reply_buffer[1])
351#define ST2 (reply_buffer[2])
352#define ST3 (reply_buffer[0]) /* result of GETSTATUS */
353#define R_TRACK (reply_buffer[3])
354#define R_HEAD (reply_buffer[4])
355#define R_SECTOR (reply_buffer[5])
356#define R_SIZECODE (reply_buffer[6])
357
358#define SEL_DLY (2 * HZ / 100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360/*
361 * this struct defines the different floppy drive types.
362 */
363static struct {
364 struct floppy_drive_params params;
365 const char *name; /* name printed while booting */
366} default_drive_params[] = {
367/* NOTE: the time values in jiffies should be in msec!
368 CMOS drive type
369 | Maximum data rate supported by drive type
370 | | Head load time, msec
371 | | | Head unload time, msec (not used)
372 | | | | Step rate interval, usec
373 | | | | | Time needed for spinup time (jiffies)
374 | | | | | | Timeout for spinning down (jiffies)
375 | | | | | | | Spindown offset (where disk stops)
376 | | | | | | | | Select delay
377 | | | | | | | | | RPS
378 | | | | | | | | | | Max number of tracks
379 | | | | | | | | | | | Interrupt timeout
380 | | | | | | | | | | | | Max nonintlv. sectors
381 | | | | | | | | | | | | | -Max Errors- flags */
382{{0, 500, 16, 16, 8000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 80, 3*HZ, 20, {3,1,2,0,2}, 0,
383 0, { 7, 4, 8, 2, 1, 5, 3,10}, 3*HZ/2, 0 }, "unknown" },
384
385{{1, 300, 16, 16, 8000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 40, 3*HZ, 17, {3,1,2,0,2}, 0,
386 0, { 1, 0, 0, 0, 0, 0, 0, 0}, 3*HZ/2, 1 }, "360K PC" }, /*5 1/4 360 KB PC*/
387
388{{2, 500, 16, 16, 6000, 4*HZ/10, 3*HZ, 14, SEL_DLY, 6, 83, 3*HZ, 17, {3,1,2,0,2}, 0,
389 0, { 2, 5, 6,23,10,20,12, 0}, 3*HZ/2, 2 }, "1.2M" }, /*5 1/4 HD AT*/
390
391{{3, 250, 16, 16, 3000, 1*HZ, 3*HZ, 0, SEL_DLY, 5, 83, 3*HZ, 20, {3,1,2,0,2}, 0,
392 0, { 4,22,21,30, 3, 0, 0, 0}, 3*HZ/2, 4 }, "720k" }, /*3 1/2 DD*/
393
394{{4, 500, 16, 16, 4000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 20, {3,1,2,0,2}, 0,
395 0, { 7, 4,25,22,31,21,29,11}, 3*HZ/2, 7 }, "1.44M" }, /*3 1/2 HD*/
396
397{{5, 1000, 15, 8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 40, {3,1,2,0,2}, 0,
398 0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M AMI BIOS" }, /*3 1/2 ED*/
399
400{{6, 1000, 15, 8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5, 83, 3*HZ, 40, {3,1,2,0,2}, 0,
401 0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M" } /*3 1/2 ED*/
402/* | --autodetected formats--- | | |
403 * read_track | | Name printed when booting
404 * | Native format
405 * Frequency of disk change checks */
406};
407
408static struct floppy_drive_params drive_params[N_DRIVE];
409static struct floppy_drive_struct drive_state[N_DRIVE];
410static struct floppy_write_errors write_errors[N_DRIVE];
411static struct timer_list motor_off_timer[N_DRIVE];
412static struct gendisk *disks[N_DRIVE];
413static struct block_device *opened_bdev[N_DRIVE];
Jes Sorensenb1c82b52006-03-23 03:00:26 -0800414static DEFINE_MUTEX(open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415static struct floppy_raw_cmd *raw_cmd, default_raw_cmd;
Jens Axboe48821182010-09-22 09:32:36 +0200416static int fdc_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418/*
419 * This struct defines the different floppy types.
420 *
421 * Bit 0 of 'stretch' tells if the tracks need to be doubled for some
422 * types (e.g. 360kB diskette in 1.2MB drive, etc.). Bit 1 of 'stretch'
423 * tells if the disk is in Commodore 1581 format, which means side 0 sectors
424 * are located on side 1 of the disk but with a side 0 ID, and vice-versa.
425 * This is the same as the Sharp MZ-80 5.25" CP/M disk format, except that the
426 * 1581's logical side 0 is on physical side 1, whereas the Sharp's logical
427 * side 0 is on physical side 0 (but with the misnamed sector IDs).
428 * 'stretch' should probably be renamed to something more general, like
Keith Wansbrough9e491842008-09-22 14:57:17 -0700429 * 'options'.
430 *
431 * Bits 2 through 9 of 'stretch' tell the number of the first sector.
432 * The LSB (bit 2) is flipped. For most disks, the first sector
433 * is 1 (represented by 0x00<<2). For some CP/M and music sampler
434 * disks (such as Ensoniq EPS 16plus) it is 0 (represented as 0x01<<2).
435 * For Amstrad CPC disks it is 0xC1 (represented as 0xC0<<2).
436 *
437 * Other parameters should be self-explanatory (see also setfdprm(8)).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 */
439/*
440 Size
441 | Sectors per track
442 | | Head
443 | | | Tracks
444 | | | | Stretch
445 | | | | | Gap 1 size
446 | | | | | | Data rate, | 0x40 for perp
447 | | | | | | | Spec1 (stepping rate, head unload
448 | | | | | | | | /fmt gap (gap2) */
449static struct floppy_struct floppy_type[32] = {
450 { 0, 0,0, 0,0,0x00,0x00,0x00,0x00,NULL }, /* 0 no testing */
451 { 720, 9,2,40,0,0x2A,0x02,0xDF,0x50,"d360" }, /* 1 360KB PC */
452 { 2400,15,2,80,0,0x1B,0x00,0xDF,0x54,"h1200" }, /* 2 1.2MB AT */
453 { 720, 9,1,80,0,0x2A,0x02,0xDF,0x50,"D360" }, /* 3 360KB SS 3.5" */
454 { 1440, 9,2,80,0,0x2A,0x02,0xDF,0x50,"D720" }, /* 4 720KB 3.5" */
455 { 720, 9,2,40,1,0x23,0x01,0xDF,0x50,"h360" }, /* 5 360KB AT */
456 { 1440, 9,2,80,0,0x23,0x01,0xDF,0x50,"h720" }, /* 6 720KB AT */
457 { 2880,18,2,80,0,0x1B,0x00,0xCF,0x6C,"H1440" }, /* 7 1.44MB 3.5" */
458 { 5760,36,2,80,0,0x1B,0x43,0xAF,0x54,"E2880" }, /* 8 2.88MB 3.5" */
459 { 6240,39,2,80,0,0x1B,0x43,0xAF,0x28,"E3120" }, /* 9 3.12MB 3.5" */
460
461 { 2880,18,2,80,0,0x25,0x00,0xDF,0x02,"h1440" }, /* 10 1.44MB 5.25" */
462 { 3360,21,2,80,0,0x1C,0x00,0xCF,0x0C,"H1680" }, /* 11 1.68MB 3.5" */
463 { 820,10,2,41,1,0x25,0x01,0xDF,0x2E,"h410" }, /* 12 410KB 5.25" */
464 { 1640,10,2,82,0,0x25,0x02,0xDF,0x2E,"H820" }, /* 13 820KB 3.5" */
465 { 2952,18,2,82,0,0x25,0x00,0xDF,0x02,"h1476" }, /* 14 1.48MB 5.25" */
466 { 3444,21,2,82,0,0x25,0x00,0xDF,0x0C,"H1722" }, /* 15 1.72MB 3.5" */
467 { 840,10,2,42,1,0x25,0x01,0xDF,0x2E,"h420" }, /* 16 420KB 5.25" */
468 { 1660,10,2,83,0,0x25,0x02,0xDF,0x2E,"H830" }, /* 17 830KB 3.5" */
469 { 2988,18,2,83,0,0x25,0x00,0xDF,0x02,"h1494" }, /* 18 1.49MB 5.25" */
470 { 3486,21,2,83,0,0x25,0x00,0xDF,0x0C,"H1743" }, /* 19 1.74 MB 3.5" */
471
472 { 1760,11,2,80,0,0x1C,0x09,0xCF,0x00,"h880" }, /* 20 880KB 5.25" */
473 { 2080,13,2,80,0,0x1C,0x01,0xCF,0x00,"D1040" }, /* 21 1.04MB 3.5" */
474 { 2240,14,2,80,0,0x1C,0x19,0xCF,0x00,"D1120" }, /* 22 1.12MB 3.5" */
475 { 3200,20,2,80,0,0x1C,0x20,0xCF,0x2C,"h1600" }, /* 23 1.6MB 5.25" */
476 { 3520,22,2,80,0,0x1C,0x08,0xCF,0x2e,"H1760" }, /* 24 1.76MB 3.5" */
477 { 3840,24,2,80,0,0x1C,0x20,0xCF,0x00,"H1920" }, /* 25 1.92MB 3.5" */
478 { 6400,40,2,80,0,0x25,0x5B,0xCF,0x00,"E3200" }, /* 26 3.20MB 3.5" */
479 { 7040,44,2,80,0,0x25,0x5B,0xCF,0x00,"E3520" }, /* 27 3.52MB 3.5" */
480 { 7680,48,2,80,0,0x25,0x63,0xCF,0x00,"E3840" }, /* 28 3.84MB 3.5" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 { 3680,23,2,80,0,0x1C,0x10,0xCF,0x00,"H1840" }, /* 29 1.84MB 3.5" */
Jesper Juhl06f748c2007-10-16 23:30:57 -0700482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 { 1600,10,2,80,0,0x25,0x02,0xDF,0x2E,"D800" }, /* 30 800KB 3.5" */
484 { 3200,20,2,80,0,0x1C,0x00,0xCF,0x2C,"H1600" }, /* 31 1.6MB 3.5" */
485};
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487#define SECTSIZE (_FD_SECTSIZE(*floppy))
488
489/* Auto-detection: Disk type used until the next media change occurs. */
490static struct floppy_struct *current_type[N_DRIVE];
491
492/*
493 * User-provided type information. current_type points to
494 * the respective entry of this array.
495 */
496static struct floppy_struct user_params[N_DRIVE];
497
498static sector_t floppy_sizes[256];
499
Hannes Reinecke94fd0db2005-07-15 10:09:25 +0200500static char floppy_device_name[] = "floppy";
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502/*
503 * The driver is trying to determine the correct media format
504 * while probing is set. rw_interrupt() clears it after a
505 * successful access.
506 */
507static int probing;
508
509/* Synchronization of FDC access. */
Joe Perches48c8cee2010-03-10 15:20:45 -0800510#define FD_COMMAND_NONE -1
511#define FD_COMMAND_ERROR 2
512#define FD_COMMAND_OKAY 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514static volatile int command_status = FD_COMMAND_NONE;
515static unsigned long fdc_busy;
516static DECLARE_WAIT_QUEUE_HEAD(fdc_wait);
517static DECLARE_WAIT_QUEUE_HEAD(command_done);
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/* Errors during formatting are counted here. */
520static int format_errors;
521
522/* Format request descriptor. */
523static struct format_descr format_req;
524
525/*
526 * Rate is 0 for 500kb/s, 1 for 300kbps, 2 for 250kbps
527 * Spec1 is 0xSH, where S is stepping rate (F=1ms, E=2ms, D=3ms etc),
528 * H is head unload time (1=16ms, 2=32ms, etc)
529 */
530
531/*
532 * Track buffer
533 * Because these are written to by the DMA controller, they must
534 * not contain a 64k byte boundary crossing, or data will be
535 * corrupted/lost.
536 */
537static char *floppy_track_buffer;
538static int max_buffer_sectors;
539
540static int *errors;
Jesper Juhl06f748c2007-10-16 23:30:57 -0700541typedef void (*done_f)(int);
Stephen Hemminger3b06c212010-07-20 20:09:00 -0600542static const struct cont_t {
Joe Perches48c8cee2010-03-10 15:20:45 -0800543 void (*interrupt)(void);
544 /* this is called after the interrupt of the
545 * main command */
Jesper Juhl06f748c2007-10-16 23:30:57 -0700546 void (*redo)(void); /* this is called to retry the operation */
547 void (*error)(void); /* this is called to tally an error */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 done_f done; /* this is called to say if the operation has
549 * succeeded/failed */
550} *cont;
551
552static void floppy_ready(void);
553static void floppy_start(void);
554static void process_fd_request(void);
555static void recalibrate_floppy(void);
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200556static void floppy_shutdown(struct work_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Philippe De Muyter5a74db02009-02-18 14:48:36 -0800558static int floppy_request_regions(int);
559static void floppy_release_regions(int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560static int floppy_grab_irq_and_dma(void);
561static void floppy_release_irq_and_dma(void);
562
563/*
564 * The "reset" variable should be tested whenever an interrupt is scheduled,
565 * after the commands have been sent. This is to ensure that the driver doesn't
566 * get wedged when the interrupt doesn't come because of a failed command.
567 * reset doesn't need to be tested before sending commands, because
568 * output_byte is automatically disabled when reset is set.
569 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570static void reset_fdc(void);
571
572/*
573 * These are global variables, as that's the easiest way to give
574 * information to interrupts. They are the data used for the current
575 * request.
576 */
Joe Perches48c8cee2010-03-10 15:20:45 -0800577#define NO_TRACK -1
578#define NEED_1_RECAL -2
579#define NEED_2_RECAL -3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Stephen Hemminger575cfc62010-06-15 13:21:11 +0200581static atomic_t usage_count = ATOMIC_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583/* buffer related variables */
584static int buffer_track = -1;
585static int buffer_drive = -1;
586static int buffer_min = -1;
587static int buffer_max = -1;
588
589/* fdc related variables, should end up in a struct */
590static struct floppy_fdc_state fdc_state[N_FDC];
591static int fdc; /* current fdc */
592
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200593static struct workqueue_struct *floppy_wq;
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595static struct floppy_struct *_floppy = floppy_type;
596static unsigned char current_drive;
597static long current_count_sectors;
598static unsigned char fsector_t; /* sector in track */
599static unsigned char in_sector_offset; /* offset within physical sector,
600 * expressed in units of 512 bytes */
601
Pekka Enberg2b51dca2010-11-08 14:44:34 +0100602static inline bool drive_no_geom(int drive)
603{
604 return !current_type[drive] && !ITYPE(UDRS->fd_device);
605}
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607#ifndef fd_eject
608static inline int fd_eject(int drive)
609{
610 return -EINVAL;
611}
612#endif
613
614/*
615 * Debugging
616 * =========
617 */
618#ifdef DEBUGT
619static long unsigned debugtimer;
620
621static inline void set_debugt(void)
622{
623 debugtimer = jiffies;
624}
625
Joe Perchesded28632010-03-10 15:21:09 -0800626static inline void debugt(const char *func, const char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 if (DP->flags & DEBUGT)
Joe Perchesded28632010-03-10 15:21:09 -0800629 pr_info("%s:%s dtime=%lu\n", func, msg, jiffies - debugtimer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631#else
632static inline void set_debugt(void) { }
Joe Perchesded28632010-03-10 15:21:09 -0800633static inline void debugt(const char *func, const char *msg) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634#endif /* DEBUGT */
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200637static DECLARE_DELAYED_WORK(fd_timeout, floppy_shutdown);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638static const char *timeout_message;
639
Joe Perches275176b2010-03-10 15:21:06 -0800640static void is_alive(const char *func, const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 /* this routine checks whether the floppy driver is "alive" */
Joe Perchesc5297302010-03-10 15:20:58 -0800643 if (test_bit(0, &fdc_busy) && command_status < 2 &&
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200644 !delayed_work_pending(&fd_timeout)) {
Joe Perches275176b2010-03-10 15:21:06 -0800645 DPRINT("%s: timeout handler died. %s\n", func, message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 }
647}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Joe Perches48c8cee2010-03-10 15:20:45 -0800649static void (*do_floppy)(void) = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651#define OLOGSIZE 20
652
Joe Perches48c8cee2010-03-10 15:20:45 -0800653static void (*lasthandler)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654static unsigned long interruptjiffies;
655static unsigned long resultjiffies;
656static int resultsize;
657static unsigned long lastredo;
658
659static struct output_log {
660 unsigned char data;
661 unsigned char status;
662 unsigned long jiffies;
663} output_log[OLOGSIZE];
664
665static int output_log_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667#define current_reqD -1
668#define MAXTIMEOUT -2
669
Joe Perches73507e62010-03-10 15:21:03 -0800670static void __reschedule_timeout(int drive, const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200672 unsigned long delay;
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (drive == current_reqD)
675 drive = current_drive;
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200676
Eric Sesterhenn / Snakebyte4acb3e22007-05-23 13:58:15 -0700677 if (drive < 0 || drive >= N_DRIVE) {
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200678 delay = 20UL * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 drive = 0;
680 } else
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200681 delay = UDP->timeout;
682
Tejun Heoe7c2f962012-08-21 13:18:24 -0700683 mod_delayed_work(floppy_wq, &fd_timeout, delay);
Joe Perchesa81ee542010-03-10 15:20:46 -0800684 if (UDP->flags & FD_DEBUG)
Joe Perches73507e62010-03-10 15:21:03 -0800685 DPRINT("reschedule timeout %s\n", message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 timeout_message = message;
687}
688
Joe Perches73507e62010-03-10 15:21:03 -0800689static void reschedule_timeout(int drive, const char *message)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691 unsigned long flags;
692
693 spin_lock_irqsave(&floppy_lock, flags);
Joe Perches73507e62010-03-10 15:21:03 -0800694 __reschedule_timeout(drive, message);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 spin_unlock_irqrestore(&floppy_lock, flags);
696}
697
Joe Perches48c8cee2010-03-10 15:20:45 -0800698#define INFBOUND(a, b) (a) = max_t(int, a, b)
699#define SUPBOUND(a, b) (a) = min_t(int, a, b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701/*
702 * Bottom half floppy driver.
703 * ==========================
704 *
705 * This part of the file contains the code talking directly to the hardware,
706 * and also the main service loop (seek-configure-spinup-command)
707 */
708
709/*
710 * disk change.
711 * This routine is responsible for maintaining the FD_DISK_CHANGE flag,
712 * and the last_checked date.
713 *
714 * last_checked is the date of the last check which showed 'no disk change'
715 * FD_DISK_CHANGE is set under two conditions:
716 * 1. The floppy has been changed after some i/o to that floppy already
717 * took place.
718 * 2. No floppy disk is in the drive. This is done in order to ensure that
719 * requests are quickly flushed in case there is no disk in the drive. It
720 * follows that FD_DISK_CHANGE can only be cleared if there is a disk in
721 * the drive.
722 *
723 * For 1., maxblock is observed. Maxblock is 0 if no i/o has taken place yet.
724 * For 2., FD_DISK_NEWCHANGE is watched. FD_DISK_NEWCHANGE is cleared on
725 * each seek. If a disk is present, the disk change line should also be
726 * cleared on each seek. Thus, if FD_DISK_NEWCHANGE is clear, but the disk
727 * change line is set, this means either that no disk is in the drive, or
728 * that it has been removed since the last seek.
729 *
730 * This means that we really have a third possibility too:
731 * The floppy has been changed after the last seek.
732 */
733
734static int disk_change(int drive)
735{
736 int fdc = FDC(drive);
Jesper Juhl06f748c2007-10-16 23:30:57 -0700737
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -0800738 if (time_before(jiffies, UDRS->select_date + UDP->select_delay))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 DPRINT("WARNING disk change called early\n");
740 if (!(FDCS->dor & (0x10 << UNIT(drive))) ||
741 (FDCS->dor & 3) != UNIT(drive) || fdc != FDC(drive)) {
742 DPRINT("probing disk change on unselected drive\n");
743 DPRINT("drive=%d fdc=%d dor=%x\n", drive, FDC(drive),
744 (unsigned int)FDCS->dor);
745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Joe Perches87f530d2010-03-10 15:20:54 -0800747 debug_dcl(UDP->flags,
748 "checking disk change line for drive %d\n", drive);
749 debug_dcl(UDP->flags, "jiffies=%lu\n", jiffies);
750 debug_dcl(UDP->flags, "disk change line=%x\n", fd_inb(FD_DIR) & 0x80);
751 debug_dcl(UDP->flags, "flags=%lx\n", UDRS->flags);
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (UDP->flags & FD_BROKEN_DCL)
Joe Perchese0298532010-03-10 15:20:55 -0800754 return test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if ((fd_inb(FD_DIR) ^ UDP->flags) & 0x80) {
Joe Perchese0298532010-03-10 15:20:55 -0800756 set_bit(FD_VERIFY_BIT, &UDRS->flags);
757 /* verify write protection */
758
759 if (UDRS->maxblock) /* mark it changed */
760 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762 /* invalidate its geometry */
763 if (UDRS->keep_data >= 0) {
764 if ((UDP->flags & FTD_MSG) &&
765 current_type[drive] != NULL)
Joe Perches891eda82010-03-10 15:21:05 -0800766 DPRINT("Disk type is undefined after disk change\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 current_type[drive] = NULL;
768 floppy_sizes[TOMINOR(drive)] = MAX_DISK_SIZE << 1;
769 }
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return 1;
772 } else {
773 UDRS->last_checked = jiffies;
Joe Perchese0298532010-03-10 15:20:55 -0800774 clear_bit(FD_DISK_NEWCHANGE_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776 return 0;
777}
778
779static inline int is_selected(int dor, int unit)
780{
781 return ((dor & (0x10 << unit)) && (dor & 3) == unit);
782}
783
Joe Perches57584c52010-03-10 15:21:00 -0800784static bool is_ready_state(int status)
785{
786 int state = status & (STATUS_READY | STATUS_DIR | STATUS_DMA);
787 return state == STATUS_READY;
788}
789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790static int set_dor(int fdc, char mask, char data)
791{
Jesper Juhlfdc1ca82007-10-16 23:30:58 -0700792 unsigned char unit;
793 unsigned char drive;
794 unsigned char newdor;
795 unsigned char olddor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 if (FDCS->address == -1)
798 return -1;
799
800 olddor = FDCS->dor;
801 newdor = (olddor & mask) | data;
802 if (newdor != olddor) {
803 unit = olddor & 0x3;
804 if (is_selected(olddor, unit) && !is_selected(newdor, unit)) {
805 drive = REVDRIVE(fdc, unit);
Joe Perches87f530d2010-03-10 15:20:54 -0800806 debug_dcl(UDP->flags,
807 "calling disk change from set_dor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 disk_change(drive);
809 }
810 FDCS->dor = newdor;
811 fd_outb(newdor, FD_DOR);
812
813 unit = newdor & 0x3;
814 if (!is_selected(olddor, unit) && is_selected(newdor, unit)) {
815 drive = REVDRIVE(fdc, unit);
816 UDRS->select_date = jiffies;
817 }
818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return olddor;
820}
821
822static void twaddle(void)
823{
824 if (DP->select_delay)
825 return;
826 fd_outb(FDCS->dor & ~(0x10 << UNIT(current_drive)), FD_DOR);
827 fd_outb(FDCS->dor, FD_DOR);
828 DRS->select_date = jiffies;
829}
830
Joe Perches57584c52010-03-10 15:21:00 -0800831/*
832 * Reset all driver information about the current fdc.
833 * This is needed after a reset, and after a raw command.
834 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835static void reset_fdc_info(int mode)
836{
837 int drive;
838
839 FDCS->spec1 = FDCS->spec2 = -1;
840 FDCS->need_configure = 1;
841 FDCS->perp_mode = 1;
842 FDCS->rawcmd = 0;
843 for (drive = 0; drive < N_DRIVE; drive++)
844 if (FDC(drive) == fdc && (mode || UDRS->track != NEED_1_RECAL))
845 UDRS->track = NEED_2_RECAL;
846}
847
848/* selects the fdc and drive, and enables the fdc's input/dma. */
849static void set_fdc(int drive)
850{
Linus Torvalds5fbaa662020-02-21 12:43:35 -0800851 unsigned int new_fdc = fdc;
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (drive >= 0 && drive < N_DRIVE) {
Linus Torvalds5fbaa662020-02-21 12:43:35 -0800854 new_fdc = FDC(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 current_drive = drive;
856 }
Linus Torvalds5fbaa662020-02-21 12:43:35 -0800857 if (new_fdc >= N_FDC) {
Joe Perchesb46df352010-03-10 15:20:46 -0800858 pr_info("bad fdc value\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return;
860 }
Linus Torvalds5fbaa662020-02-21 12:43:35 -0800861 fdc = new_fdc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 set_dor(fdc, ~0, 8);
863#if N_FDC > 1
864 set_dor(1 - fdc, ~8, 0);
865#endif
866 if (FDCS->rawcmd == 2)
867 reset_fdc_info(1);
868 if (fd_inb(FD_STATUS) != STATUS_READY)
869 FDCS->reset = 1;
870}
871
872/* locks the driver */
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +0100873static int lock_fdc(int drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Stephen Hemmingerb862f262010-06-15 13:21:11 +0200875 if (WARN(atomic_read(&usage_count) == 0,
876 "Trying to lock fdc while usage count=0\n"))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Stephen Hemmingerb862f262010-06-15 13:21:11 +0200879 if (wait_event_interruptible(fdc_wait, !test_and_set_bit(0, &fdc_busy)))
880 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 command_status = FD_COMMAND_NONE;
883
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200884 reschedule_timeout(drive, "lock fdc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 set_fdc(drive);
886 return 0;
887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889/* unlocks the driver */
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +0200890static void unlock_fdc(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (!test_bit(0, &fdc_busy))
893 DPRINT("FDC access conflict!\n");
894
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200895 raw_cmd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 command_status = FD_COMMAND_NONE;
Tejun Heo136b5722012-08-21 13:18:24 -0700897 cancel_delayed_work(&fd_timeout);
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200898 do_floppy = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 cont = NULL;
900 clear_bit(0, &fdc_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 wake_up(&fdc_wait);
902}
903
904/* switches the motor off after a given timeout */
905static void motor_off_callback(unsigned long nr)
906{
907 unsigned char mask = ~(0x10 << UNIT(nr));
908
909 set_dor(FDC(nr), mask, 0);
910}
911
912/* schedules motor off */
913static void floppy_off(unsigned int drive)
914{
915 unsigned long volatile delta;
Jesper Juhlfdc1ca82007-10-16 23:30:58 -0700916 int fdc = FDC(drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 if (!(FDCS->dor & (0x10 << UNIT(drive))))
919 return;
920
921 del_timer(motor_off_timer + drive);
922
923 /* make spindle stop in a position which minimizes spinup time
924 * next time */
925 if (UDP->rps) {
926 delta = jiffies - UDRS->first_read_date + HZ -
927 UDP->spindown_offset;
928 delta = ((delta * UDP->rps) % HZ) / UDP->rps;
929 motor_off_timer[drive].expires =
930 jiffies + UDP->spindown - delta;
931 }
932 add_timer(motor_off_timer + drive);
933}
934
935/*
936 * cycle through all N_DRIVE floppy drives, for disk change testing.
937 * stopping at current drive. This is done before any long operation, to
938 * be sure to have up to date disk change information.
939 */
940static void scandrives(void)
941{
Jesper Juhl06f748c2007-10-16 23:30:57 -0700942 int i;
943 int drive;
944 int saved_drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 if (DP->select_delay)
947 return;
948
949 saved_drive = current_drive;
950 for (i = 0; i < N_DRIVE; i++) {
951 drive = (saved_drive + i + 1) % N_DRIVE;
952 if (UDRS->fd_ref == 0 || UDP->select_delay != 0)
953 continue; /* skip closed drives */
954 set_fdc(drive);
955 if (!(set_dor(fdc, ~3, UNIT(drive) | (0x10 << UNIT(drive))) &
956 (0x10 << UNIT(drive))))
957 /* switch the motor off again, if it was off to
958 * begin with */
959 set_dor(fdc, ~(0x10 << UNIT(drive)), 0);
960 }
961 set_fdc(saved_drive);
962}
963
964static void empty(void)
965{
966}
967
Tejun Heo75ddb382014-03-07 10:24:48 -0500968static void (*floppy_work_fn)(void);
969
970static void floppy_work_workfn(struct work_struct *work)
971{
972 floppy_work_fn();
973}
974
975static DECLARE_WORK(floppy_work, floppy_work_workfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Joe Perches48c8cee2010-03-10 15:20:45 -0800977static void schedule_bh(void (*handler)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200979 WARN_ON(work_pending(&floppy_work));
980
Tejun Heo75ddb382014-03-07 10:24:48 -0500981 floppy_work_fn = handler;
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200982 queue_work(floppy_wq, &floppy_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
984
Tejun Heo75ddb382014-03-07 10:24:48 -0500985static void (*fd_timer_fn)(void) = NULL;
986
987static void fd_timer_workfn(struct work_struct *work)
988{
989 fd_timer_fn();
990}
991
992static DECLARE_DELAYED_WORK(fd_timer, fd_timer_workfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994static void cancel_activity(void)
995{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 do_floppy = NULL;
Jiri Kosina070ad7e2012-05-18 13:50:25 +0200997 cancel_delayed_work_sync(&fd_timer);
998 cancel_work_sync(&floppy_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
1001/* this function makes sure that the disk stays in the drive during the
1002 * transfer */
Tejun Heo75ddb382014-03-07 10:24:48 -05001003static void fd_watchdog(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
Joe Perches87f530d2010-03-10 15:20:54 -08001005 debug_dcl(DP->flags, "calling disk change from watchdog\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
1007 if (disk_change(current_drive)) {
1008 DPRINT("disk removed during i/o\n");
1009 cancel_activity();
1010 cont->done(0);
1011 reset_fdc();
1012 } else {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001013 cancel_delayed_work(&fd_timer);
Tejun Heo75ddb382014-03-07 10:24:48 -05001014 fd_timer_fn = fd_watchdog;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001015 queue_delayed_work(floppy_wq, &fd_timer, HZ / 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 }
1017}
1018
1019static void main_command_interrupt(void)
1020{
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001021 cancel_delayed_work(&fd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 cont->interrupt();
1023}
1024
1025/* waits for a delay (spinup or select) to pass */
Tejun Heo75ddb382014-03-07 10:24:48 -05001026static int fd_wait_for_completion(unsigned long expires,
1027 void (*function)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
1029 if (FDCS->reset) {
1030 reset_fdc(); /* do the reset during sleep to win time
1031 * if we don't need to sleep, it's a good
1032 * occasion anyways */
1033 return 1;
1034 }
1035
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001036 if (time_before(jiffies, expires)) {
1037 cancel_delayed_work(&fd_timer);
Tejun Heo75ddb382014-03-07 10:24:48 -05001038 fd_timer_fn = function;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001039 queue_delayed_work(floppy_wq, &fd_timer, expires - jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return 1;
1041 }
1042 return 0;
1043}
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045static void setup_DMA(void)
1046{
1047 unsigned long f;
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 if (raw_cmd->length == 0) {
1050 int i;
1051
Joe Perchesb46df352010-03-10 15:20:46 -08001052 pr_info("zero dma transfer size:");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 for (i = 0; i < raw_cmd->cmd_count; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001054 pr_cont("%x,", raw_cmd->cmd[i]);
1055 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 cont->done(0);
1057 FDCS->reset = 1;
1058 return;
1059 }
1060 if (((unsigned long)raw_cmd->kernel_data) % 512) {
Joe Perchesb46df352010-03-10 15:20:46 -08001061 pr_info("non aligned address: %p\n", raw_cmd->kernel_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 cont->done(0);
1063 FDCS->reset = 1;
1064 return;
1065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 f = claim_dma_lock();
1067 fd_disable_dma();
1068#ifdef fd_dma_setup
1069 if (fd_dma_setup(raw_cmd->kernel_data, raw_cmd->length,
1070 (raw_cmd->flags & FD_RAW_READ) ?
1071 DMA_MODE_READ : DMA_MODE_WRITE, FDCS->address) < 0) {
1072 release_dma_lock(f);
1073 cont->done(0);
1074 FDCS->reset = 1;
1075 return;
1076 }
1077 release_dma_lock(f);
1078#else
1079 fd_clear_dma_ff();
1080 fd_cacheflush(raw_cmd->kernel_data, raw_cmd->length);
1081 fd_set_dma_mode((raw_cmd->flags & FD_RAW_READ) ?
1082 DMA_MODE_READ : DMA_MODE_WRITE);
1083 fd_set_dma_addr(raw_cmd->kernel_data);
1084 fd_set_dma_count(raw_cmd->length);
1085 virtual_dma_port = FDCS->address;
1086 fd_enable_dma();
1087 release_dma_lock(f);
1088#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
1090
1091static void show_floppy(void);
1092
1093/* waits until the fdc becomes ready */
1094static int wait_til_ready(void)
1095{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001096 int status;
1097 int counter;
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 if (FDCS->reset)
1100 return -1;
1101 for (counter = 0; counter < 10000; counter++) {
1102 status = fd_inb(FD_STATUS);
1103 if (status & STATUS_READY)
1104 return status;
1105 }
Joe Perches29f1c782010-03-10 15:21:00 -08001106 if (initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 DPRINT("Getstatus times out (%x) on fdc %d\n", status, fdc);
1108 show_floppy();
1109 }
1110 FDCS->reset = 1;
1111 return -1;
1112}
1113
1114/* sends a command byte to the fdc */
1115static int output_byte(char byte)
1116{
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001117 int status = wait_til_ready();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001119 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 return -1;
Joe Perches57584c52010-03-10 15:21:00 -08001121
1122 if (is_ready_state(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 fd_outb(byte, FD_DATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 output_log[output_log_pos].data = byte;
1125 output_log[output_log_pos].status = status;
1126 output_log[output_log_pos].jiffies = jiffies;
1127 output_log_pos = (output_log_pos + 1) % OLOGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 return 0;
1129 }
1130 FDCS->reset = 1;
Joe Perches29f1c782010-03-10 15:21:00 -08001131 if (initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 DPRINT("Unable to send byte %x to FDC. Fdc=%x Status=%x\n",
1133 byte, fdc, status);
1134 show_floppy();
1135 }
1136 return -1;
1137}
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139/* gets the response from the fdc */
1140static int result(void)
1141{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001142 int i;
1143 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
1145 for (i = 0; i < MAX_REPLIES; i++) {
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001146 status = wait_til_ready();
1147 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 break;
1149 status &= STATUS_DIR | STATUS_READY | STATUS_BUSY | STATUS_DMA;
1150 if ((status & ~STATUS_BUSY) == STATUS_READY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 resultjiffies = jiffies;
1152 resultsize = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 return i;
1154 }
1155 if (status == (STATUS_DIR | STATUS_READY | STATUS_BUSY))
1156 reply_buffer[i] = fd_inb(FD_DATA);
1157 else
1158 break;
1159 }
Joe Perches29f1c782010-03-10 15:21:00 -08001160 if (initialized) {
1161 DPRINT("get result error. Fdc=%d Last status=%x Read bytes=%d\n",
1162 fdc, status, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 show_floppy();
1164 }
1165 FDCS->reset = 1;
1166 return -1;
1167}
1168
1169#define MORE_OUTPUT -2
1170/* does the fdc need more output? */
1171static int need_more_output(void)
1172{
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001173 int status = wait_til_ready();
Jesper Juhl06f748c2007-10-16 23:30:57 -07001174
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001175 if (status < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 return -1;
Joe Perches57584c52010-03-10 15:21:00 -08001177
1178 if (is_ready_state(status))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return MORE_OUTPUT;
Joe Perches57584c52010-03-10 15:21:00 -08001180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return result();
1182}
1183
1184/* Set perpendicular mode as required, based on data rate, if supported.
1185 * 82077 Now tested. 1Mbps data rate only possible with 82077-1.
1186 */
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02001187static void perpendicular_mode(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
1189 unsigned char perp_mode;
1190
1191 if (raw_cmd->rate & 0x40) {
1192 switch (raw_cmd->rate & 3) {
1193 case 0:
1194 perp_mode = 2;
1195 break;
1196 case 3:
1197 perp_mode = 3;
1198 break;
1199 default:
1200 DPRINT("Invalid data rate for perpendicular mode!\n");
1201 cont->done(0);
Joe Perchesbb57f0c62010-03-10 15:20:50 -08001202 FDCS->reset = 1;
1203 /*
1204 * convenient way to return to
1205 * redo without too much hassle
1206 * (deep stack et al.)
1207 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return;
1209 }
1210 } else
1211 perp_mode = 0;
1212
1213 if (FDCS->perp_mode == perp_mode)
1214 return;
1215 if (FDCS->version >= FDC_82077_ORIG) {
1216 output_byte(FD_PERPENDICULAR);
1217 output_byte(perp_mode);
1218 FDCS->perp_mode = perp_mode;
1219 } else if (perp_mode) {
1220 DPRINT("perpendicular mode not supported by this FDC.\n");
1221 }
1222} /* perpendicular_mode */
1223
1224static int fifo_depth = 0xa;
1225static int no_fifo;
1226
1227static int fdc_configure(void)
1228{
1229 /* Turn on FIFO */
1230 output_byte(FD_CONFIGURE);
1231 if (need_more_output() != MORE_OUTPUT)
1232 return 0;
1233 output_byte(0);
1234 output_byte(0x10 | (no_fifo & 0x20) | (fifo_depth & 0xf));
1235 output_byte(0); /* pre-compensation from track
1236 0 upwards */
1237 return 1;
1238}
1239
1240#define NOMINAL_DTR 500
1241
1242/* Issue a "SPECIFY" command to set the step rate time, head unload time,
1243 * head load time, and DMA disable flag to values needed by floppy.
1244 *
1245 * The value "dtr" is the data transfer rate in Kbps. It is needed
1246 * to account for the data rate-based scaling done by the 82072 and 82077
1247 * FDC types. This parameter is ignored for other types of FDCs (i.e.
1248 * 8272a).
1249 *
1250 * Note that changing the data transfer rate has a (probably deleterious)
1251 * effect on the parameters subject to scaling for 82072/82077 FDCs, so
1252 * fdc_specify is called again after each data transfer rate
1253 * change.
1254 *
1255 * srt: 1000 to 16000 in microseconds
1256 * hut: 16 to 240 milliseconds
1257 * hlt: 2 to 254 milliseconds
1258 *
1259 * These values are rounded up to the next highest available delay time.
1260 */
1261static void fdc_specify(void)
1262{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001263 unsigned char spec1;
1264 unsigned char spec2;
1265 unsigned long srt;
1266 unsigned long hlt;
1267 unsigned long hut;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 unsigned long dtr = NOMINAL_DTR;
1269 unsigned long scale_dtr = NOMINAL_DTR;
1270 int hlt_max_code = 0x7f;
1271 int hut_max_code = 0xf;
1272
1273 if (FDCS->need_configure && FDCS->version >= FDC_82072A) {
1274 fdc_configure();
1275 FDCS->need_configure = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277
1278 switch (raw_cmd->rate & 0x03) {
1279 case 3:
1280 dtr = 1000;
1281 break;
1282 case 1:
1283 dtr = 300;
1284 if (FDCS->version >= FDC_82078) {
1285 /* chose the default rate table, not the one
1286 * where 1 = 2 Mbps */
1287 output_byte(FD_DRIVESPEC);
1288 if (need_more_output() == MORE_OUTPUT) {
1289 output_byte(UNIT(current_drive));
1290 output_byte(0xc0);
1291 }
1292 }
1293 break;
1294 case 2:
1295 dtr = 250;
1296 break;
1297 }
1298
1299 if (FDCS->version >= FDC_82072) {
1300 scale_dtr = dtr;
1301 hlt_max_code = 0x00; /* 0==256msec*dtr0/dtr (not linear!) */
1302 hut_max_code = 0x0; /* 0==256msec*dtr0/dtr (not linear!) */
1303 }
1304
1305 /* Convert step rate from microseconds to milliseconds and 4 bits */
Julia Lawall061837b2008-09-22 14:57:16 -07001306 srt = 16 - DIV_ROUND_UP(DP->srt * scale_dtr / 1000, NOMINAL_DTR);
Joe Perchesa81ee542010-03-10 15:20:46 -08001307 if (slow_floppy)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 srt = srt / 4;
Joe Perchesa81ee542010-03-10 15:20:46 -08001309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 SUPBOUND(srt, 0xf);
1311 INFBOUND(srt, 0);
1312
Julia Lawall061837b2008-09-22 14:57:16 -07001313 hlt = DIV_ROUND_UP(DP->hlt * scale_dtr / 2, NOMINAL_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if (hlt < 0x01)
1315 hlt = 0x01;
1316 else if (hlt > 0x7f)
1317 hlt = hlt_max_code;
1318
Julia Lawall061837b2008-09-22 14:57:16 -07001319 hut = DIV_ROUND_UP(DP->hut * scale_dtr / 16, NOMINAL_DTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 if (hut < 0x1)
1321 hut = 0x1;
1322 else if (hut > 0xf)
1323 hut = hut_max_code;
1324
1325 spec1 = (srt << 4) | hut;
1326 spec2 = (hlt << 1) | (use_virtual_dma & 1);
1327
1328 /* If these parameters did not change, just return with success */
1329 if (FDCS->spec1 != spec1 || FDCS->spec2 != spec2) {
1330 /* Go ahead and set spec1 and spec2 */
1331 output_byte(FD_SPECIFY);
1332 output_byte(FDCS->spec1 = spec1);
1333 output_byte(FDCS->spec2 = spec2);
1334 }
1335} /* fdc_specify */
1336
1337/* Set the FDC's data transfer rate on behalf of the specified drive.
1338 * NOTE: with 82072/82077 FDCs, changing the data rate requires a reissue
1339 * of the specify command (i.e. using the fdc_specify function).
1340 */
1341static int fdc_dtr(void)
1342{
1343 /* If data rate not already set to desired value, set it. */
1344 if ((raw_cmd->rate & 3) == FDCS->dtr)
1345 return 0;
1346
1347 /* Set dtr */
1348 fd_outb(raw_cmd->rate & 3, FD_DCR);
1349
1350 /* TODO: some FDC/drive combinations (C&T 82C711 with TEAC 1.2MB)
1351 * need a stabilization period of several milliseconds to be
1352 * enforced after data rate changes before R/W operations.
1353 * Pause 5 msec to avoid trouble. (Needs to be 2 jiffies)
1354 */
1355 FDCS->dtr = raw_cmd->rate & 3;
Tejun Heo75ddb382014-03-07 10:24:48 -05001356 return fd_wait_for_completion(jiffies + 2UL * HZ / 100, floppy_ready);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357} /* fdc_dtr */
1358
1359static void tell_sector(void)
1360{
Joe Perchesb46df352010-03-10 15:20:46 -08001361 pr_cont(": track %d, head %d, sector %d, size %d",
1362 R_TRACK, R_HEAD, R_SECTOR, R_SIZECODE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363} /* tell_sector */
1364
Joe Perchesb46df352010-03-10 15:20:46 -08001365static void print_errors(void)
1366{
1367 DPRINT("");
1368 if (ST0 & ST0_ECE) {
1369 pr_cont("Recalibrate failed!");
1370 } else if (ST2 & ST2_CRC) {
1371 pr_cont("data CRC error");
1372 tell_sector();
1373 } else if (ST1 & ST1_CRC) {
1374 pr_cont("CRC error");
1375 tell_sector();
1376 } else if ((ST1 & (ST1_MAM | ST1_ND)) ||
1377 (ST2 & ST2_MAM)) {
1378 if (!probing) {
1379 pr_cont("sector not found");
1380 tell_sector();
1381 } else
1382 pr_cont("probe failed...");
1383 } else if (ST2 & ST2_WC) { /* seek error */
1384 pr_cont("wrong cylinder");
1385 } else if (ST2 & ST2_BC) { /* cylinder marked as bad */
1386 pr_cont("bad cylinder");
1387 } else {
1388 pr_cont("unknown error. ST[0..2] are: 0x%x 0x%x 0x%x",
1389 ST0, ST1, ST2);
1390 tell_sector();
1391 }
1392 pr_cont("\n");
1393}
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395/*
1396 * OK, this error interpreting routine is called after a
1397 * DMA read/write has succeeded
1398 * or failed, so we check the results, and copy any buffers.
1399 * hhb: Added better error reporting.
1400 * ak: Made this into a separate routine.
1401 */
1402static int interpret_errors(void)
1403{
1404 char bad;
1405
1406 if (inr != 7) {
Joe Perches891eda82010-03-10 15:21:05 -08001407 DPRINT("-- FDC reply error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 FDCS->reset = 1;
1409 return 1;
1410 }
1411
1412 /* check IC to find cause of interrupt */
1413 switch (ST0 & ST0_INTR) {
1414 case 0x40: /* error occurred during command execution */
1415 if (ST1 & ST1_EOC)
1416 return 0; /* occurs with pseudo-DMA */
1417 bad = 1;
1418 if (ST1 & ST1_WP) {
1419 DPRINT("Drive is write protected\n");
Joe Perchese0298532010-03-10 15:20:55 -08001420 clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 cont->done(0);
1422 bad = 2;
1423 } else if (ST1 & ST1_ND) {
Joe Perchese0298532010-03-10 15:20:55 -08001424 set_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 } else if (ST1 & ST1_OR) {
1426 if (DP->flags & FTD_MSG)
1427 DPRINT("Over/Underrun - retrying\n");
1428 bad = 0;
1429 } else if (*errors >= DP->max_errors.reporting) {
Joe Perchesb46df352010-03-10 15:20:46 -08001430 print_errors();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432 if (ST2 & ST2_WC || ST2 & ST2_BC)
1433 /* wrong cylinder => recal */
1434 DRS->track = NEED_2_RECAL;
1435 return bad;
1436 case 0x80: /* invalid command given */
1437 DPRINT("Invalid FDC command given!\n");
1438 cont->done(0);
1439 return 2;
1440 case 0xc0:
1441 DPRINT("Abnormal termination caused by polling\n");
1442 cont->error();
1443 return 2;
1444 default: /* (0) Normal command termination */
1445 return 0;
1446 }
1447}
1448
1449/*
1450 * This routine is called when everything should be correctly set up
1451 * for the transfer (i.e. floppy motor is on, the correct floppy is
1452 * selected, and the head is sitting on the right track).
1453 */
1454static void setup_rw_floppy(void)
1455{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001456 int i;
1457 int r;
1458 int flags;
1459 int dflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 unsigned long ready_date;
Tejun Heo75ddb382014-03-07 10:24:48 -05001461 void (*function)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 flags = raw_cmd->flags;
1464 if (flags & (FD_RAW_READ | FD_RAW_WRITE))
1465 flags |= FD_RAW_INTR;
1466
1467 if ((flags & FD_RAW_SPIN) && !(flags & FD_RAW_NO_MOTOR)) {
1468 ready_date = DRS->spinup_date + DP->spinup;
1469 /* If spinup will take a long time, rerun scandrives
1470 * again just before spinup completion. Beware that
1471 * after scandrives, we must again wait for selection.
1472 */
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -08001473 if (time_after(ready_date, jiffies + DP->select_delay)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 ready_date -= DP->select_delay;
Tejun Heo75ddb382014-03-07 10:24:48 -05001475 function = floppy_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 } else
Tejun Heo75ddb382014-03-07 10:24:48 -05001477 function = setup_rw_floppy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 /* wait until the floppy is spinning fast enough */
1480 if (fd_wait_for_completion(ready_date, function))
1481 return;
1482 }
1483 dflags = DRS->flags;
1484
1485 if ((flags & FD_RAW_READ) || (flags & FD_RAW_WRITE))
1486 setup_DMA();
1487
1488 if (flags & FD_RAW_INTR)
1489 do_floppy = main_command_interrupt;
1490
1491 r = 0;
1492 for (i = 0; i < raw_cmd->cmd_count; i++)
1493 r |= output_byte(raw_cmd->cmd[i]);
1494
Joe Perchesded28632010-03-10 15:21:09 -08001495 debugt(__func__, "rw_command");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 if (r) {
1498 cont->error();
1499 reset_fdc();
1500 return;
1501 }
1502
1503 if (!(flags & FD_RAW_INTR)) {
1504 inr = result();
1505 cont->interrupt();
1506 } else if (flags & FD_RAW_NEED_DISK)
Tejun Heo75ddb382014-03-07 10:24:48 -05001507 fd_watchdog();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509
1510static int blind_seek;
1511
1512/*
1513 * This is the routine called after every seek (or recalibrate) interrupt
1514 * from the floppy controller.
1515 */
1516static void seek_interrupt(void)
1517{
Joe Perchesded28632010-03-10 15:21:09 -08001518 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (inr != 2 || (ST0 & 0xF8) != 0x20) {
1520 DPRINT("seek failed\n");
1521 DRS->track = NEED_2_RECAL;
1522 cont->error();
1523 cont->redo();
1524 return;
1525 }
1526 if (DRS->track >= 0 && DRS->track != ST1 && !blind_seek) {
Joe Perches87f530d2010-03-10 15:20:54 -08001527 debug_dcl(DP->flags,
1528 "clearing NEWCHANGE flag because of effective seek\n");
1529 debug_dcl(DP->flags, "jiffies=%lu\n", jiffies);
Joe Perchese0298532010-03-10 15:20:55 -08001530 clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
1531 /* effective seek */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 DRS->select_date = jiffies;
1533 }
1534 DRS->track = ST1;
1535 floppy_ready();
1536}
1537
1538static void check_wp(void)
1539{
Joe Perchese0298532010-03-10 15:20:55 -08001540 if (test_bit(FD_VERIFY_BIT, &DRS->flags)) {
1541 /* check write protection */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 output_byte(FD_GETSTATUS);
1543 output_byte(UNIT(current_drive));
1544 if (result() != 1) {
1545 FDCS->reset = 1;
1546 return;
1547 }
Joe Perchese0298532010-03-10 15:20:55 -08001548 clear_bit(FD_VERIFY_BIT, &DRS->flags);
1549 clear_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
Joe Perches87f530d2010-03-10 15:20:54 -08001550 debug_dcl(DP->flags,
1551 "checking whether disk is write protected\n");
1552 debug_dcl(DP->flags, "wp=%x\n", ST3 & 0x40);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (!(ST3 & 0x40))
Joe Perchese0298532010-03-10 15:20:55 -08001554 set_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 else
Joe Perchese0298532010-03-10 15:20:55 -08001556 clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558}
1559
1560static void seek_floppy(void)
1561{
1562 int track;
1563
1564 blind_seek = 0;
1565
Joe Perchesded28632010-03-10 15:21:09 -08001566 debug_dcl(DP->flags, "calling disk change from %s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Joe Perchese0298532010-03-10 15:20:55 -08001568 if (!test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 disk_change(current_drive) && (raw_cmd->flags & FD_RAW_NEED_DISK)) {
1570 /* the media changed flag should be cleared after the seek.
1571 * If it isn't, this means that there is really no disk in
1572 * the drive.
1573 */
Joe Perchese0298532010-03-10 15:20:55 -08001574 set_bit(FD_DISK_CHANGED_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 cont->done(0);
1576 cont->redo();
1577 return;
1578 }
1579 if (DRS->track <= NEED_1_RECAL) {
1580 recalibrate_floppy();
1581 return;
Joe Perchese0298532010-03-10 15:20:55 -08001582 } else if (test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 (raw_cmd->flags & FD_RAW_NEED_DISK) &&
1584 (DRS->track <= NO_TRACK || DRS->track == raw_cmd->track)) {
1585 /* we seek to clear the media-changed condition. Does anybody
1586 * know a more elegant way, which works on all drives? */
1587 if (raw_cmd->track)
1588 track = raw_cmd->track - 1;
1589 else {
1590 if (DP->flags & FD_SILENT_DCL_CLEAR) {
1591 set_dor(fdc, ~(0x10 << UNIT(current_drive)), 0);
1592 blind_seek = 1;
1593 raw_cmd->flags |= FD_RAW_NEED_SEEK;
1594 }
1595 track = 1;
1596 }
1597 } else {
1598 check_wp();
1599 if (raw_cmd->track != DRS->track &&
1600 (raw_cmd->flags & FD_RAW_NEED_SEEK))
1601 track = raw_cmd->track;
1602 else {
1603 setup_rw_floppy();
1604 return;
1605 }
1606 }
1607
1608 do_floppy = seek_interrupt;
1609 output_byte(FD_SEEK);
1610 output_byte(UNIT(current_drive));
Joe Perches2300f902010-03-10 15:20:49 -08001611 if (output_byte(track) < 0) {
1612 reset_fdc();
1613 return;
1614 }
Joe Perchesded28632010-03-10 15:21:09 -08001615 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616}
1617
1618static void recal_interrupt(void)
1619{
Joe Perchesded28632010-03-10 15:21:09 -08001620 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (inr != 2)
1622 FDCS->reset = 1;
1623 else if (ST0 & ST0_ECE) {
1624 switch (DRS->track) {
1625 case NEED_1_RECAL:
Joe Perchesded28632010-03-10 15:21:09 -08001626 debugt(__func__, "need 1 recal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 /* after a second recalibrate, we still haven't
1628 * reached track 0. Probably no drive. Raise an
1629 * error, as failing immediately might upset
1630 * computers possessed by the Devil :-) */
1631 cont->error();
1632 cont->redo();
1633 return;
1634 case NEED_2_RECAL:
Joe Perchesded28632010-03-10 15:21:09 -08001635 debugt(__func__, "need 2 recal");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 /* If we already did a recalibrate,
1637 * and we are not at track 0, this
1638 * means we have moved. (The only way
1639 * not to move at recalibration is to
1640 * be already at track 0.) Clear the
1641 * new change flag */
Joe Perches87f530d2010-03-10 15:20:54 -08001642 debug_dcl(DP->flags,
1643 "clearing NEWCHANGE flag because of second recalibrate\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Joe Perchese0298532010-03-10 15:20:55 -08001645 clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 DRS->select_date = jiffies;
1647 /* fall through */
1648 default:
Joe Perchesded28632010-03-10 15:21:09 -08001649 debugt(__func__, "default");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 /* Recalibrate moves the head by at
1651 * most 80 steps. If after one
1652 * recalibrate we don't have reached
1653 * track 0, this might mean that we
1654 * started beyond track 80. Try
1655 * again. */
1656 DRS->track = NEED_1_RECAL;
1657 break;
1658 }
1659 } else
1660 DRS->track = ST1;
1661 floppy_ready();
1662}
1663
1664static void print_result(char *message, int inr)
1665{
1666 int i;
1667
1668 DPRINT("%s ", message);
1669 if (inr >= 0)
1670 for (i = 0; i < inr; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001671 pr_cont("repl[%d]=%x ", i, reply_buffer[i]);
1672 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673}
1674
1675/* interrupt handler. Note that this can be called externally on the Sparc */
David Howells7d12e782006-10-05 14:55:46 +01001676irqreturn_t floppy_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 int do_print;
1679 unsigned long f;
Jesper Juhl06f748c2007-10-16 23:30:57 -07001680 void (*handler)(void) = do_floppy;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
1682 lasthandler = handler;
1683 interruptjiffies = jiffies;
1684
1685 f = claim_dma_lock();
1686 fd_disable_dma();
1687 release_dma_lock(f);
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 do_floppy = NULL;
1690 if (fdc >= N_FDC || FDCS->address == -1) {
1691 /* we don't even know which FDC is the culprit */
Joe Perchesb46df352010-03-10 15:20:46 -08001692 pr_info("DOR0=%x\n", fdc_state[0].dor);
1693 pr_info("floppy interrupt on bizarre fdc %d\n", fdc);
Joe Perches1ebddd82010-03-10 15:21:07 -08001694 pr_info("handler=%pf\n", handler);
Joe Perches275176b2010-03-10 15:21:06 -08001695 is_alive(__func__, "bizarre fdc");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return IRQ_NONE;
1697 }
1698
1699 FDCS->reset = 0;
1700 /* We have to clear the reset flag here, because apparently on boxes
1701 * with level triggered interrupts (PS/2, Sparc, ...), it is needed to
1702 * emit SENSEI's to clear the interrupt line. And FDCS->reset blocks the
1703 * emission of the SENSEI's.
1704 * It is OK to emit floppy commands because we are in an interrupt
1705 * handler here, and thus we have to fear no interference of other
1706 * activity.
1707 */
1708
Joe Perches29f1c782010-03-10 15:21:00 -08001709 do_print = !handler && print_unex && initialized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711 inr = result();
1712 if (do_print)
1713 print_result("unexpected interrupt", inr);
1714 if (inr == 0) {
1715 int max_sensei = 4;
1716 do {
1717 output_byte(FD_SENSEI);
1718 inr = result();
1719 if (do_print)
1720 print_result("sensei", inr);
1721 max_sensei--;
Joe Perchesc5297302010-03-10 15:20:58 -08001722 } while ((ST0 & 0x83) != UNIT(current_drive) &&
1723 inr == 2 && max_sensei);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 }
1725 if (!handler) {
1726 FDCS->reset = 1;
1727 return IRQ_NONE;
1728 }
1729 schedule_bh(handler);
Joe Perches275176b2010-03-10 15:21:06 -08001730 is_alive(__func__, "normal interrupt end");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732 /* FIXME! Was it really for us? */
1733 return IRQ_HANDLED;
1734}
1735
1736static void recalibrate_floppy(void)
1737{
Joe Perchesded28632010-03-10 15:21:09 -08001738 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 do_floppy = recal_interrupt;
1740 output_byte(FD_RECALIBRATE);
Joe Perches15b26302010-03-10 15:21:01 -08001741 if (output_byte(UNIT(current_drive)) < 0)
Joe Perches2300f902010-03-10 15:20:49 -08001742 reset_fdc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743}
1744
1745/*
1746 * Must do 4 FD_SENSEIs after reset because of ``drive polling''.
1747 */
1748static void reset_interrupt(void)
1749{
Joe Perchesded28632010-03-10 15:21:09 -08001750 debugt(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 result(); /* get the status ready for set_fdc */
1752 if (FDCS->reset) {
Joe Perches1ebddd82010-03-10 15:21:07 -08001753 pr_info("reset set in interrupt, calling %pf\n", cont->error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 cont->error(); /* a reset just after a reset. BAD! */
1755 }
1756 cont->redo();
1757}
1758
1759/*
1760 * reset is done by pulling bit 2 of DOR low for a while (old FDCs),
1761 * or by setting the self clearing bit 7 of STATUS (newer FDCs)
1762 */
1763static void reset_fdc(void)
1764{
1765 unsigned long flags;
1766
1767 do_floppy = reset_interrupt;
1768 FDCS->reset = 0;
1769 reset_fdc_info(0);
1770
1771 /* Pseudo-DMA may intercept 'reset finished' interrupt. */
1772 /* Irrelevant for systems with true DMA (i386). */
1773
1774 flags = claim_dma_lock();
1775 fd_disable_dma();
1776 release_dma_lock(flags);
1777
1778 if (FDCS->version >= FDC_82072A)
1779 fd_outb(0x80 | (FDCS->dtr & 3), FD_STATUS);
1780 else {
1781 fd_outb(FDCS->dor & ~0x04, FD_DOR);
1782 udelay(FD_RESET_DELAY);
1783 fd_outb(FDCS->dor, FD_DOR);
1784 }
1785}
1786
1787static void show_floppy(void)
1788{
1789 int i;
1790
Joe Perchesb46df352010-03-10 15:20:46 -08001791 pr_info("\n");
1792 pr_info("floppy driver state\n");
1793 pr_info("-------------------\n");
Joe Perches1ebddd82010-03-10 15:21:07 -08001794 pr_info("now=%lu last interrupt=%lu diff=%lu last called handler=%pf\n",
Joe Perchesb46df352010-03-10 15:20:46 -08001795 jiffies, interruptjiffies, jiffies - interruptjiffies,
1796 lasthandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Joe Perchesb46df352010-03-10 15:20:46 -08001798 pr_info("timeout_message=%s\n", timeout_message);
1799 pr_info("last output bytes:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 for (i = 0; i < OLOGSIZE; i++)
Joe Perchesb46df352010-03-10 15:20:46 -08001801 pr_info("%2x %2x %lu\n",
1802 output_log[(i + output_log_pos) % OLOGSIZE].data,
1803 output_log[(i + output_log_pos) % OLOGSIZE].status,
1804 output_log[(i + output_log_pos) % OLOGSIZE].jiffies);
1805 pr_info("last result at %lu\n", resultjiffies);
1806 pr_info("last redo_fd_request at %lu\n", lastredo);
1807 print_hex_dump(KERN_INFO, "", DUMP_PREFIX_NONE, 16, 1,
1808 reply_buffer, resultsize, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Joe Perchesb46df352010-03-10 15:20:46 -08001810 pr_info("status=%x\n", fd_inb(FD_STATUS));
1811 pr_info("fdc_busy=%lu\n", fdc_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 if (do_floppy)
Joe Perches1ebddd82010-03-10 15:21:07 -08001813 pr_info("do_floppy=%pf\n", do_floppy);
David Howells365970a2006-11-22 14:54:49 +00001814 if (work_pending(&floppy_work))
Joe Perches1ebddd82010-03-10 15:21:07 -08001815 pr_info("floppy_work.func=%pf\n", floppy_work.func);
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001816 if (delayed_work_pending(&fd_timer))
1817 pr_info("delayed work.function=%p expires=%ld\n",
1818 fd_timer.work.func,
1819 fd_timer.timer.expires - jiffies);
1820 if (delayed_work_pending(&fd_timeout))
1821 pr_info("timer_function=%p expires=%ld\n",
1822 fd_timeout.work.func,
1823 fd_timeout.timer.expires - jiffies);
1824
Joe Perchesb46df352010-03-10 15:20:46 -08001825 pr_info("cont=%p\n", cont);
1826 pr_info("current_req=%p\n", current_req);
1827 pr_info("command_status=%d\n", command_status);
1828 pr_info("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829}
1830
Jiri Kosina070ad7e2012-05-18 13:50:25 +02001831static void floppy_shutdown(struct work_struct *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832{
1833 unsigned long flags;
1834
Joe Perches29f1c782010-03-10 15:21:00 -08001835 if (initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 show_floppy();
1837 cancel_activity();
1838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 flags = claim_dma_lock();
1840 fd_disable_dma();
1841 release_dma_lock(flags);
1842
1843 /* avoid dma going to a random drive after shutdown */
1844
Joe Perches29f1c782010-03-10 15:21:00 -08001845 if (initialized)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 DPRINT("floppy timeout called\n");
1847 FDCS->reset = 1;
1848 if (cont) {
1849 cont->done(0);
1850 cont->redo(); /* this will recall reset when needed */
1851 } else {
Joe Perchesb46df352010-03-10 15:20:46 -08001852 pr_info("no cont in shutdown!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 process_fd_request();
1854 }
Joe Perches275176b2010-03-10 15:21:06 -08001855 is_alive(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856}
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858/* start motor, check media-changed condition and write protection */
Jesper Juhl06f748c2007-10-16 23:30:57 -07001859static int start_motor(void (*function)(void))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
Jesper Juhl06f748c2007-10-16 23:30:57 -07001861 int mask;
1862 int data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 mask = 0xfc;
1865 data = UNIT(current_drive);
1866 if (!(raw_cmd->flags & FD_RAW_NO_MOTOR)) {
1867 if (!(FDCS->dor & (0x10 << UNIT(current_drive)))) {
1868 set_debugt();
1869 /* no read since this drive is running */
1870 DRS->first_read_date = 0;
1871 /* note motor start time if motor is not yet running */
1872 DRS->spinup_date = jiffies;
1873 data |= (0x10 << UNIT(current_drive));
1874 }
1875 } else if (FDCS->dor & (0x10 << UNIT(current_drive)))
1876 mask &= ~(0x10 << UNIT(current_drive));
1877
1878 /* starts motor and selects floppy */
1879 del_timer(motor_off_timer + current_drive);
1880 set_dor(fdc, mask, data);
1881
1882 /* wait_for_completion also schedules reset if needed. */
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08001883 return fd_wait_for_completion(DRS->select_date + DP->select_delay,
Tejun Heo75ddb382014-03-07 10:24:48 -05001884 function);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885}
1886
1887static void floppy_ready(void)
1888{
Joe Perches045f9832010-03-10 15:20:47 -08001889 if (FDCS->reset) {
1890 reset_fdc();
1891 return;
1892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 if (start_motor(floppy_ready))
1894 return;
1895 if (fdc_dtr())
1896 return;
1897
Joe Perches87f530d2010-03-10 15:20:54 -08001898 debug_dcl(DP->flags, "calling disk change from floppy_ready\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (!(raw_cmd->flags & FD_RAW_NO_MOTOR) &&
1900 disk_change(current_drive) && !DP->select_delay)
Joe Perchesbb57f0c62010-03-10 15:20:50 -08001901 twaddle(); /* this clears the dcl on certain
1902 * drive/controller combinations */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
1904#ifdef fd_chose_dma_mode
1905 if ((raw_cmd->flags & FD_RAW_READ) || (raw_cmd->flags & FD_RAW_WRITE)) {
1906 unsigned long flags = claim_dma_lock();
1907 fd_chose_dma_mode(raw_cmd->kernel_data, raw_cmd->length);
1908 release_dma_lock(flags);
1909 }
1910#endif
1911
1912 if (raw_cmd->flags & (FD_RAW_NEED_SEEK | FD_RAW_NEED_DISK)) {
1913 perpendicular_mode();
1914 fdc_specify(); /* must be done here because of hut, hlt ... */
1915 seek_floppy();
1916 } else {
1917 if ((raw_cmd->flags & FD_RAW_READ) ||
1918 (raw_cmd->flags & FD_RAW_WRITE))
1919 fdc_specify();
1920 setup_rw_floppy();
1921 }
1922}
1923
1924static void floppy_start(void)
1925{
Joe Perches73507e62010-03-10 15:21:03 -08001926 reschedule_timeout(current_reqD, "floppy start");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
1928 scandrives();
Joe Perches87f530d2010-03-10 15:20:54 -08001929 debug_dcl(DP->flags, "setting NEWCHANGE in floppy_start\n");
Joe Perchese0298532010-03-10 15:20:55 -08001930 set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 floppy_ready();
1932}
1933
1934/*
1935 * ========================================================================
1936 * here ends the bottom half. Exported routines are:
1937 * floppy_start, floppy_off, floppy_ready, lock_fdc, unlock_fdc, set_fdc,
1938 * start_motor, reset_fdc, reset_fdc_info, interpret_errors.
1939 * Initialization also uses output_byte, result, set_dor, floppy_interrupt
1940 * and set_dor.
1941 * ========================================================================
1942 */
1943/*
1944 * General purpose continuations.
1945 * ==============================
1946 */
1947
1948static void do_wakeup(void)
1949{
Joe Perches73507e62010-03-10 15:21:03 -08001950 reschedule_timeout(MAXTIMEOUT, "do wakeup");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 cont = NULL;
1952 command_status += 2;
1953 wake_up(&command_done);
1954}
1955
Stephen Hemminger3b06c212010-07-20 20:09:00 -06001956static const struct cont_t wakeup_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 .interrupt = empty,
1958 .redo = do_wakeup,
1959 .error = empty,
Jesper Juhl06f748c2007-10-16 23:30:57 -07001960 .done = (done_f)empty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961};
1962
Stephen Hemminger3b06c212010-07-20 20:09:00 -06001963static const struct cont_t intr_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 .interrupt = empty,
1965 .redo = process_fd_request,
1966 .error = empty,
Jesper Juhl06f748c2007-10-16 23:30:57 -07001967 .done = (done_f)empty
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968};
1969
Joe Perches74f63f42010-03-10 15:20:58 -08001970static int wait_til_done(void (*handler)(void), bool interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971{
1972 int ret;
1973
1974 schedule_bh(handler);
1975
Stephen Hemmingerb862f262010-06-15 13:21:11 +02001976 if (interruptible)
1977 wait_event_interruptible(command_done, command_status >= 2);
1978 else
1979 wait_event(command_done, command_status >= 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
1981 if (command_status < 2) {
1982 cancel_activity();
1983 cont = &intr_cont;
1984 reset_fdc();
1985 return -EINTR;
1986 }
1987
1988 if (FDCS->reset)
1989 command_status = FD_COMMAND_ERROR;
1990 if (command_status == FD_COMMAND_OKAY)
1991 ret = 0;
1992 else
1993 ret = -EIO;
1994 command_status = FD_COMMAND_NONE;
1995 return ret;
1996}
1997
1998static void generic_done(int result)
1999{
2000 command_status = result;
2001 cont = &wakeup_cont;
2002}
2003
2004static void generic_success(void)
2005{
2006 cont->done(1);
2007}
2008
2009static void generic_failure(void)
2010{
2011 cont->done(0);
2012}
2013
2014static void success_and_wakeup(void)
2015{
2016 generic_success();
2017 cont->redo();
2018}
2019
2020/*
2021 * formatting and rw support.
2022 * ==========================
2023 */
2024
2025static int next_valid_format(void)
2026{
2027 int probed_format;
2028
2029 probed_format = DRS->probed_format;
2030 while (1) {
2031 if (probed_format >= 8 || !DP->autodetect[probed_format]) {
2032 DRS->probed_format = 0;
2033 return 1;
2034 }
2035 if (floppy_type[DP->autodetect[probed_format]].sect) {
2036 DRS->probed_format = probed_format;
2037 return 0;
2038 }
2039 probed_format++;
2040 }
2041}
2042
2043static void bad_flp_intr(void)
2044{
2045 int err_count;
2046
2047 if (probing) {
2048 DRS->probed_format++;
2049 if (!next_valid_format())
2050 return;
2051 }
2052 err_count = ++(*errors);
2053 INFBOUND(DRWE->badness, err_count);
2054 if (err_count > DP->max_errors.abort)
2055 cont->done(0);
2056 if (err_count > DP->max_errors.reset)
2057 FDCS->reset = 1;
2058 else if (err_count > DP->max_errors.recal)
2059 DRS->track = NEED_2_RECAL;
2060}
2061
2062static void set_floppy(int drive)
2063{
2064 int type = ITYPE(UDRS->fd_device);
Jesper Juhl06f748c2007-10-16 23:30:57 -07002065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 if (type)
2067 _floppy = floppy_type + type;
2068 else
2069 _floppy = current_type[drive];
2070}
2071
2072/*
2073 * formatting support.
2074 * ===================
2075 */
2076static void format_interrupt(void)
2077{
2078 switch (interpret_errors()) {
2079 case 1:
2080 cont->error();
2081 case 2:
2082 break;
2083 case 0:
2084 cont->done(1);
2085 }
2086 cont->redo();
2087}
2088
Joe Perches48c8cee2010-03-10 15:20:45 -08002089#define FM_MODE(x, y) ((y) & ~(((x)->rate & 0x80) >> 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090#define CT(x) ((x) | 0xc0)
Joe Perches48c8cee2010-03-10 15:20:45 -08002091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092static void setup_format_params(int track)
2093{
Jesper Juhl06f748c2007-10-16 23:30:57 -07002094 int n;
2095 int il;
2096 int count;
2097 int head_shift;
2098 int track_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 struct fparm {
2100 unsigned char track, head, sect, size;
2101 } *here = (struct fparm *)floppy_track_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
2103 raw_cmd = &default_raw_cmd;
2104 raw_cmd->track = track;
2105
Joe Perches48c8cee2010-03-10 15:20:45 -08002106 raw_cmd->flags = (FD_RAW_WRITE | FD_RAW_INTR | FD_RAW_SPIN |
2107 FD_RAW_NEED_DISK | FD_RAW_NEED_SEEK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 raw_cmd->rate = _floppy->rate & 0x43;
2109 raw_cmd->cmd_count = NR_F;
2110 COMMAND = FM_MODE(_floppy, FD_FORMAT);
2111 DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, format_req.head);
2112 F_SIZECODE = FD_SIZECODE(_floppy);
2113 F_SECT_PER_TRACK = _floppy->sect << 2 >> F_SIZECODE;
2114 F_GAP = _floppy->fmt_gap;
2115 F_FILL = FD_FILL_BYTE;
2116
2117 raw_cmd->kernel_data = floppy_track_buffer;
2118 raw_cmd->length = 4 * F_SECT_PER_TRACK;
2119
Denis Efremov604206c2019-07-12 21:55:20 +03002120 if (!F_SECT_PER_TRACK)
2121 return;
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 /* allow for about 30ms for data transport per track */
2124 head_shift = (F_SECT_PER_TRACK + 5) / 6;
2125
2126 /* a ``cylinder'' is two tracks plus a little stepping time */
2127 track_shift = 2 * head_shift + 3;
2128
2129 /* position of logical sector 1 on this track */
2130 n = (track_shift * format_req.track + head_shift * format_req.head)
2131 % F_SECT_PER_TRACK;
2132
2133 /* determine interleave */
2134 il = 1;
2135 if (_floppy->fmt_gap < 0x22)
2136 il++;
2137
2138 /* initialize field */
2139 for (count = 0; count < F_SECT_PER_TRACK; ++count) {
2140 here[count].track = format_req.track;
2141 here[count].head = format_req.head;
2142 here[count].sect = 0;
2143 here[count].size = F_SIZECODE;
2144 }
2145 /* place logical sectors */
2146 for (count = 1; count <= F_SECT_PER_TRACK; ++count) {
2147 here[n].sect = count;
2148 n = (n + il) % F_SECT_PER_TRACK;
2149 if (here[n].sect) { /* sector busy, find next free sector */
2150 ++n;
2151 if (n >= F_SECT_PER_TRACK) {
2152 n -= F_SECT_PER_TRACK;
2153 while (here[n].sect)
2154 ++n;
2155 }
2156 }
2157 }
Keith Wansbrough9e491842008-09-22 14:57:17 -07002158 if (_floppy->stretch & FD_SECTBASEMASK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 for (count = 0; count < F_SECT_PER_TRACK; count++)
Keith Wansbrough9e491842008-09-22 14:57:17 -07002160 here[count].sect += FD_SECTBASE(_floppy) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 }
2162}
2163
2164static void redo_format(void)
2165{
2166 buffer_track = -1;
2167 setup_format_params(format_req.track << STRETCH(_floppy));
2168 floppy_start();
Joe Perchesded28632010-03-10 15:21:09 -08002169 debugt(__func__, "queue format request");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170}
2171
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002172static const struct cont_t format_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 .interrupt = format_interrupt,
2174 .redo = redo_format,
2175 .error = bad_flp_intr,
2176 .done = generic_done
2177};
2178
2179static int do_format(int drive, struct format_descr *tmp_format_req)
2180{
2181 int ret;
2182
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01002183 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08002184 return -EINTR;
2185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 set_floppy(drive);
2187 if (!_floppy ||
2188 _floppy->track > DP->tracks ||
2189 tmp_format_req->track >= _floppy->track ||
2190 tmp_format_req->head >= _floppy->head ||
2191 (_floppy->sect << 2) % (1 << FD_SIZECODE(_floppy)) ||
2192 !_floppy->fmt_gap) {
2193 process_fd_request();
2194 return -EINVAL;
2195 }
2196 format_req = *tmp_format_req;
2197 format_errors = 0;
2198 cont = &format_cont;
2199 errors = &format_errors;
Joe Perches74f63f42010-03-10 15:20:58 -08002200 ret = wait_til_done(redo_format, true);
Joe Perches55eee802010-03-10 15:20:57 -08002201 if (ret == -EINTR)
2202 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 process_fd_request();
2204 return ret;
2205}
2206
2207/*
2208 * Buffer read/write and support
2209 * =============================
2210 */
2211
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002212static void floppy_end_request(struct request *req, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213{
2214 unsigned int nr_sectors = current_count_sectors;
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002215 unsigned int drive = (unsigned long)req->rq_disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216
2217 /* current_count_sectors can be zero if transfer failed */
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002218 if (error)
Tejun Heo83096eb2009-05-07 22:24:39 +09002219 nr_sectors = blk_rq_cur_sectors(req);
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002220 if (__blk_end_request(req, error, nr_sectors << 9))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 return;
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 */
2258 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002259 floppy_end_request(req, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 spin_unlock_irqrestore(q->queue_lock, flags);
2261 } 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 }
2272 spin_lock_irqsave(q->queue_lock, flags);
Kiyoshi Ueda1c5093b2008-01-28 10:36:21 +01002273 floppy_end_request(req, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 spin_unlock_irqrestore(q->queue_lock, flags);
2275 }
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 +02002801/*
2802 * Round-robin between our available drives, doing one request from each
2803 */
2804static int set_next_request(void)
2805{
2806 struct request_queue *q;
2807 int old_pos = fdc_queue;
2808
2809 do {
2810 q = disks[fdc_queue]->queue;
2811 if (++fdc_queue == N_DRIVE)
2812 fdc_queue = 0;
2813 if (q) {
2814 current_req = blk_fetch_request(q);
2815 if (current_req)
2816 break;
2817 }
2818 } while (fdc_queue != old_pos);
2819
2820 return current_req != NULL;
2821}
2822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823static void redo_fd_request(void)
2824{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 int drive;
2826 int tmp;
2827
2828 lastredo = jiffies;
2829 if (current_drive < N_DRIVE)
2830 floppy_off(current_drive);
2831
Joe Perches0da31322010-03-10 15:21:03 -08002832do_request:
2833 if (!current_req) {
Jens Axboe48821182010-09-22 09:32:36 +02002834 int pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Jens Axboe48821182010-09-22 09:32:36 +02002836 spin_lock_irq(&floppy_lock);
2837 pending = set_next_request();
2838 spin_unlock_irq(&floppy_lock);
Jens Axboe48821182010-09-22 09:32:36 +02002839 if (!pending) {
Joe Perches0da31322010-03-10 15:21:03 -08002840 do_floppy = NULL;
2841 unlock_fdc();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 }
Joe Perches0da31322010-03-10 15:21:03 -08002845 drive = (long)current_req->rq_disk->private_data;
2846 set_fdc(drive);
Joe Perches73507e62010-03-10 15:21:03 -08002847 reschedule_timeout(current_reqD, "redo fd request");
Joe Perches0da31322010-03-10 15:21:03 -08002848
2849 set_floppy(drive);
2850 raw_cmd = &default_raw_cmd;
2851 raw_cmd->flags = 0;
2852 if (start_motor(redo_fd_request))
2853 return;
2854
2855 disk_change(current_drive);
2856 if (test_bit(current_drive, &fake_change) ||
2857 test_bit(FD_DISK_CHANGED_BIT, &DRS->flags)) {
2858 DPRINT("disk absent or changed during operation\n");
2859 request_done(0);
2860 goto do_request;
2861 }
2862 if (!_floppy) { /* Autodetection */
2863 if (!probing) {
2864 DRS->probed_format = 0;
2865 if (next_valid_format()) {
2866 DPRINT("no autodetectable formats\n");
2867 _floppy = NULL;
2868 request_done(0);
2869 goto do_request;
2870 }
2871 }
2872 probing = 1;
2873 _floppy = floppy_type + DP->autodetect[DRS->probed_format];
2874 } else
2875 probing = 0;
2876 errors = &(current_req->errors);
2877 tmp = make_raw_rw_request();
2878 if (tmp < 2) {
2879 request_done(tmp);
2880 goto do_request;
2881 }
2882
2883 if (test_bit(FD_NEED_TWADDLE_BIT, &DRS->flags))
2884 twaddle();
2885 schedule_bh(floppy_start);
Joe Perchesded28632010-03-10 15:21:09 -08002886 debugt(__func__, "queue fd request");
Joe Perches0da31322010-03-10 15:21:03 -08002887 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002890static const struct cont_t rw_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 .interrupt = rw_interrupt,
2892 .redo = redo_fd_request,
2893 .error = bad_flp_intr,
2894 .done = request_done
2895};
2896
2897static void process_fd_request(void)
2898{
2899 cont = &rw_cont;
2900 schedule_bh(redo_fd_request);
2901}
2902
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08002903static void do_fd_request(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002905 if (WARN(max_buffer_sectors == 0,
2906 "VFS: %s called on non-open device\n", __func__))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002909 if (WARN(atomic_read(&usage_count) == 0,
Jens Axboe59533162013-05-23 12:25:08 +02002910 "warning: usage count=0, current_req=%p sect=%ld type=%x flags=%llx\n",
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002911 current_req, (long)blk_rq_pos(current_req), current_req->cmd_type,
Jens Axboe59533162013-05-23 12:25:08 +02002912 (unsigned long long) current_req->cmd_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 return;
Stephen Hemminger01b6b672010-06-15 13:21:11 +02002914
Jiri Kosina070ad7e2012-05-18 13:50:25 +02002915 if (test_and_set_bit(0, &fdc_busy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 /* fdc busy, this new request will be treated when the
2917 current one is done */
Joe Perches275176b2010-03-10 15:21:06 -08002918 is_alive(__func__, "old request running");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 return;
2920 }
Jiri Kosina070ad7e2012-05-18 13:50:25 +02002921 command_status = FD_COMMAND_NONE;
2922 __reschedule_timeout(MAXTIMEOUT, "fd_request");
2923 set_fdc(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 process_fd_request();
Joe Perches275176b2010-03-10 15:21:06 -08002925 is_alive(__func__, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926}
2927
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002928static const struct cont_t poll_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 .interrupt = success_and_wakeup,
2930 .redo = floppy_ready,
2931 .error = generic_failure,
2932 .done = generic_done
2933};
2934
Joe Perches74f63f42010-03-10 15:20:58 -08002935static int poll_drive(bool interruptible, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 /* no auto-sense, just clear dcl */
2938 raw_cmd = &default_raw_cmd;
2939 raw_cmd->flags = flag;
2940 raw_cmd->track = 0;
2941 raw_cmd->cmd_count = 0;
2942 cont = &poll_cont;
Joe Perches87f530d2010-03-10 15:20:54 -08002943 debug_dcl(DP->flags, "setting NEWCHANGE in poll_drive\n");
Joe Perchese0298532010-03-10 15:20:55 -08002944 set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
Joe Perches55eee802010-03-10 15:20:57 -08002945
2946 return wait_til_done(floppy_ready, interruptible);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947}
2948
2949/*
2950 * User triggered reset
2951 * ====================
2952 */
2953
2954static void reset_intr(void)
2955{
Joe Perchesb46df352010-03-10 15:20:46 -08002956 pr_info("weird, reset interrupt called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957}
2958
Stephen Hemminger3b06c212010-07-20 20:09:00 -06002959static const struct cont_t reset_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 .interrupt = reset_intr,
2961 .redo = success_and_wakeup,
2962 .error = generic_failure,
2963 .done = generic_done
2964};
2965
Joe Perches74f63f42010-03-10 15:20:58 -08002966static int user_reset_fdc(int drive, int arg, bool interruptible)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967{
2968 int ret;
2969
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01002970 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08002971 return -EINTR;
2972
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 if (arg == FD_RESET_ALWAYS)
2974 FDCS->reset = 1;
2975 if (FDCS->reset) {
2976 cont = &reset_cont;
Joe Perches55eee802010-03-10 15:20:57 -08002977 ret = wait_til_done(reset_fdc, interruptible);
2978 if (ret == -EINTR)
2979 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 }
2981 process_fd_request();
Joe Perches52a0d612010-03-10 15:20:53 -08002982 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983}
2984
2985/*
2986 * Misc Ioctl's and support
2987 * ========================
2988 */
2989static inline int fd_copyout(void __user *param, const void *address,
2990 unsigned long size)
2991{
2992 return copy_to_user(param, address, size) ? -EFAULT : 0;
2993}
2994
Joe Perches48c8cee2010-03-10 15:20:45 -08002995static inline int fd_copyin(void __user *param, void *address,
2996 unsigned long size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997{
2998 return copy_from_user(address, param, size) ? -EFAULT : 0;
2999}
3000
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003001static const char *drive_name(int type, int drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002{
3003 struct floppy_struct *floppy;
3004
3005 if (type)
3006 floppy = floppy_type + type;
3007 else {
3008 if (UDP->native_format)
3009 floppy = floppy_type + UDP->native_format;
3010 else
3011 return "(null)";
3012 }
3013 if (floppy->name)
3014 return floppy->name;
3015 else
3016 return "(null)";
3017}
3018
3019/* raw commands */
3020static void raw_cmd_done(int flag)
3021{
3022 int i;
3023
3024 if (!flag) {
3025 raw_cmd->flags |= FD_RAW_FAILURE;
3026 raw_cmd->flags |= FD_RAW_HARDFAILURE;
3027 } else {
3028 raw_cmd->reply_count = inr;
3029 if (raw_cmd->reply_count > MAX_REPLIES)
3030 raw_cmd->reply_count = 0;
3031 for (i = 0; i < raw_cmd->reply_count; i++)
3032 raw_cmd->reply[i] = reply_buffer[i];
3033
3034 if (raw_cmd->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
3035 unsigned long flags;
3036 flags = claim_dma_lock();
3037 raw_cmd->length = fd_get_dma_residue();
3038 release_dma_lock(flags);
3039 }
3040
3041 if ((raw_cmd->flags & FD_RAW_SOFTFAILURE) &&
3042 (!raw_cmd->reply_count || (raw_cmd->reply[0] & 0xc0)))
3043 raw_cmd->flags |= FD_RAW_FAILURE;
3044
3045 if (disk_change(current_drive))
3046 raw_cmd->flags |= FD_RAW_DISK_CHANGE;
3047 else
3048 raw_cmd->flags &= ~FD_RAW_DISK_CHANGE;
3049 if (raw_cmd->flags & FD_RAW_NO_MOTOR_AFTER)
3050 motor_off_callback(current_drive);
3051
3052 if (raw_cmd->next &&
3053 (!(raw_cmd->flags & FD_RAW_FAILURE) ||
3054 !(raw_cmd->flags & FD_RAW_STOP_IF_FAILURE)) &&
3055 ((raw_cmd->flags & FD_RAW_FAILURE) ||
3056 !(raw_cmd->flags & FD_RAW_STOP_IF_SUCCESS))) {
3057 raw_cmd = raw_cmd->next;
3058 return;
3059 }
3060 }
3061 generic_done(flag);
3062}
3063
Stephen Hemminger3b06c212010-07-20 20:09:00 -06003064static const struct cont_t raw_cmd_cont = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 .interrupt = success_and_wakeup,
3066 .redo = floppy_start,
3067 .error = generic_failure,
3068 .done = raw_cmd_done
3069};
3070
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003071static int raw_cmd_copyout(int cmd, void __user *param,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 struct floppy_raw_cmd *ptr)
3073{
3074 int ret;
3075
3076 while (ptr) {
Matthew Daley2145e152014-04-28 19:05:21 +12003077 struct floppy_raw_cmd cmd = *ptr;
3078 cmd.next = NULL;
3079 cmd.kernel_data = NULL;
3080 ret = copy_to_user(param, &cmd, sizeof(cmd));
Joe Perches86b12b42010-03-10 15:20:56 -08003081 if (ret)
3082 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 param += sizeof(struct floppy_raw_cmd);
3084 if ((ptr->flags & FD_RAW_READ) && ptr->buffer_length) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08003085 if (ptr->length >= 0 &&
3086 ptr->length <= ptr->buffer_length) {
3087 long length = ptr->buffer_length - ptr->length;
Joe Perches4575b552010-03-10 15:20:55 -08003088 ret = fd_copyout(ptr->data, ptr->kernel_data,
3089 length);
3090 if (ret)
3091 return ret;
Joe Perchesbb57f0c62010-03-10 15:20:50 -08003092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 }
3094 ptr = ptr->next;
3095 }
Joe Perches7f252712010-03-10 15:21:08 -08003096
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 return 0;
3098}
3099
3100static void raw_cmd_free(struct floppy_raw_cmd **ptr)
3101{
Jesper Juhl06f748c2007-10-16 23:30:57 -07003102 struct floppy_raw_cmd *next;
3103 struct floppy_raw_cmd *this;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
3105 this = *ptr;
3106 *ptr = NULL;
3107 while (this) {
3108 if (this->buffer_length) {
3109 fd_dma_mem_free((unsigned long)this->kernel_data,
3110 this->buffer_length);
3111 this->buffer_length = 0;
3112 }
3113 next = this->next;
3114 kfree(this);
3115 this = next;
3116 }
3117}
3118
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003119static int raw_cmd_copyin(int cmd, void __user *param,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 struct floppy_raw_cmd **rcmd)
3121{
3122 struct floppy_raw_cmd *ptr;
3123 int ret;
3124 int i;
3125
3126 *rcmd = NULL;
Joe Perches7f252712010-03-10 15:21:08 -08003127
3128loop:
3129 ptr = kmalloc(sizeof(struct floppy_raw_cmd), GFP_USER);
3130 if (!ptr)
3131 return -ENOMEM;
3132 *rcmd = ptr;
3133 ret = copy_from_user(ptr, param, sizeof(*ptr));
Joe Perches7f252712010-03-10 15:21:08 -08003134 ptr->next = NULL;
3135 ptr->buffer_length = 0;
Matthew Daleyef87dbe2014-04-28 19:05:20 +12003136 ptr->kernel_data = NULL;
3137 if (ret)
3138 return -EFAULT;
Joe Perches7f252712010-03-10 15:21:08 -08003139 param += sizeof(struct floppy_raw_cmd);
3140 if (ptr->cmd_count > 33)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 /* the command may now also take up the space
3142 * initially intended for the reply & the
3143 * reply count. Needed for long 82078 commands
3144 * such as RESTORE, which takes ... 17 command
3145 * bytes. Murphy's law #137: When you reserve
3146 * 16 bytes for a structure, you'll one day
3147 * discover that you really need 17...
3148 */
Joe Perches7f252712010-03-10 15:21:08 -08003149 return -EINVAL;
3150
3151 for (i = 0; i < 16; i++)
3152 ptr->reply[i] = 0;
3153 ptr->resultcode = 0;
Joe Perches7f252712010-03-10 15:21:08 -08003154
3155 if (ptr->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
3156 if (ptr->length <= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 return -EINVAL;
Joe Perches7f252712010-03-10 15:21:08 -08003158 ptr->kernel_data = (char *)fd_dma_mem_alloc(ptr->length);
3159 fallback_on_nodma_alloc(&ptr->kernel_data, ptr->length);
3160 if (!ptr->kernel_data)
3161 return -ENOMEM;
3162 ptr->buffer_length = ptr->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 }
Joe Perches7f252712010-03-10 15:21:08 -08003164 if (ptr->flags & FD_RAW_WRITE) {
3165 ret = fd_copyin(ptr->data, ptr->kernel_data, ptr->length);
3166 if (ret)
3167 return ret;
3168 }
3169
3170 if (ptr->flags & FD_RAW_MORE) {
3171 rcmd = &(ptr->next);
3172 ptr->rate &= 0x43;
3173 goto loop;
3174 }
3175
3176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177}
3178
3179static int raw_cmd_ioctl(int cmd, void __user *param)
3180{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 struct floppy_raw_cmd *my_raw_cmd;
Jesper Juhl06f748c2007-10-16 23:30:57 -07003182 int drive;
3183 int ret2;
3184 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
3186 if (FDCS->rawcmd <= 1)
3187 FDCS->rawcmd = 1;
3188 for (drive = 0; drive < N_DRIVE; drive++) {
3189 if (FDC(drive) != fdc)
3190 continue;
3191 if (drive == current_drive) {
3192 if (UDRS->fd_ref > 1) {
3193 FDCS->rawcmd = 2;
3194 break;
3195 }
3196 } else if (UDRS->fd_ref) {
3197 FDCS->rawcmd = 2;
3198 break;
3199 }
3200 }
3201
3202 if (FDCS->reset)
3203 return -EIO;
3204
3205 ret = raw_cmd_copyin(cmd, param, &my_raw_cmd);
3206 if (ret) {
3207 raw_cmd_free(&my_raw_cmd);
3208 return ret;
3209 }
3210
3211 raw_cmd = my_raw_cmd;
3212 cont = &raw_cmd_cont;
Joe Perches74f63f42010-03-10 15:20:58 -08003213 ret = wait_til_done(floppy_start, true);
Joe Perches87f530d2010-03-10 15:20:54 -08003214 debug_dcl(DP->flags, "calling disk change from raw_cmd ioctl\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
3216 if (ret != -EINTR && FDCS->reset)
3217 ret = -EIO;
3218
3219 DRS->track = NO_TRACK;
3220
3221 ret2 = raw_cmd_copyout(cmd, param, my_raw_cmd);
3222 if (!ret)
3223 ret = ret2;
3224 raw_cmd_free(&my_raw_cmd);
3225 return ret;
3226}
3227
3228static int invalidate_drive(struct block_device *bdev)
3229{
3230 /* invalidate the buffer track to force a reread */
3231 set_bit((long)bdev->bd_disk->private_data, &fake_change);
3232 process_fd_request();
3233 check_disk_change(bdev);
3234 return 0;
3235}
3236
Stephen Hemmingerbe7a12b2010-06-15 13:21:11 +02003237static int set_geometry(unsigned int cmd, struct floppy_struct *g,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 int drive, int type, struct block_device *bdev)
3239{
3240 int cnt;
3241
3242 /* sanity checking for parameters. */
Denis Efremov1fdefbb2019-07-12 21:55:23 +03003243 if ((int)g->sect <= 0 ||
3244 (int)g->head <= 0 ||
3245 /* check for overflow in max_sector */
3246 (int)(g->sect * g->head) <= 0 ||
Denis Efremov604206c2019-07-12 21:55:20 +03003247 /* check for zero in F_SECT_PER_TRACK */
3248 (unsigned char)((g->sect << 2) >> FD_SIZECODE(g)) == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 g->track <= 0 || g->track > UDP->tracks >> STRETCH(g) ||
3250 /* check if reserved bits are set */
Keith Wansbrough9e491842008-09-22 14:57:17 -07003251 (g->stretch & ~(FD_STRETCH | FD_SWAPSIDES | FD_SECTBASEMASK)) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 return -EINVAL;
3253 if (type) {
3254 if (!capable(CAP_SYS_ADMIN))
3255 return -EPERM;
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003256 mutex_lock(&open_lock);
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003257 if (lock_fdc(drive)) {
Jiri Slaby8516a502009-06-30 11:41:44 -07003258 mutex_unlock(&open_lock);
3259 return -EINTR;
3260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 floppy_type[type] = *g;
3262 floppy_type[type].name = "user format";
3263 for (cnt = type << 2; cnt < (type << 2) + 4; cnt++)
3264 floppy_sizes[cnt] = floppy_sizes[cnt + 0x80] =
3265 floppy_type[type].size + 1;
3266 process_fd_request();
3267 for (cnt = 0; cnt < N_DRIVE; cnt++) {
3268 struct block_device *bdev = opened_bdev[cnt];
3269 if (!bdev || ITYPE(drive_state[cnt].fd_device) != type)
3270 continue;
NeilBrown93b270f2011-02-24 17:25:47 +11003271 __invalidate_device(bdev, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 }
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003273 mutex_unlock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 } else {
3275 int oldStretch;
Joe Perches52a0d612010-03-10 15:20:53 -08003276
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003277 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003278 return -EINTR;
Joe Perches4575b552010-03-10 15:20:55 -08003279 if (cmd != FDDEFPRM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 /* notice a disk change immediately, else
3281 * we lose our settings immediately*/
Joe Perches74f63f42010-03-10 15:20:58 -08003282 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003283 return -EINTR;
3284 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 oldStretch = g->stretch;
3286 user_params[drive] = *g;
3287 if (buffer_drive == drive)
3288 SUPBOUND(buffer_max, user_params[drive].sect);
3289 current_type[drive] = &user_params[drive];
3290 floppy_sizes[drive] = user_params[drive].size;
3291 if (cmd == FDDEFPRM)
3292 DRS->keep_data = -1;
3293 else
3294 DRS->keep_data = 1;
3295 /* invalidation. Invalidate only when needed, i.e.
3296 * when there are already sectors in the buffer cache
3297 * whose number will change. This is useful, because
3298 * mtools often changes the geometry of the disk after
3299 * looking at the boot block */
3300 if (DRS->maxblock > user_params[drive].sect ||
3301 DRS->maxtrack ||
3302 ((user_params[drive].sect ^ oldStretch) &
Keith Wansbrough9e491842008-09-22 14:57:17 -07003303 (FD_SWAPSIDES | FD_SECTBASEMASK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 invalidate_drive(bdev);
3305 else
3306 process_fd_request();
3307 }
3308 return 0;
3309}
3310
3311/* handle obsolete ioctl's */
Stephen Hemminger21af5442010-06-15 13:21:11 +02003312static unsigned int ioctl_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 FDCLRPRM,
3314 FDSETPRM,
3315 FDDEFPRM,
3316 FDGETPRM,
3317 FDMSGON,
3318 FDMSGOFF,
3319 FDFMTBEG,
3320 FDFMTTRK,
3321 FDFMTEND,
3322 FDSETEMSGTRESH,
3323 FDFLUSH,
3324 FDSETMAXERRS,
3325 FDGETMAXERRS,
3326 FDGETDRVTYP,
3327 FDSETDRVPRM,
3328 FDGETDRVPRM,
3329 FDGETDRVSTAT,
3330 FDPOLLDRVSTAT,
3331 FDRESET,
3332 FDGETFDCSTAT,
3333 FDWERRORCLR,
3334 FDWERRORGET,
3335 FDRAWCMD,
3336 FDEJECT,
3337 FDTWADDLE
3338};
3339
Stephen Hemminger21af5442010-06-15 13:21:11 +02003340static int normalize_ioctl(unsigned int *cmd, int *size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341{
3342 int i;
3343
3344 for (i = 0; i < ARRAY_SIZE(ioctl_table); i++) {
3345 if ((*cmd & 0xffff) == (ioctl_table[i] & 0xffff)) {
3346 *size = _IOC_SIZE(*cmd);
3347 *cmd = ioctl_table[i];
3348 if (*size > _IOC_SIZE(*cmd)) {
Joe Perchesb46df352010-03-10 15:20:46 -08003349 pr_info("ioctl not yet supported\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 return -EFAULT;
3351 }
3352 return 0;
3353 }
3354 }
3355 return -EINVAL;
3356}
3357
3358static int get_floppy_geometry(int drive, int type, struct floppy_struct **g)
3359{
3360 if (type)
3361 *g = &floppy_type[type];
3362 else {
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003363 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003364 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003365 if (poll_drive(false, 0) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003366 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 process_fd_request();
3368 *g = current_type[drive];
3369 }
3370 if (!*g)
3371 return -ENODEV;
3372 return 0;
3373}
3374
Christoph Hellwiga885c8c2006-01-08 01:02:50 -08003375static int fd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
3376{
3377 int drive = (long)bdev->bd_disk->private_data;
3378 int type = ITYPE(drive_state[drive].fd_device);
3379 struct floppy_struct *g;
3380 int ret;
3381
3382 ret = get_floppy_geometry(drive, type, &g);
3383 if (ret)
3384 return ret;
3385
3386 geo->heads = g->head;
3387 geo->sectors = g->sect;
3388 geo->cylinders = g->track;
3389 return 0;
3390}
3391
Denis Efremov5d6d6392019-07-12 21:55:22 +03003392static bool valid_floppy_drive_params(const short autodetect[8],
3393 int native_format)
Denis Efremov93f89552019-07-12 21:55:21 +03003394{
3395 size_t floppy_type_size = ARRAY_SIZE(floppy_type);
3396 size_t i = 0;
3397
3398 for (i = 0; i < 8; ++i) {
3399 if (autodetect[i] < 0 ||
3400 autodetect[i] >= floppy_type_size)
3401 return false;
3402 }
3403
Denis Efremov5d6d6392019-07-12 21:55:22 +03003404 if (native_format < 0 || native_format >= floppy_type_size)
3405 return false;
3406
Denis Efremov93f89552019-07-12 21:55:21 +03003407 return true;
3408}
3409
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003410static int fd_locked_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 unsigned long param)
3412{
Al Viroa4af9b42008-03-02 09:27:55 -05003413 int drive = (long)bdev->bd_disk->private_data;
Jesper Juhl06f748c2007-10-16 23:30:57 -07003414 int type = ITYPE(UDRS->fd_device);
3415 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 int ret;
3417 int size;
3418 union inparam {
3419 struct floppy_struct g; /* geometry */
3420 struct format_descr f;
3421 struct floppy_max_errors max_errors;
3422 struct floppy_drive_params dp;
3423 } inparam; /* parameters coming from user space */
Joe Perches724ee622010-03-10 15:21:11 -08003424 const void *outparam; /* parameters passed back to user space */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425
3426 /* convert compatibility eject ioctls into floppy eject ioctl.
3427 * We do this in order to provide a means to eject floppy disks before
3428 * installing the new fdutils package */
3429 if (cmd == CDROMEJECT || /* CD-ROM eject */
Joe Perchesa81ee542010-03-10 15:20:46 -08003430 cmd == 0x6470) { /* SunOS floppy eject */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 DPRINT("obsolete eject ioctl\n");
3432 DPRINT("please use floppycontrol --eject\n");
3433 cmd = FDEJECT;
3434 }
3435
Joe Perchesa81ee542010-03-10 15:20:46 -08003436 if (!((cmd & 0xff00) == 0x0200))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 return -EINVAL;
3438
Joe Perchesa81ee542010-03-10 15:20:46 -08003439 /* convert the old style command into a new style command */
Joe Perches4575b552010-03-10 15:20:55 -08003440 ret = normalize_ioctl(&cmd, &size);
3441 if (ret)
3442 return ret;
Joe Perchesa81ee542010-03-10 15:20:46 -08003443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 /* permission checks */
Joe Perches0aad92c2010-03-10 15:21:10 -08003445 if (((cmd & 0x40) && !(mode & (FMODE_WRITE | FMODE_WRITE_IOCTL))) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 ((cmd & 0x80) && !capable(CAP_SYS_ADMIN)))
3447 return -EPERM;
3448
Arjan van de Ven2886a8b2009-12-14 18:00:11 -08003449 if (WARN_ON(size < 0 || size > sizeof(inparam)))
3450 return -EINVAL;
3451
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 /* copyin */
Joe Perchesb87c9e02010-03-10 15:20:50 -08003453 memset(&inparam, 0, sizeof(inparam));
Joe Perches4575b552010-03-10 15:20:55 -08003454 if (_IOC_DIR(cmd) & _IOC_WRITE) {
3455 ret = fd_copyin((void __user *)param, &inparam, size);
3456 if (ret)
3457 return ret;
3458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
Joe Perchesda273652010-03-10 15:20:52 -08003460 switch (cmd) {
3461 case FDEJECT:
3462 if (UDRS->fd_ref != 1)
3463 /* somebody else has this drive open */
3464 return -EBUSY;
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003465 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003466 return -EINTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467
Joe Perchesda273652010-03-10 15:20:52 -08003468 /* do the actual eject. Fails on
3469 * non-Sparc architectures */
3470 ret = fd_eject(UNIT(drive));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
Joe Perchese0298532010-03-10 15:20:55 -08003472 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
3473 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Joe Perchesda273652010-03-10 15:20:52 -08003474 process_fd_request();
3475 return ret;
3476 case FDCLRPRM:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003477 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003478 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003479 current_type[drive] = NULL;
3480 floppy_sizes[drive] = MAX_DISK_SIZE << 1;
3481 UDRS->keep_data = 0;
3482 return invalidate_drive(bdev);
3483 case FDSETPRM:
3484 case FDDEFPRM:
3485 return set_geometry(cmd, &inparam.g, drive, type, bdev);
3486 case FDGETPRM:
Joe Perches4575b552010-03-10 15:20:55 -08003487 ret = get_floppy_geometry(drive, type,
Joe Perches724ee622010-03-10 15:21:11 -08003488 (struct floppy_struct **)&outparam);
Joe Perches4575b552010-03-10 15:20:55 -08003489 if (ret)
3490 return ret;
Andy Whitcroft3da4db12018-09-20 09:09:48 -06003491 memcpy(&inparam.g, outparam,
3492 offsetof(struct floppy_struct, name));
3493 outparam = &inparam.g;
Joe Perchesda273652010-03-10 15:20:52 -08003494 break;
3495 case FDMSGON:
3496 UDP->flags |= FTD_MSG;
3497 return 0;
3498 case FDMSGOFF:
3499 UDP->flags &= ~FTD_MSG;
3500 return 0;
3501 case FDFMTBEG:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003502 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003503 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003504 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003505 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003506 ret = UDRS->flags;
3507 process_fd_request();
3508 if (ret & FD_VERIFY)
3509 return -ENODEV;
3510 if (!(ret & FD_DISK_WRITABLE))
3511 return -EROFS;
3512 return 0;
3513 case FDFMTTRK:
3514 if (UDRS->fd_ref != 1)
3515 return -EBUSY;
3516 return do_format(drive, &inparam.f);
3517 case FDFMTEND:
3518 case FDFLUSH:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003519 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003520 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003521 return invalidate_drive(bdev);
3522 case FDSETEMSGTRESH:
3523 UDP->max_errors.reporting = (unsigned short)(param & 0x0f);
3524 return 0;
3525 case FDGETMAXERRS:
Joe Perches724ee622010-03-10 15:21:11 -08003526 outparam = &UDP->max_errors;
Joe Perchesda273652010-03-10 15:20:52 -08003527 break;
3528 case FDSETMAXERRS:
3529 UDP->max_errors = inparam.max_errors;
3530 break;
3531 case FDGETDRVTYP:
3532 outparam = drive_name(type, drive);
Joe Perches724ee622010-03-10 15:21:11 -08003533 SUPBOUND(size, strlen((const char *)outparam) + 1);
Joe Perchesda273652010-03-10 15:20:52 -08003534 break;
3535 case FDSETDRVPRM:
Denis Efremov5d6d6392019-07-12 21:55:22 +03003536 if (!valid_floppy_drive_params(inparam.dp.autodetect,
3537 inparam.dp.native_format))
Denis Efremov93f89552019-07-12 21:55:21 +03003538 return -EINVAL;
Joe Perchesda273652010-03-10 15:20:52 -08003539 *UDP = inparam.dp;
3540 break;
3541 case FDGETDRVPRM:
Joe Perches724ee622010-03-10 15:21:11 -08003542 outparam = UDP;
Joe Perchesda273652010-03-10 15:20:52 -08003543 break;
3544 case FDPOLLDRVSTAT:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003545 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003546 return -EINTR;
Joe Perches74f63f42010-03-10 15:20:58 -08003547 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
Joe Perches4575b552010-03-10 15:20:55 -08003548 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003549 process_fd_request();
3550 /* fall through */
3551 case FDGETDRVSTAT:
Joe Perches724ee622010-03-10 15:21:11 -08003552 outparam = UDRS;
Joe Perchesda273652010-03-10 15:20:52 -08003553 break;
3554 case FDRESET:
Joe Perches74f63f42010-03-10 15:20:58 -08003555 return user_reset_fdc(drive, (int)param, true);
Joe Perchesda273652010-03-10 15:20:52 -08003556 case FDGETFDCSTAT:
Joe Perches724ee622010-03-10 15:21:11 -08003557 outparam = UFDCS;
Joe Perchesda273652010-03-10 15:20:52 -08003558 break;
3559 case FDWERRORCLR:
3560 memset(UDRWE, 0, sizeof(*UDRWE));
3561 return 0;
3562 case FDWERRORGET:
Joe Perches724ee622010-03-10 15:21:11 -08003563 outparam = UDRWE;
Joe Perchesda273652010-03-10 15:20:52 -08003564 break;
3565 case FDRAWCMD:
3566 if (type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 return -EINVAL;
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003568 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003569 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003570 set_floppy(drive);
Joe Perches4575b552010-03-10 15:20:55 -08003571 i = raw_cmd_ioctl(cmd, (void __user *)param);
3572 if (i == -EINTR)
3573 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003574 process_fd_request();
3575 return i;
3576 case FDTWADDLE:
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01003577 if (lock_fdc(drive))
Joe Perches52a0d612010-03-10 15:20:53 -08003578 return -EINTR;
Joe Perchesda273652010-03-10 15:20:52 -08003579 twaddle();
3580 process_fd_request();
3581 return 0;
3582 default:
3583 return -EINVAL;
3584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
3586 if (_IOC_DIR(cmd) & _IOC_READ)
3587 return fd_copyout((void __user *)param, outparam, size);
Joe Perchesda273652010-03-10 15:20:52 -08003588
3589 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590}
3591
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003592static int fd_ioctl(struct block_device *bdev, fmode_t mode,
3593 unsigned int cmd, unsigned long param)
3594{
3595 int ret;
3596
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003597 mutex_lock(&floppy_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003598 ret = fd_locked_ioctl(bdev, mode, cmd, param);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003599 mutex_unlock(&floppy_mutex);
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02003600
3601 return ret;
3602}
3603
Al Viro06f9e7b2017-06-27 15:47:56 -04003604#ifdef CONFIG_COMPAT
3605
3606struct compat_floppy_drive_params {
3607 char cmos;
3608 compat_ulong_t max_dtr;
3609 compat_ulong_t hlt;
3610 compat_ulong_t hut;
3611 compat_ulong_t srt;
3612 compat_ulong_t spinup;
3613 compat_ulong_t spindown;
3614 unsigned char spindown_offset;
3615 unsigned char select_delay;
3616 unsigned char rps;
3617 unsigned char tracks;
3618 compat_ulong_t timeout;
3619 unsigned char interleave_sect;
3620 struct floppy_max_errors max_errors;
3621 char flags;
3622 char read_track;
3623 short autodetect[8];
3624 compat_int_t checkfreq;
3625 compat_int_t native_format;
3626};
3627
3628struct compat_floppy_drive_struct {
3629 signed char flags;
3630 compat_ulong_t spinup_date;
3631 compat_ulong_t select_date;
3632 compat_ulong_t first_read_date;
3633 short probed_format;
3634 short track;
3635 short maxblock;
3636 short maxtrack;
3637 compat_int_t generation;
3638 compat_int_t keep_data;
3639 compat_int_t fd_ref;
3640 compat_int_t fd_device;
3641 compat_int_t last_checked;
3642 compat_caddr_t dmabuf;
3643 compat_int_t bufblocks;
3644};
3645
3646struct compat_floppy_fdc_state {
3647 compat_int_t spec1;
3648 compat_int_t spec2;
3649 compat_int_t dtr;
3650 unsigned char version;
3651 unsigned char dor;
3652 compat_ulong_t address;
3653 unsigned int rawcmd:2;
3654 unsigned int reset:1;
3655 unsigned int need_configure:1;
3656 unsigned int perp_mode:2;
3657 unsigned int has_fifo:1;
3658 unsigned int driver_version;
3659 unsigned char track[4];
3660};
3661
3662struct compat_floppy_write_errors {
3663 unsigned int write_errors;
3664 compat_ulong_t first_error_sector;
3665 compat_int_t first_error_generation;
3666 compat_ulong_t last_error_sector;
3667 compat_int_t last_error_generation;
3668 compat_uint_t badness;
3669};
3670
3671#define FDSETPRM32 _IOW(2, 0x42, struct compat_floppy_struct)
3672#define FDDEFPRM32 _IOW(2, 0x43, struct compat_floppy_struct)
3673#define FDSETDRVPRM32 _IOW(2, 0x90, struct compat_floppy_drive_params)
3674#define FDGETDRVPRM32 _IOR(2, 0x11, struct compat_floppy_drive_params)
3675#define FDGETDRVSTAT32 _IOR(2, 0x12, struct compat_floppy_drive_struct)
3676#define FDPOLLDRVSTAT32 _IOR(2, 0x13, struct compat_floppy_drive_struct)
3677#define FDGETFDCSTAT32 _IOR(2, 0x15, struct compat_floppy_fdc_state)
3678#define FDWERRORGET32 _IOR(2, 0x17, struct compat_floppy_write_errors)
3679
3680static int compat_set_geometry(struct block_device *bdev, fmode_t mode, unsigned int cmd,
3681 struct compat_floppy_struct __user *arg)
3682{
3683 struct floppy_struct v;
3684 int drive, type;
3685 int err;
3686
3687 BUILD_BUG_ON(offsetof(struct floppy_struct, name) !=
3688 offsetof(struct compat_floppy_struct, name));
3689
3690 if (!(mode & (FMODE_WRITE | FMODE_WRITE_IOCTL)))
3691 return -EPERM;
3692
3693 memset(&v, 0, sizeof(struct floppy_struct));
3694 if (copy_from_user(&v, arg, offsetof(struct floppy_struct, name)))
3695 return -EFAULT;
3696
3697 mutex_lock(&floppy_mutex);
3698 drive = (long)bdev->bd_disk->private_data;
3699 type = ITYPE(UDRS->fd_device);
3700 err = set_geometry(cmd == FDSETPRM32 ? FDSETPRM : FDDEFPRM,
3701 &v, drive, type, bdev);
3702 mutex_unlock(&floppy_mutex);
3703 return err;
3704}
3705
3706static int compat_get_prm(int drive,
3707 struct compat_floppy_struct __user *arg)
3708{
3709 struct compat_floppy_struct v;
3710 struct floppy_struct *p;
3711 int err;
3712
3713 memset(&v, 0, sizeof(v));
3714 mutex_lock(&floppy_mutex);
3715 err = get_floppy_geometry(drive, ITYPE(UDRS->fd_device), &p);
3716 if (err) {
3717 mutex_unlock(&floppy_mutex);
3718 return err;
3719 }
3720 memcpy(&v, p, offsetof(struct floppy_struct, name));
3721 mutex_unlock(&floppy_mutex);
3722 if (copy_to_user(arg, &v, sizeof(struct compat_floppy_struct)))
3723 return -EFAULT;
3724 return 0;
3725}
3726
3727static int compat_setdrvprm(int drive,
3728 struct compat_floppy_drive_params __user *arg)
3729{
3730 struct compat_floppy_drive_params v;
3731
3732 if (!capable(CAP_SYS_ADMIN))
3733 return -EPERM;
3734 if (copy_from_user(&v, arg, sizeof(struct compat_floppy_drive_params)))
3735 return -EFAULT;
Denis Efremov5d6d6392019-07-12 21:55:22 +03003736 if (!valid_floppy_drive_params(v.autodetect, v.native_format))
Denis Efremov93f89552019-07-12 21:55:21 +03003737 return -EINVAL;
Al Viro06f9e7b2017-06-27 15:47:56 -04003738 mutex_lock(&floppy_mutex);
3739 UDP->cmos = v.cmos;
3740 UDP->max_dtr = v.max_dtr;
3741 UDP->hlt = v.hlt;
3742 UDP->hut = v.hut;
3743 UDP->srt = v.srt;
3744 UDP->spinup = v.spinup;
3745 UDP->spindown = v.spindown;
3746 UDP->spindown_offset = v.spindown_offset;
3747 UDP->select_delay = v.select_delay;
3748 UDP->rps = v.rps;
3749 UDP->tracks = v.tracks;
3750 UDP->timeout = v.timeout;
3751 UDP->interleave_sect = v.interleave_sect;
3752 UDP->max_errors = v.max_errors;
3753 UDP->flags = v.flags;
3754 UDP->read_track = v.read_track;
3755 memcpy(UDP->autodetect, v.autodetect, sizeof(v.autodetect));
3756 UDP->checkfreq = v.checkfreq;
3757 UDP->native_format = v.native_format;
3758 mutex_unlock(&floppy_mutex);
3759 return 0;
3760}
3761
3762static int compat_getdrvprm(int drive,
3763 struct compat_floppy_drive_params __user *arg)
3764{
3765 struct compat_floppy_drive_params v;
3766
3767 memset(&v, 0, sizeof(struct compat_floppy_drive_params));
3768 mutex_lock(&floppy_mutex);
3769 v.cmos = UDP->cmos;
3770 v.max_dtr = UDP->max_dtr;
3771 v.hlt = UDP->hlt;
3772 v.hut = UDP->hut;
3773 v.srt = UDP->srt;
3774 v.spinup = UDP->spinup;
3775 v.spindown = UDP->spindown;
3776 v.spindown_offset = UDP->spindown_offset;
3777 v.select_delay = UDP->select_delay;
3778 v.rps = UDP->rps;
3779 v.tracks = UDP->tracks;
3780 v.timeout = UDP->timeout;
3781 v.interleave_sect = UDP->interleave_sect;
3782 v.max_errors = UDP->max_errors;
3783 v.flags = UDP->flags;
3784 v.read_track = UDP->read_track;
3785 memcpy(v.autodetect, UDP->autodetect, sizeof(v.autodetect));
3786 v.checkfreq = UDP->checkfreq;
3787 v.native_format = UDP->native_format;
3788 mutex_unlock(&floppy_mutex);
3789
Jann Horne07fb662019-03-26 23:03:48 +01003790 if (copy_to_user(arg, &v, sizeof(struct compat_floppy_drive_params)))
Al Viro06f9e7b2017-06-27 15:47:56 -04003791 return -EFAULT;
3792 return 0;
3793}
3794
3795static int compat_getdrvstat(int drive, bool poll,
3796 struct compat_floppy_drive_struct __user *arg)
3797{
3798 struct compat_floppy_drive_struct v;
3799
3800 memset(&v, 0, sizeof(struct compat_floppy_drive_struct));
3801 mutex_lock(&floppy_mutex);
3802
3803 if (poll) {
3804 if (lock_fdc(drive))
3805 goto Eintr;
3806 if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
3807 goto Eintr;
3808 process_fd_request();
3809 }
3810 v.spinup_date = UDRS->spinup_date;
3811 v.select_date = UDRS->select_date;
3812 v.first_read_date = UDRS->first_read_date;
3813 v.probed_format = UDRS->probed_format;
3814 v.track = UDRS->track;
3815 v.maxblock = UDRS->maxblock;
3816 v.maxtrack = UDRS->maxtrack;
3817 v.generation = UDRS->generation;
3818 v.keep_data = UDRS->keep_data;
3819 v.fd_ref = UDRS->fd_ref;
3820 v.fd_device = UDRS->fd_device;
3821 v.last_checked = UDRS->last_checked;
3822 v.dmabuf = (uintptr_t)UDRS->dmabuf;
3823 v.bufblocks = UDRS->bufblocks;
3824 mutex_unlock(&floppy_mutex);
3825
Jann Horne07fb662019-03-26 23:03:48 +01003826 if (copy_to_user(arg, &v, sizeof(struct compat_floppy_drive_struct)))
Al Viro06f9e7b2017-06-27 15:47:56 -04003827 return -EFAULT;
3828 return 0;
3829Eintr:
3830 mutex_unlock(&floppy_mutex);
3831 return -EINTR;
3832}
3833
3834static int compat_getfdcstat(int drive,
3835 struct compat_floppy_fdc_state __user *arg)
3836{
3837 struct compat_floppy_fdc_state v32;
3838 struct floppy_fdc_state v;
3839
3840 mutex_lock(&floppy_mutex);
3841 v = *UFDCS;
3842 mutex_unlock(&floppy_mutex);
3843
3844 memset(&v32, 0, sizeof(struct compat_floppy_fdc_state));
3845 v32.spec1 = v.spec1;
3846 v32.spec2 = v.spec2;
3847 v32.dtr = v.dtr;
3848 v32.version = v.version;
3849 v32.dor = v.dor;
3850 v32.address = v.address;
3851 v32.rawcmd = v.rawcmd;
3852 v32.reset = v.reset;
3853 v32.need_configure = v.need_configure;
3854 v32.perp_mode = v.perp_mode;
3855 v32.has_fifo = v.has_fifo;
3856 v32.driver_version = v.driver_version;
3857 memcpy(v32.track, v.track, 4);
3858 if (copy_to_user(arg, &v32, sizeof(struct compat_floppy_fdc_state)))
3859 return -EFAULT;
3860 return 0;
3861}
3862
3863static int compat_werrorget(int drive,
3864 struct compat_floppy_write_errors __user *arg)
3865{
3866 struct compat_floppy_write_errors v32;
3867 struct floppy_write_errors v;
3868
3869 memset(&v32, 0, sizeof(struct compat_floppy_write_errors));
3870 mutex_lock(&floppy_mutex);
3871 v = *UDRWE;
3872 mutex_unlock(&floppy_mutex);
3873 v32.write_errors = v.write_errors;
3874 v32.first_error_sector = v.first_error_sector;
3875 v32.first_error_generation = v.first_error_generation;
3876 v32.last_error_sector = v.last_error_sector;
3877 v32.last_error_generation = v.last_error_generation;
3878 v32.badness = v.badness;
3879 if (copy_to_user(arg, &v32, sizeof(struct compat_floppy_write_errors)))
3880 return -EFAULT;
3881 return 0;
3882}
3883
3884static int fd_compat_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
3885 unsigned long param)
3886{
3887 int drive = (long)bdev->bd_disk->private_data;
3888 switch (cmd) {
3889 case FDMSGON:
3890 case FDMSGOFF:
3891 case FDSETEMSGTRESH:
3892 case FDFLUSH:
3893 case FDWERRORCLR:
3894 case FDEJECT:
3895 case FDCLRPRM:
3896 case FDFMTBEG:
3897 case FDRESET:
3898 case FDTWADDLE:
3899 return fd_ioctl(bdev, mode, cmd, param);
3900 case FDSETMAXERRS:
3901 case FDGETMAXERRS:
3902 case FDGETDRVTYP:
3903 case FDFMTEND:
3904 case FDFMTTRK:
3905 case FDRAWCMD:
3906 return fd_ioctl(bdev, mode, cmd,
3907 (unsigned long)compat_ptr(param));
3908 case FDSETPRM32:
3909 case FDDEFPRM32:
3910 return compat_set_geometry(bdev, mode, cmd, compat_ptr(param));
3911 case FDGETPRM32:
3912 return compat_get_prm(drive, compat_ptr(param));
3913 case FDSETDRVPRM32:
3914 return compat_setdrvprm(drive, compat_ptr(param));
3915 case FDGETDRVPRM32:
3916 return compat_getdrvprm(drive, compat_ptr(param));
3917 case FDPOLLDRVSTAT32:
3918 return compat_getdrvstat(drive, true, compat_ptr(param));
3919 case FDGETDRVSTAT32:
3920 return compat_getdrvstat(drive, false, compat_ptr(param));
3921 case FDGETFDCSTAT32:
3922 return compat_getfdcstat(drive, compat_ptr(param));
3923 case FDWERRORGET32:
3924 return compat_werrorget(drive, compat_ptr(param));
3925 }
3926 return -EINVAL;
3927}
3928#endif
3929
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930static void __init config_types(void)
3931{
Joe Perchesb46df352010-03-10 15:20:46 -08003932 bool has_drive = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 int drive;
3934
3935 /* read drive info out of physical CMOS */
3936 drive = 0;
3937 if (!UDP->cmos)
3938 UDP->cmos = FLOPPY0_TYPE;
3939 drive = 1;
3940 if (!UDP->cmos && FLOPPY1_TYPE)
3941 UDP->cmos = FLOPPY1_TYPE;
3942
Jesper Juhl06f748c2007-10-16 23:30:57 -07003943 /* FIXME: additional physical CMOS drive detection should go here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
3945 for (drive = 0; drive < N_DRIVE; drive++) {
3946 unsigned int type = UDP->cmos;
3947 struct floppy_drive_params *params;
3948 const char *name = NULL;
Rasmus Villemoesbcf42992015-12-01 15:54:01 +01003949 char temparea[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950
Tobias Klauser945f3902006-01-08 01:05:11 -08003951 if (type < ARRAY_SIZE(default_drive_params)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 params = &default_drive_params[type].params;
3953 if (type) {
3954 name = default_drive_params[type].name;
3955 allowed_drive_mask |= 1 << drive;
3956 } else
3957 allowed_drive_mask &= ~(1 << drive);
3958 } else {
3959 params = &default_drive_params[0].params;
Rasmus Villemoesbcf42992015-12-01 15:54:01 +01003960 snprintf(temparea, sizeof(temparea),
3961 "unknown type %d (usb?)", type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 name = temparea;
3963 }
3964 if (name) {
Joe Perchesb46df352010-03-10 15:20:46 -08003965 const char *prepend;
3966 if (!has_drive) {
3967 prepend = "";
3968 has_drive = true;
3969 pr_info("Floppy drive(s):");
3970 } else {
3971 prepend = ",";
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 }
Joe Perchesb46df352010-03-10 15:20:46 -08003973
3974 pr_cont("%s fd%d is %s", prepend, drive, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 }
3976 *UDP = *params;
3977 }
Joe Perchesb46df352010-03-10 15:20:46 -08003978
3979 if (has_drive)
3980 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981}
3982
Al Virodb2a1442013-05-05 21:52:57 -04003983static void floppy_release(struct gendisk *disk, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984{
Al Viroa4af9b42008-03-02 09:27:55 -05003985 int drive = (long)disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003987 mutex_lock(&floppy_mutex);
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003988 mutex_lock(&open_lock);
Jiri Kosinabfa10b82012-05-18 13:50:28 +02003989 if (!UDRS->fd_ref--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990 DPRINT("floppy_release with fd_ref == 0");
3991 UDRS->fd_ref = 0;
3992 }
3993 if (!UDRS->fd_ref)
3994 opened_bdev[drive] = NULL;
Jes Sorensenb1c82b52006-03-23 03:00:26 -08003995 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02003996 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997}
3998
3999/*
4000 * floppy_open check for aliasing (/dev/fd0 can be the same as
4001 * /dev/PS0 etc), and disallows simultaneous access to the same
4002 * drive with different device numbers.
4003 */
Al Viroa4af9b42008-03-02 09:27:55 -05004004static int floppy_open(struct block_device *bdev, fmode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005{
Al Viroa4af9b42008-03-02 09:27:55 -05004006 int drive = (long)bdev->bd_disk->private_data;
4007 int old_dev, new_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 int try;
4009 int res = -EBUSY;
4010 char *tmp;
4011
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02004012 mutex_lock(&floppy_mutex);
Jes Sorensenb1c82b52006-03-23 03:00:26 -08004013 mutex_lock(&open_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 old_dev = UDRS->fd_device;
Al Viroa4af9b42008-03-02 09:27:55 -05004015 if (opened_bdev[drive] && opened_bdev[drive] != bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 goto out2;
4017
4018 if (!UDRS->fd_ref && (UDP->flags & FD_BROKEN_DCL)) {
Joe Perchese0298532010-03-10 15:20:55 -08004019 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
4020 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 }
4022
Jiri Kosinabfa10b82012-05-18 13:50:28 +02004023 UDRS->fd_ref++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
Al Viroa4af9b42008-03-02 09:27:55 -05004025 opened_bdev[drive] = bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026
4027 res = -ENXIO;
4028
4029 if (!floppy_track_buffer) {
4030 /* if opening an ED drive, reserve a big buffer,
4031 * else reserve a small one */
4032 if ((UDP->cmos == 6) || (UDP->cmos == 5))
4033 try = 64; /* Only 48 actually useful */
4034 else
4035 try = 32; /* Only 24 actually useful */
4036
4037 tmp = (char *)fd_dma_mem_alloc(1024 * try);
4038 if (!tmp && !floppy_track_buffer) {
4039 try >>= 1; /* buffer only one side */
4040 INFBOUND(try, 16);
4041 tmp = (char *)fd_dma_mem_alloc(1024 * try);
4042 }
Joe Perchesa81ee542010-03-10 15:20:46 -08004043 if (!tmp && !floppy_track_buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 fallback_on_nodma_alloc(&tmp, 2048 * try);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 if (!tmp && !floppy_track_buffer) {
4046 DPRINT("Unable to allocate DMA memory\n");
4047 goto out;
4048 }
4049 if (floppy_track_buffer) {
4050 if (tmp)
4051 fd_dma_mem_free((unsigned long)tmp, try * 1024);
4052 } else {
4053 buffer_min = buffer_max = -1;
4054 floppy_track_buffer = tmp;
4055 max_buffer_sectors = try;
4056 }
4057 }
4058
Al Viroa4af9b42008-03-02 09:27:55 -05004059 new_dev = MINOR(bdev->bd_dev);
4060 UDRS->fd_device = new_dev;
4061 set_capacity(disks[drive], floppy_sizes[new_dev]);
4062 if (old_dev != -1 && old_dev != new_dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 if (buffer_drive == drive)
4064 buffer_track = -1;
4065 }
4066
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 if (UFDCS->rawcmd == 1)
4068 UFDCS->rawcmd = 2;
4069
Jens Axboef2791e72016-08-25 08:56:51 -06004070 if (!(mode & FMODE_NDELAY)) {
4071 if (mode & (FMODE_READ|FMODE_WRITE)) {
4072 UDRS->last_checked = 0;
4073 clear_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags);
4074 check_disk_change(bdev);
4075 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags))
4076 goto out;
4077 if (test_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags))
4078 goto out;
4079 }
4080 res = -EROFS;
4081 if ((mode & FMODE_WRITE) &&
4082 !test_bit(FD_DISK_WRITABLE_BIT, &UDRS->flags))
4083 goto out;
4084 }
Jes Sorensenb1c82b52006-03-23 03:00:26 -08004085 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02004086 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 return 0;
4088out:
Jiri Kosinabfa10b82012-05-18 13:50:28 +02004089 UDRS->fd_ref--;
4090
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 if (!UDRS->fd_ref)
4092 opened_bdev[drive] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093out2:
Jes Sorensenb1c82b52006-03-23 03:00:26 -08004094 mutex_unlock(&open_lock);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02004095 mutex_unlock(&floppy_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 return res;
4097}
4098
4099/*
4100 * Check if the disk has been changed or if a change has been faked.
4101 */
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004102static unsigned int floppy_check_events(struct gendisk *disk,
4103 unsigned int clearing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104{
4105 int drive = (long)disk->private_data;
4106
Joe Perchese0298532010-03-10 15:20:55 -08004107 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4108 test_bit(FD_VERIFY_BIT, &UDRS->flags))
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004109 return DISK_EVENT_MEDIA_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
Marcelo Feitoza Parisi50297cb2006-03-28 01:56:44 -08004111 if (time_after(jiffies, UDRS->last_checked + UDP->checkfreq)) {
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01004112 if (lock_fdc(drive))
Yufen Yu489a9ab2019-01-29 16:34:04 +08004113 return 0;
Joe Perches74f63f42010-03-10 15:20:58 -08004114 poll_drive(false, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 process_fd_request();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 }
4117
Joe Perchese0298532010-03-10 15:20:55 -08004118 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4119 test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 test_bit(drive, &fake_change) ||
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004121 drive_no_geom(drive))
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004122 return DISK_EVENT_MEDIA_CHANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 return 0;
4124}
4125
4126/*
4127 * This implements "read block 0" for floppy_revalidate().
4128 * Needed for format autodetection, checking whether there is
4129 * a disk in the drive, and whether that disk is writable.
4130 */
4131
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004132struct rb0_cbdata {
4133 int drive;
4134 struct completion complete;
4135};
4136
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02004137static void floppy_rb0_cb(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138{
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004139 struct rb0_cbdata *cbdata = (struct rb0_cbdata *)bio->bi_private;
4140 int drive = cbdata->drive;
4141
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02004142 if (bio->bi_error) {
4143 pr_info("floppy: error %d while reading block 0\n",
4144 bio->bi_error);
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004145 set_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags);
4146 }
4147 complete(&cbdata->complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148}
4149
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004150static int __floppy_read_block_0(struct block_device *bdev, int drive)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151{
4152 struct bio bio;
4153 struct bio_vec bio_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154 struct page *page;
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004155 struct rb0_cbdata cbdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 size_t size;
4157
4158 page = alloc_page(GFP_NOIO);
4159 if (!page) {
4160 process_fd_request();
4161 return -ENOMEM;
4162 }
4163
4164 size = bdev->bd_block_size;
4165 if (!size)
4166 size = 1024;
4167
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004168 cbdata.drive = drive;
4169
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 bio_init(&bio);
4171 bio.bi_io_vec = &bio_vec;
4172 bio_vec.bv_page = page;
4173 bio_vec.bv_len = size;
4174 bio_vec.bv_offset = 0;
4175 bio.bi_vcnt = 1;
Kent Overstreet4f024f32013-10-11 15:44:27 -07004176 bio.bi_iter.bi_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 bio.bi_bdev = bdev;
Kent Overstreet4f024f32013-10-11 15:44:27 -07004178 bio.bi_iter.bi_sector = 0;
Jiri Kosina6314a102014-05-28 11:55:23 +02004179 bio.bi_flags |= (1 << BIO_QUIET);
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004180 bio.bi_private = &cbdata;
4181 bio.bi_end_io = floppy_rb0_cb;
Mike Christie95fe6c12016-06-05 14:31:48 -05004182 bio_set_op_attrs(&bio, REQ_OP_READ, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
Jens Axboe03781eb2018-11-09 15:58:40 -07004184 init_completion(&cbdata.complete);
4185
Mike Christie4e49ea42016-06-05 14:31:41 -05004186 submit_bio(&bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 process_fd_request();
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004188
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004189 wait_for_completion(&cbdata.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
4191 __free_page(page);
4192
4193 return 0;
4194}
4195
4196/* revalidate the floppy disk, i.e. trigger format autodetection by reading
4197 * the bootblock (block 0). "Autodetection" is also needed to check whether
4198 * there is a disk in the drive at all... Thus we also do it for fixed
4199 * geometry formats */
4200static int floppy_revalidate(struct gendisk *disk)
4201{
4202 int drive = (long)disk->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 int cf;
4204 int res = 0;
4205
Joe Perchese0298532010-03-10 15:20:55 -08004206 if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4207 test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004208 test_bit(drive, &fake_change) ||
4209 drive_no_geom(drive)) {
Stephen Hemminger01b6b672010-06-15 13:21:11 +02004210 if (WARN(atomic_read(&usage_count) == 0,
4211 "VFS: revalidate called on non-open device.\n"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 return -EFAULT;
Stephen Hemminger01b6b672010-06-15 13:21:11 +02004213
Jiri Kosinaa0c80ef2016-02-01 11:19:17 +01004214 res = lock_fdc(drive);
4215 if (res)
4216 return res;
Joe Perchese0298532010-03-10 15:20:55 -08004217 cf = (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
4218 test_bit(FD_VERIFY_BIT, &UDRS->flags));
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004219 if (!(cf || test_bit(drive, &fake_change) || drive_no_geom(drive))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 process_fd_request(); /*already done by another thread */
4221 return 0;
4222 }
4223 UDRS->maxblock = 0;
4224 UDRS->maxtrack = 0;
4225 if (buffer_drive == drive)
4226 buffer_track = -1;
4227 clear_bit(drive, &fake_change);
Joe Perchese0298532010-03-10 15:20:55 -08004228 clear_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229 if (cf)
4230 UDRS->generation++;
Pekka Enberg2b51dca2010-11-08 14:44:34 +01004231 if (drive_no_geom(drive)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 /* auto-sensing */
Jiri Kosina7b7b68bb2014-01-10 02:08:13 +01004233 res = __floppy_read_block_0(opened_bdev[drive], drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 } else {
4235 if (cf)
Joe Perches74f63f42010-03-10 15:20:58 -08004236 poll_drive(false, FD_RAW_NEED_DISK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 process_fd_request();
4238 }
4239 }
4240 set_capacity(disk, floppy_sizes[UDRS->fd_device]);
4241 return res;
4242}
4243
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07004244static const struct block_device_operations floppy_fops = {
Jesper Juhl06f748c2007-10-16 23:30:57 -07004245 .owner = THIS_MODULE,
Al Viroa4af9b42008-03-02 09:27:55 -05004246 .open = floppy_open,
4247 .release = floppy_release,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02004248 .ioctl = fd_ioctl,
Jesper Juhl06f748c2007-10-16 23:30:57 -07004249 .getgeo = fd_getgeo,
Tejun Heo1a8a74f2011-03-09 19:54:27 +01004250 .check_events = floppy_check_events,
Jesper Juhl06f748c2007-10-16 23:30:57 -07004251 .revalidate_disk = floppy_revalidate,
Al Viro06f9e7b2017-06-27 15:47:56 -04004252#ifdef CONFIG_COMPAT
4253 .compat_ioctl = fd_compat_ioctl,
4254#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257/*
4258 * Floppy Driver initialization
4259 * =============================
4260 */
4261
4262/* Determine the floppy disk controller type */
4263/* This routine was written by David C. Niemi */
4264static char __init get_fdc_version(void)
4265{
4266 int r;
4267
4268 output_byte(FD_DUMPREGS); /* 82072 and better know DUMPREGS */
4269 if (FDCS->reset)
4270 return FDC_NONE;
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08004271 r = result();
4272 if (r <= 0x00)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 return FDC_NONE; /* No FDC present ??? */
4274 if ((r == 1) && (reply_buffer[0] == 0x80)) {
Joe Perchesb46df352010-03-10 15:20:46 -08004275 pr_info("FDC %d is an 8272A\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 return FDC_8272A; /* 8272a/765 don't know DUMPREGS */
4277 }
4278 if (r != 10) {
Joe Perchesb46df352010-03-10 15:20:46 -08004279 pr_info("FDC %d init: DUMPREGS: unexpected return of %d bytes.\n",
4280 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 return FDC_UNKNOWN;
4282 }
4283
4284 if (!fdc_configure()) {
Joe Perchesb46df352010-03-10 15:20:46 -08004285 pr_info("FDC %d is an 82072\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 return FDC_82072; /* 82072 doesn't know CONFIGURE */
4287 }
4288
4289 output_byte(FD_PERPENDICULAR);
4290 if (need_more_output() == MORE_OUTPUT) {
4291 output_byte(0);
4292 } else {
Joe Perchesb46df352010-03-10 15:20:46 -08004293 pr_info("FDC %d is an 82072A\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 return FDC_82072A; /* 82072A as found on Sparcs. */
4295 }
4296
4297 output_byte(FD_UNLOCK);
4298 r = result();
4299 if ((r == 1) && (reply_buffer[0] == 0x80)) {
Joe Perchesb46df352010-03-10 15:20:46 -08004300 pr_info("FDC %d is a pre-1991 82077\n", fdc);
Joe Perchesd7b2b2e2010-03-10 15:20:48 -08004301 return FDC_82077_ORIG; /* Pre-1991 82077, doesn't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 * LOCK/UNLOCK */
4303 }
4304 if ((r != 1) || (reply_buffer[0] != 0x00)) {
Joe Perchesb46df352010-03-10 15:20:46 -08004305 pr_info("FDC %d init: UNLOCK: unexpected return of %d bytes.\n",
4306 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 return FDC_UNKNOWN;
4308 }
4309 output_byte(FD_PARTID);
4310 r = result();
4311 if (r != 1) {
Joe Perchesb46df352010-03-10 15:20:46 -08004312 pr_info("FDC %d init: PARTID: unexpected return of %d bytes.\n",
4313 fdc, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 return FDC_UNKNOWN;
4315 }
4316 if (reply_buffer[0] == 0x80) {
Joe Perchesb46df352010-03-10 15:20:46 -08004317 pr_info("FDC %d is a post-1991 82077\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 return FDC_82077; /* Revised 82077AA passes all the tests */
4319 }
4320 switch (reply_buffer[0] >> 5) {
4321 case 0x0:
4322 /* Either a 82078-1 or a 82078SL running at 5Volt */
Joe Perchesb46df352010-03-10 15:20:46 -08004323 pr_info("FDC %d is an 82078.\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 return FDC_82078;
4325 case 0x1:
Joe Perchesb46df352010-03-10 15:20:46 -08004326 pr_info("FDC %d is a 44pin 82078\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 return FDC_82078;
4328 case 0x2:
Joe Perchesb46df352010-03-10 15:20:46 -08004329 pr_info("FDC %d is a S82078B\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 return FDC_S82078B;
4331 case 0x3:
Joe Perchesb46df352010-03-10 15:20:46 -08004332 pr_info("FDC %d is a National Semiconductor PC87306\n", fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 return FDC_87306;
4334 default:
Joe Perchesb46df352010-03-10 15:20:46 -08004335 pr_info("FDC %d init: 82078 variant with unknown PARTID=%d.\n",
4336 fdc, reply_buffer[0] >> 5);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 return FDC_82078_UNKN;
4338 }
4339} /* get_fdc_version */
4340
4341/* lilo configuration */
4342
4343static void __init floppy_set_flags(int *ints, int param, int param2)
4344{
4345 int i;
4346
4347 for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
4348 if (param)
4349 default_drive_params[i].params.flags |= param2;
4350 else
4351 default_drive_params[i].params.flags &= ~param2;
4352 }
4353 DPRINT("%s flag 0x%x\n", param2 ? "Setting" : "Clearing", param);
4354}
4355
4356static void __init daring(int *ints, int param, int param2)
4357{
4358 int i;
4359
4360 for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
4361 if (param) {
4362 default_drive_params[i].params.select_delay = 0;
4363 default_drive_params[i].params.flags |=
4364 FD_SILENT_DCL_CLEAR;
4365 } else {
4366 default_drive_params[i].params.select_delay =
4367 2 * HZ / 100;
4368 default_drive_params[i].params.flags &=
4369 ~FD_SILENT_DCL_CLEAR;
4370 }
4371 }
4372 DPRINT("Assuming %s floppy hardware\n", param ? "standard" : "broken");
4373}
4374
4375static void __init set_cmos(int *ints, int dummy, int dummy2)
4376{
4377 int current_drive = 0;
4378
4379 if (ints[0] != 2) {
4380 DPRINT("wrong number of parameters for CMOS\n");
4381 return;
4382 }
4383 current_drive = ints[1];
4384 if (current_drive < 0 || current_drive >= 8) {
4385 DPRINT("bad drive for set_cmos\n");
4386 return;
4387 }
4388#if N_FDC > 1
4389 if (current_drive >= 4 && !FDC2)
4390 FDC2 = 0x370;
4391#endif
4392 DP->cmos = ints[2];
4393 DPRINT("setting CMOS code to %d\n", ints[2]);
4394}
4395
4396static struct param_table {
4397 const char *name;
4398 void (*fn) (int *ints, int param, int param2);
4399 int *var;
4400 int def_param;
4401 int param2;
4402} config_params[] __initdata = {
4403 {"allowed_drive_mask", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
4404 {"all_drives", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
4405 {"asus_pci", NULL, &allowed_drive_mask, 0x33, 0},
4406 {"irq", NULL, &FLOPPY_IRQ, 6, 0},
4407 {"dma", NULL, &FLOPPY_DMA, 2, 0},
4408 {"daring", daring, NULL, 1, 0},
4409#if N_FDC > 1
4410 {"two_fdc", NULL, &FDC2, 0x370, 0},
4411 {"one_fdc", NULL, &FDC2, 0, 0},
4412#endif
4413 {"thinkpad", floppy_set_flags, NULL, 1, FD_INVERTED_DCL},
4414 {"broken_dcl", floppy_set_flags, NULL, 1, FD_BROKEN_DCL},
4415 {"messages", floppy_set_flags, NULL, 1, FTD_MSG},
4416 {"silent_dcl_clear", floppy_set_flags, NULL, 1, FD_SILENT_DCL_CLEAR},
4417 {"debug", floppy_set_flags, NULL, 1, FD_DEBUG},
4418 {"nodma", NULL, &can_use_virtual_dma, 1, 0},
4419 {"omnibook", NULL, &can_use_virtual_dma, 1, 0},
4420 {"yesdma", NULL, &can_use_virtual_dma, 0, 0},
4421 {"fifo_depth", NULL, &fifo_depth, 0xa, 0},
4422 {"nofifo", NULL, &no_fifo, 0x20, 0},
4423 {"usefifo", NULL, &no_fifo, 0, 0},
4424 {"cmos", set_cmos, NULL, 0, 0},
4425 {"slow", NULL, &slow_floppy, 1, 0},
4426 {"unexpected_interrupts", NULL, &print_unex, 1, 0},
4427 {"no_unexpected_interrupts", NULL, &print_unex, 0, 0},
4428 {"L40SX", NULL, &print_unex, 0, 0}
4429
4430 EXTRA_FLOPPY_PARAMS
4431};
4432
4433static int __init floppy_setup(char *str)
4434{
4435 int i;
4436 int param;
4437 int ints[11];
4438
4439 str = get_options(str, ARRAY_SIZE(ints), ints);
4440 if (str) {
4441 for (i = 0; i < ARRAY_SIZE(config_params); i++) {
4442 if (strcmp(str, config_params[i].name) == 0) {
4443 if (ints[0])
4444 param = ints[1];
4445 else
4446 param = config_params[i].def_param;
4447 if (config_params[i].fn)
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004448 config_params[i].fn(ints, param,
4449 config_params[i].
4450 param2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 if (config_params[i].var) {
4452 DPRINT("%s=%d\n", str, param);
4453 *config_params[i].var = param;
4454 }
4455 return 1;
4456 }
4457 }
4458 }
4459 if (str) {
4460 DPRINT("unknown floppy option [%s]\n", str);
4461
4462 DPRINT("allowed options are:");
4463 for (i = 0; i < ARRAY_SIZE(config_params); i++)
Joe Perchesb46df352010-03-10 15:20:46 -08004464 pr_cont(" %s", config_params[i].name);
4465 pr_cont("\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 } else
4467 DPRINT("botched floppy option\n");
Randy Dunlap31c00fc2008-11-13 21:33:24 +00004468 DPRINT("Read Documentation/blockdev/floppy.txt\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 return 0;
4470}
4471
4472static int have_no_fdc = -ENODEV;
4473
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004474static ssize_t floppy_cmos_show(struct device *dev,
4475 struct device_attribute *attr, char *buf)
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004476{
Eric Miao71b3e0c2009-01-31 22:47:44 +08004477 struct platform_device *p = to_platform_device(dev);
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004478 int drive;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004479
Andrew Morton9a8af6b2005-07-27 17:37:34 -07004480 drive = p->id;
4481 return sprintf(buf, "%X\n", UDP->cmos);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004482}
Joe Perches48c8cee2010-03-10 15:20:45 -08004483
Stephen Hemmingerbe1c0fb2010-06-15 13:21:11 +02004484static DEVICE_ATTR(cmos, S_IRUGO, floppy_cmos_show, NULL);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004485
Takashi Iwaib7f120b2015-02-02 17:08:45 +01004486static struct attribute *floppy_dev_attrs[] = {
4487 &dev_attr_cmos.attr,
4488 NULL
4489};
4490
4491ATTRIBUTE_GROUPS(floppy_dev);
4492
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493static void floppy_device_release(struct device *dev)
4494{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495}
4496
Frans Popc90cd332009-07-25 22:24:54 +02004497static int floppy_resume(struct device *dev)
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004498{
4499 int fdc;
4500
4501 for (fdc = 0; fdc < N_FDC; fdc++)
4502 if (FDCS->address != -1)
Joe Perches74f63f42010-03-10 15:20:58 -08004503 user_reset_fdc(-1, FD_RESET_ALWAYS, false);
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004504
4505 return 0;
4506}
4507
Alexey Dobriyan47145212009-12-14 18:00:08 -08004508static const struct dev_pm_ops floppy_pm_ops = {
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004509 .resume = floppy_resume,
Frans Popc90cd332009-07-25 22:24:54 +02004510 .restore = floppy_resume,
4511};
4512
4513static struct platform_driver floppy_driver = {
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004514 .driver = {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004515 .name = "floppy",
4516 .pm = &floppy_pm_ops,
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004517 },
4518};
4519
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004520static struct platform_device floppy_device[N_DRIVE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004522static bool floppy_available(int drive)
4523{
4524 if (!(allowed_drive_mask & (1 << drive)))
4525 return false;
4526 if (fdc_state[FDC(drive)].version == FDC_NONE)
4527 return false;
4528 return true;
4529}
4530
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531static struct kobject *floppy_find(dev_t dev, int *part, void *data)
4532{
4533 int drive = (*part & 3) | ((*part & 0x80) >> 5);
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004534 if (drive >= N_DRIVE || !floppy_available(drive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 return NULL;
Tobias Klauser945f3902006-01-08 01:05:11 -08004536 if (((*part >> 2) & 0x1f) >= ARRAY_SIZE(floppy_type))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 return NULL;
4538 *part = 0;
4539 return get_disk(disks[drive]);
4540}
4541
Andi Kleen0cc15d032012-07-02 17:27:04 -07004542static int __init do_floppy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543{
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004544 int i, unit, drive, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545
Stephen Hemminger285203c2010-06-15 13:21:11 +02004546 set_debugt();
4547 interruptjiffies = resultjiffies = jiffies;
4548
Kumar Gala68e1ee62008-09-22 14:41:31 -07004549#if defined(CONFIG_PPC)
Olaf Heringef16b512006-08-31 21:27:41 -07004550 if (check_legacy_ioport(FDC1))
4551 return -ENODEV;
4552#endif
4553
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 raw_cmd = NULL;
4555
Herton Ronaldo Krzesinskib54e1f82012-08-27 20:56:51 -03004556 floppy_wq = alloc_ordered_workqueue("floppy", 0);
4557 if (!floppy_wq)
4558 return -ENOMEM;
4559
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004560 for (drive = 0; drive < N_DRIVE; drive++) {
4561 disks[drive] = alloc_disk(1);
4562 if (!disks[drive]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563 err = -ENOMEM;
4564 goto out_put_disk;
4565 }
4566
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004567 disks[drive]->queue = blk_init_queue(do_fd_request, &floppy_lock);
4568 if (!disks[drive]->queue) {
Jens Axboe48821182010-09-22 09:32:36 +02004569 err = -ENOMEM;
Herton Ronaldo Krzesinskib54e1f82012-08-27 20:56:51 -03004570 goto out_put_disk;
Jens Axboe48821182010-09-22 09:32:36 +02004571 }
4572
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004573 blk_queue_max_hw_sectors(disks[drive]->queue, 64);
4574 disks[drive]->major = FLOPPY_MAJOR;
4575 disks[drive]->first_minor = TOMINOR(drive);
4576 disks[drive]->fops = &floppy_fops;
4577 sprintf(disks[drive]->disk_name, "fd%d", drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004578
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004579 init_timer(&motor_off_timer[drive]);
4580 motor_off_timer[drive].data = drive;
4581 motor_off_timer[drive].function = motor_off_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 }
4583
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 err = register_blkdev(FLOPPY_MAJOR, "fd");
4585 if (err)
Greg Kroah-Hartman8ab5e4c2005-06-20 21:15:16 -07004586 goto out_put_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004588 err = platform_driver_register(&floppy_driver);
4589 if (err)
4590 goto out_unreg_blkdev;
4591
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 blk_register_region(MKDEV(FLOPPY_MAJOR, 0), 256, THIS_MODULE,
4593 floppy_find, NULL, NULL);
4594
4595 for (i = 0; i < 256; i++)
4596 if (ITYPE(i))
4597 floppy_sizes[i] = floppy_type[ITYPE(i)].size;
4598 else
4599 floppy_sizes[i] = MAX_DISK_SIZE << 1;
4600
Joe Perches73507e62010-03-10 15:21:03 -08004601 reschedule_timeout(MAXTIMEOUT, "floppy init");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 config_types();
4603
4604 for (i = 0; i < N_FDC; i++) {
4605 fdc = i;
Joe Perchesb87c9e02010-03-10 15:20:50 -08004606 memset(FDCS, 0, sizeof(*FDCS));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607 FDCS->dtr = -1;
4608 FDCS->dor = 0x4;
4609#if defined(__sparc__) || defined(__mc68000__)
Joe Perches96534f12010-03-10 15:20:51 -08004610 /*sparcs/sun3x don't have a DOR reset which we can fall back on to */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611#ifdef __mc68000__
4612 if (MACH_IS_SUN3X)
4613#endif
4614 FDCS->version = FDC_82072A;
4615#endif
4616 }
4617
4618 use_virtual_dma = can_use_virtual_dma & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 fdc_state[0].address = FDC1;
4620 if (fdc_state[0].address == -1) {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004621 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622 err = -ENODEV;
4623 goto out_unreg_region;
4624 }
4625#if N_FDC > 1
4626 fdc_state[1].address = FDC2;
4627#endif
4628
4629 fdc = 0; /* reset fdc in case of unexpected interrupt */
4630 err = floppy_grab_irq_and_dma();
4631 if (err) {
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004632 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 err = -EBUSY;
4634 goto out_unreg_region;
4635 }
4636
4637 /* initialise drive state */
4638 for (drive = 0; drive < N_DRIVE; drive++) {
Joe Perchesb87c9e02010-03-10 15:20:50 -08004639 memset(UDRS, 0, sizeof(*UDRS));
4640 memset(UDRWE, 0, sizeof(*UDRWE));
Joe Perchese0298532010-03-10 15:20:55 -08004641 set_bit(FD_DISK_NEWCHANGE_BIT, &UDRS->flags);
4642 set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
4643 set_bit(FD_VERIFY_BIT, &UDRS->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644 UDRS->fd_device = -1;
4645 floppy_track_buffer = NULL;
4646 max_buffer_sectors = 0;
4647 }
4648 /*
4649 * Small 10 msec delay to let through any interrupt that
4650 * initialization might have triggered, to not
4651 * confuse detection:
4652 */
4653 msleep(10);
4654
4655 for (i = 0; i < N_FDC; i++) {
4656 fdc = i;
4657 FDCS->driver_version = FD_DRIVER_VERSION;
4658 for (unit = 0; unit < 4; unit++)
4659 FDCS->track[unit] = 0;
4660 if (FDCS->address == -1)
4661 continue;
4662 FDCS->rawcmd = 2;
Joe Perches74f63f42010-03-10 15:20:58 -08004663 if (user_reset_fdc(-1, FD_RESET_ALWAYS, false)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 /* free ioports reserved by floppy_grab_irq_and_dma() */
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004665 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 FDCS->address = -1;
4667 FDCS->version = FDC_NONE;
4668 continue;
4669 }
4670 /* Try to determine the floppy controller type */
4671 FDCS->version = get_fdc_version();
4672 if (FDCS->version == FDC_NONE) {
4673 /* free ioports reserved by floppy_grab_irq_and_dma() */
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004674 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 FDCS->address = -1;
4676 continue;
4677 }
4678 if (can_use_virtual_dma == 2 && FDCS->version < FDC_82072A)
4679 can_use_virtual_dma = 0;
4680
4681 have_no_fdc = 0;
4682 /* Not all FDCs seem to be able to handle the version command
4683 * properly, so force a reset for the standard FDC clones,
4684 * to avoid interrupt garbage.
4685 */
Joe Perches74f63f42010-03-10 15:20:58 -08004686 user_reset_fdc(-1, FD_RESET_ALWAYS, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687 }
4688 fdc = 0;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004689 cancel_delayed_work(&fd_timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690 current_drive = 0;
Joe Perches29f1c782010-03-10 15:21:00 -08004691 initialized = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692 if (have_no_fdc) {
4693 DPRINT("no floppy controllers found\n");
4694 err = have_no_fdc;
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004695 goto out_release_dma;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004696 }
4697
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 for (drive = 0; drive < N_DRIVE; drive++) {
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004699 if (!floppy_available(drive))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 continue;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004701
4702 floppy_device[drive].name = floppy_device_name;
4703 floppy_device[drive].id = drive;
4704 floppy_device[drive].dev.release = floppy_device_release;
Takashi Iwaib7f120b2015-02-02 17:08:45 +01004705 floppy_device[drive].dev.groups = floppy_dev_groups;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004706
4707 err = platform_device_register(&floppy_device[drive]);
4708 if (err)
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004709 goto out_remove_drives;
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004710
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711 /* to be cleaned up... */
4712 disks[drive]->private_data = (void *)(long)drive;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004713 disks[drive]->flags |= GENHD_FL_REMOVABLE;
Dan Williams0d52c7562016-06-15 19:44:20 -07004714 device_add_disk(&floppy_device[drive].dev, disks[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004715 }
4716
4717 return 0;
4718
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004719out_remove_drives:
4720 while (drive--) {
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004721 if (floppy_available(drive)) {
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004722 del_gendisk(disks[drive]);
Herton Ronaldo Krzesinskid60e7ec2012-08-27 20:56:54 -03004723 platform_device_unregister(&floppy_device[drive]);
4724 }
4725 }
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004726out_release_dma:
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004727 if (atomic_read(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728 floppy_release_irq_and_dma();
4729out_unreg_region:
4730 blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004731 platform_driver_unregister(&floppy_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732out_unreg_blkdev:
4733 unregister_blkdev(FLOPPY_MAJOR, "fd");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004734out_put_disk:
Jiri Kosinaeac7cc52012-11-06 11:47:13 +01004735 destroy_workqueue(floppy_wq);
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004736 for (drive = 0; drive < N_DRIVE; drive++) {
4737 if (!disks[drive])
4738 break;
4739 if (disks[drive]->queue) {
4740 del_timer_sync(&motor_off_timer[drive]);
4741 blk_cleanup_queue(disks[drive]->queue);
4742 disks[drive]->queue = NULL;
Vivek Goyal3f9a5aa2012-02-08 20:03:38 +01004743 }
Herton Ronaldo Krzesinski1a4ae432012-10-30 08:36:07 +01004744 put_disk(disks[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745 }
4746 return err;
4747}
4748
Andi Kleen0cc15d032012-07-02 17:27:04 -07004749#ifndef MODULE
4750static __init void floppy_async_init(void *data, async_cookie_t cookie)
4751{
4752 do_floppy_init();
4753}
4754#endif
4755
4756static int __init floppy_init(void)
4757{
4758#ifdef MODULE
4759 return do_floppy_init();
4760#else
4761 /* Don't hold up the bootup by the floppy initialization */
4762 async_schedule(floppy_async_init, NULL);
4763 return 0;
4764#endif
4765}
4766
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004767static const struct io_region {
4768 int offset;
4769 int size;
4770} io_regions[] = {
4771 { 2, 1 },
4772 /* address + 3 is sometimes reserved by pnp bios for motherboard */
4773 { 4, 2 },
4774 /* address + 6 is reserved, and may be taken by IDE.
4775 * Unfortunately, Adaptec doesn't know this :-(, */
4776 { 7, 1 },
4777};
4778
4779static void floppy_release_allocated_regions(int fdc, const struct io_region *p)
4780{
4781 while (p != io_regions) {
4782 p--;
4783 release_region(FDCS->address + p->offset, p->size);
4784 }
4785}
4786
4787#define ARRAY_END(X) (&((X)[ARRAY_SIZE(X)]))
4788
4789static int floppy_request_regions(int fdc)
4790{
4791 const struct io_region *p;
4792
4793 for (p = io_regions; p < ARRAY_END(io_regions); p++) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004794 if (!request_region(FDCS->address + p->offset,
4795 p->size, "floppy")) {
4796 DPRINT("Floppy io-port 0x%04lx in use\n",
4797 FDCS->address + p->offset);
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004798 floppy_release_allocated_regions(fdc, p);
4799 return -EBUSY;
4800 }
4801 }
4802 return 0;
4803}
4804
4805static void floppy_release_regions(int fdc)
4806{
4807 floppy_release_allocated_regions(fdc, ARRAY_END(io_regions));
4808}
4809
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810static int floppy_grab_irq_and_dma(void)
4811{
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004812 if (atomic_inc_return(&usage_count) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 return 0;
Ingo Molnar6dc659d2006-03-26 01:36:54 -08004814
4815 /*
4816 * We might have scheduled a free_irq(), wait it to
4817 * drain first:
4818 */
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004819 flush_workqueue(floppy_wq);
Ingo Molnar6dc659d2006-03-26 01:36:54 -08004820
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 if (fd_request_irq()) {
4822 DPRINT("Unable to grab IRQ%d for the floppy driver\n",
4823 FLOPPY_IRQ);
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004824 atomic_dec(&usage_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825 return -1;
4826 }
4827 if (fd_request_dma()) {
4828 DPRINT("Unable to grab DMA%d for the floppy driver\n",
4829 FLOPPY_DMA);
Jan Beulich2e9c47c2007-10-16 23:27:32 -07004830 if (can_use_virtual_dma & 2)
4831 use_virtual_dma = can_use_virtual_dma = 1;
4832 if (!(can_use_virtual_dma & 1)) {
4833 fd_free_irq();
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004834 atomic_dec(&usage_count);
Jan Beulich2e9c47c2007-10-16 23:27:32 -07004835 return -1;
4836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837 }
4838
4839 for (fdc = 0; fdc < N_FDC; fdc++) {
4840 if (FDCS->address != -1) {
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004841 if (floppy_request_regions(fdc))
4842 goto cleanup;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843 }
4844 }
4845 for (fdc = 0; fdc < N_FDC; fdc++) {
4846 if (FDCS->address != -1) {
4847 reset_fdc_info(1);
4848 fd_outb(FDCS->dor, FD_DOR);
4849 }
4850 }
4851 fdc = 0;
4852 set_dor(0, ~0, 8); /* avoid immediate interrupt */
4853
4854 for (fdc = 0; fdc < N_FDC; fdc++)
4855 if (FDCS->address != -1)
4856 fd_outb(FDCS->dor, FD_DOR);
4857 /*
Jesper Juhl06f748c2007-10-16 23:30:57 -07004858 * The driver will try and free resources and relies on us
4859 * to know if they were allocated or not.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004860 */
4861 fdc = 0;
4862 irqdma_allocated = 1;
4863 return 0;
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004864cleanup:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865 fd_free_irq();
4866 fd_free_dma();
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004867 while (--fdc >= 0)
4868 floppy_release_regions(fdc);
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004869 atomic_dec(&usage_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004870 return -1;
4871}
4872
4873static void floppy_release_irq_and_dma(void)
4874{
4875 int old_fdc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876#ifndef __sparc__
4877 int drive;
4878#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879 long tmpsize;
4880 unsigned long tmpaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004881
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004882 if (!atomic_dec_and_test(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883 return;
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004884
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885 if (irqdma_allocated) {
4886 fd_disable_dma();
4887 fd_free_dma();
Ingo Molnar3e541a42006-07-03 00:24:23 -07004888 fd_free_irq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004889 irqdma_allocated = 0;
4890 }
4891 set_dor(0, ~0, 8);
4892#if N_FDC > 1
4893 set_dor(1, ~8, 0);
4894#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895
4896 if (floppy_track_buffer && max_buffer_sectors) {
4897 tmpsize = max_buffer_sectors * 1024;
4898 tmpaddr = (unsigned long)floppy_track_buffer;
4899 floppy_track_buffer = NULL;
4900 max_buffer_sectors = 0;
4901 buffer_min = buffer_max = -1;
4902 fd_dma_mem_free(tmpaddr, tmpsize);
4903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004904#ifndef __sparc__
4905 for (drive = 0; drive < N_FDC * 4; drive++)
4906 if (timer_pending(motor_off_timer + drive))
Joe Perchesb46df352010-03-10 15:20:46 -08004907 pr_info("motor off timer %d still active\n", drive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908#endif
4909
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004910 if (delayed_work_pending(&fd_timeout))
Joe Perchesb46df352010-03-10 15:20:46 -08004911 pr_info("floppy timer still active:%s\n", timeout_message);
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004912 if (delayed_work_pending(&fd_timer))
Joe Perchesb46df352010-03-10 15:20:46 -08004913 pr_info("auxiliary floppy timer still active\n");
David Howells365970a2006-11-22 14:54:49 +00004914 if (work_pending(&floppy_work))
Joe Perchesb46df352010-03-10 15:20:46 -08004915 pr_info("work still pending\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916 old_fdc = fdc;
4917 for (fdc = 0; fdc < N_FDC; fdc++)
Philippe De Muyter5a74db02009-02-18 14:48:36 -08004918 if (FDCS->address != -1)
4919 floppy_release_regions(fdc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004920 fdc = old_fdc;
4921}
4922
4923#ifdef MODULE
4924
4925static char *floppy;
4926
Linus Torvalds1da177e2005-04-16 15:20:36 -07004927static void __init parse_floppy_cfg_string(char *cfg)
4928{
4929 char *ptr;
4930
4931 while (*cfg) {
Joe Perchesbb57f0c62010-03-10 15:20:50 -08004932 ptr = cfg;
4933 while (*cfg && *cfg != ' ' && *cfg != '\t')
4934 cfg++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935 if (*cfg) {
4936 *cfg = '\0';
4937 cfg++;
4938 }
4939 if (*ptr)
4940 floppy_setup(ptr);
4941 }
4942}
4943
Jon Schindler7afea3b2008-04-29 00:59:21 -07004944static int __init floppy_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004945{
4946 if (floppy)
4947 parse_floppy_cfg_string(floppy);
4948 return floppy_init();
4949}
Jon Schindler7afea3b2008-04-29 00:59:21 -07004950module_init(floppy_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951
Jon Schindler7afea3b2008-04-29 00:59:21 -07004952static void __exit floppy_module_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004953{
4954 int drive;
4955
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
4957 unregister_blkdev(FLOPPY_MAJOR, "fd");
Ondrej Zary5e50b9e2009-06-10 12:57:09 -07004958 platform_driver_unregister(&floppy_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959
Jiri Kosinaeac7cc52012-11-06 11:47:13 +01004960 destroy_workqueue(floppy_wq);
4961
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962 for (drive = 0; drive < N_DRIVE; drive++) {
4963 del_timer_sync(&motor_off_timer[drive]);
4964
Herton Ronaldo Krzesinski8d3ab4e2012-08-27 20:56:55 -03004965 if (floppy_available(drive)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004966 del_gendisk(disks[drive]);
Hannes Reinecke94fd0db2005-07-15 10:09:25 +02004967 platform_device_unregister(&floppy_device[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968 }
Jens Axboe48821182010-09-22 09:32:36 +02004969 blk_cleanup_queue(disks[drive]->queue);
Vivek Goyal4609dff2012-02-08 20:03:39 +01004970
4971 /*
4972 * These disks have not called add_disk(). Don't put down
4973 * queue reference in put_disk().
4974 */
4975 if (!(allowed_drive_mask & (1 << drive)) ||
4976 fdc_state[FDC(drive)].version == FDC_NONE)
4977 disks[drive]->queue = NULL;
4978
Vivek Goyald017bf62010-11-06 08:16:05 -04004979 put_disk(disks[drive]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981
Jiri Kosina070ad7e2012-05-18 13:50:25 +02004982 cancel_delayed_work_sync(&fd_timeout);
4983 cancel_delayed_work_sync(&fd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004984
Stephen Hemminger575cfc62010-06-15 13:21:11 +02004985 if (atomic_read(&usage_count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004986 floppy_release_irq_and_dma();
4987
4988 /* eject disk, if any */
4989 fd_eject(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004990}
Joe Perches48c8cee2010-03-10 15:20:45 -08004991
Jon Schindler7afea3b2008-04-29 00:59:21 -07004992module_exit(floppy_module_exit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004993
4994module_param(floppy, charp, 0);
4995module_param(FLOPPY_IRQ, int, 0);
4996module_param(FLOPPY_DMA, int, 0);
4997MODULE_AUTHOR("Alain L. Knaff");
4998MODULE_SUPPORTED_DEVICE("fd");
4999MODULE_LICENSE("GPL");
5000
Scott James Remnant83f9ef42009-04-02 16:56:47 -07005001/* This doesn't actually get used other than for module information */
5002static const struct pnp_device_id floppy_pnpids[] = {
Joe Perches48c8cee2010-03-10 15:20:45 -08005003 {"PNP0700", 0},
5004 {}
Scott James Remnant83f9ef42009-04-02 16:56:47 -07005005};
Joe Perches48c8cee2010-03-10 15:20:45 -08005006
Scott James Remnant83f9ef42009-04-02 16:56:47 -07005007MODULE_DEVICE_TABLE(pnp, floppy_pnpids);
5008
Linus Torvalds1da177e2005-04-16 15:20:36 -07005009#else
5010
5011__setup("floppy=", floppy_setup);
5012module_init(floppy_init)
5013#endif
5014
5015MODULE_ALIAS_BLOCKDEV_MAJOR(FLOPPY_MAJOR);