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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/drivers/block/mfmhd.c
  3.  *
  4.  * Copyright (C) 1995, 1996 Russell King, Dave Alan Gilbert (gilbertd@cs.man.ac.uk)
  5.  *
  6.  * MFM hard drive code [experimental]
  7.  */
  8. /*
  9.  * Change list:
  10.  *
  11.  *  3/2/96:DAG: Started a change list :-)
  12.  *              Set the hardsect_size pointers up since we are running 256 byte
  13.  *                sectors
  14.  *              Added DMA code, put it into the rw_intr
  15.  *              Moved RCAL out of generic interrupt code - don't want to do it
  16.  *                while DMA'ing - its now in individual handlers.
  17.  *              Took interrupt handlers off task queue lists and called
  18.  *                directly - not sure of implications.
  19.  *
  20.  * 18/2/96:DAG: Well its reading OK I think, well enough for image file code
  21.  *              to find the image file; but now I've discovered that I actually
  22.  *              have to put some code in for image files.
  23.  *
  24.  *              Added stuff for image files; seems to work, but I've not
  25.  *              got a multisegment image file (I don't think!).
  26.  *              Put in a hack (yep a real hack) for multiple cylinder reads.
  27.  *              Not convinced its working.
  28.  *
  29.  *  5/4/96:DAG: Added asm/hardware.h and use IOC_ macros
  30.  *              Rewrote dma code in mfm.S (again!) - now takes a word at a time
  31.  *              from main RAM for speed; still doesn't feel speedy!
  32.  *
  33.  * 20/4/96:DAG: After rewriting mfm.S a heck of a lot of times and speeding
  34.  *              things up, I've finally figured out why its so damn slow.
  35.  *              Linux is only reading a block at a time, and so you never
  36.  *              get more than 1K per disc revoloution ~=60K/second.
  37.  *
  38.  * 27/4/96:DAG: On Russell's advice I change ll_rw_blk.c to ask it to
  39.  *              join adjacent blocks together. Everything falls flat on its
  40.  *              face.
  41.  *              Four hours of debugging later; I hadn't realised that
  42.  *              ll_rw_blk would be so generous as to join blocks whose
  43.  *              results aren't going into consecutive buffers.
  44.  * 
  45.  *              OK; severe rehacking of mfm_rw_interrupt; now end_request's
  46.  *              as soon as its DMA'd each request.  Odd thing is that
  47.  *              we are sometimes getting interrupts where we are not transferring
  48.  *              any data; why? Is that what happens when you miss? I doubt
  49.  *              it; are we too fast? No - its just at command ends. Got 240K/s
  50.  *              better than before, but RiscOS hits 480K/s
  51.  *
  52.  * 25/6/96:RMK: Fixed init code to allow the MFM podule to work.  Increased the
  53.  *              number of errors for my Miniscribe drive (8425).
  54.  *
  55.  * 30/6/96:DAG: Russell suggested that a check drive 0 might turn the LEDs off
  56.  *              - so in request_done just before it clears Busy it sends a
  57.  *              check drive 0 - and the LEDs go off!!!!
  58.  *
  59.  *              Added test for mainboard controller. - Removes need for separate
  60.  *              define.
  61.  *
  62.  * 13/7/96:DAG: Changed hardware sectore size to 512 in attempt to make
  63.  *              IM drivers work.
  64.  * 21/7/96:DAG: Took out old image file stuff (accessing it now produces an IO
  65.  *              error.)
  66.  *
  67.  * 17/8/96:DAG: Ran through indent -kr -i8; evil - all my nice 2 character indents
  68.  *              gone :-( Hand modified afterwards.
  69.  * Took out last remains of the older image map system.
  70.  *
  71.  * 22/9/96:DAG: Changed mfm.S so it will carry on DMA'ing til; BSY is dropped
  72.  * Changed mfm_rw_intr so that it doesn't follow the error
  73.  * code until BSY is dropped. Nope - still broke. Problem
  74.  * may revolve around when it reads the results for the error
  75.  * number?
  76.  *
  77.  *16/11/96:DAG: Modified for 2.0.18; request_irq changed
  78.  *
  79.  *17/12/96:RMK: Various cleanups, reorganisation, and the changes for new IO system.
  80.  * Improved probe for onboard MFM chip - it was hanging on my A5k.
  81.  * Added autodetect CHS code such that we don't rely on the presence
  82.  * of an ADFS boot block.  Added ioport resource manager calls so
  83.  * that we don't clash with already-running hardware (eg. RiscPC Ether
  84.  * card slots if someone tries this)!
  85.  *
  86.  * 17/1/97:RMK: Upgraded to 2.1 kernels.
  87.  *
  88.  *  4/3/98:RMK: Changed major number to 21.
  89.  *
  90.  * 27/6/98:RMK: Changed asm/delay.h to linux/delay.h for mdelay().
  91.  */
  92. /*
  93.  * Possible enhancements:
  94.  *  Multi-thread the code so that it is possible that while one drive
  95.  *  is seeking, the other one can be reading data/seeking as well.
  96.  *  This would be a performance boost with dual drive systems.
  97.  */
  98. #include <linux/module.h>
  99. #include <linux/config.h>
  100. #include <linux/sched.h>
  101. #include <linux/fs.h>
  102. #include <linux/interrupt.h>
  103. #include <linux/kernel.h>
  104. #include <linux/timer.h>
  105. #include <linux/tqueue.h>
  106. #include <linux/mm.h>
  107. #include <linux/errno.h>
  108. #include <linux/genhd.h>
  109. #include <linux/major.h>
  110. #include <linux/ioport.h>
  111. #include <linux/delay.h>
  112. #define MAJOR_NR MFM_ACORN_MAJOR
  113. #include <linux/blk.h>
  114. #include <linux/blkpg.h>
  115. #include <asm/system.h>
  116. #include <asm/io.h>
  117. #include <asm/irq.h>
  118. #include <asm/uaccess.h>
  119. #include <asm/dma.h>
  120. #include <asm/hardware.h>
  121. #include <asm/ecard.h>
  122. #include <asm/hardware/ioc.h>
  123. /*
  124.  * This sort of stuff should be in a header file shared with ide.c, hd.c, xd.c etc
  125.  */
  126. #ifndef HDIO_GETGEO
  127. #define HDIO_GETGEO 0x301
  128. struct hd_geometry {
  129. unsigned char heads;
  130. unsigned char sectors;
  131. unsigned short cylinders;
  132. unsigned long start;
  133. };
  134. #endif
  135. /*
  136.  * Configuration section
  137.  *
  138.  * This is the maximum number of drives that we accept
  139.  */
  140. #define MFM_MAXDRIVES 2
  141. /*
  142.  * Linux I/O address of onboard MFM controller or 0 to disable this
  143.  */
  144. #define ONBOARD_MFM_ADDRESS ((0x002d0000 >> 2) | 0x80000000)
  145. /*
  146.  * Uncomment this to enable debugging in the MFM driver...
  147.  */
  148. #ifndef DEBUG
  149. /*#define DEBUG */
  150. #endif
  151. /*
  152.  * List of card types that we recognise
  153.  */
  154. static const card_ids mfm_cids[] = {
  155. { MANU_ACORN, PROD_ACORN_MFM },
  156. { 0xffff, 0xffff }
  157. };
  158. /*
  159.  * End of configuration
  160.  */
  161.  
  162. /*
  163.  * This structure contains all information to do with a particular physical
  164.  * device.
  165.  */
  166. struct mfm_info {
  167. unsigned char sectors;
  168. unsigned char heads;
  169. unsigned short cylinders;
  170. unsigned short lowcurrent;
  171. unsigned short precomp;
  172. #define NO_TRACK -1
  173. #define NEED_1_RECAL -2
  174. #define NEED_2_RECAL -3
  175.  int cylinder;
  176. unsigned int access_count;
  177. unsigned int busy;
  178. struct {
  179. char recal;
  180. char report;
  181. char abort;
  182. } errors;
  183. } mfm_info[MFM_MAXDRIVES];
  184. #define MFM_DRV_INFO mfm_info[raw_cmd.dev]
  185. static struct hd_struct mfm[MFM_MAXDRIVES << 6];
  186. static int mfm_sizes[MFM_MAXDRIVES << 6];
  187. static int mfm_blocksizes[MFM_MAXDRIVES << 6];
  188. static int mfm_sectsizes[MFM_MAXDRIVES << 6];
  189. static DECLARE_WAIT_QUEUE_HEAD(mfm_wait_open);
  190. /* Stuff from the assembly routines */
  191. extern unsigned int hdc63463_baseaddress; /* Controller base address */
  192. extern unsigned int hdc63463_irqpolladdress; /* Address to read to test for int */
  193. extern unsigned int hdc63463_irqpollmask; /* Mask for irq register */
  194. extern unsigned int hdc63463_dataptr; /* Pointer to kernel data space to DMA */
  195. extern int hdc63463_dataleft; /* Number of bytes left to transfer */
  196. static int lastspecifieddrive;
  197. static unsigned Busy;
  198. static unsigned int PartFragRead; /* The number of sectors which have been read
  199.    during a partial read split over two
  200.    cylinders.  If 0 it means a partial
  201.    read did not occur. */
  202. static unsigned int PartFragRead_RestartBlock; /* Where to restart on a split access */
  203. static unsigned int PartFragRead_SectorsLeft; /* Where to restart on a split access */
  204. static int Sectors256LeftInCurrent; /* i.e. 256 byte sectors left in current */
  205. static int SectorsLeftInRequest; /* i.e. blocks left in the thing mfm_request was called for */
  206. static int Copy_Sector; /* The 256 byte sector we are currently at - fragments need to know 
  207.    where to take over */
  208. static char *Copy_buffer;
  209. static void mfm_seek(void);
  210. static void mfm_rerequest(void);
  211. static void mfm_request(void);
  212. static int mfm_reread_partitions(kdev_t dev);
  213. static void mfm_specify (void);
  214. static void issue_request(int dev, unsigned int block, unsigned int nsect,
  215.   struct request *req);
  216. static unsigned int mfm_addr; /* Controller address */
  217. static unsigned int mfm_IRQPollLoc; /* Address to read for IRQ information */
  218. static unsigned int mfm_irqenable; /* Podule IRQ enable location */
  219. static unsigned char mfm_irq; /* Interrupt number */
  220. static int mfm_drives = 0; /* drives available */
  221. static int mfm_status = 0; /* interrupt status */
  222. static int *errors;
  223. static struct rawcmd {
  224. unsigned int dev;
  225. unsigned int cylinder;
  226. unsigned int head;
  227. unsigned int sector;
  228. unsigned int cmdtype;
  229. unsigned int cmdcode;
  230. unsigned char cmddata[16];
  231. unsigned int cmdlen;
  232. } raw_cmd;
  233. static unsigned char result[16];
  234. static struct cont {
  235. void (*interrupt) (void); /* interrupt handler */
  236. void (*error) (void); /* error handler */
  237. void (*redo) (void); /* redo handler */
  238. void (*done) (int st); /* done handler */
  239. } *cont = NULL;
  240. #if 0
  241. static struct tq_struct mfm_tq = {0, 0, (void (*)(void *)) NULL, 0};
  242. #endif
  243. int number_mfm_drives = 1;
  244. /* ------------------------------------------------------------------------------------------ */
  245. /*
  246.  * From the HD63463 data sheet from Hitachi Ltd.
  247.  */
  248. #define MFM_COMMAND (mfm_addr + 0)
  249. #define MFM_DATAOUT (mfm_addr + 1)
  250. #define MFM_STATUS  (mfm_addr + 8)
  251. #define MFM_DATAIN  (mfm_addr + 9)
  252. #define CMD_ABT 0xF0 /* Abort */
  253. #define CMD_SPC 0xE8 /* Specify */
  254. #define CMD_TST 0xE0 /* Test */
  255. #define CMD_RCLB 0xC8 /* Recalibrate */
  256. #define CMD_SEK 0xC0 /* Seek */
  257. #define CMD_WFS 0xAB /* Write Format Skew */
  258. #define CMD_WFM 0xA3 /* Write Format */
  259. #define CMD_MTB 0x90 /* Memory to buffer */
  260. #define CMD_CMPD 0x88 /* Compare data */
  261. #define CMD_WD 0x87 /* Write data */
  262. #define CMD_RED 0x70 /* Read erroneous data */
  263. #define CMD_RIS 0x68 /* Read ID skew */
  264. #define CMD_FID 0x61 /* Find ID */
  265. #define CMD_RID 0x60 /* Read ID */
  266. #define CMD_BTM 0x50 /* Buffer to memory */
  267. #define CMD_CKD 0x48 /* Check data */
  268. #define CMD_RD 0x40 /* Read data */
  269. #define CMD_OPBW 0x38 /* Open buffer write */
  270. #define CMD_OPBR 0x30 /* Open buffer read */
  271. #define CMD_CKV 0x28 /* Check drive */
  272. #define CMD_CKE 0x20 /* Check ECC */
  273. #define CMD_POD 0x18 /* Polling disable */
  274. #define CMD_POL 0x10 /* Polling enable */
  275. #define CMD_RCAL 0x08 /* Recall */
  276. #define STAT_BSY 0x8000 /* Busy */
  277. #define STAT_CPR 0x4000 /* Command Parameter Rejection */
  278. #define STAT_CED 0x2000 /* Command end */
  279. #define STAT_SED 0x1000 /* Seek end */
  280. #define STAT_DER 0x0800 /* Drive error */
  281. #define STAT_ABN 0x0400 /* Abnormal end */
  282. #define STAT_POL 0x0200 /* Polling */
  283. /* ------------------------------------------------------------------------------------------ */
  284. #ifdef DEBUG
  285. static void console_printf(const char *fmt,...)
  286. {
  287. static char buffer[2048]; /* Arbitary! */
  288. extern void console_print(const char *);
  289. unsigned long flags;
  290. va_list ap;
  291. save_flags_cli(flags);
  292. va_start(ap, fmt);
  293. vsprintf(buffer, fmt, ap);
  294. console_print(buffer);
  295. va_end(fmt);
  296. restore_flags(flags);
  297. }; /* console_printf */
  298. #define DBG(x...) console_printf(x)
  299. #else
  300. #define DBG(x...)
  301. #endif
  302. static void print_status(void)
  303. {
  304. char *error;
  305. static char *errors[] = {
  306.          "no error",
  307.  "command aborted",
  308.  "invalid command",
  309.  "parameter error",
  310.  "not initialised",
  311.  "rejected TEST",
  312.  "no useld",
  313.  "write fault",
  314.  "not ready",
  315.  "no scp",
  316.  "in seek",
  317.  "invalid NCA",
  318.  "invalid step rate",
  319.  "seek error",
  320.  "over run",
  321.  "invalid PHA",
  322.  "data field EEC error",
  323.  "data field CRC error",
  324.  "error corrected",
  325.  "data field fatal error",
  326.  "no data am",
  327.  "not hit",
  328.  "ID field CRC error",
  329.  "time over",
  330.  "no ID am",
  331.  "not writable"
  332. };
  333. if (result[1] < 0x65)
  334. error = errors[result[1] >> 2];
  335. else
  336. error = "unknown";
  337. printk("(");
  338. if (mfm_status & STAT_BSY) printk("BSY ");
  339. if (mfm_status & STAT_CPR) printk("CPR ");
  340. if (mfm_status & STAT_CED) printk("CED ");
  341. if (mfm_status & STAT_SED) printk("SED ");
  342. if (mfm_status & STAT_DER) printk("DER ");
  343. if (mfm_status & STAT_ABN) printk("ABN ");
  344. if (mfm_status & STAT_POL) printk("POL ");
  345. printk(") SSB = %X (%s)n", result[1], error);
  346. }
  347. /* ------------------------------------------------------------------------------------- */
  348. static void issue_command(int command, unsigned char *cmdb, int len)
  349. {
  350. int status;
  351. #ifdef DEBUG
  352. int i;
  353. console_printf("issue_command: %02X: ", command);
  354. for (i = 0; i < len; i++)
  355. console_printf("%02X ", cmdb[i]);
  356. console_printf("n");
  357. #endif
  358. do {
  359. status = inw(MFM_STATUS);
  360. } while (status & (STAT_BSY | STAT_POL));
  361. DBG("issue_command: status after pol/bsy loop: %02X:n ", status >> 8);
  362. if (status & (STAT_CPR | STAT_CED | STAT_SED | STAT_DER | STAT_ABN)) {
  363. outw(CMD_RCAL, MFM_COMMAND);
  364. while (inw(MFM_STATUS) & STAT_BSY);
  365. }
  366. status = inw(MFM_STATUS);
  367. DBG("issue_command: status before parameter issue: %02X:n ", status >> 8);
  368. while (len > 0) {
  369. outw(cmdb[1] | (cmdb[0] << 8), MFM_DATAOUT);
  370. len -= 2;
  371. cmdb += 2;
  372. }
  373. status = inw(MFM_STATUS);
  374. DBG("issue_command: status before command issue: %02X:n ", status >> 8);
  375. outw(command, MFM_COMMAND);
  376. status = inw(MFM_STATUS);
  377. DBG("issue_command: status immediatly after command issue: %02X:n ", status >> 8);
  378. }
  379. static void wait_for_completion(void)
  380. {
  381. while ((mfm_status = inw(MFM_STATUS)) & STAT_BSY);
  382. }
  383. static void wait_for_command_end(void)
  384. {
  385. int i;
  386. while (!((mfm_status = inw(MFM_STATUS)) & STAT_CED));
  387. for (i = 0; i < 16;) {
  388. int in;
  389. in = inw(MFM_DATAIN);
  390. result[i++] = in >> 8;
  391. result[i++] = in;
  392. }
  393. outw (CMD_RCAL, MFM_COMMAND);
  394. }
  395. /* ------------------------------------------------------------------------------------- */
  396. static void mfm_rw_intr(void)
  397. {
  398. int old_status; /* Holds status on entry, we read to see if the command just finished */
  399. #ifdef DEBUG
  400. console_printf("mfm_rw_intr...dataleft=%dn", hdc63463_dataleft);
  401. print_status();
  402. #endif
  403.   /* Now don't handle the error until BSY drops */
  404. if ((mfm_status & (STAT_DER | STAT_ABN)) && ((mfm_status&STAT_BSY)==0)) {
  405. /* Something has gone wrong - let's try that again */
  406. outw(CMD_RCAL, MFM_COMMAND); /* Clear interrupt condition */
  407. if (cont) {
  408. DBG("mfm_rw_intr: DER/ABN errn");
  409. cont->error();
  410. cont->redo();
  411. };
  412. return;
  413. };
  414. /* OK so what ever happend its not an error, now I reckon we are left between
  415.    a choice of command end or some data which is ready to be collected */
  416. /* I think we have to transfer data while the interrupt line is on and its
  417.    not any other type of interrupt */
  418. if (CURRENT->cmd == WRITE) {
  419. extern void hdc63463_writedma(void);
  420. if ((hdc63463_dataleft <= 0) && (!(mfm_status & STAT_CED))) {
  421. printk("mfm_rw_intr: Apparent DMA write request when no more to DMAn");
  422. if (cont) {
  423. cont->error();
  424. cont->redo();
  425. };
  426. return;
  427. };
  428. hdc63463_writedma();
  429. } else {
  430. extern void hdc63463_readdma(void);
  431. if ((hdc63463_dataleft <= 0) && (!(mfm_status & STAT_CED))) {
  432. printk("mfm_rw_intr: Apparent DMA read request when no more to DMAn");
  433. if (cont) {
  434. cont->error();
  435. cont->redo();
  436. };
  437. return;
  438. };
  439. DBG("Going to try read dma..............status=0x%x, buffer=%pn", mfm_status, hdc63463_dataptr);
  440. hdc63463_readdma();
  441. }; /* Read */
  442. if (hdc63463_dataptr != ((unsigned int) Copy_buffer + 256)) {
  443. /* If we didn't actually manage to get any data on this interrupt - but why? We got the interrupt */
  444. /* Ah - well looking at the status its just when we get command end; so no problem */
  445. /*console_printf("mfm: dataptr mismatch. dataptr=0x%08x Copy_buffer+256=0x%08pn",
  446.    hdc63463_dataptr,Copy_buffer+256);
  447.    print_status(); */
  448. } else {
  449. Sectors256LeftInCurrent--;
  450. Copy_buffer += 256;
  451. Copy_Sector++;
  452. /* We have come to the end of this request */
  453. if (!Sectors256LeftInCurrent) {
  454. DBG("mfm: end_request for CURRENT=0x%p CURRENT(sector=%d current_nr_sectors=%d nr_sectors=%d)n",
  455.        CURRENT, CURRENT->sector, CURRENT->current_nr_sectors, CURRENT->nr_sectors);
  456. CURRENT->nr_sectors -= CURRENT->current_nr_sectors;
  457. CURRENT->sector += CURRENT->current_nr_sectors;
  458. SectorsLeftInRequest -= CURRENT->current_nr_sectors;
  459. end_request(1);
  460. if (SectorsLeftInRequest) {
  461. hdc63463_dataptr = (unsigned int) CURRENT->buffer;
  462. Copy_buffer = CURRENT->buffer;
  463. Sectors256LeftInCurrent = CURRENT->current_nr_sectors * 2;
  464. errors = &(CURRENT->errors);
  465. /* These should match the present calculations of the next logical sector
  466.    on the device
  467.    Copy_Sector=CURRENT->sector*2; */
  468. if (Copy_Sector != CURRENT->sector * 2)
  469. #ifdef DEBUG
  470. /*console_printf*/printk("mfm: Copy_Sector mismatch. Copy_Sector=%d CURRENT->sector*2=%dn",
  471. Copy_Sector, CURRENT->sector * 2);
  472. #else
  473. printk("mfm: Copy_Sector mismatch! Eek!n");
  474. #endif
  475. }; /* CURRENT */
  476. }; /* Sectors256LeftInCurrent */
  477. };
  478. old_status = mfm_status;
  479. mfm_status = inw(MFM_STATUS);
  480. if (mfm_status & (STAT_DER | STAT_ABN)) {
  481. /* Something has gone wrong - let's try that again */
  482. if (cont) {
  483. DBG("mfm_rw_intr: DER/ABN errorn");
  484. cont->error();
  485. cont->redo();
  486. };
  487. return;
  488. };
  489. /* If this code wasn't entered due to command_end but there is
  490.    now a command end we must read the command results out. If it was
  491.    entered like this then mfm_interrupt_handler would have done the
  492.    job. */
  493. if ((!((old_status & (STAT_CPR | STAT_BSY)) == STAT_CPR)) &&
  494.     ((mfm_status & (STAT_CPR | STAT_BSY)) == STAT_CPR)) {
  495. int len = 0;
  496. while (len < 16) {
  497. int in;
  498. in = inw(MFM_DATAIN);
  499. result[len++] = in >> 8;
  500. result[len++] = in;
  501. };
  502. }; /* Result read */
  503. /*console_printf ("mfm_rw_intr nearexit [%02X]n", __raw_readb(mfm_IRQPollLoc)); */
  504. /* If end of command move on */
  505. if (mfm_status & (STAT_CED)) {
  506. outw(CMD_RCAL, MFM_COMMAND); /* Clear interrupt condition */
  507. /* End of command - trigger the next command */
  508. if (cont) {
  509. cont->done(1);
  510. }
  511. DBG("mfm_rw_intr: returned from cont->donen");
  512. } else {
  513. /* Its going to generate another interrupt */
  514. SET_INTR(mfm_rw_intr);
  515. };
  516. }
  517. static void mfm_setup_rw(void)
  518. {
  519. DBG("setting up for rw...n");
  520. SET_INTR(mfm_rw_intr);
  521. issue_command(raw_cmd.cmdcode, raw_cmd.cmddata, raw_cmd.cmdlen);
  522. }
  523. static void mfm_recal_intr(void)
  524. {
  525. #ifdef DEBUG
  526. console_printf("recal intr - status = ");
  527. print_status();
  528. #endif
  529. outw(CMD_RCAL, MFM_COMMAND); /* Clear interrupt condition */
  530. if (mfm_status & (STAT_DER | STAT_ABN)) {
  531. printk("recal failedn");
  532. MFM_DRV_INFO.cylinder = NEED_2_RECAL;
  533. if (cont) {
  534. cont->error();
  535. cont->redo();
  536. }
  537. return;
  538. }
  539. /* Thats seek end - we are finished */
  540. if (mfm_status & STAT_SED) {
  541. issue_command(CMD_POD, NULL, 0);
  542. MFM_DRV_INFO.cylinder = 0;
  543. mfm_seek();
  544. return;
  545. }
  546. /* Command end without seek end (see data sheet p.20) for parallel seek
  547.    - we have to send a POL command to wait for the seek */
  548. if (mfm_status & STAT_CED) {
  549. SET_INTR(mfm_recal_intr);
  550. issue_command(CMD_POL, NULL, 0);
  551. return;
  552. }
  553. printk("recal: unknown statusn");
  554. }
  555. static void mfm_seek_intr(void)
  556. {
  557. #ifdef DEBUG
  558. console_printf("seek intr - status = ");
  559. print_status();
  560. #endif
  561. outw(CMD_RCAL, MFM_COMMAND); /* Clear interrupt condition */
  562. if (mfm_status & (STAT_DER | STAT_ABN)) {
  563. printk("seek failedn");
  564. MFM_DRV_INFO.cylinder = NEED_2_RECAL;
  565. if (cont) {
  566. cont->error();
  567. cont->redo();
  568. }
  569. return;
  570. }
  571. if (mfm_status & STAT_SED) {
  572. issue_command(CMD_POD, NULL, 0);
  573. MFM_DRV_INFO.cylinder = raw_cmd.cylinder;
  574. mfm_seek();
  575. return;
  576. }
  577. if (mfm_status & STAT_CED) {
  578. SET_INTR(mfm_seek_intr);
  579. issue_command(CMD_POL, NULL, 0);
  580. return;
  581. }
  582. printk("seek: unknown statusn");
  583. }
  584. /* IDEA2 seems to work better - its what RiscOS sets my
  585.  * disc to - on its SECOND call to specify!
  586.  */
  587. #define IDEA2
  588. #ifndef IDEA2
  589. #define SPEC_SL 0x16
  590. #define SPEC_SH 0xa9 /* Step pulse high=21, Record Length=001 (256 bytes) */
  591. #else
  592. #define SPEC_SL 0x00 /* OM2 - SL - step pulse low */
  593. #define SPEC_SH 0x21 /* Step pulse high=4, Record Length=001 (256 bytes) */
  594. #endif
  595. static void mfm_setupspecify (int drive, unsigned char *cmdb)
  596. {
  597. cmdb[0]  = 0x1f; /* OM0 - !SECT,!MOD,!DIF,PADP,ECD,CRCP,CRCI,ACOR */
  598. cmdb[1]  = 0xc3; /* OM1 - DTM,BRST,!CEDM,!SEDM,!DERM,0,AMEX,PSK */
  599. cmdb[2]  = SPEC_SL; /* OM2 - SL - step pulse low */
  600. cmdb[3]  = (number_mfm_drives == 1) ? 0x02 : 0x06; /* 1 or 2 drives */
  601. cmdb[4]  = 0xfc | ((mfm_info[drive].cylinders - 1) >> 8);/* RW time over/high part of number of cylinders */
  602. cmdb[5]  = mfm_info[drive].cylinders - 1; /* low part of number of cylinders */
  603. cmdb[6]  = mfm_info[drive].heads - 1; /* Number of heads */
  604. cmdb[7]  = mfm_info[drive].sectors - 1; /* Number of sectors */
  605. cmdb[8]  = SPEC_SH;
  606. cmdb[9]  = 0x0a; /* gap length 1 */
  607. cmdb[10] = 0x0d; /* gap length 2 */
  608. cmdb[11] = 0x0c; /* gap length 3 */
  609. cmdb[12] = (mfm_info[drive].precomp - 1) >> 8; /* pre comp cylinder */
  610. cmdb[13] = mfm_info[drive].precomp - 1;
  611. cmdb[14] = (mfm_info[drive].lowcurrent - 1) >> 8; /* Low current cylinder */
  612. cmdb[15] = mfm_info[drive].lowcurrent - 1;
  613. }
  614. static void mfm_specify (void)
  615. {
  616. unsigned char cmdb[16];
  617. DBG("specify...dev=%d lastspecified=%dn", raw_cmd.dev, lastspecifieddrive);
  618. mfm_setupspecify (raw_cmd.dev, cmdb);
  619. issue_command (CMD_SPC, cmdb, 16);
  620. /* Ensure that we will do another specify if we move to the other drive */
  621. lastspecifieddrive = raw_cmd.dev;
  622. wait_for_completion();
  623. }
  624. static void mfm_seek(void)
  625. {
  626. unsigned char cmdb[4];
  627. DBG("seeking...n");
  628. if (MFM_DRV_INFO.cylinder < 0) {
  629. SET_INTR(mfm_recal_intr);
  630. DBG("mfm_seek: about to call specifyn");
  631. mfm_specify (); /* DAG added this */
  632. cmdb[0] = raw_cmd.dev + 1;
  633. cmdb[1] = 0;
  634. issue_command(CMD_RCLB, cmdb, 2);
  635. return;
  636. }
  637. if (MFM_DRV_INFO.cylinder != raw_cmd.cylinder) {
  638. cmdb[0] = raw_cmd.dev + 1;
  639. cmdb[1] = 0; /* raw_cmd.head; DAG: My data sheet says this should be 0 */
  640. cmdb[2] = raw_cmd.cylinder >> 8;
  641. cmdb[3] = raw_cmd.cylinder;
  642. SET_INTR(mfm_seek_intr);
  643. issue_command(CMD_SEK, cmdb, 4);
  644. } else
  645. mfm_setup_rw();
  646. }
  647. static void mfm_initialise(void)
  648. {
  649. DBG("init...n");
  650. mfm_seek();
  651. }
  652. static void request_done(int uptodate)
  653. {
  654. DBG("mfm:request_donen");
  655. if (uptodate) {
  656. unsigned char block[2] = {0, 0};
  657. /* Apparently worked - let's check bytes left to DMA */
  658. if (hdc63463_dataleft != (PartFragRead_SectorsLeft * 256)) {
  659. printk("mfm: request_done - dataleft=%d - should be %d - Eek!n", hdc63463_dataleft, PartFragRead_SectorsLeft * 256);
  660. end_request(0);
  661. Busy = 0;
  662. };
  663. /* Potentially this means that we've done; but we might be doing
  664.    a partial access, (over two cylinders) or we may have a number
  665.    of fragments in an image file.  First let's deal with partial accesss
  666.  */
  667. if (PartFragRead) {
  668. /* Yep - a partial access */
  669. /* and issue the remainder */
  670. issue_request(MINOR(CURRENT->rq_dev), PartFragRead_RestartBlock, PartFragRead_SectorsLeft, CURRENT);
  671. return;
  672. }
  673. /* ah well - perhaps there is another fragment to go */
  674. /* Increment pointers/counts to start of next fragment */
  675. if (SectorsLeftInRequest > 0) printk("mfm: SectorsLeftInRequest>0 - Eek! Shouldn't happen!n");
  676. /* No - its the end of the line */
  677. /* end_request's should have happened at the end of sector DMAs */
  678. /* Turns Drive LEDs off - may slow it down? */
  679. if (QUEUE_EMPTY)
  680. issue_command(CMD_CKV, block, 2);
  681. Busy = 0;
  682. DBG("request_done: About to mfm_requestn");
  683. /* Next one please */
  684. mfm_request(); /* Moved from mfm_rw_intr */
  685. DBG("request_done: returned from mfm_requestn");
  686. } else {
  687. printk("mfm:request_done: update=0n");
  688. end_request(0);
  689. Busy = 0;
  690. }
  691. }
  692. static void error_handler(void)
  693. {
  694. printk("error detected... status = ");
  695. print_status();
  696. (*errors)++;
  697. if (*errors > MFM_DRV_INFO.errors.abort)
  698. cont->done(0);
  699. if (*errors > MFM_DRV_INFO.errors.recal)
  700. MFM_DRV_INFO.cylinder = NEED_2_RECAL;
  701. }
  702. static void rw_interrupt(void)
  703. {
  704. printk("rw_interruptn");
  705. }
  706. static struct cont rw_cont =
  707. {
  708. rw_interrupt,
  709. error_handler,
  710. mfm_rerequest,
  711. request_done
  712. };
  713. /*
  714.  * Actually gets round to issuing the request - note everything at this
  715.  * point is in 256 byte sectors not Linux 512 byte blocks
  716.  */
  717. static void issue_request(int dev, unsigned int block, unsigned int nsect,
  718.   struct request *req)
  719. {
  720. int track, start_head, start_sector;
  721. int sectors_to_next_cyl;
  722. dev >>= 6;
  723. track = block / mfm_info[dev].sectors;
  724. start_sector = block % mfm_info[dev].sectors;
  725. start_head = track % mfm_info[dev].heads;
  726. /* First get the number of whole tracks which are free before the next
  727.    track */
  728. sectors_to_next_cyl = (mfm_info[dev].heads - (start_head + 1)) * mfm_info[dev].sectors;
  729. /* Then add in the number of sectors left on this track */
  730. sectors_to_next_cyl += (mfm_info[dev].sectors - start_sector);
  731. DBG("issue_request: mfm_info[dev].sectors=%d track=%dn", mfm_info[dev].sectors, track);
  732. raw_cmd.dev = dev;
  733. raw_cmd.sector = start_sector;
  734. raw_cmd.head = start_head;
  735. raw_cmd.cylinder = track / mfm_info[dev].heads;
  736. raw_cmd.cmdtype = CURRENT->cmd;
  737. raw_cmd.cmdcode = CURRENT->cmd == WRITE ? CMD_WD : CMD_RD;
  738. raw_cmd.cmddata[0] = dev + 1; /* DAG: +1 to get US */
  739. raw_cmd.cmddata[1] = raw_cmd.head;
  740. raw_cmd.cmddata[2] = raw_cmd.cylinder >> 8;
  741. raw_cmd.cmddata[3] = raw_cmd.cylinder;
  742. raw_cmd.cmddata[4] = raw_cmd.head;
  743. raw_cmd.cmddata[5] = raw_cmd.sector;
  744. /* Was == and worked - how the heck??? */
  745. if (lastspecifieddrive != raw_cmd.dev)
  746. mfm_specify ();
  747. if (nsect <= sectors_to_next_cyl) {
  748. raw_cmd.cmddata[6] = nsect >> 8;
  749. raw_cmd.cmddata[7] = nsect;
  750. PartFragRead = 0; /* All in one */
  751. PartFragRead_SectorsLeft = 0; /* Must set this - used in DMA calcs */
  752. } else {
  753. raw_cmd.cmddata[6] = sectors_to_next_cyl >> 8;
  754. raw_cmd.cmddata[7] = sectors_to_next_cyl;
  755. PartFragRead = sectors_to_next_cyl; /* only do this many this time */
  756. PartFragRead_RestartBlock = block + sectors_to_next_cyl; /* Where to restart from */
  757. PartFragRead_SectorsLeft = nsect - sectors_to_next_cyl;
  758. }
  759. raw_cmd.cmdlen = 8;
  760. /* Setup DMA pointers */
  761. hdc63463_dataptr = (unsigned int) Copy_buffer;
  762. hdc63463_dataleft = nsect * 256; /* Better way? */
  763. DBG("mfm%c: %sing: CHS=%d/%d/%d, sectors=%d, buffer=0x%08lx (%p)n",
  764.      raw_cmd.dev + 'a', (CURRENT->cmd == READ) ? "read" : "writ",
  765.        raw_cmd.cylinder,
  766.        raw_cmd.head,
  767.     raw_cmd.sector, nsect, (unsigned long) Copy_buffer, CURRENT);
  768. cont = &rw_cont;
  769. errors = &(CURRENT->errors);
  770. #if 0
  771. mfm_tq.routine = (void (*)(void *)) mfm_initialise;
  772. queue_task(&mfm_tq, &tq_immediate);
  773. mark_bh(IMMEDIATE_BH);
  774. #else
  775. mfm_initialise();
  776. #endif
  777. } /* issue_request */
  778. /*
  779.  * Called when an error has just happened - need to trick mfm_request
  780.  * into thinking we weren't busy
  781.  *
  782.  * Turn off ints - mfm_request expects them this way
  783.  */
  784. static void mfm_rerequest(void)
  785. {
  786. DBG("mfm_rerequestn");
  787. cli();
  788. Busy = 0;
  789. mfm_request();
  790. }
  791. static void mfm_request(void)
  792. {
  793. DBG("mfm_request CURRENT=%p Busy=%dn", CURRENT, Busy);
  794. if (QUEUE_EMPTY) {
  795. DBG("mfm_request: Exited due to NULL Current 1n");
  796. return;
  797. }
  798. if (CURRENT->rq_status == RQ_INACTIVE) {
  799. /* Hmm - seems to be happening a lot on 1.3.45 */
  800. /*console_printf("mfm_request: Exited due to INACTIVE Currentn"); */
  801. return;
  802. }
  803. /* If we are still processing then return; we will get called again */
  804. if (Busy) {
  805. /* Again seems to be common in 1.3.45 */
  806. /*DBG*/printk("mfm_request: Exiting due to busyn");
  807. return;
  808. }
  809. Busy = 1;
  810. while (1) {
  811. unsigned int dev, block, nsect;
  812. DBG("mfm_request: loop startn");
  813. sti();
  814. DBG("mfm_request: before INIT_REQUESTn");
  815. if (QUEUE_EMPTY) {
  816. printk("mfm_request: Exiting due to !CURRENT (pre)n");
  817. CLEAR_INTR;
  818. Busy = 0;
  819. return;
  820. };
  821. INIT_REQUEST;
  822. DBG("mfm_request:                 before arg extractionn");
  823. dev = MINOR(CURRENT->rq_dev);
  824. block = CURRENT->sector;
  825. nsect = CURRENT->nr_sectors;
  826. #ifdef DEBUG
  827. /*if ((dev>>6)==1) */ console_printf("mfm_request:                                raw vals: dev=%d (block=512 bytes) block=%d nblocks=%dn", dev, block, nsect);
  828. #endif
  829. if (dev >= (mfm_drives << 6) ||
  830.     block >= mfm[dev].nr_sects || ((block+nsect) > mfm[dev].nr_sects)) {
  831. if (dev >= (mfm_drives << 6))
  832. printk("mfm: bad minor number: device=%sn", kdevname(CURRENT->rq_dev));
  833. else
  834. printk("mfm%c: bad access: block=%d, count=%d, nr_sects=%ldn", (dev >> 6)+'a',
  835.        block, nsect, mfm[dev].nr_sects);
  836. printk("mfm: continue 1n");
  837. end_request(0);
  838. Busy = 0;
  839. continue;
  840. }
  841. block += mfm[dev].start_sect;
  842. /* DAG: Linux doesn't cope with this - even though it has an array telling
  843.    it the hardware block size - silly */
  844. block <<= 1; /* Now in 256 byte sectors */
  845. nsect <<= 1; /* Ditto */
  846. SectorsLeftInRequest = nsect >> 1;
  847. Sectors256LeftInCurrent = CURRENT->current_nr_sectors * 2;
  848. Copy_buffer = CURRENT->buffer;
  849. Copy_Sector = CURRENT->sector << 1;
  850. DBG("mfm_request: block after offset=%dn", block);
  851. if (CURRENT->cmd != READ && CURRENT->cmd != WRITE) {
  852. printk("unknown mfm-command %dn", CURRENT->cmd);
  853. end_request(0);
  854. Busy = 0;
  855. printk("mfm: continue 4n");
  856. continue;
  857. }
  858. issue_request(dev, block, nsect, CURRENT);
  859. break;
  860. }
  861. DBG("mfm_request: Dropping out bottomn");
  862. }
  863. static void do_mfm_request(request_queue_t *q)
  864. {
  865. DBG("do_mfm_request: about to mfm_requestn");
  866. mfm_request();
  867. }
  868. static void mfm_interrupt_handler(int unused, void *dev_id, struct pt_regs *regs)
  869. {
  870. void (*handler) (void) = DEVICE_INTR;
  871. CLEAR_INTR;
  872. DBG("mfm_interrupt_handler (handler=0x%p)n", handler);
  873. mfm_status = inw(MFM_STATUS);
  874. /* If CPR (Command Parameter Reject) and not busy it means that the command
  875.    has some return message to give us */
  876. if ((mfm_status & (STAT_CPR | STAT_BSY)) == STAT_CPR) {
  877. int len = 0;
  878. while (len < 16) {
  879. int in;
  880. in = inw(MFM_DATAIN);
  881. result[len++] = in >> 8;
  882. result[len++] = in;
  883. }
  884. }
  885. if (handler) {
  886. handler();
  887. return;
  888. }
  889. outw (CMD_RCAL, MFM_COMMAND); /* Clear interrupt condition */
  890. printk ("mfm: unexpected interrupt - status = ");
  891. print_status ();
  892. while (1);
  893. }
  894. /*
  895.  * Tell the user about the drive if we decided it exists.
  896.  */
  897. static void mfm_geometry (int drive)
  898. {
  899. if (mfm_info[drive].cylinders)
  900. printk ("mfm%c: %dMB CHS=%d/%d/%d LCC=%d RECOMP=%dn", 'a' + drive,
  901. mfm_info[drive].cylinders * mfm_info[drive].heads * mfm_info[drive].sectors / 4096,
  902. mfm_info[drive].cylinders, mfm_info[drive].heads, mfm_info[drive].sectors,
  903. mfm_info[drive].lowcurrent, mfm_info[drive].precomp);
  904. }
  905. #ifdef CONFIG_BLK_DEV_MFM_AUTODETECT
  906. /*
  907.  * Attempt to detect a drive and find its geometry.  The drive has already been
  908.  * specified...
  909.  *
  910.  * We first recalibrate the disk, then try to probe sectors, heads and then
  911.  * cylinders.  NOTE! the cylinder probe may break drives.  The xd disk driver
  912.  * does something along these lines, so I assume that most drives are up to
  913.  * this mistreatment...
  914.  */
  915. static int mfm_detectdrive (int drive)
  916. {
  917. unsigned int mingeo[3], maxgeo[3];
  918. unsigned int attribute, need_recal = 1;
  919. unsigned char cmdb[8];
  920. memset (mingeo, 0, sizeof (mingeo));
  921. maxgeo[0] = mfm_info[drive].sectors;
  922. maxgeo[1] = mfm_info[drive].heads;
  923. maxgeo[2] = mfm_info[drive].cylinders;
  924. cmdb[0] = drive + 1;
  925. cmdb[6] = 0;
  926. cmdb[7] = 1;
  927. for (attribute = 0; attribute < 3; attribute++) {
  928. while (mingeo[attribute] != maxgeo[attribute]) {
  929. unsigned int variable;
  930. variable = (maxgeo[attribute] + mingeo[attribute]) >> 1;
  931. cmdb[1] = cmdb[2] = cmdb[3] = cmdb[4] = cmdb[5] = 0;
  932. if (need_recal) {
  933. int tries = 5;
  934. do {
  935. issue_command (CMD_RCLB, cmdb, 2);
  936. wait_for_completion ();
  937. wait_for_command_end ();
  938. if  (result[1] == 0x20)
  939. break;
  940. } while (result[1] && --tries);
  941. if (result[1]) {
  942. outw (CMD_RCAL, MFM_COMMAND);
  943. return 0;
  944. }
  945. need_recal = 0;
  946. }
  947. switch (attribute) {
  948. case 0:
  949. cmdb[5] = variable;
  950. issue_command (CMD_CMPD, cmdb, 8);
  951. break;
  952. case 1:
  953. cmdb[1] = variable;
  954. cmdb[4] = variable;
  955. issue_command (CMD_CMPD, cmdb, 8);
  956. break;
  957. case 2:
  958. cmdb[2] = variable >> 8;
  959. cmdb[3] = variable;
  960. issue_command (CMD_SEK, cmdb, 4);
  961. break;
  962. }
  963. wait_for_completion ();
  964. wait_for_command_end ();
  965. switch (result[1]) {
  966. case 0x00:
  967. case 0x50:
  968. mingeo[attribute] = variable + 1;
  969. break;
  970. case 0x20:
  971. outw (CMD_RCAL, MFM_COMMAND);
  972. return 0;
  973. case 0x24:
  974. need_recal = 1;
  975. default:
  976. maxgeo[attribute] = variable;
  977. break;
  978. }
  979. }
  980. }
  981. mfm_info[drive].cylinders  = mingeo[2];
  982. mfm_info[drive].lowcurrent = mingeo[2];
  983. mfm_info[drive].precomp    = mingeo[2] / 2;
  984. mfm_info[drive].heads     = mingeo[1];
  985. mfm_info[drive].sectors    = mingeo[0];
  986. outw (CMD_RCAL, MFM_COMMAND);
  987. return 1;
  988. }
  989. #endif
  990. /*
  991.  * Initialise all drive information for this controller.
  992.  */
  993. static int mfm_initdrives(void)
  994. {
  995. int drive;
  996. if (number_mfm_drives > MFM_MAXDRIVES) {
  997. number_mfm_drives = MFM_MAXDRIVES;
  998. printk("No. of ADFS MFM drives is greater than MFM_MAXDRIVES - you can't have that many!n");
  999. }
  1000. for (drive = 0; drive < number_mfm_drives; drive++) {
  1001. mfm_info[drive].lowcurrent = 1;
  1002. mfm_info[drive].precomp    = 1;
  1003. mfm_info[drive].cylinder   = -1;
  1004. mfm_info[drive].errors.recal  = 0;
  1005. mfm_info[drive].errors.report = 0;
  1006. mfm_info[drive].errors.abort  = 4;
  1007. #ifdef CONFIG_BLK_DEV_MFM_AUTODETECT
  1008. mfm_info[drive].cylinders  = 1024;
  1009. mfm_info[drive].heads    = 8;
  1010. mfm_info[drive].sectors    = 64;
  1011. {
  1012. unsigned char cmdb[16];
  1013. mfm_setupspecify (drive, cmdb);
  1014. cmdb[1] &= ~0x81;
  1015. issue_command (CMD_SPC, cmdb, 16);
  1016. wait_for_completion ();
  1017. if (!mfm_detectdrive (drive)) {
  1018. mfm_info[drive].cylinders = 0;
  1019. mfm_info[drive].heads     = 0;
  1020. mfm_info[drive].sectors   = 0;
  1021. }
  1022. cmdb[0] = cmdb[1] = 0;
  1023. issue_command (CMD_CKV, cmdb, 2);
  1024. }
  1025. #else
  1026. mfm_info[drive].cylinders  = 1; /* its going to have to figure it out from the partition info */
  1027. mfm_info[drive].heads      = 4;
  1028. mfm_info[drive].sectors    = 32;
  1029. #endif
  1030. }
  1031. return number_mfm_drives;
  1032. }
  1033. /*
  1034.  * The 'front' end of the mfm driver follows...
  1035.  */
  1036. static int mfm_ioctl(struct inode *inode, struct file *file, u_int cmd, u_long arg)
  1037. {
  1038. struct hd_geometry *geo = (struct hd_geometry *) arg;
  1039. kdev_t dev;
  1040. int device, major, minor, err;
  1041. if (!inode || !(dev = inode->i_rdev))
  1042. return -EINVAL;
  1043. major = MAJOR(dev);
  1044. minor = MINOR(dev);
  1045. device = DEVICE_NR(MINOR(inode->i_rdev)), err;
  1046. if (device >= mfm_drives)
  1047. return -EINVAL;
  1048. switch (cmd) {
  1049. case HDIO_GETGEO:
  1050. if (!arg)
  1051. return -EINVAL;
  1052. if (put_user (mfm_info[device].heads, &geo->heads))
  1053. return -EFAULT;
  1054. if (put_user (mfm_info[device].sectors, &geo->sectors))
  1055. return -EFAULT;
  1056. if (put_user (mfm_info[device].cylinders, &geo->cylinders))
  1057. return -EFAULT;
  1058. if (put_user (mfm[minor].start_sect, &geo->start))
  1059. return -EFAULT;
  1060. return 0;
  1061. case BLKFRASET:
  1062. if (!capable(CAP_SYS_ADMIN))
  1063. return -EACCES;
  1064. max_readahead[major][minor] = arg;
  1065. return 0;
  1066. case BLKFRAGET:
  1067. return put_user(max_readahead[major][minor], (long *) arg);
  1068. case BLKSECTGET:
  1069. return put_user(max_sectors[major][minor], (long *) arg);
  1070. case BLKRRPART:
  1071. if (!capable(CAP_SYS_ADMIN))
  1072. return -EACCES;
  1073. return mfm_reread_partitions(dev);
  1074. case BLKGETSIZE:
  1075. case BLKGETSIZE64:
  1076. case BLKFLSBUF:
  1077. case BLKROSET:
  1078. case BLKROGET:
  1079. case BLKRASET:
  1080. case BLKRAGET:
  1081. case BLKPG:
  1082. return blk_ioctl(dev, cmd, arg);
  1083. default:
  1084. return -EINVAL;
  1085. }
  1086. }
  1087. static int mfm_open(struct inode *inode, struct file *file)
  1088. {
  1089. int dev = DEVICE_NR(MINOR(inode->i_rdev));
  1090. if (dev >= mfm_drives)
  1091. return -ENODEV;
  1092. while (mfm_info[dev].busy)
  1093. sleep_on (&mfm_wait_open);
  1094. mfm_info[dev].access_count++;
  1095. return 0;
  1096. }
  1097. /*
  1098.  * Releasing a block device means we sync() it, so that it can safely
  1099.  * be forgotten about...
  1100.  */
  1101. static int mfm_release(struct inode *inode, struct file *file)
  1102. {
  1103. mfm_info[DEVICE_NR(MINOR(inode->i_rdev))].access_count--;
  1104. return 0;
  1105. }
  1106. /*
  1107.  * This is to handle various kernel command line parameters
  1108.  * specific to this driver.
  1109.  */
  1110. void mfm_setup(char *str, int *ints)
  1111. {
  1112. return;
  1113. }
  1114. /*
  1115.  * Set the CHS from the ADFS boot block if it is present.  This is not ideal
  1116.  * since if there are any non-ADFS partitions on the disk, this won't work!
  1117.  * Hence, I want to get rid of this...
  1118.  */
  1119. void xd_set_geometry(kdev_t dev, unsigned char secsptrack, unsigned char heads,
  1120.      unsigned long discsize, unsigned int secsize)
  1121. {
  1122. int drive = MINOR(dev) >> 6;
  1123. if (mfm_info[drive].cylinders == 1) {
  1124. mfm_info[drive].sectors = secsptrack;
  1125. mfm_info[drive].heads = heads;
  1126. mfm_info[drive].cylinders = discsize / (secsptrack * heads * secsize);
  1127. if ((heads < 1) || (mfm_info[drive].cylinders > 1024)) {
  1128. printk("mfm%c: Insane disc shape! Setting to 512/4/32n",'a' + (dev >> 6));
  1129. /* These values are fairly arbitary, but are there so that if your
  1130.  * lucky you can pick apart your disc to find out what is going on -
  1131.  * I reckon these figures won't hurt MOST drives
  1132.  */
  1133. mfm_info[drive].sectors = 32;
  1134. mfm_info[drive].heads = 4;
  1135. mfm_info[drive].cylinders = 512;
  1136. }
  1137. if (raw_cmd.dev == drive)
  1138. mfm_specify ();
  1139. mfm_geometry (drive);
  1140. mfm[drive << 6].start_sect = 0;
  1141. mfm[drive << 6].nr_sects = mfm_info[drive].cylinders * mfm_info[drive].heads * mfm_info[drive].sectors / 2;
  1142. }
  1143. }
  1144. static struct gendisk mfm_gendisk = {
  1145. major: MAJOR_NR,
  1146. major_name: "mfm",
  1147. minor_shift: 6,
  1148. max_p: 1 << 6,
  1149. part: mfm,
  1150. sizes: mfm_sizes,
  1151. real_devices: (void *)mfm_info,
  1152. };
  1153. static struct block_device_operations mfm_fops =
  1154. {
  1155. owner: THIS_MODULE,
  1156. open: mfm_open,
  1157. release: mfm_release,
  1158. ioctl: mfm_ioctl,
  1159. };
  1160. static void mfm_geninit (void)
  1161. {
  1162. int i;
  1163. for (i = 0; i < (MFM_MAXDRIVES << 6); i++) {
  1164. /* Can't increase this - if you do all hell breaks loose */
  1165. mfm_blocksizes[i] = 1024;
  1166. mfm_sectsizes[i] = 512;
  1167. }
  1168. blksize_size[MAJOR_NR] = mfm_blocksizes;
  1169. hardsect_size[MAJOR_NR] = mfm_sectsizes;
  1170. mfm_drives = mfm_initdrives();
  1171. printk("mfm: detected %d hard drive%sn", mfm_drives,
  1172. mfm_drives == 1 ? "" : "s");
  1173. mfm_gendisk.nr_real = mfm_drives;
  1174. if (request_irq(mfm_irq, mfm_interrupt_handler, SA_INTERRUPT, "MFM harddisk", NULL))
  1175. printk("mfm: unable to get IRQ%dn", mfm_irq);
  1176. if (mfm_irqenable)
  1177. outw(0x80, mfm_irqenable); /* Required to enable IRQs from MFM podule */
  1178. for (i = 0; i < mfm_drives; i++) {
  1179. mfm_geometry (i);
  1180. register_disk(&mfm_gendisk, MKDEV(MAJOR_NR,i<<6), 1<<6,
  1181. &mfm_fops,
  1182. mfm_info[i].cylinders * mfm_info[i].heads *
  1183. mfm_info[i].sectors / 2);
  1184. }
  1185. }
  1186. static struct expansion_card *ecs;
  1187. /*
  1188.  * See if there is a controller at the address presently at mfm_addr
  1189.  *
  1190.  * We check to see if the controller is busy - if it is, we abort it first,
  1191.  * and check that the chip is no longer busy after at least 180 clock cycles.
  1192.  * We then issue a command and check that the BSY or CPR bits are set.
  1193.  */
  1194. static int mfm_probecontroller (unsigned int mfm_addr)
  1195. {
  1196. if (inw (MFM_STATUS) & STAT_BSY) {
  1197. outw (CMD_ABT, MFM_COMMAND);
  1198. udelay (50);
  1199. if (inw (MFM_STATUS) & STAT_BSY)
  1200. return 0;
  1201. }
  1202. if (inw (MFM_STATUS) & STAT_CED)
  1203. outw (CMD_RCAL, MFM_COMMAND);
  1204. outw (CMD_SEK, MFM_COMMAND);
  1205. if (inw (MFM_STATUS) & (STAT_BSY | STAT_CPR)) {
  1206. unsigned int count = 2000;
  1207. while (inw (MFM_STATUS) & STAT_BSY) {
  1208. udelay (500);
  1209. if (!--count)
  1210. return 0;
  1211. }
  1212. outw (CMD_RCAL, MFM_COMMAND);
  1213. }
  1214. return 1;
  1215. }
  1216. /*
  1217.  * Look for a MFM controller - first check the motherboard, then the podules
  1218.  * The podules have an extra interrupt enable that needs to be played with
  1219.  *
  1220.  * The HDC is accessed at MEDIUM IOC speeds.
  1221.  */
  1222. int mfm_init (void)
  1223. {
  1224. unsigned char irqmask;
  1225. if (mfm_probecontroller(ONBOARD_MFM_ADDRESS)) {
  1226. mfm_addr = ONBOARD_MFM_ADDRESS;
  1227. mfm_IRQPollLoc = IOC_IRQSTATB;
  1228. mfm_irqenable = 0;
  1229. mfm_irq = IRQ_HARDDISK;
  1230. irqmask = 0x08; /* IL3 pin */
  1231. } else {
  1232. ecs = ecard_find(0, mfm_cids);
  1233. if (!ecs) {
  1234. mfm_addr = 0;
  1235. return -1;
  1236. }
  1237. mfm_addr = ecard_address(ecs, ECARD_IOC, ECARD_MEDIUM) + 0x800;
  1238. mfm_IRQPollLoc = ioaddr(mfm_addr + 0x400);
  1239. mfm_irqenable = mfm_IRQPollLoc;
  1240. mfm_irq = ecs->irq;
  1241. irqmask = 0x08;
  1242. ecard_claim(ecs);
  1243. }
  1244. printk("mfm: found at address %08X, interrupt %dn", mfm_addr, mfm_irq);
  1245. if (!request_region (mfm_addr, 10, "mfm")) {
  1246. ecard_release(ecs);
  1247. return -1;
  1248. }
  1249. if (register_blkdev(MAJOR_NR, "mfm", &mfm_fops)) {
  1250. printk("mfm_init: unable to get major number %dn", MAJOR_NR);
  1251. ecard_release(ecs);
  1252. release_region(mfm_addr, 10);
  1253. return -1;
  1254. }
  1255. /* Stuff for the assembler routines to get to */
  1256. hdc63463_baseaddress = ioaddr(mfm_addr);
  1257. hdc63463_irqpolladdress = mfm_IRQPollLoc;
  1258. hdc63463_irqpollmask = irqmask;
  1259. blk_init_queue(BLK_DEFAULT_QUEUE(MAJOR_NR), DEVICE_REQUEST);
  1260. read_ahead[MAJOR_NR] = 8; /* 8 sector (4kB?) read ahread */
  1261. add_gendisk(&mfm_gendisk);
  1262. Busy = 0;
  1263. lastspecifieddrive = -1;
  1264. mfm_geninit();
  1265. return 0;
  1266. }
  1267. /*
  1268.  * This routine is called to flush all partitions and partition tables
  1269.  * for a changed MFM disk, and then re-read the new partition table.
  1270.  * If we are revalidating due to an ioctl, we have USAGE == 1.
  1271.  */
  1272. static int mfm_reread_partitions(kdev_t dev)
  1273. {
  1274. unsigned int start, i, maxp, target = DEVICE_NR(MINOR(dev));
  1275. unsigned long flags;
  1276. save_flags_cli(flags);
  1277. if (mfm_info[target].busy || mfm_info[target].access_count > 1) {
  1278. restore_flags (flags);
  1279. return -EBUSY;
  1280. }
  1281. mfm_info[target].busy = 1;
  1282. restore_flags (flags);
  1283. maxp = mfm_gendisk.max_p;
  1284. start = target << mfm_gendisk.minor_shift;
  1285. for (i = maxp - 1; i >= 0; i--) {
  1286. int minor = start + i;
  1287. invalidate_device (MKDEV(MAJOR_NR, minor), 1);
  1288. mfm_gendisk.part[minor].start_sect = 0;
  1289. mfm_gendisk.part[minor].nr_sects = 0;
  1290. }
  1291. /* Divide by 2, since sectors are 2 times smaller than usual ;-) */
  1292. grok_partitions(&mfm_gendisk, target, 1<<6, mfm_info[target].heads *
  1293.     mfm_info[target].cylinders * mfm_info[target].sectors / 2);
  1294. mfm_info[target].busy = 0;
  1295. wake_up (&mfm_wait_open);
  1296. return 0;
  1297. }
  1298. #ifdef MODULE
  1299. EXPORT_NO_SYMBOLS;
  1300. MODULE_LICENSE("GPL");
  1301. int init_module(void)
  1302. {
  1303. return mfm_init();
  1304. }
  1305. void cleanup_module(void)
  1306. {
  1307. if (ecs && mfm_irqenable)
  1308. outw (0, mfm_irqenable); /* Required to enable IRQs from MFM podule */
  1309. free_irq(mfm_irq, NULL);
  1310. unregister_blkdev(MAJOR_NR, "mfm");
  1311. del_gendisk(&mfm_gendisk);
  1312. if (ecs)
  1313. ecard_release(ecs);
  1314. if (mfm_addr)
  1315. release_region(mfm_addr, 10);
  1316. }
  1317. #endif