4 * The floppy driver but now seems can't work correctly
6 * Aleaxander (C) 2007-2008
16 #include <asm/system.h>
21 extern unsigned long count_down
;
30 #define immoutb_p(val,port) \
31 __asm__("outb %0,%1\n\tjmp 1f\n1:\tjmp 1f\n1:"::"a" ((char) (val)),"i" (port))
34 /* these are globals used by get_result() */
36 static unsigned char reply_buffer
[MAX_REPLIES
];
37 #define ST0 (reply_buffer[0])
38 #define ST1 (reply_buffer[1])
39 #define ST2 (reply_buffer[2])
40 #define ST3 (reply_buffer[3])
43 static struct floppy_struct
{
44 unsigned int size
, sector
, head
, track
, stretch
;
45 unsigned char gap
,rate
,spec1
;
48 0x1b,0x00,0xCF /* 1.44MB diskette */
52 /* Store the return vaule of get_result, we need it to do some check */
55 static int done
= FALSE
;
56 static int motoron
= FALSE
;
57 static int changed
= FALSE
;
58 static unsigned char sr0
;
59 static unsigned char fdc_track
= 255;
65 * send a byte to FD_DATA register
66 * @param: byte is the byte that needed to send to the FD_DATA
69 static void send_byte(unsigned char byte
)
74 //LOG("send_byte() called ...\n");
76 for (counter
= 0; counter
< 1000; counter
++) {
77 sleep(1); /* delay 10s */
78 msr
= inb_p(FD_STATUS
) & (STATUS_READY
| STATUS_DIR
);
79 if (msr
== STATUS_READY
) {
84 LOG("Unable to send byte to FDC\n");
87 * get *ONE* byte of results from FD_DATA register then return what
88 * it get, or retrun -1 if faile.
95 //LOG("get_byte() called ...\n");
97 for (counter
= 0; counter
< 1000; counter
++) {
98 sleep(1); /* delay 10ms */
99 msr
= inb_p(FD_STATUS
) & (STATUS_DIR
|STATUS_READY
|STATUS_BUSY
);
100 if (msr
== (STATUS_DIR
|STATUS_READY
|STATUS_BUSY
))
101 return inb_p(FD_DATA
);
103 LOG("get_byte: get status times out!\n");
108 * get *ALL* the results from the FD_DATA register then store
109 * it in the global fileds reply_buffer. that's the only
110 * diffrence between get_byte() and get_result().
113 * @return: the number of reply chars
116 static int get_result(void)
118 int i
= 0, counter
, msr
;
120 //LOG("get_result() called ...\n");
122 for (counter
= 0; counter
< 1000; counter
++) {
123 sleep(1); /* delay 10ms */
124 msr
= inb_p(FD_STATUS
) & (STATUS_DIR
|STATUS_READY
|STATUS_BUSY
);
125 //LOG("msr %d: %x\n", i, msr);
126 if (msr
== STATUS_READY
)
128 if (msr
== (STATUS_DIR
|STATUS_READY
|STATUS_BUSY
)) {
129 if ( i
>= MAX_REPLIES
)
131 reply_buffer
[i
++] = inb_p(FD_DATA
);
134 LOG("get_result:get status times out!\n");
141 * This waits for FDC command to complete
144 * @return: if successfull then returns TRUE, or FALSE
147 static int wait_fdc(int sensei
)
150 count_down
= 1000; /* set count_down init. value to 2 second */
153 /* wait for FLOPPY_INTERRUPT hander to signal command finished */
154 while (!done
&& count_down
)
156 time_out
= count_down
;
159 printk("time_out:%d\n",time_out
);
160 printk("done: %d\n",done
);
162 res
= get_result(); /* get the result of the command */
166 * we use get_byte() but NOT get_result() here, because i don't
167 * know where the error happened. or maybe get_byte() is better
168 * than get_result(), it just come from the test
176 memset(reply_buffer
, 0, sizeof(reply_buffer
));
179 hexdump(reply_buffer
, sizeof(reply_buffer
));
183 /* send a "sense interrupt status" command */
184 send_byte(FD_SENSEI
);
186 fdc_track
= get_byte();
189 LOG("time left: %d\t done: %d\n", time_out
, done
);
199 * Converts liner sector address to head/track/sector
201 * @param: sector is the liner sector we wanna convert.
202 * @param: *head, save the head number to head
203 * @param: *track, save the track number to track
204 * @param: *sector, save the sector number to sector
206 * we return all the info. by the POINTER args
209 static void lba_to_chs(int line_sector
, int *head
, int *track
, int *sector
)
211 //LOG("sector_to_hts() called ...\n");
212 *sector
= line_sector
% floppy
.sector
;
215 line_sector
/= floppy
.sector
;
217 *head
= line_sector
% floppy
.head
;
218 *track
= line_sector
/ floppy
.head
;
222 /* test whether the motor is on or not */
223 static inline int is_motor_on()
225 //LOG("is_motor_on() called ...\n");
231 /* Turns the motor on if not */
232 static void motor_on(void)
234 //LOG("motor_on() called ...\n");
235 if ( !is_motor_on()) {
237 sleep(100); /* delay 1 second for motor on */
243 /* Truns the motor off if on */
244 static void motor_off (void)
246 //LOG("motor_off() called ...\n");
247 if (is_motor_on() ) {
248 count_down
= 200; /* start motor kill countdown: about 2s */
257 /* recalibrate the drive */
258 static void recalibrate(void)
261 //LOG("recalibrate() called ...\n");
263 /*turn the motor on first */
266 /* send actual command bytes */
267 send_byte(FD_RECALIBRATE
);
270 /* wait until seek finished */
277 static int seek(int track
, int head
)
279 //LOG("seek() called ...\n");
283 LOG("RECALIBRATE...\n");
289 if (fdc_track
== track
)
290 return TRUE
; /* already there*/
292 /* send actual command bytes */
294 send_byte(head
<< 2);
297 /* wait until seek finished */
298 if ( !wait_fdc(TRUE
) )
299 ;//return FALSE; /* time out */
301 LOG("ST0: %x\t ST1: %x\n", sr0
, fdc_track
);
302 if ( ((sr0
& 0xF8) != 0x20) || (fdc_track
!= track
)) {
303 LOG("Seek track#: %d failed\n", track
);
306 LOG("Seek track#: %d OK ...\n", track
);
317 * The first thing that the driver needs to do is reset the controller.This
318 * will put it in a known state. To reset the primary floppy controller,(in C)
320 * 1.write 0x00 to the DIGITAL_OUTPUT_REG of the desired controller
321 * 2.write 0x0C to the DIGITAL_OUTPUT_REG of the desired controller
322 * 3.wait for an interrupt from the controller
323 * 4.check interrupt status (this is function 0x08 of controllers)
324 * 5.write 0x00 to the CONFIG_CONTROL_REG
325 * 6.configure the drive desired on the controller (function 0x03 of controller)
326 * 7.calibrate the drive (function 0x07 of controller)
331 //LOG("reset() called ...\n");
333 /* stop the motor and disable IRQ/DMA */
336 /* program data rate (500K/s) */
339 /* re-enable interrupts */
342 /* resetting triggered an interrupt - handle it */
346 /* specify drive timings (got these off the BIOS) */
347 send_byte(FD_SPECIFY
);
348 send_byte(0xdf); /* SRT = 3ms, HUT = 240ms */
349 send_byte(0x06); /* HLT = 16ms, ND = 0 */
357 * here we will setup the DMA, then we can use it to transfer data
358 * more efficiently. For now, we just make it transfer one sector's
362 static void setup_DMA(unsigned long addr
, int command
)
364 int cmd
= (command
== FD_READ
) ? DMA_READ
: DMA_WRITE
;
367 cli(); /* we need a safe env. */
369 immoutb_p(4|2,0x0a); /* mask DMA 2 */
371 immoutb_p(0,0x0c); /* clear flip flop */
375 immoutb_p(addr
,4); /* 8 low bits of addr */
378 immoutb_p(addr
,4); /* bits 8-15 of addr */
381 immoutb_p(addr
,0x81); /* bits 16-19 of addr */
383 immoutb_p(count
& 0xff,5); /* low 8 bits of count-1 (1024-1=0x3ff) */
385 immoutb_p(count
>> 8,5); /* high 8 bits of count-1 */
387 immoutb_p(0|2,10); /* activate DMA 2 */
393 * And now, it's time to implenent the read or write function, that's
394 * all the floppy driver mean!
396 * Read/Write one sector once.
398 static int floppy_rw(int sector
, char *buf
, int command
)
401 char *dma_buffer
= buf
;
402 static char tmp_dma_buffer
[512];
404 LOG("TMP dma buffer: %p\n", tmp_dma_buffer
);
406 lba_to_chs(sector
, &head
, &track
, §or
);
407 LOG("head: %d \ttrack: %d \tsector: %d\n", head
, track
, sector
);
409 /* turn it on if not */
412 if (inb_p(FD_DIR
) & 0x80) {
414 seek(1, head
); /* clear "disk change" status */
417 printk("floppy_rw: Disk change detected. You are going to DIE:)\n");
419 pause(); /* just put it in DIE */
422 /* move head to the right track */
423 if (!seek(track
, head
)) {
425 printk("floppy_rw: Error seeking to track\n");
429 if ((unsigned long)buf
>= 0xff000) {
430 dma_buffer
= tmp_dma_buffer
;
431 if (command
== FD_WRITE
)
432 memcpy(dma_buffer
, buf
, 512);
435 setup_DMA((unsigned long)dma_buffer
, command
);
438 send_byte(head
<<2 | 0);
442 send_byte(2); /* sector size = 125 * 2^(2) */
443 send_byte(floppy
.sector
);
445 send_byte(0xFF); /* sector size(only two valid vaules, 0xff when n!=0*/
447 if (!wait_fdc(FALSE
)) {
448 LOG("wait fdc failed!\n");
451 printk("Time out, trying operation again after reset() \n");
453 return floppy_rw(sector, buf, command);
459 if (/*res != 7 || */(ST0
& 0xf8) || (ST1
& 0xbf) || (ST2
& 0x73) ) {
461 printk("Drive is write protected!\n");
463 printk("floppy_rw: bad interrupt!\n");
467 LOG("floppy_rw: OK\n");
468 if ((unsigned long)buf
>= 0xff000 && command
== FD_READ
)
469 memcpy(buf
, dma_buffer
, 512);
475 /* Read ONE sector */
476 void floppy_read(int sector
, char * buf
)
478 floppy_rw(sector
, buf
, FD_READ
);
481 /* Write ONE sector */
482 void floppy_write(int sector
, char * buf
)
484 floppy_rw(sector
, buf
, FD_WRITE
);
488 * The two following function handles multi-sectors reading
491 void floppy_reads(int sector
, char *buf
, unsigned int sectors
)
494 floppy_rw(sector
++, buf
, FD_READ
);
499 void floppy_writes(int sector
, char *buf
, unsigned int sectors
)
502 floppy_rw(sector
++, buf
, FD_WRITE
);
507 static int times
= 0;
509 * The FLOPPY_INTERRUPT handler
511 * FIXME: the current do_floppy seems wouldn't be called after every
512 * interrupt. I have no idea what's wrong with it.
516 //LOG("floppy_interrupt() called ...\n");
518 //LOG("floppy interrupt %d times!\n",times);
519 /* signal operation finished */
521 outb(0x20,0x20); /* EOI */
525 * OK, finally we got our last thing to do. You are right, that's it,
526 * initialing the floppy. As you know, initialization is always easy,
527 * just set the interrupt handler and mask off the bit of corresponding
530 void floppy_init(void)
532 set_trap_gate(0x26, floppy_interrupt
);
533 outb(inb_p(0x21)&~0x40,0x21);
541 LOG("BUF addr: %p\n", buf
);
543 floppy_read(70, buf
);
550 char str
[512 * 10] = "hello word! This is just a floppy writing test";
551 char *buf
= (char *)0x800000;
552 memcpy(buf
, str
, sizeof(str
));
554 LOG("STRING addr: %p\n", str
);
556 floppy_write(0, str
);
557 floppy_writes(0, buf
, 10);
558 LOG("interrupts happens %d times\n", times
);