fd1772.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:44k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/kernel/arch/arm/drivers/block/fd1772.c
  3.  *  Based on ataflop.c in the m68k Linux
  4.  *  Copyright (C) 1993  Greg Harp
  5.  *  Atari Support by Bjoern Brauel, Roman Hodek
  6.  *  Archimedes Support by Dave Gilbert (linux@treblig.org)
  7.  *
  8.  *  Big cleanup Sep 11..14 1994 Roman Hodek:
  9.  *   - Driver now works interrupt driven
  10.  *   - Support for two drives; should work, but I cannot test that :-(
  11.  *   - Reading is done in whole tracks and buffered to speed up things
  12.  *   - Disk change detection and drive deselecting after motor-off
  13.  *     similar to TOS
  14.  *   - Autodetection of disk format (DD/HD); untested yet, because I
  15.  *     don't have an HD drive :-(
  16.  *
  17.  *  Fixes Nov 13 1994 Martin Schaller:
  18.  *   - Autodetection works now
  19.  *   - Support for 5 1/4" disks
  20.  *   - Removed drive type (unknown on atari)
  21.  *   - Do seeks with 8 Mhz
  22.  *
  23.  *  Changes by Andreas Schwab:
  24.  *   - After errors in multiple read mode try again reading single sectors
  25.  *  (Feb 1995):
  26.  *   - Clean up error handling
  27.  *   - Set blk_size for proper size checking
  28.  *   - Initialize track register when testing presence of floppy
  29.  *   - Implement some ioctl's
  30.  *
  31.  *  Changes by Torsten Lang:
  32.  *   - When probing the floppies we should add the FDC1772CMDADD_H flag since
  33.  *     the FDC1772 will otherwise wait forever when no disk is inserted...
  34.  *
  35.  *  Things left to do:
  36.  *   - Formatting
  37.  *   - Maybe a better strategy for disk change detection (does anyone
  38.  *     know one?)
  39.  *   - There are some strange problems left: The strangest one is
  40.  *     that, at least on my TT (4+4MB), the first 2 Bytes of the last
  41.  *     page of the TT-Ram (!) change their contents (some bits get
  42.  *     set) while a floppy DMA is going on. But there are no accesses
  43.  *     to these memory locations from the kernel... (I tested that by
  44.  *     making the page read-only). I cannot explain what's going on...
  45.  *   - Sometimes the drive-change-detection stops to work. The
  46.  *     function is still called, but the WP bit always reads as 0...
  47.  *     Maybe a problem with the status reg mode or a timing problem.
  48.  *     Note 10/12/94: The change detection now seems to work reliably.
  49.  *     There is no proof, but I've seen no hang for a long time...
  50.  *
  51.  * ARCHIMEDES changes: (gilbertd@cs.man.ac.uk)
  52.  *     26/12/95 - Changed all names starting with FDC to FDC1772
  53.  *                Removed all references to clock speed of FDC - we're stuck with 8MHz
  54.  *                Modified disk_type structure to remove HD formats
  55.  *
  56.  *      7/ 1/96 - Wrote FIQ code, removed most remaining atariisms
  57.  *
  58.  *     13/ 1/96 - Well I think its read a single sector; but there is a problem
  59.  *                fd_rwsec_done which is called in FIQ mode starts another transfer
  60.  *                off (in fd_rwsec) while still in FIQ mode.  Because its still in
  61.  *                FIQ mode it can't service the DMA and loses data. So need to
  62.  *                heavily restructure.
  63.  *     14/ 1/96 - Found that the definitions of the register numbers of the
  64.  *                FDC were multiplied by 2 in the header for the 16bit words
  65.  *                of the atari so half the writes were going in the wrong place.
  66.  *                Also realised that the FIQ entry didn't make any attempt to
  67.  *                preserve registers or return correctly; now in assembler.
  68.  *
  69.  *     11/ 2/96 - Hmm - doesn't work on real machine.  Auto detect doesn't
  70.  *                and hacking that past seems to wait forever - check motor
  71.  *                being turned on.
  72.  *
  73.  *     17/ 2/96 - still having problems - forcing track to -1 when selecting
  74.  *                new drives seems to allow it to read first few sectors
  75.  *                but then we get solid hangs at apparently random places
  76.  *                which change depending what is happening.
  77.  *
  78.  *      9/ 3/96 - Fiddled a lot of stuff around to move to kernel 1.3.35
  79.  *                A lot of fiddling in DMA stuff. Having problems with it
  80.  *                constnatly thinking its timeing out. Ah - its timeout
  81.  *                was set to (6*HZ) rather than jiffies+(6*HZ).  Now giving
  82.  *                duff data!
  83.  *
  84.  *      5/ 4/96 - Made it use the new IOC_ macros rather than *ioc
  85.  *                Hmm - giving unexpected FIQ and then timeouts
  86.  *     18/ 8/96 - Ran through indent -kr -i8
  87.  *                Some changes to disc change detect; don't know how well it
  88.  *                works.
  89.  *     24/ 8/96 - Put all the track buffering code back in from the atari
  90.  *                code - I wonder if it will still work... No :-)
  91.  *                Still works if I turn off track buffering.
  92.  *     25/ 8/96 - Changed the timer expires that I'd added back to be 
  93.  *                jiffies + ....; and it all sprang to life! Got 2.8K/sec
  94.  *                off a cp -r of a 679K disc (showed 94% cpu usage!)
  95.  *                (PC gets 14.3K/sec - 0% CPU!) Hmm - hard drive corrupt!
  96.  *                Also perhaps that compile was with cache off.
  97.  *                changed cli in fd_readtrack_check to cliIF
  98.  *                changed vmallocs to kmalloc (whats the difference!!)
  99.  *                Removed the busy wait loop in do_fd_request and replaced
  100.  *                by a routine on tq_immediate; only 11% cpu on a dd off the
  101.  *                raw disc - but the speed is the same.
  102.  * 1/ 9/96 - Idea (failed!) - set the 'disable spin-up seqeunce'
  103.  *   when we read the track if we know the motor is on; didn't
  104.  *   help - perhaps we have to do it in stepping as well.
  105.  *   Nope. Still doesn't help.
  106.  *   Hmm - what seems to be happening is that fd_readtrack_check
  107.  *   is never getting called. Its job is to terminate the read
  108.  *   just after we think we should have got the data; otherwise
  109.  *   the fdc takes 1 second to timeout; which is what's happening
  110.  *   Now I can see 'readtrack_timer' being set (which should do the
  111.  *   call); but it never seems to be called - hmm!
  112.  *   OK - I've moved the check to my tq_immediate code -
  113.  *   and it WORKS! 13.95K/second at 19% CPU.
  114.  *   I wish I knew why that timer didn't work.....
  115.  *
  116.  *     16/11/96 - Fiddled and frigged for 2.0.18
  117.  *
  118.  * DAG 30/01/99 - Started frobbing for 2.2.1
  119.  * DAG 20/06/99 - A little more frobbing:
  120.  *   Included include/asm/uaccess.h for get_user/put_user
  121.  *
  122.  * DAG  1/09/00 - Dusted off for 2.4.0-test7
  123.  *                MAX_SECTORS was name clashing so it is now FD1772_...
  124.  *                Minor parameter, name layouts for 2.4.x differences
  125.  */
  126. #include <linux/sched.h>
  127. #include <linux/fs.h>
  128. #include <linux/fcntl.h>
  129. #include <linux/slab.h>
  130. #include <linux/kernel.h>
  131. #include <linux/interrupt.h>
  132. #include <linux/timer.h>
  133. #include <linux/tqueue.h>
  134. #include <linux/fd.h>
  135. #include <linux/fd1772.h>
  136. #include <linux/errno.h>
  137. #include <linux/types.h>
  138. #include <linux/delay.h>
  139. #include <linux/mm.h>
  140. #include <asm/arch/oldlatches.h>
  141. #include <asm/bitops.h>
  142. #include <asm/dma.h>
  143. #include <asm/hardware.h>
  144. #include <asm/hardware/ioc.h>
  145. #include <asm/io.h>
  146. #include <asm/irq.h>
  147. #include <asm/mach-types.h>
  148. #include <asm/pgtable.h>
  149. #include <asm/system.h>
  150. #include <asm/uaccess.h>
  151. #define MAJOR_NR FLOPPY_MAJOR
  152. #define FLOPPY_DMA 0
  153. #include <linux/blk.h>
  154. /* Note: FD_MAX_UNITS could be redefined to 2 for the Atari (with
  155.  * little additional rework in this file). But I'm not yet sure if
  156.  * some other code depends on the number of floppies... (It is defined
  157.  * in a public header!)
  158.  */
  159. #if 0
  160. #undef FD_MAX_UNITS
  161. #define FD_MAX_UNITS 2
  162. #endif
  163. /* Ditto worries for Arc - DAG */
  164. #define FD_MAX_UNITS 4
  165. #define TRACKBUFFER 0
  166. /*#define DEBUG*/
  167. #ifdef DEBUG
  168. #define DPRINT(a) printk a
  169. #else
  170. #define DPRINT(a)
  171. #endif
  172. /* Disk types: DD */
  173. static struct archy_disk_type {
  174. const char *name;
  175. unsigned spt; /* sectors per track */
  176. unsigned blocks; /* total number of blocks */
  177. unsigned stretch; /* track doubling ? */
  178. } disk_type[] = {
  179. { "d360", 9, 720, 0 }, /* 360kB diskette */
  180. { "D360", 9, 720, 1 }, /* 360kb in 720kb drive */
  181. { "D720", 9, 1440, 0 }, /* 720kb diskette (DD) */
  182. /*{ "D820", 10,1640, 0}, *//* DD disk with 82 tracks/10 sectors 
  183.                               - DAG - can't see how type detect can distinguish this
  184.       from 720K until it reads block 4 by which time its too late! */
  185. };
  186. #define NUM_DISK_TYPES (sizeof(disk_type)/sizeof(*disk_type))
  187. /*
  188.  * Maximum disk size (in kilobytes). This default is used whenever the
  189.  * current disk size is unknown.
  190.  */
  191. #define MAX_DISK_SIZE 720
  192. static int floppy_sizes[256];
  193. static int floppy_blocksizes[256];
  194. /* current info on each unit */
  195. static struct archy_floppy_struct {
  196. int connected; /* !=0 : drive is connected */
  197. int autoprobe; /* !=0 : do autoprobe       */
  198. struct archy_disk_type *disktype; /* current type of disk */
  199. int track; /* current head position or -1
  200.    * if unknown */
  201. unsigned int steprate; /* steprate setting */
  202. unsigned int wpstat; /* current state of WP signal
  203.    * (for disk change detection) */
  204. } unit[FD_MAX_UNITS];
  205. /* DAG: On Arc we spin on a flag being cleared by fdc1772_comendhandler which
  206.    is an assembler routine */
  207. extern void fdc1772_comendhandler(void); /* Actually doens't have these parameters - see fd1772.S */
  208. extern volatile int fdc1772_comendstatus;
  209. extern volatile int fdc1772_fdc_int_done;
  210. #define FDC1772BASE ((0x210000>>2)|0x80000000)
  211. #define FDC1772_READ(reg) inb(FDC1772BASE+(reg/2))
  212. /* DAG: You wouldn't be silly to ask why FDC1772_WRITE is a function rather
  213.    than the #def below - well simple - the #def won't compile - and I
  214.    don't understand why (__outwc not defined) */
  215. /* NOTE: Reg is 0,2,4,6 as opposed to 0,1,2,3 or 0,4,8,12 to keep compatibility
  216.    with the ST version of fd1772.h */
  217. /*#define FDC1772_WRITE(reg,val) outw(val,(reg+FDC1772BASE)); */
  218. void FDC1772_WRITE(int reg, unsigned char val)
  219. {
  220. if (reg == FDC1772REG_CMD) {
  221. DPRINT(("FDC1772_WRITE new command 0x%x @ %dn", val,jiffies));
  222. if (fdc1772_fdc_int_done) {
  223. DPRINT(("FDC1772_WRITE: Hmm fdc1772_fdc_int_done true - resettingn"));
  224. fdc1772_fdc_int_done = 0;
  225. };
  226. };
  227. outb(val, (reg / 2) + FDC1772BASE);
  228. };
  229. #define FD1772_MAX_SECTORS 22
  230. unsigned char *DMABuffer; /* buffer for writes */
  231. /*static unsigned long PhysDMABuffer; *//* physical address */
  232. /* DAG: On Arc we just go straight for the DMA buffer */
  233. #define PhysDMABuffer DMABuffer
  234. #ifdef TRACKBUFFER   
  235. unsigned char *TrackBuffer;       /* buffer for reads */
  236. #define PhysTrackBuffer TrackBuffer /* physical address */
  237. static int BufferDrive, BufferSide, BufferTrack;
  238. static int read_track;    /* non-zero if we are reading whole tracks */
  239.   
  240. #define SECTOR_BUFFER(sec)  (TrackBuffer + ((sec)-1)*512)
  241. #define IS_BUFFERED(drive,side,track) 
  242.     (BufferDrive == (drive) && BufferSide == (side) && BufferTrack == (track))
  243. #endif
  244. /*
  245.  * These are global variables, as that's the easiest way to give
  246.  * information to interrupts. They are the data used for the current
  247.  * request.
  248.  */
  249. static int SelectedDrive = 0;
  250. static int ReqCmd, ReqBlock;
  251. static int ReqSide, ReqTrack, ReqSector, ReqCnt;
  252. static int HeadSettleFlag = 0;
  253. static unsigned char *ReqData, *ReqBuffer;
  254. static int MotorOn = 0, MotorOffTrys;
  255. /* Synchronization of FDC1772 access. */
  256. static volatile int fdc_busy = 0;
  257. static DECLARE_WAIT_QUEUE_HEAD(fdc_wait);
  258. /* long req'd for set_bit --RR */
  259. static unsigned long changed_floppies = 0xff, fake_change = 0;
  260. #define CHECK_CHANGE_DELAY HZ/2
  261. /* DAG - increased to 30*HZ - not sure if this is the correct thing to do */
  262. #define FD_MOTOR_OFF_DELAY (10*HZ)
  263. #define FD_MOTOR_OFF_MAXTRY (10*20)
  264. #define FLOPPY_TIMEOUT (6*HZ)
  265. #define RECALIBRATE_ERRORS 4 /* After this many errors the drive
  266.  * will be recalibrated. */
  267. #define MAX_ERRORS 8 /* After this many errors the driver
  268.  * will give up. */
  269. #define START_MOTOR_OFF_TIMER(delay)
  270. do {
  271. motor_off_timer.expires = jiffies + (delay);
  272. add_timer( &motor_off_timer );
  273. MotorOffTrys = 0;
  274. } while(0)
  275. #define START_CHECK_CHANGE_TIMER(delay)
  276. do {
  277.         mod_timer(&fd_timer, jiffies + (delay));
  278. } while(0)
  279. #define START_TIMEOUT()
  280. do {
  281. mod_timer(&timeout_timer, jiffies+FLOPPY_TIMEOUT); 
  282. } while(0)
  283. #define STOP_TIMEOUT()
  284. do {
  285. del_timer( &timeout_timer );
  286. } while(0)
  287. #define ENABLE_IRQ() enable_irq(FIQ_FD1772+64);
  288. #define DISABLE_IRQ() disable_irq(FIQ_FD1772+64);
  289. static void fd1772_checkint(void);
  290. struct tq_struct fd1772_tq = 
  291. { 0,0, (void *)fd1772_checkint, 0 };
  292. /*
  293.  * The driver is trying to determine the correct media format
  294.  * while Probing is set. fd_rwsec_done() clears it after a
  295.  * successful access.
  296.  */
  297. static int Probing = 0;
  298. /* This flag is set when a dummy seek is necesary to make the WP
  299.  * status bit accessible.
  300.  */
  301. static int NeedSeek = 0;
  302. /***************************** Prototypes *****************************/
  303. static void fd_select_side(int side);
  304. static void fd_select_drive(int drive);
  305. static void fd_deselect(void);
  306. static void fd_motor_off_timer(unsigned long dummy);
  307. static void check_change(unsigned long dummy);
  308. static __inline__ void set_head_settle_flag(void);
  309. static __inline__ int get_head_settle_flag(void);
  310. static void floppy_irqconsequencehandler(void);
  311. static void fd_error(void);
  312. static void do_fd_action(int drive);
  313. static void fd_calibrate(void);
  314. static void fd_calibrate_done(int status);
  315. static void fd_seek(void);
  316. static void fd_seek_done(int status);
  317. static void fd_rwsec(void);
  318. #ifdef TRACKBUFFER   
  319. static void fd_readtrack_check( unsigned long dummy );  
  320. #endif
  321. static void fd_rwsec_done(int status);
  322. static void fd_times_out(unsigned long dummy);
  323. static void finish_fdc(void);
  324. static void finish_fdc_done(int dummy);
  325. static void floppy_off(unsigned int nr);
  326. static __inline__ void copy_buffer(void *from, void *to);
  327. static void setup_req_params(int drive);
  328. static void redo_fd_request(void);
  329. static int fd_ioctl(struct inode *inode, struct file *filp, unsigned int
  330.     cmd, unsigned long param);
  331. static void fd_probe(int drive);
  332. static int fd_test_drive_present(int drive);
  333. static void config_types(void);
  334. static int floppy_open(struct inode *inode, struct file *filp);
  335. static int floppy_release(struct inode *inode, struct file *filp);
  336. /************************* End of Prototypes **************************/
  337. static struct timer_list motor_off_timer = {
  338. function: fd_motor_off_timer,
  339. };
  340. #ifdef TRACKBUFFER
  341. static struct timer_list readtrack_timer = {
  342. function:  fd_readtrack_check,
  343. };
  344. #endif
  345. static struct timer_list timeout_timer = {
  346. function: fd_times_out,
  347. };
  348. static struct timer_list fd_timer = {
  349. function: check_change,
  350. };
  351. /* DAG: Haven't got a clue what this is? */
  352. int stdma_islocked(void)
  353. {
  354. return 0;
  355. };
  356. /* Select the side to use. */
  357. static void fd_select_side(int side)
  358. {
  359. oldlatch_aupdate(LATCHA_SIDESEL, side ? 0 : LATCHA_SIDESEL);
  360. }
  361. /* Select a drive, update the FDC1772's track register
  362.  */
  363. static void fd_select_drive(int drive)
  364. {
  365. #ifdef DEBUG
  366. printk("fd_select_drive:%dn", drive);
  367. #endif
  368. /* Hmm - nowhere do we seem to turn the motor on - I'm going to do it here! */
  369. oldlatch_aupdate(LATCHA_MOTOR | LATCHA_INUSE, 0);
  370. if (drive == SelectedDrive)
  371. return;
  372. oldlatch_aupdate(LATCHA_FDSELALL, 0xf - (1 << drive));
  373. /* restore track register to saved value */
  374. FDC1772_WRITE(FDC1772REG_TRACK, unit[drive].track);
  375. udelay(25);
  376. SelectedDrive = drive;
  377. }
  378. /* Deselect both drives. */
  379. static void fd_deselect(void)
  380. {
  381. unsigned long flags;
  382. DPRINT(("fd_deselectn"));
  383. oldlatch_aupdate(LATCHA_FDSELALL | LATCHA_MOTOR | LATCHA_INUSE, 0xf | LATCHA_MOTOR | LATCHA_INUSE);
  384. SelectedDrive = -1;
  385. }
  386. /* This timer function deselects the drives when the FDC1772 switched the
  387.  * motor off. The deselection cannot happen earlier because the FDC1772
  388.  * counts the index signals, which arrive only if one drive is selected.
  389.  */
  390. static void fd_motor_off_timer(unsigned long dummy)
  391. {
  392. unsigned long flags;
  393. unsigned char status;
  394. int delay;
  395. del_timer(&motor_off_timer);
  396. if (SelectedDrive < 0)
  397. /* no drive selected, needn't deselect anyone */
  398. return;
  399. save_flags(flags);
  400. cli();
  401. if (fdc_busy) /* was stdma_islocked */
  402. goto retry;
  403. status = FDC1772_READ(FDC1772REG_STATUS);
  404. if (!(status & 0x80)) {
  405. /*
  406.  * motor already turned off by FDC1772 -> deselect drives
  407.  * In actual fact its this deselection which turns the motor
  408.  * off on the Arc, since the motor control is actually on
  409.  * Latch A
  410.  */
  411. DPRINT(("fdc1772: deselecting in fd_motor_off_timern"));
  412. fd_deselect();
  413. MotorOn = 0;
  414. restore_flags(flags);
  415. return;
  416. }
  417. /* not yet off, try again */
  418. retry:
  419. restore_flags(flags);
  420. /* Test again later; if tested too often, it seems there is no disk
  421.  * in the drive and the FDC1772 will leave the motor on forever (or,
  422.  * at least until a disk is inserted). So we'll test only twice
  423.  * per second from then on...
  424.  */
  425. delay = (MotorOffTrys < FD_MOTOR_OFF_MAXTRY) ?
  426.     (++MotorOffTrys, HZ / 20) : HZ / 2;
  427. START_MOTOR_OFF_TIMER(delay);
  428. }
  429. /* This function is repeatedly called to detect disk changes (as good
  430.  * as possible) and keep track of the current state of the write protection.
  431.  */
  432. static void check_change(unsigned long dummy)
  433. {
  434. static int drive = 0;
  435. unsigned long flags;
  436. int stat;
  437. if (fdc_busy)
  438. return; /* Don't start poking about if the fdc is busy */
  439. return; /* let's just forget it for the mo DAG */
  440. if (++drive > 1 || !unit[drive].connected)
  441. drive = 0;
  442. save_flags(flags);
  443. cli();
  444. if (!stdma_islocked()) {
  445. stat = !!(FDC1772_READ(FDC1772REG_STATUS) & FDC1772STAT_WPROT);
  446. /* The idea here is that if the write protect line has changed then
  447. the disc must have changed */
  448. if (stat != unit[drive].wpstat) {
  449. DPRINT(("wpstat[%d] = %dn", drive, stat));
  450. unit[drive].wpstat = stat;
  451. set_bit(drive, &changed_floppies);
  452. }
  453. }
  454. restore_flags(flags);
  455. START_CHECK_CHANGE_TIMER(CHECK_CHANGE_DELAY);
  456. }
  457. /* Handling of the Head Settling Flag: This flag should be set after each
  458.  * seek operation, because we don't use seeks with verify.
  459.  */
  460. static __inline__ void set_head_settle_flag(void)
  461. {
  462. HeadSettleFlag = FDC1772CMDADD_E;
  463. }
  464. static __inline__ int get_head_settle_flag(void)
  465. {
  466. int tmp = HeadSettleFlag;
  467. HeadSettleFlag = 0;
  468. return (tmp);
  469. }
  470. /* General Interrupt Handling */
  471. static void (*FloppyIRQHandler) (int status) = NULL;
  472. static void floppy_irqconsequencehandler(void)
  473. {
  474. unsigned char status;
  475. void (*handler) (int);
  476. fdc1772_fdc_int_done = 0;
  477. handler = FloppyIRQHandler;
  478. FloppyIRQHandler = NULL;
  479. if (handler) {
  480. nop();
  481. status = (unsigned char) fdc1772_comendstatus;
  482. DPRINT(("FDC1772 irq, status = %02x handler = %08lxn", (unsigned int) status, (unsigned long) handler));
  483. handler(status);
  484. } else {
  485. DPRINT(("FDC1772 irq, no handler status=%02xn", fdc1772_comendstatus));
  486. }
  487. DPRINT(("FDC1772 irq: end of floppy_irqn"));
  488. }
  489. /* Error handling: If some error happened, retry some times, then
  490.  * recalibrate, then try again, and fail after MAX_ERRORS.
  491.  */
  492. static void fd_error(void)
  493. {
  494. printk("FDC1772: fd_errorn");
  495. /*panic("fd1772: fd_error"); *//* DAG tmp */
  496. if (QUEUE_EMPTY)
  497. return;
  498. CURRENT->errors++;
  499. if (CURRENT->errors >= MAX_ERRORS) {
  500. printk("fd%d: too many errors.n", SelectedDrive);
  501. end_request(0);
  502. } else if (CURRENT->errors == RECALIBRATE_ERRORS) {
  503. printk("fd%d: recalibratingn", SelectedDrive);
  504. if (SelectedDrive != -1)
  505. unit[SelectedDrive].track = -1;
  506. }
  507. redo_fd_request();
  508. }
  509. #define SET_IRQ_HANDLER(proc) do { FloppyIRQHandler = (proc); } while(0)
  510. /* do_fd_action() is the general procedure for a fd request: All
  511.  * required parameter settings (drive select, side select, track
  512.  * position) are checked and set if needed. For each of these
  513.  * parameters and the actual reading or writing exist two functions:
  514.  * one that starts the setting (or skips it if possible) and one
  515.  * callback for the "done" interrupt. Each done func calls the next
  516.  * set function to propagate the request down to fd_rwsec_done().
  517.  */
  518. static void do_fd_action(int drive)
  519. {
  520. DPRINT(("do_fd_action unit[drive].track=%dn", unit[drive].track));
  521. #ifdef TRACKBUFFER
  522. repeat:
  523. if (IS_BUFFERED( drive, ReqSide, ReqTrack )) {
  524. if (ReqCmd == READ) {
  525. copy_buffer( SECTOR_BUFFER(ReqSector), ReqData );
  526. if (++ReqCnt < CURRENT->current_nr_sectors) {
  527. /* read next sector */
  528. setup_req_params( drive );
  529. goto repeat;
  530. } else {
  531. /* all sectors finished */
  532. CURRENT->nr_sectors -= CURRENT->current_nr_sectors;
  533. CURRENT->sector += CURRENT->current_nr_sectors;
  534. end_request( 1 );
  535. redo_fd_request();
  536. return;
  537. }
  538. } else {
  539. /* cmd == WRITE, pay attention to track buffer
  540.  * consistency! */
  541. copy_buffer( ReqData, SECTOR_BUFFER(ReqSector) );
  542. }
  543. }
  544. #endif
  545. if (SelectedDrive != drive) {
  546. /*unit[drive].track = -1; DAG */
  547. fd_select_drive(drive);
  548. };
  549. if (unit[drive].track == -1)
  550. fd_calibrate();
  551. else if (unit[drive].track != ReqTrack << unit[drive].disktype->stretch)
  552. fd_seek();
  553. else
  554. fd_rwsec();
  555. }
  556. /* Seek to track 0 if the current track is unknown */
  557. static void fd_calibrate(void)
  558. {
  559. DPRINT(("fd_calibraten"));
  560. if (unit[SelectedDrive].track >= 0) {
  561. fd_calibrate_done(0);
  562. return;
  563. }
  564. DPRINT(("fd_calibrate (after track compare)n"));
  565. SET_IRQ_HANDLER(fd_calibrate_done);
  566. /* we can't verify, since the speed may be incorrect */
  567. FDC1772_WRITE(FDC1772REG_CMD, FDC1772CMD_RESTORE | unit[SelectedDrive].steprate);
  568. NeedSeek = 1;
  569. MotorOn = 1;
  570. START_TIMEOUT();
  571. /* wait for IRQ */
  572. }
  573. static void fd_calibrate_done(int status)
  574. {
  575. DPRINT(("fd_calibrate_done()n"));
  576. STOP_TIMEOUT();
  577. /* set the correct speed now */
  578. if (status & FDC1772STAT_RECNF) {
  579. printk("fd%d: restore failedn", SelectedDrive);
  580. fd_error();
  581. } else {
  582. unit[SelectedDrive].track = 0;
  583. fd_seek();
  584. }
  585. }
  586. /* Seek the drive to the requested track. The drive must have been
  587.  * calibrated at some point before this.
  588.  */
  589. static void fd_seek(void)
  590. {
  591. unsigned long flags;
  592. DPRINT(("fd_seek() to track %d (unit[SelectedDrive].track=%d)n", ReqTrack,
  593. unit[SelectedDrive].track));
  594. if (unit[SelectedDrive].track == ReqTrack <<
  595.     unit[SelectedDrive].disktype->stretch) {
  596. fd_seek_done(0);
  597. return;
  598. }
  599. FDC1772_WRITE(FDC1772REG_DATA, ReqTrack <<
  600.       unit[SelectedDrive].disktype->stretch);
  601. udelay(25);
  602. save_flags(flags);
  603. clf();
  604. SET_IRQ_HANDLER(fd_seek_done);
  605. FDC1772_WRITE(FDC1772REG_CMD, FDC1772CMD_SEEK | unit[SelectedDrive].steprate |
  606. /* DAG */
  607. (MotorOn?FDC1772CMDADD_H:0));
  608. restore_flags(flags);
  609. MotorOn = 1;
  610. set_head_settle_flag();
  611. START_TIMEOUT();
  612. /* wait for IRQ */
  613. }
  614. static void fd_seek_done(int status)
  615. {
  616. DPRINT(("fd_seek_done()n"));
  617. STOP_TIMEOUT();
  618. /* set the correct speed */
  619. if (status & FDC1772STAT_RECNF) {
  620. printk("fd%d: seek error (to track %d)n",
  621.        SelectedDrive, ReqTrack);
  622. /* we don't know exactly which track we are on now! */
  623. unit[SelectedDrive].track = -1;
  624. fd_error();
  625. } else {
  626. unit[SelectedDrive].track = ReqTrack <<
  627.     unit[SelectedDrive].disktype->stretch;
  628. NeedSeek = 0;
  629. fd_rwsec();
  630. }
  631. }
  632. /* This does the actual reading/writing after positioning the head
  633.  * over the correct track.
  634.  */
  635. #ifdef TRACKBUFFER
  636. static int MultReadInProgress = 0;
  637. #endif
  638. static void fd_rwsec(void)
  639. {
  640. unsigned long paddr, flags;
  641. unsigned int rwflag, old_motoron;
  642. unsigned int track;
  643. DPRINT(("fd_rwsec(), Sec=%d, Access=%cn", ReqSector, ReqCmd == WRITE ? 'w' : 'r'));
  644. if (ReqCmd == WRITE) {
  645. /*cache_push( (unsigned long)ReqData, 512 ); */
  646. paddr = (unsigned long) ReqData;
  647. rwflag = 0x100;
  648. } else {
  649. paddr = (unsigned long) PhysDMABuffer;
  650. #ifdef TRACKBUFFER
  651. if (read_track)
  652. paddr = (unsigned long)PhysTrackBuffer;
  653. #endif
  654. rwflag = 0;
  655. }
  656. DPRINT(("fd_rwsec() before sidesel rwflag=%d sec=%d trk=%dn", rwflag,
  657. ReqSector, FDC1772_READ(FDC1772REG_TRACK)));
  658. fd_select_side(ReqSide);
  659. /*DPRINT(("fd_rwsec() before start sector n")); */
  660. /* Start sector of this operation */
  661. #ifdef TRACKBUFFER
  662. FDC1772_WRITE( FDC1772REG_SECTOR, !read_track ? ReqSector : 1 );
  663. #else
  664. FDC1772_WRITE( FDC1772REG_SECTOR, ReqSector );
  665. #endif
  666. /* Cheat for track if stretch != 0 */
  667. if (unit[SelectedDrive].disktype->stretch) {
  668. track = FDC1772_READ(FDC1772REG_TRACK);
  669. FDC1772_WRITE(FDC1772REG_TRACK, track >>
  670.       unit[SelectedDrive].disktype->stretch);
  671. }
  672. udelay(25);
  673. DPRINT(("fd_rwsec() before setup DMA n"));
  674. /* Setup DMA - Heavily modified by DAG */
  675. save_flags(flags);
  676. clf();
  677. disable_dma(FLOPPY_DMA);
  678. set_dma_mode(FLOPPY_DMA, rwflag ? DMA_MODE_WRITE : DMA_MODE_READ);
  679. set_dma_addr(FLOPPY_DMA, (long) paddr); /* DAG - changed from Atari specific */
  680. #ifdef TRACKBUFFER
  681. set_dma_count(FLOPPY_DMA,(!read_track ? 1 : unit[SelectedDrive].disktype->spt)*512);
  682. #else
  683. set_dma_count(FLOPPY_DMA, 512); /* Block/sector size - going to have to change */
  684. #endif
  685. SET_IRQ_HANDLER(fd_rwsec_done);
  686. /* Turn on dma int */
  687. enable_dma(FLOPPY_DMA);
  688. /* Now give it something to do */
  689. FDC1772_WRITE(FDC1772REG_CMD, (rwflag ? (FDC1772CMD_WRSEC | FDC1772CMDADD_P) : 
  690. #ifdef TRACKBUFFER
  691.       (FDC1772CMD_RDSEC | (read_track ? FDC1772CMDADD_M : 0) |
  692.       /* Hmm - the idea here is to stop the FDC spinning the disc
  693.       up when we know that we already still have it spinning */
  694.       (MotorOn?FDC1772CMDADD_H:0))
  695. #else
  696.       FDC1772CMD_RDSEC
  697. #endif
  698. ));
  699. restore_flags(flags);
  700. DPRINT(("fd_rwsec() after DMA setup flags=0x%08xn", flags));
  701. /*sti(); *//* DAG - Hmm */
  702. /* Hmm - should do something DAG */
  703. old_motoron = MotorOn;
  704. MotorOn = 1;
  705. NeedSeek = 1;
  706. /* wait for interrupt */
  707. #ifdef TRACKBUFFER
  708. if (read_track) {
  709. /*
  710.  * If reading a whole track, wait about one disk rotation and
  711.  * then check if all sectors are read. The FDC will even
  712.  * search for the first non-existant sector and need 1 sec to
  713.  * recognise that it isn't present :-(
  714.  */
  715. /* 1 rot. + 5 rot.s if motor was off  */
  716. mod_timer(&readtrack_timer, jiffies + HZ/5 + (old_motoron ? 0 : HZ));
  717. DPRINT(("Setting readtrack_timer to %d @ %dn",
  718. readtrack_timer.expires,jiffies));
  719. MultReadInProgress = 1;
  720. }
  721. #endif
  722. /*DPRINT(("fd_rwsec() before START_TIMEOUT n")); */
  723. START_TIMEOUT();
  724. /*DPRINT(("fd_rwsec() after START_TIMEOUT n")); */
  725. }
  726. #ifdef TRACKBUFFER
  727. static void fd_readtrack_check(unsigned long dummy)
  728. {
  729. unsigned long flags, addr;
  730. extern unsigned char *fdc1772_dataaddr;
  731. DPRINT(("fd_readtrack_check @ %dn",jiffies));
  732. save_flags(flags);
  733. clf();
  734. del_timer( &readtrack_timer );
  735. if (!MultReadInProgress) {
  736. /* This prevents a race condition that could arise if the
  737.  * interrupt is triggered while the calling of this timer
  738.  * callback function takes place. The IRQ function then has
  739.  * already cleared 'MultReadInProgress'  when control flow
  740.  * gets here.
  741.  */
  742. restore_flags(flags);
  743. return;
  744. }
  745. /* get the current DMA address */
  746. addr=(unsigned long)fdc1772_dataaddr; /* DAG - ? */
  747. DPRINT(("fd_readtrack_check: addr=%x PhysTrackBuffer=%xn",addr,PhysTrackBuffer));
  748. if (addr >= (unsigned int)PhysTrackBuffer + unit[SelectedDrive].disktype->spt*512) {
  749. /* already read enough data, force an FDC interrupt to stop
  750.  * the read operation
  751.  */
  752. SET_IRQ_HANDLER( NULL );
  753. restore_flags(flags);
  754. DPRINT(("fd_readtrack_check(): donen"));
  755. FDC1772_WRITE( FDC1772REG_CMD, FDC1772CMD_FORCI );
  756. udelay(25);
  757. /* No error until now -- the FDC would have interrupted
  758.  * otherwise!
  759.  */
  760. fd_rwsec_done( 0 );
  761. } else {
  762. /* not yet finished, wait another tenth rotation */
  763. restore_flags(flags);
  764. DPRINT(("fd_readtrack_check(): not yet finishedn"));
  765. readtrack_timer.expires = jiffies + HZ/5/10;
  766. add_timer( &readtrack_timer );
  767. }
  768. }
  769. #endif
  770. static void fd_rwsec_done(int status)
  771. {
  772. unsigned int track;
  773. DPRINT(("fd_rwsec_done() status=%d @ %dn", status,jiffies));
  774. #ifdef TRACKBUFFER
  775. if (read_track && !MultReadInProgress)
  776. return;
  777. MultReadInProgress = 0;
  778. STOP_TIMEOUT();
  779. if (read_track)
  780. del_timer( &readtrack_timer );
  781. #endif
  782. /* Correct the track if stretch != 0 */
  783. if (unit[SelectedDrive].disktype->stretch) {
  784. track = FDC1772_READ(FDC1772REG_TRACK);
  785. FDC1772_WRITE(FDC1772REG_TRACK, track <<
  786.       unit[SelectedDrive].disktype->stretch);
  787. }
  788. if (ReqCmd == WRITE && (status & FDC1772STAT_WPROT)) {
  789. printk("fd%d: is write protectedn", SelectedDrive);
  790. goto err_end;
  791. }
  792. if ((status & FDC1772STAT_RECNF)
  793. #ifdef TRACKBUFFER
  794.     /* RECNF is no error after a multiple read when the FDC
  795.      * searched for a non-existant sector!
  796.      */
  797.     && !(read_track &&
  798.        FDC1772_READ(FDC1772REG_SECTOR) > unit[SelectedDrive].disktype->spt)
  799. #endif
  800.     ) {
  801. if (Probing) {
  802. if (unit[SelectedDrive].disktype > disk_type) {
  803. /* try another disk type */
  804. unit[SelectedDrive].disktype--;
  805. floppy_sizes[SelectedDrive]
  806.     = unit[SelectedDrive].disktype->blocks >> 1;
  807. } else
  808. Probing = 0;
  809. } else {
  810. /* record not found, but not probing. Maybe stretch wrong ? Restart probing */
  811. if (unit[SelectedDrive].autoprobe) {
  812. unit[SelectedDrive].disktype = disk_type + NUM_DISK_TYPES - 1;
  813. floppy_sizes[SelectedDrive]
  814.     = unit[SelectedDrive].disktype->blocks >> 1;
  815. Probing = 1;
  816. }
  817. }
  818. if (Probing) {
  819. setup_req_params(SelectedDrive);
  820. #ifdef TRACKBUFFER
  821. BufferDrive = -1;
  822. #endif
  823. do_fd_action(SelectedDrive);
  824. return;
  825. }
  826. printk("fd%d: sector %d not found (side %d, track %d)n",
  827.        SelectedDrive, FDC1772_READ(FDC1772REG_SECTOR), ReqSide, ReqTrack);
  828. goto err_end;
  829. }
  830. if (status & FDC1772STAT_CRC) {
  831. printk("fd%d: CRC error (side %d, track %d, sector %d)n",
  832.        SelectedDrive, ReqSide, ReqTrack, FDC1772_READ(FDC1772REG_SECTOR));
  833. goto err_end;
  834. }
  835. if (status & FDC1772STAT_LOST) {
  836. printk("fd%d: lost data (side %d, track %d, sector %d)n",
  837.        SelectedDrive, ReqSide, ReqTrack, FDC1772_READ(FDC1772REG_SECTOR));
  838. goto err_end;
  839. }
  840. Probing = 0;
  841. if (ReqCmd == READ) {
  842. #ifdef TRACKBUFFER
  843. if (!read_track) {
  844. /*cache_clear (PhysDMABuffer, 512);*/
  845. copy_buffer (DMABuffer, ReqData);
  846. } else {
  847. /*cache_clear (PhysTrackBuffer, FD1772_MAX_SECTORS * 512);*/
  848. BufferDrive = SelectedDrive;
  849. BufferSide  = ReqSide;
  850. BufferTrack = ReqTrack;
  851. copy_buffer (SECTOR_BUFFER (ReqSector), ReqData);
  852. }
  853. #else
  854. /*cache_clear( PhysDMABuffer, 512 ); */
  855. copy_buffer(DMABuffer, ReqData);
  856. #endif
  857. }
  858. if (++ReqCnt < CURRENT->current_nr_sectors) {
  859. /* read next sector */
  860. setup_req_params(SelectedDrive);
  861. do_fd_action(SelectedDrive);
  862. } else {
  863. /* all sectors finished */
  864. CURRENT->nr_sectors -= CURRENT->current_nr_sectors;
  865. CURRENT->sector += CURRENT->current_nr_sectors;
  866. end_request(1);
  867. redo_fd_request();
  868. }
  869. return;
  870. err_end:
  871. #ifdef TRACKBUFFER
  872. BufferDrive = -1;
  873. #endif
  874. fd_error();
  875. }
  876. static void fd_times_out(unsigned long dummy)
  877. {
  878. SET_IRQ_HANDLER(NULL);
  879. /* If the timeout occurred while the readtrack_check timer was
  880.  * active, we need to cancel it, else bad things will happen */
  881. del_timer( &readtrack_timer ); 
  882. FDC1772_WRITE(FDC1772REG_CMD, FDC1772CMD_FORCI);
  883. udelay(25);
  884. printk("floppy timeoutn");
  885. STOP_TIMEOUT(); /* hmm - should we do this ? */
  886. fd_error();
  887. }
  888. /* The (noop) seek operation here is needed to make the WP bit in the
  889.  * FDC1772 status register accessible for check_change. If the last disk
  890.  * operation would have been a RDSEC, this bit would always read as 0
  891.  * no matter what :-( To save time, the seek goes to the track we're
  892.  * already on.
  893.  */
  894. static void finish_fdc(void)
  895. {
  896. /* DAG - just try without this dummy seek! */
  897. finish_fdc_done(0);
  898. return;
  899. if (!NeedSeek) {
  900. finish_fdc_done(0);
  901. } else {
  902. DPRINT(("finish_fdc: dummy seek startedn"));
  903. FDC1772_WRITE(FDC1772REG_DATA, unit[SelectedDrive].track);
  904. SET_IRQ_HANDLER(finish_fdc_done);
  905. FDC1772_WRITE(FDC1772REG_CMD, FDC1772CMD_SEEK);
  906. MotorOn = 1;
  907. START_TIMEOUT();
  908. /* we must wait for the IRQ here, because the ST-DMA is
  909.  * released immediatly afterwards and the interrupt may be
  910.  * delivered to the wrong driver.
  911.  */
  912. }
  913. }
  914. static void finish_fdc_done(int dummy)
  915. {
  916. unsigned long flags;
  917. DPRINT(("finish_fdc_done enteredn"));
  918. STOP_TIMEOUT();
  919. NeedSeek = 0;
  920. if (timer_pending(&fd_timer) &&
  921.     time_after(jiffies + 5, fd_timer.expires)) 
  922. /* If the check for a disk change is done too early after this
  923.  * last seek command, the WP bit still reads wrong :-((
  924.  */
  925. mod_timer(&fd_timer, jiffies + 5);
  926. else {
  927. /*      START_CHECK_CHANGE_TIMER( CHECK_CHANGE_DELAY ); */
  928. };
  929. del_timer(&motor_off_timer);
  930. START_MOTOR_OFF_TIMER(FD_MOTOR_OFF_DELAY);
  931. save_flags(flags);
  932. cli();
  933. /* stdma_release(); - not sure if I should do something DAG  */
  934. fdc_busy = 0;
  935. wake_up(&fdc_wait);
  936. restore_flags(flags);
  937. DPRINT(("finish_fdc() finishedn"));
  938. }
  939. /* Prevent "aliased" accesses. */
  940. static int fd_ref[4];
  941. static int fd_device[4];
  942. /*
  943.  * Current device number. Taken either from the block header or from the
  944.  * format request descriptor.
  945.  */
  946. #define CURRENT_DEVICE (CURRENT->rq_dev)
  947. /* Current error count. */
  948. #define CURRENT_ERRORS (CURRENT->errors)
  949. /* dummy for blk.h */
  950. static void floppy_off(unsigned int nr)
  951. {
  952. }
  953. /* On the old arcs write protect depends on the particular model
  954.    of machine.  On the A310, R140, and A440 there is a disc changed
  955.    detect, however on the A4x0/1 range there is not.  There
  956.    is nothing to tell you which machine your on.
  957.    At the moment I'm just marking changed always. I've
  958.    left the Atari's 'change on write protect change' code in this
  959.    part (but nothing sets it).
  960.    RiscOS apparently checks the disc serial number etc. to detect changes
  961.    - but if it sees a disc change line go high (?) it flips to using
  962.    it. Well  maybe I'll add that in the future (!?)
  963. */
  964. static int check_floppy_change(dev_t dev)
  965. {
  966. unsigned int drive = (dev & 0x03);
  967. if (MAJOR(dev) != MAJOR_NR) {
  968. printk("floppy_changed: not a floppyn");
  969. return 0;
  970. }
  971. if (test_bit(drive, &fake_change)) {
  972. /* simulated change (e.g. after formatting) */
  973. return 1;
  974. }
  975. if (test_bit(drive, &changed_floppies)) {
  976. /* surely changed (the WP signal changed at least once) */
  977. return 1;
  978. }
  979. if (unit[drive].wpstat) {
  980. /* WP is on -> could be changed: to be sure, buffers should be
  981.    * invalidated...
  982.  */
  983. return 1;
  984. }
  985. return 1; /* DAG - was 0 */
  986. }
  987. static int floppy_revalidate(dev_t dev)
  988. {
  989. int drive = dev & 3;
  990. if (test_bit(drive, &changed_floppies) || test_bit(drive, &fake_change)
  991.     || unit[drive].disktype == 0) {
  992. #ifdef TRACKBUFFER
  993. BufferDrive = -1;
  994. #endif
  995. clear_bit(drive, &fake_change);
  996. clear_bit(drive, &changed_floppies);
  997. unit[drive].disktype = 0;
  998. }
  999. return 0;
  1000. }
  1001. static __inline__ void copy_buffer(void *from, void *to)
  1002. {
  1003. ulong *p1 = (ulong *) from, *p2 = (ulong *) to;
  1004. int cnt;
  1005. for (cnt = 512 / 4; cnt; cnt--)
  1006. *p2++ = *p1++;
  1007. }
  1008. /* This sets up the global variables describing the current request. */
  1009. static void setup_req_params(int drive)
  1010. {
  1011. int block = ReqBlock + ReqCnt;
  1012. ReqTrack = block / unit[drive].disktype->spt;
  1013. ReqSector = block - ReqTrack * unit[drive].disktype->spt + 1;
  1014. ReqSide = ReqTrack & 1;
  1015. ReqTrack >>= 1;
  1016. ReqData = ReqBuffer + 512 * ReqCnt;
  1017. #ifdef TRACKBUFFER
  1018. read_track = (ReqCmd == READ && CURRENT_ERRORS == 0);
  1019. #endif
  1020. DPRINT(("Request params: Si=%d Tr=%d Se=%d Data=%08lxn", ReqSide,
  1021. ReqTrack, ReqSector, (unsigned long) ReqData));
  1022. }
  1023. static void redo_fd_request(void)
  1024. {
  1025. int device, drive, type;
  1026. struct archy_floppy_struct *floppy;
  1027. DPRINT(("redo_fd_request: CURRENT=%08lx CURRENT->rq_dev=%04x CURRENT->sector=%ldn",
  1028. (unsigned long) CURRENT, CURRENT ? CURRENT->rq_dev : 0,
  1029. !QUEUE_EMPTY ? CURRENT->sector : 0));
  1030. if (!QUEUE_EMPTY && CURRENT->rq_status == RQ_INACTIVE)
  1031. goto the_end;
  1032. repeat:
  1033. if (QUEUE_EMPTY)
  1034. goto the_end;
  1035. if (MAJOR(CURRENT->rq_dev) != MAJOR_NR)
  1036. panic(DEVICE_NAME ": request list destroyed");
  1037. if (CURRENT->bh) {
  1038. if (!buffer_locked(CURRENT->bh))
  1039. panic(DEVICE_NAME ": block not locked");
  1040. }
  1041. device = MINOR(CURRENT_DEVICE);
  1042. drive = device & 3;
  1043. type = device >> 2;
  1044. floppy = &unit[drive];
  1045. if (!floppy->connected) {
  1046. /* drive not connected */
  1047. printk("Unknown Device: fd%dn", drive);
  1048. end_request(0);
  1049. goto repeat;
  1050. }
  1051. if (type == 0) {
  1052. if (!floppy->disktype) {
  1053. Probing = 1;
  1054. floppy->disktype = disk_type + NUM_DISK_TYPES - 1;
  1055. floppy_sizes[drive] = floppy->disktype->blocks >> 1;
  1056. floppy->autoprobe = 1;
  1057. }
  1058. } else {
  1059. /* user supplied disk type */
  1060. --type;
  1061. if (type >= NUM_DISK_TYPES) {
  1062. printk("fd%d: invalid disk format", drive);
  1063. end_request(0);
  1064. goto repeat;
  1065. }
  1066. floppy->disktype = &disk_type[type];
  1067. floppy_sizes[drive] = disk_type[type].blocks >> 1;
  1068. floppy->autoprobe = 0;
  1069. }
  1070. if (CURRENT->sector + 1 > floppy->disktype->blocks) {
  1071. end_request(0);
  1072. goto repeat;
  1073. }
  1074. /* stop deselect timer */
  1075. del_timer(&motor_off_timer);
  1076. ReqCnt = 0;
  1077. ReqCmd = CURRENT->cmd;
  1078. ReqBlock = CURRENT->sector;
  1079. ReqBuffer = CURRENT->buffer;
  1080. setup_req_params(drive);
  1081. do_fd_action(drive);
  1082. return;
  1083. the_end:
  1084. finish_fdc();
  1085. }
  1086. static void fd1772_checkint(void)
  1087. {
  1088. extern int fdc1772_bytestogo;
  1089. /*printk("fd1772_checkint %dn",fdc1772_fdc_int_done);*/
  1090. if (fdc1772_fdc_int_done)
  1091. floppy_irqconsequencehandler();
  1092. if ((MultReadInProgress) && (fdc1772_bytestogo==0)) fd_readtrack_check(0);
  1093. if (fdc_busy) {
  1094. queue_task(&fd1772_tq,&tq_immediate);
  1095. mark_bh(IMMEDIATE_BH);
  1096. }
  1097. }
  1098. void do_fd_request(request_queue_t* q)
  1099. {
  1100. unsigned long flags;
  1101. DPRINT(("do_fd_request for pid %dn", current->pid));
  1102. if (fdc_busy) return;
  1103. save_flags(flags);
  1104. cli();
  1105. while (fdc_busy)
  1106. sleep_on(&fdc_wait);
  1107. fdc_busy = 1;
  1108. ENABLE_IRQ();
  1109. restore_flags(flags);
  1110. fdc1772_fdc_int_done = 0;
  1111. redo_fd_request();
  1112. queue_task(&fd1772_tq,&tq_immediate);
  1113. mark_bh(IMMEDIATE_BH);
  1114. }
  1115. static int invalidate_drive(int rdev)
  1116. {
  1117. /* invalidate the buffer track to force a reread */
  1118. #ifdef TRACKBUFFER
  1119. BufferDrive = -1;
  1120. #endif
  1121. set_bit(rdev & 3, &fake_change);
  1122. check_disk_change(rdev);
  1123. return 0;
  1124. }
  1125. static int fd_ioctl(struct inode *inode, struct file *filp,
  1126.     unsigned int cmd, unsigned long param)
  1127. {
  1128. int drive, device;
  1129. device = inode->i_rdev;
  1130. drive = MINOR(device);
  1131. switch (cmd) {
  1132. case FDFMTBEG:
  1133. return 0;
  1134. /* case FDC1772LRPRM:  ??? DAG what does this do?? 
  1135.    unit[drive].disktype = NULL;
  1136.    floppy_sizes[drive] = MAX_DISK_SIZE;
  1137.    return invalidate_drive (device); */
  1138. case FDFMTEND:
  1139. case FDFLUSH:
  1140. return invalidate_drive(drive);
  1141. }
  1142. if (!capable(CAP_SYS_ADMIN))
  1143. return -EPERM;
  1144. if (drive < 0 || drive > 3)
  1145. return -EINVAL;
  1146. switch (cmd) {
  1147. default:
  1148. return -EINVAL;
  1149. }
  1150. return 0;
  1151. }
  1152. /* Initialize the 'unit' variable for drive 'drive' */
  1153. static void fd_probe(int drive)
  1154. {
  1155. unit[drive].connected = 0;
  1156. unit[drive].disktype = NULL;
  1157. if (!fd_test_drive_present(drive))
  1158. return;
  1159. unit[drive].connected = 1;
  1160. unit[drive].track = -1; /* If we put the auto detect back in this can go to 0 */
  1161. unit[drive].steprate = FDC1772STEP_6;
  1162. MotorOn = 1; /* from probe restore operation! */
  1163. }
  1164. /* This function tests the physical presence of a floppy drive (not
  1165.  * whether a disk is inserted). This is done by issuing a restore
  1166.  * command, waiting max. 2 seconds (that should be enough to move the
  1167.  * head across the whole disk) and looking at the state of the "TR00"
  1168.  * signal. This should now be raised if there is a drive connected
  1169.  * (and there is no hardware failure :-) Otherwise, the drive is
  1170.  * declared absent.
  1171.  */
  1172. static int fd_test_drive_present(int drive)
  1173. {
  1174. unsigned long timeout;
  1175. unsigned char status;
  1176. int ok;
  1177. printk("fd_test_drive_present %dn", drive);
  1178. if (drive > 1)
  1179. return (0);
  1180. return (1); /* Simple hack for the moment - the autodetect doesn't seem to work on arc */
  1181. fd_select_drive(drive);
  1182. /* disable interrupt temporarily */
  1183. DISABLE_IRQ();
  1184. FDC1772_WRITE(FDC1772REG_TRACK, 0x00); /* was ff00 why? */
  1185. FDC1772_WRITE(FDC1772REG_CMD, FDC1772CMD_RESTORE | FDC1772CMDADD_H | FDC1772STEP_6);
  1186. /*printk("fd_test_drive_present: Going into timeout loopn"); */
  1187. for (ok = 0, timeout = jiffies + 2 * HZ + HZ / 2; time_before(jiffies, timeout);) {
  1188. /*  What does this piece of atariism do? - query for an interrupt? */
  1189. /*  if (!(mfp.par_dt_reg & 0x20))
  1190.    break; */
  1191. /* Well this is my nearest guess - quit when we get an FDC interrupt */
  1192. if (ioc_readb(IOC_FIQSTAT) & 2)
  1193. break;
  1194. }
  1195. /*printk("fd_test_drive_present: Coming out of timeout loopn"); */
  1196. status = FDC1772_READ(FDC1772REG_STATUS);
  1197. ok = (status & FDC1772STAT_TR00) != 0;
  1198. /*printk("fd_test_drive_present: ok=%dn",ok); */
  1199. /* force interrupt to abort restore operation (FDC1772 would try
  1200.  * about 50 seconds!) */
  1201. FDC1772_WRITE(FDC1772REG_CMD, FDC1772CMD_FORCI);
  1202. udelay(500);
  1203. status = FDC1772_READ(FDC1772REG_STATUS);
  1204. udelay(20);
  1205. /*printk("fd_test_drive_present: just before OK code %dn",ok); */
  1206. if (ok) {
  1207. /* dummy seek command to make WP bit accessible */
  1208. FDC1772_WRITE(FDC1772REG_DATA, 0);
  1209. FDC1772_WRITE(FDC1772REG_CMD, FDC1772CMD_SEEK);
  1210. printk("fd_test_drive_present: just before wait for intn");
  1211. /* DAG: Guess means wait for interrupt */
  1212. while (!(ioc_readb(IOC_FIQSTAT) & 2));
  1213. printk("fd_test_drive_present: just after wait for intn");
  1214. status = FDC1772_READ(FDC1772REG_STATUS);
  1215. }
  1216. printk("fd_test_drive_present: just before ENABLE_IRQn");
  1217. ENABLE_IRQ();
  1218. printk("fd_test_drive_present: about to returnn");
  1219. return (ok);
  1220. }
  1221. /* Look how many and which kind of drives are connected. If there are
  1222.  * floppies, additionally start the disk-change and motor-off timers.
  1223.  */
  1224. static void config_types(void)
  1225. {
  1226. int drive, cnt = 0;
  1227. printk("Probing floppy drive(s):n");
  1228. for (drive = 0; drive < FD_MAX_UNITS; drive++) {
  1229. fd_probe(drive);
  1230. if (unit[drive].connected) {
  1231. printk("fd%dn", drive);
  1232. ++cnt;
  1233. }
  1234. }
  1235. if (FDC1772_READ(FDC1772REG_STATUS) & FDC1772STAT_BUSY) {
  1236. /* If FDC1772 is still busy from probing, give it another FORCI
  1237.  * command to abort the operation. If this isn't done, the FDC1772
  1238.  * will interrupt later and its IRQ line stays low, because
  1239.  * the status register isn't read. And this will block any
  1240.  * interrupts on this IRQ line :-(
  1241.  */
  1242. FDC1772_WRITE(FDC1772REG_CMD, FDC1772CMD_FORCI);
  1243. udelay(500);
  1244. FDC1772_READ(FDC1772REG_STATUS);
  1245. udelay(20);
  1246. }
  1247. if (cnt > 0) {
  1248. START_MOTOR_OFF_TIMER(FD_MOTOR_OFF_DELAY);
  1249. if (cnt == 1)
  1250. fd_select_drive(0);
  1251. /*START_CHECK_CHANGE_TIMER( CHECK_CHANGE_DELAY ); */
  1252. }
  1253. }
  1254. /*
  1255.  * floppy_open check for aliasing (/dev/fd0 can be the same as
  1256.  * /dev/PS0 etc), and disallows simultaneous access to the same
  1257.  * drive with different device numbers.
  1258.  */
  1259. static int floppy_open(struct inode *inode, struct file *filp)
  1260. {
  1261. int drive;
  1262. int old_dev;
  1263. if (!filp) {
  1264. DPRINT(("Weird, open called with filp=0n"));
  1265. return -EIO;
  1266. }
  1267. drive = MINOR(inode->i_rdev) & 3;
  1268. if ((MINOR(inode->i_rdev) >> 2) > NUM_DISK_TYPES)
  1269. return -ENXIO;
  1270. old_dev = fd_device[drive];
  1271. if (fd_ref[drive])
  1272. if (old_dev != inode->i_rdev)
  1273. return -EBUSY;
  1274. if (fd_ref[drive] == -1 || (fd_ref[drive] && filp->f_flags & O_EXCL))
  1275. return -EBUSY;
  1276. if (filp->f_flags & O_EXCL)
  1277. fd_ref[drive] = -1;
  1278. else
  1279. fd_ref[drive]++;
  1280. fd_device[drive] = inode->i_rdev;
  1281. if (old_dev && old_dev != inode->i_rdev)
  1282. invalidate_buffers(old_dev);
  1283. if (filp->f_flags & O_NDELAY)
  1284. return 0;
  1285. if (filp->f_mode & 3) {
  1286. check_disk_change(inode->i_rdev);
  1287. if (filp->f_mode & 2) {
  1288. if (unit[drive].wpstat) {
  1289. floppy_release(inode, filp);
  1290. return -EROFS;
  1291. }
  1292. }
  1293. }
  1294. return 0;
  1295. }
  1296. static int floppy_release(struct inode *inode, struct file *filp)
  1297. {
  1298. int drive = MINOR(inode->i_rdev) & 3;
  1299. if (fd_ref[drive] < 0)
  1300. fd_ref[drive] = 0;
  1301. else if (!fd_ref[drive]--) {
  1302. printk("floppy_release with fd_ref == 0");
  1303. fd_ref[drive] = 0;
  1304. }
  1305. return 0;
  1306. }
  1307. static struct block_device_operations floppy_fops =
  1308. {
  1309. open: floppy_open,
  1310. release: floppy_release,
  1311. ioctl: fd_ioctl,
  1312. check_media_change: check_floppy_change,
  1313. revalidate: floppy_revalidate,
  1314. };
  1315. int fd1772_init(void)
  1316. {
  1317. int err;
  1318. int i;
  1319. if (!machine_is_archimedes())
  1320. return 0;
  1321. if (register_blkdev(MAJOR_NR, "fd", &floppy_fops)) {
  1322. printk("Unable to get major %d for floppyn", MAJOR_NR);
  1323. return 1;
  1324. }
  1325. if (request_dma(FLOPPY_DMA, "fd1772")) {
  1326. printk("Unable to grab DMA%d for the floppy (1772) drivern", FLOPPY_DMA);
  1327. return 1;
  1328. };
  1329. if (request_dma(FIQ_FD1772, "fd1772 end")) {
  1330. printk("Unable to grab DMA%d for the floppy (1772) drivern", FIQ_FD1772);
  1331. err = 1; /* XXX */
  1332. goto cleanup_dma;
  1333. };
  1334. /* initialize variables */
  1335. err = -ENOMEM;
  1336. SelectedDrive = -1;
  1337. #ifdef TRACKBUFFER
  1338. BufferDrive = BufferSide = BufferTrack = -1;
  1339. /* Atari uses 512 - I want to eventually cope with 1K sectors */
  1340. DMABuffer = (char *)kmalloc((FD1772_MAX_SECTORS+1)*512,GFP_KERNEL);
  1341. if (DMABuffer == NULL)
  1342. goto cleanup_dma;
  1343. TrackBuffer = DMABuffer + 512;
  1344. #else
  1345. /* Allocate memory for the DMAbuffer - on the Atari this takes it
  1346.    out of some special memory... */
  1347. DMABuffer = (char *) kmalloc(2048); /* Copes with pretty large sectors */
  1348. if (DMABuffer == NULL)
  1349. goto cleanup_dma;
  1350. #endif
  1351. enable_dma(FIQ_FD1772); /* This inserts a call to our command end routine */
  1352. for (i = 0; i < FD_MAX_UNITS; i++) {
  1353. unit[i].track = -1;
  1354. }
  1355. for (i = 0; i < 256; i++)
  1356. if ((i >> 2) > 0 && (i >> 2) <= NUM_DISK_TYPES)
  1357. floppy_sizes[i] = disk_type[(i >> 2) - 1].blocks >> 1;
  1358. else
  1359. floppy_sizes[i] = MAX_DISK_SIZE;
  1360. blk_size[MAJOR_NR] = floppy_sizes;
  1361. blksize_size[MAJOR_NR] = floppy_blocksizes;
  1362. blk_init_queue(BLK_DEFAULT_QUEUE(MAJOR_NR), DEVICE_REQUEST);
  1363. config_types();
  1364. return 0;
  1365. cleanup_dma:
  1366. free_dma(FLOPPY_DMA);
  1367. return err;
  1368. }