floppy.c
上传用户:ajay2009
上传日期:2009-05-22
资源大小:495k
文件大小:119k
源码类别:

驱动编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/drivers/block/floppy.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  *  Copyright (C) 1993, 1994  Alain Knaff
  6.  *  Copyright (C) 1998 Alan Cox
  7.  */
  8. /*
  9.  * 02.12.91 - Changed to static variables to indicate need for reset
  10.  * and recalibrate. This makes some things easier (output_byte reset
  11.  * checking etc), and means less interrupt jumping in case of errors,
  12.  * so the code is hopefully easier to understand.
  13.  */
  14. /*
  15.  * This file is certainly a mess. I've tried my best to get it working,
  16.  * but I don't like programming floppies, and I have only one anyway.
  17.  * Urgel. I should check for more errors, and do more graceful error
  18.  * recovery. Seems there are problems with several drives. I've tried to
  19.  * correct them. No promises.
  20.  */
  21. /*
  22.  * As with hd.c, all routines within this file can (and will) be called
  23.  * by interrupts, so extreme caution is needed. A hardware interrupt
  24.  * handler may not sleep, or a kernel panic will happen. Thus I cannot
  25.  * call "floppy-on" directly, but have to set a special timer interrupt
  26.  * etc.
  27.  */
  28. /*
  29.  * 28.02.92 - made track-buffering routines, based on the routines written
  30.  * by entropy@wintermute.wpi.edu (Lawrence Foard). Linus.
  31.  */
  32. /*
  33.  * Automatic floppy-detection and formatting written by Werner Almesberger
  34.  * (almesber@nessie.cs.id.ethz.ch), who also corrected some problems with
  35.  * the floppy-change signal detection.
  36.  */
  37. /*
  38.  * 1992/7/22 -- Hennus Bergman: Added better error reporting, fixed
  39.  * FDC data overrun bug, added some preliminary stuff for vertical
  40.  * recording support.
  41.  *
  42.  * 1992/9/17: Added DMA allocation & DMA functions. -- hhb.
  43.  *
  44.  * TODO: Errors are still not counted properly.
  45.  */
  46. /* 1992/9/20
  47.  * Modifications for ``Sector Shifting'' by Rob Hooft (hooft@chem.ruu.nl)
  48.  * modeled after the freeware MS-DOS program fdformat/88 V1.8 by
  49.  * Christoph H. Hochst"atter.
  50.  * I have fixed the shift values to the ones I always use. Maybe a new
  51.  * ioctl() should be created to be able to modify them.
  52.  * There is a bug in the driver that makes it impossible to format a
  53.  * floppy as the first thing after bootup.
  54.  */
  55. /*
  56.  * 1993/4/29 -- Linus -- cleaned up the timer handling in the kernel, and
  57.  * this helped the floppy driver as well. Much cleaner, and still seems to
  58.  * work.
  59.  */
  60. /* 1994/6/24 --bbroad-- added the floppy table entries and made
  61.  * minor modifications to allow 2.88 floppies to be run.
  62.  */
  63. /* 1994/7/13 -- Paul Vojta -- modified the probing code to allow three or more
  64.  * disk types.
  65.  */
  66. /*
  67.  * 1994/8/8 -- Alain Knaff -- Switched to fdpatch driver: Support for bigger
  68.  * format bug fixes, but unfortunately some new bugs too...
  69.  */
  70. /* 1994/9/17 -- Koen Holtman -- added logging of physical floppy write
  71.  * errors to allow safe writing by specialized programs.
  72.  */
  73. /* 1995/4/24 -- Dan Fandrich -- added support for Commodore 1581 3.5" disks
  74.  * by defining bit 1 of the "stretch" parameter to mean put sectors on the
  75.  * opposite side of the disk, leaving the sector IDs alone (i.e. Commodore's
  76.  * drives are "upside-down").
  77.  */
  78. /*
  79.  * 1995/8/26 -- Andreas Busse -- added Mips support.
  80.  */
  81. /*
  82.  * 1995/10/18 -- Ralf Baechle -- Portability cleanup; move machine dependent
  83.  * features to asm/floppy.h.
  84.  */
  85. /*
  86.  * 1998/05/07 -- Russell King -- More portability cleanups; moved definition of
  87.  * interrupt and dma channel to asm/floppy.h. Cleaned up some formatting &
  88.  * use of '0' for NULL.
  89.  */
  90. /*
  91.  * 1998/06/07 -- Alan Cox -- Merged the 2.0.34 fixes for resource allocation
  92.  * failures.
  93.  */
  94. /*
  95.  * 1998/09/20 -- David Weinehall -- Added slow-down code for buggy PS/2-drives.
  96.  */
  97. /*
  98.  * 1999/08/13 -- Paul Slootman -- floppy stopped working on Alpha after 24
  99.  * days, 6 hours, 32 minutes and 32 seconds (i.e. MAXINT jiffies; ints were
  100.  * being used to store jiffies, which are unsigned longs).
  101.  */
  102. /*
  103.  * 2000/08/28 -- Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  104.  * - get rid of check_region
  105.  * - s/suser/capable/
  106.  */
  107. /*
  108.  * 2001/08/26 -- Paul Gortmaker - fix insmod oops on machines with no
  109.  * floppy controller (lingering task on list after module is gone... boom.)
  110.  */
  111. /*
  112.  * 2002/02/07 -- Anton Altaparmakov - Fix io ports reservation to correct range
  113.  * (0x3f2-0x3f5, 0x3f7). This fix is a bit of a hack but the proper fix
  114.  * requires many non-obvious changes in arch dependent code.
  115.  */
  116. /* 2003/07/28 -- Daniele Bellucci <bellucda@tiscali.it>.
  117.  * Better audit of register_blkdev.
  118.  */
  119. #define FLOPPY_SANITY_CHECK
  120. #undef  FLOPPY_SILENT_DCL_CLEAR
  121. #define REALLY_SLOW_IO
  122. #define DEBUGT 2
  123. #define DCL_DEBUG /* debug disk change line */
  124. /* do print messages for unexpected interrupts */
  125. static int print_unex = 1;
  126. #include <linux/module.h>
  127. #include <linux/sched.h>
  128. #include <linux/fs.h>
  129. #include <linux/kernel.h>
  130. #include <linux/timer.h>
  131. #include <linux/workqueue.h>
  132. #define FDPATCHES
  133. #include <linux/fdreg.h>
  134. /*
  135.  * 1998/1/21 -- Richard Gooch <rgooch@atnf.csiro.au> -- devfs support
  136.  */
  137. #include <linux/fd.h>
  138. #include <linux/hdreg.h>
  139. #include <linux/errno.h>
  140. #include <linux/slab.h>
  141. #include <linux/mm.h>
  142. #include <linux/bio.h>
  143. #include <linux/string.h>
  144. #include <linux/fcntl.h>
  145. #include <linux/delay.h>
  146. #include <linux/mc146818rtc.h> /* CMOS defines */
  147. #include <linux/ioport.h>
  148. #include <linux/interrupt.h>
  149. #include <linux/init.h>
  150. #include <linux/devfs_fs_kernel.h>
  151. #include <linux/device.h>
  152. #include <linux/buffer_head.h> /* for invalidate_buffers() */
  153. /*
  154.  * PS/2 floppies have much slower step rates than regular floppies.
  155.  * It's been recommended that take about 1/4 of the default speed
  156.  * in some more extreme cases.
  157.  */
  158. static int slow_floppy;
  159. #include <asm/dma.h>
  160. #include <asm/irq.h>
  161. #include <asm/system.h>
  162. #include <asm/io.h>
  163. #include <asm/uaccess.h>
  164. static int FLOPPY_IRQ = 6;
  165. static int FLOPPY_DMA = 2;
  166. static int can_use_virtual_dma = 2;
  167. /* =======
  168.  * can use virtual DMA:
  169.  * 0 = use of virtual DMA disallowed by config
  170.  * 1 = use of virtual DMA prescribed by config
  171.  * 2 = no virtual DMA preference configured.  By default try hard DMA,
  172.  * but fall back on virtual DMA when not enough memory available
  173.  */
  174. static int use_virtual_dma;
  175. /* =======
  176.  * use virtual DMA
  177.  * 0 using hard DMA
  178.  * 1 using virtual DMA
  179.  * This variable is set to virtual when a DMA mem problem arises, and
  180.  * reset back in floppy_grab_irq_and_dma.
  181.  * It is not safe to reset it in other circumstances, because the floppy
  182.  * driver may have several buffers in use at once, and we do currently not
  183.  * record each buffers capabilities
  184.  */
  185. static DEFINE_SPINLOCK(floppy_lock);
  186. static struct completion device_release;
  187. static unsigned short virtual_dma_port = 0x3f0;
  188. irqreturn_t floppy_interrupt(int irq, void *dev_id, struct pt_regs *regs);
  189. static int set_dor(int fdc, char mask, char data);
  190. static void register_devfs_entries(int drive) __init;
  191. #define K_64 0x10000 /* 64KB */
  192. /* the following is the mask of allowed drives. By default units 2 and
  193.  * 3 of both floppy controllers are disabled, because switching on the
  194.  * motor of these drives causes system hangs on some PCI computers. drive
  195.  * 0 is the low bit (0x1), and drive 7 is the high bit (0x80). Bits are on if
  196.  * a drive is allowed.
  197.  *
  198.  * NOTE: This must come before we include the arch floppy header because
  199.  *       some ports reference this variable from there. -DaveM
  200.  */
  201. static int allowed_drive_mask = 0x33;
  202. #include <asm/floppy.h>
  203. static int irqdma_allocated;
  204. #define LOCAL_END_REQUEST
  205. #define DEVICE_NAME "floppy"
  206. #include <linux/blkdev.h>
  207. #include <linux/blkpg.h>
  208. #include <linux/cdrom.h> /* for the compatibility eject ioctl */
  209. #include <linux/completion.h>
  210. static struct request *current_req;
  211. static struct request_queue *floppy_queue;
  212. static void do_fd_request(request_queue_t * q);
  213. #ifndef fd_get_dma_residue
  214. #define fd_get_dma_residue() get_dma_residue(FLOPPY_DMA)
  215. #endif
  216. /* Dma Memory related stuff */
  217. #ifndef fd_dma_mem_free
  218. #define fd_dma_mem_free(addr, size) free_pages(addr, get_order(size))
  219. #endif
  220. #ifndef fd_dma_mem_alloc
  221. #define fd_dma_mem_alloc(size) __get_dma_pages(GFP_KERNEL,get_order(size))
  222. #endif
  223. static inline void fallback_on_nodma_alloc(char **addr, size_t l)
  224. {
  225. #ifdef FLOPPY_CAN_FALLBACK_ON_NODMA
  226. if (*addr)
  227. return; /* we have the memory */
  228. if (can_use_virtual_dma != 2)
  229. return; /* no fallback allowed */
  230. printk
  231.     ("DMA memory shortage. Temporarily falling back on virtual DMAn");
  232. *addr = (char *)nodma_mem_alloc(l);
  233. #else
  234. return;
  235. #endif
  236. }
  237. /* End dma memory related stuff */
  238. static unsigned long fake_change;
  239. static int initialising = 1;
  240. #define ITYPE(x) (((x)>>2) & 0x1f)
  241. #define TOMINOR(x) ((x & 3) | ((x & 4) << 5))
  242. #define UNIT(x) ((x) & 0x03) /* drive on fdc */
  243. #define FDC(x) (((x) & 0x04) >> 2) /* fdc of drive */
  244. #define REVDRIVE(fdc, unit) ((unit) + ((fdc) << 2))
  245. /* reverse mapping from unit and fdc to drive */
  246. #define DP (&drive_params[current_drive])
  247. #define DRS (&drive_state[current_drive])
  248. #define DRWE (&write_errors[current_drive])
  249. #define FDCS (&fdc_state[fdc])
  250. #define CLEARF(x) (clear_bit(x##_BIT, &DRS->flags))
  251. #define SETF(x) (set_bit(x##_BIT, &DRS->flags))
  252. #define TESTF(x) (test_bit(x##_BIT, &DRS->flags))
  253. #define UDP (&drive_params[drive])
  254. #define UDRS (&drive_state[drive])
  255. #define UDRWE (&write_errors[drive])
  256. #define UFDCS (&fdc_state[FDC(drive)])
  257. #define UCLEARF(x) (clear_bit(x##_BIT, &UDRS->flags))
  258. #define USETF(x) (set_bit(x##_BIT, &UDRS->flags))
  259. #define UTESTF(x) (test_bit(x##_BIT, &UDRS->flags))
  260. #define DPRINT(format, args...) printk(DEVICE_NAME "%d: " format, current_drive , ## args)
  261. #define PH_HEAD(floppy,head) (((((floppy)->stretch & 2) >>1) ^ head) << 2)
  262. #define STRETCH(floppy) ((floppy)->stretch & FD_STRETCH)
  263. #define CLEARSTRUCT(x) memset((x), 0, sizeof(*(x)))
  264. /* read/write */
  265. #define COMMAND raw_cmd->cmd[0]
  266. #define DR_SELECT raw_cmd->cmd[1]
  267. #define TRACK raw_cmd->cmd[2]
  268. #define HEAD raw_cmd->cmd[3]
  269. #define SECTOR raw_cmd->cmd[4]
  270. #define SIZECODE raw_cmd->cmd[5]
  271. #define SECT_PER_TRACK raw_cmd->cmd[6]
  272. #define GAP raw_cmd->cmd[7]
  273. #define SIZECODE2 raw_cmd->cmd[8]
  274. #define NR_RW 9
  275. /* format */
  276. #define F_SIZECODE raw_cmd->cmd[2]
  277. #define F_SECT_PER_TRACK raw_cmd->cmd[3]
  278. #define F_GAP raw_cmd->cmd[4]
  279. #define F_FILL raw_cmd->cmd[5]
  280. #define NR_F 6
  281. /*
  282.  * Maximum disk size (in kilobytes). This default is used whenever the
  283.  * current disk size is unknown.
  284.  * [Now it is rather a minimum]
  285.  */
  286. #define MAX_DISK_SIZE 4 /* 3984 */
  287. /*
  288.  * globals used by 'result()'
  289.  */
  290. #define MAX_REPLIES 16
  291. static unsigned char reply_buffer[MAX_REPLIES];
  292. static int inr; /* size of reply buffer, when called from interrupt */
  293. #define ST0 (reply_buffer[0])
  294. #define ST1 (reply_buffer[1])
  295. #define ST2 (reply_buffer[2])
  296. #define ST3 (reply_buffer[0]) /* result of GETSTATUS */
  297. #define R_TRACK (reply_buffer[3])
  298. #define R_HEAD (reply_buffer[4])
  299. #define R_SECTOR (reply_buffer[5])
  300. #define R_SIZECODE (reply_buffer[6])
  301. #define SEL_DLY (2*HZ/100)
  302. /*
  303.  * this struct defines the different floppy drive types.
  304.  */
  305. static struct {
  306. struct floppy_drive_params params;
  307. const char *name; /* name printed while booting */
  308. } default_drive_params[] = {
  309. /* NOTE: the time values in jiffies should be in msec!
  310.  CMOS drive type
  311.   |     Maximum data rate supported by drive type
  312.   |     |   Head load time, msec
  313.   |     |   |   Head unload time, msec (not used)
  314.   |     |   |   |     Step rate interval, usec
  315.   |     |   |   |     |       Time needed for spinup time (jiffies)
  316.   |     |   |   |     |       |      Timeout for spinning down (jiffies)
  317.   |     |   |   |     |       |      |   Spindown offset (where disk stops)
  318.   |     |   |   |     |       |      |   |     Select delay
  319.   |     |   |   |     |       |      |   |     |     RPS
  320.   |     |   |   |     |       |      |   |     |     |    Max number of tracks
  321.   |     |   |   |     |       |      |   |     |     |    |     Interrupt timeout
  322.   |     |   |   |     |       |      |   |     |     |    |     |   Max nonintlv. sectors
  323.   |     |   |   |     |       |      |   |     |     |    |     |   | -Max Errors- flags */
  324. {{0,  500, 16, 16, 8000,    1*HZ, 3*HZ,  0, SEL_DLY, 5,  80, 3*HZ, 20, {3,1,2,0,2}, 0,
  325.       0, { 7, 4, 8, 2, 1, 5, 3,10}, 3*HZ/2, 0 }, "unknown" },
  326. {{1,  300, 16, 16, 8000,    1*HZ, 3*HZ,  0, SEL_DLY, 5,  40, 3*HZ, 17, {3,1,2,0,2}, 0,
  327.       0, { 1, 0, 0, 0, 0, 0, 0, 0}, 3*HZ/2, 1 }, "360K PC" }, /*5 1/4 360 KB PC*/
  328. {{2,  500, 16, 16, 6000, 4*HZ/10, 3*HZ, 14, SEL_DLY, 6,  83, 3*HZ, 17, {3,1,2,0,2}, 0,
  329.       0, { 2, 5, 6,23,10,20,12, 0}, 3*HZ/2, 2 }, "1.2M" }, /*5 1/4 HD AT*/
  330. {{3,  250, 16, 16, 3000,    1*HZ, 3*HZ,  0, SEL_DLY, 5,  83, 3*HZ, 20, {3,1,2,0,2}, 0,
  331.       0, { 4,22,21,30, 3, 0, 0, 0}, 3*HZ/2, 4 }, "720k" }, /*3 1/2 DD*/
  332. {{4,  500, 16, 16, 4000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5,  83, 3*HZ, 20, {3,1,2,0,2}, 0,
  333.       0, { 7, 4,25,22,31,21,29,11}, 3*HZ/2, 7 }, "1.44M" }, /*3 1/2 HD*/
  334. {{5, 1000, 15,  8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5,  83, 3*HZ, 40, {3,1,2,0,2}, 0,
  335.       0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M AMI BIOS" }, /*3 1/2 ED*/
  336. {{6, 1000, 15,  8, 3000, 4*HZ/10, 3*HZ, 10, SEL_DLY, 5,  83, 3*HZ, 40, {3,1,2,0,2}, 0,
  337.       0, { 7, 8, 4,25,28,22,31,21}, 3*HZ/2, 8 }, "2.88M" } /*3 1/2 ED*/
  338. /*    |  --autodetected formats---    |      |      |
  339.  *    read_track                      |      |    Name printed when booting
  340.  *       |     Native format
  341.  *             Frequency of disk change checks */
  342. };
  343. static struct floppy_drive_params drive_params[N_DRIVE];
  344. static struct floppy_drive_struct drive_state[N_DRIVE];
  345. static struct floppy_write_errors write_errors[N_DRIVE];
  346. static struct timer_list motor_off_timer[N_DRIVE];
  347. static struct gendisk *disks[N_DRIVE];
  348. static struct block_device *opened_bdev[N_DRIVE];
  349. static DECLARE_MUTEX(open_lock);
  350. static struct floppy_raw_cmd *raw_cmd, default_raw_cmd;
  351. /*
  352.  * This struct defines the different floppy types.
  353.  *
  354.  * Bit 0 of 'stretch' tells if the tracks need to be doubled for some
  355.  * types (e.g. 360kB diskette in 1.2MB drive, etc.).  Bit 1 of 'stretch'
  356.  * tells if the disk is in Commodore 1581 format, which means side 0 sectors
  357.  * are located on side 1 of the disk but with a side 0 ID, and vice-versa.
  358.  * This is the same as the Sharp MZ-80 5.25" CP/M disk format, except that the
  359.  * 1581's logical side 0 is on physical side 1, whereas the Sharp's logical
  360.  * side 0 is on physical side 0 (but with the misnamed sector IDs).
  361.  * 'stretch' should probably be renamed to something more general, like
  362.  * 'options'.  Other parameters should be self-explanatory (see also
  363.  * setfdprm(8)).
  364.  */
  365. /*
  366.     Size
  367.      |  Sectors per track
  368.      |  | Head
  369.      |  | |  Tracks
  370.      |  | |  | Stretch
  371.      |  | |  | |  Gap 1 size
  372.      |  | |  | |    |  Data rate, | 0x40 for perp
  373.      |  | |  | |    |    |  Spec1 (stepping rate, head unload
  374.      |  | |  | |    |    |    |    /fmt gap (gap2) */
  375. static struct floppy_struct floppy_type[32] = {
  376. {    0, 0,0, 0,0,0x00,0x00,0x00,0x00,NULL    }, /*  0 no testing    */
  377. {  720, 9,2,40,0,0x2A,0x02,0xDF,0x50,"d360"  }, /*  1 360KB PC      */
  378. { 2400,15,2,80,0,0x1B,0x00,0xDF,0x54,"h1200" }, /*  2 1.2MB AT      */
  379. {  720, 9,1,80,0,0x2A,0x02,0xDF,0x50,"D360"  }, /*  3 360KB SS 3.5" */
  380. { 1440, 9,2,80,0,0x2A,0x02,0xDF,0x50,"D720"  }, /*  4 720KB 3.5"    */
  381. {  720, 9,2,40,1,0x23,0x01,0xDF,0x50,"h360"  }, /*  5 360KB AT      */
  382. { 1440, 9,2,80,0,0x23,0x01,0xDF,0x50,"h720"  }, /*  6 720KB AT      */
  383. { 2880,18,2,80,0,0x1B,0x00,0xCF,0x6C,"H1440" }, /*  7 1.44MB 3.5"   */
  384. { 5760,36,2,80,0,0x1B,0x43,0xAF,0x54,"E2880" }, /*  8 2.88MB 3.5"   */
  385. { 6240,39,2,80,0,0x1B,0x43,0xAF,0x28,"E3120" }, /*  9 3.12MB 3.5"   */
  386. { 2880,18,2,80,0,0x25,0x00,0xDF,0x02,"h1440" }, /* 10 1.44MB 5.25"  */
  387. { 3360,21,2,80,0,0x1C,0x00,0xCF,0x0C,"H1680" }, /* 11 1.68MB 3.5"   */
  388. {  820,10,2,41,1,0x25,0x01,0xDF,0x2E,"h410"  }, /* 12 410KB 5.25"   */
  389. { 1640,10,2,82,0,0x25,0x02,0xDF,0x2E,"H820"  }, /* 13 820KB 3.5"    */
  390. { 2952,18,2,82,0,0x25,0x00,0xDF,0x02,"h1476" }, /* 14 1.48MB 5.25"  */
  391. { 3444,21,2,82,0,0x25,0x00,0xDF,0x0C,"H1722" }, /* 15 1.72MB 3.5"   */
  392. {  840,10,2,42,1,0x25,0x01,0xDF,0x2E,"h420"  }, /* 16 420KB 5.25"   */
  393. { 1660,10,2,83,0,0x25,0x02,0xDF,0x2E,"H830"  }, /* 17 830KB 3.5"    */
  394. { 2988,18,2,83,0,0x25,0x00,0xDF,0x02,"h1494" }, /* 18 1.49MB 5.25"  */
  395. { 3486,21,2,83,0,0x25,0x00,0xDF,0x0C,"H1743" }, /* 19 1.74 MB 3.5"  */
  396. { 1760,11,2,80,0,0x1C,0x09,0xCF,0x00,"h880"  }, /* 20 880KB 5.25"   */
  397. { 2080,13,2,80,0,0x1C,0x01,0xCF,0x00,"D1040" }, /* 21 1.04MB 3.5"   */
  398. { 2240,14,2,80,0,0x1C,0x19,0xCF,0x00,"D1120" }, /* 22 1.12MB 3.5"   */
  399. { 3200,20,2,80,0,0x1C,0x20,0xCF,0x2C,"h1600" }, /* 23 1.6MB 5.25"   */
  400. { 3520,22,2,80,0,0x1C,0x08,0xCF,0x2e,"H1760" }, /* 24 1.76MB 3.5"   */
  401. { 3840,24,2,80,0,0x1C,0x20,0xCF,0x00,"H1920" }, /* 25 1.92MB 3.5"   */
  402. { 6400,40,2,80,0,0x25,0x5B,0xCF,0x00,"E3200" }, /* 26 3.20MB 3.5"   */
  403. { 7040,44,2,80,0,0x25,0x5B,0xCF,0x00,"E3520" }, /* 27 3.52MB 3.5"   */
  404. { 7680,48,2,80,0,0x25,0x63,0xCF,0x00,"E3840" }, /* 28 3.84MB 3.5"   */
  405. { 3680,23,2,80,0,0x1C,0x10,0xCF,0x00,"H1840" }, /* 29 1.84MB 3.5"   */
  406. { 1600,10,2,80,0,0x25,0x02,0xDF,0x2E,"D800"  }, /* 30 800KB 3.5"    */
  407. { 3200,20,2,80,0,0x1C,0x00,0xCF,0x2C,"H1600" }, /* 31 1.6MB 3.5"    */
  408. };
  409. #define NUMBER(x) (sizeof(x) / sizeof(*(x)))
  410. #define SECTSIZE (_FD_SECTSIZE(*floppy))
  411. /* Auto-detection: Disk type used until the next media change occurs. */
  412. static struct floppy_struct *current_type[N_DRIVE];
  413. /*
  414.  * User-provided type information. current_type points to
  415.  * the respective entry of this array.
  416.  */
  417. static struct floppy_struct user_params[N_DRIVE];
  418. static sector_t floppy_sizes[256];
  419. static char floppy_device_name[] = "floppy";
  420. /*
  421.  * The driver is trying to determine the correct media format
  422.  * while probing is set. rw_interrupt() clears it after a
  423.  * successful access.
  424.  */
  425. static int probing;
  426. /* Synchronization of FDC access. */
  427. #define FD_COMMAND_NONE -1
  428. #define FD_COMMAND_ERROR 2
  429. #define FD_COMMAND_OKAY 3
  430. static volatile int command_status = FD_COMMAND_NONE;
  431. static unsigned long fdc_busy;
  432. static DECLARE_WAIT_QUEUE_HEAD(fdc_wait);
  433. static DECLARE_WAIT_QUEUE_HEAD(command_done);
  434. #define NO_SIGNAL (!interruptible || !signal_pending(current))
  435. #define CALL(x) if ((x) == -EINTR) return -EINTR
  436. #define ECALL(x) if ((ret = (x))) return ret;
  437. #define _WAIT(x,i) CALL(ret=wait_til_done((x),i))
  438. #define WAIT(x) _WAIT((x),interruptible)
  439. #define IWAIT(x) _WAIT((x),1)
  440. /* Errors during formatting are counted here. */
  441. static int format_errors;
  442. /* Format request descriptor. */
  443. static struct format_descr format_req;
  444. /*
  445.  * Rate is 0 for 500kb/s, 1 for 300kbps, 2 for 250kbps
  446.  * Spec1 is 0xSH, where S is stepping rate (F=1ms, E=2ms, D=3ms etc),
  447.  * H is head unload time (1=16ms, 2=32ms, etc)
  448.  */
  449. /*
  450.  * Track buffer
  451.  * Because these are written to by the DMA controller, they must
  452.  * not contain a 64k byte boundary crossing, or data will be
  453.  * corrupted/lost.
  454.  */
  455. static char *floppy_track_buffer;
  456. static int max_buffer_sectors;
  457. static int *errors;
  458. typedef void (*done_f) (int);
  459. static struct cont_t {
  460. void (*interrupt) (void); /* this is called after the interrupt of the
  461.  * main command */
  462. void (*redo) (void); /* this is called to retry the operation */
  463. void (*error) (void); /* this is called to tally an error */
  464. done_f done; /* this is called to say if the operation has
  465.  * succeeded/failed */
  466. } *cont;
  467. static void floppy_ready(void);
  468. static void floppy_start(void);
  469. static void process_fd_request(void);
  470. static void recalibrate_floppy(void);
  471. static void floppy_shutdown(unsigned long);
  472. static int floppy_grab_irq_and_dma(void);
  473. static void floppy_release_irq_and_dma(void);
  474. /*
  475.  * The "reset" variable should be tested whenever an interrupt is scheduled,
  476.  * after the commands have been sent. This is to ensure that the driver doesn't
  477.  * get wedged when the interrupt doesn't come because of a failed command.
  478.  * reset doesn't need to be tested before sending commands, because
  479.  * output_byte is automatically disabled when reset is set.
  480.  */
  481. #define CHECK_RESET { if (FDCS->reset){ reset_fdc(); return; } }
  482. static void reset_fdc(void);
  483. /*
  484.  * These are global variables, as that's the easiest way to give
  485.  * information to interrupts. They are the data used for the current
  486.  * request.
  487.  */
  488. #define NO_TRACK -1
  489. #define NEED_1_RECAL -2
  490. #define NEED_2_RECAL -3
  491. static int usage_count;
  492. /* buffer related variables */
  493. static int buffer_track = -1;
  494. static int buffer_drive = -1;
  495. static int buffer_min = -1;
  496. static int buffer_max = -1;
  497. /* fdc related variables, should end up in a struct */
  498. static struct floppy_fdc_state fdc_state[N_FDC];
  499. static int fdc; /* current fdc */
  500. static struct floppy_struct *_floppy = floppy_type;
  501. static unsigned char current_drive;
  502. static long current_count_sectors;
  503. static unsigned char fsector_t; /* sector in track */
  504. static unsigned char in_sector_offset; /* offset within physical sector,
  505.  * expressed in units of 512 bytes */
  506. #ifndef fd_eject
  507. static inline int fd_eject(int drive)
  508. {
  509. return -EINVAL;
  510. }
  511. #endif
  512. /*
  513.  * Debugging
  514.  * =========
  515.  */
  516. #ifdef DEBUGT
  517. static long unsigned debugtimer;
  518. static inline void set_debugt(void)
  519. {
  520. debugtimer = jiffies;
  521. }
  522. static inline void debugt(const char *message)
  523. {
  524. if (DP->flags & DEBUGT)
  525. printk("%s dtime=%lun", message, jiffies - debugtimer);
  526. }
  527. #else
  528. static inline void set_debugt(void) { }
  529. static inline void debugt(const char *message) { }
  530. #endif /* DEBUGT */
  531. typedef void (*timeout_fn) (unsigned long);
  532. static DEFINE_TIMER(fd_timeout, floppy_shutdown, 0, 0);
  533. static const char *timeout_message;
  534. #ifdef FLOPPY_SANITY_CHECK
  535. static void is_alive(const char *message)
  536. {
  537. /* this routine checks whether the floppy driver is "alive" */
  538. if (test_bit(0, &fdc_busy) && command_status < 2
  539.     && !timer_pending(&fd_timeout)) {
  540. DPRINT("timeout handler died: %sn", message);
  541. }
  542. }
  543. #endif
  544. static void (*do_floppy) (void) = NULL;
  545. #ifdef FLOPPY_SANITY_CHECK
  546. #define OLOGSIZE 20
  547. static void (*lasthandler) (void);
  548. static unsigned long interruptjiffies;
  549. static unsigned long resultjiffies;
  550. static int resultsize;
  551. static unsigned long lastredo;
  552. static struct output_log {
  553. unsigned char data;
  554. unsigned char status;
  555. unsigned long jiffies;
  556. } output_log[OLOGSIZE];
  557. static int output_log_pos;
  558. #endif
  559. #define current_reqD -1
  560. #define MAXTIMEOUT -2
  561. static void __reschedule_timeout(int drive, const char *message, int marg)
  562. {
  563. if (drive == current_reqD)
  564. drive = current_drive;
  565. del_timer(&fd_timeout);
  566. if (drive < 0 || drive > N_DRIVE) {
  567. fd_timeout.expires = jiffies + 20UL * HZ;
  568. drive = 0;
  569. } else
  570. fd_timeout.expires = jiffies + UDP->timeout;
  571. add_timer(&fd_timeout);
  572. if (UDP->flags & FD_DEBUG) {
  573. DPRINT("reschedule timeout ");
  574. printk(message, marg);
  575. printk("n");
  576. }
  577. timeout_message = message;
  578. }
  579. static void reschedule_timeout(int drive, const char *message, int marg)
  580. {
  581. unsigned long flags;
  582. spin_lock_irqsave(&floppy_lock, flags);
  583. __reschedule_timeout(drive, message, marg);
  584. spin_unlock_irqrestore(&floppy_lock, flags);
  585. }
  586. #define INFBOUND(a,b) (a)=max_t(int, a, b)
  587. #define SUPBOUND(a,b) (a)=min_t(int, a, b)
  588. /*
  589.  * Bottom half floppy driver.
  590.  * ==========================
  591.  *
  592.  * This part of the file contains the code talking directly to the hardware,
  593.  * and also the main service loop (seek-configure-spinup-command)
  594.  */
  595. /*
  596.  * disk change.
  597.  * This routine is responsible for maintaining the FD_DISK_CHANGE flag,
  598.  * and the last_checked date.
  599.  *
  600.  * last_checked is the date of the last check which showed 'no disk change'
  601.  * FD_DISK_CHANGE is set under two conditions:
  602.  * 1. The floppy has been changed after some i/o to that floppy already
  603.  *    took place.
  604.  * 2. No floppy disk is in the drive. This is done in order to ensure that
  605.  *    requests are quickly flushed in case there is no disk in the drive. It
  606.  *    follows that FD_DISK_CHANGE can only be cleared if there is a disk in
  607.  *    the drive.
  608.  *
  609.  * For 1., maxblock is observed. Maxblock is 0 if no i/o has taken place yet.
  610.  * For 2., FD_DISK_NEWCHANGE is watched. FD_DISK_NEWCHANGE is cleared on
  611.  *  each seek. If a disk is present, the disk change line should also be
  612.  *  cleared on each seek. Thus, if FD_DISK_NEWCHANGE is clear, but the disk
  613.  *  change line is set, this means either that no disk is in the drive, or
  614.  *  that it has been removed since the last seek.
  615.  *
  616.  * This means that we really have a third possibility too:
  617.  *  The floppy has been changed after the last seek.
  618.  */
  619. static int disk_change(int drive)
  620. {
  621. int fdc = FDC(drive);
  622. #ifdef FLOPPY_SANITY_CHECK
  623. if (jiffies - UDRS->select_date < UDP->select_delay)
  624. DPRINT("WARNING disk change called earlyn");
  625. if (!(FDCS->dor & (0x10 << UNIT(drive))) ||
  626.     (FDCS->dor & 3) != UNIT(drive) || fdc != FDC(drive)) {
  627. DPRINT("probing disk change on unselected driven");
  628. DPRINT("drive=%d fdc=%d dor=%xn", drive, FDC(drive),
  629.        (unsigned int)FDCS->dor);
  630. }
  631. #endif
  632. #ifdef DCL_DEBUG
  633. if (UDP->flags & FD_DEBUG) {
  634. DPRINT("checking disk change line for drive %dn", drive);
  635. DPRINT("jiffies=%lun", jiffies);
  636. DPRINT("disk change line=%xn", fd_inb(FD_DIR) & 0x80);
  637. DPRINT("flags=%lxn", UDRS->flags);
  638. }
  639. #endif
  640. if (UDP->flags & FD_BROKEN_DCL)
  641. return UTESTF(FD_DISK_CHANGED);
  642. if ((fd_inb(FD_DIR) ^ UDP->flags) & 0x80) {
  643. USETF(FD_VERIFY); /* verify write protection */
  644. if (UDRS->maxblock) {
  645. /* mark it changed */
  646. USETF(FD_DISK_CHANGED);
  647. }
  648. /* invalidate its geometry */
  649. if (UDRS->keep_data >= 0) {
  650. if ((UDP->flags & FTD_MSG) &&
  651.     current_type[drive] != NULL)
  652. DPRINT("Disk type is undefined after "
  653.        "disk changen");
  654. current_type[drive] = NULL;
  655. floppy_sizes[TOMINOR(drive)] = MAX_DISK_SIZE << 1;
  656. }
  657. /*USETF(FD_DISK_NEWCHANGE); */
  658. return 1;
  659. } else {
  660. UDRS->last_checked = jiffies;
  661. UCLEARF(FD_DISK_NEWCHANGE);
  662. }
  663. return 0;
  664. }
  665. static inline int is_selected(int dor, int unit)
  666. {
  667. return ((dor & (0x10 << unit)) && (dor & 3) == unit);
  668. }
  669. static int set_dor(int fdc, char mask, char data)
  670. {
  671. register unsigned char drive, unit, newdor, olddor;
  672. if (FDCS->address == -1)
  673. return -1;
  674. olddor = FDCS->dor;
  675. newdor = (olddor & mask) | data;
  676. if (newdor != olddor) {
  677. unit = olddor & 0x3;
  678. if (is_selected(olddor, unit) && !is_selected(newdor, unit)) {
  679. drive = REVDRIVE(fdc, unit);
  680. #ifdef DCL_DEBUG
  681. if (UDP->flags & FD_DEBUG) {
  682. DPRINT("calling disk change from set_dorn");
  683. }
  684. #endif
  685. disk_change(drive);
  686. }
  687. FDCS->dor = newdor;
  688. fd_outb(newdor, FD_DOR);
  689. unit = newdor & 0x3;
  690. if (!is_selected(olddor, unit) && is_selected(newdor, unit)) {
  691. drive = REVDRIVE(fdc, unit);
  692. UDRS->select_date = jiffies;
  693. }
  694. }
  695. /*
  696.  *      We should propagate failures to grab the resources back
  697.  *      nicely from here. Actually we ought to rewrite the fd
  698.  *      driver some day too.
  699.  */
  700. if (newdor & FLOPPY_MOTOR_MASK)
  701. floppy_grab_irq_and_dma();
  702. if (olddor & FLOPPY_MOTOR_MASK)
  703. floppy_release_irq_and_dma();
  704. return olddor;
  705. }
  706. static void twaddle(void)
  707. {
  708. if (DP->select_delay)
  709. return;
  710. fd_outb(FDCS->dor & ~(0x10 << UNIT(current_drive)), FD_DOR);
  711. fd_outb(FDCS->dor, FD_DOR);
  712. DRS->select_date = jiffies;
  713. }
  714. /* reset all driver information about the current fdc. This is needed after
  715.  * a reset, and after a raw command. */
  716. static void reset_fdc_info(int mode)
  717. {
  718. int drive;
  719. FDCS->spec1 = FDCS->spec2 = -1;
  720. FDCS->need_configure = 1;
  721. FDCS->perp_mode = 1;
  722. FDCS->rawcmd = 0;
  723. for (drive = 0; drive < N_DRIVE; drive++)
  724. if (FDC(drive) == fdc && (mode || UDRS->track != NEED_1_RECAL))
  725. UDRS->track = NEED_2_RECAL;
  726. }
  727. /* selects the fdc and drive, and enables the fdc's input/dma. */
  728. static void set_fdc(int drive)
  729. {
  730. if (drive >= 0 && drive < N_DRIVE) {
  731. fdc = FDC(drive);
  732. current_drive = drive;
  733. }
  734. if (fdc != 1 && fdc != 0) {
  735. printk("bad fdc valuen");
  736. return;
  737. }
  738. set_dor(fdc, ~0, 8);
  739. #if N_FDC > 1
  740. set_dor(1 - fdc, ~8, 0);
  741. #endif
  742. if (FDCS->rawcmd == 2)
  743. reset_fdc_info(1);
  744. if (fd_inb(FD_STATUS) != STATUS_READY)
  745. FDCS->reset = 1;
  746. }
  747. /* locks the driver */
  748. static int _lock_fdc(int drive, int interruptible, int line)
  749. {
  750. if (!usage_count) {
  751. printk(KERN_ERR
  752.        "Trying to lock fdc while usage count=0 at line %dn",
  753.        line);
  754. return -1;
  755. }
  756. if (floppy_grab_irq_and_dma() == -1)
  757. return -EBUSY;
  758. if (test_and_set_bit(0, &fdc_busy)) {
  759. DECLARE_WAITQUEUE(wait, current);
  760. add_wait_queue(&fdc_wait, &wait);
  761. for (;;) {
  762. set_current_state(TASK_INTERRUPTIBLE);
  763. if (!test_and_set_bit(0, &fdc_busy))
  764. break;
  765. schedule();
  766. if (!NO_SIGNAL) {
  767. remove_wait_queue(&fdc_wait, &wait);
  768. return -EINTR;
  769. }
  770. }
  771. set_current_state(TASK_RUNNING);
  772. remove_wait_queue(&fdc_wait, &wait);
  773. }
  774. command_status = FD_COMMAND_NONE;
  775. __reschedule_timeout(drive, "lock fdc", 0);
  776. set_fdc(drive);
  777. return 0;
  778. }
  779. #define lock_fdc(drive,interruptible) _lock_fdc(drive,interruptible, __LINE__)
  780. #define LOCK_FDC(drive,interruptible) 
  781. if (lock_fdc(drive,interruptible)) return -EINTR;
  782. /* unlocks the driver */
  783. static inline void unlock_fdc(void)
  784. {
  785. unsigned long flags;
  786. raw_cmd = NULL;
  787. if (!test_bit(0, &fdc_busy))
  788. DPRINT("FDC access conflict!n");
  789. if (do_floppy)
  790. DPRINT("device interrupt still active at FDC release: %p!n",
  791.        do_floppy);
  792. command_status = FD_COMMAND_NONE;
  793. spin_lock_irqsave(&floppy_lock, flags);
  794. del_timer(&fd_timeout);
  795. cont = NULL;
  796. clear_bit(0, &fdc_busy);
  797. if (elv_next_request(floppy_queue))
  798. do_fd_request(floppy_queue);
  799. spin_unlock_irqrestore(&floppy_lock, flags);
  800. floppy_release_irq_and_dma();
  801. wake_up(&fdc_wait);
  802. }
  803. /* switches the motor off after a given timeout */
  804. static void motor_off_callback(unsigned long nr)
  805. {
  806. unsigned char mask = ~(0x10 << UNIT(nr));
  807. set_dor(FDC(nr), mask, 0);
  808. }
  809. /* schedules motor off */
  810. static void floppy_off(unsigned int drive)
  811. {
  812. unsigned long volatile delta;
  813. register int fdc = FDC(drive);
  814. if (!(FDCS->dor & (0x10 << UNIT(drive))))
  815. return;
  816. del_timer(motor_off_timer + drive);
  817. /* make spindle stop in a position which minimizes spinup time
  818.  * next time */
  819. if (UDP->rps) {
  820. delta = jiffies - UDRS->first_read_date + HZ -
  821.     UDP->spindown_offset;
  822. delta = ((delta * UDP->rps) % HZ) / UDP->rps;
  823. motor_off_timer[drive].expires =
  824.     jiffies + UDP->spindown - delta;
  825. }
  826. add_timer(motor_off_timer + drive);
  827. }
  828. /*
  829.  * cycle through all N_DRIVE floppy drives, for disk change testing.
  830.  * stopping at current drive. This is done before any long operation, to
  831.  * be sure to have up to date disk change information.
  832.  */
  833. static void scandrives(void)
  834. {
  835. int i, drive, saved_drive;
  836. if (DP->select_delay)
  837. return;
  838. saved_drive = current_drive;
  839. for (i = 0; i < N_DRIVE; i++) {
  840. drive = (saved_drive + i + 1) % N_DRIVE;
  841. if (UDRS->fd_ref == 0 || UDP->select_delay != 0)
  842. continue; /* skip closed drives */
  843. set_fdc(drive);
  844. if (!(set_dor(fdc, ~3, UNIT(drive) | (0x10 << UNIT(drive))) &
  845.       (0x10 << UNIT(drive))))
  846. /* switch the motor off again, if it was off to
  847.  * begin with */
  848. set_dor(fdc, ~(0x10 << UNIT(drive)), 0);
  849. }
  850. set_fdc(saved_drive);
  851. }
  852. static void empty(void)
  853. {
  854. }
  855. static DECLARE_WORK(floppy_work, NULL, NULL);
  856. static void schedule_bh(void (*handler) (void))
  857. {
  858. PREPARE_WORK(&floppy_work, (void (*)(void *))handler, NULL);
  859. schedule_work(&floppy_work);
  860. }
  861. static DEFINE_TIMER(fd_timer, NULL, 0, 0);
  862. static void cancel_activity(void)
  863. {
  864. unsigned long flags;
  865. spin_lock_irqsave(&floppy_lock, flags);
  866. do_floppy = NULL;
  867. PREPARE_WORK(&floppy_work, (void *)empty, NULL);
  868. del_timer(&fd_timer);
  869. spin_unlock_irqrestore(&floppy_lock, flags);
  870. }
  871. /* this function makes sure that the disk stays in the drive during the
  872.  * transfer */
  873. static void fd_watchdog(void)
  874. {
  875. #ifdef DCL_DEBUG
  876. if (DP->flags & FD_DEBUG) {
  877. DPRINT("calling disk change from watchdogn");
  878. }
  879. #endif
  880. if (disk_change(current_drive)) {
  881. DPRINT("disk removed during i/on");
  882. cancel_activity();
  883. cont->done(0);
  884. reset_fdc();
  885. } else {
  886. del_timer(&fd_timer);
  887. fd_timer.function = (timeout_fn) fd_watchdog;
  888. fd_timer.expires = jiffies + HZ / 10;
  889. add_timer(&fd_timer);
  890. }
  891. }
  892. static void main_command_interrupt(void)
  893. {
  894. del_timer(&fd_timer);
  895. cont->interrupt();
  896. }
  897. /* waits for a delay (spinup or select) to pass */
  898. static int fd_wait_for_completion(unsigned long delay, timeout_fn function)
  899. {
  900. if (FDCS->reset) {
  901. reset_fdc(); /* do the reset during sleep to win time
  902.  * if we don't need to sleep, it's a good
  903.  * occasion anyways */
  904. return 1;
  905. }
  906. if ((signed)(jiffies - delay) < 0) {
  907. del_timer(&fd_timer);
  908. fd_timer.function = function;
  909. fd_timer.expires = delay;
  910. add_timer(&fd_timer);
  911. return 1;
  912. }
  913. return 0;
  914. }
  915. static DEFINE_SPINLOCK(floppy_hlt_lock);
  916. static int hlt_disabled;
  917. static void floppy_disable_hlt(void)
  918. {
  919. unsigned long flags;
  920. spin_lock_irqsave(&floppy_hlt_lock, flags);
  921. if (!hlt_disabled) {
  922. hlt_disabled = 1;
  923. #ifdef HAVE_DISABLE_HLT
  924. disable_hlt();
  925. #endif
  926. }
  927. spin_unlock_irqrestore(&floppy_hlt_lock, flags);
  928. }
  929. static void floppy_enable_hlt(void)
  930. {
  931. unsigned long flags;
  932. spin_lock_irqsave(&floppy_hlt_lock, flags);
  933. if (hlt_disabled) {
  934. hlt_disabled = 0;
  935. #ifdef HAVE_DISABLE_HLT
  936. enable_hlt();
  937. #endif
  938. }
  939. spin_unlock_irqrestore(&floppy_hlt_lock, flags);
  940. }
  941. static void setup_DMA(void)
  942. {
  943. unsigned long f;
  944. #ifdef FLOPPY_SANITY_CHECK
  945. if (raw_cmd->length == 0) {
  946. int i;
  947. printk("zero dma transfer size:");
  948. for (i = 0; i < raw_cmd->cmd_count; i++)
  949. printk("%x,", raw_cmd->cmd[i]);
  950. printk("n");
  951. cont->done(0);
  952. FDCS->reset = 1;
  953. return;
  954. }
  955. if (((unsigned long)raw_cmd->kernel_data) % 512) {
  956. printk("non aligned address: %pn", raw_cmd->kernel_data);
  957. cont->done(0);
  958. FDCS->reset = 1;
  959. return;
  960. }
  961. #endif
  962. f = claim_dma_lock();
  963. fd_disable_dma();
  964. #ifdef fd_dma_setup
  965. if (fd_dma_setup(raw_cmd->kernel_data, raw_cmd->length,
  966.  (raw_cmd->flags & FD_RAW_READ) ?
  967.  DMA_MODE_READ : DMA_MODE_WRITE, FDCS->address) < 0) {
  968. release_dma_lock(f);
  969. cont->done(0);
  970. FDCS->reset = 1;
  971. return;
  972. }
  973. release_dma_lock(f);
  974. #else
  975. fd_clear_dma_ff();
  976. fd_cacheflush(raw_cmd->kernel_data, raw_cmd->length);
  977. fd_set_dma_mode((raw_cmd->flags & FD_RAW_READ) ?
  978. DMA_MODE_READ : DMA_MODE_WRITE);
  979. fd_set_dma_addr(raw_cmd->kernel_data);
  980. fd_set_dma_count(raw_cmd->length);
  981. virtual_dma_port = FDCS->address;
  982. fd_enable_dma();
  983. release_dma_lock(f);
  984. #endif
  985. floppy_disable_hlt();
  986. }
  987. static void show_floppy(void);
  988. /* waits until the fdc becomes ready */
  989. static int wait_til_ready(void)
  990. {
  991. int counter, status;
  992. if (FDCS->reset)
  993. return -1;
  994. for (counter = 0; counter < 10000; counter++) {
  995. status = fd_inb(FD_STATUS);
  996. if (status & STATUS_READY)
  997. return status;
  998. }
  999. if (!initialising) {
  1000. DPRINT("Getstatus times out (%x) on fdc %dn", status, fdc);
  1001. show_floppy();
  1002. }
  1003. FDCS->reset = 1;
  1004. return -1;
  1005. }
  1006. /* sends a command byte to the fdc */
  1007. static int output_byte(char byte)
  1008. {
  1009. int status;
  1010. if ((status = wait_til_ready()) < 0)
  1011. return -1;
  1012. if ((status & (STATUS_READY | STATUS_DIR | STATUS_DMA)) == STATUS_READY) {
  1013. fd_outb(byte, FD_DATA);
  1014. #ifdef FLOPPY_SANITY_CHECK
  1015. output_log[output_log_pos].data = byte;
  1016. output_log[output_log_pos].status = status;
  1017. output_log[output_log_pos].jiffies = jiffies;
  1018. output_log_pos = (output_log_pos + 1) % OLOGSIZE;
  1019. #endif
  1020. return 0;
  1021. }
  1022. FDCS->reset = 1;
  1023. if (!initialising) {
  1024. DPRINT("Unable to send byte %x to FDC. Fdc=%x Status=%xn",
  1025.        byte, fdc, status);
  1026. show_floppy();
  1027. }
  1028. return -1;
  1029. }
  1030. #define LAST_OUT(x) if (output_byte(x)<0){ reset_fdc();return;}
  1031. /* gets the response from the fdc */
  1032. static int result(void)
  1033. {
  1034. int i, status = 0;
  1035. for (i = 0; i < MAX_REPLIES; i++) {
  1036. if ((status = wait_til_ready()) < 0)
  1037. break;
  1038. status &= STATUS_DIR | STATUS_READY | STATUS_BUSY | STATUS_DMA;
  1039. if ((status & ~STATUS_BUSY) == STATUS_READY) {
  1040. #ifdef FLOPPY_SANITY_CHECK
  1041. resultjiffies = jiffies;
  1042. resultsize = i;
  1043. #endif
  1044. return i;
  1045. }
  1046. if (status == (STATUS_DIR | STATUS_READY | STATUS_BUSY))
  1047. reply_buffer[i] = fd_inb(FD_DATA);
  1048. else
  1049. break;
  1050. }
  1051. if (!initialising) {
  1052. DPRINT
  1053.     ("get result error. Fdc=%d Last status=%x Read bytes=%dn",
  1054.      fdc, status, i);
  1055. show_floppy();
  1056. }
  1057. FDCS->reset = 1;
  1058. return -1;
  1059. }
  1060. #define MORE_OUTPUT -2
  1061. /* does the fdc need more output? */
  1062. static int need_more_output(void)
  1063. {
  1064. int status;
  1065. if ((status = wait_til_ready()) < 0)
  1066. return -1;
  1067. if ((status & (STATUS_READY | STATUS_DIR | STATUS_DMA)) == STATUS_READY)
  1068. return MORE_OUTPUT;
  1069. return result();
  1070. }
  1071. /* Set perpendicular mode as required, based on data rate, if supported.
  1072.  * 82077 Now tested. 1Mbps data rate only possible with 82077-1.
  1073.  */
  1074. static inline void perpendicular_mode(void)
  1075. {
  1076. unsigned char perp_mode;
  1077. if (raw_cmd->rate & 0x40) {
  1078. switch (raw_cmd->rate & 3) {
  1079. case 0:
  1080. perp_mode = 2;
  1081. break;
  1082. case 3:
  1083. perp_mode = 3;
  1084. break;
  1085. default:
  1086. DPRINT("Invalid data rate for perpendicular mode!n");
  1087. cont->done(0);
  1088. FDCS->reset = 1; /* convenient way to return to
  1089.  * redo without to much hassle (deep
  1090.  * stack et al. */
  1091. return;
  1092. }
  1093. } else
  1094. perp_mode = 0;
  1095. if (FDCS->perp_mode == perp_mode)
  1096. return;
  1097. if (FDCS->version >= FDC_82077_ORIG) {
  1098. output_byte(FD_PERPENDICULAR);
  1099. output_byte(perp_mode);
  1100. FDCS->perp_mode = perp_mode;
  1101. } else if (perp_mode) {
  1102. DPRINT("perpendicular mode not supported by this FDC.n");
  1103. }
  1104. } /* perpendicular_mode */
  1105. static int fifo_depth = 0xa;
  1106. static int no_fifo;
  1107. static int fdc_configure(void)
  1108. {
  1109. /* Turn on FIFO */
  1110. output_byte(FD_CONFIGURE);
  1111. if (need_more_output() != MORE_OUTPUT)
  1112. return 0;
  1113. output_byte(0);
  1114. output_byte(0x10 | (no_fifo & 0x20) | (fifo_depth & 0xf));
  1115. output_byte(0); /* pre-compensation from track
  1116.    0 upwards */
  1117. return 1;
  1118. }
  1119. #define NOMINAL_DTR 500
  1120. /* Issue a "SPECIFY" command to set the step rate time, head unload time,
  1121.  * head load time, and DMA disable flag to values needed by floppy.
  1122.  *
  1123.  * The value "dtr" is the data transfer rate in Kbps.  It is needed
  1124.  * to account for the data rate-based scaling done by the 82072 and 82077
  1125.  * FDC types.  This parameter is ignored for other types of FDCs (i.e.
  1126.  * 8272a).
  1127.  *
  1128.  * Note that changing the data transfer rate has a (probably deleterious)
  1129.  * effect on the parameters subject to scaling for 82072/82077 FDCs, so
  1130.  * fdc_specify is called again after each data transfer rate
  1131.  * change.
  1132.  *
  1133.  * srt: 1000 to 16000 in microseconds
  1134.  * hut: 16 to 240 milliseconds
  1135.  * hlt: 2 to 254 milliseconds
  1136.  *
  1137.  * These values are rounded up to the next highest available delay time.
  1138.  */
  1139. static void fdc_specify(void)
  1140. {
  1141. unsigned char spec1, spec2;
  1142. unsigned long srt, hlt, hut;
  1143. unsigned long dtr = NOMINAL_DTR;
  1144. unsigned long scale_dtr = NOMINAL_DTR;
  1145. int hlt_max_code = 0x7f;
  1146. int hut_max_code = 0xf;
  1147. if (FDCS->need_configure && FDCS->version >= FDC_82072A) {
  1148. fdc_configure();
  1149. FDCS->need_configure = 0;
  1150. /*DPRINT("FIFO enabledn"); */
  1151. }
  1152. switch (raw_cmd->rate & 0x03) {
  1153. case 3:
  1154. dtr = 1000;
  1155. break;
  1156. case 1:
  1157. dtr = 300;
  1158. if (FDCS->version >= FDC_82078) {
  1159. /* chose the default rate table, not the one
  1160.  * where 1 = 2 Mbps */
  1161. output_byte(FD_DRIVESPEC);
  1162. if (need_more_output() == MORE_OUTPUT) {
  1163. output_byte(UNIT(current_drive));
  1164. output_byte(0xc0);
  1165. }
  1166. }
  1167. break;
  1168. case 2:
  1169. dtr = 250;
  1170. break;
  1171. }
  1172. if (FDCS->version >= FDC_82072) {
  1173. scale_dtr = dtr;
  1174. hlt_max_code = 0x00; /* 0==256msec*dtr0/dtr (not linear!) */
  1175. hut_max_code = 0x0; /* 0==256msec*dtr0/dtr (not linear!) */
  1176. }
  1177. /* Convert step rate from microseconds to milliseconds and 4 bits */
  1178. srt = 16 - (DP->srt * scale_dtr / 1000 + NOMINAL_DTR - 1) / NOMINAL_DTR;
  1179. if (slow_floppy) {
  1180. srt = srt / 4;
  1181. }
  1182. SUPBOUND(srt, 0xf);
  1183. INFBOUND(srt, 0);
  1184. hlt = (DP->hlt * scale_dtr / 2 + NOMINAL_DTR - 1) / NOMINAL_DTR;
  1185. if (hlt < 0x01)
  1186. hlt = 0x01;
  1187. else if (hlt > 0x7f)
  1188. hlt = hlt_max_code;
  1189. hut = (DP->hut * scale_dtr / 16 + NOMINAL_DTR - 1) / NOMINAL_DTR;
  1190. if (hut < 0x1)
  1191. hut = 0x1;
  1192. else if (hut > 0xf)
  1193. hut = hut_max_code;
  1194. spec1 = (srt << 4) | hut;
  1195. spec2 = (hlt << 1) | (use_virtual_dma & 1);
  1196. /* If these parameters did not change, just return with success */
  1197. if (FDCS->spec1 != spec1 || FDCS->spec2 != spec2) {
  1198. /* Go ahead and set spec1 and spec2 */
  1199. output_byte(FD_SPECIFY);
  1200. output_byte(FDCS->spec1 = spec1);
  1201. output_byte(FDCS->spec2 = spec2);
  1202. }
  1203. } /* fdc_specify */
  1204. /* Set the FDC's data transfer rate on behalf of the specified drive.
  1205.  * NOTE: with 82072/82077 FDCs, changing the data rate requires a reissue
  1206.  * of the specify command (i.e. using the fdc_specify function).
  1207.  */
  1208. static int fdc_dtr(void)
  1209. {
  1210. /* If data rate not already set to desired value, set it. */
  1211. if ((raw_cmd->rate & 3) == FDCS->dtr)
  1212. return 0;
  1213. /* Set dtr */
  1214. fd_outb(raw_cmd->rate & 3, FD_DCR);
  1215. /* TODO: some FDC/drive combinations (C&T 82C711 with TEAC 1.2MB)
  1216.  * need a stabilization period of several milliseconds to be
  1217.  * enforced after data rate changes before R/W operations.
  1218.  * Pause 5 msec to avoid trouble. (Needs to be 2 jiffies)
  1219.  */
  1220. FDCS->dtr = raw_cmd->rate & 3;
  1221. return (fd_wait_for_completion(jiffies + 2UL * HZ / 100,
  1222.        (timeout_fn) floppy_ready));
  1223. } /* fdc_dtr */
  1224. static void tell_sector(void)
  1225. {
  1226. printk(": track %d, head %d, sector %d, size %d",
  1227.        R_TRACK, R_HEAD, R_SECTOR, R_SIZECODE);
  1228. } /* tell_sector */
  1229. /*
  1230.  * OK, this error interpreting routine is called after a
  1231.  * DMA read/write has succeeded
  1232.  * or failed, so we check the results, and copy any buffers.
  1233.  * hhb: Added better error reporting.
  1234.  * ak: Made this into a separate routine.
  1235.  */
  1236. static int interpret_errors(void)
  1237. {
  1238. char bad;
  1239. if (inr != 7) {
  1240. DPRINT("-- FDC reply error");
  1241. FDCS->reset = 1;
  1242. return 1;
  1243. }
  1244. /* check IC to find cause of interrupt */
  1245. switch (ST0 & ST0_INTR) {
  1246. case 0x40: /* error occurred during command execution */
  1247. if (ST1 & ST1_EOC)
  1248. return 0; /* occurs with pseudo-DMA */
  1249. bad = 1;
  1250. if (ST1 & ST1_WP) {
  1251. DPRINT("Drive is write protectedn");
  1252. CLEARF(FD_DISK_WRITABLE);
  1253. cont->done(0);
  1254. bad = 2;
  1255. } else if (ST1 & ST1_ND) {
  1256. SETF(FD_NEED_TWADDLE);
  1257. } else if (ST1 & ST1_OR) {
  1258. if (DP->flags & FTD_MSG)
  1259. DPRINT("Over/Underrun - retryingn");
  1260. bad = 0;
  1261. } else if (*errors >= DP->max_errors.reporting) {
  1262. DPRINT("");
  1263. if (ST0 & ST0_ECE) {
  1264. printk("Recalibrate failed!");
  1265. } else if (ST2 & ST2_CRC) {
  1266. printk("data CRC error");
  1267. tell_sector();
  1268. } else if (ST1 & ST1_CRC) {
  1269. printk("CRC error");
  1270. tell_sector();
  1271. } else if ((ST1 & (ST1_MAM | ST1_ND))
  1272.    || (ST2 & ST2_MAM)) {
  1273. if (!probing) {
  1274. printk("sector not found");
  1275. tell_sector();
  1276. } else
  1277. printk("probe failed...");
  1278. } else if (ST2 & ST2_WC) { /* seek error */
  1279. printk("wrong cylinder");
  1280. } else if (ST2 & ST2_BC) { /* cylinder marked as bad */
  1281. printk("bad cylinder");
  1282. } else {
  1283. printk
  1284.     ("unknown error. ST[0..2] are: 0x%x 0x%x 0x%x",
  1285.      ST0, ST1, ST2);
  1286. tell_sector();
  1287. }
  1288. printk("n");
  1289. }
  1290. if (ST2 & ST2_WC || ST2 & ST2_BC)
  1291. /* wrong cylinder => recal */
  1292. DRS->track = NEED_2_RECAL;
  1293. return bad;
  1294. case 0x80: /* invalid command given */
  1295. DPRINT("Invalid FDC command given!n");
  1296. cont->done(0);
  1297. return 2;
  1298. case 0xc0:
  1299. DPRINT("Abnormal termination caused by pollingn");
  1300. cont->error();
  1301. return 2;
  1302. default: /* (0) Normal command termination */
  1303. return 0;
  1304. }
  1305. }
  1306. /*
  1307.  * This routine is called when everything should be correctly set up
  1308.  * for the transfer (i.e. floppy motor is on, the correct floppy is
  1309.  * selected, and the head is sitting on the right track).
  1310.  */
  1311. static void setup_rw_floppy(void)
  1312. {
  1313. int i, r, flags, dflags;
  1314. unsigned long ready_date;
  1315. timeout_fn function;
  1316. flags = raw_cmd->flags;
  1317. if (flags & (FD_RAW_READ | FD_RAW_WRITE))
  1318. flags |= FD_RAW_INTR;
  1319. if ((flags & FD_RAW_SPIN) && !(flags & FD_RAW_NO_MOTOR)) {
  1320. ready_date = DRS->spinup_date + DP->spinup;
  1321. /* If spinup will take a long time, rerun scandrives
  1322.  * again just before spinup completion. Beware that
  1323.  * after scandrives, we must again wait for selection.
  1324.  */
  1325. if ((signed)(ready_date - jiffies) > DP->select_delay) {
  1326. ready_date -= DP->select_delay;
  1327. function = (timeout_fn) floppy_start;
  1328. } else
  1329. function = (timeout_fn) setup_rw_floppy;
  1330. /* wait until the floppy is spinning fast enough */
  1331. if (fd_wait_for_completion(ready_date, function))
  1332. return;
  1333. }
  1334. dflags = DRS->flags;
  1335. if ((flags & FD_RAW_READ) || (flags & FD_RAW_WRITE))
  1336. setup_DMA();
  1337. if (flags & FD_RAW_INTR)
  1338. do_floppy = main_command_interrupt;
  1339. r = 0;
  1340. for (i = 0; i < raw_cmd->cmd_count; i++)
  1341. r |= output_byte(raw_cmd->cmd[i]);
  1342. debugt("rw_command: ");
  1343. if (r) {
  1344. cont->error();
  1345. reset_fdc();
  1346. return;
  1347. }
  1348. if (!(flags & FD_RAW_INTR)) {
  1349. inr = result();
  1350. cont->interrupt();
  1351. } else if (flags & FD_RAW_NEED_DISK)
  1352. fd_watchdog();
  1353. }
  1354. static int blind_seek;
  1355. /*
  1356.  * This is the routine called after every seek (or recalibrate) interrupt
  1357.  * from the floppy controller.
  1358.  */
  1359. static void seek_interrupt(void)
  1360. {
  1361. debugt("seek interrupt:");
  1362. if (inr != 2 || (ST0 & 0xF8) != 0x20) {
  1363. DPRINT("seek failedn");
  1364. DRS->track = NEED_2_RECAL;
  1365. cont->error();
  1366. cont->redo();
  1367. return;
  1368. }
  1369. if (DRS->track >= 0 && DRS->track != ST1 && !blind_seek) {
  1370. #ifdef DCL_DEBUG
  1371. if (DP->flags & FD_DEBUG) {
  1372. DPRINT
  1373.     ("clearing NEWCHANGE flag because of effective seekn");
  1374. DPRINT("jiffies=%lun", jiffies);
  1375. }
  1376. #endif
  1377. CLEARF(FD_DISK_NEWCHANGE); /* effective seek */
  1378. DRS->select_date = jiffies;
  1379. }
  1380. DRS->track = ST1;
  1381. floppy_ready();
  1382. }
  1383. static void check_wp(void)
  1384. {
  1385. if (TESTF(FD_VERIFY)) {
  1386. /* check write protection */
  1387. output_byte(FD_GETSTATUS);
  1388. output_byte(UNIT(current_drive));
  1389. if (result() != 1) {
  1390. FDCS->reset = 1;
  1391. return;
  1392. }
  1393. CLEARF(FD_VERIFY);
  1394. CLEARF(FD_NEED_TWADDLE);
  1395. #ifdef DCL_DEBUG
  1396. if (DP->flags & FD_DEBUG) {
  1397. DPRINT("checking whether disk is write protectedn");
  1398. DPRINT("wp=%xn", ST3 & 0x40);
  1399. }
  1400. #endif
  1401. if (!(ST3 & 0x40))
  1402. SETF(FD_DISK_WRITABLE);
  1403. else
  1404. CLEARF(FD_DISK_WRITABLE);
  1405. }
  1406. }
  1407. static void seek_floppy(void)
  1408. {
  1409. int track;
  1410. blind_seek = 0;
  1411. #ifdef DCL_DEBUG
  1412. if (DP->flags & FD_DEBUG) {
  1413. DPRINT("calling disk change from seekn");
  1414. }
  1415. #endif
  1416. if (!TESTF(FD_DISK_NEWCHANGE) &&
  1417.     disk_change(current_drive) && (raw_cmd->flags & FD_RAW_NEED_DISK)) {
  1418. /* the media changed flag should be cleared after the seek.
  1419.  * If it isn't, this means that there is really no disk in
  1420.  * the drive.
  1421.  */
  1422. SETF(FD_DISK_CHANGED);
  1423. cont->done(0);
  1424. cont->redo();
  1425. return;
  1426. }
  1427. if (DRS->track <= NEED_1_RECAL) {
  1428. recalibrate_floppy();
  1429. return;
  1430. } else if (TESTF(FD_DISK_NEWCHANGE) &&
  1431.    (raw_cmd->flags & FD_RAW_NEED_DISK) &&
  1432.    (DRS->track <= NO_TRACK || DRS->track == raw_cmd->track)) {
  1433. /* we seek to clear the media-changed condition. Does anybody
  1434.  * know a more elegant way, which works on all drives? */
  1435. if (raw_cmd->track)
  1436. track = raw_cmd->track - 1;
  1437. else {
  1438. if (DP->flags & FD_SILENT_DCL_CLEAR) {
  1439. set_dor(fdc, ~(0x10 << UNIT(current_drive)), 0);
  1440. blind_seek = 1;
  1441. raw_cmd->flags |= FD_RAW_NEED_SEEK;
  1442. }
  1443. track = 1;
  1444. }
  1445. } else {
  1446. check_wp();
  1447. if (raw_cmd->track != DRS->track &&
  1448.     (raw_cmd->flags & FD_RAW_NEED_SEEK))
  1449. track = raw_cmd->track;
  1450. else {
  1451. setup_rw_floppy();
  1452. return;
  1453. }
  1454. }
  1455. do_floppy = seek_interrupt;
  1456. output_byte(FD_SEEK);
  1457. output_byte(UNIT(current_drive));
  1458. LAST_OUT(track);
  1459. debugt("seek command:");
  1460. }
  1461. static void recal_interrupt(void)
  1462. {
  1463. debugt("recal interrupt:");
  1464. if (inr != 2)
  1465. FDCS->reset = 1;
  1466. else if (ST0 & ST0_ECE) {
  1467. switch (DRS->track) {
  1468. case NEED_1_RECAL:
  1469. debugt("recal interrupt need 1 recal:");
  1470. /* after a second recalibrate, we still haven't
  1471.  * reached track 0. Probably no drive. Raise an
  1472.  * error, as failing immediately might upset
  1473.  * computers possessed by the Devil :-) */
  1474. cont->error();
  1475. cont->redo();
  1476. return;
  1477. case NEED_2_RECAL:
  1478. debugt("recal interrupt need 2 recal:");
  1479. /* If we already did a recalibrate,
  1480.  * and we are not at track 0, this
  1481.  * means we have moved. (The only way
  1482.  * not to move at recalibration is to
  1483.  * be already at track 0.) Clear the
  1484.  * new change flag */
  1485. #ifdef DCL_DEBUG
  1486. if (DP->flags & FD_DEBUG) {
  1487. DPRINT
  1488.     ("clearing NEWCHANGE flag because of second recalibraten");
  1489. }
  1490. #endif
  1491. CLEARF(FD_DISK_NEWCHANGE);
  1492. DRS->select_date = jiffies;
  1493. /* fall through */
  1494. default:
  1495. debugt("recal interrupt default:");
  1496. /* Recalibrate moves the head by at
  1497.  * most 80 steps. If after one
  1498.  * recalibrate we don't have reached
  1499.  * track 0, this might mean that we
  1500.  * started beyond track 80.  Try
  1501.  * again.  */
  1502. DRS->track = NEED_1_RECAL;
  1503. break;
  1504. }
  1505. } else
  1506. DRS->track = ST1;
  1507. floppy_ready();
  1508. }
  1509. static void print_result(char *message, int inr)
  1510. {
  1511. int i;
  1512. DPRINT("%s ", message);
  1513. if (inr >= 0)
  1514. for (i = 0; i < inr; i++)
  1515. printk("repl[%d]=%x ", i, reply_buffer[i]);
  1516. printk("n");
  1517. }
  1518. /* interrupt handler. Note that this can be called externally on the Sparc */
  1519. irqreturn_t floppy_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  1520. {
  1521. void (*handler) (void) = do_floppy;
  1522. int do_print;
  1523. unsigned long f;
  1524. lasthandler = handler;
  1525. interruptjiffies = jiffies;
  1526. f = claim_dma_lock();
  1527. fd_disable_dma();
  1528. release_dma_lock(f);
  1529. floppy_enable_hlt();
  1530. do_floppy = NULL;
  1531. if (fdc >= N_FDC || FDCS->address == -1) {
  1532. /* we don't even know which FDC is the culprit */
  1533. printk("DOR0=%xn", fdc_state[0].dor);
  1534. printk("floppy interrupt on bizarre fdc %dn", fdc);
  1535. printk("handler=%pn", handler);
  1536. is_alive("bizarre fdc");
  1537. return IRQ_NONE;
  1538. }
  1539. FDCS->reset = 0;
  1540. /* We have to clear the reset flag here, because apparently on boxes
  1541.  * with level triggered interrupts (PS/2, Sparc, ...), it is needed to
  1542.  * emit SENSEI's to clear the interrupt line. And FDCS->reset blocks the
  1543.  * emission of the SENSEI's.
  1544.  * It is OK to emit floppy commands because we are in an interrupt
  1545.  * handler here, and thus we have to fear no interference of other
  1546.  * activity.
  1547.  */
  1548. do_print = !handler && print_unex && !initialising;
  1549. inr = result();
  1550. if (do_print)
  1551. print_result("unexpected interrupt", inr);
  1552. if (inr == 0) {
  1553. int max_sensei = 4;
  1554. do {
  1555. output_byte(FD_SENSEI);
  1556. inr = result();
  1557. if (do_print)
  1558. print_result("sensei", inr);
  1559. max_sensei--;
  1560. } while ((ST0 & 0x83) != UNIT(current_drive) && inr == 2
  1561.  && max_sensei);
  1562. }
  1563. if (!handler) {
  1564. FDCS->reset = 1;
  1565. return IRQ_NONE;
  1566. }
  1567. schedule_bh(handler);
  1568. is_alive("normal interrupt end");
  1569. /* FIXME! Was it really for us? */
  1570. return IRQ_HANDLED;
  1571. }
  1572. static void recalibrate_floppy(void)
  1573. {
  1574. debugt("recalibrate floppy:");
  1575. do_floppy = recal_interrupt;
  1576. output_byte(FD_RECALIBRATE);
  1577. LAST_OUT(UNIT(current_drive));
  1578. }
  1579. /*
  1580.  * Must do 4 FD_SENSEIs after reset because of ``drive polling''.
  1581.  */
  1582. static void reset_interrupt(void)
  1583. {
  1584. debugt("reset interrupt:");
  1585. result(); /* get the status ready for set_fdc */
  1586. if (FDCS->reset) {
  1587. printk("reset set in interrupt, calling %pn", cont->error);
  1588. cont->error(); /* a reset just after a reset. BAD! */
  1589. }
  1590. cont->redo();
  1591. }
  1592. /*
  1593.  * reset is done by pulling bit 2 of DOR low for a while (old FDCs),
  1594.  * or by setting the self clearing bit 7 of STATUS (newer FDCs)
  1595.  */
  1596. static void reset_fdc(void)
  1597. {
  1598. unsigned long flags;
  1599. do_floppy = reset_interrupt;
  1600. FDCS->reset = 0;
  1601. reset_fdc_info(0);
  1602. /* Pseudo-DMA may intercept 'reset finished' interrupt.  */
  1603. /* Irrelevant for systems with true DMA (i386).          */
  1604. flags = claim_dma_lock();
  1605. fd_disable_dma();
  1606. release_dma_lock(flags);
  1607. if (FDCS->version >= FDC_82072A)
  1608. fd_outb(0x80 | (FDCS->dtr & 3), FD_STATUS);
  1609. else {
  1610. fd_outb(FDCS->dor & ~0x04, FD_DOR);
  1611. udelay(FD_RESET_DELAY);
  1612. fd_outb(FDCS->dor, FD_DOR);
  1613. }
  1614. }
  1615. static void show_floppy(void)
  1616. {
  1617. int i;
  1618. printk("n");
  1619. printk("floppy driver staten");
  1620. printk("-------------------n");
  1621. printk("now=%lu last interrupt=%lu diff=%lu last called handler=%pn",
  1622.        jiffies, interruptjiffies, jiffies - interruptjiffies,
  1623.        lasthandler);
  1624. #ifdef FLOPPY_SANITY_CHECK
  1625. printk("timeout_message=%sn", timeout_message);
  1626. printk("last output bytes:n");
  1627. for (i = 0; i < OLOGSIZE; i++)
  1628. printk("%2x %2x %lun",
  1629.        output_log[(i + output_log_pos) % OLOGSIZE].data,
  1630.        output_log[(i + output_log_pos) % OLOGSIZE].status,
  1631.        output_log[(i + output_log_pos) % OLOGSIZE].jiffies);
  1632. printk("last result at %lun", resultjiffies);
  1633. printk("last redo_fd_request at %lun", lastredo);
  1634. for (i = 0; i < resultsize; i++) {
  1635. printk("%2x ", reply_buffer[i]);
  1636. }
  1637. printk("n");
  1638. #endif
  1639. printk("status=%xn", fd_inb(FD_STATUS));
  1640. printk("fdc_busy=%lun", fdc_busy);
  1641. if (do_floppy)
  1642. printk("do_floppy=%pn", do_floppy);
  1643. if (floppy_work.pending)
  1644. printk("floppy_work.func=%pn", floppy_work.func);
  1645. if (timer_pending(&fd_timer))
  1646. printk("fd_timer.function=%pn", fd_timer.function);
  1647. if (timer_pending(&fd_timeout)) {
  1648. printk("timer_function=%pn", fd_timeout.function);
  1649. printk("expires=%lun", fd_timeout.expires - jiffies);
  1650. printk("now=%lun", jiffies);
  1651. }
  1652. printk("cont=%pn", cont);
  1653. printk("current_req=%pn", current_req);
  1654. printk("command_status=%dn", command_status);
  1655. printk("n");
  1656. }
  1657. static void floppy_shutdown(unsigned long data)
  1658. {
  1659. unsigned long flags;
  1660. if (!initialising)
  1661. show_floppy();
  1662. cancel_activity();
  1663. floppy_enable_hlt();
  1664. flags = claim_dma_lock();
  1665. fd_disable_dma();
  1666. release_dma_lock(flags);
  1667. /* avoid dma going to a random drive after shutdown */
  1668. if (!initialising)
  1669. DPRINT("floppy timeout calledn");
  1670. FDCS->reset = 1;
  1671. if (cont) {
  1672. cont->done(0);
  1673. cont->redo(); /* this will recall reset when needed */
  1674. } else {
  1675. printk("no cont in shutdown!n");
  1676. process_fd_request();
  1677. }
  1678. is_alive("floppy shutdown");
  1679. }
  1680. /*typedef void (*timeout_fn)(unsigned long);*/
  1681. /* start motor, check media-changed condition and write protection */
  1682. static int start_motor(void (*function) (void))
  1683. {
  1684. int mask, data;
  1685. mask = 0xfc;
  1686. data = UNIT(current_drive);
  1687. if (!(raw_cmd->flags & FD_RAW_NO_MOTOR)) {
  1688. if (!(FDCS->dor & (0x10 << UNIT(current_drive)))) {
  1689. set_debugt();
  1690. /* no read since this drive is running */
  1691. DRS->first_read_date = 0;
  1692. /* note motor start time if motor is not yet running */
  1693. DRS->spinup_date = jiffies;
  1694. data |= (0x10 << UNIT(current_drive));
  1695. }
  1696. } else if (FDCS->dor & (0x10 << UNIT(current_drive)))
  1697. mask &= ~(0x10 << UNIT(current_drive));
  1698. /* starts motor and selects floppy */
  1699. del_timer(motor_off_timer + current_drive);
  1700. set_dor(fdc, mask, data);
  1701. /* wait_for_completion also schedules reset if needed. */
  1702. return (fd_wait_for_completion(DRS->select_date + DP->select_delay,
  1703.        (timeout_fn) function));
  1704. }
  1705. static void floppy_ready(void)
  1706. {
  1707. CHECK_RESET;
  1708. if (start_motor(floppy_ready))
  1709. return;
  1710. if (fdc_dtr())
  1711. return;
  1712. #ifdef DCL_DEBUG
  1713. if (DP->flags & FD_DEBUG) {
  1714. DPRINT("calling disk change from floppy_readyn");
  1715. }
  1716. #endif
  1717. if (!(raw_cmd->flags & FD_RAW_NO_MOTOR) &&
  1718.     disk_change(current_drive) && !DP->select_delay)
  1719. twaddle(); /* this clears the dcl on certain drive/controller
  1720.  * combinations */
  1721. #ifdef fd_chose_dma_mode
  1722. if ((raw_cmd->flags & FD_RAW_READ) || (raw_cmd->flags & FD_RAW_WRITE)) {
  1723. unsigned long flags = claim_dma_lock();
  1724. fd_chose_dma_mode(raw_cmd->kernel_data, raw_cmd->length);
  1725. release_dma_lock(flags);
  1726. }
  1727. #endif
  1728. if (raw_cmd->flags & (FD_RAW_NEED_SEEK | FD_RAW_NEED_DISK)) {
  1729. perpendicular_mode();
  1730. fdc_specify(); /* must be done here because of hut, hlt ... */
  1731. seek_floppy();
  1732. } else {
  1733. if ((raw_cmd->flags & FD_RAW_READ) ||
  1734.     (raw_cmd->flags & FD_RAW_WRITE))
  1735. fdc_specify();
  1736. setup_rw_floppy();
  1737. }
  1738. }
  1739. static void floppy_start(void)
  1740. {
  1741. reschedule_timeout(current_reqD, "floppy start", 0);
  1742. scandrives();
  1743. #ifdef DCL_DEBUG
  1744. if (DP->flags & FD_DEBUG) {
  1745. DPRINT("setting NEWCHANGE in floppy_startn");
  1746. }
  1747. #endif
  1748. SETF(FD_DISK_NEWCHANGE);
  1749. floppy_ready();
  1750. }
  1751. /*
  1752.  * ========================================================================
  1753.  * here ends the bottom half. Exported routines are:
  1754.  * floppy_start, floppy_off, floppy_ready, lock_fdc, unlock_fdc, set_fdc,
  1755.  * start_motor, reset_fdc, reset_fdc_info, interpret_errors.
  1756.  * Initialization also uses output_byte, result, set_dor, floppy_interrupt
  1757.  * and set_dor.
  1758.  * ========================================================================
  1759.  */
  1760. /*
  1761.  * General purpose continuations.
  1762.  * ==============================
  1763.  */
  1764. static void do_wakeup(void)
  1765. {
  1766. reschedule_timeout(MAXTIMEOUT, "do wakeup", 0);
  1767. cont = NULL;
  1768. command_status += 2;
  1769. wake_up(&command_done);
  1770. }
  1771. static struct cont_t wakeup_cont = {
  1772. .interrupt = empty,
  1773. .redo = do_wakeup,
  1774. .error = empty,
  1775. .done = (done_f) empty
  1776. };
  1777. static struct cont_t intr_cont = {
  1778. .interrupt = empty,
  1779. .redo = process_fd_request,
  1780. .error = empty,
  1781. .done = (done_f) empty
  1782. };
  1783. static int wait_til_done(void (*handler) (void), int interruptible)
  1784. {
  1785. int ret;
  1786. schedule_bh(handler);
  1787. if (command_status < 2 && NO_SIGNAL) {
  1788. DECLARE_WAITQUEUE(wait, current);
  1789. add_wait_queue(&command_done, &wait);
  1790. for (;;) {
  1791. set_current_state(interruptible ?
  1792.   TASK_INTERRUPTIBLE :
  1793.   TASK_UNINTERRUPTIBLE);
  1794. if (command_status >= 2 || !NO_SIGNAL)
  1795. break;
  1796. is_alive("wait_til_done");
  1797. schedule();
  1798. }
  1799. set_current_state(TASK_RUNNING);
  1800. remove_wait_queue(&command_done, &wait);
  1801. }
  1802. if (command_status < 2) {
  1803. cancel_activity();
  1804. cont = &intr_cont;
  1805. reset_fdc();
  1806. return -EINTR;
  1807. }
  1808. if (FDCS->reset)
  1809. command_status = FD_COMMAND_ERROR;
  1810. if (command_status == FD_COMMAND_OKAY)
  1811. ret = 0;
  1812. else
  1813. ret = -EIO;
  1814. command_status = FD_COMMAND_NONE;
  1815. return ret;
  1816. }
  1817. static void generic_done(int result)
  1818. {
  1819. command_status = result;
  1820. cont = &wakeup_cont;
  1821. }
  1822. static void generic_success(void)
  1823. {
  1824. cont->done(1);
  1825. }
  1826. static void generic_failure(void)
  1827. {
  1828. cont->done(0);
  1829. }
  1830. static void success_and_wakeup(void)
  1831. {
  1832. generic_success();
  1833. cont->redo();
  1834. }
  1835. /*
  1836.  * formatting and rw support.
  1837.  * ==========================
  1838.  */
  1839. static int next_valid_format(void)
  1840. {
  1841. int probed_format;
  1842. probed_format = DRS->probed_format;
  1843. while (1) {
  1844. if (probed_format >= 8 || !DP->autodetect[probed_format]) {
  1845. DRS->probed_format = 0;
  1846. return 1;
  1847. }
  1848. if (floppy_type[DP->autodetect[probed_format]].sect) {
  1849. DRS->probed_format = probed_format;
  1850. return 0;
  1851. }
  1852. probed_format++;
  1853. }
  1854. }
  1855. static void bad_flp_intr(void)
  1856. {
  1857. int err_count;
  1858. if (probing) {
  1859. DRS->probed_format++;
  1860. if (!next_valid_format())
  1861. return;
  1862. }
  1863. err_count = ++(*errors);
  1864. INFBOUND(DRWE->badness, err_count);
  1865. if (err_count > DP->max_errors.abort)
  1866. cont->done(0);
  1867. if (err_count > DP->max_errors.reset)
  1868. FDCS->reset = 1;
  1869. else if (err_count > DP->max_errors.recal)
  1870. DRS->track = NEED_2_RECAL;
  1871. }
  1872. static void set_floppy(int drive)
  1873. {
  1874. int type = ITYPE(UDRS->fd_device);
  1875. if (type)
  1876. _floppy = floppy_type + type;
  1877. else
  1878. _floppy = current_type[drive];
  1879. }
  1880. /*
  1881.  * formatting support.
  1882.  * ===================
  1883.  */
  1884. static void format_interrupt(void)
  1885. {
  1886. switch (interpret_errors()) {
  1887. case 1:
  1888. cont->error();
  1889. case 2:
  1890. break;
  1891. case 0:
  1892. cont->done(1);
  1893. }
  1894. cont->redo();
  1895. }
  1896. #define CODE2SIZE (ssize = ((1 << SIZECODE) + 3) >> 2)
  1897. #define FM_MODE(x,y) ((y) & ~(((x)->rate & 0x80) >>1))
  1898. #define CT(x) ((x) | 0xc0)
  1899. static void setup_format_params(int track)
  1900. {
  1901. struct fparm {
  1902. unsigned char track, head, sect, size;
  1903. } *here = (struct fparm *)floppy_track_buffer;
  1904. int il, n;
  1905. int count, head_shift, track_shift;
  1906. raw_cmd = &default_raw_cmd;
  1907. raw_cmd->track = track;
  1908. raw_cmd->flags = FD_RAW_WRITE | FD_RAW_INTR | FD_RAW_SPIN |
  1909.     FD_RAW_NEED_DISK | FD_RAW_NEED_SEEK;
  1910. raw_cmd->rate = _floppy->rate & 0x43;
  1911. raw_cmd->cmd_count = NR_F;
  1912. COMMAND = FM_MODE(_floppy, FD_FORMAT);
  1913. DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, format_req.head);
  1914. F_SIZECODE = FD_SIZECODE(_floppy);
  1915. F_SECT_PER_TRACK = _floppy->sect << 2 >> F_SIZECODE;
  1916. F_GAP = _floppy->fmt_gap;
  1917. F_FILL = FD_FILL_BYTE;
  1918. raw_cmd->kernel_data = floppy_track_buffer;
  1919. raw_cmd->length = 4 * F_SECT_PER_TRACK;
  1920. /* allow for about 30ms for data transport per track */
  1921. head_shift = (F_SECT_PER_TRACK + 5) / 6;
  1922. /* a ``cylinder'' is two tracks plus a little stepping time */
  1923. track_shift = 2 * head_shift + 3;
  1924. /* position of logical sector 1 on this track */
  1925. n = (track_shift * format_req.track + head_shift * format_req.head)
  1926.     % F_SECT_PER_TRACK;
  1927. /* determine interleave */
  1928. il = 1;
  1929. if (_floppy->fmt_gap < 0x22)
  1930. il++;
  1931. /* initialize field */
  1932. for (count = 0; count < F_SECT_PER_TRACK; ++count) {
  1933. here[count].track = format_req.track;
  1934. here[count].head = format_req.head;
  1935. here[count].sect = 0;
  1936. here[count].size = F_SIZECODE;
  1937. }
  1938. /* place logical sectors */
  1939. for (count = 1; count <= F_SECT_PER_TRACK; ++count) {
  1940. here[n].sect = count;
  1941. n = (n + il) % F_SECT_PER_TRACK;
  1942. if (here[n].sect) { /* sector busy, find next free sector */
  1943. ++n;
  1944. if (n >= F_SECT_PER_TRACK) {
  1945. n -= F_SECT_PER_TRACK;
  1946. while (here[n].sect)
  1947. ++n;
  1948. }
  1949. }
  1950. }
  1951. if (_floppy->stretch & FD_ZEROBASED) {
  1952. for (count = 0; count < F_SECT_PER_TRACK; count++)
  1953. here[count].sect--;
  1954. }
  1955. }
  1956. static void redo_format(void)
  1957. {
  1958. buffer_track = -1;
  1959. setup_format_params(format_req.track << STRETCH(_floppy));
  1960. floppy_start();
  1961. debugt("queue format request");
  1962. }
  1963. static struct cont_t format_cont = {
  1964. .interrupt = format_interrupt,
  1965. .redo = redo_format,
  1966. .error = bad_flp_intr,
  1967. .done = generic_done
  1968. };
  1969. static int do_format(int drive, struct format_descr *tmp_format_req)
  1970. {
  1971. int ret;
  1972. LOCK_FDC(drive, 1);
  1973. set_floppy(drive);
  1974. if (!_floppy ||
  1975.     _floppy->track > DP->tracks ||
  1976.     tmp_format_req->track >= _floppy->track ||
  1977.     tmp_format_req->head >= _floppy->head ||
  1978.     (_floppy->sect << 2) % (1 << FD_SIZECODE(_floppy)) ||
  1979.     !_floppy->fmt_gap) {
  1980. process_fd_request();
  1981. return -EINVAL;
  1982. }
  1983. format_req = *tmp_format_req;
  1984. format_errors = 0;
  1985. cont = &format_cont;
  1986. errors = &format_errors;
  1987. IWAIT(redo_format);
  1988. process_fd_request();
  1989. return ret;
  1990. }
  1991. /*
  1992.  * Buffer read/write and support
  1993.  * =============================
  1994.  */
  1995. static void floppy_end_request(struct request *req, int uptodate)
  1996. {
  1997. unsigned int nr_sectors = current_count_sectors;
  1998. /* current_count_sectors can be zero if transfer failed */
  1999. if (!uptodate)
  2000. nr_sectors = req->current_nr_sectors;
  2001. if (end_that_request_first(req, uptodate, nr_sectors))
  2002. return;
  2003. add_disk_randomness(req->rq_disk);
  2004. floppy_off((long)req->rq_disk->private_data);
  2005. blkdev_dequeue_request(req);
  2006. end_that_request_last(req);
  2007. /* We're done with the request */
  2008. current_req = NULL;
  2009. }
  2010. /* new request_done. Can handle physical sectors which are smaller than a
  2011.  * logical buffer */
  2012. static void request_done(int uptodate)
  2013. {
  2014. struct request_queue *q = floppy_queue;
  2015. struct request *req = current_req;
  2016. unsigned long flags;
  2017. int block;
  2018. probing = 0;
  2019. reschedule_timeout(MAXTIMEOUT, "request done %d", uptodate);
  2020. if (!req) {
  2021. printk("floppy.c: no request in request_donen");
  2022. return;
  2023. }
  2024. if (uptodate) {
  2025. /* maintain values for invalidation on geometry
  2026.  * change */
  2027. block = current_count_sectors + req->sector;
  2028. INFBOUND(DRS->maxblock, block);
  2029. if (block > _floppy->sect)
  2030. DRS->maxtrack = 1;
  2031. /* unlock chained buffers */
  2032. spin_lock_irqsave(q->queue_lock, flags);
  2033. floppy_end_request(req, 1);
  2034. spin_unlock_irqrestore(q->queue_lock, flags);
  2035. } else {
  2036. if (rq_data_dir(req) == WRITE) {
  2037. /* record write error information */
  2038. DRWE->write_errors++;
  2039. if (DRWE->write_errors == 1) {
  2040. DRWE->first_error_sector = req->sector;
  2041. DRWE->first_error_generation = DRS->generation;
  2042. }
  2043. DRWE->last_error_sector = req->sector;
  2044. DRWE->last_error_generation = DRS->generation;
  2045. }
  2046. spin_lock_irqsave(q->queue_lock, flags);
  2047. floppy_end_request(req, 0);
  2048. spin_unlock_irqrestore(q->queue_lock, flags);
  2049. }
  2050. }
  2051. /* Interrupt handler evaluating the result of the r/w operation */
  2052. static void rw_interrupt(void)
  2053. {
  2054. int nr_sectors, ssize, eoc, heads;
  2055. if (R_HEAD >= 2) {
  2056. /* some Toshiba floppy controllers occasionnally seem to
  2057.  * return bogus interrupts after read/write operations, which
  2058.  * can be recognized by a bad head number (>= 2) */
  2059. return;
  2060. }
  2061. if (!DRS->first_read_date)
  2062. DRS->first_read_date = jiffies;
  2063. nr_sectors = 0;
  2064. CODE2SIZE;
  2065. if (ST1 & ST1_EOC)
  2066. eoc = 1;
  2067. else
  2068. eoc = 0;
  2069. if (COMMAND & 0x80)
  2070. heads = 2;
  2071. else
  2072. heads = 1;
  2073. nr_sectors = (((R_TRACK - TRACK) * heads +
  2074.        R_HEAD - HEAD) * SECT_PER_TRACK +
  2075.       R_SECTOR - SECTOR + eoc) << SIZECODE >> 2;
  2076. #ifdef FLOPPY_SANITY_CHECK
  2077. if (nr_sectors / ssize >
  2078.     (in_sector_offset + current_count_sectors + ssize - 1) / ssize) {
  2079. DPRINT("long rw: %x instead of %lxn",
  2080.        nr_sectors, current_count_sectors);
  2081. printk("rs=%d s=%dn", R_SECTOR, SECTOR);
  2082. printk("rh=%d h=%dn", R_HEAD, HEAD);
  2083. printk("rt=%d t=%dn", R_TRACK, TRACK);
  2084. printk("heads=%d eoc=%dn", heads, eoc);
  2085. printk("spt=%d st=%d ss=%dn", SECT_PER_TRACK,
  2086.        fsector_t, ssize);
  2087. printk("in_sector_offset=%dn", in_sector_offset);
  2088. }
  2089. #endif
  2090. nr_sectors -= in_sector_offset;
  2091. INFBOUND(nr_sectors, 0);
  2092. SUPBOUND(current_count_sectors, nr_sectors);
  2093. switch (interpret_errors()) {
  2094. case 2:
  2095. cont->redo();
  2096. return;
  2097. case 1:
  2098. if (!current_count_sectors) {
  2099. cont->error();
  2100. cont->redo();
  2101. return;
  2102. }
  2103. break;
  2104. case 0:
  2105. if (!current_count_sectors) {
  2106. cont->redo();
  2107. return;
  2108. }
  2109. current_type[current_drive] = _floppy;
  2110. floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
  2111. break;
  2112. }
  2113. if (probing) {
  2114. if (DP->flags & FTD_MSG)
  2115. DPRINT("Auto-detected floppy type %s in fd%dn",
  2116.        _floppy->name, current_drive);
  2117. current_type[current_drive] = _floppy;
  2118. floppy_sizes[TOMINOR(current_drive)] = _floppy->size;
  2119. probing = 0;
  2120. }
  2121. if (CT(COMMAND) != FD_READ ||
  2122.     raw_cmd->kernel_data == current_req->buffer) {
  2123. /* transfer directly from buffer */
  2124. cont->done(1);
  2125. } else if (CT(COMMAND) == FD_READ) {
  2126. buffer_track = raw_cmd->track;
  2127. buffer_drive = current_drive;
  2128. INFBOUND(buffer_max, nr_sectors + fsector_t);
  2129. }
  2130. cont->redo();
  2131. }
  2132. /* Compute maximal contiguous buffer size. */
  2133. static int buffer_chain_size(void)
  2134. {
  2135. struct bio *bio;
  2136. struct bio_vec *bv;
  2137. int size, i;
  2138. char *base;
  2139. base = bio_data(current_req->bio);
  2140. size = 0;
  2141. rq_for_each_bio(bio, current_req) {
  2142. bio_for_each_segment(bv, bio, i) {
  2143. if (page_address(bv->bv_page) + bv->bv_offset !=
  2144.     base + size)
  2145. break;
  2146. size += bv->bv_len;
  2147. }
  2148. }
  2149. return size >> 9;
  2150. }
  2151. /* Compute the maximal transfer size */
  2152. static int transfer_size(int ssize, int max_sector, int max_size)
  2153. {
  2154. SUPBOUND(max_sector, fsector_t + max_size);
  2155. /* alignment */
  2156. max_sector -= (max_sector % _floppy->sect) % ssize;
  2157. /* transfer size, beginning not aligned */
  2158. current_count_sectors = max_sector - fsector_t;
  2159. return max_sector;
  2160. }
  2161. /*
  2162.  * Move data from/to the track buffer to/from the buffer cache.
  2163.  */
  2164. static void copy_buffer(int ssize, int max_sector, int max_sector_2)
  2165. {
  2166. int remaining; /* number of transferred 512-byte sectors */
  2167. struct bio_vec *bv;
  2168. struct bio *bio;
  2169. char *buffer, *dma_buffer;
  2170. int size, i;
  2171. max_sector = transfer_size(ssize,
  2172.    min(max_sector, max_sector_2),
  2173.    current_req->nr_sectors);
  2174. if (current_count_sectors <= 0 && CT(COMMAND) == FD_WRITE &&
  2175.     buffer_max > fsector_t + current_req->nr_sectors)
  2176. current_count_sectors = min_t(int, buffer_max - fsector_t,
  2177.       current_req->nr_sectors);
  2178. remaining = current_count_sectors << 9;
  2179. #ifdef FLOPPY_SANITY_CHECK
  2180. if ((remaining >> 9) > current_req->nr_sectors &&
  2181.     CT(COMMAND) == FD_WRITE) {
  2182. DPRINT("in copy buffern");
  2183. printk("current_count_sectors=%ldn", current_count_sectors);
  2184. printk("remaining=%dn", remaining >> 9);
  2185. printk("current_req->nr_sectors=%ldn",
  2186.        current_req->nr_sectors);
  2187. printk("current_req->current_nr_sectors=%un",
  2188.        current_req->current_nr_sectors);
  2189. printk("max_sector=%dn", max_sector);
  2190. printk("ssize=%dn", ssize);
  2191. }
  2192. #endif
  2193. buffer_max = max(max_sector, buffer_max);
  2194. dma_buffer = floppy_track_buffer + ((fsector_t - buffer_min) << 9);
  2195. size = current_req->current_nr_sectors << 9;
  2196. rq_for_each_bio(bio, current_req) {
  2197. bio_for_each_segment(bv, bio, i) {
  2198. if (!remaining)
  2199. break;
  2200. size = bv->bv_len;
  2201. SUPBOUND(size, remaining);
  2202. buffer = page_address(bv->bv_page) + bv->bv_offset;
  2203. #ifdef FLOPPY_SANITY_CHECK
  2204. if (dma_buffer + size >
  2205.     floppy_track_buffer + (max_buffer_sectors << 10) ||
  2206.     dma_buffer < floppy_track_buffer) {
  2207. DPRINT("buffer overrun in copy buffer %dn",
  2208.        (int)((floppy_track_buffer -
  2209.       dma_buffer) >> 9));
  2210. printk("fsector_t=%d buffer_min=%dn",
  2211.        fsector_t, buffer_min);
  2212. printk("current_count_sectors=%ldn",
  2213.        current_count_sectors);
  2214. if (CT(COMMAND) == FD_READ)
  2215. printk("readn");
  2216. if (CT(COMMAND) == FD_WRITE)
  2217. printk("writen");
  2218. break;
  2219. }
  2220. if (((unsigned long)buffer) % 512)
  2221. DPRINT("%p buffer not alignedn", buffer);
  2222. #endif
  2223. if (CT(COMMAND) == FD_READ)
  2224. memcpy(buffer, dma_buffer, size);
  2225. else
  2226. memcpy(dma_buffer, buffer, size);
  2227. remaining -= size;
  2228. dma_buffer += size;
  2229. }
  2230. }
  2231. #ifdef FLOPPY_SANITY_CHECK
  2232. if (remaining) {
  2233. if (remaining > 0)
  2234. max_sector -= remaining >> 9;
  2235. DPRINT("weirdness: remaining %dn", remaining >> 9);
  2236. }
  2237. #endif
  2238. }
  2239. #if 0
  2240. static inline int check_dma_crossing(char *start,
  2241.      unsigned long length, char *message)
  2242. {
  2243. if (CROSS_64KB(start, length)) {
  2244. printk("DMA xfer crosses 64KB boundary in %s %p-%pn",
  2245.        message, start, start + length);
  2246. return 1;
  2247. } else
  2248. return 0;
  2249. }
  2250. #endif
  2251. /* work around a bug in pseudo DMA
  2252.  * (on some FDCs) pseudo DMA does not stop when the CPU stops
  2253.  * sending data.  Hence we need a different way to signal the
  2254.  * transfer length:  We use SECT_PER_TRACK.  Unfortunately, this
  2255.  * does not work with MT, hence we can only transfer one head at
  2256.  * a time
  2257.  */
  2258. static void virtualdmabug_workaround(void)
  2259. {
  2260. int hard_sectors, end_sector;
  2261. if (CT(COMMAND) == FD_WRITE) {
  2262. COMMAND &= ~0x80; /* switch off multiple track mode */
  2263. hard_sectors = raw_cmd->length >> (7 + SIZECODE);
  2264. end_sector = SECTOR + hard_sectors - 1;
  2265. #ifdef FLOPPY_SANITY_CHECK
  2266. if (end_sector > SECT_PER_TRACK) {
  2267. printk("too many sectors %d > %dn",
  2268.        end_sector, SECT_PER_TRACK);
  2269. return;
  2270. }
  2271. #endif
  2272. SECT_PER_TRACK = end_sector; /* make sure SECT_PER_TRACK points
  2273.  * to end of transfer */
  2274. }
  2275. }
  2276. /*
  2277.  * Formulate a read/write request.
  2278.  * this routine decides where to load the data (directly to buffer, or to
  2279.  * tmp floppy area), how much data to load (the size of the buffer, the whole
  2280.  * track, or a single sector)
  2281.  * All floppy_track_buffer handling goes in here. If we ever add track buffer
  2282.  * allocation on the fly, it should be done here. No other part should need
  2283.  * modification.
  2284.  */
  2285. static int make_raw_rw_request(void)
  2286. {
  2287. int aligned_sector_t;
  2288. int max_sector, max_size, tracksize, ssize;
  2289. if (max_buffer_sectors == 0) {
  2290. printk("VFS: Block I/O scheduled on unopened devicen");
  2291. return 0;
  2292. }
  2293. set_fdc((long)current_req->rq_disk->private_data);
  2294. raw_cmd = &default_raw_cmd;
  2295. raw_cmd->flags = FD_RAW_SPIN | FD_RAW_NEED_DISK | FD_RAW_NEED_DISK |
  2296.     FD_RAW_NEED_SEEK;
  2297. raw_cmd->cmd_count = NR_RW;
  2298. if (rq_data_dir(current_req) == READ) {
  2299. raw_cmd->flags |= FD_RAW_READ;
  2300. COMMAND = FM_MODE(_floppy, FD_READ);
  2301. } else if (rq_data_dir(current_req) == WRITE) {
  2302. raw_cmd->flags |= FD_RAW_WRITE;
  2303. COMMAND = FM_MODE(_floppy, FD_WRITE);
  2304. } else {
  2305. DPRINT("make_raw_rw_request: unknown commandn");
  2306. return 0;
  2307. }
  2308. max_sector = _floppy->sect * _floppy->head;
  2309. TRACK = (int)current_req->sector / max_sector;
  2310. fsector_t = (int)current_req->sector % max_sector;
  2311. if (_floppy->track && TRACK >= _floppy->track) {
  2312. if (current_req->current_nr_sectors & 1) {
  2313. current_count_sectors = 1;
  2314. return 1;
  2315. } else
  2316. return 0;
  2317. }
  2318. HEAD = fsector_t / _floppy->sect;
  2319. if (((_floppy->stretch & (FD_SWAPSIDES | FD_ZEROBASED)) ||
  2320.      TESTF(FD_NEED_TWADDLE)) && fsector_t < _floppy->sect)
  2321. max_sector = _floppy->sect;
  2322. /* 2M disks have phantom sectors on the first track */
  2323. if ((_floppy->rate & FD_2M) && (!TRACK) && (!HEAD)) {
  2324. max_sector = 2 * _floppy->sect / 3;
  2325. if (fsector_t >= max_sector) {
  2326. current_count_sectors =
  2327.     min_t(int, _floppy->sect - fsector_t,
  2328.   current_req->nr_sectors);
  2329. return 1;
  2330. }
  2331. SIZECODE = 2;
  2332. } else
  2333. SIZECODE = FD_SIZECODE(_floppy);
  2334. raw_cmd->rate = _floppy->rate & 0x43;
  2335. if ((_floppy->rate & FD_2M) && (TRACK || HEAD) && raw_cmd->rate == 2)
  2336. raw_cmd->rate = 1;
  2337. if (SIZECODE)
  2338. SIZECODE2 = 0xff;
  2339. else
  2340. SIZECODE2 = 0x80;
  2341. raw_cmd->track = TRACK << STRETCH(_floppy);
  2342. DR_SELECT = UNIT(current_drive) + PH_HEAD(_floppy, HEAD);
  2343. GAP = _floppy->gap;
  2344. CODE2SIZE;
  2345. SECT_PER_TRACK = _floppy->sect << 2 >> SIZECODE;
  2346. SECTOR = ((fsector_t % _floppy->sect) << 2 >> SIZECODE) +
  2347.     ((_floppy->stretch & FD_ZEROBASED) ? 0 : 1);
  2348. /* tracksize describes the size which can be filled up with sectors
  2349.  * of size ssize.
  2350.  */
  2351. tracksize = _floppy->sect - _floppy->sect % ssize;
  2352. if (tracksize < _floppy->sect) {
  2353. SECT_PER_TRACK++;
  2354. if (tracksize <= fsector_t % _floppy->sect)
  2355. SECTOR--;
  2356. /* if we are beyond tracksize, fill up using smaller sectors */
  2357. while (tracksize <= fsector_t % _floppy->sect) {
  2358. while (tracksize + ssize > _floppy->sect) {
  2359. SIZECODE--;
  2360. ssize >>= 1;
  2361. }
  2362. SECTOR++;
  2363. SECT_PER_TRACK++;
  2364. tracksize += ssize;
  2365. }
  2366. max_sector = HEAD * _floppy->sect + tracksize;
  2367. } else if (!TRACK && !HEAD && !(_floppy->rate & FD_2M) && probing) {
  2368. max_sector = _floppy->sect;
  2369. } else if (!HEAD && CT(COMMAND) == FD_WRITE) {
  2370. /* for virtual DMA bug workaround */
  2371. max_sector = _floppy->sect;
  2372. }
  2373. in_sector_offset = (fsector_t % _floppy->sect) % ssize;
  2374. aligned_sector_t = fsector_t - in_sector_offset;
  2375. max_size = current_req->nr_sectors;
  2376. if ((raw_cmd->track == buffer_track) &&
  2377.     (current_drive == buffer_drive) &&
  2378.     (fsector_t >= buffer_min) && (fsector_t < buffer_max)) {
  2379. /* data already in track buffer */
  2380. if (CT(COMMAND) == FD_READ) {
  2381. copy_buffer(1, max_sector, buffer_max);
  2382. return 1;
  2383. }
  2384. } else if (in_sector_offset || current_req->nr_sectors < ssize) {
  2385. if (CT(COMMAND) == FD_WRITE) {
  2386. if (fsector_t + current_req->nr_sectors > ssize &&
  2387.     fsector_t + current_req->nr_sectors < ssize + ssize)
  2388. max_size = ssize + ssize;
  2389. else
  2390. max_size = ssize;
  2391. }
  2392. raw_cmd->flags &= ~FD_RAW_WRITE;
  2393. raw_cmd->flags |= FD_RAW_READ;
  2394. COMMAND = FM_MODE(_floppy, FD_READ);
  2395. } else if ((unsigned long)current_req->buffer < MAX_DMA_ADDRESS) {
  2396. unsigned long dma_limit;
  2397. int direct, indirect;
  2398. indirect =
  2399.     transfer_size(ssize, max_sector,
  2400.   max_buffer_sectors * 2) - fsector_t;
  2401. /*
  2402.  * Do NOT use minimum() here---MAX_DMA_ADDRESS is 64 bits wide
  2403.  * on a 64 bit machine!
  2404.  */
  2405. max_size = buffer_chain_size();
  2406. dma_limit =
  2407.     (MAX_DMA_ADDRESS -
  2408.      ((unsigned long)current_req->buffer)) >> 9;
  2409. if ((unsigned long)max_size > dma_limit) {
  2410. max_size = dma_limit;
  2411. }
  2412. /* 64 kb boundaries */
  2413. if (CROSS_64KB(current_req->buffer, max_size << 9))
  2414. max_size = (K_64 -
  2415.     ((unsigned long)current_req->buffer) %
  2416.     K_64) >> 9;
  2417. direct = transfer_size(ssize, max_sector, max_size) - fsector_t;
  2418. /*
  2419.  * We try to read tracks, but if we get too many errors, we
  2420.  * go back to reading just one sector at a time.
  2421.  *
  2422.  * This means we should be able to read a sector even if there
  2423.  * are other bad sectors on this track.
  2424.  */
  2425. if (!direct ||
  2426.     (indirect * 2 > direct * 3 &&
  2427.      *errors < DP->max_errors.read_track &&
  2428.      /*!TESTF(FD_NEED_TWADDLE) && */
  2429.      ((!probing
  2430.        || (DP->read_track & (1 << DRS->probed_format)))))) {
  2431. max_size = current_req->nr_sectors;
  2432. } else {
  2433. raw_cmd->kernel_data = current_req->buffer;
  2434. raw_cmd->length = current_count_sectors << 9;
  2435. if (raw_cmd->length == 0) {
  2436. DPRINT
  2437.     ("zero dma transfer attempted from make_raw_requestn");
  2438. DPRINT("indirect=%d direct=%d fsector_t=%d",
  2439.        indirect, direct, fsector_t);
  2440. return 0;
  2441. }
  2442. /* check_dma_crossing(raw_cmd->kernel_data, 
  2443.    raw_cmd->length, 
  2444.    "end of make_raw_request [1]");*/
  2445. virtualdmabug_workaround();
  2446. return 2;
  2447. }
  2448. }
  2449. if (CT(COMMAND) == FD_READ)
  2450. max_size = max_sector; /* unbounded */
  2451. /* claim buffer track if needed */
  2452. if (buffer_track != raw_cmd->track || /* bad track */
  2453.     buffer_drive != current_drive || /* bad drive */
  2454.     fsector_t > buffer_max ||
  2455.     fsector_t < buffer_min ||
  2456.     ((CT(COMMAND) == FD_READ ||
  2457.       (!in_sector_offset && current_req->nr_sectors >= ssize)) &&
  2458.      max_sector > 2 * max_buffer_sectors + buffer_min &&
  2459.      max_size + fsector_t > 2 * max_buffer_sectors + buffer_min)
  2460.     /* not enough space */
  2461.     ) {
  2462. buffer_track = -1;
  2463. buffer_drive = current_drive;
  2464. buffer_max = buffer_min = aligned_sector_t;
  2465. }
  2466. raw_cmd->kernel_data = floppy_track_buffer +
  2467.     ((aligned_sector_t - buffer_min) << 9);
  2468. if (CT(COMMAND) == FD_WRITE) {
  2469. /* copy write buffer to track buffer.
  2470.  * if we get here, we know that the write
  2471.  * is either aligned or the data already in the buffer
  2472.  * (buffer will be overwritten) */
  2473. #ifdef FLOPPY_SANITY_CHECK
  2474. if (in_sector_offset && buffer_track == -1)
  2475. DPRINT("internal error offset !=0 on writen");
  2476. #endif
  2477. buffer_track = raw_cmd->track;
  2478. buffer_drive = current_drive;
  2479. copy_buffer(ssize, max_sector,
  2480.     2 * max_buffer_sectors + buffer_min);
  2481. } else
  2482. transfer_size(ssize, max_sector,
  2483.       2 * max_buffer_sectors + buffer_min -
  2484.       aligned_sector_t);
  2485. /* round up current_count_sectors to get dma xfer size */
  2486. raw_cmd->length = in_sector_offset + current_count_sectors;
  2487. raw_cmd->length = ((raw_cmd->length - 1) | (ssize - 1)) + 1;
  2488. raw_cmd->length <<= 9;
  2489. #ifdef FLOPPY_SANITY_CHECK
  2490. /*check_dma_crossing(raw_cmd->kernel_data, raw_cmd->length, 
  2491.    "end of make_raw_request"); */
  2492. if ((raw_cmd->length < current_count_sectors << 9) ||
  2493.     (raw_cmd->kernel_data != current_req->buffer &&
  2494.      CT(COMMAND) == FD_WRITE &&
  2495.      (aligned_sector_t + (raw_cmd->length >> 9) > buffer_max ||
  2496.       aligned_sector_t < buffer_min)) ||
  2497.     raw_cmd->length % (128 << SIZECODE) ||
  2498.     raw_cmd->length <= 0 || current_count_sectors <= 0) {
  2499. DPRINT("fractionary current count b=%lx s=%lxn",
  2500.        raw_cmd->length, current_count_sectors);
  2501. if (raw_cmd->kernel_data != current_req->buffer)
  2502. printk("addr=%d, length=%ldn",
  2503.        (int)((raw_cmd->kernel_data -
  2504.       floppy_track_buffer) >> 9),
  2505.        current_count_sectors);
  2506. printk("st=%d ast=%d mse=%d msi=%dn",
  2507.        fsector_t, aligned_sector_t, max_sector, max_size);
  2508. printk("ssize=%x SIZECODE=%dn", ssize, SIZECODE);
  2509. printk("command=%x SECTOR=%d HEAD=%d, TRACK=%dn",
  2510.        COMMAND, SECTOR, HEAD, TRACK);
  2511. printk("buffer drive=%dn", buffer_drive);
  2512. printk("buffer track=%dn", buffer_track);
  2513. printk("buffer_min=%dn", buffer_min);
  2514. printk("buffer_max=%dn", buffer_max);
  2515. return 0;
  2516. }
  2517. if (raw_cmd->kernel_data != current_req->buffer) {
  2518. if (raw_cmd->kernel_data < floppy_track_buffer ||
  2519.     current_count_sectors < 0 ||
  2520.     raw_cmd->length < 0 ||
  2521.     raw_cmd->kernel_data + raw_cmd->length >
  2522.     floppy_track_buffer + (max_buffer_sectors << 10)) {
  2523. DPRINT("buffer overrun in schedule dman");
  2524. printk("fsector_t=%d buffer_min=%d current_count=%ldn",
  2525.        fsector_t, buffer_min, raw_cmd->length >> 9);
  2526. printk("current_count_sectors=%ldn",
  2527.        current_count_sectors);
  2528. if (CT(COMMAND) == FD_READ)
  2529. printk("readn");
  2530. if (CT(COMMAND) == FD_WRITE)
  2531. printk("writen");
  2532. return 0;
  2533. }
  2534. } else if (raw_cmd->length > current_req->nr_sectors << 9 ||
  2535.    current_count_sectors > current_req->nr_sectors) {
  2536. DPRINT("buffer overrun in direct transfern");
  2537. return 0;
  2538. } else if (raw_cmd->length < current_count_sectors << 9) {
  2539. DPRINT("more sectors than bytesn");
  2540. printk("bytes=%ldn", raw_cmd->length >> 9);
  2541. printk("sectors=%ldn", current_count_sectors);
  2542. }
  2543. if (raw_cmd->length == 0) {
  2544. DPRINT("zero dma transfer attempted from make_raw_requestn");
  2545. return 0;
  2546. }
  2547. #endif
  2548. virtualdmabug_workaround();
  2549. return 2;
  2550. }
  2551. static void redo_fd_request(void)
  2552. {
  2553. #define REPEAT {request_done(0); continue; }
  2554. int drive;
  2555. int tmp;
  2556. lastredo = jiffies;
  2557. if (current_drive < N_DRIVE)
  2558. floppy_off(current_drive);
  2559. for (;;) {
  2560. if (!current_req) {
  2561. struct request *req;
  2562. spin_lock_irq(floppy_queue->queue_lock);
  2563. req = elv_next_request(floppy_queue);
  2564. spin_unlock_irq(floppy_queue->queue_lock);
  2565. if (!req) {
  2566. do_floppy = NULL;
  2567. unlock_fdc();
  2568. return;
  2569. }
  2570. current_req = req;
  2571. }
  2572. drive = (long)current_req->rq_disk->private_data;
  2573. set_fdc(drive);
  2574. reschedule_timeout(current_reqD, "redo fd request", 0);
  2575. set_floppy(drive);
  2576. raw_cmd = &default_raw_cmd;
  2577. raw_cmd->flags = 0;
  2578. if (start_motor(redo_fd_request))
  2579. return;
  2580. disk_change(current_drive);
  2581. if (test_bit(current_drive, &fake_change) ||
  2582.     TESTF(FD_DISK_CHANGED)) {
  2583. DPRINT("disk absent or changed during operationn");
  2584. REPEAT;
  2585. }
  2586. if (!_floppy) { /* Autodetection */
  2587. if (!probing) {
  2588. DRS->probed_format = 0;
  2589. if (next_valid_format()) {
  2590. DPRINT("no autodetectable formatsn");
  2591. _floppy = NULL;
  2592. REPEAT;
  2593. }
  2594. }
  2595. probing = 1;
  2596. _floppy =
  2597.     floppy_type + DP->autodetect[DRS->probed_format];
  2598. } else
  2599. probing = 0;
  2600. errors = &(current_req->errors);
  2601. tmp = make_raw_rw_request();
  2602. if (tmp < 2) {
  2603. request_done(tmp);
  2604. continue;
  2605. }
  2606. if (TESTF(FD_NEED_TWADDLE))
  2607. twaddle();
  2608. schedule_bh(floppy_start);
  2609. debugt("queue fd request");
  2610. return;
  2611. }
  2612. #undef REPEAT
  2613. }
  2614. static struct cont_t rw_cont = {
  2615. .interrupt = rw_interrupt,
  2616. .redo = redo_fd_request,
  2617. .error = bad_flp_intr,
  2618. .done = request_done
  2619. };
  2620. static void process_fd_request(void)
  2621. {
  2622. cont = &rw_cont;
  2623. schedule_bh(redo_fd_request);
  2624. }
  2625. static void do_fd_request(request_queue_t * q)
  2626. {
  2627. if (max_buffer_sectors == 0) {
  2628. printk("VFS: do_fd_request called on non-open devicen");
  2629. return;
  2630. }
  2631. if (usage_count == 0) {
  2632. printk("warning: usage count=0, current_req=%p exitingn",
  2633.        current_req);
  2634. printk("sect=%ld flags=%lxn", (long)current_req->sector,
  2635.        current_req->flags);
  2636. return;
  2637. }
  2638. if (test_bit(0, &fdc_busy)) {
  2639. /* fdc busy, this new request will be treated when the
  2640.    current one is done */
  2641. is_alive("do fd request, old request running");
  2642. return;
  2643. }
  2644. lock_fdc(MAXTIMEOUT, 0);
  2645. process_fd_request();
  2646. is_alive("do fd request");
  2647. }
  2648. static struct cont_t poll_cont = {
  2649. .interrupt = success_and_wakeup,
  2650. .redo = floppy_ready,
  2651. .error = generic_failure,
  2652. .done = generic_done
  2653. };
  2654. static int poll_drive(int interruptible, int flag)
  2655. {
  2656. int ret;
  2657. /* no auto-sense, just clear dcl */
  2658. raw_cmd = &default_raw_cmd;
  2659. raw_cmd->flags = flag;
  2660. raw_cmd->track = 0;
  2661. raw_cmd->cmd_count = 0;
  2662. cont = &poll_cont;
  2663. #ifdef DCL_DEBUG
  2664. if (DP->flags & FD_DEBUG) {
  2665. DPRINT("setting NEWCHANGE in poll_driven");
  2666. }
  2667. #endif
  2668. SETF(FD_DISK_NEWCHANGE);
  2669. WAIT(floppy_ready);
  2670. return ret;
  2671. }
  2672. /*
  2673.  * User triggered reset
  2674.  * ====================
  2675.  */
  2676. static void reset_intr(void)
  2677. {
  2678. printk("weird, reset interrupt calledn");
  2679. }
  2680. static struct cont_t reset_cont = {
  2681. .interrupt = reset_intr,
  2682. .redo = success_and_wakeup,
  2683. .error = generic_failure,
  2684. .done = generic_done
  2685. };
  2686. static int user_reset_fdc(int drive, int arg, int interruptible)
  2687. {
  2688. int ret;
  2689. ret = 0;
  2690. LOCK_FDC(drive, interruptible);
  2691. if (arg == FD_RESET_ALWAYS)
  2692. FDCS->reset = 1;
  2693. if (FDCS->reset) {
  2694. cont = &reset_cont;
  2695. WAIT(reset_fdc);
  2696. }
  2697. process_fd_request();
  2698. return ret;
  2699. }
  2700. /*
  2701.  * Misc Ioctl's and support
  2702.  * ========================
  2703.  */
  2704. static inline int fd_copyout(void __user *param, const void *address,
  2705.      unsigned long size)
  2706. {
  2707. return copy_to_user(param, address, size) ? -EFAULT : 0;
  2708. }
  2709. static inline int fd_copyin(void __user *param, void *address, unsigned long size)
  2710. {
  2711. return copy_from_user(address, param, size) ? -EFAULT : 0;
  2712. }
  2713. #define _COPYOUT(x) (copy_to_user((void __user *)param, &(x), sizeof(x)) ? -EFAULT : 0)
  2714. #define _COPYIN(x) (copy_from_user(&(x), (void __user *)param, sizeof(x)) ? -EFAULT : 0)
  2715. #define COPYOUT(x) ECALL(_COPYOUT(x))
  2716. #define COPYIN(x) ECALL(_COPYIN(x))
  2717. static inline const char *drive_name(int type, int drive)
  2718. {
  2719. struct floppy_struct *floppy;
  2720. if (type)
  2721. floppy = floppy_type + type;
  2722. else {
  2723. if (UDP->native_format)
  2724. floppy = floppy_type + UDP->native_format;
  2725. else
  2726. return "(null)";
  2727. }
  2728. if (floppy->name)
  2729. return floppy->name;
  2730. else
  2731. return "(null)";
  2732. }
  2733. /* raw commands */
  2734. static void raw_cmd_done(int flag)
  2735. {
  2736. int i;
  2737. if (!flag) {
  2738. raw_cmd->flags |= FD_RAW_FAILURE;
  2739. raw_cmd->flags |= FD_RAW_HARDFAILURE;
  2740. } else {
  2741. raw_cmd->reply_count = inr;
  2742. if (raw_cmd->reply_count > MAX_REPLIES)
  2743. raw_cmd->reply_count = 0;
  2744. for (i = 0; i < raw_cmd->reply_count; i++)
  2745. raw_cmd->reply[i] = reply_buffer[i];
  2746. if (raw_cmd->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
  2747. unsigned long flags;
  2748. flags = claim_dma_lock();
  2749. raw_cmd->length = fd_get_dma_residue();
  2750. release_dma_lock(flags);
  2751. }
  2752. if ((raw_cmd->flags & FD_RAW_SOFTFAILURE) &&
  2753.     (!raw_cmd->reply_count || (raw_cmd->reply[0] & 0xc0)))
  2754. raw_cmd->flags |= FD_RAW_FAILURE;
  2755. if (disk_change(current_drive))
  2756. raw_cmd->flags |= FD_RAW_DISK_CHANGE;
  2757. else
  2758. raw_cmd->flags &= ~FD_RAW_DISK_CHANGE;
  2759. if (raw_cmd->flags & FD_RAW_NO_MOTOR_AFTER)
  2760. motor_off_callback(current_drive);
  2761. if (raw_cmd->next &&
  2762.     (!(raw_cmd->flags & FD_RAW_FAILURE) ||
  2763.      !(raw_cmd->flags & FD_RAW_STOP_IF_FAILURE)) &&
  2764.     ((raw_cmd->flags & FD_RAW_FAILURE) ||
  2765.      !(raw_cmd->flags & FD_RAW_STOP_IF_SUCCESS))) {
  2766. raw_cmd = raw_cmd->next;
  2767. return;
  2768. }
  2769. }
  2770. generic_done(flag);
  2771. }
  2772. static struct cont_t raw_cmd_cont = {
  2773. .interrupt = success_and_wakeup,
  2774. .redo = floppy_start,
  2775. .error = generic_failure,
  2776. .done = raw_cmd_done
  2777. };
  2778. static inline int raw_cmd_copyout(int cmd, char __user *param,
  2779.   struct floppy_raw_cmd *ptr)
  2780. {
  2781. int ret;
  2782. while (ptr) {
  2783. COPYOUT(*ptr);
  2784. param += sizeof(struct floppy_raw_cmd);
  2785. if ((ptr->flags & FD_RAW_READ) && ptr->buffer_length) {
  2786. if (ptr->length >= 0
  2787.     && ptr->length <= ptr->buffer_length)
  2788. ECALL(fd_copyout
  2789.       (ptr->data, ptr->kernel_data,
  2790.        ptr->buffer_length - ptr->length));
  2791. }
  2792. ptr = ptr->next;
  2793. }
  2794. return 0;
  2795. }
  2796. static void raw_cmd_free(struct floppy_raw_cmd **ptr)
  2797. {
  2798. struct floppy_raw_cmd *next, *this;
  2799. this = *ptr;
  2800. *ptr = NULL;
  2801. while (this) {
  2802. if (this->buffer_length) {
  2803. fd_dma_mem_free((unsigned long)this->kernel_data,
  2804. this->buffer_length);
  2805. this->buffer_length = 0;
  2806. }
  2807. next = this->next;
  2808. kfree(this);
  2809. this = next;
  2810. }
  2811. }
  2812. static inline int raw_cmd_copyin(int cmd, char __user *param,
  2813.  struct floppy_raw_cmd **rcmd)
  2814. {
  2815. struct floppy_raw_cmd *ptr;
  2816. int ret;
  2817. int i;
  2818. *rcmd = NULL;
  2819. while (1) {
  2820. ptr = (struct floppy_raw_cmd *)
  2821.     kmalloc(sizeof(struct floppy_raw_cmd), GFP_USER);
  2822. if (!ptr)
  2823. return -ENOMEM;
  2824. *rcmd = ptr;
  2825. COPYIN(*ptr);
  2826. ptr->next = NULL;
  2827. ptr->buffer_length = 0;
  2828. param += sizeof(struct floppy_raw_cmd);
  2829. if (ptr->cmd_count > 33)
  2830. /* the command may now also take up the space
  2831.  * initially intended for the reply & the
  2832.  * reply count. Needed for long 82078 commands
  2833.  * such as RESTORE, which takes ... 17 command
  2834.  * bytes. Murphy's law #137: When you reserve
  2835.  * 16 bytes for a structure, you'll one day
  2836.  * discover that you really need 17...
  2837.  */
  2838. return -EINVAL;
  2839. for (i = 0; i < 16; i++)
  2840. ptr->reply[i] = 0;
  2841. ptr->resultcode = 0;
  2842. ptr->kernel_data = NULL;
  2843. if (ptr->flags & (FD_RAW_READ | FD_RAW_WRITE)) {
  2844. if (ptr->length <= 0)
  2845. return -EINVAL;
  2846. ptr->kernel_data =
  2847.     (char *)fd_dma_mem_alloc(ptr->length);
  2848. fallback_on_nodma_alloc(&ptr->kernel_data, ptr->length);
  2849. if (!ptr->kernel_data)
  2850. return -ENOMEM;
  2851. ptr->buffer_length = ptr->length;
  2852. }
  2853. if (ptr->flags & FD_RAW_WRITE)
  2854. ECALL(fd_copyin(ptr->data, ptr->kernel_data,
  2855. ptr->length));
  2856. rcmd = &(ptr->next);
  2857. if (!(ptr->flags & FD_RAW_MORE))
  2858. return 0;
  2859. ptr->rate &= 0x43;
  2860. }
  2861. }
  2862. static int raw_cmd_ioctl(int cmd, void __user *param)
  2863. {
  2864. int drive, ret, ret2;
  2865. struct floppy_raw_cmd *my_raw_cmd;
  2866. if (FDCS->rawcmd <= 1)
  2867. FDCS->rawcmd = 1;
  2868. for (drive = 0; drive < N_DRIVE; drive++) {
  2869. if (FDC(drive) != fdc)
  2870. continue;
  2871. if (drive == current_drive) {
  2872. if (UDRS->fd_ref > 1) {
  2873. FDCS->rawcmd = 2;
  2874. break;
  2875. }
  2876. } else if (UDRS->fd_ref) {
  2877. FDCS->rawcmd = 2;
  2878. break;
  2879. }
  2880. }
  2881. if (FDCS->reset)
  2882. return -EIO;
  2883. ret = raw_cmd_copyin(cmd, param, &my_raw_cmd);
  2884. if (ret) {
  2885. raw_cmd_free(&my_raw_cmd);
  2886. return ret;
  2887. }
  2888. raw_cmd = my_raw_cmd;
  2889. cont = &raw_cmd_cont;
  2890. ret = wait_til_done(floppy_start, 1);
  2891. #ifdef DCL_DEBUG
  2892. if (DP->flags & FD_DEBUG) {
  2893. DPRINT("calling disk change from raw_cmd ioctln");
  2894. }
  2895. #endif
  2896. if (ret != -EINTR && FDCS->reset)
  2897. ret = -EIO;
  2898. DRS->track = NO_TRACK;
  2899. ret2 = raw_cmd_copyout(cmd, param, my_raw_cmd);
  2900. if (!ret)
  2901. ret = ret2;
  2902. raw_cmd_free(&my_raw_cmd);
  2903. return ret;
  2904. }
  2905. static int invalidate_drive(struct block_device *bdev)
  2906. {
  2907. /* invalidate the buffer track to force a reread */
  2908. set_bit((long)bdev->bd_disk->private_data, &fake_change);
  2909. process_fd_request();
  2910. check_disk_change(bdev);
  2911. return 0;
  2912. }
  2913. static inline int set_geometry(unsigned int cmd, struct floppy_struct *g,
  2914.        int drive, int type, struct block_device *bdev)
  2915. {
  2916. int cnt;
  2917. /* sanity checking for parameters. */
  2918. if (g->sect <= 0 ||
  2919.     g->head <= 0 ||
  2920.     g->track <= 0 || g->track > UDP->tracks >> STRETCH(g) ||
  2921.     /* check if reserved bits are set */
  2922.     (g->stretch & ~(FD_STRETCH | FD_SWAPSIDES | FD_ZEROBASED)) != 0)
  2923. return -EINVAL;
  2924. if (type) {
  2925. if (!capable(CAP_SYS_ADMIN))
  2926. return -EPERM;
  2927. down(&open_lock);
  2928. LOCK_FDC(drive, 1);
  2929. floppy_type[type] = *g;
  2930. floppy_type[type].name = "user format";
  2931. for (cnt = type << 2; cnt < (type << 2) + 4; cnt++)
  2932. floppy_sizes[cnt] = floppy_sizes[cnt + 0x80] =
  2933.     floppy_type[type].size + 1;
  2934. process_fd_request();
  2935. for (cnt = 0; cnt < N_DRIVE; cnt++) {
  2936. struct block_device *bdev = opened_bdev[cnt];
  2937. if (!bdev || ITYPE(drive_state[cnt].fd_device) != type)
  2938. continue;
  2939. __invalidate_device(bdev);
  2940. }
  2941. up(&open_lock);
  2942. } else {
  2943. int oldStretch;
  2944. LOCK_FDC(drive, 1);
  2945. if (cmd != FDDEFPRM)
  2946. /* notice a disk change immediately, else
  2947.  * we lose our settings immediately*/
  2948. CALL(poll_drive(1, FD_RAW_NEED_DISK));
  2949. oldStretch = g->stretch;
  2950. user_params[drive] = *g;
  2951. if (buffer_drive == drive)
  2952. SUPBOUND(buffer_max, user_params[drive].sect);
  2953. current_type[drive] = &user_params[drive];
  2954. floppy_sizes[drive] = user_params[drive].size;
  2955. if (cmd == FDDEFPRM)
  2956. DRS->keep_data = -1;
  2957. else
  2958. DRS->keep_data = 1;
  2959. /* invalidation. Invalidate only when needed, i.e.
  2960.  * when there are already sectors in the buffer cache
  2961.  * whose number will change. This is useful, because
  2962.  * mtools often changes the geometry of the disk after
  2963.  * looking at the boot block */
  2964. if (DRS->maxblock > user_params[drive].sect ||
  2965.     DRS->maxtrack ||
  2966.     ((user_params[drive].sect ^ oldStretch) &
  2967.      (FD_SWAPSIDES | FD_ZEROBASED)))
  2968. invalidate_drive(bdev);
  2969. else
  2970. process_fd_request();
  2971. }
  2972. return 0;
  2973. }
  2974. /* handle obsolete ioctl's */
  2975. static int ioctl_table[] = {
  2976. FDCLRPRM,
  2977. FDSETPRM,
  2978. FDDEFPRM,
  2979. FDGETPRM,
  2980. FDMSGON,
  2981. FDMSGOFF,
  2982. FDFMTBEG,
  2983. FDFMTTRK,
  2984. FDFMTEND,
  2985. FDSETEMSGTRESH,
  2986. FDFLUSH,
  2987. FDSETMAXERRS,
  2988. FDGETMAXERRS,
  2989. FDGETDRVTYP,
  2990. FDSETDRVPRM,
  2991. FDGETDRVPRM,
  2992. FDGETDRVSTAT,
  2993. FDPOLLDRVSTAT,
  2994. FDRESET,
  2995. FDGETFDCSTAT,
  2996. FDWERRORCLR,
  2997. FDWERRORGET,
  2998. FDRAWCMD,
  2999. FDEJECT,
  3000. FDTWADDLE
  3001. };
  3002. static inline int normalize_ioctl(int *cmd, int *size)
  3003. {
  3004. int i;
  3005. for (i = 0; i < ARRAY_SIZE(ioctl_table); i++) {
  3006. if ((*cmd & 0xffff) == (ioctl_table[i] & 0xffff)) {
  3007. *size = _IOC_SIZE(*cmd);
  3008. *cmd = ioctl_table[i];
  3009. if (*size > _IOC_SIZE(*cmd)) {
  3010. printk("ioctl not yet supportedn");
  3011. return -EFAULT;
  3012. }
  3013. return 0;
  3014. }
  3015. }
  3016. return -EINVAL;
  3017. }
  3018. static int get_floppy_geometry(int drive, int type, struct floppy_struct **g)
  3019. {
  3020. if (type)
  3021. *g = &floppy_type[type];
  3022. else {
  3023. LOCK_FDC(drive, 0);
  3024. CALL(poll_drive(0, 0));
  3025. process_fd_request();
  3026. *g = current_type[drive];
  3027. }
  3028. if (!*g)
  3029. return -ENODEV;
  3030. return 0;
  3031. }
  3032. static int fd_ioctl(struct inode *inode, struct file *filp, unsigned int cmd,
  3033.     unsigned long param)
  3034. {
  3035. #define FD_IOCTL_ALLOWED ((filp) && (filp)->private_data)
  3036. #define OUT(c,x) case c: outparam = (const char *) (x); break
  3037. #define IN(c,x,tag) case c: *(x) = inparam. tag ; return 0
  3038. int drive = (long)inode->i_bdev->bd_disk->private_data;
  3039. int i, type = ITYPE(UDRS->fd_device);
  3040. int ret;
  3041. int size;
  3042. union inparam {
  3043. struct floppy_struct g; /* geometry */
  3044. struct format_descr f;
  3045. struct floppy_max_errors max_errors;
  3046. struct floppy_drive_params dp;
  3047. } inparam; /* parameters coming from user space */
  3048. const char *outparam; /* parameters passed back to user space */
  3049. /* convert compatibility eject ioctls into floppy eject ioctl.
  3050.  * We do this in order to provide a means to eject floppy disks before
  3051.  * installing the new fdutils package */
  3052. if (cmd == CDROMEJECT || /* CD-ROM eject */
  3053.     cmd == 0x6470 /* SunOS floppy eject */ ) {
  3054. DPRINT("obsolete eject ioctln");
  3055. DPRINT("please use floppycontrol --ejectn");
  3056. cmd = FDEJECT;
  3057. }
  3058. /* generic block device ioctls */
  3059. switch (cmd) {
  3060. /* the following have been inspired by the corresponding
  3061.  * code for other block devices. */
  3062. struct floppy_struct *g;
  3063. case HDIO_GETGEO:
  3064. {
  3065. struct hd_geometry loc;
  3066. ECALL(get_floppy_geometry(drive, type, &g));
  3067. loc.heads = g->head;
  3068. loc.sectors = g->sect;
  3069. loc.cylinders = g->track;
  3070. loc.start = 0;
  3071. return _COPYOUT(loc);
  3072. }
  3073. }
  3074. /* convert the old style command into a new style command */
  3075. if ((cmd & 0xff00) == 0x0200) {
  3076. ECALL(normalize_ioctl(&cmd, &size));
  3077. } else
  3078. return -EINVAL;
  3079. /* permission checks */
  3080. if (((cmd & 0x40) && !FD_IOCTL_ALLOWED) ||
  3081.     ((cmd & 0x80) && !capable(CAP_SYS_ADMIN)))
  3082. return -EPERM;
  3083. /* copyin */
  3084. CLEARSTRUCT(&inparam);
  3085. if (_IOC_DIR(cmd) & _IOC_WRITE)
  3086.     ECALL(fd_copyin((void __user *)param, &inparam, size))
  3087. switch (cmd) {
  3088. case FDEJECT:
  3089. if (UDRS->fd_ref != 1)
  3090. /* somebody else has this drive open */
  3091. return -EBUSY;
  3092. LOCK_FDC(drive, 1);
  3093. /* do the actual eject. Fails on
  3094.  * non-Sparc architectures */
  3095. ret = fd_eject(UNIT(drive));
  3096. USETF(FD_DISK_CHANGED);
  3097. USETF(FD_VERIFY);
  3098. process_fd_request();
  3099. return ret;
  3100. case FDCLRPRM:
  3101. LOCK_FDC(drive, 1);
  3102. current_type[drive] = NULL;
  3103. floppy_sizes[drive] = MAX_DISK_SIZE << 1;
  3104. UDRS->keep_data = 0;
  3105. return invalidate_drive(inode->i_bdev);
  3106. case FDSETPRM:
  3107. case FDDEFPRM:
  3108. return set_geometry(cmd, &inparam.g,
  3109.     drive, type, inode->i_bdev);
  3110. case FDGETPRM:
  3111. ECALL(get_floppy_geometry(drive, type,
  3112.   (struct floppy_struct **)
  3113.   &outparam));
  3114. break;
  3115. case FDMSGON:
  3116. UDP->flags |= FTD_MSG;
  3117. return 0;
  3118. case FDMSGOFF:
  3119. UDP->flags &= ~FTD_MSG;
  3120. return 0;
  3121. case FDFMTBEG:
  3122. LOCK_FDC(drive, 1);
  3123. CALL(poll_drive(1, FD_RAW_NEED_DISK));
  3124. ret = UDRS->flags;
  3125. process_fd_request();
  3126. if (ret & FD_VERIFY)
  3127. return -ENODEV;
  3128. if (!(ret & FD_DISK_WRITABLE))
  3129. return -EROFS;
  3130. return 0;
  3131. case FDFMTTRK:
  3132. if (UDRS->fd_ref != 1)
  3133. return -EBUSY;
  3134. return do_format(drive, &inparam.f);
  3135. case FDFMTEND:
  3136. case FDFLUSH:
  3137. LOCK_FDC(drive, 1);
  3138. return invalidate_drive(inode->i_bdev);
  3139. case FDSETEMSGTRESH:
  3140. UDP->max_errors.reporting =
  3141.     (unsigned short)(param & 0x0f);
  3142. return 0;
  3143. OUT(FDGETMAXERRS, &UDP->max_errors);
  3144. IN(FDSETMAXERRS, &UDP->max_errors, max_errors);
  3145. case FDGETDRVTYP:
  3146. outparam = drive_name(type, drive);
  3147. SUPBOUND(size, strlen(outparam) + 1);
  3148. break;
  3149. IN(FDSETDRVPRM, UDP, dp);
  3150. OUT(FDGETDRVPRM, UDP);
  3151. case FDPOLLDRVSTAT:
  3152. LOCK_FDC(drive, 1);
  3153. CALL(poll_drive(1, FD_RAW_NEED_DISK));
  3154. process_fd_request();
  3155. /* fall through */
  3156. OUT(FDGETDRVSTAT, UDRS);
  3157. case FDRESET:
  3158. return user_reset_fdc(drive, (int)param, 1);
  3159. OUT(FDGETFDCSTAT, UFDCS);
  3160. case FDWERRORCLR:
  3161. CLEARSTRUCT(UDRWE);
  3162. return 0;
  3163. OUT(FDWERRORGET, UDRWE);
  3164. case FDRAWCMD:
  3165. if (type)
  3166. return -EINVAL;
  3167. LOCK_FDC(drive, 1);
  3168. set_floppy(drive);
  3169. CALL(i = raw_cmd_ioctl(cmd, (void __user *)param));
  3170. process_fd_request();
  3171. return i;
  3172. case FDTWADDLE:
  3173. LOCK_FDC(drive, 1);
  3174. twaddle();
  3175. process_fd_request();
  3176. return 0;
  3177. default:
  3178. return -EINVAL;
  3179. }
  3180. if (_IOC_DIR(cmd) & _IOC_READ)
  3181. return fd_copyout((void __user *)param, outparam, size);
  3182. else
  3183. return 0;
  3184. #undef OUT
  3185. #undef IN
  3186. }
  3187. static void __init config_types(void)
  3188. {
  3189. int first = 1;
  3190. int drive;
  3191. /* read drive info out of physical CMOS */
  3192. drive = 0;
  3193. if (!UDP->cmos)
  3194. UDP->cmos = FLOPPY0_TYPE;
  3195. drive = 1;
  3196. if (!UDP->cmos && FLOPPY1_TYPE)
  3197. UDP->cmos = FLOPPY1_TYPE;
  3198. /* XXX */
  3199. /* additional physical CMOS drive detection should go here */
  3200. for (drive = 0; drive < N_DRIVE; drive++) {
  3201. unsigned int type = UDP->cmos;
  3202. struct floppy_drive_params *params;
  3203. const char *name = NULL;
  3204. static char temparea[32];
  3205. if (type < NUMBER(default_drive_params)) {
  3206. params = &default_drive_params[type].params;
  3207. if (type) {
  3208. name = default_drive_params[type].name;
  3209. allowed_drive_mask |= 1 << drive;
  3210. } else
  3211. allowed_drive_mask &= ~(1 << drive);
  3212. } else {
  3213. params = &default_drive_params[0].params;
  3214. sprintf(temparea, "unknown type %d (usb?)", type);
  3215. name = temparea;
  3216. }
  3217. if (name) {
  3218. const char *prepend = ",";
  3219. if (first) {
  3220. prepend = KERN_INFO "Floppy drive(s):";
  3221. first = 0;
  3222. }
  3223. printk("%s fd%d is %s", prepend, drive, name);
  3224. register_devfs_entries(drive);
  3225. }
  3226. *UDP = *params;
  3227. }
  3228. if (!first)
  3229. printk("n");
  3230. }
  3231. static int floppy_release(struct inode *inode, struct file *filp)
  3232. {
  3233. int drive = (long)inode->i_bdev->bd_disk->private_data;
  3234. down(&open_lock);
  3235. if (UDRS->fd_ref < 0)
  3236. UDRS->fd_ref = 0;
  3237. else if (!UDRS->fd_ref--) {
  3238. DPRINT("floppy_release with fd_ref == 0");
  3239. UDRS->fd_ref = 0;
  3240. }
  3241. if (!UDRS->fd_ref)
  3242. opened_bdev[drive] = NULL;
  3243. floppy_release_irq_and_dma();
  3244. up(&open_lock);
  3245. return 0;
  3246. }
  3247. /*
  3248.  * floppy_open check for aliasing (/dev/fd0 can be the same as
  3249.  * /dev/PS0 etc), and disallows simultaneous access to the same
  3250.  * drive with different device numbers.
  3251.  */
  3252. static int floppy_open(struct inode *inode, struct file *filp)
  3253. {
  3254. int drive = (long)inode->i_bdev->bd_disk->private_data;
  3255. int old_dev;
  3256. int try;
  3257. int res = -EBUSY;
  3258. char *tmp;
  3259. filp->private_data = (void *)0;
  3260. down(&open_lock);
  3261. old_dev = UDRS->fd_device;
  3262. if (opened_bdev[drive] && opened_bdev[drive] != inode->i_bdev)
  3263. goto out2;
  3264. if (!UDRS->fd_ref && (UDP->flags & FD_BROKEN_DCL)) {
  3265. USETF(FD_DISK_CHANGED);
  3266. USETF(FD_VERIFY);
  3267. }
  3268. if (UDRS->fd_ref == -1 || (UDRS->fd_ref && (filp->f_flags & O_EXCL)))
  3269. goto out2;
  3270. if (floppy_grab_irq_and_dma())
  3271. goto out2;
  3272. if (filp->f_flags & O_EXCL)
  3273. UDRS->fd_ref = -1;
  3274. else
  3275. UDRS->fd_ref++;
  3276. opened_bdev[drive] = inode->i_bdev;
  3277. res = -ENXIO;
  3278. if (!floppy_track_buffer) {
  3279. /* if opening an ED drive, reserve a big buffer,
  3280.  * else reserve a small one */
  3281. if ((UDP->cmos == 6) || (UDP->cmos == 5))
  3282. try = 64; /* Only 48 actually useful */
  3283. else
  3284. try = 32; /* Only 24 actually useful */
  3285. tmp = (char *)fd_dma_mem_alloc(1024 * try);
  3286. if (!tmp && !floppy_track_buffer) {
  3287. try >>= 1; /* buffer only one side */
  3288. INFBOUND(try, 16);
  3289. tmp = (char *)fd_dma_mem_alloc(1024 * try);
  3290. }
  3291. if (!tmp && !floppy_track_buffer) {
  3292. fallback_on_nodma_alloc(&tmp, 2048 * try);
  3293. }
  3294. if (!tmp && !floppy_track_buffer) {
  3295. DPRINT("Unable to allocate DMA memoryn");
  3296. goto out;
  3297. }
  3298. if (floppy_track_buffer) {
  3299. if (tmp)
  3300. fd_dma_mem_free((unsigned long)tmp, try * 1024);
  3301. } else {
  3302. buffer_min = buffer_max = -1;
  3303. floppy_track_buffer = tmp;
  3304. max_buffer_sectors = try;
  3305. }
  3306. }
  3307. UDRS->fd_device = iminor(inode);
  3308. set_capacity(disks[drive], floppy_sizes[iminor(inode)]);
  3309. if (old_dev != -1 && old_dev != iminor(inode)) {
  3310. if (buffer_drive == drive)
  3311. buffer_track = -1;
  3312. }
  3313. /* Allow ioctls if we have write-permissions even if read-only open.
  3314.  * Needed so that programs such as fdrawcmd still can work on write
  3315.  * protected disks */
  3316. if (filp->f_mode & 2
  3317.     || permission(filp->f_dentry->d_inode, 2, NULL) == 0)
  3318. filp->private_data = (void *)8;
  3319. if (UFDCS->rawcmd == 1)
  3320. UFDCS->rawcmd = 2;
  3321. if (!(filp->f_flags & O_NDELAY)) {
  3322. if (filp->f_mode & 3) {
  3323. UDRS->last_checked = 0;
  3324. check_disk_change(inode->i_bdev);
  3325. if (UTESTF(FD_DISK_CHANGED))
  3326. goto out;
  3327. }
  3328. res = -EROFS;
  3329. if ((filp->f_mode & 2) && !(UTESTF(FD_DISK_WRITABLE)))
  3330. goto out;
  3331. }
  3332. up(&open_lock);
  3333. return 0;
  3334. out:
  3335. if (UDRS->fd_ref < 0)
  3336. UDRS->fd_ref = 0;
  3337. else
  3338. UDRS->fd_ref--;
  3339. if (!UDRS->fd_ref)
  3340. opened_bdev[drive] = NULL;
  3341. floppy_release_irq_and_dma();
  3342. out2:
  3343. up(&open_lock);
  3344. return res;
  3345. }
  3346. /*
  3347.  * Check if the disk has been changed or if a change has been faked.
  3348.  */
  3349. static int check_floppy_change(struct gendisk *disk)
  3350. {
  3351. int drive = (long)disk->private_data;
  3352. if (UTESTF(FD_DISK_CHANGED) || UTESTF(FD_VERIFY))
  3353. return 1;
  3354. if (UDP->checkfreq < (int)(jiffies - UDRS->last_checked)) {
  3355. if (floppy_grab_irq_and_dma()) {
  3356. return 1;
  3357. }
  3358. lock_fdc(drive, 0);
  3359. poll_drive(0, 0);
  3360. process_fd_request();
  3361. floppy_release_irq_and_dma();
  3362. }
  3363. if (UTESTF(FD_DISK_CHANGED) ||
  3364.     UTESTF(FD_VERIFY) ||
  3365.     test_bit(drive, &fake_change) ||
  3366.     (!ITYPE(UDRS->fd_device) && !current_type[drive]))
  3367. return 1;
  3368. return 0;
  3369. }
  3370. /*
  3371.  * This implements "read block 0" for floppy_revalidate().
  3372.  * Needed for format autodetection, checking whether there is
  3373.  * a disk in the drive, and whether that disk is writable.
  3374.  */
  3375. static int floppy_rb0_complete(struct bio *bio, unsigned int bytes_done,
  3376.        int err)
  3377. {
  3378. if (bio->bi_size)
  3379. return 1;
  3380. complete((struct completion *)bio->bi_private);
  3381. return 0;
  3382. }
  3383. static int __floppy_read_block_0(struct block_device *bdev)
  3384. {
  3385. struct bio bio;
  3386. struct bio_vec bio_vec;
  3387. struct completion complete;
  3388. struct page *page;
  3389. size_t size;
  3390. page = alloc_page(GFP_NOIO);
  3391. if (!page) {
  3392. process_fd_request();
  3393. return -ENOMEM;
  3394. }
  3395. size = bdev->bd_block_size;
  3396. if (!size)
  3397. size = 1024;
  3398. bio_init(&bio);
  3399. bio.bi_io_vec = &bio_vec;
  3400. bio_vec.bv_page = page;
  3401. bio_vec.bv_len = size;
  3402. bio_vec.bv_offset = 0;
  3403. bio.bi_vcnt = 1;
  3404. bio.bi_idx = 0;
  3405. bio.bi_size = size;
  3406. bio.bi_bdev = bdev;
  3407. bio.bi_sector = 0;
  3408. init_completion(&complete);
  3409. bio.bi_private = &complete;
  3410. bio.bi_end_io = floppy_rb0_complete;
  3411. submit_bio(READ, &bio);
  3412. generic_unplug_device(bdev_get_queue(bdev));
  3413. process_fd_request();
  3414. wait_for_completion(&complete);
  3415. __free_page(page);
  3416. return 0;
  3417. }
  3418. /* revalidate the floppy disk, i.e. trigger format autodetection by reading
  3419.  * the bootblock (block 0). "Autodetection" is also needed to check whether
  3420.  * there is a disk in the drive at all... Thus we also do it for fixed
  3421.  * geometry formats */
  3422. static int floppy_revalidate(struct gendisk *disk)
  3423. {
  3424. int drive = (long)disk->private_data;
  3425. #define NO_GEOM (!current_type[drive] && !ITYPE(UDRS->fd_device))
  3426. int cf;
  3427. int res = 0;
  3428. if (UTESTF(FD_DISK_CHANGED) ||
  3429.     UTESTF(FD_VERIFY) || test_bit(drive, &fake_change) || NO_GEOM) {
  3430. if (usage_count == 0) {
  3431. printk("VFS: revalidate called on non-open device.n");
  3432. return -EFAULT;
  3433. }
  3434. lock_fdc(drive, 0);
  3435. cf = UTESTF(FD_DISK_CHANGED) || UTESTF(FD_VERIFY);
  3436. if (!(cf || test_bit(drive, &fake_change) || NO_GEOM)) {
  3437. process_fd_request(); /*already done by another thread */
  3438. return 0;
  3439. }
  3440. UDRS->maxblock = 0;
  3441. UDRS->maxtrack = 0;
  3442. if (buffer_drive == drive)
  3443. buffer_track = -1;
  3444. clear_bit(drive, &fake_change);
  3445. UCLEARF(FD_DISK_CHANGED);
  3446. if (cf)
  3447. UDRS->generation++;
  3448. if (NO_GEOM) {
  3449. /* auto-sensing */
  3450. res = __floppy_read_block_0(opened_bdev[drive]);
  3451. } else {
  3452. if (cf)
  3453. poll_drive(0, FD_RAW_NEED_DISK);
  3454. process_fd_request();
  3455. }
  3456. }
  3457. set_capacity(disk, floppy_sizes[UDRS->fd_device]);
  3458. return res;
  3459. }
  3460. static struct block_device_operations floppy_fops = {
  3461. .owner = THIS_MODULE,
  3462. .open = floppy_open,
  3463. .release = floppy_release,
  3464. .ioctl = fd_ioctl,
  3465. .media_changed = check_floppy_change,
  3466. .revalidate_disk = floppy_revalidate,
  3467. };
  3468. static char *table[] = {
  3469. "", "d360", "h1200", "u360", "u720", "h360", "h720",
  3470. "u1440", "u2880", "CompaQ", "h1440", "u1680", "h410",
  3471. "u820", "h1476", "u1722", "h420", "u830", "h1494", "u1743",
  3472. "h880", "u1040", "u1120", "h1600", "u1760", "u1920",
  3473. "u3200", "u3520", "u3840", "u1840", "u800", "u1600",
  3474. NULL
  3475. };
  3476. static int t360[] = { 1, 0 },
  3477. t1200[] = { 2, 5, 6, 10, 12, 14, 16, 18, 20, 23, 0 },
  3478. t3in[] = { 8, 9, 26, 27, 28, 7, 11, 15, 19, 24, 25, 29, 31, 3, 4, 13,
  3479. 17, 21, 22, 30, 0 };
  3480. static int *table_sup[] =
  3481.     { NULL, t360, t1200, t3in + 5 + 8, t3in + 5, t3in, t3in };
  3482. static void __init register_devfs_entries(int drive)
  3483. {
  3484. int base_minor = (drive < 4) ? drive : (124 + drive);
  3485. if (UDP->cmos < NUMBER(default_drive_params)) {
  3486. int i = 0;
  3487. do {
  3488. int minor = base_minor + (table_sup[UDP->cmos][i] << 2);
  3489. devfs_mk_bdev(MKDEV(FLOPPY_MAJOR, minor),
  3490.       S_IFBLK | S_IRUSR | S_IWUSR | S_IRGRP |
  3491.       S_IWGRP, "floppy/%d%s", drive,
  3492.       table[table_sup[UDP->cmos][i]]);
  3493. } while (table_sup[UDP->cmos][i++]);
  3494. }
  3495. }
  3496. /*
  3497.  * Floppy Driver initialization
  3498.  * =============================
  3499.  */
  3500. /* Determine the floppy disk controller type */
  3501. /* This routine was written by David C. Niemi */
  3502. static char __init get_fdc_version(void)
  3503. {
  3504. int r;
  3505. output_byte(FD_DUMPREGS); /* 82072 and better know DUMPREGS */
  3506. if (FDCS->reset)
  3507. return FDC_NONE;
  3508. if ((r = result()) <= 0x00)
  3509. return FDC_NONE; /* No FDC present ??? */
  3510. if ((r == 1) && (reply_buffer[0] == 0x80)) {
  3511. printk(KERN_INFO "FDC %d is an 8272An", fdc);
  3512. return FDC_8272A; /* 8272a/765 don't know DUMPREGS */
  3513. }
  3514. if (r != 10) {
  3515. printk
  3516.     ("FDC %d init: DUMPREGS: unexpected return of %d bytes.n",
  3517.      fdc, r);
  3518. return FDC_UNKNOWN;
  3519. }
  3520. if (!fdc_configure()) {
  3521. printk(KERN_INFO "FDC %d is an 82072n", fdc);
  3522. return FDC_82072; /* 82072 doesn't know CONFIGURE */
  3523. }
  3524. output_byte(FD_PERPENDICULAR);
  3525. if (need_more_output() == MORE_OUTPUT) {
  3526. output_byte(0);
  3527. } else {
  3528. printk(KERN_INFO "FDC %d is an 82072An", fdc);
  3529. return FDC_82072A; /* 82072A as found on Sparcs. */
  3530. }
  3531. output_byte(FD_UNLOCK);
  3532. r = result();
  3533. if ((r == 1) && (reply_buffer[0] == 0x80)) {
  3534. printk(KERN_INFO "FDC %d is a pre-1991 82077n", fdc);
  3535. return FDC_82077_ORIG; /* Pre-1991 82077, doesn't know 
  3536.  * LOCK/UNLOCK */
  3537. }
  3538. if ((r != 1) || (reply_buffer[0] != 0x00)) {
  3539. printk("FDC %d init: UNLOCK: unexpected return of %d bytes.n",
  3540.        fdc, r);
  3541. return FDC_UNKNOWN;
  3542. }
  3543. output_byte(FD_PARTID);
  3544. r = result();
  3545. if (r != 1) {
  3546. printk("FDC %d init: PARTID: unexpected return of %d bytes.n",
  3547.        fdc, r);
  3548. return FDC_UNKNOWN;
  3549. }
  3550. if (reply_buffer[0] == 0x80) {
  3551. printk(KERN_INFO "FDC %d is a post-1991 82077n", fdc);
  3552. return FDC_82077; /* Revised 82077AA passes all the tests */
  3553. }
  3554. switch (reply_buffer[0] >> 5) {
  3555. case 0x0:
  3556. /* Either a 82078-1 or a 82078SL running at 5Volt */
  3557. printk(KERN_INFO "FDC %d is an 82078.n", fdc);
  3558. return FDC_82078;
  3559. case 0x1:
  3560. printk(KERN_INFO "FDC %d is a 44pin 82078n", fdc);
  3561. return FDC_82078;
  3562. case 0x2:
  3563. printk(KERN_INFO "FDC %d is a S82078Bn", fdc);
  3564. return FDC_S82078B;
  3565. case 0x3:
  3566. printk(KERN_INFO "FDC %d is a National Semiconductor PC87306n",
  3567.        fdc);
  3568. return FDC_87306;
  3569. default:
  3570. printk(KERN_INFO
  3571.        "FDC %d init: 82078 variant with unknown PARTID=%d.n",
  3572.        fdc, reply_buffer[0] >> 5);
  3573. return FDC_82078_UNKN;
  3574. }
  3575. } /* get_fdc_version */
  3576. /* lilo configuration */
  3577. static void __init floppy_set_flags(int *ints, int param, int param2)
  3578. {
  3579. int i;
  3580. for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
  3581. if (param)
  3582. default_drive_params[i].params.flags |= param2;
  3583. else
  3584. default_drive_params[i].params.flags &= ~param2;
  3585. }
  3586. DPRINT("%s flag 0x%xn", param2 ? "Setting" : "Clearing", param);
  3587. }
  3588. static void __init daring(int *ints, int param, int param2)
  3589. {
  3590. int i;
  3591. for (i = 0; i < ARRAY_SIZE(default_drive_params); i++) {
  3592. if (param) {
  3593. default_drive_params[i].params.select_delay = 0;
  3594. default_drive_params[i].params.flags |=
  3595.     FD_SILENT_DCL_CLEAR;
  3596. } else {
  3597. default_drive_params[i].params.select_delay =
  3598.     2 * HZ / 100;
  3599. default_drive_params[i].params.flags &=
  3600.     ~FD_SILENT_DCL_CLEAR;
  3601. }
  3602. }
  3603. DPRINT("Assuming %s floppy hardwaren", param ? "standard" : "broken");
  3604. }
  3605. static void __init set_cmos(int *ints, int dummy, int dummy2)
  3606. {
  3607. int current_drive = 0;
  3608. if (ints[0] != 2) {
  3609. DPRINT("wrong number of parameters for CMOSn");
  3610. return;
  3611. }
  3612. current_drive = ints[1];
  3613. if (current_drive < 0 || current_drive >= 8) {
  3614. DPRINT("bad drive for set_cmosn");
  3615. return;
  3616. }
  3617. #if N_FDC > 1
  3618. if (current_drive >= 4 && !FDC2)
  3619. FDC2 = 0x370;
  3620. #endif
  3621. DP->cmos = ints[2];
  3622. DPRINT("setting CMOS code to %dn", ints[2]);
  3623. }
  3624. static struct param_table {
  3625. const char *name;
  3626. void (*fn) (int *ints, int param, int param2);
  3627. int *var;
  3628. int def_param;
  3629. int param2;
  3630. } config_params[] __initdata = {
  3631. {"allowed_drive_mask", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
  3632. {"all_drives", NULL, &allowed_drive_mask, 0xff, 0}, /* obsolete */
  3633. {"asus_pci", NULL, &allowed_drive_mask, 0x33, 0},
  3634. {"irq", NULL, &FLOPPY_IRQ, 6, 0},
  3635. {"dma", NULL, &FLOPPY_DMA, 2, 0},
  3636. {"daring", daring, NULL, 1, 0},
  3637. #if N_FDC > 1
  3638. {"two_fdc", NULL, &FDC2, 0x370, 0},
  3639. {"one_fdc", NULL, &FDC2, 0, 0},
  3640. #endif
  3641. {"thinkpad", floppy_set_flags, NULL, 1, FD_INVERTED_DCL},
  3642. {"broken_dcl", floppy_set_flags, NULL, 1, FD_BROKEN_DCL},
  3643. {"messages", floppy_set_flags, NULL, 1, FTD_MSG},
  3644. {"silent_dcl_clear", floppy_set_flags, NULL, 1, FD_SILENT_DCL_CLEAR},
  3645. {"debug", floppy_set_flags, NULL, 1, FD_DEBUG},
  3646. {"nodma", NULL, &can_use_virtual_dma, 1, 0},
  3647. {"omnibook", NULL, &can_use_virtual_dma, 1, 0},
  3648. {"yesdma", NULL, &can_use_virtual_dma, 0, 0},
  3649. {"fifo_depth", NULL, &fifo_depth, 0xa, 0},
  3650. {"nofifo", NULL, &no_fifo, 0x20, 0},
  3651. {"usefifo", NULL, &no_fifo, 0, 0},
  3652. {"cmos", set_cmos, NULL, 0, 0},
  3653. {"slow", NULL, &slow_floppy, 1, 0},
  3654. {"unexpected_interrupts", NULL, &print_unex, 1, 0},
  3655. {"no_unexpected_interrupts", NULL, &print_unex, 0, 0},
  3656. {"L40SX", NULL, &print_unex, 0, 0}
  3657. EXTRA_FLOPPY_PARAMS
  3658. };
  3659. static int __init floppy_setup(char *str)
  3660. {
  3661. int i;
  3662. int param;
  3663. int ints[11];
  3664. str = get_options(str, ARRAY_SIZE(ints), ints);
  3665. if (str) {
  3666. for (i = 0; i < ARRAY_SIZE(config_params); i++) {
  3667. if (strcmp(str, config_params[i].name) == 0) {
  3668. if (ints[0])
  3669. param = ints[1];
  3670. else
  3671. param = config_params[i].def_param;
  3672. if (config_params[i].fn)
  3673. config_params[i].
  3674.     fn(ints, param,
  3675.        config_params[i].param2);
  3676. if (config_params[i].var) {
  3677. DPRINT("%s=%dn", str, param);
  3678. *config_params[i].var = param;
  3679. }
  3680. return 1;
  3681. }
  3682. }
  3683. }
  3684. if (str) {
  3685. DPRINT("unknown floppy option [%s]n", str);
  3686. DPRINT("allowed options are:");
  3687. for (i = 0; i < ARRAY_SIZE(config_params); i++)
  3688. printk(" %s", config_params[i].name);
  3689. printk("n");
  3690. } else
  3691. DPRINT("botched floppy optionn");
  3692. DPRINT("Read Documentation/floppy.txtn");
  3693. return 0;
  3694. }
  3695. static int have_no_fdc = -ENODEV;
  3696. static ssize_t floppy_cmos_show(struct device *dev,
  3697. struct device_attribute *attr, char *buf)
  3698. {
  3699. struct platform_device *p;
  3700. int drive;
  3701. p = container_of(dev, struct platform_device,dev);
  3702. drive = p->id;
  3703. return sprintf(buf, "%Xn", UDP->cmos);
  3704. }
  3705. DEVICE_ATTR(cmos,S_IRUGO,floppy_cmos_show,NULL);
  3706. static void floppy_device_release(struct device *dev)
  3707. {
  3708. complete(&device_release);
  3709. }
  3710. static struct platform_device floppy_device[N_DRIVE];
  3711. static struct kobject *floppy_find(dev_t dev, int *part, void *data)
  3712. {
  3713. int drive = (*part & 3) | ((*part & 0x80) >> 5);
  3714. if (drive >= N_DRIVE ||
  3715.     !(allowed_drive_mask & (1 << drive)) ||
  3716.     fdc_state[FDC(drive)].version == FDC_NONE)
  3717. return NULL;
  3718. if (((*part >> 2) & 0x1f) >= NUMBER(floppy_type))
  3719. return NULL;
  3720. *part = 0;
  3721. return get_disk(disks[drive]);
  3722. }
  3723. static int __init floppy_init(void)
  3724. {
  3725. int i, unit, drive;
  3726. int err, dr;
  3727. raw_cmd = NULL;
  3728. for (dr = 0; dr < N_DRIVE; dr++) {
  3729. disks[dr] = alloc_disk(1);
  3730. if (!disks[dr]) {
  3731. err = -ENOMEM;
  3732. goto out_put_disk;
  3733. }
  3734. disks[dr]->major = FLOPPY_MAJOR;
  3735. disks[dr]->first_minor = TOMINOR(dr);
  3736. disks[dr]->fops = &floppy_fops;
  3737. sprintf(disks[dr]->disk_name, "fd%d", dr);
  3738. init_timer(&motor_off_timer[dr]);
  3739. motor_off_timer[dr].data = dr;
  3740. motor_off_timer[dr].function = motor_off_callback;
  3741. }
  3742. devfs_mk_dir("floppy");
  3743. err = register_blkdev(FLOPPY_MAJOR, "fd");
  3744. if (err)
  3745. goto out_devfs_remove;
  3746. floppy_queue = blk_init_queue(do_fd_request, &floppy_lock);
  3747. if (!floppy_queue) {
  3748. err = -ENOMEM;
  3749. goto out_unreg_blkdev;
  3750. }
  3751. blk_queue_max_sectors(floppy_queue, 64);
  3752. blk_register_region(MKDEV(FLOPPY_MAJOR, 0), 256, THIS_MODULE,
  3753.     floppy_find, NULL, NULL);
  3754. for (i = 0; i < 256; i++)
  3755. if (ITYPE(i))
  3756. floppy_sizes[i] = floppy_type[ITYPE(i)].size;
  3757. else
  3758. floppy_sizes[i] = MAX_DISK_SIZE << 1;
  3759. reschedule_timeout(MAXTIMEOUT, "floppy init", MAXTIMEOUT);
  3760. config_types();
  3761. for (i = 0; i < N_FDC; i++) {
  3762. fdc = i;
  3763. CLEARSTRUCT(FDCS);
  3764. FDCS->dtr = -1;
  3765. FDCS->dor = 0x4;
  3766. #if defined(__sparc__) || defined(__mc68000__)
  3767. /*sparcs/sun3x don't have a DOR reset which we can fall back on to */
  3768. #ifdef __mc68000__
  3769. if (MACH_IS_SUN3X)
  3770. #endif
  3771. FDCS->version = FDC_82072A;
  3772. #endif
  3773. }
  3774. use_virtual_dma = can_use_virtual_dma & 1;
  3775. #if defined(CONFIG_PPC64)
  3776. if (check_legacy_ioport(FDC1)) {
  3777. del_timer(&fd_timeout);
  3778. err = -ENODEV;
  3779. goto out_unreg_region;
  3780. }
  3781. #endif
  3782. fdc_state[0].address = FDC1;
  3783. if (fdc_state[0].address == -1) {
  3784. del_timer(&fd_timeout);
  3785. err = -ENODEV;
  3786. goto out_unreg_region;
  3787. }
  3788. #if N_FDC > 1
  3789. fdc_state[1].address = FDC2;
  3790. #endif
  3791. fdc = 0; /* reset fdc in case of unexpected interrupt */
  3792. err = floppy_grab_irq_and_dma();
  3793. if (err) {
  3794. del_timer(&fd_timeout);
  3795. err = -EBUSY;
  3796. goto out_unreg_region;
  3797. }
  3798. /* initialise drive state */
  3799. for (drive = 0; drive < N_DRIVE; drive++) {
  3800. CLEARSTRUCT(UDRS);
  3801. CLEARSTRUCT(UDRWE);
  3802. USETF(FD_DISK_NEWCHANGE);
  3803. USETF(FD_DISK_CHANGED);
  3804. USETF(FD_VERIFY);
  3805. UDRS->fd_device = -1;
  3806. floppy_track_buffer = NULL;
  3807. max_buffer_sectors = 0;
  3808. }
  3809. /*
  3810.  * Small 10 msec delay to let through any interrupt that
  3811.  * initialization might have triggered, to not
  3812.  * confuse detection:
  3813.  */
  3814. msleep(10);
  3815. for (i = 0; i < N_FDC; i++) {
  3816. fdc = i;
  3817. FDCS->driver_version = FD_DRIVER_VERSION;
  3818. for (unit = 0; unit < 4; unit++)
  3819. FDCS->track[unit] = 0;
  3820. if (FDCS->address == -1)
  3821. continue;
  3822. FDCS->rawcmd = 2;
  3823. if (user_reset_fdc(-1, FD_RESET_ALWAYS, 0)) {
  3824. /* free ioports reserved by floppy_grab_irq_and_dma() */
  3825. release_region(FDCS->address + 2, 4);
  3826. release_region(FDCS->address + 7, 1);
  3827. FDCS->address = -1;
  3828. FDCS->version = FDC_NONE;
  3829. continue;
  3830. }
  3831. /* Try to determine the floppy controller type */
  3832. FDCS->version = get_fdc_version();
  3833. if (FDCS->version == FDC_NONE) {
  3834. /* free ioports reserved by floppy_grab_irq_and_dma() */
  3835. release_region(FDCS->address + 2, 4);
  3836. release_region(FDCS->address + 7, 1);
  3837. FDCS->address = -1;
  3838. continue;
  3839. }
  3840. if (can_use_virtual_dma == 2 && FDCS->version < FDC_82072A)
  3841. can_use_virtual_dma = 0;
  3842. have_no_fdc = 0;
  3843. /* Not all FDCs seem to be able to handle the version command
  3844.  * properly, so force a reset for the standard FDC clones,
  3845.  * to avoid interrupt garbage.
  3846.  */
  3847. user_reset_fdc(-1, FD_RESET_ALWAYS, 0);
  3848. }
  3849. fdc = 0;
  3850. del_timer(&fd_timeout);
  3851. current_drive = 0;
  3852. floppy_release_irq_and_dma();
  3853. initialising = 0;
  3854. if (have_no_fdc) {
  3855. DPRINT("no floppy controllers foundn");
  3856. err = have_no_fdc;
  3857. goto out_flush_work;
  3858. }
  3859. for (drive = 0; drive < N_DRIVE; drive++) {
  3860. if (!(allowed_drive_mask & (1 << drive)))
  3861. continue;
  3862. if (fdc_state[FDC(drive)].version == FDC_NONE)
  3863. continue;
  3864. floppy_device[drive].name = floppy_device_name;
  3865. floppy_device[drive].id = drive;
  3866. floppy_device[drive].dev.release = floppy_device_release;
  3867. err = platform_device_register(&floppy_device[drive]);
  3868. if (err)
  3869. goto out_flush_work;
  3870. device_create_file(&floppy_device[drive].dev,&dev_attr_cmos);
  3871. /* to be cleaned up... */
  3872. disks[drive]->private_data = (void *)(long)drive;
  3873. disks[drive]->queue = floppy_queue;
  3874. disks[drive]->flags |= GENHD_FL_REMOVABLE;
  3875. disks[drive]->driverfs_dev = &floppy_device[drive].dev;
  3876. add_disk(disks[drive]);
  3877. }
  3878. return 0;
  3879. out_flush_work:
  3880. flush_scheduled_work();
  3881. if (usage_count)
  3882. floppy_release_irq_and_dma();
  3883. out_unreg_region:
  3884. blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
  3885. blk_cleanup_queue(floppy_queue);
  3886. out_unreg_blkdev:
  3887. unregister_blkdev(FLOPPY_MAJOR, "fd");
  3888. out_devfs_remove:
  3889. devfs_remove("floppy");
  3890. out_put_disk:
  3891. while (dr--) {
  3892. del_timer(&motor_off_timer[dr]);
  3893. put_disk(disks[dr]);
  3894. }
  3895. return err;
  3896. }
  3897. static DEFINE_SPINLOCK(floppy_usage_lock);
  3898. static int floppy_grab_irq_and_dma(void)
  3899. {
  3900. unsigned long flags;
  3901. spin_lock_irqsave(&floppy_usage_lock, flags);
  3902. if (usage_count++) {
  3903. spin_unlock_irqrestore(&floppy_usage_lock, flags);
  3904. return 0;
  3905. }
  3906. spin_unlock_irqrestore(&floppy_usage_lock, flags);
  3907. if (fd_request_irq()) {
  3908. DPRINT("Unable to grab IRQ%d for the floppy drivern",
  3909.        FLOPPY_IRQ);
  3910. spin_lock_irqsave(&floppy_usage_lock, flags);
  3911. usage_count--;
  3912. spin_unlock_irqrestore(&floppy_usage_lock, flags);
  3913. return -1;
  3914. }
  3915. if (fd_request_dma()) {
  3916. DPRINT("Unable to grab DMA%d for the floppy drivern",
  3917.        FLOPPY_DMA);
  3918. fd_free_irq();
  3919. spin_lock_irqsave(&floppy_usage_lock, flags);
  3920. usage_count--;
  3921. spin_unlock_irqrestore(&floppy_usage_lock, flags);
  3922. return -1;
  3923. }
  3924. for (fdc = 0; fdc < N_FDC; fdc++) {
  3925. if (FDCS->address != -1) {
  3926. if (!request_region(FDCS->address + 2, 4, "floppy")) {
  3927. DPRINT("Floppy io-port 0x%04lx in usen",
  3928.        FDCS->address + 2);
  3929. goto cleanup1;
  3930. }
  3931. if (!request_region(FDCS->address + 7, 1, "floppy DIR")) {
  3932. DPRINT("Floppy io-port 0x%04lx in usen",
  3933.        FDCS->address + 7);
  3934. goto cleanup2;
  3935. }
  3936. /* address + 6 is reserved, and may be taken by IDE.
  3937.  * Unfortunately, Adaptec doesn't know this :-(, */
  3938. }
  3939. }
  3940. for (fdc = 0; fdc < N_FDC; fdc++) {
  3941. if (FDCS->address != -1) {
  3942. reset_fdc_info(1);
  3943. fd_outb(FDCS->dor, FD_DOR);
  3944. }
  3945. }
  3946. fdc = 0;
  3947. set_dor(0, ~0, 8); /* avoid immediate interrupt */
  3948. for (fdc = 0; fdc < N_FDC; fdc++)
  3949. if (FDCS->address != -1)
  3950. fd_outb(FDCS->dor, FD_DOR);
  3951. /*
  3952.  *      The driver will try and free resources and relies on us
  3953.  *      to know if they were allocated or not.
  3954.  */
  3955. fdc = 0;
  3956. irqdma_allocated = 1;
  3957. return 0;
  3958. cleanup2:
  3959. release_region(FDCS->address + 2, 4);
  3960. cleanup1:
  3961. fd_free_irq();
  3962. fd_free_dma();
  3963. while (--fdc >= 0) {
  3964. release_region(FDCS->address + 2, 4);
  3965. release_region(FDCS->address + 7, 1);
  3966. }
  3967. spin_lock_irqsave(&floppy_usage_lock, flags);
  3968. usage_count--;
  3969. spin_unlock_irqrestore(&floppy_usage_lock, flags);
  3970. return -1;
  3971. }
  3972. static void floppy_release_irq_and_dma(void)
  3973. {
  3974. int old_fdc;
  3975. #ifdef FLOPPY_SANITY_CHECK
  3976. #ifndef __sparc__
  3977. int drive;
  3978. #endif
  3979. #endif
  3980. long tmpsize;
  3981. unsigned long tmpaddr;
  3982. unsigned long flags;
  3983. spin_lock_irqsave(&floppy_usage_lock, flags);
  3984. if (--usage_count) {
  3985. spin_unlock_irqrestore(&floppy_usage_lock, flags);
  3986. return;
  3987. }
  3988. spin_unlock_irqrestore(&floppy_usage_lock, flags);
  3989. if (irqdma_allocated) {
  3990. fd_disable_dma();
  3991. fd_free_dma();
  3992. fd_free_irq();
  3993. irqdma_allocated = 0;
  3994. }
  3995. set_dor(0, ~0, 8);
  3996. #if N_FDC > 1
  3997. set_dor(1, ~8, 0);
  3998. #endif
  3999. floppy_enable_hlt();
  4000. if (floppy_track_buffer && max_buffer_sectors) {
  4001. tmpsize = max_buffer_sectors * 1024;
  4002. tmpaddr = (unsigned long)floppy_track_buffer;
  4003. floppy_track_buffer = NULL;
  4004. max_buffer_sectors = 0;
  4005. buffer_min = buffer_max = -1;
  4006. fd_dma_mem_free(tmpaddr, tmpsize);
  4007. }
  4008. #ifdef FLOPPY_SANITY_CHECK
  4009. #ifndef __sparc__
  4010. for (drive = 0; drive < N_FDC * 4; drive++)
  4011. if (timer_pending(motor_off_timer + drive))
  4012. printk("motor off timer %d still activen", drive);
  4013. #endif
  4014. if (timer_pending(&fd_timeout))
  4015. printk("floppy timer still active:%sn", timeout_message);
  4016. if (timer_pending(&fd_timer))
  4017. printk("auxiliary floppy timer still activen");
  4018. if (floppy_work.pending)
  4019. printk("work still pendingn");
  4020. #endif
  4021. old_fdc = fdc;
  4022. for (fdc = 0; fdc < N_FDC; fdc++)
  4023. if (FDCS->address != -1) {
  4024. release_region(FDCS->address + 2, 4);
  4025. release_region(FDCS->address + 7, 1);
  4026. }
  4027. fdc = old_fdc;
  4028. }
  4029. #ifdef MODULE
  4030. static char *floppy;
  4031. static void unregister_devfs_entries(int drive)
  4032. {
  4033. int i;
  4034. if (UDP->cmos < NUMBER(default_drive_params)) {
  4035. i = 0;
  4036. do {
  4037. devfs_remove("floppy/%d%s", drive,
  4038.      table[table_sup[UDP->cmos][i]]);
  4039. } while (table_sup[UDP->cmos][i++]);
  4040. }
  4041. }
  4042. static void __init parse_floppy_cfg_string(char *cfg)
  4043. {
  4044. char *ptr;
  4045. while (*cfg) {
  4046. for (ptr = cfg; *cfg && *cfg != ' ' && *cfg != 't'; cfg++) ;
  4047. if (*cfg) {
  4048. *cfg = '';
  4049. cfg++;
  4050. }
  4051. if (*ptr)
  4052. floppy_setup(ptr);
  4053. }
  4054. }
  4055. int init_module(void)
  4056. {
  4057. if (floppy)
  4058. parse_floppy_cfg_string(floppy);
  4059. return floppy_init();
  4060. }
  4061. void cleanup_module(void)
  4062. {
  4063. int drive;
  4064. init_completion(&device_release);
  4065. blk_unregister_region(MKDEV(FLOPPY_MAJOR, 0), 256);
  4066. unregister_blkdev(FLOPPY_MAJOR, "fd");
  4067. for (drive = 0; drive < N_DRIVE; drive++) {
  4068. del_timer_sync(&motor_off_timer[drive]);
  4069. if ((allowed_drive_mask & (1 << drive)) &&
  4070.     fdc_state[FDC(drive)].version != FDC_NONE) {
  4071. del_gendisk(disks[drive]);
  4072. unregister_devfs_entries(drive);
  4073. device_remove_file(&floppy_device[drive].dev, &dev_attr_cmos);
  4074. platform_device_unregister(&floppy_device[drive]);
  4075. }
  4076. put_disk(disks[drive]);
  4077. }
  4078. devfs_remove("floppy");
  4079. del_timer_sync(&fd_timeout);
  4080. del_timer_sync(&fd_timer);
  4081. blk_cleanup_queue(floppy_queue);
  4082. if (usage_count)
  4083. floppy_release_irq_and_dma();
  4084. /* eject disk, if any */
  4085. fd_eject(0);
  4086. wait_for_completion(&device_release);
  4087. }
  4088. module_param(floppy, charp, 0);
  4089. module_param(FLOPPY_IRQ, int, 0);
  4090. module_param(FLOPPY_DMA, int, 0);
  4091. MODULE_AUTHOR("Alain L. Knaff");
  4092. MODULE_SUPPORTED_DEVICE("fd");
  4093. MODULE_LICENSE("GPL");
  4094. #else
  4095. __setup("floppy=", floppy_setup);
  4096. module_init(floppy_init)
  4097. #endif
  4098. MODULE_ALIAS_BLOCKDEV_MAJOR(FLOPPY_MAJOR);