floppy.c 126.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*
 *  linux/drivers/block/floppy.c
 *
 *  Copyright (C) 1991, 1992  Linus Torvalds
 *  Copyright (C) 1993, 1994  Alain Knaff
 *  Copyright (C) 1998 Alan Cox
 */
8

L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
/*
 * 02.12.91 - Changed to static variables to indicate need for reset
 * and recalibrate. This makes some things easier (output_byte reset
 * checking etc), and means less interrupt jumping in case of errors,
 * so the code is hopefully easier to understand.
 */

/*
 * This file is certainly a mess. I've tried my best to get it working,
 * but I don't like programming floppies, and I have only one anyway.
 * Urgel. I should check for more errors, and do more graceful error
 * recovery. Seems there are problems with several drives. I've tried to
 * correct them. No promises.
 */

/*
 * As with hd.c, all routines within this file can (and will) be called
 * by interrupts, so extreme caution is needed. A hardware interrupt
 * handler may not sleep, or a kernel panic will happen. Thus I cannot
 * call "floppy-on" directly, but have to set a special timer interrupt
 * etc.
 */

/*
 * 28.02.92 - made track-buffering routines, based on the routines written
 * by entropy@wintermute.wpi.edu (Lawrence Foard). Linus.
 */

/*
 * Automatic floppy-detection and formatting written by Werner Almesberger
 * (almesber@nessie.cs.id.ethz.ch), who also corrected some problems with
 * the floppy-change signal detection.
 */

/*
 * 1992/7/22 -- Hennus Bergman: Added better error reporting, fixed
 * FDC data overrun bug, added some preliminary stuff for vertical
 * recording support.
 *
 * 1992/9/17: Added DMA allocation & DMA functions. -- hhb.
 *
 * TODO: Errors are still not counted properly.
 */

/* 1992/9/20
 * Modifications for ``Sector Shifting'' by Rob Hooft (hooft@chem.ruu.nl)
 * modeled after the freeware MS-DOS program fdformat/88 V1.8 by
 * Christoph H. Hochst\"atter.
 * I have fixed the shift values to the ones I always use. Maybe a new
 * ioctl() should be created to be able to modify them.
 * There is a bug in the driver that makes it impossible to format a
 * floppy as the first thing after bootup.
 */

/*
 * 1993/4/29 -- Linus -- cleaned up the timer handling in the kernel, and
 * this helped the floppy driver as well. Much cleaner, and still seems to
 * work.
 */

/* 1994/6/24 --bbroad-- added the floppy table entries and made
 * minor modifications to allow 2.88 floppies to be run.
 */

/* 1994/7/13 -- Paul Vojta -- modified the probing code to allow three or more
 * disk types.
 */

/*
 * 1994/8/8 -- Alain Knaff -- Switched to fdpatch driver: Support for bigger
 * format bug fixes, but unfortunately some new bugs too...
 */

/* 1994/9/17 -- Koen Holtman -- added logging of physical floppy write
 * errors to allow safe writing by specialized programs.
 */

/* 1995/4/24 -- Dan Fandrich -- added support for Commodore 1581 3.5" disks
 * by defining bit 1 of the "stretch" parameter to mean put sectors on the
 * opposite side of the disk, leaving the sector IDs alone (i.e. Commodore's
 * drives are "upside-down").
 */

/*
 * 1995/8/26 -- Andreas Busse -- added Mips support.
 */

/*
 * 1995/10/18 -- Ralf Baechle -- Portability cleanup; move machine dependent
 * features to asm/floppy.h.
 */

J
James Nelson 已提交
101 102 103 104
/*
 * 1998/1/21 -- Richard Gooch <rgooch@atnf.csiro.au> -- devfs support
 */

L
Linus Torvalds 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
/*
 * 1998/05/07 -- Russell King -- More portability cleanups; moved definition of
 * interrupt and dma channel to asm/floppy.h. Cleaned up some formatting &
 * use of '0' for NULL.
 */

/*
 * 1998/06/07 -- Alan Cox -- Merged the 2.0.34 fixes for resource allocation
 * failures.
 */

/*
 * 1998/09/20 -- David Weinehall -- Added slow-down code for buggy PS/2-drives.
 */

/*
 * 1999/08/13 -- Paul Slootman -- floppy stopped working on Alpha after 24
 * days, 6 hours, 32 minutes and 32 seconds (i.e. MAXINT jiffies; ints were
 * being used to store jiffies, which are unsigned longs).
 */

/*
 * 2000/08/28 -- Arnaldo Carvalho de Melo <acme@conectiva.com.br>
 * - get rid of check_region
 * - s/suser/capable/
 */

/*
 * 2001/08/26 -- Paul Gortmaker - fix insmod oops on machines with no
 * floppy controller (lingering task on list after module is gone... boom.)
 */

/*
 * 2002/02/07 -- Anton Altaparmakov - Fix io ports reservation to correct range
 * (0x3f2-0x3f5, 0x3f7). This fix is a bit of a hack but the proper fix
 * requires many non-obvious changes in arch dependent code.
 */

/* 2003/07/28 -- Daniele Bellucci <bellucda@tiscali.it>.
 * Better audit of register_blkdev.
 */

#undef  FLOPPY_SILENT_DCL_CLEAR

#define REALLY_SLOW_IO

#define DEBUGT 2

153 154 155 156
#define DPRINT(format, args...) \
	pr_info("floppy%d: " format, current_drive, ##args)

#define DCL_DEBUG		/* debug disk change line */
157 158 159 160 161 162 163 164
#ifdef DCL_DEBUG
#define debug_dcl(test, fmt, args...) \
	do { if ((test) & FD_DEBUG) DPRINT(fmt, ##args); } while (0)
#else
#define debug_dcl(test, fmt, args...) \
	do { if (0) DPRINT(fmt, ##args); } while (0)
#endif

L
Linus Torvalds 已提交
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
/* do print messages for unexpected interrupts */
static int print_unex = 1;
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/fs.h>
#include <linux/kernel.h>
#include <linux/timer.h>
#include <linux/workqueue.h>
#define FDPATCHES
#include <linux/fdreg.h>
#include <linux/fd.h>
#include <linux/hdreg.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/mm.h>
#include <linux/bio.h>
#include <linux/string.h>
182
#include <linux/jiffies.h>
L
Linus Torvalds 已提交
183 184 185 186 187 188
#include <linux/fcntl.h>
#include <linux/delay.h>
#include <linux/mc146818rtc.h>	/* CMOS defines */
#include <linux/ioport.h>
#include <linux/interrupt.h>
#include <linux/init.h>
189
#include <linux/platform_device.h>
190
#include <linux/mod_devicetable.h>
191
#include <linux/mutex.h>
192 193
#include <linux/io.h>
#include <linux/uaccess.h>
194
#include <linux/async.h>
195
#include <linux/compat.h>
L
Linus Torvalds 已提交
196 197 198 199 200 201

/*
 * PS/2 floppies have much slower step rates than regular floppies.
 * It's been recommended that take about 1/4 of the default speed
 * in some more extreme cases.
 */
202
static DEFINE_MUTEX(floppy_mutex);
L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
static int slow_floppy;

#include <asm/dma.h>
#include <asm/irq.h>

static int FLOPPY_IRQ = 6;
static int FLOPPY_DMA = 2;
static int can_use_virtual_dma = 2;
/* =======
 * can use virtual DMA:
 * 0 = use of virtual DMA disallowed by config
 * 1 = use of virtual DMA prescribed by config
 * 2 = no virtual DMA preference configured.  By default try hard DMA,
 * but fall back on virtual DMA when not enough memory available
 */

static int use_virtual_dma;
/* =======
 * use virtual DMA
 * 0 using hard DMA
 * 1 using virtual DMA
 * This variable is set to virtual when a DMA mem problem arises, and
 * reset back in floppy_grab_irq_and_dma.
 * It is not safe to reset it in other circumstances, because the floppy
 * driver may have several buffers in use at once, and we do currently not
 * record each buffers capabilities
 */

static DEFINE_SPINLOCK(floppy_lock);

static unsigned short virtual_dma_port = 0x3f0;
234
irqreturn_t floppy_interrupt(int irq, void *dev_id);
L
Linus Torvalds 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
static int set_dor(int fdc, char mask, char data);

#define K_64	0x10000		/* 64KB */

/* the following is the mask of allowed drives. By default units 2 and
 * 3 of both floppy controllers are disabled, because switching on the
 * motor of these drives causes system hangs on some PCI computers. drive
 * 0 is the low bit (0x1), and drive 7 is the high bit (0x80). Bits are on if
 * a drive is allowed.
 *
 * NOTE: This must come before we include the arch floppy header because
 *       some ports reference this variable from there. -DaveM
 */

static int allowed_drive_mask = 0x33;

#include <asm/floppy.h>

static int irqdma_allocated;

O
Omar Sandoval 已提交
255
#include <linux/blk-mq.h>
L
Linus Torvalds 已提交
256 257 258 259
#include <linux/blkpg.h>
#include <linux/cdrom.h>	/* for the compatibility eject ioctl */
#include <linux/completion.h>

O
Omar Sandoval 已提交
260
static LIST_HEAD(floppy_reqs);
L
Linus Torvalds 已提交
261
static struct request *current_req;
262
static int set_next_request(void);
L
Linus Torvalds 已提交
263 264 265 266 267 268 269 270 271 272 273 274

#ifndef fd_get_dma_residue
#define fd_get_dma_residue() get_dma_residue(FLOPPY_DMA)
#endif

/* Dma Memory related stuff */

#ifndef fd_dma_mem_free
#define fd_dma_mem_free(addr, size) free_pages(addr, get_order(size))
#endif

#ifndef fd_dma_mem_alloc
275
#define fd_dma_mem_alloc(size) __get_dma_pages(GFP_KERNEL, get_order(size))
L
Linus Torvalds 已提交
276 277
#endif

278 279 280 281
#ifndef fd_cacheflush
#define fd_cacheflush(addr, size) /* nothing... */
#endif

L
Linus Torvalds 已提交
282 283 284 285 286 287 288
static inline void fallback_on_nodma_alloc(char **addr, size_t l)
{
#ifdef FLOPPY_CAN_FALLBACK_ON_NODMA
	if (*addr)
		return;		/* we have the memory */
	if (can_use_virtual_dma != 2)
		return;		/* no fallback allowed */
289
	pr_info("DMA memory shortage. Temporarily falling back on virtual DMA\n");
L
Linus Torvalds 已提交
290 291 292 293 294 295 296 297 298
	*addr = (char *)nodma_mem_alloc(l);
#else
	return;
#endif
}

/* End dma memory related stuff */

static unsigned long fake_change;
299
static bool initialized;
L
Linus Torvalds 已提交
300

301 302 303 304
#define ITYPE(x)	(((x) >> 2) & 0x1f)
#define TOMINOR(x)	((x & 3) | ((x & 4) << 5))
#define UNIT(x)		((x) & 0x03)		/* drive on fdc */
#define FDC(x)		(((x) & 0x04) >> 2)	/* fdc of drive */
305
	/* reverse mapping from unit and fdc to drive */
L
Linus Torvalds 已提交
306 307
#define REVDRIVE(fdc, unit) ((unit) + ((fdc) << 2))

308 309 310 311
#define DP	(&drive_params[current_drive])
#define DRS	(&drive_state[current_drive])
#define DRWE	(&write_errors[current_drive])
#define FDCS	(&fdc_state[fdc])
L
Linus Torvalds 已提交
312

313 314 315 316
#define UDP	(&drive_params[drive])
#define UDRS	(&drive_state[drive])
#define UDRWE	(&write_errors[drive])
#define UFDCS	(&fdc_state[FDC(drive)])
L
Linus Torvalds 已提交
317

318 319 320
#define PH_HEAD(floppy, head) (((((floppy)->stretch & 2) >> 1) ^ head) << 2)
#define STRETCH(floppy)	((floppy)->stretch & FD_STRETCH)

L
Linus Torvalds 已提交
321
/* read/write */
322 323 324 325 326 327 328 329 330
#define COMMAND		(raw_cmd->cmd[0])
#define DR_SELECT	(raw_cmd->cmd[1])
#define TRACK		(raw_cmd->cmd[2])
#define HEAD		(raw_cmd->cmd[3])
#define SECTOR		(raw_cmd->cmd[4])
#define SIZECODE	(raw_cmd->cmd[5])
#define SECT_PER_TRACK	(raw_cmd->cmd[6])
#define GAP		(raw_cmd->cmd[7])
#define SIZECODE2	(raw_cmd->cmd[8])
L
Linus Torvalds 已提交
331 332 333
#define NR_RW 9

/* format */
334 335 336 337
#define F_SIZECODE	(raw_cmd->cmd[2])
#define F_SECT_PER_TRACK (raw_cmd->cmd[3])
#define F_GAP		(raw_cmd->cmd[4])
#define F_FILL		(raw_cmd->cmd[5])
L
Linus Torvalds 已提交
338 339 340
#define NR_F 6

/*
341 342
 * Maximum disk size (in kilobytes).
 * This default is used whenever the current disk size is unknown.
L
Linus Torvalds 已提交
343 344 345 346 347 348 349 350 351
 * [Now it is rather a minimum]
 */
#define MAX_DISK_SIZE 4		/* 3984 */

/*
 * globals used by 'result()'
 */
#define MAX_REPLIES 16
static unsigned char reply_buffer[MAX_REPLIES];
352
static int inr;		/* size of reply buffer, when called from interrupt */
353 354 355 356 357 358 359 360 361 362
#define ST0		(reply_buffer[0])
#define ST1		(reply_buffer[1])
#define ST2		(reply_buffer[2])
#define ST3		(reply_buffer[0])	/* result of GETSTATUS */
#define R_TRACK		(reply_buffer[3])
#define R_HEAD		(reply_buffer[4])
#define R_SECTOR	(reply_buffer[5])
#define R_SIZECODE	(reply_buffer[6])

#define SEL_DLY		(2 * HZ / 100)
L
Linus Torvalds 已提交
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416

/*
 * this struct defines the different floppy drive types.
 */
static struct {
	struct floppy_drive_params params;
	const char *name;	/* name printed while booting */
} default_drive_params[] = {
/* NOTE: the time values in jiffies should be in msec!
 CMOS drive type
  |     Maximum data rate supported by drive type
  |     |   Head load time, msec
  |     |   |   Head unload time, msec (not used)
  |     |   |   |     Step rate interval, usec
  |     |   |   |     |       Time needed for spinup time (jiffies)
  |     |   |   |     |       |      Timeout for spinning down (jiffies)
  |     |   |   |     |       |      |   Spindown offset (where disk stops)
  |     |   |   |     |       |      |   |     Select delay
  |     |   |   |     |       |      |   |     |     RPS
  |     |   |   |     |       |      |   |     |     |    Max number of tracks
  |     |   |   |     |       |      |   |     |     |    |     Interrupt timeout
  |     |   |   |     |       |      |   |     |     |    |     |   Max nonintlv. sectors
  |     |   |   |     |       |      |   |     |     |    |     |   | -Max Errors- flags */
{{0,  500, 16, 16, 8000,    1*HZ, 3*HZ,  0, SEL_DLY, 5,  80, 3*HZ, 20, {3,1,2,0,2}, 0,
      0, { 7, 4, 8, 2, 1, 5, 3,10}, 3*HZ/2, 0 }, "unknown" },

{{1,  300, 16, 16, 8000,    1*HZ, 3*HZ,  0, SEL_DLY, 5,  40, 3*HZ, 17, {3,1,2,0,2}, 0,
      0, { 1, 0, 0, 0, 0, 0, 0, 0}, 3*HZ/2, 1 }, "360K PC" }, /*5 1/4 360 KB PC*/

{{2,  500, 16, 16, 6000, 4*HZ/10, 3*HZ, 14, SEL_DLY, 6,  83, 3*HZ, 17, {3,1,2,0,2}, 0,
      0, { 2, 5, 6,23,10,20,12, 0}, 3*HZ/2, 2 }, "1.2M" }, /*5 1/4 HD AT*/

{{3,  250, 16, 16, 3000,    1*HZ, 3*HZ,  0, SEL_DLY, 5,  83, 3*HZ, 20, {3,1,2,0,2}, 0,
      0, { 4,22,21,30, 3, 0, 0, 0}, 3*HZ/2, 4 }, "720k" }, /*3 1/2 DD*/

{{4,  500, 16, 16, 4000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5,  83, 3*HZ, 20, {3,1,2,0,2}, 0,
      0, { 7, 4,25,22,31,21,29,11}, 3*HZ/2, 7 }, "1.44M" }, /*3 1/2 HD*/

{{5, 1000, 15,  8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5,  83, 3*HZ, 40, {3,1,2,0,2}, 0,
      0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M AMI BIOS" }, /*3 1/2 ED*/

{{6, 1000, 15,  8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5,  83, 3*HZ, 40, {3,1,2,0,2}, 0,
      0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M" } /*3 1/2 ED*/
/*    |  --autodetected formats---    |      |      |
 *    read_track                      |      |    Name printed when booting
 *				      |     Native format
 *	            Frequency of disk change checks */
};

static struct floppy_drive_params drive_params[N_DRIVE];
static struct floppy_drive_struct drive_state[N_DRIVE];
static struct floppy_write_errors write_errors[N_DRIVE];
static struct timer_list motor_off_timer[N_DRIVE];
static struct gendisk *disks[N_DRIVE];
O
Omar Sandoval 已提交
417
static struct blk_mq_tag_set tag_sets[N_DRIVE];
L
Linus Torvalds 已提交
418
static struct block_device *opened_bdev[N_DRIVE];
419
static DEFINE_MUTEX(open_lock);
L
Linus Torvalds 已提交
420 421 422 423 424 425 426 427 428 429 430 431 432
static struct floppy_raw_cmd *raw_cmd, default_raw_cmd;

/*
 * This struct defines the different floppy types.
 *
 * Bit 0 of 'stretch' tells if the tracks need to be doubled for some
 * types (e.g. 360kB diskette in 1.2MB drive, etc.).  Bit 1 of 'stretch'
 * tells if the disk is in Commodore 1581 format, which means side 0 sectors
 * are located on side 1 of the disk but with a side 0 ID, and vice-versa.
 * This is the same as the Sharp MZ-80 5.25" CP/M disk format, except that the
 * 1581's logical side 0 is on physical side 1, whereas the Sharp's logical
 * side 0 is on physical side 0 (but with the misnamed sector IDs).
 * 'stretch' should probably be renamed to something more general, like
433 434 435 436 437 438 439 440 441
 * 'options'.
 *
 * Bits 2 through 9 of 'stretch' tell the number of the first sector.
 * The LSB (bit 2) is flipped. For most disks, the first sector
 * is 1 (represented by 0x00<<2).  For some CP/M and music sampler
 * disks (such as Ensoniq EPS 16plus) it is 0 (represented as 0x01<<2).
 * For Amstrad CPC disks it is 0xC1 (represented as 0xC0<<2).
 *
 * Other parameters should be self-explanatory (see also setfdprm(8)).
L
Linus Torvalds 已提交
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
 */
/*
	    Size
	     |  Sectors per track
	     |  | Head
	     |  | |  Tracks
	     |  | |  | Stretch
	     |  | |  | |  Gap 1 size
	     |  | |  | |    |  Data rate, | 0x40 for perp
	     |  | |  | |    |    |  Spec1 (stepping rate, head unload
	     |  | |  | |    |    |    |    /fmt gap (gap2) */
static struct floppy_struct floppy_type[32] = {
	{    0, 0,0, 0,0,0x00,0x00,0x00,0x00,NULL    },	/*  0 no testing    */
	{  720, 9,2,40,0,0x2A,0x02,0xDF,0x50,"d360"  }, /*  1 360KB PC      */
	{ 2400,15,2,80,0,0x1B,0x00,0xDF,0x54,"h1200" },	/*  2 1.2MB AT      */
	{  720, 9,1,80,0,0x2A,0x02,0xDF,0x50,"D360"  },	/*  3 360KB SS 3.5" */
	{ 1440, 9,2,80,0,0x2A,0x02,0xDF,0x50,"D720"  },	/*  4 720KB 3.5"    */
	{  720, 9,2,40,1,0x23,0x01,0xDF,0x50,"h360"  },	/*  5 360KB AT      */
	{ 1440, 9,2,80,0,0x23,0x01,0xDF,0x50,"h720"  },	/*  6 720KB AT      */
	{ 2880,18,2,80,0,0x1B,0x00,0xCF,0x6C,"H1440" },	/*  7 1.44MB 3.5"   */
	{ 5760,36,2,80,0,0x1B,0x43,0xAF,0x54,"E2880" },	/*  8 2.88MB 3.5"   */
	{ 6240,39,2,80,0,0x1B,0x43,0xAF,0x28,"E3120" },	/*  9 3.12MB 3.5"   */

	{ 2880,18,2,80,0,0x25,0x00,0xDF,0x02,"h1440" }, /* 10 1.44MB 5.25"  */
	{ 3360,21,2,80,0,0x1C,0x00,0xCF,0x0C,"H1680" }, /* 11 1.68MB 3.5"   */
	{  820,10,2,41,1,0x25,0x01,0xDF,0x2E,"h410"  },	/* 12 410KB 5.25"   */
	{ 1640,10,2,82,0,0x25,0x02,0xDF,0x2E,"H820"  },	/* 13 820KB 3.5"    */
	{ 2952,18,2,82,0,0x25,0x00,0xDF,0x02,"h1476" },	/* 14 1.48MB 5.25"  */
	{ 3444,21,2,82,0,0x25,0x00,0xDF,0x0C,"H1722" },	/* 15 1.72MB 3.5"   */
	{  840,10,2,42,1,0x25,0x01,0xDF,0x2E,"h420"  },	/* 16 420KB 5.25"   */
	{ 1660,10,2,83,0,0x25,0x02,0xDF,0x2E,"H830"  },	/* 17 830KB 3.5"    */
	{ 2988,18,2,83,0,0x25,0x00,0xDF,0x02,"h1494" },	/* 18 1.49MB 5.25"  */
	{ 3486,21,2,83,0,0x25,0x00,0xDF,0x0C,"H1743" }, /* 19 1.74 MB 3.5"  */

	{ 1760,11,2,80,0,0x1C,0x09,0xCF,0x00,"h880"  }, /* 20 880KB 5.25"   */
	{ 2080,13,2,80,0,0x1C,0x01,0xCF,0x00,"D1040" }, /* 21 1.04MB 3.5"   */
	{ 2240,14,2,80,0,0x1C,0x19,0xCF,0x00,"D1120" }, /* 22 1.12MB 3.5"   */
	{ 3200,20,2,80,0,0x1C,0x20,0xCF,0x2C,"h1600" }, /* 23 1.6MB 5.25"   */
	{ 3520,22,2,80,0,0x1C,0x08,0xCF,0x2e,"H1760" }, /* 24 1.76MB 3.5"   */
	{ 3840,24,2,80,0,0x1C,0x20,0xCF,0x00,"H1920" }, /* 25 1.92MB 3.5"   */
	{ 6400,40,2,80,0,0x25,0x5B,0xCF,0x00,"E3200" }, /* 26 3.20MB 3.5"   */
	{ 7040,44,2,80,0,0x25,0x5B,0xCF,0x00,"E3520" }, /* 27 3.52MB 3.5"   */
	{ 7680,48,2,80,0,0x25,0x63,0xCF,0x00,"E3840" }, /* 28 3.84MB 3.5"   */
	{ 3680,23,2,80,0,0x1C,0x10,0xCF,0x00,"H1840" }, /* 29 1.84MB 3.5"   */
486

L
Linus Torvalds 已提交
487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
	{ 1600,10,2,80,0,0x25,0x02,0xDF,0x2E,"D800"  },	/* 30 800KB 3.5"    */
	{ 3200,20,2,80,0,0x1C,0x00,0xCF,0x2C,"H1600" }, /* 31 1.6MB 3.5"    */
};

#define SECTSIZE (_FD_SECTSIZE(*floppy))

/* Auto-detection: Disk type used until the next media change occurs. */
static struct floppy_struct *current_type[N_DRIVE];

/*
 * User-provided type information. current_type points to
 * the respective entry of this array.
 */
static struct floppy_struct user_params[N_DRIVE];

static sector_t floppy_sizes[256];

504 505
static char floppy_device_name[] = "floppy";

L
Linus Torvalds 已提交
506 507 508 509 510 511 512 513
/*
 * The driver is trying to determine the correct media format
 * while probing is set. rw_interrupt() clears it after a
 * successful access.
 */
static int probing;

/* Synchronization of FDC access. */
514 515 516
#define FD_COMMAND_NONE		-1
#define FD_COMMAND_ERROR	2
#define FD_COMMAND_OKAY		3
L
Linus Torvalds 已提交
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544

static volatile int command_status = FD_COMMAND_NONE;
static unsigned long fdc_busy;
static DECLARE_WAIT_QUEUE_HEAD(fdc_wait);
static DECLARE_WAIT_QUEUE_HEAD(command_done);

/* Errors during formatting are counted here. */
static int format_errors;

/* Format request descriptor. */
static struct format_descr format_req;

/*
 * Rate is 0 for 500kb/s, 1 for 300kbps, 2 for 250kbps
 * Spec1 is 0xSH, where S is stepping rate (F=1ms, E=2ms, D=3ms etc),
 * H is head unload time (1=16ms, 2=32ms, etc)
 */

/*
 * Track buffer
 * Because these are written to by the DMA controller, they must
 * not contain a 64k byte boundary crossing, or data will be
 * corrupted/lost.
 */
static char *floppy_track_buffer;
static int max_buffer_sectors;

static int *errors;
545
typedef void (*done_f)(int);
546
static const struct cont_t {
547 548 549
	void (*interrupt)(void);
				/* this is called after the interrupt of the
				 * main command */
550 551
	void (*redo)(void);	/* this is called to retry the operation */
	void (*error)(void);	/* this is called to tally an error */
L
Linus Torvalds 已提交
552 553 554 555 556 557 558 559
	done_f done;		/* this is called to say if the operation has
				 * succeeded/failed */
} *cont;

static void floppy_ready(void);
static void floppy_start(void);
static void process_fd_request(void);
static void recalibrate_floppy(void);
560
static void floppy_shutdown(struct work_struct *);
L
Linus Torvalds 已提交
561

562 563
static int floppy_request_regions(int);
static void floppy_release_regions(int);
L
Linus Torvalds 已提交
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
static int floppy_grab_irq_and_dma(void);
static void floppy_release_irq_and_dma(void);

/*
 * The "reset" variable should be tested whenever an interrupt is scheduled,
 * after the commands have been sent. This is to ensure that the driver doesn't
 * get wedged when the interrupt doesn't come because of a failed command.
 * reset doesn't need to be tested before sending commands, because
 * output_byte is automatically disabled when reset is set.
 */
static void reset_fdc(void);

/*
 * These are global variables, as that's the easiest way to give
 * information to interrupts. They are the data used for the current
 * request.
 */
581 582 583
#define NO_TRACK	-1
#define NEED_1_RECAL	-2
#define NEED_2_RECAL	-3
L
Linus Torvalds 已提交
584

585
static atomic_t usage_count = ATOMIC_INIT(0);
L
Linus Torvalds 已提交
586 587 588 589 590 591 592 593 594 595 596

/* buffer related variables */
static int buffer_track = -1;
static int buffer_drive = -1;
static int buffer_min = -1;
static int buffer_max = -1;

/* fdc related variables, should end up in a struct */
static struct floppy_fdc_state fdc_state[N_FDC];
static int fdc;			/* current fdc */

597 598
static struct workqueue_struct *floppy_wq;

L
Linus Torvalds 已提交
599 600 601 602 603 604 605
static struct floppy_struct *_floppy = floppy_type;
static unsigned char current_drive;
static long current_count_sectors;
static unsigned char fsector_t;	/* sector in track */
static unsigned char in_sector_offset;	/* offset within physical sector,
					 * expressed in units of 512 bytes */

606 607 608 609 610
static inline bool drive_no_geom(int drive)
{
	return !current_type[drive] && !ITYPE(UDRS->fd_device);
}

L
Linus Torvalds 已提交
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
#ifndef fd_eject
static inline int fd_eject(int drive)
{
	return -EINVAL;
}
#endif

/*
 * Debugging
 * =========
 */
#ifdef DEBUGT
static long unsigned debugtimer;

static inline void set_debugt(void)
{
	debugtimer = jiffies;
}

630
static inline void debugt(const char *func, const char *msg)
L
Linus Torvalds 已提交
631 632
{
	if (DP->flags & DEBUGT)
633
		pr_info("%s:%s dtime=%lu\n", func, msg, jiffies - debugtimer);
L
Linus Torvalds 已提交
634 635 636
}
#else
static inline void set_debugt(void) { }
637
static inline void debugt(const char *func, const char *msg) { }
L
Linus Torvalds 已提交
638 639 640
#endif /* DEBUGT */


641
static DECLARE_DELAYED_WORK(fd_timeout, floppy_shutdown);
L
Linus Torvalds 已提交
642 643
static const char *timeout_message;

644
static void is_alive(const char *func, const char *message)
L
Linus Torvalds 已提交
645 646
{
	/* this routine checks whether the floppy driver is "alive" */
647
	if (test_bit(0, &fdc_busy) && command_status < 2 &&
648
	    !delayed_work_pending(&fd_timeout)) {
649
		DPRINT("%s: timeout handler died.  %s\n", func, message);
L
Linus Torvalds 已提交
650 651 652
	}
}

653
static void (*do_floppy)(void) = NULL;
L
Linus Torvalds 已提交
654 655 656

#define OLOGSIZE 20

657
static void (*lasthandler)(void);
L
Linus Torvalds 已提交
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
static unsigned long interruptjiffies;
static unsigned long resultjiffies;
static int resultsize;
static unsigned long lastredo;

static struct output_log {
	unsigned char data;
	unsigned char status;
	unsigned long jiffies;
} output_log[OLOGSIZE];

static int output_log_pos;

#define current_reqD -1
#define MAXTIMEOUT -2

674
static void __reschedule_timeout(int drive, const char *message)
L
Linus Torvalds 已提交
675
{
676 677
	unsigned long delay;

L
Linus Torvalds 已提交
678 679
	if (drive == current_reqD)
		drive = current_drive;
680

681
	if (drive < 0 || drive >= N_DRIVE) {
682
		delay = 20UL * HZ;
L
Linus Torvalds 已提交
683 684
		drive = 0;
	} else
685 686
		delay = UDP->timeout;

687
	mod_delayed_work(floppy_wq, &fd_timeout, delay);
688
	if (UDP->flags & FD_DEBUG)
689
		DPRINT("reschedule timeout %s\n", message);
L
Linus Torvalds 已提交
690 691 692
	timeout_message = message;
}

693
static void reschedule_timeout(int drive, const char *message)
L
Linus Torvalds 已提交
694 695 696 697
{
	unsigned long flags;

	spin_lock_irqsave(&floppy_lock, flags);
698
	__reschedule_timeout(drive, message);
L
Linus Torvalds 已提交
699 700 701
	spin_unlock_irqrestore(&floppy_lock, flags);
}

702 703
#define INFBOUND(a, b) (a) = max_t(int, a, b)
#define SUPBOUND(a, b) (a) = min_t(int, a, b)
L
Linus Torvalds 已提交
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740

/*
 * Bottom half floppy driver.
 * ==========================
 *
 * This part of the file contains the code talking directly to the hardware,
 * and also the main service loop (seek-configure-spinup-command)
 */

/*
 * disk change.
 * This routine is responsible for maintaining the FD_DISK_CHANGE flag,
 * and the last_checked date.
 *
 * last_checked is the date of the last check which showed 'no disk change'
 * FD_DISK_CHANGE is set under two conditions:
 * 1. The floppy has been changed after some i/o to that floppy already
 *    took place.
 * 2. No floppy disk is in the drive. This is done in order to ensure that
 *    requests are quickly flushed in case there is no disk in the drive. It
 *    follows that FD_DISK_CHANGE can only be cleared if there is a disk in
 *    the drive.
 *
 * For 1., maxblock is observed. Maxblock is 0 if no i/o has taken place yet.
 * For 2., FD_DISK_NEWCHANGE is watched. FD_DISK_NEWCHANGE is cleared on
 *  each seek. If a disk is present, the disk change line should also be
 *  cleared on each seek. Thus, if FD_DISK_NEWCHANGE is clear, but the disk
 *  change line is set, this means either that no disk is in the drive, or
 *  that it has been removed since the last seek.
 *
 * This means that we really have a third possibility too:
 *  The floppy has been changed after the last seek.
 */

static int disk_change(int drive)
{
	int fdc = FDC(drive);
741

742
	if (time_before(jiffies, UDRS->select_date + UDP->select_delay))
L
Linus Torvalds 已提交
743 744 745 746 747 748 749 750
		DPRINT("WARNING disk change called early\n");
	if (!(FDCS->dor & (0x10 << UNIT(drive))) ||
	    (FDCS->dor & 3) != UNIT(drive) || fdc != FDC(drive)) {
		DPRINT("probing disk change on unselected drive\n");
		DPRINT("drive=%d fdc=%d dor=%x\n", drive, FDC(drive),
		       (unsigned int)FDCS->dor);
	}

751 752 753 754 755 756
	debug_dcl(UDP->flags,
		  "checking disk change line for drive %d\n", drive);
	debug_dcl(UDP->flags, "jiffies=%lu\n", jiffies);
	debug_dcl(UDP->flags, "disk change line=%x\n", fd_inb(FD_DIR) & 0x80);
	debug_dcl(UDP->flags, "flags=%lx\n", UDRS->flags);

L
Linus Torvalds 已提交
757
	if (UDP->flags & FD_BROKEN_DCL)
758
		return test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
L
Linus Torvalds 已提交
759
	if ((fd_inb(FD_DIR) ^ UDP->flags) & 0x80) {
760 761 762 763 764
		set_bit(FD_VERIFY_BIT, &UDRS->flags);
					/* verify write protection */

		if (UDRS->maxblock)	/* mark it changed */
			set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
L
Linus Torvalds 已提交
765 766 767 768 769

		/* invalidate its geometry */
		if (UDRS->keep_data >= 0) {
			if ((UDP->flags & FTD_MSG) &&
			    current_type[drive] != NULL)
770
				DPRINT("Disk type is undefined after disk change\n");
L
Linus Torvalds 已提交
771 772 773 774 775 776 777
			current_type[drive] = NULL;
			floppy_sizes[TOMINOR(drive)] = MAX_DISK_SIZE << 1;
		}

		return 1;
	} else {
		UDRS->last_checked = jiffies;
778
		clear_bit(FD_DISK_NEWCHANGE_BIT, &UDRS->flags);
L
Linus Torvalds 已提交
779 780 781 782 783 784 785 786 787
	}
	return 0;
}

static inline int is_selected(int dor, int unit)
{
	return ((dor & (0x10 << unit)) && (dor & 3) == unit);
}

788 789 790 791 792 793
static bool is_ready_state(int status)
{
	int state = status & (STATUS_READY | STATUS_DIR | STATUS_DMA);
	return state == STATUS_READY;
}

L
Linus Torvalds 已提交
794 795
static int set_dor(int fdc, char mask, char data)
{
796 797 798 799
	unsigned char unit;
	unsigned char drive;
	unsigned char newdor;
	unsigned char olddor;
L
Linus Torvalds 已提交
800 801 802 803 804 805 806 807 808 809

	if (FDCS->address == -1)
		return -1;

	olddor = FDCS->dor;
	newdor = (olddor & mask) | data;
	if (newdor != olddor) {
		unit = olddor & 0x3;
		if (is_selected(olddor, unit) && !is_selected(newdor, unit)) {
			drive = REVDRIVE(fdc, unit);
810 811
			debug_dcl(UDP->flags,
				  "calling disk change from set_dor\n");
L
Linus Torvalds 已提交
812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
			disk_change(drive);
		}
		FDCS->dor = newdor;
		fd_outb(newdor, FD_DOR);

		unit = newdor & 0x3;
		if (!is_selected(olddor, unit) && is_selected(newdor, unit)) {
			drive = REVDRIVE(fdc, unit);
			UDRS->select_date = jiffies;
		}
	}
	return olddor;
}

static void twaddle(void)
{
	if (DP->select_delay)
		return;
	fd_outb(FDCS->dor & ~(0x10 << UNIT(current_drive)), FD_DOR);
	fd_outb(FDCS->dor, FD_DOR);
	DRS->select_date = jiffies;
}

835 836 837 838
/*
 * Reset all driver information about the current fdc.
 * This is needed after a reset, and after a raw command.
 */
L
Linus Torvalds 已提交
839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
static void reset_fdc_info(int mode)
{
	int drive;

	FDCS->spec1 = FDCS->spec2 = -1;
	FDCS->need_configure = 1;
	FDCS->perp_mode = 1;
	FDCS->rawcmd = 0;
	for (drive = 0; drive < N_DRIVE; drive++)
		if (FDC(drive) == fdc && (mode || UDRS->track != NEED_1_RECAL))
			UDRS->track = NEED_2_RECAL;
}

/* selects the fdc and drive, and enables the fdc's input/dma. */
static void set_fdc(int drive)
{
	if (drive >= 0 && drive < N_DRIVE) {
		fdc = FDC(drive);
		current_drive = drive;
	}
	if (fdc != 1 && fdc != 0) {
860
		pr_info("bad fdc value\n");
L
Linus Torvalds 已提交
861 862 863 864 865 866 867 868 869 870 871 872 873
		return;
	}
	set_dor(fdc, ~0, 8);
#if N_FDC > 1
	set_dor(1 - fdc, ~8, 0);
#endif
	if (FDCS->rawcmd == 2)
		reset_fdc_info(1);
	if (fd_inb(FD_STATUS) != STATUS_READY)
		FDCS->reset = 1;
}

/* locks the driver */
874
static int lock_fdc(int drive)
L
Linus Torvalds 已提交
875
{
876 877
	if (WARN(atomic_read(&usage_count) == 0,
		 "Trying to lock fdc while usage count=0\n"))
L
Linus Torvalds 已提交
878 879
		return -1;

880 881
	if (wait_event_interruptible(fdc_wait, !test_and_set_bit(0, &fdc_busy)))
		return -EINTR;
L
Linus Torvalds 已提交
882 883 884

	command_status = FD_COMMAND_NONE;

885
	reschedule_timeout(drive, "lock fdc");
L
Linus Torvalds 已提交
886 887 888 889 890
	set_fdc(drive);
	return 0;
}

/* unlocks the driver */
891
static void unlock_fdc(void)
L
Linus Torvalds 已提交
892 893 894 895
{
	if (!test_bit(0, &fdc_busy))
		DPRINT("FDC access conflict!\n");

896
	raw_cmd = NULL;
L
Linus Torvalds 已提交
897
	command_status = FD_COMMAND_NONE;
898
	cancel_delayed_work(&fd_timeout);
899
	do_floppy = NULL;
L
Linus Torvalds 已提交
900 901 902 903 904 905
	cont = NULL;
	clear_bit(0, &fdc_busy);
	wake_up(&fdc_wait);
}

/* switches the motor off after a given timeout */
906
static void motor_off_callback(struct timer_list *t)
L
Linus Torvalds 已提交
907
{
908
	unsigned long nr = t - motor_off_timer;
L
Linus Torvalds 已提交
909 910
	unsigned char mask = ~(0x10 << UNIT(nr));

911 912 913
	if (WARN_ON_ONCE(nr >= N_DRIVE))
		return;

L
Linus Torvalds 已提交
914 915 916 917 918 919 920
	set_dor(FDC(nr), mask, 0);
}

/* schedules motor off */
static void floppy_off(unsigned int drive)
{
	unsigned long volatile delta;
921
	int fdc = FDC(drive);
L
Linus Torvalds 已提交
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946

	if (!(FDCS->dor & (0x10 << UNIT(drive))))
		return;

	del_timer(motor_off_timer + drive);

	/* make spindle stop in a position which minimizes spinup time
	 * next time */
	if (UDP->rps) {
		delta = jiffies - UDRS->first_read_date + HZ -
		    UDP->spindown_offset;
		delta = ((delta * UDP->rps) % HZ) / UDP->rps;
		motor_off_timer[drive].expires =
		    jiffies + UDP->spindown - delta;
	}
	add_timer(motor_off_timer + drive);
}

/*
 * cycle through all N_DRIVE floppy drives, for disk change testing.
 * stopping at current drive. This is done before any long operation, to
 * be sure to have up to date disk change information.
 */
static void scandrives(void)
{
947 948 949
	int i;
	int drive;
	int saved_drive;
L
Linus Torvalds 已提交
950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972

	if (DP->select_delay)
		return;

	saved_drive = current_drive;
	for (i = 0; i < N_DRIVE; i++) {
		drive = (saved_drive + i + 1) % N_DRIVE;
		if (UDRS->fd_ref == 0 || UDP->select_delay != 0)
			continue;	/* skip closed drives */
		set_fdc(drive);
		if (!(set_dor(fdc, ~3, UNIT(drive) | (0x10 << UNIT(drive))) &
		      (0x10 << UNIT(drive))))
			/* switch the motor off again, if it was off to
			 * begin with */
			set_dor(fdc, ~(0x10 << UNIT(drive)), 0);
	}
	set_fdc(saved_drive);
}

static void empty(void)
{
}

973 974 975 976 977 978 979 980
static void (*floppy_work_fn)(void);

static void floppy_work_workfn(struct work_struct *work)
{
	floppy_work_fn();
}

static DECLARE_WORK(floppy_work, floppy_work_workfn);
L
Linus Torvalds 已提交
981

982
static void schedule_bh(void (*handler)(void))
L
Linus Torvalds 已提交
983
{
984 985
	WARN_ON(work_pending(&floppy_work));

986
	floppy_work_fn = handler;
987
	queue_work(floppy_wq, &floppy_work);
L
Linus Torvalds 已提交
988 989
}

990 991 992 993 994 995 996 997
static void (*fd_timer_fn)(void) = NULL;

static void fd_timer_workfn(struct work_struct *work)
{
	fd_timer_fn();
}

static DECLARE_DELAYED_WORK(fd_timer, fd_timer_workfn);
L
Linus Torvalds 已提交
998 999 1000 1001

static void cancel_activity(void)
{
	do_floppy = NULL;
1002 1003
	cancel_delayed_work_sync(&fd_timer);
	cancel_work_sync(&floppy_work);
L
Linus Torvalds 已提交
1004 1005 1006 1007
}

/* this function makes sure that the disk stays in the drive during the
 * transfer */
1008
static void fd_watchdog(void)
L
Linus Torvalds 已提交
1009
{
1010
	debug_dcl(DP->flags, "calling disk change from watchdog\n");
L
Linus Torvalds 已提交
1011 1012 1013 1014 1015 1016 1017

	if (disk_change(current_drive)) {
		DPRINT("disk removed during i/o\n");
		cancel_activity();
		cont->done(0);
		reset_fdc();
	} else {
1018
		cancel_delayed_work(&fd_timer);
1019
		fd_timer_fn = fd_watchdog;
1020
		queue_delayed_work(floppy_wq, &fd_timer, HZ / 10);
L
Linus Torvalds 已提交
1021 1022 1023 1024 1025
	}
}

static void main_command_interrupt(void)
{
1026
	cancel_delayed_work(&fd_timer);
L
Linus Torvalds 已提交
1027 1028 1029 1030
	cont->interrupt();
}

/* waits for a delay (spinup or select) to pass */
1031 1032
static int fd_wait_for_completion(unsigned long expires,
				  void (*function)(void))
L
Linus Torvalds 已提交
1033 1034 1035 1036 1037 1038 1039 1040
{
	if (FDCS->reset) {
		reset_fdc();	/* do the reset during sleep to win time
				 * if we don't need to sleep, it's a good
				 * occasion anyways */
		return 1;
	}

1041 1042
	if (time_before(jiffies, expires)) {
		cancel_delayed_work(&fd_timer);
1043
		fd_timer_fn = function;
1044
		queue_delayed_work(floppy_wq, &fd_timer, expires - jiffies);
L
Linus Torvalds 已提交
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056
		return 1;
	}
	return 0;
}

static void setup_DMA(void)
{
	unsigned long f;

	if (raw_cmd->length == 0) {
		int i;

1057
		pr_info("zero dma transfer size:");
L
Linus Torvalds 已提交
1058
		for (i = 0; i < raw_cmd->cmd_count; i++)
1059 1060
			pr_cont("%x,", raw_cmd->cmd[i]);
		pr_cont("\n");
L
Linus Torvalds 已提交
1061 1062 1063 1064 1065
		cont->done(0);
		FDCS->reset = 1;
		return;
	}
	if (((unsigned long)raw_cmd->kernel_data) % 512) {
1066
		pr_info("non aligned address: %p\n", raw_cmd->kernel_data);
L
Linus Torvalds 已提交
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
		cont->done(0);
		FDCS->reset = 1;
		return;
	}
	f = claim_dma_lock();
	fd_disable_dma();
#ifdef fd_dma_setup
	if (fd_dma_setup(raw_cmd->kernel_data, raw_cmd->length,
			 (raw_cmd->flags & FD_RAW_READ) ?
			 DMA_MODE_READ : DMA_MODE_WRITE, FDCS->address) < 0) {
		release_dma_lock(f);
		cont->done(0);
		FDCS->reset = 1;
		return;
	}
	release_dma_lock(f);
#else
	fd_clear_dma_ff();
	fd_cacheflush(raw_cmd->kernel_data, raw_cmd->length);
	fd_set_dma_mode((raw_cmd->flags & FD_RAW_READ) ?
			DMA_MODE_READ : DMA_MODE_WRITE);
	fd_set_dma_addr(raw_cmd->kernel_data);
	fd_set_dma_count(raw_cmd->length);
	virtual_dma_port = FDCS->address;
	fd_enable_dma();
	release_dma_lock(f);
#endif
}

static void show_floppy(void);

/* waits until the fdc becomes ready */
static int wait_til_ready(void)
{
1101 1102 1103
	int status;
	int counter;

L
Linus Torvalds 已提交
1104 1105 1106 1107 1108 1109 1110
	if (FDCS->reset)
		return -1;
	for (counter = 0; counter < 10000; counter++) {
		status = fd_inb(FD_STATUS);
		if (status & STATUS_READY)
			return status;
	}
1111
	if (initialized) {
L
Linus Torvalds 已提交
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
		DPRINT("Getstatus times out (%x) on fdc %d\n", status, fdc);
		show_floppy();
	}
	FDCS->reset = 1;
	return -1;
}

/* sends a command byte to the fdc */
static int output_byte(char byte)
{
1122
	int status = wait_til_ready();
L
Linus Torvalds 已提交
1123

1124
	if (status < 0)
L
Linus Torvalds 已提交
1125
		return -1;
1126 1127

	if (is_ready_state(status)) {
L
Linus Torvalds 已提交
1128 1129 1130 1131 1132 1133 1134 1135
		fd_outb(byte, FD_DATA);
		output_log[output_log_pos].data = byte;
		output_log[output_log_pos].status = status;
		output_log[output_log_pos].jiffies = jiffies;
		output_log_pos = (output_log_pos + 1) % OLOGSIZE;
		return 0;
	}
	FDCS->reset = 1;
1136
	if (initialized) {
L
Linus Torvalds 已提交
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
		DPRINT("Unable to send byte %x to FDC. Fdc=%x Status=%x\n",
		       byte, fdc, status);
		show_floppy();
	}
	return -1;
}

/* gets the response from the fdc */
static int result(void)
{
1147 1148
	int i;
	int status = 0;
L
Linus Torvalds 已提交
1149 1150

	for (i = 0; i < MAX_REPLIES; i++) {
1151 1152
		status = wait_til_ready();
		if (status < 0)
L
Linus Torvalds 已提交
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
			break;
		status &= STATUS_DIR | STATUS_READY | STATUS_BUSY | STATUS_DMA;
		if ((status & ~STATUS_BUSY) == STATUS_READY) {
			resultjiffies = jiffies;
			resultsize = i;
			return i;
		}
		if (status == (STATUS_DIR | STATUS_READY | STATUS_BUSY))
			reply_buffer[i] = fd_inb(FD_DATA);
		else
			break;
	}
1165 1166 1167
	if (initialized) {
		DPRINT("get result error. Fdc=%d Last status=%x Read bytes=%d\n",
		       fdc, status, i);
L
Linus Torvalds 已提交
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
		show_floppy();
	}
	FDCS->reset = 1;
	return -1;
}

#define MORE_OUTPUT -2
/* does the fdc need more output? */
static int need_more_output(void)
{
1178
	int status = wait_til_ready();
1179

1180
	if (status < 0)
L
Linus Torvalds 已提交
1181
		return -1;
1182 1183

	if (is_ready_state(status))
L
Linus Torvalds 已提交
1184
		return MORE_OUTPUT;
1185

L
Linus Torvalds 已提交
1186 1187 1188 1189 1190 1191
	return result();
}

/* Set perpendicular mode as required, based on data rate, if supported.
 * 82077 Now tested. 1Mbps data rate only possible with 82077-1.
 */
1192
static void perpendicular_mode(void)
L
Linus Torvalds 已提交
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
{
	unsigned char perp_mode;

	if (raw_cmd->rate & 0x40) {
		switch (raw_cmd->rate & 3) {
		case 0:
			perp_mode = 2;
			break;
		case 3:
			perp_mode = 3;
			break;
		default:
			DPRINT("Invalid data rate for perpendicular mode!\n");
			cont->done(0);
1207 1208 1209 1210 1211 1212
			FDCS->reset = 1;
					/*
					 * convenient way to return to
					 * redo without too much hassle
					 * (deep stack et al.)
					 */
L
Linus Torvalds 已提交
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
			return;
		}
	} else
		perp_mode = 0;

	if (FDCS->perp_mode == perp_mode)
		return;
	if (FDCS->version >= FDC_82077_ORIG) {
		output_byte(FD_PERPENDICULAR);
		output_byte(perp_mode);
		FDCS->perp_mode = perp_mode;
	} else if (perp_mode) {
		DPRINT("perpendicular mode not supported by this FDC.\n");
	}
}				/* perpendicular_mode */

static int fifo_depth = 0xa;
static int no_fifo;

static int fdc_configure(void)
{
	/* Turn on FIFO */
	output_byte(FD_CONFIGURE);
	if (need_more_output() != MORE_OUTPUT)
		return 0;
	output_byte(0);
	output_byte(0x10 | (no_fifo & 0x20) | (fifo_depth & 0xf));
	output_byte(0);		/* pre-compensation from track
				   0 upwards */
	return 1;
}

#define NOMINAL_DTR 500

/* Issue a "SPECIFY" command to set the step rate time, head unload time,
 * head load time, and DMA disable flag to values needed by floppy.
 *
 * The value "dtr" is the data transfer rate in Kbps.  It is needed
 * to account for the data rate-based scaling done by the 82072 and 82077
 * FDC types.  This parameter is ignored for other types of FDCs (i.e.
 * 8272a).
 *
 * Note that changing the data transfer rate has a (probably deleterious)
 * effect on the parameters subject to scaling for 82072/82077 FDCs, so
 * fdc_specify is called again after each data transfer rate
 * change.
 *
 * srt: 1000 to 16000 in microseconds
 * hut: 16 to 240 milliseconds
 * hlt: 2 to 254 milliseconds
 *
 * These values are rounded up to the next highest available delay time.
 */
static void fdc_specify(void)
{
1268 1269 1270 1271 1272
	unsigned char spec1;
	unsigned char spec2;
	unsigned long srt;
	unsigned long hlt;
	unsigned long hut;
L
Linus Torvalds 已提交
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
	unsigned long dtr = NOMINAL_DTR;
	unsigned long scale_dtr = NOMINAL_DTR;
	int hlt_max_code = 0x7f;
	int hut_max_code = 0xf;

	if (FDCS->need_configure && FDCS->version >= FDC_82072A) {
		fdc_configure();
		FDCS->need_configure = 0;
	}

	switch (raw_cmd->rate & 0x03) {
	case 3:
		dtr = 1000;
		break;
	case 1:
		dtr = 300;
		if (FDCS->version >= FDC_82078) {
			/* chose the default rate table, not the one
			 * where 1 = 2 Mbps */
			output_byte(FD_DRIVESPEC);
			if (need_more_output() == MORE_OUTPUT) {
				output_byte(UNIT(current_drive));
				output_byte(0xc0);
			}
		}
		break;
	case 2:
		dtr = 250;
		break;
	}

	if (FDCS->version >= FDC_82072) {
		scale_dtr = dtr;
		hlt_max_code = 0x00;	/* 0==256msec*dtr0/dtr (not linear!) */
		hut_max_code = 0x0;	/* 0==256msec*dtr0/dtr (not linear!) */
	}

	/* Convert step rate from microseconds to milliseconds and 4 bits */
J
Julia Lawall 已提交
1311
	srt = 16 - DIV_ROUND_UP(DP->srt * scale_dtr / 1000, NOMINAL_DTR);
1312
	if (slow_floppy)
L
Linus Torvalds 已提交
1313
		srt = srt / 4;
1314

L
Linus Torvalds 已提交
1315 1316 1317
	SUPBOUND(srt, 0xf);
	INFBOUND(srt, 0);

J
Julia Lawall 已提交
1318
	hlt = DIV_ROUND_UP(DP->hlt * scale_dtr / 2, NOMINAL_DTR);
L
Linus Torvalds 已提交
1319 1320 1321 1322 1323
	if (hlt < 0x01)
		hlt = 0x01;
	else if (hlt > 0x7f)
		hlt = hlt_max_code;

J
Julia Lawall 已提交
1324
	hut = DIV_ROUND_UP(DP->hut * scale_dtr / 16, NOMINAL_DTR);
L
Linus Torvalds 已提交
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360
	if (hut < 0x1)
		hut = 0x1;
	else if (hut > 0xf)
		hut = hut_max_code;

	spec1 = (srt << 4) | hut;
	spec2 = (hlt << 1) | (use_virtual_dma & 1);

	/* If these parameters did not change, just return with success */
	if (FDCS->spec1 != spec1 || FDCS->spec2 != spec2) {
		/* Go ahead and set spec1 and spec2 */
		output_byte(FD_SPECIFY);
		output_byte(FDCS->spec1 = spec1);
		output_byte(FDCS->spec2 = spec2);
	}
}				/* fdc_specify */

/* Set the FDC's data transfer rate on behalf of the specified drive.
 * NOTE: with 82072/82077 FDCs, changing the data rate requires a reissue
 * of the specify command (i.e. using the fdc_specify function).
 */
static int fdc_dtr(void)
{
	/* If data rate not already set to desired value, set it. */
	if ((raw_cmd->rate & 3) == FDCS->dtr)
		return 0;

	/* Set dtr */
	fd_outb(raw_cmd->rate & 3, FD_DCR);

	/* TODO: some FDC/drive combinations (C&T 82C711 with TEAC 1.2MB)
	 * need a stabilization period of several milliseconds to be
	 * enforced after data rate changes before R/W operations.
	 * Pause 5 msec to avoid trouble. (Needs to be 2 jiffies)
	 */
	FDCS->dtr = raw_cmd->rate & 3;
1361
	return fd_wait_for_completion(jiffies + 2UL * HZ / 100, floppy_ready);
L
Linus Torvalds 已提交
1362 1363 1364 1365
}				/* fdc_dtr */

static void tell_sector(void)
{
1366 1367
	pr_cont(": track %d, head %d, sector %d, size %d",
		R_TRACK, R_HEAD, R_SECTOR, R_SIZECODE);
L
Linus Torvalds 已提交
1368 1369
}				/* tell_sector */

1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399
static void print_errors(void)
{
	DPRINT("");
	if (ST0 & ST0_ECE) {
		pr_cont("Recalibrate failed!");
	} else if (ST2 & ST2_CRC) {
		pr_cont("data CRC error");
		tell_sector();
	} else if (ST1 & ST1_CRC) {
		pr_cont("CRC error");
		tell_sector();
	} else if ((ST1 & (ST1_MAM | ST1_ND)) ||
		   (ST2 & ST2_MAM)) {
		if (!probing) {
			pr_cont("sector not found");
			tell_sector();
		} else
			pr_cont("probe failed...");
	} else if (ST2 & ST2_WC) {	/* seek error */
		pr_cont("wrong cylinder");
	} else if (ST2 & ST2_BC) {	/* cylinder marked as bad */
		pr_cont("bad cylinder");
	} else {
		pr_cont("unknown error. ST[0..2] are: 0x%x 0x%x 0x%x",
			ST0, ST1, ST2);
		tell_sector();
	}
	pr_cont("\n");
}

L
Linus Torvalds 已提交
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
/*
 * OK, this error interpreting routine is called after a
 * DMA read/write has succeeded
 * or failed, so we check the results, and copy any buffers.
 * hhb: Added better error reporting.
 * ak: Made this into a separate routine.
 */
static int interpret_errors(void)
{
	char bad;

	if (inr != 7) {
1412
		DPRINT("-- FDC reply error\n");
L
Linus Torvalds 已提交
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424
		FDCS->reset = 1;
		return 1;
	}

	/* check IC to find cause of interrupt */
	switch (ST0 & ST0_INTR) {
	case 0x40:		/* error occurred during command execution */
		if (ST1 & ST1_EOC)
			return 0;	/* occurs with pseudo-DMA */
		bad = 1;
		if (ST1 & ST1_WP) {
			DPRINT("Drive is write protected\n");
1425
			clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
L
Linus Torvalds 已提交
1426 1427 1428
			cont->done(0);
			bad = 2;
		} else if (ST1 & ST1_ND) {
1429
			set_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
L
Linus Torvalds 已提交
1430 1431 1432 1433 1434
		} else if (ST1 & ST1_OR) {
			if (DP->flags & FTD_MSG)
				DPRINT("Over/Underrun - retrying\n");
			bad = 0;
		} else if (*errors >= DP->max_errors.reporting) {
1435
			print_errors();
L
Linus Torvalds 已提交
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
		}
		if (ST2 & ST2_WC || ST2 & ST2_BC)
			/* wrong cylinder => recal */
			DRS->track = NEED_2_RECAL;
		return bad;
	case 0x80:		/* invalid command given */
		DPRINT("Invalid FDC command given!\n");
		cont->done(0);
		return 2;
	case 0xc0:
		DPRINT("Abnormal termination caused by polling\n");
		cont->error();
		return 2;
	default:		/* (0) Normal command termination */
		return 0;
	}
}

/*
 * This routine is called when everything should be correctly set up
 * for the transfer (i.e. floppy motor is on, the correct floppy is
 * selected, and the head is sitting on the right track).
 */
static void setup_rw_floppy(void)
{
1461 1462 1463
	int i;
	int r;
	int flags;
L
Linus Torvalds 已提交
1464
	unsigned long ready_date;
1465
	void (*function)(void);
L
Linus Torvalds 已提交
1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476

	flags = raw_cmd->flags;
	if (flags & (FD_RAW_READ | FD_RAW_WRITE))
		flags |= FD_RAW_INTR;

	if ((flags & FD_RAW_SPIN) && !(flags & FD_RAW_NO_MOTOR)) {
		ready_date = DRS->spinup_date + DP->spinup;
		/* If spinup will take a long time, rerun scandrives
		 * again just before spinup completion. Beware that
		 * after scandrives, we must again wait for selection.
		 */
1477
		if (time_after(ready_date, jiffies + DP->select_delay)) {
L
Linus Torvalds 已提交
1478
			ready_date -= DP->select_delay;
1479
			function = floppy_start;
L
Linus Torvalds 已提交
1480
		} else
1481
			function = setup_rw_floppy;
L
Linus Torvalds 已提交
1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496

		/* wait until the floppy is spinning fast enough */
		if (fd_wait_for_completion(ready_date, function))
			return;
	}
	if ((flags & FD_RAW_READ) || (flags & FD_RAW_WRITE))
		setup_DMA();

	if (flags & FD_RAW_INTR)
		do_floppy = main_command_interrupt;

	r = 0;
	for (i = 0; i < raw_cmd->cmd_count; i++)
		r |= output_byte(raw_cmd->cmd[i]);

1497
	debugt(__func__, "rw_command");
L
Linus Torvalds 已提交
1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508

	if (r) {
		cont->error();
		reset_fdc();
		return;
	}

	if (!(flags & FD_RAW_INTR)) {
		inr = result();
		cont->interrupt();
	} else if (flags & FD_RAW_NEED_DISK)
1509
		fd_watchdog();
L
Linus Torvalds 已提交
1510 1511 1512 1513 1514 1515 1516 1517 1518 1519
}

static int blind_seek;

/*
 * This is the routine called after every seek (or recalibrate) interrupt
 * from the floppy controller.
 */
static void seek_interrupt(void)
{
1520
	debugt(__func__, "");
L
Linus Torvalds 已提交
1521 1522 1523 1524 1525 1526 1527 1528
	if (inr != 2 || (ST0 & 0xF8) != 0x20) {
		DPRINT("seek failed\n");
		DRS->track = NEED_2_RECAL;
		cont->error();
		cont->redo();
		return;
	}
	if (DRS->track >= 0 && DRS->track != ST1 && !blind_seek) {
1529 1530 1531
		debug_dcl(DP->flags,
			  "clearing NEWCHANGE flag because of effective seek\n");
		debug_dcl(DP->flags, "jiffies=%lu\n", jiffies);
1532 1533
		clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
					/* effective seek */
L
Linus Torvalds 已提交
1534 1535 1536 1537 1538 1539 1540 1541
		DRS->select_date = jiffies;
	}
	DRS->track = ST1;
	floppy_ready();
}

static void check_wp(void)
{
1542 1543
	if (test_bit(FD_VERIFY_BIT, &DRS->flags)) {
					/* check write protection */
L
Linus Torvalds 已提交
1544 1545 1546 1547 1548 1549
		output_byte(FD_GETSTATUS);
		output_byte(UNIT(current_drive));
		if (result() != 1) {
			FDCS->reset = 1;
			return;
		}
1550 1551
		clear_bit(FD_VERIFY_BIT, &DRS->flags);
		clear_bit(FD_NEED_TWADDLE_BIT, &DRS->flags);
1552 1553 1554
		debug_dcl(DP->flags,
			  "checking whether disk is write protected\n");
		debug_dcl(DP->flags, "wp=%x\n", ST3 & 0x40);
L
Linus Torvalds 已提交
1555
		if (!(ST3 & 0x40))
1556
			set_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
L
Linus Torvalds 已提交
1557
		else
1558
			clear_bit(FD_DISK_WRITABLE_BIT, &DRS->flags);
L
Linus Torvalds 已提交
1559 1560 1561 1562 1563 1564 1565 1566 1567
	}
}

static void seek_floppy(void)
{
	int track;

	blind_seek = 0;

1568
	debug_dcl(DP->flags, "calling disk change from %s\n", __func__);
L
Linus Torvalds 已提交
1569

1570
	if (!test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
L
Linus Torvalds 已提交
1571 1572 1573 1574 1575
	    disk_change(current_drive) && (raw_cmd->flags & FD_RAW_NEED_DISK)) {
		/* the media changed flag should be cleared after the seek.
		 * If it isn't, this means that there is really no disk in
		 * the drive.
		 */
1576
		set_bit(FD_DISK_CHANGED_BIT, &DRS->flags);
L
Linus Torvalds 已提交
1577 1578 1579 1580 1581 1582 1583
		cont->done(0);
		cont->redo();
		return;
	}
	if (DRS->track <= NEED_1_RECAL) {
		recalibrate_floppy();
		return;
1584
	} else if (test_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags) &&
L
Linus Torvalds 已提交
1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
		   (raw_cmd->flags & FD_RAW_NEED_DISK) &&
		   (DRS->track <= NO_TRACK || DRS->track == raw_cmd->track)) {
		/* we seek to clear the media-changed condition. Does anybody
		 * know a more elegant way, which works on all drives? */
		if (raw_cmd->track)
			track = raw_cmd->track - 1;
		else {
			if (DP->flags & FD_SILENT_DCL_CLEAR) {
				set_dor(fdc, ~(0x10 << UNIT(current_drive)), 0);
				blind_seek = 1;
				raw_cmd->flags |= FD_RAW_NEED_SEEK;
			}
			track = 1;
		}
	} else {
		check_wp();
		if (raw_cmd->track != DRS->track &&
		    (raw_cmd->flags & FD_RAW_NEED_SEEK))
			track = raw_cmd->track;
		else {
			setup_rw_floppy();
			return;
		}
	}

	do_floppy = seek_interrupt;
	output_byte(FD_SEEK);
	output_byte(UNIT(current_drive));
1613 1614 1615 1616
	if (output_byte(track) < 0) {
		reset_fdc();
		return;
	}
1617
	debugt(__func__, "");
L
Linus Torvalds 已提交
1618 1619 1620 1621
}

static void recal_interrupt(void)
{
1622
	debugt(__func__, "");
L
Linus Torvalds 已提交
1623 1624 1625 1626 1627
	if (inr != 2)
		FDCS->reset = 1;
	else if (ST0 & ST0_ECE) {
		switch (DRS->track) {
		case NEED_1_RECAL:
1628
			debugt(__func__, "need 1 recal");
L
Linus Torvalds 已提交
1629 1630 1631 1632 1633 1634 1635 1636
			/* after a second recalibrate, we still haven't
			 * reached track 0. Probably no drive. Raise an
			 * error, as failing immediately might upset
			 * computers possessed by the Devil :-) */
			cont->error();
			cont->redo();
			return;
		case NEED_2_RECAL:
1637
			debugt(__func__, "need 2 recal");
L
Linus Torvalds 已提交
1638 1639 1640 1641 1642 1643
			/* If we already did a recalibrate,
			 * and we are not at track 0, this
			 * means we have moved. (The only way
			 * not to move at recalibration is to
			 * be already at track 0.) Clear the
			 * new change flag */
1644 1645
			debug_dcl(DP->flags,
				  "clearing NEWCHANGE flag because of second recalibrate\n");
L
Linus Torvalds 已提交
1646

1647
			clear_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
L
Linus Torvalds 已提交
1648 1649 1650
			DRS->select_date = jiffies;
			/* fall through */
		default:
1651
			debugt(__func__, "default");
L
Linus Torvalds 已提交
1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672
			/* Recalibrate moves the head by at
			 * most 80 steps. If after one
			 * recalibrate we don't have reached
			 * track 0, this might mean that we
			 * started beyond track 80.  Try
			 * again.  */
			DRS->track = NEED_1_RECAL;
			break;
		}
	} else
		DRS->track = ST1;
	floppy_ready();
}

static void print_result(char *message, int inr)
{
	int i;

	DPRINT("%s ", message);
	if (inr >= 0)
		for (i = 0; i < inr; i++)
1673 1674
			pr_cont("repl[%d]=%x ", i, reply_buffer[i]);
	pr_cont("\n");
L
Linus Torvalds 已提交
1675 1676 1677
}

/* interrupt handler. Note that this can be called externally on the Sparc */
1678
irqreturn_t floppy_interrupt(int irq, void *dev_id)
L
Linus Torvalds 已提交
1679 1680 1681
{
	int do_print;
	unsigned long f;
1682
	void (*handler)(void) = do_floppy;
L
Linus Torvalds 已提交
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693

	lasthandler = handler;
	interruptjiffies = jiffies;

	f = claim_dma_lock();
	fd_disable_dma();
	release_dma_lock(f);

	do_floppy = NULL;
	if (fdc >= N_FDC || FDCS->address == -1) {
		/* we don't even know which FDC is the culprit */
1694 1695
		pr_info("DOR0=%x\n", fdc_state[0].dor);
		pr_info("floppy interrupt on bizarre fdc %d\n", fdc);
1696
		pr_info("handler=%pf\n", handler);
1697
		is_alive(__func__, "bizarre fdc");
L
Linus Torvalds 已提交
1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710
		return IRQ_NONE;
	}

	FDCS->reset = 0;
	/* We have to clear the reset flag here, because apparently on boxes
	 * with level triggered interrupts (PS/2, Sparc, ...), it is needed to
	 * emit SENSEI's to clear the interrupt line. And FDCS->reset blocks the
	 * emission of the SENSEI's.
	 * It is OK to emit floppy commands because we are in an interrupt
	 * handler here, and thus we have to fear no interference of other
	 * activity.
	 */

1711
	do_print = !handler && print_unex && initialized;
L
Linus Torvalds 已提交
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723

	inr = result();
	if (do_print)
		print_result("unexpected interrupt", inr);
	if (inr == 0) {
		int max_sensei = 4;
		do {
			output_byte(FD_SENSEI);
			inr = result();
			if (do_print)
				print_result("sensei", inr);
			max_sensei--;
1724 1725
		} while ((ST0 & 0x83) != UNIT(current_drive) &&
			 inr == 2 && max_sensei);
L
Linus Torvalds 已提交
1726 1727 1728 1729 1730 1731
	}
	if (!handler) {
		FDCS->reset = 1;
		return IRQ_NONE;
	}
	schedule_bh(handler);
1732
	is_alive(__func__, "normal interrupt end");
L
Linus Torvalds 已提交
1733 1734 1735 1736 1737 1738 1739

	/* FIXME! Was it really for us? */
	return IRQ_HANDLED;
}

static void recalibrate_floppy(void)
{
1740
	debugt(__func__, "");
L
Linus Torvalds 已提交
1741 1742
	do_floppy = recal_interrupt;
	output_byte(FD_RECALIBRATE);
1743
	if (output_byte(UNIT(current_drive)) < 0)
1744
		reset_fdc();
L
Linus Torvalds 已提交
1745 1746 1747 1748 1749 1750 1751
}

/*
 * Must do 4 FD_SENSEIs after reset because of ``drive polling''.
 */
static void reset_interrupt(void)
{
1752
	debugt(__func__, "");
L
Linus Torvalds 已提交
1753 1754
	result();		/* get the status ready for set_fdc */
	if (FDCS->reset) {
1755
		pr_info("reset set in interrupt, calling %pf\n", cont->error);
L
Linus Torvalds 已提交
1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792
		cont->error();	/* a reset just after a reset. BAD! */
	}
	cont->redo();
}

/*
 * reset is done by pulling bit 2 of DOR low for a while (old FDCs),
 * or by setting the self clearing bit 7 of STATUS (newer FDCs)
 */
static void reset_fdc(void)
{
	unsigned long flags;

	do_floppy = reset_interrupt;
	FDCS->reset = 0;
	reset_fdc_info(0);

	/* Pseudo-DMA may intercept 'reset finished' interrupt.  */
	/* Irrelevant for systems with true DMA (i386).          */

	flags = claim_dma_lock();
	fd_disable_dma();
	release_dma_lock(flags);

	if (FDCS->version >= FDC_82072A)
		fd_outb(0x80 | (FDCS->dtr & 3), FD_STATUS);
	else {
		fd_outb(FDCS->dor & ~0x04, FD_DOR);
		udelay(FD_RESET_DELAY);
		fd_outb(FDCS->dor, FD_DOR);
	}
}

static void show_floppy(void)
{
	int i;

1793 1794 1795
	pr_info("\n");
	pr_info("floppy driver state\n");
	pr_info("-------------------\n");
1796
	pr_info("now=%lu last interrupt=%lu diff=%lu last called handler=%pf\n",
1797 1798
		jiffies, interruptjiffies, jiffies - interruptjiffies,
		lasthandler);
L
Linus Torvalds 已提交
1799

1800 1801
	pr_info("timeout_message=%s\n", timeout_message);
	pr_info("last output bytes:\n");
L
Linus Torvalds 已提交
1802
	for (i = 0; i < OLOGSIZE; i++)
1803 1804 1805 1806 1807 1808 1809 1810
		pr_info("%2x %2x %lu\n",
			output_log[(i + output_log_pos) % OLOGSIZE].data,
			output_log[(i + output_log_pos) % OLOGSIZE].status,
			output_log[(i + output_log_pos) % OLOGSIZE].jiffies);
	pr_info("last result at %lu\n", resultjiffies);
	pr_info("last redo_fd_request at %lu\n", lastredo);
	print_hex_dump(KERN_INFO, "", DUMP_PREFIX_NONE, 16, 1,
		       reply_buffer, resultsize, true);
L
Linus Torvalds 已提交
1811

1812 1813
	pr_info("status=%x\n", fd_inb(FD_STATUS));
	pr_info("fdc_busy=%lu\n", fdc_busy);
L
Linus Torvalds 已提交
1814
	if (do_floppy)
1815
		pr_info("do_floppy=%pf\n", do_floppy);
1816
	if (work_pending(&floppy_work))
1817
		pr_info("floppy_work.func=%pf\n", floppy_work.func);
1818 1819 1820 1821 1822 1823 1824 1825 1826
	if (delayed_work_pending(&fd_timer))
		pr_info("delayed work.function=%p expires=%ld\n",
		       fd_timer.work.func,
		       fd_timer.timer.expires - jiffies);
	if (delayed_work_pending(&fd_timeout))
		pr_info("timer_function=%p expires=%ld\n",
		       fd_timeout.work.func,
		       fd_timeout.timer.expires - jiffies);

1827 1828 1829 1830
	pr_info("cont=%p\n", cont);
	pr_info("current_req=%p\n", current_req);
	pr_info("command_status=%d\n", command_status);
	pr_info("\n");
L
Linus Torvalds 已提交
1831 1832
}

1833
static void floppy_shutdown(struct work_struct *arg)
L
Linus Torvalds 已提交
1834 1835 1836
{
	unsigned long flags;

1837
	if (initialized)
L
Linus Torvalds 已提交
1838 1839 1840 1841 1842 1843 1844 1845 1846
		show_floppy();
	cancel_activity();

	flags = claim_dma_lock();
	fd_disable_dma();
	release_dma_lock(flags);

	/* avoid dma going to a random drive after shutdown */

1847
	if (initialized)
L
Linus Torvalds 已提交
1848 1849 1850 1851 1852 1853
		DPRINT("floppy timeout called\n");
	FDCS->reset = 1;
	if (cont) {
		cont->done(0);
		cont->redo();	/* this will recall reset when needed */
	} else {
1854
		pr_info("no cont in shutdown!\n");
L
Linus Torvalds 已提交
1855 1856
		process_fd_request();
	}
1857
	is_alive(__func__, "");
L
Linus Torvalds 已提交
1858 1859 1860
}

/* start motor, check media-changed condition and write protection */
1861
static int start_motor(void (*function)(void))
L
Linus Torvalds 已提交
1862
{
1863 1864
	int mask;
	int data;
L
Linus Torvalds 已提交
1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884

	mask = 0xfc;
	data = UNIT(current_drive);
	if (!(raw_cmd->flags & FD_RAW_NO_MOTOR)) {
		if (!(FDCS->dor & (0x10 << UNIT(current_drive)))) {
			set_debugt();
			/* no read since this drive is running */
			DRS->first_read_date = 0;
			/* note motor start time if motor is not yet running */
			DRS->spinup_date = jiffies;
			data |= (0x10 << UNIT(current_drive));
		}
	} else if (FDCS->dor & (0x10 << UNIT(current_drive)))
		mask &= ~(0x10 << UNIT(current_drive));

	/* starts motor and selects floppy */
	del_timer(motor_off_timer + current_drive);
	set_dor(fdc, mask, data);

	/* wait_for_completion also schedules reset if needed. */
1885
	return fd_wait_for_completion(DRS->select_date + DP->select_delay,
1886
				      function);
L
Linus Torvalds 已提交
1887 1888 1889 1890
}

static void floppy_ready(void)
{
1891 1892 1893 1894
	if (FDCS->reset) {
		reset_fdc();
		return;
	}
L
Linus Torvalds 已提交
1895 1896 1897 1898 1899
	if (start_motor(floppy_ready))
		return;
	if (fdc_dtr())
		return;

1900
	debug_dcl(DP->flags, "calling disk change from floppy_ready\n");
L
Linus Torvalds 已提交
1901 1902
	if (!(raw_cmd->flags & FD_RAW_NO_MOTOR) &&
	    disk_change(current_drive) && !DP->select_delay)
1903 1904
		twaddle();	/* this clears the dcl on certain
				 * drive/controller combinations */
L
Linus Torvalds 已提交
1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927

#ifdef fd_chose_dma_mode
	if ((raw_cmd->flags & FD_RAW_READ) || (raw_cmd->flags & FD_RAW_WRITE)) {
		unsigned long flags = claim_dma_lock();
		fd_chose_dma_mode(raw_cmd->kernel_data, raw_cmd->length);
		release_dma_lock(flags);
	}
#endif

	if (raw_cmd->flags & (FD_RAW_NEED_SEEK | FD_RAW_NEED_DISK)) {
		perpendicular_mode();
		fdc_specify();	/* must be done here because of hut, hlt ... */
		seek_floppy();
	} else {
		if ((raw_cmd->flags & FD_RAW_READ) ||
		    (raw_cmd->flags & FD_RAW_WRITE))
			fdc_specify();
		setup_rw_floppy();
	}
}

static void floppy_start(void)
{
1928
	reschedule_timeout(current_reqD, "floppy start");
L
Linus Torvalds 已提交
1929 1930

	scandrives();
1931
	debug_dcl(DP->flags, "setting NEWCHANGE in floppy_start\n");
1932
	set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
L
Linus Torvalds 已提交
1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951
	floppy_ready();
}

/*
 * ========================================================================
 * here ends the bottom half. Exported routines are:
 * floppy_start, floppy_off, floppy_ready, lock_fdc, unlock_fdc, set_fdc,
 * start_motor, reset_fdc, reset_fdc_info, interpret_errors.
 * Initialization also uses output_byte, result, set_dor, floppy_interrupt
 * and set_dor.
 * ========================================================================
 */
/*
 * General purpose continuations.
 * ==============================
 */

static void do_wakeup(void)
{
1952
	reschedule_timeout(MAXTIMEOUT, "do wakeup");
L
Linus Torvalds 已提交
1953 1954 1955 1956 1957
	cont = NULL;
	command_status += 2;
	wake_up(&command_done);
}

1958
static const struct cont_t wakeup_cont = {
L
Linus Torvalds 已提交
1959 1960 1961
	.interrupt	= empty,
	.redo		= do_wakeup,
	.error		= empty,
1962
	.done		= (done_f)empty
L
Linus Torvalds 已提交
1963 1964
};

1965
static const struct cont_t intr_cont = {
L
Linus Torvalds 已提交
1966 1967 1968
	.interrupt	= empty,
	.redo		= process_fd_request,
	.error		= empty,
1969
	.done		= (done_f)empty
L
Linus Torvalds 已提交
1970 1971
};

1972
static int wait_til_done(void (*handler)(void), bool interruptible)
L
Linus Torvalds 已提交
1973 1974 1975 1976 1977
{
	int ret;

	schedule_bh(handler);

1978 1979 1980 1981
	if (interruptible)
		wait_event_interruptible(command_done, command_status >= 2);
	else
		wait_event(command_done, command_status >= 2);
L
Linus Torvalds 已提交
1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066

	if (command_status < 2) {
		cancel_activity();
		cont = &intr_cont;
		reset_fdc();
		return -EINTR;
	}

	if (FDCS->reset)
		command_status = FD_COMMAND_ERROR;
	if (command_status == FD_COMMAND_OKAY)
		ret = 0;
	else
		ret = -EIO;
	command_status = FD_COMMAND_NONE;
	return ret;
}

static void generic_done(int result)
{
	command_status = result;
	cont = &wakeup_cont;
}

static void generic_success(void)
{
	cont->done(1);
}

static void generic_failure(void)
{
	cont->done(0);
}

static void success_and_wakeup(void)
{
	generic_success();
	cont->redo();
}

/*
 * formatting and rw support.
 * ==========================
 */

static int next_valid_format(void)
{
	int probed_format;

	probed_format = DRS->probed_format;
	while (1) {
		if (probed_format >= 8 || !DP->autodetect[probed_format]) {
			DRS->probed_format = 0;
			return 1;
		}
		if (floppy_type[DP->autodetect[probed_format]].sect) {
			DRS->probed_format = probed_format;
			return 0;
		}
		probed_format++;
	}
}

static void bad_flp_intr(void)
{
	int err_count;

	if (probing) {
		DRS->probed_format++;
		if (!next_valid_format())
			return;
	}
	err_count = ++(*errors);
	INFBOUND(DRWE->badness, err_count);
	if (err_count > DP->max_errors.abort)
		cont->done(0);
	if (err_count > DP->max_errors.reset)
		FDCS->reset = 1;
	else if (err_count > DP->max_errors.recal)
		DRS->track = NEED_2_RECAL;
}

static void set_floppy(int drive)
{
	int type = ITYPE(UDRS->fd_device);
2067

L
Linus Torvalds 已提交
2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090
	if (type)
		_floppy = floppy_type + type;
	else
		_floppy = current_type[drive];
}

/*
 * formatting support.
 * ===================
 */
static void format_interrupt(void)
{
	switch (interpret_errors()) {
	case 1:
		cont->error();
	case 2:
		break;
	case 0:
		cont->done(1);
	}
	cont->redo();
}

2091
#define FM_MODE(x, y) ((y) & ~(((x)->rate & 0x80) >> 1))
L
Linus Torvalds 已提交
2092
#define CT(x) ((x) | 0xc0)
2093

L
Linus Torvalds 已提交
2094 2095
static void setup_format_params(int track)
{
2096 2097 2098 2099 2100
	int n;
	int il;
	int count;
	int head_shift;
	int track_shift;
L
Linus Torvalds 已提交
2101 2102 2103 2104 2105 2106 2107
	struct fparm {
		unsigned char track, head, sect, size;
	} *here = (struct fparm *)floppy_track_buffer;

	raw_cmd = &default_raw_cmd;
	raw_cmd->track = track;

2108 2109
	raw_cmd->flags = (FD_RAW_WRITE | FD_RAW_INTR | FD_RAW_SPIN |
			  FD_RAW_NEED_DISK | FD_RAW_NEED_SEEK);
L
Linus Torvalds 已提交
2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156
	raw_cmd->rate = _floppy->rate & 0x43;
	raw_cmd->cmd_count = NR_F;
	COMMAND = FM_MODE(_floppy, FD_FORMAT);
	DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, format_req.head);
	F_SIZECODE = FD_SIZECODE(_floppy);
	F_SECT_PER_TRACK = _floppy->sect << 2 >> F_SIZECODE;
	F_GAP = _floppy->fmt_gap;
	F_FILL = FD_FILL_BYTE;

	raw_cmd->kernel_data = floppy_track_buffer;
	raw_cmd->length = 4 * F_SECT_PER_TRACK;

	/* allow for about 30ms for data transport per track */
	head_shift = (F_SECT_PER_TRACK + 5) / 6;

	/* a ``cylinder'' is two tracks plus a little stepping time */
	track_shift = 2 * head_shift + 3;

	/* position of logical sector 1 on this track */
	n = (track_shift * format_req.track + head_shift * format_req.head)
	    % F_SECT_PER_TRACK;

	/* determine interleave */
	il = 1;
	if (_floppy->fmt_gap < 0x22)
		il++;

	/* initialize field */
	for (count = 0; count < F_SECT_PER_TRACK; ++count) {
		here[count].track = format_req.track;
		here[count].head = format_req.head;
		here[count].sect = 0;
		here[count].size = F_SIZECODE;
	}
	/* place logical sectors */
	for (count = 1; count <= F_SECT_PER_TRACK; ++count) {
		here[n].sect = count;
		n = (n + il) % F_SECT_PER_TRACK;
		if (here[n].sect) {	/* sector busy, find next free sector */
			++n;
			if (n >= F_SECT_PER_TRACK) {
				n -= F_SECT_PER_TRACK;
				while (here[n].sect)
					++n;
			}
		}
	}
2157
	if (_floppy->stretch & FD_SECTBASEMASK) {
L
Linus Torvalds 已提交
2158
		for (count = 0; count < F_SECT_PER_TRACK; count++)
2159
			here[count].sect += FD_SECTBASE(_floppy) - 1;
L
Linus Torvalds 已提交
2160 2161 2162 2163 2164 2165 2166 2167
	}
}

static void redo_format(void)
{
	buffer_track = -1;
	setup_format_params(format_req.track << STRETCH(_floppy));
	floppy_start();
2168
	debugt(__func__, "queue format request");
L
Linus Torvalds 已提交
2169 2170
}

2171
static const struct cont_t format_cont = {
L
Linus Torvalds 已提交
2172 2173 2174 2175 2176 2177 2178 2179 2180 2181
	.interrupt	= format_interrupt,
	.redo		= redo_format,
	.error		= bad_flp_intr,
	.done		= generic_done
};

static int do_format(int drive, struct format_descr *tmp_format_req)
{
	int ret;

2182
	if (lock_fdc(drive))
2183 2184
		return -EINTR;

L
Linus Torvalds 已提交
2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198
	set_floppy(drive);
	if (!_floppy ||
	    _floppy->track > DP->tracks ||
	    tmp_format_req->track >= _floppy->track ||
	    tmp_format_req->head >= _floppy->head ||
	    (_floppy->sect << 2) % (1 << FD_SIZECODE(_floppy)) ||
	    !_floppy->fmt_gap) {
		process_fd_request();
		return -EINVAL;
	}
	format_req = *tmp_format_req;
	format_errors = 0;
	cont = &format_cont;
	errors = &format_errors;
2199
	ret = wait_til_done(redo_format, true);
2200 2201
	if (ret == -EINTR)
		return -EINTR;
L
Linus Torvalds 已提交
2202 2203 2204 2205 2206 2207 2208 2209 2210
	process_fd_request();
	return ret;
}

/*
 * Buffer read/write and support
 * =============================
 */

2211
static void floppy_end_request(struct request *req, blk_status_t error)
L
Linus Torvalds 已提交
2212 2213
{
	unsigned int nr_sectors = current_count_sectors;
2214
	unsigned int drive = (unsigned long)req->rq_disk->private_data;
L
Linus Torvalds 已提交
2215 2216

	/* current_count_sectors can be zero if transfer failed */
2217
	if (error)
2218
		nr_sectors = blk_rq_cur_sectors(req);
O
Omar Sandoval 已提交
2219
	if (blk_update_request(req, error, nr_sectors << 9))
L
Linus Torvalds 已提交
2220
		return;
O
Omar Sandoval 已提交
2221
	__blk_mq_end_request(req, error);
L
Linus Torvalds 已提交
2222 2223

	/* We're done with the request */
2224
	floppy_off(drive);
L
Linus Torvalds 已提交
2225 2226 2227 2228 2229 2230 2231 2232
	current_req = NULL;
}

/* new request_done. Can handle physical sectors which are smaller than a
 * logical buffer */
static void request_done(int uptodate)
{
	struct request *req = current_req;
2233
	struct request_queue *q;
L
Linus Torvalds 已提交
2234
	int block;
2235
	char msg[sizeof("request done ") + sizeof(int) * 3];
L
Linus Torvalds 已提交
2236 2237

	probing = 0;
2238 2239
	snprintf(msg, sizeof(msg), "request done %d", uptodate);
	reschedule_timeout(MAXTIMEOUT, msg);
L
Linus Torvalds 已提交
2240 2241

	if (!req) {
2242
		pr_info("floppy.c: no request in request_done\n");
L
Linus Torvalds 已提交
2243 2244 2245
		return;
	}

2246 2247
	q = req->q;

L
Linus Torvalds 已提交
2248 2249 2250
	if (uptodate) {
		/* maintain values for invalidation on geometry
		 * change */
2251
		block = current_count_sectors + blk_rq_pos(req);
L
Linus Torvalds 已提交
2252 2253 2254 2255
		INFBOUND(DRS->maxblock, block);
		if (block > _floppy->sect)
			DRS->maxtrack = 1;

2256
		floppy_end_request(req, 0);
L
Linus Torvalds 已提交
2257 2258 2259 2260 2261
	} else {
		if (rq_data_dir(req) == WRITE) {
			/* record write error information */
			DRWE->write_errors++;
			if (DRWE->write_errors == 1) {
2262
				DRWE->first_error_sector = blk_rq_pos(req);
L
Linus Torvalds 已提交
2263 2264
				DRWE->first_error_generation = DRS->generation;
			}
2265
			DRWE->last_error_sector = blk_rq_pos(req);
L
Linus Torvalds 已提交
2266 2267
			DRWE->last_error_generation = DRS->generation;
		}
2268
		floppy_end_request(req, BLK_STS_IOERR);
L
Linus Torvalds 已提交
2269 2270 2271 2272 2273 2274
	}
}

/* Interrupt handler evaluating the result of the r/w operation */
static void rw_interrupt(void)
{
2275 2276 2277 2278
	int eoc;
	int ssize;
	int heads;
	int nr_sectors;
L
Linus Torvalds 已提交
2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290

	if (R_HEAD >= 2) {
		/* some Toshiba floppy controllers occasionnally seem to
		 * return bogus interrupts after read/write operations, which
		 * can be recognized by a bad head number (>= 2) */
		return;
	}

	if (!DRS->first_read_date)
		DRS->first_read_date = jiffies;

	nr_sectors = 0;
2291
	ssize = DIV_ROUND_UP(1 << SIZECODE, 4);
L
Linus Torvalds 已提交
2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307

	if (ST1 & ST1_EOC)
		eoc = 1;
	else
		eoc = 0;

	if (COMMAND & 0x80)
		heads = 2;
	else
		heads = 1;

	nr_sectors = (((R_TRACK - TRACK) * heads +
		       R_HEAD - HEAD) * SECT_PER_TRACK +
		      R_SECTOR - SECTOR + eoc) << SIZECODE >> 2;

	if (nr_sectors / ssize >
J
Julia Lawall 已提交
2308
	    DIV_ROUND_UP(in_sector_offset + current_count_sectors, ssize)) {
L
Linus Torvalds 已提交
2309 2310
		DPRINT("long rw: %x instead of %lx\n",
		       nr_sectors, current_count_sectors);
2311 2312 2313 2314 2315 2316 2317
		pr_info("rs=%d s=%d\n", R_SECTOR, SECTOR);
		pr_info("rh=%d h=%d\n", R_HEAD, HEAD);
		pr_info("rt=%d t=%d\n", R_TRACK, TRACK);
		pr_info("heads=%d eoc=%d\n", heads, eoc);
		pr_info("spt=%d st=%d ss=%d\n",
			SECT_PER_TRACK, fsector_t, ssize);
		pr_info("in_sector_offset=%d\n", in_sector_offset);
L
Linus Torvalds 已提交
2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354
	}

	nr_sectors -= in_sector_offset;
	INFBOUND(nr_sectors, 0);
	SUPBOUND(current_count_sectors, nr_sectors);

	switch (interpret_errors()) {
	case 2:
		cont->redo();
		return;
	case 1:
		if (!current_count_sectors) {
			cont->error();
			cont->redo();
			return;
		}
		break;
	case 0:
		if (!current_count_sectors) {
			cont->redo();
			return;
		}
		current_type[current_drive] = _floppy;
		floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
		break;
	}

	if (probing) {
		if (DP->flags & FTD_MSG)
			DPRINT("Auto-detected floppy type %s in fd%d\n",
			       _floppy->name, current_drive);
		current_type[current_drive] = _floppy;
		floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
		probing = 0;
	}

	if (CT(COMMAND) != FD_READ ||
2355
	    raw_cmd->kernel_data == bio_data(current_req->bio)) {
L
Linus Torvalds 已提交
2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368
		/* transfer directly from buffer */
		cont->done(1);
	} else if (CT(COMMAND) == FD_READ) {
		buffer_track = raw_cmd->track;
		buffer_drive = current_drive;
		INFBOUND(buffer_max, nr_sectors + fsector_t);
	}
	cont->redo();
}

/* Compute maximal contiguous buffer size. */
static int buffer_chain_size(void)
{
2369
	struct bio_vec bv;
2370 2371
	int size;
	struct req_iterator iter;
L
Linus Torvalds 已提交
2372 2373 2374 2375 2376
	char *base;

	base = bio_data(current_req->bio);
	size = 0;

2377
	rq_for_each_segment(bv, current_req, iter) {
2378
		if (page_address(bv.bv_page) + bv.bv_offset != base + size)
2379
			break;
L
Linus Torvalds 已提交
2380

2381
		size += bv.bv_len;
L
Linus Torvalds 已提交
2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406
	}

	return size >> 9;
}

/* Compute the maximal transfer size */
static int transfer_size(int ssize, int max_sector, int max_size)
{
	SUPBOUND(max_sector, fsector_t + max_size);

	/* alignment */
	max_sector -= (max_sector % _floppy->sect) % ssize;

	/* transfer size, beginning not aligned */
	current_count_sectors = max_sector - fsector_t;

	return max_sector;
}

/*
 * Move data from/to the track buffer to/from the buffer cache.
 */
static void copy_buffer(int ssize, int max_sector, int max_sector_2)
{
	int remaining;		/* number of transferred 512-byte sectors */
2407
	struct bio_vec bv;
2408 2409
	char *buffer;
	char *dma_buffer;
2410 2411
	int size;
	struct req_iterator iter;
L
Linus Torvalds 已提交
2412 2413 2414

	max_sector = transfer_size(ssize,
				   min(max_sector, max_sector_2),
2415
				   blk_rq_sectors(current_req));
L
Linus Torvalds 已提交
2416 2417

	if (current_count_sectors <= 0 && CT(COMMAND) == FD_WRITE &&
2418
	    buffer_max > fsector_t + blk_rq_sectors(current_req))
L
Linus Torvalds 已提交
2419
		current_count_sectors = min_t(int, buffer_max - fsector_t,
2420
					      blk_rq_sectors(current_req));
L
Linus Torvalds 已提交
2421 2422

	remaining = current_count_sectors << 9;
2423
	if (remaining > blk_rq_bytes(current_req) && CT(COMMAND) == FD_WRITE) {
L
Linus Torvalds 已提交
2424
		DPRINT("in copy buffer\n");
2425 2426 2427 2428 2429 2430 2431 2432
		pr_info("current_count_sectors=%ld\n", current_count_sectors);
		pr_info("remaining=%d\n", remaining >> 9);
		pr_info("current_req->nr_sectors=%u\n",
			blk_rq_sectors(current_req));
		pr_info("current_req->current_nr_sectors=%u\n",
			blk_rq_cur_sectors(current_req));
		pr_info("max_sector=%d\n", max_sector);
		pr_info("ssize=%d\n", ssize);
L
Linus Torvalds 已提交
2433 2434 2435 2436 2437 2438
	}

	buffer_max = max(max_sector, buffer_max);

	dma_buffer = floppy_track_buffer + ((fsector_t - buffer_min) << 9);

2439
	size = blk_rq_cur_bytes(current_req);
L
Linus Torvalds 已提交
2440

2441 2442 2443
	rq_for_each_segment(bv, current_req, iter) {
		if (!remaining)
			break;
L
Linus Torvalds 已提交
2444

2445
		size = bv.bv_len;
2446
		SUPBOUND(size, remaining);
L
Linus Torvalds 已提交
2447

2448
		buffer = page_address(bv.bv_page) + bv.bv_offset;
2449 2450 2451 2452
		if (dma_buffer + size >
		    floppy_track_buffer + (max_buffer_sectors << 10) ||
		    dma_buffer < floppy_track_buffer) {
			DPRINT("buffer overrun in copy buffer %d\n",
2453 2454 2455 2456 2457
			       (int)((floppy_track_buffer - dma_buffer) >> 9));
			pr_info("fsector_t=%d buffer_min=%d\n",
				fsector_t, buffer_min);
			pr_info("current_count_sectors=%ld\n",
				current_count_sectors);
L
Linus Torvalds 已提交
2458
			if (CT(COMMAND) == FD_READ)
2459
				pr_info("read\n");
2460
			if (CT(COMMAND) == FD_WRITE)
2461
				pr_info("write\n");
2462
			break;
L
Linus Torvalds 已提交
2463
		}
2464 2465
		if (((unsigned long)buffer) % 512)
			DPRINT("%p buffer not aligned\n", buffer);
2466

2467 2468 2469 2470 2471 2472 2473
		if (CT(COMMAND) == FD_READ)
			memcpy(buffer, dma_buffer, size);
		else
			memcpy(dma_buffer, buffer, size);

		remaining -= size;
		dma_buffer += size;
L
Linus Torvalds 已提交
2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490
	}
	if (remaining) {
		if (remaining > 0)
			max_sector -= remaining >> 9;
		DPRINT("weirdness: remaining %d\n", remaining >> 9);
	}
}

/* work around a bug in pseudo DMA
 * (on some FDCs) pseudo DMA does not stop when the CPU stops
 * sending data.  Hence we need a different way to signal the
 * transfer length:  We use SECT_PER_TRACK.  Unfortunately, this
 * does not work with MT, hence we can only transfer one head at
 * a time
 */
static void virtualdmabug_workaround(void)
{
2491 2492
	int hard_sectors;
	int end_sector;
L
Linus Torvalds 已提交
2493 2494 2495 2496 2497 2498 2499

	if (CT(COMMAND) == FD_WRITE) {
		COMMAND &= ~0x80;	/* switch off multiple track mode */

		hard_sectors = raw_cmd->length >> (7 + SIZECODE);
		end_sector = SECTOR + hard_sectors - 1;
		if (end_sector > SECT_PER_TRACK) {
2500 2501
			pr_info("too many sectors %d > %d\n",
				end_sector, SECT_PER_TRACK);
L
Linus Torvalds 已提交
2502 2503
			return;
		}
2504 2505 2506
		SECT_PER_TRACK = end_sector;
					/* make sure SECT_PER_TRACK
					 * points to end of transfer */
L
Linus Torvalds 已提交
2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522
	}
}

/*
 * Formulate a read/write request.
 * this routine decides where to load the data (directly to buffer, or to
 * tmp floppy area), how much data to load (the size of the buffer, the whole
 * track, or a single sector)
 * All floppy_track_buffer handling goes in here. If we ever add track buffer
 * allocation on the fly, it should be done here. No other part should need
 * modification.
 */

static int make_raw_rw_request(void)
{
	int aligned_sector_t;
2523 2524 2525 2526
	int max_sector;
	int max_size;
	int tracksize;
	int ssize;
L
Linus Torvalds 已提交
2527

S
Stephen Hemminger 已提交
2528
	if (WARN(max_buffer_sectors == 0, "VFS: Block I/O scheduled on unopened device\n"))
L
Linus Torvalds 已提交
2529 2530 2531 2532 2533
		return 0;

	set_fdc((long)current_req->rq_disk->private_data);

	raw_cmd = &default_raw_cmd;
2534
	raw_cmd->flags = FD_RAW_SPIN | FD_RAW_NEED_DISK | FD_RAW_NEED_SEEK;
L
Linus Torvalds 已提交
2535 2536 2537 2538 2539 2540 2541 2542
	raw_cmd->cmd_count = NR_RW;
	if (rq_data_dir(current_req) == READ) {
		raw_cmd->flags |= FD_RAW_READ;
		COMMAND = FM_MODE(_floppy, FD_READ);
	} else if (rq_data_dir(current_req) == WRITE) {
		raw_cmd->flags |= FD_RAW_WRITE;
		COMMAND = FM_MODE(_floppy, FD_WRITE);
	} else {
2543
		DPRINT("%s: unknown command\n", __func__);
L
Linus Torvalds 已提交
2544 2545 2546 2547 2548
		return 0;
	}

	max_sector = _floppy->sect * _floppy->head;

2549 2550
	TRACK = (int)blk_rq_pos(current_req) / max_sector;
	fsector_t = (int)blk_rq_pos(current_req) % max_sector;
L
Linus Torvalds 已提交
2551
	if (_floppy->track && TRACK >= _floppy->track) {
2552
		if (blk_rq_cur_sectors(current_req) & 1) {
L
Linus Torvalds 已提交
2553 2554 2555 2556 2557 2558 2559
			current_count_sectors = 1;
			return 1;
		} else
			return 0;
	}
	HEAD = fsector_t / _floppy->sect;

2560
	if (((_floppy->stretch & (FD_SWAPSIDES | FD_SECTBASEMASK)) ||
2561 2562
	     test_bit(FD_NEED_TWADDLE_BIT, &DRS->flags)) &&
	    fsector_t < _floppy->sect)
L
Linus Torvalds 已提交
2563 2564 2565 2566 2567 2568 2569 2570
		max_sector = _floppy->sect;

	/* 2M disks have phantom sectors on the first track */
	if ((_floppy->rate & FD_2M) && (!TRACK) && (!HEAD)) {
		max_sector = 2 * _floppy->sect / 3;
		if (fsector_t >= max_sector) {
			current_count_sectors =
			    min_t(int, _floppy->sect - fsector_t,
2571
				  blk_rq_sectors(current_req));
L
Linus Torvalds 已提交
2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587
			return 1;
		}
		SIZECODE = 2;
	} else
		SIZECODE = FD_SIZECODE(_floppy);
	raw_cmd->rate = _floppy->rate & 0x43;
	if ((_floppy->rate & FD_2M) && (TRACK || HEAD) && raw_cmd->rate == 2)
		raw_cmd->rate = 1;

	if (SIZECODE)
		SIZECODE2 = 0xff;
	else
		SIZECODE2 = 0x80;
	raw_cmd->track = TRACK << STRETCH(_floppy);
	DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, HEAD);
	GAP = _floppy->gap;
2588
	ssize = DIV_ROUND_UP(1 << SIZECODE, 4);
L
Linus Torvalds 已提交
2589 2590
	SECT_PER_TRACK = _floppy->sect << 2 >> SIZECODE;
	SECTOR = ((fsector_t % _floppy->sect) << 2 >> SIZECODE) +
2591
	    FD_SECTBASE(_floppy);
L
Linus Torvalds 已提交
2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621

	/* tracksize describes the size which can be filled up with sectors
	 * of size ssize.
	 */
	tracksize = _floppy->sect - _floppy->sect % ssize;
	if (tracksize < _floppy->sect) {
		SECT_PER_TRACK++;
		if (tracksize <= fsector_t % _floppy->sect)
			SECTOR--;

		/* if we are beyond tracksize, fill up using smaller sectors */
		while (tracksize <= fsector_t % _floppy->sect) {
			while (tracksize + ssize > _floppy->sect) {
				SIZECODE--;
				ssize >>= 1;
			}
			SECTOR++;
			SECT_PER_TRACK++;
			tracksize += ssize;
		}
		max_sector = HEAD * _floppy->sect + tracksize;
	} else if (!TRACK && !HEAD && !(_floppy->rate & FD_2M) && probing) {
		max_sector = _floppy->sect;
	} else if (!HEAD && CT(COMMAND) == FD_WRITE) {
		/* for virtual DMA bug workaround */
		max_sector = _floppy->sect;
	}

	in_sector_offset = (fsector_t % _floppy->sect) % ssize;
	aligned_sector_t = fsector_t - in_sector_offset;
2622
	max_size = blk_rq_sectors(current_req);
L
Linus Torvalds 已提交
2623 2624 2625 2626 2627 2628 2629 2630
	if ((raw_cmd->track == buffer_track) &&
	    (current_drive == buffer_drive) &&
	    (fsector_t >= buffer_min) && (fsector_t < buffer_max)) {
		/* data already in track buffer */
		if (CT(COMMAND) == FD_READ) {
			copy_buffer(1, max_sector, buffer_max);
			return 1;
		}
2631
	} else if (in_sector_offset || blk_rq_sectors(current_req) < ssize) {
L
Linus Torvalds 已提交
2632
		if (CT(COMMAND) == FD_WRITE) {
2633 2634 2635 2636
			unsigned int sectors;

			sectors = fsector_t + blk_rq_sectors(current_req);
			if (sectors > ssize && sectors < ssize + ssize)
L
Linus Torvalds 已提交
2637 2638 2639 2640 2641 2642 2643
				max_size = ssize + ssize;
			else
				max_size = ssize;
		}
		raw_cmd->flags &= ~FD_RAW_WRITE;
		raw_cmd->flags |= FD_RAW_READ;
		COMMAND = FM_MODE(_floppy, FD_READ);
2644
	} else if ((unsigned long)bio_data(current_req->bio) < MAX_DMA_ADDRESS) {
L
Linus Torvalds 已提交
2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656
		unsigned long dma_limit;
		int direct, indirect;

		indirect =
		    transfer_size(ssize, max_sector,
				  max_buffer_sectors * 2) - fsector_t;

		/*
		 * Do NOT use minimum() here---MAX_DMA_ADDRESS is 64 bits wide
		 * on a 64 bit machine!
		 */
		max_size = buffer_chain_size();
2657
		dma_limit = (MAX_DMA_ADDRESS -
2658
			     ((unsigned long)bio_data(current_req->bio))) >> 9;
2659
		if ((unsigned long)max_size > dma_limit)
L
Linus Torvalds 已提交
2660 2661
			max_size = dma_limit;
		/* 64 kb boundaries */
2662
		if (CROSS_64KB(bio_data(current_req->bio), max_size << 9))
L
Linus Torvalds 已提交
2663
			max_size = (K_64 -
2664
				    ((unsigned long)bio_data(current_req->bio)) %
L
Linus Torvalds 已提交
2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675
				    K_64) >> 9;
		direct = transfer_size(ssize, max_sector, max_size) - fsector_t;
		/*
		 * We try to read tracks, but if we get too many errors, we
		 * go back to reading just one sector at a time.
		 *
		 * This means we should be able to read a sector even if there
		 * are other bad sectors on this track.
		 */
		if (!direct ||
		    (indirect * 2 > direct * 3 &&
2676 2677 2678
		     *errors < DP->max_errors.read_track &&
		     ((!probing ||
		       (DP->read_track & (1 << DRS->probed_format)))))) {
2679
			max_size = blk_rq_sectors(current_req);
L
Linus Torvalds 已提交
2680
		} else {
2681
			raw_cmd->kernel_data = bio_data(current_req->bio);
L
Linus Torvalds 已提交
2682 2683
			raw_cmd->length = current_count_sectors << 9;
			if (raw_cmd->length == 0) {
2684
				DPRINT("%s: zero dma transfer attempted\n", __func__);
2685
				DPRINT("indirect=%d direct=%d fsector_t=%d\n",
L
Linus Torvalds 已提交
2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702
				       indirect, direct, fsector_t);
				return 0;
			}
			virtualdmabug_workaround();
			return 2;
		}
	}

	if (CT(COMMAND) == FD_READ)
		max_size = max_sector;	/* unbounded */

	/* claim buffer track if needed */
	if (buffer_track != raw_cmd->track ||	/* bad track */
	    buffer_drive != current_drive ||	/* bad drive */
	    fsector_t > buffer_max ||
	    fsector_t < buffer_min ||
	    ((CT(COMMAND) == FD_READ ||
2703
	      (!in_sector_offset && blk_rq_sectors(current_req) >= ssize)) &&
L
Linus Torvalds 已提交
2704
	     max_sector > 2 * max_buffer_sectors + buffer_min &&
2705 2706
	     max_size + fsector_t > 2 * max_buffer_sectors + buffer_min)) {
		/* not enough space */
L
Linus Torvalds 已提交
2707 2708 2709 2710 2711
		buffer_track = -1;
		buffer_drive = current_drive;
		buffer_max = buffer_min = aligned_sector_t;
	}
	raw_cmd->kernel_data = floppy_track_buffer +
2712
		((aligned_sector_t - buffer_min) << 9);
L
Linus Torvalds 已提交
2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734

	if (CT(COMMAND) == FD_WRITE) {
		/* copy write buffer to track buffer.
		 * if we get here, we know that the write
		 * is either aligned or the data already in the buffer
		 * (buffer will be overwritten) */
		if (in_sector_offset && buffer_track == -1)
			DPRINT("internal error offset !=0 on write\n");
		buffer_track = raw_cmd->track;
		buffer_drive = current_drive;
		copy_buffer(ssize, max_sector,
			    2 * max_buffer_sectors + buffer_min);
	} else
		transfer_size(ssize, max_sector,
			      2 * max_buffer_sectors + buffer_min -
			      aligned_sector_t);

	/* round up current_count_sectors to get dma xfer size */
	raw_cmd->length = in_sector_offset + current_count_sectors;
	raw_cmd->length = ((raw_cmd->length - 1) | (ssize - 1)) + 1;
	raw_cmd->length <<= 9;
	if ((raw_cmd->length < current_count_sectors << 9) ||
2735
	    (raw_cmd->kernel_data != bio_data(current_req->bio) &&
L
Linus Torvalds 已提交
2736 2737 2738 2739 2740 2741 2742
	     CT(COMMAND) == FD_WRITE &&
	     (aligned_sector_t + (raw_cmd->length >> 9) > buffer_max ||
	      aligned_sector_t < buffer_min)) ||
	    raw_cmd->length % (128 << SIZECODE) ||
	    raw_cmd->length <= 0 || current_count_sectors <= 0) {
		DPRINT("fractionary current count b=%lx s=%lx\n",
		       raw_cmd->length, current_count_sectors);
2743
		if (raw_cmd->kernel_data != bio_data(current_req->bio))
2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756
			pr_info("addr=%d, length=%ld\n",
				(int)((raw_cmd->kernel_data -
				       floppy_track_buffer) >> 9),
				current_count_sectors);
		pr_info("st=%d ast=%d mse=%d msi=%d\n",
			fsector_t, aligned_sector_t, max_sector, max_size);
		pr_info("ssize=%x SIZECODE=%d\n", ssize, SIZECODE);
		pr_info("command=%x SECTOR=%d HEAD=%d, TRACK=%d\n",
			COMMAND, SECTOR, HEAD, TRACK);
		pr_info("buffer drive=%d\n", buffer_drive);
		pr_info("buffer track=%d\n", buffer_track);
		pr_info("buffer_min=%d\n", buffer_min);
		pr_info("buffer_max=%d\n", buffer_max);
L
Linus Torvalds 已提交
2757 2758 2759
		return 0;
	}

2760
	if (raw_cmd->kernel_data != bio_data(current_req->bio)) {
L
Linus Torvalds 已提交
2761 2762 2763 2764 2765 2766
		if (raw_cmd->kernel_data < floppy_track_buffer ||
		    current_count_sectors < 0 ||
		    raw_cmd->length < 0 ||
		    raw_cmd->kernel_data + raw_cmd->length >
		    floppy_track_buffer + (max_buffer_sectors << 10)) {
			DPRINT("buffer overrun in schedule dma\n");
2767 2768 2769 2770
			pr_info("fsector_t=%d buffer_min=%d current_count=%ld\n",
				fsector_t, buffer_min, raw_cmd->length >> 9);
			pr_info("current_count_sectors=%ld\n",
				current_count_sectors);
L
Linus Torvalds 已提交
2771
			if (CT(COMMAND) == FD_READ)
2772
				pr_info("read\n");
L
Linus Torvalds 已提交
2773
			if (CT(COMMAND) == FD_WRITE)
2774
				pr_info("write\n");
L
Linus Torvalds 已提交
2775 2776
			return 0;
		}
2777
	} else if (raw_cmd->length > blk_rq_bytes(current_req) ||
2778
		   current_count_sectors > blk_rq_sectors(current_req)) {
L
Linus Torvalds 已提交
2779 2780 2781 2782
		DPRINT("buffer overrun in direct transfer\n");
		return 0;
	} else if (raw_cmd->length < current_count_sectors << 9) {
		DPRINT("more sectors than bytes\n");
2783 2784
		pr_info("bytes=%ld\n", raw_cmd->length >> 9);
		pr_info("sectors=%ld\n", current_count_sectors);
L
Linus Torvalds 已提交
2785 2786 2787 2788 2789 2790 2791 2792 2793 2794
	}
	if (raw_cmd->length == 0) {
		DPRINT("zero dma transfer attempted from make_raw_request\n");
		return 0;
	}

	virtualdmabug_workaround();
	return 2;
}

2795 2796
static int set_next_request(void)
{
O
Omar Sandoval 已提交
2797 2798 2799 2800 2801 2802
	current_req = list_first_entry_or_null(&floppy_reqs, struct request,
					       queuelist);
	if (current_req) {
		current_req->error_count = 0;
		list_del_init(&current_req->queuelist);
	}
2803 2804 2805
	return current_req != NULL;
}

L
Linus Torvalds 已提交
2806 2807 2808 2809 2810 2811 2812 2813 2814
static void redo_fd_request(void)
{
	int drive;
	int tmp;

	lastredo = jiffies;
	if (current_drive < N_DRIVE)
		floppy_off(current_drive);

2815 2816
do_request:
	if (!current_req) {
2817 2818 2819 2820 2821 2822
		int pending;

		spin_lock_irq(&floppy_lock);
		pending = set_next_request();
		spin_unlock_irq(&floppy_lock);
		if (!pending) {
2823 2824
			do_floppy = NULL;
			unlock_fdc();
L
Linus Torvalds 已提交
2825 2826
			return;
		}
2827 2828 2829
	}
	drive = (long)current_req->rq_disk->private_data;
	set_fdc(drive);
2830
	reschedule_timeout(current_reqD, "redo fd request");
L
Linus Torvalds 已提交
2831

2832 2833 2834 2835
	set_floppy(drive);
	raw_cmd = &default_raw_cmd;
	raw_cmd->flags = 0;
	if (start_motor(redo_fd_request))
L
Linus Torvalds 已提交
2836
		return;
2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858

	disk_change(current_drive);
	if (test_bit(current_drive, &fake_change) ||
	    test_bit(FD_DISK_CHANGED_BIT, &DRS->flags)) {
		DPRINT("disk absent or changed during operation\n");
		request_done(0);
		goto do_request;
	}
	if (!_floppy) {	/* Autodetection */
		if (!probing) {
			DRS->probed_format = 0;
			if (next_valid_format()) {
				DPRINT("no autodetectable formats\n");
				_floppy = NULL;
				request_done(0);
				goto do_request;
			}
		}
		probing = 1;
		_floppy = floppy_type + DP->autodetect[DRS->probed_format];
	} else
		probing = 0;
2859
	errors = &(current_req->error_count);
2860 2861 2862 2863
	tmp = make_raw_rw_request();
	if (tmp < 2) {
		request_done(tmp);
		goto do_request;
L
Linus Torvalds 已提交
2864
	}
2865 2866 2867 2868

	if (test_bit(FD_NEED_TWADDLE_BIT, &DRS->flags))
		twaddle();
	schedule_bh(floppy_start);
2869
	debugt(__func__, "queue fd request");
2870
	return;
L
Linus Torvalds 已提交
2871 2872
}

2873
static const struct cont_t rw_cont = {
L
Linus Torvalds 已提交
2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885
	.interrupt	= rw_interrupt,
	.redo		= redo_fd_request,
	.error		= bad_flp_intr,
	.done		= request_done
};

static void process_fd_request(void)
{
	cont = &rw_cont;
	schedule_bh(redo_fd_request);
}

O
Omar Sandoval 已提交
2886 2887
static blk_status_t floppy_queue_rq(struct blk_mq_hw_ctx *hctx,
				    const struct blk_mq_queue_data *bd)
L
Linus Torvalds 已提交
2888
{
O
Omar Sandoval 已提交
2889 2890
	blk_mq_start_request(bd->rq);

S
Stephen Hemminger 已提交
2891 2892
	if (WARN(max_buffer_sectors == 0,
		 "VFS: %s called on non-open device\n", __func__))
O
Omar Sandoval 已提交
2893
		return BLK_STS_IOERR;
L
Linus Torvalds 已提交
2894

S
Stephen Hemminger 已提交
2895
	if (WARN(atomic_read(&usage_count) == 0,
2896 2897
		 "warning: usage count=0, current_req=%p sect=%ld flags=%llx\n",
		 current_req, (long)blk_rq_pos(current_req),
J
Jens Axboe 已提交
2898
		 (unsigned long long) current_req->cmd_flags))
O
Omar Sandoval 已提交
2899 2900 2901 2902 2903
		return BLK_STS_IOERR;

	spin_lock_irq(&floppy_lock);
	list_add_tail(&bd->rq->queuelist, &floppy_reqs);
	spin_unlock_irq(&floppy_lock);
S
Stephen Hemminger 已提交
2904

2905
	if (test_and_set_bit(0, &fdc_busy)) {
L
Linus Torvalds 已提交
2906 2907
		/* fdc busy, this new request will be treated when the
		   current one is done */
2908
		is_alive(__func__, "old request running");
O
Omar Sandoval 已提交
2909
		return BLK_STS_OK;
L
Linus Torvalds 已提交
2910
	}
O
Omar Sandoval 已提交
2911

2912 2913 2914
	command_status = FD_COMMAND_NONE;
	__reschedule_timeout(MAXTIMEOUT, "fd_request");
	set_fdc(0);
L
Linus Torvalds 已提交
2915
	process_fd_request();
2916
	is_alive(__func__, "");
O
Omar Sandoval 已提交
2917
	return BLK_STS_OK;
L
Linus Torvalds 已提交
2918 2919
}

2920
static const struct cont_t poll_cont = {
L
Linus Torvalds 已提交
2921 2922 2923 2924 2925 2926
	.interrupt	= success_and_wakeup,
	.redo		= floppy_ready,
	.error		= generic_failure,
	.done		= generic_done
};

2927
static int poll_drive(bool interruptible, int flag)
L
Linus Torvalds 已提交
2928 2929 2930 2931 2932 2933 2934
{
	/* no auto-sense, just clear dcl */
	raw_cmd = &default_raw_cmd;
	raw_cmd->flags = flag;
	raw_cmd->track = 0;
	raw_cmd->cmd_count = 0;
	cont = &poll_cont;
2935
	debug_dcl(DP->flags, "setting NEWCHANGE in poll_drive\n");
2936
	set_bit(FD_DISK_NEWCHANGE_BIT, &DRS->flags);
2937 2938

	return wait_til_done(floppy_ready, interruptible);
L
Linus Torvalds 已提交
2939 2940 2941 2942 2943 2944 2945 2946 2947
}

/*
 * User triggered reset
 * ====================
 */

static void reset_intr(void)
{
2948
	pr_info("weird, reset interrupt called\n");
L
Linus Torvalds 已提交
2949 2950
}

2951
static const struct cont_t reset_cont = {
L
Linus Torvalds 已提交
2952 2953 2954 2955 2956 2957
	.interrupt	= reset_intr,
	.redo		= success_and_wakeup,
	.error		= generic_failure,
	.done		= generic_done
};

2958
static int user_reset_fdc(int drive, int arg, bool interruptible)
L
Linus Torvalds 已提交
2959 2960 2961
{
	int ret;

2962
	if (lock_fdc(drive))
2963 2964
		return -EINTR;

L
Linus Torvalds 已提交
2965 2966 2967 2968
	if (arg == FD_RESET_ALWAYS)
		FDCS->reset = 1;
	if (FDCS->reset) {
		cont = &reset_cont;
2969 2970 2971
		ret = wait_til_done(reset_fdc, interruptible);
		if (ret == -EINTR)
			return -EINTR;
L
Linus Torvalds 已提交
2972 2973
	}
	process_fd_request();
2974
	return 0;
L
Linus Torvalds 已提交
2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986
}

/*
 * Misc Ioctl's and support
 * ========================
 */
static inline int fd_copyout(void __user *param, const void *address,
			     unsigned long size)
{
	return copy_to_user(param, address, size) ? -EFAULT : 0;
}

2987 2988
static inline int fd_copyin(void __user *param, void *address,
			    unsigned long size)
L
Linus Torvalds 已提交
2989 2990 2991 2992
{
	return copy_from_user(address, param, size) ? -EFAULT : 0;
}

2993
static const char *drive_name(int type, int drive)
L
Linus Torvalds 已提交
2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041
{
	struct floppy_struct *floppy;

	if (type)
		floppy = floppy_type + type;
	else {
		if (UDP->native_format)
			floppy = floppy_type + UDP->native_format;
		else
			return "(null)";
	}
	if (floppy->name)
		return floppy->name;
	else
		return "(null)";
}

/* raw commands */
static void raw_cmd_done(int flag)
{
	int i;

	if (!flag) {
		raw_cmd->flags |= FD_RAW_FAILURE;
		raw_cmd->flags |= FD_RAW_HARDFAILURE;
	} else {
		raw_cmd->reply_count = inr;
		if (raw_cmd->reply_count > MAX_REPLIES)
			raw_cmd->reply_count = 0;
		for (i = 0; i < raw_cmd->reply_count; i++)
			raw_cmd->reply[i] = reply_buffer[i];

		if (raw_cmd->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
			unsigned long flags;
			flags = claim_dma_lock();
			raw_cmd->length = fd_get_dma_residue();
			release_dma_lock(flags);
		}

		if ((raw_cmd->flags & FD_RAW_SOFTFAILURE) &&
		    (!raw_cmd->reply_count || (raw_cmd->reply[0] & 0xc0)))
			raw_cmd->flags |= FD_RAW_FAILURE;

		if (disk_change(current_drive))
			raw_cmd->flags |= FD_RAW_DISK_CHANGE;
		else
			raw_cmd->flags &= ~FD_RAW_DISK_CHANGE;
		if (raw_cmd->flags & FD_RAW_NO_MOTOR_AFTER)
3042
			motor_off_callback(&motor_off_timer[current_drive]);
L
Linus Torvalds 已提交
3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055

		if (raw_cmd->next &&
		    (!(raw_cmd->flags & FD_RAW_FAILURE) ||
		     !(raw_cmd->flags & FD_RAW_STOP_IF_FAILURE)) &&
		    ((raw_cmd->flags & FD_RAW_FAILURE) ||
		     !(raw_cmd->flags & FD_RAW_STOP_IF_SUCCESS))) {
			raw_cmd = raw_cmd->next;
			return;
		}
	}
	generic_done(flag);
}

3056
static const struct cont_t raw_cmd_cont = {
L
Linus Torvalds 已提交
3057 3058 3059 3060 3061 3062
	.interrupt	= success_and_wakeup,
	.redo		= floppy_start,
	.error		= generic_failure,
	.done		= raw_cmd_done
};

3063
static int raw_cmd_copyout(int cmd, void __user *param,
L
Linus Torvalds 已提交
3064 3065 3066 3067 3068
				  struct floppy_raw_cmd *ptr)
{
	int ret;

	while (ptr) {
3069 3070 3071 3072
		struct floppy_raw_cmd cmd = *ptr;
		cmd.next = NULL;
		cmd.kernel_data = NULL;
		ret = copy_to_user(param, &cmd, sizeof(cmd));
3073 3074
		if (ret)
			return -EFAULT;
L
Linus Torvalds 已提交
3075 3076
		param += sizeof(struct floppy_raw_cmd);
		if ((ptr->flags & FD_RAW_READ) && ptr->buffer_length) {
3077 3078 3079
			if (ptr->length >= 0 &&
			    ptr->length <= ptr->buffer_length) {
				long length = ptr->buffer_length - ptr->length;
3080 3081 3082 3083
				ret = fd_copyout(ptr->data, ptr->kernel_data,
						 length);
				if (ret)
					return ret;
3084
			}
L
Linus Torvalds 已提交
3085 3086 3087
		}
		ptr = ptr->next;
	}
3088

L
Linus Torvalds 已提交
3089 3090 3091 3092 3093
	return 0;
}

static void raw_cmd_free(struct floppy_raw_cmd **ptr)
{
3094 3095
	struct floppy_raw_cmd *next;
	struct floppy_raw_cmd *this;
L
Linus Torvalds 已提交
3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110

	this = *ptr;
	*ptr = NULL;
	while (this) {
		if (this->buffer_length) {
			fd_dma_mem_free((unsigned long)this->kernel_data,
					this->buffer_length);
			this->buffer_length = 0;
		}
		next = this->next;
		kfree(this);
		this = next;
	}
}

3111
static int raw_cmd_copyin(int cmd, void __user *param,
L
Linus Torvalds 已提交
3112 3113 3114 3115 3116 3117 3118
				 struct floppy_raw_cmd **rcmd)
{
	struct floppy_raw_cmd *ptr;
	int ret;
	int i;

	*rcmd = NULL;
3119 3120

loop:
3121
	ptr = kmalloc(sizeof(struct floppy_raw_cmd), GFP_KERNEL);
3122 3123 3124 3125 3126 3127
	if (!ptr)
		return -ENOMEM;
	*rcmd = ptr;
	ret = copy_from_user(ptr, param, sizeof(*ptr));
	ptr->next = NULL;
	ptr->buffer_length = 0;
3128 3129 3130
	ptr->kernel_data = NULL;
	if (ret)
		return -EFAULT;
3131 3132
	param += sizeof(struct floppy_raw_cmd);
	if (ptr->cmd_count > 33)
L
Linus Torvalds 已提交
3133 3134 3135 3136 3137 3138 3139 3140
			/* the command may now also take up the space
			 * initially intended for the reply & the
			 * reply count. Needed for long 82078 commands
			 * such as RESTORE, which takes ... 17 command
			 * bytes. Murphy's law #137: When you reserve
			 * 16 bytes for a structure, you'll one day
			 * discover that you really need 17...
			 */
3141 3142 3143 3144 3145 3146 3147 3148
		return -EINVAL;

	for (i = 0; i < 16; i++)
		ptr->reply[i] = 0;
	ptr->resultcode = 0;

	if (ptr->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
		if (ptr->length <= 0)
L
Linus Torvalds 已提交
3149
			return -EINVAL;
3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160
		ptr->kernel_data = (char *)fd_dma_mem_alloc(ptr->length);
		fallback_on_nodma_alloc(&ptr->kernel_data, ptr->length);
		if (!ptr->kernel_data)
			return -ENOMEM;
		ptr->buffer_length = ptr->length;
	}
	if (ptr->flags & FD_RAW_WRITE) {
		ret = fd_copyin(ptr->data, ptr->kernel_data, ptr->length);
		if (ret)
			return ret;
	}
L
Linus Torvalds 已提交
3161

3162
	if (ptr->flags & FD_RAW_MORE) {
L
Linus Torvalds 已提交
3163 3164
		rcmd = &(ptr->next);
		ptr->rate &= 0x43;
3165
		goto loop;
L
Linus Torvalds 已提交
3166
	}
3167 3168

	return 0;
L
Linus Torvalds 已提交
3169 3170 3171 3172 3173
}

static int raw_cmd_ioctl(int cmd, void __user *param)
{
	struct floppy_raw_cmd *my_raw_cmd;
3174 3175 3176
	int drive;
	int ret2;
	int ret;
L
Linus Torvalds 已提交
3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204

	if (FDCS->rawcmd <= 1)
		FDCS->rawcmd = 1;
	for (drive = 0; drive < N_DRIVE; drive++) {
		if (FDC(drive) != fdc)
			continue;
		if (drive == current_drive) {
			if (UDRS->fd_ref > 1) {
				FDCS->rawcmd = 2;
				break;
			}
		} else if (UDRS->fd_ref) {
			FDCS->rawcmd = 2;
			break;
		}
	}

	if (FDCS->reset)
		return -EIO;

	ret = raw_cmd_copyin(cmd, param, &my_raw_cmd);
	if (ret) {
		raw_cmd_free(&my_raw_cmd);
		return ret;
	}

	raw_cmd = my_raw_cmd;
	cont = &raw_cmd_cont;
3205
	ret = wait_til_done(floppy_start, true);
3206
	debug_dcl(DP->flags, "calling disk change from raw_cmd ioctl\n");
L
Linus Torvalds 已提交
3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228

	if (ret != -EINTR && FDCS->reset)
		ret = -EIO;

	DRS->track = NO_TRACK;

	ret2 = raw_cmd_copyout(cmd, param, my_raw_cmd);
	if (!ret)
		ret = ret2;
	raw_cmd_free(&my_raw_cmd);
	return ret;
}

static int invalidate_drive(struct block_device *bdev)
{
	/* invalidate the buffer track to force a reread */
	set_bit((long)bdev->bd_disk->private_data, &fake_change);
	process_fd_request();
	check_disk_change(bdev);
	return 0;
}

3229
static int set_geometry(unsigned int cmd, struct floppy_struct *g,
L
Linus Torvalds 已提交
3230 3231 3232 3233 3234 3235 3236 3237 3238
			       int drive, int type, struct block_device *bdev)
{
	int cnt;

	/* sanity checking for parameters. */
	if (g->sect <= 0 ||
	    g->head <= 0 ||
	    g->track <= 0 || g->track > UDP->tracks >> STRETCH(g) ||
	    /* check if reserved bits are set */
3239
	    (g->stretch & ~(FD_STRETCH | FD_SWAPSIDES | FD_SECTBASEMASK)) != 0)
L
Linus Torvalds 已提交
3240 3241 3242 3243
		return -EINVAL;
	if (type) {
		if (!capable(CAP_SYS_ADMIN))
			return -EPERM;
3244
		mutex_lock(&open_lock);
3245
		if (lock_fdc(drive)) {
J
Jiri Slaby 已提交
3246 3247 3248
			mutex_unlock(&open_lock);
			return -EINTR;
		}
L
Linus Torvalds 已提交
3249 3250 3251 3252 3253 3254 3255 3256 3257 3258
		floppy_type[type] = *g;
		floppy_type[type].name = "user format";
		for (cnt = type << 2; cnt < (type << 2) + 4; cnt++)
			floppy_sizes[cnt] = floppy_sizes[cnt + 0x80] =
			    floppy_type[type].size + 1;
		process_fd_request();
		for (cnt = 0; cnt < N_DRIVE; cnt++) {
			struct block_device *bdev = opened_bdev[cnt];
			if (!bdev || ITYPE(drive_state[cnt].fd_device) != type)
				continue;
3259
			__invalidate_device(bdev, true);
L
Linus Torvalds 已提交
3260
		}
3261
		mutex_unlock(&open_lock);
L
Linus Torvalds 已提交
3262 3263
	} else {
		int oldStretch;
3264

3265
		if (lock_fdc(drive))
3266
			return -EINTR;
3267
		if (cmd != FDDEFPRM) {
L
Linus Torvalds 已提交
3268 3269
			/* notice a disk change immediately, else
			 * we lose our settings immediately*/
3270
			if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
3271 3272
				return -EINTR;
		}
L
Linus Torvalds 已提交
3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290
		oldStretch = g->stretch;
		user_params[drive] = *g;
		if (buffer_drive == drive)
			SUPBOUND(buffer_max, user_params[drive].sect);
		current_type[drive] = &user_params[drive];
		floppy_sizes[drive] = user_params[drive].size;
		if (cmd == FDDEFPRM)
			DRS->keep_data = -1;
		else
			DRS->keep_data = 1;
		/* invalidation. Invalidate only when needed, i.e.
		 * when there are already sectors in the buffer cache
		 * whose number will change. This is useful, because
		 * mtools often changes the geometry of the disk after
		 * looking at the boot block */
		if (DRS->maxblock > user_params[drive].sect ||
		    DRS->maxtrack ||
		    ((user_params[drive].sect ^ oldStretch) &
3291
		     (FD_SWAPSIDES | FD_SECTBASEMASK)))
L
Linus Torvalds 已提交
3292 3293 3294 3295 3296 3297 3298 3299
			invalidate_drive(bdev);
		else
			process_fd_request();
	}
	return 0;
}

/* handle obsolete ioctl's */
3300
static unsigned int ioctl_table[] = {
L
Linus Torvalds 已提交
3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327
	FDCLRPRM,
	FDSETPRM,
	FDDEFPRM,
	FDGETPRM,
	FDMSGON,
	FDMSGOFF,
	FDFMTBEG,
	FDFMTTRK,
	FDFMTEND,
	FDSETEMSGTRESH,
	FDFLUSH,
	FDSETMAXERRS,
	FDGETMAXERRS,
	FDGETDRVTYP,
	FDSETDRVPRM,
	FDGETDRVPRM,
	FDGETDRVSTAT,
	FDPOLLDRVSTAT,
	FDRESET,
	FDGETFDCSTAT,
	FDWERRORCLR,
	FDWERRORGET,
	FDRAWCMD,
	FDEJECT,
	FDTWADDLE
};

3328
static int normalize_ioctl(unsigned int *cmd, int *size)
L
Linus Torvalds 已提交
3329 3330 3331 3332 3333 3334 3335 3336
{
	int i;

	for (i = 0; i < ARRAY_SIZE(ioctl_table); i++) {
		if ((*cmd & 0xffff) == (ioctl_table[i] & 0xffff)) {
			*size = _IOC_SIZE(*cmd);
			*cmd = ioctl_table[i];
			if (*size > _IOC_SIZE(*cmd)) {
3337
				pr_info("ioctl not yet supported\n");
L
Linus Torvalds 已提交
3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350
				return -EFAULT;
			}
			return 0;
		}
	}
	return -EINVAL;
}

static int get_floppy_geometry(int drive, int type, struct floppy_struct **g)
{
	if (type)
		*g = &floppy_type[type];
	else {
3351
		if (lock_fdc(drive))
3352
			return -EINTR;
3353
		if (poll_drive(false, 0) == -EINTR)
3354
			return -EINTR;
L
Linus Torvalds 已提交
3355 3356 3357 3358 3359 3360 3361 3362
		process_fd_request();
		*g = current_type[drive];
	}
	if (!*g)
		return -ENODEV;
	return 0;
}

3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379
static int fd_getgeo(struct block_device *bdev, struct hd_geometry *geo)
{
	int drive = (long)bdev->bd_disk->private_data;
	int type = ITYPE(drive_state[drive].fd_device);
	struct floppy_struct *g;
	int ret;

	ret = get_floppy_geometry(drive, type, &g);
	if (ret)
		return ret;

	geo->heads = g->head;
	geo->sectors = g->sect;
	geo->cylinders = g->track;
	return 0;
}

3380
static int fd_locked_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
L
Linus Torvalds 已提交
3381 3382
		    unsigned long param)
{
A
Al Viro 已提交
3383
	int drive = (long)bdev->bd_disk->private_data;
3384 3385
	int type = ITYPE(UDRS->fd_device);
	int i;
L
Linus Torvalds 已提交
3386 3387 3388 3389 3390 3391 3392 3393
	int ret;
	int size;
	union inparam {
		struct floppy_struct g;	/* geometry */
		struct format_descr f;
		struct floppy_max_errors max_errors;
		struct floppy_drive_params dp;
	} inparam;		/* parameters coming from user space */
3394
	const void *outparam;	/* parameters passed back to user space */
L
Linus Torvalds 已提交
3395 3396 3397 3398 3399

	/* convert compatibility eject ioctls into floppy eject ioctl.
	 * We do this in order to provide a means to eject floppy disks before
	 * installing the new fdutils package */
	if (cmd == CDROMEJECT ||	/* CD-ROM eject */
3400
	    cmd == 0x6470) {		/* SunOS floppy eject */
L
Linus Torvalds 已提交
3401 3402 3403 3404 3405
		DPRINT("obsolete eject ioctl\n");
		DPRINT("please use floppycontrol --eject\n");
		cmd = FDEJECT;
	}

3406
	if (!((cmd & 0xff00) == 0x0200))
L
Linus Torvalds 已提交
3407 3408
		return -EINVAL;

3409
	/* convert the old style command into a new style command */
3410 3411 3412
	ret = normalize_ioctl(&cmd, &size);
	if (ret)
		return ret;
3413

L
Linus Torvalds 已提交
3414
	/* permission checks */
3415
	if (((cmd & 0x40) && !(mode & (FMODE_WRITE | FMODE_WRITE_IOCTL))) ||
L
Linus Torvalds 已提交
3416 3417 3418
	    ((cmd & 0x80) && !capable(CAP_SYS_ADMIN)))
		return -EPERM;

3419 3420 3421
	if (WARN_ON(size < 0 || size > sizeof(inparam)))
		return -EINVAL;

L
Linus Torvalds 已提交
3422
	/* copyin */
3423
	memset(&inparam, 0, sizeof(inparam));
3424 3425 3426 3427 3428
	if (_IOC_DIR(cmd) & _IOC_WRITE) {
		ret = fd_copyin((void __user *)param, &inparam, size);
		if (ret)
			return ret;
	}
L
Linus Torvalds 已提交
3429

3430 3431 3432 3433 3434
	switch (cmd) {
	case FDEJECT:
		if (UDRS->fd_ref != 1)
			/* somebody else has this drive open */
			return -EBUSY;
3435
		if (lock_fdc(drive))
3436
			return -EINTR;
L
Linus Torvalds 已提交
3437

3438 3439 3440
		/* do the actual eject. Fails on
		 * non-Sparc architectures */
		ret = fd_eject(UNIT(drive));
L
Linus Torvalds 已提交
3441

3442 3443
		set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
		set_bit(FD_VERIFY_BIT, &UDRS->flags);
3444 3445 3446
		process_fd_request();
		return ret;
	case FDCLRPRM:
3447
		if (lock_fdc(drive))
3448
			return -EINTR;
3449 3450 3451 3452 3453 3454 3455 3456
		current_type[drive] = NULL;
		floppy_sizes[drive] = MAX_DISK_SIZE << 1;
		UDRS->keep_data = 0;
		return invalidate_drive(bdev);
	case FDSETPRM:
	case FDDEFPRM:
		return set_geometry(cmd, &inparam.g, drive, type, bdev);
	case FDGETPRM:
3457
		ret = get_floppy_geometry(drive, type,
3458
					  (struct floppy_struct **)&outparam);
3459 3460
		if (ret)
			return ret;
3461 3462 3463
		memcpy(&inparam.g, outparam,
				offsetof(struct floppy_struct, name));
		outparam = &inparam.g;
3464 3465 3466 3467 3468 3469 3470 3471
		break;
	case FDMSGON:
		UDP->flags |= FTD_MSG;
		return 0;
	case FDMSGOFF:
		UDP->flags &= ~FTD_MSG;
		return 0;
	case FDFMTBEG:
3472
		if (lock_fdc(drive))
3473
			return -EINTR;
3474
		if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
3475
			return -EINTR;
3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488
		ret = UDRS->flags;
		process_fd_request();
		if (ret & FD_VERIFY)
			return -ENODEV;
		if (!(ret & FD_DISK_WRITABLE))
			return -EROFS;
		return 0;
	case FDFMTTRK:
		if (UDRS->fd_ref != 1)
			return -EBUSY;
		return do_format(drive, &inparam.f);
	case FDFMTEND:
	case FDFLUSH:
3489
		if (lock_fdc(drive))
3490
			return -EINTR;
3491 3492 3493 3494 3495
		return invalidate_drive(bdev);
	case FDSETEMSGTRESH:
		UDP->max_errors.reporting = (unsigned short)(param & 0x0f);
		return 0;
	case FDGETMAXERRS:
3496
		outparam = &UDP->max_errors;
3497 3498 3499 3500 3501 3502
		break;
	case FDSETMAXERRS:
		UDP->max_errors = inparam.max_errors;
		break;
	case FDGETDRVTYP:
		outparam = drive_name(type, drive);
3503
		SUPBOUND(size, strlen((const char *)outparam) + 1);
3504 3505 3506 3507 3508
		break;
	case FDSETDRVPRM:
		*UDP = inparam.dp;
		break;
	case FDGETDRVPRM:
3509
		outparam = UDP;
3510 3511
		break;
	case FDPOLLDRVSTAT:
3512
		if (lock_fdc(drive))
3513
			return -EINTR;
3514
		if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
3515
			return -EINTR;
3516 3517 3518
		process_fd_request();
		/* fall through */
	case FDGETDRVSTAT:
3519
		outparam = UDRS;
3520 3521
		break;
	case FDRESET:
3522
		return user_reset_fdc(drive, (int)param, true);
3523
	case FDGETFDCSTAT:
3524
		outparam = UFDCS;
3525 3526 3527 3528 3529
		break;
	case FDWERRORCLR:
		memset(UDRWE, 0, sizeof(*UDRWE));
		return 0;
	case FDWERRORGET:
3530
		outparam = UDRWE;
3531 3532 3533
		break;
	case FDRAWCMD:
		if (type)
L
Linus Torvalds 已提交
3534
			return -EINVAL;
3535
		if (lock_fdc(drive))
3536
			return -EINTR;
3537
		set_floppy(drive);
3538 3539 3540
		i = raw_cmd_ioctl(cmd, (void __user *)param);
		if (i == -EINTR)
			return -EINTR;
3541 3542 3543
		process_fd_request();
		return i;
	case FDTWADDLE:
3544
		if (lock_fdc(drive))
3545
			return -EINTR;
3546 3547 3548 3549 3550 3551
		twaddle();
		process_fd_request();
		return 0;
	default:
		return -EINVAL;
	}
L
Linus Torvalds 已提交
3552 3553 3554

	if (_IOC_DIR(cmd) & _IOC_READ)
		return fd_copyout((void __user *)param, outparam, size);
3555 3556

	return 0;
L
Linus Torvalds 已提交
3557 3558
}

3559 3560 3561 3562 3563
static int fd_ioctl(struct block_device *bdev, fmode_t mode,
			     unsigned int cmd, unsigned long param)
{
	int ret;

3564
	mutex_lock(&floppy_mutex);
3565
	ret = fd_locked_ioctl(bdev, mode, cmd, param);
3566
	mutex_unlock(&floppy_mutex);
3567 3568 3569 3570

	return ret;
}

3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894
#ifdef CONFIG_COMPAT

struct compat_floppy_drive_params {
	char		cmos;
	compat_ulong_t	max_dtr;
	compat_ulong_t	hlt;
	compat_ulong_t	hut;
	compat_ulong_t	srt;
	compat_ulong_t	spinup;
	compat_ulong_t	spindown;
	unsigned char	spindown_offset;
	unsigned char	select_delay;
	unsigned char	rps;
	unsigned char	tracks;
	compat_ulong_t	timeout;
	unsigned char	interleave_sect;
	struct floppy_max_errors max_errors;
	char		flags;
	char		read_track;
	short		autodetect[8];
	compat_int_t	checkfreq;
	compat_int_t	native_format;
};

struct compat_floppy_drive_struct {
	signed char	flags;
	compat_ulong_t	spinup_date;
	compat_ulong_t	select_date;
	compat_ulong_t	first_read_date;
	short		probed_format;
	short		track;
	short		maxblock;
	short		maxtrack;
	compat_int_t	generation;
	compat_int_t	keep_data;
	compat_int_t	fd_ref;
	compat_int_t	fd_device;
	compat_int_t	last_checked;
	compat_caddr_t dmabuf;
	compat_int_t	bufblocks;
};

struct compat_floppy_fdc_state {
	compat_int_t	spec1;
	compat_int_t	spec2;
	compat_int_t	dtr;
	unsigned char	version;
	unsigned char	dor;
	compat_ulong_t	address;
	unsigned int	rawcmd:2;
	unsigned int	reset:1;
	unsigned int	need_configure:1;
	unsigned int	perp_mode:2;
	unsigned int	has_fifo:1;
	unsigned int	driver_version;
	unsigned char	track[4];
};

struct compat_floppy_write_errors {
	unsigned int	write_errors;
	compat_ulong_t	first_error_sector;
	compat_int_t	first_error_generation;
	compat_ulong_t	last_error_sector;
	compat_int_t	last_error_generation;
	compat_uint_t	badness;
};

#define FDSETPRM32 _IOW(2, 0x42, struct compat_floppy_struct)
#define FDDEFPRM32 _IOW(2, 0x43, struct compat_floppy_struct)
#define FDSETDRVPRM32 _IOW(2, 0x90, struct compat_floppy_drive_params)
#define FDGETDRVPRM32 _IOR(2, 0x11, struct compat_floppy_drive_params)
#define FDGETDRVSTAT32 _IOR(2, 0x12, struct compat_floppy_drive_struct)
#define FDPOLLDRVSTAT32 _IOR(2, 0x13, struct compat_floppy_drive_struct)
#define FDGETFDCSTAT32 _IOR(2, 0x15, struct compat_floppy_fdc_state)
#define FDWERRORGET32  _IOR(2, 0x17, struct compat_floppy_write_errors)

static int compat_set_geometry(struct block_device *bdev, fmode_t mode, unsigned int cmd,
		    struct compat_floppy_struct __user *arg)
{
	struct floppy_struct v;
	int drive, type;
	int err;

	BUILD_BUG_ON(offsetof(struct floppy_struct, name) !=
		     offsetof(struct compat_floppy_struct, name));

	if (!(mode & (FMODE_WRITE | FMODE_WRITE_IOCTL)))
		return -EPERM;

	memset(&v, 0, sizeof(struct floppy_struct));
	if (copy_from_user(&v, arg, offsetof(struct floppy_struct, name)))
		return -EFAULT;

	mutex_lock(&floppy_mutex);
	drive = (long)bdev->bd_disk->private_data;
	type = ITYPE(UDRS->fd_device);
	err = set_geometry(cmd == FDSETPRM32 ? FDSETPRM : FDDEFPRM,
			&v, drive, type, bdev);
	mutex_unlock(&floppy_mutex);
	return err;
}

static int compat_get_prm(int drive,
			  struct compat_floppy_struct __user *arg)
{
	struct compat_floppy_struct v;
	struct floppy_struct *p;
	int err;

	memset(&v, 0, sizeof(v));
	mutex_lock(&floppy_mutex);
	err = get_floppy_geometry(drive, ITYPE(UDRS->fd_device), &p);
	if (err) {
		mutex_unlock(&floppy_mutex);
		return err;
	}
	memcpy(&v, p, offsetof(struct floppy_struct, name));
	mutex_unlock(&floppy_mutex);
	if (copy_to_user(arg, &v, sizeof(struct compat_floppy_struct)))
		return -EFAULT;
	return 0;
}

static int compat_setdrvprm(int drive,
			    struct compat_floppy_drive_params __user *arg)
{
	struct compat_floppy_drive_params v;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;
	if (copy_from_user(&v, arg, sizeof(struct compat_floppy_drive_params)))
		return -EFAULT;
	mutex_lock(&floppy_mutex);
	UDP->cmos = v.cmos;
	UDP->max_dtr = v.max_dtr;
	UDP->hlt = v.hlt;
	UDP->hut = v.hut;
	UDP->srt = v.srt;
	UDP->spinup = v.spinup;
	UDP->spindown = v.spindown;
	UDP->spindown_offset = v.spindown_offset;
	UDP->select_delay = v.select_delay;
	UDP->rps = v.rps;
	UDP->tracks = v.tracks;
	UDP->timeout = v.timeout;
	UDP->interleave_sect = v.interleave_sect;
	UDP->max_errors = v.max_errors;
	UDP->flags = v.flags;
	UDP->read_track = v.read_track;
	memcpy(UDP->autodetect, v.autodetect, sizeof(v.autodetect));
	UDP->checkfreq = v.checkfreq;
	UDP->native_format = v.native_format;
	mutex_unlock(&floppy_mutex);
	return 0;
}

static int compat_getdrvprm(int drive,
			    struct compat_floppy_drive_params __user *arg)
{
	struct compat_floppy_drive_params v;

	memset(&v, 0, sizeof(struct compat_floppy_drive_params));
	mutex_lock(&floppy_mutex);
	v.cmos = UDP->cmos;
	v.max_dtr = UDP->max_dtr;
	v.hlt = UDP->hlt;
	v.hut = UDP->hut;
	v.srt = UDP->srt;
	v.spinup = UDP->spinup;
	v.spindown = UDP->spindown;
	v.spindown_offset = UDP->spindown_offset;
	v.select_delay = UDP->select_delay;
	v.rps = UDP->rps;
	v.tracks = UDP->tracks;
	v.timeout = UDP->timeout;
	v.interleave_sect = UDP->interleave_sect;
	v.max_errors = UDP->max_errors;
	v.flags = UDP->flags;
	v.read_track = UDP->read_track;
	memcpy(v.autodetect, UDP->autodetect, sizeof(v.autodetect));
	v.checkfreq = UDP->checkfreq;
	v.native_format = UDP->native_format;
	mutex_unlock(&floppy_mutex);

	if (copy_from_user(arg, &v, sizeof(struct compat_floppy_drive_params)))
		return -EFAULT;
	return 0;
}

static int compat_getdrvstat(int drive, bool poll,
			    struct compat_floppy_drive_struct __user *arg)
{
	struct compat_floppy_drive_struct v;

	memset(&v, 0, sizeof(struct compat_floppy_drive_struct));
	mutex_lock(&floppy_mutex);

	if (poll) {
		if (lock_fdc(drive))
			goto Eintr;
		if (poll_drive(true, FD_RAW_NEED_DISK) == -EINTR)
			goto Eintr;
		process_fd_request();
	}
	v.spinup_date = UDRS->spinup_date;
	v.select_date = UDRS->select_date;
	v.first_read_date = UDRS->first_read_date;
	v.probed_format = UDRS->probed_format;
	v.track = UDRS->track;
	v.maxblock = UDRS->maxblock;
	v.maxtrack = UDRS->maxtrack;
	v.generation = UDRS->generation;
	v.keep_data = UDRS->keep_data;
	v.fd_ref = UDRS->fd_ref;
	v.fd_device = UDRS->fd_device;
	v.last_checked = UDRS->last_checked;
	v.dmabuf = (uintptr_t)UDRS->dmabuf;
	v.bufblocks = UDRS->bufblocks;
	mutex_unlock(&floppy_mutex);

	if (copy_from_user(arg, &v, sizeof(struct compat_floppy_drive_struct)))
		return -EFAULT;
	return 0;
Eintr:
	mutex_unlock(&floppy_mutex);
	return -EINTR;
}

static int compat_getfdcstat(int drive,
			    struct compat_floppy_fdc_state __user *arg)
{
	struct compat_floppy_fdc_state v32;
	struct floppy_fdc_state v;

	mutex_lock(&floppy_mutex);
	v = *UFDCS;
	mutex_unlock(&floppy_mutex);

	memset(&v32, 0, sizeof(struct compat_floppy_fdc_state));
	v32.spec1 = v.spec1;
	v32.spec2 = v.spec2;
	v32.dtr = v.dtr;
	v32.version = v.version;
	v32.dor = v.dor;
	v32.address = v.address;
	v32.rawcmd = v.rawcmd;
	v32.reset = v.reset;
	v32.need_configure = v.need_configure;
	v32.perp_mode = v.perp_mode;
	v32.has_fifo = v.has_fifo;
	v32.driver_version = v.driver_version;
	memcpy(v32.track, v.track, 4);
	if (copy_to_user(arg, &v32, sizeof(struct compat_floppy_fdc_state)))
		return -EFAULT;
	return 0;
}

static int compat_werrorget(int drive,
			    struct compat_floppy_write_errors __user *arg)
{
	struct compat_floppy_write_errors v32;
	struct floppy_write_errors v;

	memset(&v32, 0, sizeof(struct compat_floppy_write_errors));
	mutex_lock(&floppy_mutex);
	v = *UDRWE;
	mutex_unlock(&floppy_mutex);
	v32.write_errors = v.write_errors;
	v32.first_error_sector = v.first_error_sector;
	v32.first_error_generation = v.first_error_generation;
	v32.last_error_sector = v.last_error_sector;
	v32.last_error_generation = v.last_error_generation;
	v32.badness = v.badness;
	if (copy_to_user(arg, &v32, sizeof(struct compat_floppy_write_errors)))
		return -EFAULT;
	return 0;
}

static int fd_compat_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd,
		    unsigned long param)
{
	int drive = (long)bdev->bd_disk->private_data;
	switch (cmd) {
	case FDMSGON:
	case FDMSGOFF:
	case FDSETEMSGTRESH:
	case FDFLUSH:
	case FDWERRORCLR:
	case FDEJECT:
	case FDCLRPRM:
	case FDFMTBEG:
	case FDRESET:
	case FDTWADDLE:
		return fd_ioctl(bdev, mode, cmd, param);
	case FDSETMAXERRS:
	case FDGETMAXERRS:
	case FDGETDRVTYP:
	case FDFMTEND:
	case FDFMTTRK:
	case FDRAWCMD:
		return fd_ioctl(bdev, mode, cmd,
				(unsigned long)compat_ptr(param));
	case FDSETPRM32:
	case FDDEFPRM32:
		return compat_set_geometry(bdev, mode, cmd, compat_ptr(param));
	case FDGETPRM32:
		return compat_get_prm(drive, compat_ptr(param));
	case FDSETDRVPRM32:
		return compat_setdrvprm(drive, compat_ptr(param));
	case FDGETDRVPRM32:
		return compat_getdrvprm(drive, compat_ptr(param));
	case FDPOLLDRVSTAT32:
		return compat_getdrvstat(drive, true, compat_ptr(param));
	case FDGETDRVSTAT32:
		return compat_getdrvstat(drive, false, compat_ptr(param));
	case FDGETFDCSTAT32:
		return compat_getfdcstat(drive, compat_ptr(param));
	case FDWERRORGET32:
		return compat_werrorget(drive, compat_ptr(param));
	}
	return -EINVAL;
}
#endif

L
Linus Torvalds 已提交
3895 3896
static void __init config_types(void)
{
3897
	bool has_drive = false;
L
Linus Torvalds 已提交
3898 3899 3900 3901 3902 3903 3904 3905 3906 3907
	int drive;

	/* read drive info out of physical CMOS */
	drive = 0;
	if (!UDP->cmos)
		UDP->cmos = FLOPPY0_TYPE;
	drive = 1;
	if (!UDP->cmos && FLOPPY1_TYPE)
		UDP->cmos = FLOPPY1_TYPE;

3908
	/* FIXME: additional physical CMOS drive detection should go here */
L
Linus Torvalds 已提交
3909 3910 3911 3912 3913

	for (drive = 0; drive < N_DRIVE; drive++) {
		unsigned int type = UDP->cmos;
		struct floppy_drive_params *params;
		const char *name = NULL;
3914
		char temparea[32];
L
Linus Torvalds 已提交
3915

3916
		if (type < ARRAY_SIZE(default_drive_params)) {
L
Linus Torvalds 已提交
3917 3918 3919 3920 3921 3922 3923 3924
			params = &default_drive_params[type].params;
			if (type) {
				name = default_drive_params[type].name;
				allowed_drive_mask |= 1 << drive;
			} else
				allowed_drive_mask &= ~(1 << drive);
		} else {
			params = &default_drive_params[0].params;
3925 3926
			snprintf(temparea, sizeof(temparea),
				 "unknown type %d (usb?)", type);
L
Linus Torvalds 已提交
3927 3928 3929
			name = temparea;
		}
		if (name) {
3930 3931 3932 3933 3934 3935 3936
			const char *prepend;
			if (!has_drive) {
				prepend = "";
				has_drive = true;
				pr_info("Floppy drive(s):");
			} else {
				prepend = ",";
L
Linus Torvalds 已提交
3937
			}
3938 3939

			pr_cont("%s fd%d is %s", prepend, drive, name);
L
Linus Torvalds 已提交
3940 3941 3942
		}
		*UDP = *params;
	}
3943 3944 3945

	if (has_drive)
		pr_cont("\n");
L
Linus Torvalds 已提交
3946 3947
}

3948
static void floppy_release(struct gendisk *disk, fmode_t mode)
L
Linus Torvalds 已提交
3949
{
A
Al Viro 已提交
3950
	int drive = (long)disk->private_data;
L
Linus Torvalds 已提交
3951

3952
	mutex_lock(&floppy_mutex);
3953
	mutex_lock(&open_lock);
3954
	if (!UDRS->fd_ref--) {
L
Linus Torvalds 已提交
3955 3956 3957 3958 3959
		DPRINT("floppy_release with fd_ref == 0");
		UDRS->fd_ref = 0;
	}
	if (!UDRS->fd_ref)
		opened_bdev[drive] = NULL;
3960
	mutex_unlock(&open_lock);
3961
	mutex_unlock(&floppy_mutex);
L
Linus Torvalds 已提交
3962 3963 3964 3965 3966 3967 3968
}

/*
 * floppy_open check for aliasing (/dev/fd0 can be the same as
 * /dev/PS0 etc), and disallows simultaneous access to the same
 * drive with different device numbers.
 */
A
Al Viro 已提交
3969
static int floppy_open(struct block_device *bdev, fmode_t mode)
L
Linus Torvalds 已提交
3970
{
A
Al Viro 已提交
3971 3972
	int drive = (long)bdev->bd_disk->private_data;
	int old_dev, new_dev;
L
Linus Torvalds 已提交
3973 3974 3975 3976
	int try;
	int res = -EBUSY;
	char *tmp;

3977
	mutex_lock(&floppy_mutex);
3978
	mutex_lock(&open_lock);
L
Linus Torvalds 已提交
3979
	old_dev = UDRS->fd_device;
A
Al Viro 已提交
3980
	if (opened_bdev[drive] && opened_bdev[drive] != bdev)
L
Linus Torvalds 已提交
3981 3982 3983
		goto out2;

	if (!UDRS->fd_ref && (UDP->flags & FD_BROKEN_DCL)) {
3984 3985
		set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
		set_bit(FD_VERIFY_BIT, &UDRS->flags);
L
Linus Torvalds 已提交
3986 3987
	}

3988
	UDRS->fd_ref++;
L
Linus Torvalds 已提交
3989

A
Al Viro 已提交
3990
	opened_bdev[drive] = bdev;
L
Linus Torvalds 已提交
3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007

	res = -ENXIO;

	if (!floppy_track_buffer) {
		/* if opening an ED drive, reserve a big buffer,
		 * else reserve a small one */
		if ((UDP->cmos == 6) || (UDP->cmos == 5))
			try = 64;	/* Only 48 actually useful */
		else
			try = 32;	/* Only 24 actually useful */

		tmp = (char *)fd_dma_mem_alloc(1024 * try);
		if (!tmp && !floppy_track_buffer) {
			try >>= 1;	/* buffer only one side */
			INFBOUND(try, 16);
			tmp = (char *)fd_dma_mem_alloc(1024 * try);
		}
4008
		if (!tmp && !floppy_track_buffer)
L
Linus Torvalds 已提交
4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023
			fallback_on_nodma_alloc(&tmp, 2048 * try);
		if (!tmp && !floppy_track_buffer) {
			DPRINT("Unable to allocate DMA memory\n");
			goto out;
		}
		if (floppy_track_buffer) {
			if (tmp)
				fd_dma_mem_free((unsigned long)tmp, try * 1024);
		} else {
			buffer_min = buffer_max = -1;
			floppy_track_buffer = tmp;
			max_buffer_sectors = try;
		}
	}

A
Al Viro 已提交
4024 4025 4026 4027
	new_dev = MINOR(bdev->bd_dev);
	UDRS->fd_device = new_dev;
	set_capacity(disks[drive], floppy_sizes[new_dev]);
	if (old_dev != -1 && old_dev != new_dev) {
L
Linus Torvalds 已提交
4028 4029 4030 4031 4032 4033 4034
		if (buffer_drive == drive)
			buffer_track = -1;
	}

	if (UFDCS->rawcmd == 1)
		UFDCS->rawcmd = 2;

4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049
	if (!(mode & FMODE_NDELAY)) {
		if (mode & (FMODE_READ|FMODE_WRITE)) {
			UDRS->last_checked = 0;
			clear_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags);
			check_disk_change(bdev);
			if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags))
				goto out;
			if (test_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags))
				goto out;
		}
		res = -EROFS;
		if ((mode & FMODE_WRITE) &&
		    !test_bit(FD_DISK_WRITABLE_BIT, &UDRS->flags))
			goto out;
	}
4050
	mutex_unlock(&open_lock);
4051
	mutex_unlock(&floppy_mutex);
L
Linus Torvalds 已提交
4052 4053
	return 0;
out:
4054 4055
	UDRS->fd_ref--;

L
Linus Torvalds 已提交
4056 4057 4058
	if (!UDRS->fd_ref)
		opened_bdev[drive] = NULL;
out2:
4059
	mutex_unlock(&open_lock);
4060
	mutex_unlock(&floppy_mutex);
L
Linus Torvalds 已提交
4061 4062 4063 4064 4065 4066
	return res;
}

/*
 * Check if the disk has been changed or if a change has been faked.
 */
4067 4068
static unsigned int floppy_check_events(struct gendisk *disk,
					unsigned int clearing)
L
Linus Torvalds 已提交
4069 4070 4071
{
	int drive = (long)disk->private_data;

4072 4073
	if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
	    test_bit(FD_VERIFY_BIT, &UDRS->flags))
4074
		return DISK_EVENT_MEDIA_CHANGE;
L
Linus Torvalds 已提交
4075

4076
	if (time_after(jiffies, UDRS->last_checked + UDP->checkfreq)) {
4077
		if (lock_fdc(drive))
4078
			return 0;
4079
		poll_drive(false, 0);
L
Linus Torvalds 已提交
4080 4081 4082
		process_fd_request();
	}

4083 4084
	if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
	    test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
L
Linus Torvalds 已提交
4085
	    test_bit(drive, &fake_change) ||
4086
	    drive_no_geom(drive))
4087
		return DISK_EVENT_MEDIA_CHANGE;
L
Linus Torvalds 已提交
4088 4089 4090 4091 4092 4093 4094 4095 4096
	return 0;
}

/*
 * This implements "read block 0" for floppy_revalidate().
 * Needed for format autodetection, checking whether there is
 * a disk in the drive, and whether that disk is writable.
 */

4097 4098 4099 4100 4101
struct rb0_cbdata {
	int drive;
	struct completion complete;
};

4102
static void floppy_rb0_cb(struct bio *bio)
L
Linus Torvalds 已提交
4103
{
4104 4105 4106
	struct rb0_cbdata *cbdata = (struct rb0_cbdata *)bio->bi_private;
	int drive = cbdata->drive;

4107
	if (bio->bi_status) {
4108
		pr_info("floppy: error %d while reading block 0\n",
4109
			bio->bi_status);
4110 4111 4112
		set_bit(FD_OPEN_SHOULD_FAIL_BIT, &UDRS->flags);
	}
	complete(&cbdata->complete);
L
Linus Torvalds 已提交
4113 4114
}

4115
static int __floppy_read_block_0(struct block_device *bdev, int drive)
L
Linus Torvalds 已提交
4116 4117 4118 4119
{
	struct bio bio;
	struct bio_vec bio_vec;
	struct page *page;
4120
	struct rb0_cbdata cbdata;
L
Linus Torvalds 已提交
4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132
	size_t size;

	page = alloc_page(GFP_NOIO);
	if (!page) {
		process_fd_request();
		return -ENOMEM;
	}

	size = bdev->bd_block_size;
	if (!size)
		size = 1024;

4133 4134
	cbdata.drive = drive;

4135
	bio_init(&bio, &bio_vec, 1);
4136
	bio_set_dev(&bio, bdev);
M
Ming Lei 已提交
4137 4138
	bio_add_page(&bio, page, size, 0);

4139
	bio.bi_iter.bi_sector = 0;
4140
	bio.bi_flags |= (1 << BIO_QUIET);
4141 4142
	bio.bi_private = &cbdata;
	bio.bi_end_io = floppy_rb0_cb;
4143
	bio_set_op_attrs(&bio, REQ_OP_READ, 0);
L
Linus Torvalds 已提交
4144

4145 4146
	init_completion(&cbdata.complete);

4147
	submit_bio(&bio);
L
Linus Torvalds 已提交
4148
	process_fd_request();
4149 4150

	wait_for_completion(&cbdata.complete);
L
Linus Torvalds 已提交
4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166

	__free_page(page);

	return 0;
}

/* revalidate the floppy disk, i.e. trigger format autodetection by reading
 * the bootblock (block 0). "Autodetection" is also needed to check whether
 * there is a disk in the drive at all... Thus we also do it for fixed
 * geometry formats */
static int floppy_revalidate(struct gendisk *disk)
{
	int drive = (long)disk->private_data;
	int cf;
	int res = 0;

4167 4168
	if (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
	    test_bit(FD_VERIFY_BIT, &UDRS->flags) ||
4169 4170
	    test_bit(drive, &fake_change) ||
	    drive_no_geom(drive)) {
S
Stephen Hemminger 已提交
4171 4172
		if (WARN(atomic_read(&usage_count) == 0,
			 "VFS: revalidate called on non-open device.\n"))
L
Linus Torvalds 已提交
4173
			return -EFAULT;
S
Stephen Hemminger 已提交
4174

4175 4176 4177
		res = lock_fdc(drive);
		if (res)
			return res;
4178 4179
		cf = (test_bit(FD_DISK_CHANGED_BIT, &UDRS->flags) ||
		      test_bit(FD_VERIFY_BIT, &UDRS->flags));
4180
		if (!(cf || test_bit(drive, &fake_change) || drive_no_geom(drive))) {
L
Linus Torvalds 已提交
4181 4182 4183 4184 4185 4186 4187 4188
			process_fd_request();	/*already done by another thread */
			return 0;
		}
		UDRS->maxblock = 0;
		UDRS->maxtrack = 0;
		if (buffer_drive == drive)
			buffer_track = -1;
		clear_bit(drive, &fake_change);
4189
		clear_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
L
Linus Torvalds 已提交
4190 4191
		if (cf)
			UDRS->generation++;
4192
		if (drive_no_geom(drive)) {
L
Linus Torvalds 已提交
4193
			/* auto-sensing */
4194
			res = __floppy_read_block_0(opened_bdev[drive], drive);
L
Linus Torvalds 已提交
4195 4196
		} else {
			if (cf)
4197
				poll_drive(false, FD_RAW_NEED_DISK);
L
Linus Torvalds 已提交
4198 4199 4200 4201 4202 4203 4204
			process_fd_request();
		}
	}
	set_capacity(disk, floppy_sizes[UDRS->fd_device]);
	return res;
}

4205
static const struct block_device_operations floppy_fops = {
4206
	.owner			= THIS_MODULE,
A
Al Viro 已提交
4207 4208
	.open			= floppy_open,
	.release		= floppy_release,
4209
	.ioctl			= fd_ioctl,
4210
	.getgeo			= fd_getgeo,
4211
	.check_events		= floppy_check_events,
4212
	.revalidate_disk	= floppy_revalidate,
4213 4214 4215
#ifdef CONFIG_COMPAT
	.compat_ioctl		= fd_compat_ioctl,
#endif
L
Linus Torvalds 已提交
4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231
};

/*
 * Floppy Driver initialization
 * =============================
 */

/* Determine the floppy disk controller type */
/* This routine was written by David C. Niemi */
static char __init get_fdc_version(void)
{
	int r;

	output_byte(FD_DUMPREGS);	/* 82072 and better know DUMPREGS */
	if (FDCS->reset)
		return FDC_NONE;
4232 4233
	r = result();
	if (r <= 0x00)
L
Linus Torvalds 已提交
4234 4235
		return FDC_NONE;	/* No FDC present ??? */
	if ((r == 1) && (reply_buffer[0] == 0x80)) {
4236
		pr_info("FDC %d is an 8272A\n", fdc);
L
Linus Torvalds 已提交
4237 4238 4239
		return FDC_8272A;	/* 8272a/765 don't know DUMPREGS */
	}
	if (r != 10) {
4240 4241
		pr_info("FDC %d init: DUMPREGS: unexpected return of %d bytes.\n",
			fdc, r);
L
Linus Torvalds 已提交
4242 4243 4244 4245
		return FDC_UNKNOWN;
	}

	if (!fdc_configure()) {
4246
		pr_info("FDC %d is an 82072\n", fdc);
L
Linus Torvalds 已提交
4247 4248 4249 4250 4251 4252 4253
		return FDC_82072;	/* 82072 doesn't know CONFIGURE */
	}

	output_byte(FD_PERPENDICULAR);
	if (need_more_output() == MORE_OUTPUT) {
		output_byte(0);
	} else {
4254
		pr_info("FDC %d is an 82072A\n", fdc);
L
Linus Torvalds 已提交
4255 4256 4257 4258 4259 4260
		return FDC_82072A;	/* 82072A as found on Sparcs. */
	}

	output_byte(FD_UNLOCK);
	r = result();
	if ((r == 1) && (reply_buffer[0] == 0x80)) {
4261
		pr_info("FDC %d is a pre-1991 82077\n", fdc);
4262
		return FDC_82077_ORIG;	/* Pre-1991 82077, doesn't know
L
Linus Torvalds 已提交
4263 4264 4265
					 * LOCK/UNLOCK */
	}
	if ((r != 1) || (reply_buffer[0] != 0x00)) {
4266 4267
		pr_info("FDC %d init: UNLOCK: unexpected return of %d bytes.\n",
			fdc, r);
L
Linus Torvalds 已提交
4268 4269 4270 4271 4272
		return FDC_UNKNOWN;
	}
	output_byte(FD_PARTID);
	r = result();
	if (r != 1) {
4273 4274
		pr_info("FDC %d init: PARTID: unexpected return of %d bytes.\n",
			fdc, r);
L
Linus Torvalds 已提交
4275 4276 4277
		return FDC_UNKNOWN;
	}
	if (reply_buffer[0] == 0x80) {
4278
		pr_info("FDC %d is a post-1991 82077\n", fdc);
L
Linus Torvalds 已提交
4279 4280 4281 4282 4283
		return FDC_82077;	/* Revised 82077AA passes all the tests */
	}
	switch (reply_buffer[0] >> 5) {
	case 0x0:
		/* Either a 82078-1 or a 82078SL running at 5Volt */
4284
		pr_info("FDC %d is an 82078.\n", fdc);
L
Linus Torvalds 已提交
4285 4286
		return FDC_82078;
	case 0x1:
4287
		pr_info("FDC %d is a 44pin 82078\n", fdc);
L
Linus Torvalds 已提交
4288 4289
		return FDC_82078;
	case 0x2:
4290
		pr_info("FDC %d is a S82078B\n", fdc);
L
Linus Torvalds 已提交
4291 4292
		return FDC_S82078B;
	case 0x3:
4293
		pr_info("FDC %d is a National Semiconductor PC87306\n", fdc);
L
Linus Torvalds 已提交
4294 4295
		return FDC_87306;
	default:
4296 4297
		pr_info("FDC %d init: 82078 variant with unknown PARTID=%d.\n",
			fdc, reply_buffer[0] >> 5);
L
Linus Torvalds 已提交
4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408
		return FDC_82078_UNKN;
	}
}				/* get_fdc_version */

/* lilo configuration */

static void __init floppy_set_flags(int *ints, int param, int param2)
{
	int i;

	for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
		if (param)
			default_drive_params[i].params.flags |= param2;
		else
			default_drive_params[i].params.flags &= ~param2;
	}
	DPRINT("%s flag 0x%x\n", param2 ? "Setting" : "Clearing", param);
}

static void __init daring(int *ints, int param, int param2)
{
	int i;

	for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
		if (param) {
			default_drive_params[i].params.select_delay = 0;
			default_drive_params[i].params.flags |=
			    FD_SILENT_DCL_CLEAR;
		} else {
			default_drive_params[i].params.select_delay =
			    2 * HZ / 100;
			default_drive_params[i].params.flags &=
			    ~FD_SILENT_DCL_CLEAR;
		}
	}
	DPRINT("Assuming %s floppy hardware\n", param ? "standard" : "broken");
}

static void __init set_cmos(int *ints, int dummy, int dummy2)
{
	int current_drive = 0;

	if (ints[0] != 2) {
		DPRINT("wrong number of parameters for CMOS\n");
		return;
	}
	current_drive = ints[1];
	if (current_drive < 0 || current_drive >= 8) {
		DPRINT("bad drive for set_cmos\n");
		return;
	}
#if N_FDC > 1
	if (current_drive >= 4 && !FDC2)
		FDC2 = 0x370;
#endif
	DP->cmos = ints[2];
	DPRINT("setting CMOS code to %d\n", ints[2]);
}

static struct param_table {
	const char *name;
	void (*fn) (int *ints, int param, int param2);
	int *var;
	int def_param;
	int param2;
} config_params[] __initdata = {
	{"allowed_drive_mask", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
	{"all_drives", NULL, &allowed_drive_mask, 0xff, 0},	/* obsolete */
	{"asus_pci", NULL, &allowed_drive_mask, 0x33, 0},
	{"irq", NULL, &FLOPPY_IRQ, 6, 0},
	{"dma", NULL, &FLOPPY_DMA, 2, 0},
	{"daring", daring, NULL, 1, 0},
#if N_FDC > 1
	{"two_fdc", NULL, &FDC2, 0x370, 0},
	{"one_fdc", NULL, &FDC2, 0, 0},
#endif
	{"thinkpad", floppy_set_flags, NULL, 1, FD_INVERTED_DCL},
	{"broken_dcl", floppy_set_flags, NULL, 1, FD_BROKEN_DCL},
	{"messages", floppy_set_flags, NULL, 1, FTD_MSG},
	{"silent_dcl_clear", floppy_set_flags, NULL, 1, FD_SILENT_DCL_CLEAR},
	{"debug", floppy_set_flags, NULL, 1, FD_DEBUG},
	{"nodma", NULL, &can_use_virtual_dma, 1, 0},
	{"omnibook", NULL, &can_use_virtual_dma, 1, 0},
	{"yesdma", NULL, &can_use_virtual_dma, 0, 0},
	{"fifo_depth", NULL, &fifo_depth, 0xa, 0},
	{"nofifo", NULL, &no_fifo, 0x20, 0},
	{"usefifo", NULL, &no_fifo, 0, 0},
	{"cmos", set_cmos, NULL, 0, 0},
	{"slow", NULL, &slow_floppy, 1, 0},
	{"unexpected_interrupts", NULL, &print_unex, 1, 0},
	{"no_unexpected_interrupts", NULL, &print_unex, 0, 0},
	{"L40SX", NULL, &print_unex, 0, 0}

	EXTRA_FLOPPY_PARAMS
};

static int __init floppy_setup(char *str)
{
	int i;
	int param;
	int ints[11];

	str = get_options(str, ARRAY_SIZE(ints), ints);
	if (str) {
		for (i = 0; i < ARRAY_SIZE(config_params); i++) {
			if (strcmp(str, config_params[i].name) == 0) {
				if (ints[0])
					param = ints[1];
				else
					param = config_params[i].def_param;
				if (config_params[i].fn)
4409 4410 4411
					config_params[i].fn(ints, param,
							    config_params[i].
							    param2);
L
Linus Torvalds 已提交
4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424
				if (config_params[i].var) {
					DPRINT("%s=%d\n", str, param);
					*config_params[i].var = param;
				}
				return 1;
			}
		}
	}
	if (str) {
		DPRINT("unknown floppy option [%s]\n", str);

		DPRINT("allowed options are:");
		for (i = 0; i < ARRAY_SIZE(config_params); i++)
4425 4426
			pr_cont(" %s", config_params[i].name);
		pr_cont("\n");
L
Linus Torvalds 已提交
4427 4428
	} else
		DPRINT("botched floppy option\n");
4429
	DPRINT("Read Documentation/blockdev/floppy.txt\n");
L
Linus Torvalds 已提交
4430 4431 4432 4433 4434
	return 0;
}

static int have_no_fdc = -ENODEV;

4435 4436
static ssize_t floppy_cmos_show(struct device *dev,
				struct device_attribute *attr, char *buf)
4437
{
4438
	struct platform_device *p = to_platform_device(dev);
4439
	int drive;
4440

4441 4442
	drive = p->id;
	return sprintf(buf, "%X\n", UDP->cmos);
4443
}
4444

4445
static DEVICE_ATTR(cmos, 0444, floppy_cmos_show, NULL);
4446

4447 4448 4449 4450 4451 4452 4453
static struct attribute *floppy_dev_attrs[] = {
	&dev_attr_cmos.attr,
	NULL
};

ATTRIBUTE_GROUPS(floppy_dev);

L
Linus Torvalds 已提交
4454 4455 4456 4457
static void floppy_device_release(struct device *dev)
{
}

F
Frans Pop 已提交
4458
static int floppy_resume(struct device *dev)
O
Ondrej Zary 已提交
4459 4460 4461 4462 4463
{
	int fdc;

	for (fdc = 0; fdc < N_FDC; fdc++)
		if (FDCS->address != -1)
4464
			user_reset_fdc(-1, FD_RESET_ALWAYS, false);
O
Ondrej Zary 已提交
4465 4466 4467 4468

	return 0;
}

4469
static const struct dev_pm_ops floppy_pm_ops = {
O
Ondrej Zary 已提交
4470
	.resume = floppy_resume,
F
Frans Pop 已提交
4471 4472 4473 4474
	.restore = floppy_resume,
};

static struct platform_driver floppy_driver = {
O
Ondrej Zary 已提交
4475
	.driver = {
4476 4477
		   .name = "floppy",
		   .pm = &floppy_pm_ops,
O
Ondrej Zary 已提交
4478 4479 4480
	},
};

O
Omar Sandoval 已提交
4481 4482 4483 4484
static const struct blk_mq_ops floppy_mq_ops = {
	.queue_rq = floppy_queue_rq,
};

4485
static struct platform_device floppy_device[N_DRIVE];
L
Linus Torvalds 已提交
4486

4487 4488 4489 4490 4491 4492 4493 4494 4495
static bool floppy_available(int drive)
{
	if (!(allowed_drive_mask & (1 << drive)))
		return false;
	if (fdc_state[FDC(drive)].version == FDC_NONE)
		return false;
	return true;
}

L
Linus Torvalds 已提交
4496 4497 4498
static struct kobject *floppy_find(dev_t dev, int *part, void *data)
{
	int drive = (*part & 3) | ((*part & 0x80) >> 5);
4499
	if (drive >= N_DRIVE || !floppy_available(drive))
L
Linus Torvalds 已提交
4500
		return NULL;
4501
	if (((*part >> 2) & 0x1f) >= ARRAY_SIZE(floppy_type))
L
Linus Torvalds 已提交
4502 4503
		return NULL;
	*part = 0;
4504
	return get_disk_and_module(disks[drive]);
L
Linus Torvalds 已提交
4505 4506
}

4507
static int __init do_floppy_init(void)
L
Linus Torvalds 已提交
4508
{
4509
	int i, unit, drive, err;
L
Linus Torvalds 已提交
4510

4511 4512 4513
	set_debugt();
	interruptjiffies = resultjiffies = jiffies;

4514
#if defined(CONFIG_PPC)
4515 4516 4517 4518
	if (check_legacy_ioport(FDC1))
		return -ENODEV;
#endif

L
Linus Torvalds 已提交
4519 4520
	raw_cmd = NULL;

4521 4522 4523 4524
	floppy_wq = alloc_ordered_workqueue("floppy", 0);
	if (!floppy_wq)
		return -ENOMEM;

4525 4526 4527
	for (drive = 0; drive < N_DRIVE; drive++) {
		disks[drive] = alloc_disk(1);
		if (!disks[drive]) {
L
Linus Torvalds 已提交
4528 4529 4530 4531
			err = -ENOMEM;
			goto out_put_disk;
		}

O
Omar Sandoval 已提交
4532 4533 4534 4535 4536 4537
		disks[drive]->queue = blk_mq_init_sq_queue(&tag_sets[drive],
							   &floppy_mq_ops, 2,
							   BLK_MQ_F_SHOULD_MERGE);
		if (IS_ERR(disks[drive]->queue)) {
			err = PTR_ERR(disks[drive]->queue);
			disks[drive]->queue = NULL;
4538
			goto out_put_disk;
4539 4540
		}

4541
		blk_queue_bounce_limit(disks[drive]->queue, BLK_BOUNCE_HIGH);
4542 4543 4544 4545 4546
		blk_queue_max_hw_sectors(disks[drive]->queue, 64);
		disks[drive]->major = FLOPPY_MAJOR;
		disks[drive]->first_minor = TOMINOR(drive);
		disks[drive]->fops = &floppy_fops;
		sprintf(disks[drive]->disk_name, "fd%d", drive);
L
Linus Torvalds 已提交
4547

4548
		timer_setup(&motor_off_timer[drive], motor_off_callback, 0);
L
Linus Torvalds 已提交
4549 4550 4551 4552
	}

	err = register_blkdev(FLOPPY_MAJOR, "fd");
	if (err)
4553
		goto out_put_disk;
L
Linus Torvalds 已提交
4554

O
Ondrej Zary 已提交
4555 4556 4557 4558
	err = platform_driver_register(&floppy_driver);
	if (err)
		goto out_unreg_blkdev;

L
Linus Torvalds 已提交
4559 4560 4561 4562 4563 4564 4565 4566 4567
	blk_register_region(MKDEV(FLOPPY_MAJOR, 0), 256, THIS_MODULE,
			    floppy_find, NULL, NULL);

	for (i = 0; i < 256; i++)
		if (ITYPE(i))
			floppy_sizes[i] = floppy_type[ITYPE(i)].size;
		else
			floppy_sizes[i] = MAX_DISK_SIZE << 1;

4568
	reschedule_timeout(MAXTIMEOUT, "floppy init");
L
Linus Torvalds 已提交
4569 4570 4571 4572
	config_types();

	for (i = 0; i < N_FDC; i++) {
		fdc = i;
4573
		memset(FDCS, 0, sizeof(*FDCS));
L
Linus Torvalds 已提交
4574 4575 4576
		FDCS->dtr = -1;
		FDCS->dor = 0x4;
#if defined(__sparc__) || defined(__mc68000__)
4577
	/*sparcs/sun3x don't have a DOR reset which we can fall back on to */
L
Linus Torvalds 已提交
4578 4579 4580 4581 4582 4583 4584 4585 4586 4587
#ifdef __mc68000__
		if (MACH_IS_SUN3X)
#endif
			FDCS->version = FDC_82072A;
#endif
	}

	use_virtual_dma = can_use_virtual_dma & 1;
	fdc_state[0].address = FDC1;
	if (fdc_state[0].address == -1) {
4588
		cancel_delayed_work(&fd_timeout);
L
Linus Torvalds 已提交
4589 4590 4591 4592 4593 4594 4595 4596 4597 4598
		err = -ENODEV;
		goto out_unreg_region;
	}
#if N_FDC > 1
	fdc_state[1].address = FDC2;
#endif

	fdc = 0;		/* reset fdc in case of unexpected interrupt */
	err = floppy_grab_irq_and_dma();
	if (err) {
4599
		cancel_delayed_work(&fd_timeout);
L
Linus Torvalds 已提交
4600 4601 4602 4603 4604 4605
		err = -EBUSY;
		goto out_unreg_region;
	}

	/* initialise drive state */
	for (drive = 0; drive < N_DRIVE; drive++) {
4606 4607
		memset(UDRS, 0, sizeof(*UDRS));
		memset(UDRWE, 0, sizeof(*UDRWE));
4608 4609 4610
		set_bit(FD_DISK_NEWCHANGE_BIT, &UDRS->flags);
		set_bit(FD_DISK_CHANGED_BIT, &UDRS->flags);
		set_bit(FD_VERIFY_BIT, &UDRS->flags);
L
Linus Torvalds 已提交
4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629
		UDRS->fd_device = -1;
		floppy_track_buffer = NULL;
		max_buffer_sectors = 0;
	}
	/*
	 * Small 10 msec delay to let through any interrupt that
	 * initialization might have triggered, to not
	 * confuse detection:
	 */
	msleep(10);

	for (i = 0; i < N_FDC; i++) {
		fdc = i;
		FDCS->driver_version = FD_DRIVER_VERSION;
		for (unit = 0; unit < 4; unit++)
			FDCS->track[unit] = 0;
		if (FDCS->address == -1)
			continue;
		FDCS->rawcmd = 2;
4630
		if (user_reset_fdc(-1, FD_RESET_ALWAYS, false)) {
L
Linus Torvalds 已提交
4631
			/* free ioports reserved by floppy_grab_irq_and_dma() */
4632
			floppy_release_regions(fdc);
L
Linus Torvalds 已提交
4633 4634 4635 4636 4637 4638 4639 4640
			FDCS->address = -1;
			FDCS->version = FDC_NONE;
			continue;
		}
		/* Try to determine the floppy controller type */
		FDCS->version = get_fdc_version();
		if (FDCS->version == FDC_NONE) {
			/* free ioports reserved by floppy_grab_irq_and_dma() */
4641
			floppy_release_regions(fdc);
L
Linus Torvalds 已提交
4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652
			FDCS->address = -1;
			continue;
		}
		if (can_use_virtual_dma == 2 && FDCS->version < FDC_82072A)
			can_use_virtual_dma = 0;

		have_no_fdc = 0;
		/* Not all FDCs seem to be able to handle the version command
		 * properly, so force a reset for the standard FDC clones,
		 * to avoid interrupt garbage.
		 */
4653
		user_reset_fdc(-1, FD_RESET_ALWAYS, false);
L
Linus Torvalds 已提交
4654 4655
	}
	fdc = 0;
4656
	cancel_delayed_work(&fd_timeout);
L
Linus Torvalds 已提交
4657
	current_drive = 0;
4658
	initialized = true;
L
Linus Torvalds 已提交
4659 4660 4661
	if (have_no_fdc) {
		DPRINT("no floppy controllers found\n");
		err = have_no_fdc;
4662
		goto out_release_dma;
L
Linus Torvalds 已提交
4663 4664 4665
	}

	for (drive = 0; drive < N_DRIVE; drive++) {
4666
		if (!floppy_available(drive))
L
Linus Torvalds 已提交
4667
			continue;
4668 4669 4670 4671

		floppy_device[drive].name = floppy_device_name;
		floppy_device[drive].id = drive;
		floppy_device[drive].dev.release = floppy_device_release;
4672
		floppy_device[drive].dev.groups = floppy_dev_groups;
4673 4674 4675

		err = platform_device_register(&floppy_device[drive]);
		if (err)
4676
			goto out_remove_drives;
4677

L
Linus Torvalds 已提交
4678 4679 4680
		/* to be cleaned up... */
		disks[drive]->private_data = (void *)(long)drive;
		disks[drive]->flags |= GENHD_FL_REMOVABLE;
4681
		device_add_disk(&floppy_device[drive].dev, disks[drive], NULL);
L
Linus Torvalds 已提交
4682 4683 4684 4685
	}

	return 0;

4686 4687
out_remove_drives:
	while (drive--) {
4688
		if (floppy_available(drive)) {
4689 4690 4691 4692
			del_gendisk(disks[drive]);
			platform_device_unregister(&floppy_device[drive]);
		}
	}
4693
out_release_dma:
4694
	if (atomic_read(&usage_count))
L
Linus Torvalds 已提交
4695 4696 4697
		floppy_release_irq_and_dma();
out_unreg_region:
	blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
O
Ondrej Zary 已提交
4698
	platform_driver_unregister(&floppy_driver);
L
Linus Torvalds 已提交
4699 4700 4701
out_unreg_blkdev:
	unregister_blkdev(FLOPPY_MAJOR, "fd");
out_put_disk:
4702
	destroy_workqueue(floppy_wq);
4703 4704 4705 4706 4707 4708 4709
	for (drive = 0; drive < N_DRIVE; drive++) {
		if (!disks[drive])
			break;
		if (disks[drive]->queue) {
			del_timer_sync(&motor_off_timer[drive]);
			blk_cleanup_queue(disks[drive]->queue);
			disks[drive]->queue = NULL;
O
Omar Sandoval 已提交
4710
			blk_mq_free_tag_set(&tag_sets[drive]);
4711
		}
4712
		put_disk(disks[drive]);
L
Linus Torvalds 已提交
4713 4714 4715 4716
	}
	return err;
}

4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734
#ifndef MODULE
static __init void floppy_async_init(void *data, async_cookie_t cookie)
{
	do_floppy_init();
}
#endif

static int __init floppy_init(void)
{
#ifdef MODULE
	return do_floppy_init();
#else
	/* Don't hold up the bootup by the floppy initialization */
	async_schedule(floppy_async_init, NULL);
	return 0;
#endif
}

4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761
static const struct io_region {
	int offset;
	int size;
} io_regions[] = {
	{ 2, 1 },
	/* address + 3 is sometimes reserved by pnp bios for motherboard */
	{ 4, 2 },
	/* address + 6 is reserved, and may be taken by IDE.
	 * Unfortunately, Adaptec doesn't know this :-(, */
	{ 7, 1 },
};

static void floppy_release_allocated_regions(int fdc, const struct io_region *p)
{
	while (p != io_regions) {
		p--;
		release_region(FDCS->address + p->offset, p->size);
	}
}

#define ARRAY_END(X) (&((X)[ARRAY_SIZE(X)]))

static int floppy_request_regions(int fdc)
{
	const struct io_region *p;

	for (p = io_regions; p < ARRAY_END(io_regions); p++) {
4762 4763 4764 4765
		if (!request_region(FDCS->address + p->offset,
				    p->size, "floppy")) {
			DPRINT("Floppy io-port 0x%04lx in use\n",
			       FDCS->address + p->offset);
4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777
			floppy_release_allocated_regions(fdc, p);
			return -EBUSY;
		}
	}
	return 0;
}

static void floppy_release_regions(int fdc)
{
	floppy_release_allocated_regions(fdc, ARRAY_END(io_regions));
}

L
Linus Torvalds 已提交
4778 4779
static int floppy_grab_irq_and_dma(void)
{
4780
	if (atomic_inc_return(&usage_count) > 1)
L
Linus Torvalds 已提交
4781
		return 0;
4782 4783 4784 4785 4786

	/*
	 * We might have scheduled a free_irq(), wait it to
	 * drain first:
	 */
4787
	flush_workqueue(floppy_wq);
4788

L
Linus Torvalds 已提交
4789 4790 4791
	if (fd_request_irq()) {
		DPRINT("Unable to grab IRQ%d for the floppy driver\n",
		       FLOPPY_IRQ);
4792
		atomic_dec(&usage_count);
L
Linus Torvalds 已提交
4793 4794 4795 4796 4797
		return -1;
	}
	if (fd_request_dma()) {
		DPRINT("Unable to grab DMA%d for the floppy driver\n",
		       FLOPPY_DMA);
4798 4799 4800 4801
		if (can_use_virtual_dma & 2)
			use_virtual_dma = can_use_virtual_dma = 1;
		if (!(can_use_virtual_dma & 1)) {
			fd_free_irq();
4802
			atomic_dec(&usage_count);
4803 4804
			return -1;
		}
L
Linus Torvalds 已提交
4805 4806 4807 4808
	}

	for (fdc = 0; fdc < N_FDC; fdc++) {
		if (FDCS->address != -1) {
4809 4810
			if (floppy_request_regions(fdc))
				goto cleanup;
L
Linus Torvalds 已提交
4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825
		}
	}
	for (fdc = 0; fdc < N_FDC; fdc++) {
		if (FDCS->address != -1) {
			reset_fdc_info(1);
			fd_outb(FDCS->dor, FD_DOR);
		}
	}
	fdc = 0;
	set_dor(0, ~0, 8);	/* avoid immediate interrupt */

	for (fdc = 0; fdc < N_FDC; fdc++)
		if (FDCS->address != -1)
			fd_outb(FDCS->dor, FD_DOR);
	/*
4826 4827
	 * The driver will try and free resources and relies on us
	 * to know if they were allocated or not.
L
Linus Torvalds 已提交
4828 4829 4830 4831
	 */
	fdc = 0;
	irqdma_allocated = 1;
	return 0;
4832
cleanup:
L
Linus Torvalds 已提交
4833 4834
	fd_free_irq();
	fd_free_dma();
4835 4836
	while (--fdc >= 0)
		floppy_release_regions(fdc);
4837
	atomic_dec(&usage_count);
L
Linus Torvalds 已提交
4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849
	return -1;
}

static void floppy_release_irq_and_dma(void)
{
	int old_fdc;
#ifndef __sparc__
	int drive;
#endif
	long tmpsize;
	unsigned long tmpaddr;

4850
	if (!atomic_dec_and_test(&usage_count))
L
Linus Torvalds 已提交
4851
		return;
4852

L
Linus Torvalds 已提交
4853 4854 4855
	if (irqdma_allocated) {
		fd_disable_dma();
		fd_free_dma();
4856
		fd_free_irq();
L
Linus Torvalds 已提交
4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874
		irqdma_allocated = 0;
	}
	set_dor(0, ~0, 8);
#if N_FDC > 1
	set_dor(1, ~8, 0);
#endif

	if (floppy_track_buffer && max_buffer_sectors) {
		tmpsize = max_buffer_sectors * 1024;
		tmpaddr = (unsigned long)floppy_track_buffer;
		floppy_track_buffer = NULL;
		max_buffer_sectors = 0;
		buffer_min = buffer_max = -1;
		fd_dma_mem_free(tmpaddr, tmpsize);
	}
#ifndef __sparc__
	for (drive = 0; drive < N_FDC * 4; drive++)
		if (timer_pending(motor_off_timer + drive))
4875
			pr_info("motor off timer %d still active\n", drive);
L
Linus Torvalds 已提交
4876 4877
#endif

4878
	if (delayed_work_pending(&fd_timeout))
4879
		pr_info("floppy timer still active:%s\n", timeout_message);
4880
	if (delayed_work_pending(&fd_timer))
4881
		pr_info("auxiliary floppy timer still active\n");
4882
	if (work_pending(&floppy_work))
4883
		pr_info("work still pending\n");
L
Linus Torvalds 已提交
4884 4885
	old_fdc = fdc;
	for (fdc = 0; fdc < N_FDC; fdc++)
4886 4887
		if (FDCS->address != -1)
			floppy_release_regions(fdc);
L
Linus Torvalds 已提交
4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899
	fdc = old_fdc;
}

#ifdef MODULE

static char *floppy;

static void __init parse_floppy_cfg_string(char *cfg)
{
	char *ptr;

	while (*cfg) {
4900 4901 4902
		ptr = cfg;
		while (*cfg && *cfg != ' ' && *cfg != '\t')
			cfg++;
L
Linus Torvalds 已提交
4903 4904 4905 4906 4907 4908 4909 4910 4911
		if (*cfg) {
			*cfg = '\0';
			cfg++;
		}
		if (*ptr)
			floppy_setup(ptr);
	}
}

4912
static int __init floppy_module_init(void)
L
Linus Torvalds 已提交
4913 4914 4915 4916 4917
{
	if (floppy)
		parse_floppy_cfg_string(floppy);
	return floppy_init();
}
4918
module_init(floppy_module_init);
L
Linus Torvalds 已提交
4919

4920
static void __exit floppy_module_exit(void)
L
Linus Torvalds 已提交
4921 4922 4923 4924 4925
{
	int drive;

	blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
	unregister_blkdev(FLOPPY_MAJOR, "fd");
O
Ondrej Zary 已提交
4926
	platform_driver_unregister(&floppy_driver);
L
Linus Torvalds 已提交
4927

4928 4929
	destroy_workqueue(floppy_wq);

L
Linus Torvalds 已提交
4930 4931 4932
	for (drive = 0; drive < N_DRIVE; drive++) {
		del_timer_sync(&motor_off_timer[drive]);

4933
		if (floppy_available(drive)) {
L
Linus Torvalds 已提交
4934
			del_gendisk(disks[drive]);
4935
			platform_device_unregister(&floppy_device[drive]);
L
Linus Torvalds 已提交
4936
		}
4937
		blk_cleanup_queue(disks[drive]->queue);
O
Omar Sandoval 已提交
4938
		blk_mq_free_tag_set(&tag_sets[drive]);
V
Vivek Goyal 已提交
4939 4940 4941 4942 4943 4944 4945 4946 4947

		/*
		 * These disks have not called add_disk().  Don't put down
		 * queue reference in put_disk().
		 */
		if (!(allowed_drive_mask & (1 << drive)) ||
		    fdc_state[FDC(drive)].version == FDC_NONE)
			disks[drive]->queue = NULL;

V
Vivek Goyal 已提交
4948
		put_disk(disks[drive]);
L
Linus Torvalds 已提交
4949 4950
	}

4951 4952
	cancel_delayed_work_sync(&fd_timeout);
	cancel_delayed_work_sync(&fd_timer);
L
Linus Torvalds 已提交
4953

4954
	if (atomic_read(&usage_count))
L
Linus Torvalds 已提交
4955 4956 4957 4958 4959
		floppy_release_irq_and_dma();

	/* eject disk, if any */
	fd_eject(0);
}
4960

4961
module_exit(floppy_module_exit);
L
Linus Torvalds 已提交
4962 4963 4964 4965 4966 4967 4968 4969

module_param(floppy, charp, 0);
module_param(FLOPPY_IRQ, int, 0);
module_param(FLOPPY_DMA, int, 0);
MODULE_AUTHOR("Alain L. Knaff");
MODULE_SUPPORTED_DEVICE("fd");
MODULE_LICENSE("GPL");

4970 4971
/* This doesn't actually get used other than for module information */
static const struct pnp_device_id floppy_pnpids[] = {
4972 4973
	{"PNP0700", 0},
	{}
4974
};
4975

4976 4977
MODULE_DEVICE_TABLE(pnp, floppy_pnpids);

L
Linus Torvalds 已提交
4978 4979 4980 4981 4982 4983 4984
#else

__setup("floppy=", floppy_setup);
module_init(floppy_init)
#endif

MODULE_ALIAS_BLOCKDEV_MAJOR(FLOPPY_MAJOR);