2 * Driver for the SWIM3 (Super Woz Integrated Machine 3)
3 * floppy controller found on Power Macintoshes.
5 * Copyright (C) 1996 Paul Mackerras.
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
21 #include <linux/stddef.h>
22 #include <linux/kernel.h>
23 #include <linux/sched.h>
24 #include <linux/timer.h>
25 #include <linux/delay.h>
27 #include <linux/ioctl.h>
28 #include <linux/blkdev.h>
29 #include <linux/interrupt.h>
30 #include <linux/mutex.h>
31 #include <linux/module.h>
32 #include <linux/spinlock.h>
33 #include <linux/wait.h>
35 #include <asm/dbdma.h>
37 #include <asm/uaccess.h>
38 #include <asm/mediabay.h>
39 #include <asm/machdep.h>
40 #include <asm/pmac_feature.h>
42 #define MAX_FLOPPIES 2
44 static DEFINE_MUTEX(swim3_mutex
);
45 static struct gendisk
*disks
[MAX_FLOPPIES
];
59 #define REG(x) unsigned char x; char x ## _pad[15];
62 * The names for these registers mostly represent speculation on my part.
63 * It will be interesting to see how close they are to the names Apple uses.
67 REG(timer
); /* counts down at 1MHz */
70 REG(select
); /* controls CA0, CA1, CA2 and LSTRB signals */
72 REG(control
); /* writing bits clears them */
73 REG(status
); /* writing bits sets them in control */
75 REG(nseek
); /* # tracks to seek */
76 REG(ctrack
); /* current track number */
77 REG(csect
); /* current sector number */
78 REG(gap3
); /* size of gap 3 in track format */
79 REG(sector
); /* sector # to read or write */
80 REG(nsect
); /* # sectors to read or write */
84 #define control_bic control
85 #define control_bis status
87 /* Bits in select register */
91 /* Bits in control register */
95 #define WRITE_SECTORS 0x10
96 #define DO_ACTION 0x08
97 #define DRIVE2_ENABLE 0x04
98 #define DRIVE_ENABLE 0x02
99 #define INTR_ENABLE 0x01
101 /* Bits in status register */
102 #define FIFO_1BYTE 0x80
103 #define FIFO_2BYTE 0x40
107 #define INTR_PENDING 0x02
108 #define MARK_BYTE 0x01
110 /* Bits in intr and intr_enable registers */
111 #define ERROR_INTR 0x20
112 #define DATA_CHANGED 0x10
113 #define TRANSFER_DONE 0x08
114 #define SEEN_SECTOR 0x04
115 #define SEEK_DONE 0x02
116 #define TIMER_DONE 0x01
118 /* Bits in error register */
119 #define ERR_DATA_CRC 0x80
120 #define ERR_ADDR_CRC 0x40
121 #define ERR_OVERRUN 0x04
122 #define ERR_UNDERRUN 0x01
124 /* Bits in setup register */
125 #define S_SW_RESET 0x80
126 #define S_GCR_WRITE 0x40
127 #define S_IBM_DRIVE 0x20
128 #define S_TEST_MODE 0x10
129 #define S_FCLK_DIV2 0x08
131 #define S_COPY_PROT 0x02
132 #define S_INV_WDATA 0x01
134 /* Select values for swim3_action */
135 #define SEEK_POSITIVE 0
136 #define SEEK_NEGATIVE 4
145 /* Select values for swim3_select and swim3_readbit */
149 #define RELAX 3 /* also eject in progress */
150 #define READ_DATA_0 4
151 #define TWOMEG_DRIVE 5
152 #define SINGLE_SIDED 6 /* drive or diskette is 4MB type? */
153 #define DRIVE_PRESENT 7
156 #define TRACK_ZERO 10
158 #define READ_DATA_1 12
160 #define SEEK_COMPLETE 14
161 #define ONEMEG_MEDIA 15
163 /* Definitions of values used in writing and formatting */
164 #define DATA_ESCAPE 0x99
165 #define GCR_SYNC_EXC 0x3f
166 #define GCR_SYNC_CONV 0x80
167 #define GCR_FIRST_MARK 0xd5
168 #define GCR_SECOND_MARK 0xaa
169 #define GCR_ADDR_MARK "\xd5\xaa\x00"
170 #define GCR_DATA_MARK "\xd5\xaa\x0b"
171 #define GCR_SLIP_BYTE "\x27\xaa"
172 #define GCR_SELF_SYNC "\x3f\xbf\x1e\x34\x3c\x3f"
174 #define DATA_99 "\x99\x99"
175 #define MFM_ADDR_MARK "\x99\xa1\x99\xa1\x99\xa1\x99\xfe"
176 #define MFM_INDEX_MARK "\x99\xc2\x99\xc2\x99\xc2\x99\xfc"
177 #define MFM_GAP_LEN 12
179 struct floppy_state
{
180 enum swim_state state
;
181 struct swim3 __iomem
*swim3
; /* hardware registers */
182 struct dbdma_regs __iomem
*dma
; /* DMA controller registers */
183 int swim3_intr
; /* interrupt number for SWIM3 */
184 int dma_intr
; /* interrupt number for DMA channel */
185 int cur_cyl
; /* cylinder head is on, or -1 */
186 int cur_sector
; /* last sector we saw go past */
187 int req_cyl
; /* the cylinder for the current r/w request */
188 int head
; /* head number ditto */
189 int req_sector
; /* sector number ditto */
190 int scount
; /* # sectors we're transferring at present */
193 int secpercyl
; /* disk geometry information */
196 int write_prot
; /* 1 if write-protected, 0 if not, -1 dunno */
197 struct dbdma_cmd
*dma_cmd
;
200 struct timer_list timeout
;
203 wait_queue_head_t wait
;
205 struct macio_dev
*mdev
;
206 char dbdma_cmd_space
[5 * sizeof(struct dbdma_cmd
)];
208 struct request
*cur_req
;
211 #define swim3_err(fmt, arg...) dev_err(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg)
212 #define swim3_warn(fmt, arg...) dev_warn(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg)
213 #define swim3_info(fmt, arg...) dev_info(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg)
216 #define swim3_dbg(fmt, arg...) dev_dbg(&fs->mdev->ofdev.dev, "[fd%d] " fmt, fs->index, arg)
218 #define swim3_dbg(fmt, arg...) do { } while(0)
221 static struct floppy_state floppy_states
[MAX_FLOPPIES
];
222 static int floppy_count
= 0;
223 static DEFINE_SPINLOCK(swim3_lock
);
225 static unsigned short write_preamble
[] = {
226 0x4e4e, 0x4e4e, 0x4e4e, 0x4e4e, 0x4e4e, /* gap field */
227 0, 0, 0, 0, 0, 0, /* sync field */
228 0x99a1, 0x99a1, 0x99a1, 0x99fb, /* data address mark */
229 0x990f /* no escape for 512 bytes */
232 static unsigned short write_postamble
[] = {
233 0x9904, /* insert CRC */
235 0x9908, /* stop writing */
239 static void seek_track(struct floppy_state
*fs
, int n
);
240 static void init_dma(struct dbdma_cmd
*cp
, int cmd
, void *buf
, int count
);
241 static void act(struct floppy_state
*fs
);
242 static void scan_timeout(unsigned long data
);
243 static void seek_timeout(unsigned long data
);
244 static void settle_timeout(unsigned long data
);
245 static void xfer_timeout(unsigned long data
);
246 static irqreturn_t
swim3_interrupt(int irq
, void *dev_id
);
247 /*static void fd_dma_interrupt(int irq, void *dev_id);*/
248 static int grab_drive(struct floppy_state
*fs
, enum swim_state state
,
250 static void release_drive(struct floppy_state
*fs
);
251 static int fd_eject(struct floppy_state
*fs
);
252 static int floppy_ioctl(struct block_device
*bdev
, fmode_t mode
,
253 unsigned int cmd
, unsigned long param
);
254 static int floppy_open(struct block_device
*bdev
, fmode_t mode
);
255 static void floppy_release(struct gendisk
*disk
, fmode_t mode
);
256 static unsigned int floppy_check_events(struct gendisk
*disk
,
257 unsigned int clearing
);
258 static int floppy_revalidate(struct gendisk
*disk
);
260 static bool swim3_end_request(struct floppy_state
*fs
, int err
, unsigned int nr_bytes
)
262 struct request
*req
= fs
->cur_req
;
265 swim3_dbg(" end request, err=%d nr_bytes=%d, cur_req=%p\n",
269 nr_bytes
= blk_rq_cur_bytes(req
);
270 rc
= __blk_end_request(req
, err
, nr_bytes
);
277 static void swim3_select(struct floppy_state
*fs
, int sel
)
279 struct swim3 __iomem
*sw
= fs
->swim3
;
281 out_8(&sw
->select
, RELAX
);
283 out_8(&sw
->control_bis
, SELECT
);
285 out_8(&sw
->control_bic
, SELECT
);
286 out_8(&sw
->select
, sel
& CA_MASK
);
289 static void swim3_action(struct floppy_state
*fs
, int action
)
291 struct swim3 __iomem
*sw
= fs
->swim3
;
293 swim3_select(fs
, action
);
295 out_8(&sw
->select
, sw
->select
| LSTRB
);
297 out_8(&sw
->select
, sw
->select
& ~LSTRB
);
301 static int swim3_readbit(struct floppy_state
*fs
, int bit
)
303 struct swim3 __iomem
*sw
= fs
->swim3
;
306 swim3_select(fs
, bit
);
308 stat
= in_8(&sw
->status
);
309 return (stat
& DATA
) == 0;
312 static void start_request(struct floppy_state
*fs
)
317 swim3_dbg("start request, initial state=%d\n", fs
->state
);
319 if (fs
->state
== idle
&& fs
->wanted
) {
320 fs
->state
= available
;
324 while (fs
->state
== idle
) {
325 swim3_dbg("start request, idle loop, cur_req=%p\n", fs
->cur_req
);
327 fs
->cur_req
= blk_fetch_request(disks
[fs
->index
]->queue
);
328 swim3_dbg(" fetched request %p\n", fs
->cur_req
);
334 if (fs
->mdev
->media_bay
&&
335 check_media_bay(fs
->mdev
->media_bay
) != MB_FD
) {
336 swim3_dbg("%s", " media bay absent, dropping req\n");
337 swim3_end_request(fs
, -ENODEV
, 0);
341 #if 0 /* This is really too verbose */
342 swim3_dbg("do_fd_req: dev=%s cmd=%d sec=%ld nr_sec=%u buf=%p\n",
343 req
->rq_disk
->disk_name
, req
->cmd
,
344 (long)blk_rq_pos(req
), blk_rq_sectors(req
),
346 swim3_dbg(" errors=%d current_nr_sectors=%u\n",
347 req
->errors
, blk_rq_cur_sectors(req
));
350 if (blk_rq_pos(req
) >= fs
->total_secs
) {
351 swim3_dbg(" pos out of bounds (%ld, max is %ld)\n",
352 (long)blk_rq_pos(req
), (long)fs
->total_secs
);
353 swim3_end_request(fs
, -EIO
, 0);
357 swim3_dbg("%s", " disk ejected\n");
358 swim3_end_request(fs
, -EIO
, 0);
362 if (rq_data_dir(req
) == WRITE
) {
363 if (fs
->write_prot
< 0)
364 fs
->write_prot
= swim3_readbit(fs
, WRITE_PROT
);
365 if (fs
->write_prot
) {
366 swim3_dbg("%s", " try to write, disk write protected\n");
367 swim3_end_request(fs
, -EIO
, 0);
372 /* Do not remove the cast. blk_rq_pos(req) is now a
373 * sector_t and can be 64 bits, but it will never go
374 * past 32 bits for this driver anyway, so we can
375 * safely cast it down and not have to do a 64/32
378 fs
->req_cyl
= ((long)blk_rq_pos(req
)) / fs
->secpercyl
;
379 x
= ((long)blk_rq_pos(req
)) % fs
->secpercyl
;
380 fs
->head
= x
/ fs
->secpertrack
;
381 fs
->req_sector
= x
% fs
->secpertrack
+ 1;
382 fs
->state
= do_transfer
;
389 static void do_fd_request(struct request_queue
* q
)
391 start_request(q
->queuedata
);
394 static void set_timeout(struct floppy_state
*fs
, int nticks
,
395 void (*proc
)(unsigned long))
397 if (fs
->timeout_pending
)
398 del_timer(&fs
->timeout
);
399 fs
->timeout
.expires
= jiffies
+ nticks
;
400 fs
->timeout
.function
= proc
;
401 fs
->timeout
.data
= (unsigned long) fs
;
402 add_timer(&fs
->timeout
);
403 fs
->timeout_pending
= 1;
406 static inline void scan_track(struct floppy_state
*fs
)
408 struct swim3 __iomem
*sw
= fs
->swim3
;
410 swim3_select(fs
, READ_DATA_0
);
411 in_8(&sw
->intr
); /* clear SEEN_SECTOR bit */
413 out_8(&sw
->intr_enable
, SEEN_SECTOR
);
414 out_8(&sw
->control_bis
, DO_ACTION
);
415 /* enable intr when track found */
416 set_timeout(fs
, HZ
, scan_timeout
); /* enable timeout */
419 static inline void seek_track(struct floppy_state
*fs
, int n
)
421 struct swim3 __iomem
*sw
= fs
->swim3
;
424 swim3_action(fs
, SEEK_POSITIVE
);
427 swim3_action(fs
, SEEK_NEGATIVE
);
430 fs
->expect_cyl
= (fs
->cur_cyl
>= 0)? fs
->cur_cyl
+ n
: -1;
431 swim3_select(fs
, STEP
);
433 /* enable intr when seek finished */
434 out_8(&sw
->intr_enable
, SEEK_DONE
);
435 out_8(&sw
->control_bis
, DO_SEEK
);
436 set_timeout(fs
, 3*HZ
, seek_timeout
); /* enable timeout */
440 static inline void init_dma(struct dbdma_cmd
*cp
, int cmd
,
441 void *buf
, int count
)
443 cp
->req_count
= cpu_to_le16(count
);
444 cp
->command
= cpu_to_le16(cmd
);
445 cp
->phy_addr
= cpu_to_le32(virt_to_bus(buf
));
449 static inline void setup_transfer(struct floppy_state
*fs
)
452 struct swim3 __iomem
*sw
= fs
->swim3
;
453 struct dbdma_cmd
*cp
= fs
->dma_cmd
;
454 struct dbdma_regs __iomem
*dr
= fs
->dma
;
455 struct request
*req
= fs
->cur_req
;
457 if (blk_rq_cur_sectors(req
) <= 0) {
458 swim3_warn("%s", "Transfer 0 sectors ?\n");
461 if (rq_data_dir(req
) == WRITE
)
464 n
= fs
->secpertrack
- fs
->req_sector
+ 1;
465 if (n
> blk_rq_cur_sectors(req
))
466 n
= blk_rq_cur_sectors(req
);
469 swim3_dbg(" setup xfer at sect %d (of %d) head %d for %d\n",
470 fs
->req_sector
, fs
->secpertrack
, fs
->head
, n
);
473 swim3_select(fs
, fs
->head
? READ_DATA_1
: READ_DATA_0
);
474 out_8(&sw
->sector
, fs
->req_sector
);
475 out_8(&sw
->nsect
, n
);
477 out_le32(&dr
->cmdptr
, virt_to_bus(cp
));
478 if (rq_data_dir(req
) == WRITE
) {
479 /* Set up 3 dma commands: write preamble, data, postamble */
480 init_dma(cp
, OUTPUT_MORE
, write_preamble
, sizeof(write_preamble
));
482 init_dma(cp
, OUTPUT_MORE
, bio_data(req
->bio
), 512);
484 init_dma(cp
, OUTPUT_LAST
, write_postamble
, sizeof(write_postamble
));
486 init_dma(cp
, INPUT_LAST
, bio_data(req
->bio
), n
* 512);
489 out_le16(&cp
->command
, DBDMA_STOP
);
490 out_8(&sw
->control_bic
, DO_ACTION
| WRITE_SECTORS
);
492 out_8(&sw
->control_bic
, DO_ACTION
| WRITE_SECTORS
);
493 if (rq_data_dir(req
) == WRITE
)
494 out_8(&sw
->control_bis
, WRITE_SECTORS
);
496 out_le32(&dr
->control
, (RUN
<< 16) | RUN
);
497 /* enable intr when transfer complete */
498 out_8(&sw
->intr_enable
, TRANSFER_DONE
);
499 out_8(&sw
->control_bis
, DO_ACTION
);
500 set_timeout(fs
, 2*HZ
, xfer_timeout
); /* enable timeout */
503 static void act(struct floppy_state
*fs
)
506 swim3_dbg(" act loop, state=%d, req_cyl=%d, cur_cyl=%d\n",
507 fs
->state
, fs
->req_cyl
, fs
->cur_cyl
);
511 return; /* XXX shouldn't get here */
514 if (swim3_readbit(fs
, TRACK_ZERO
)) {
515 swim3_dbg("%s", " locate track 0\n");
517 if (fs
->req_cyl
== 0)
518 fs
->state
= do_transfer
;
527 if (fs
->cur_cyl
< 0) {
529 fs
->state
= locating
;
532 if (fs
->req_cyl
== fs
->cur_cyl
) {
533 swim3_warn("%s", "Whoops, seeking 0\n");
534 fs
->state
= do_transfer
;
537 seek_track(fs
, fs
->req_cyl
- fs
->cur_cyl
);
541 /* check for SEEK_COMPLETE after 30ms */
542 fs
->settle_time
= (HZ
+ 32) / 33;
543 set_timeout(fs
, fs
->settle_time
, settle_timeout
);
547 if (fs
->cur_cyl
!= fs
->req_cyl
) {
548 if (fs
->retries
> 5) {
549 swim3_err("Wrong cylinder in transfer, want: %d got %d\n",
550 fs
->req_cyl
, fs
->cur_cyl
);
551 swim3_end_request(fs
, -EIO
, 0);
566 swim3_err("Unknown state %d\n", fs
->state
);
572 static void scan_timeout(unsigned long data
)
574 struct floppy_state
*fs
= (struct floppy_state
*) data
;
575 struct swim3 __iomem
*sw
= fs
->swim3
;
578 swim3_dbg("* scan timeout, state=%d\n", fs
->state
);
580 spin_lock_irqsave(&swim3_lock
, flags
);
581 fs
->timeout_pending
= 0;
582 out_8(&sw
->control_bic
, DO_ACTION
| WRITE_SECTORS
);
583 out_8(&sw
->select
, RELAX
);
584 out_8(&sw
->intr_enable
, 0);
586 if (fs
->retries
> 5) {
587 swim3_end_request(fs
, -EIO
, 0);
594 spin_unlock_irqrestore(&swim3_lock
, flags
);
597 static void seek_timeout(unsigned long data
)
599 struct floppy_state
*fs
= (struct floppy_state
*) data
;
600 struct swim3 __iomem
*sw
= fs
->swim3
;
603 swim3_dbg("* seek timeout, state=%d\n", fs
->state
);
605 spin_lock_irqsave(&swim3_lock
, flags
);
606 fs
->timeout_pending
= 0;
607 out_8(&sw
->control_bic
, DO_SEEK
);
608 out_8(&sw
->select
, RELAX
);
609 out_8(&sw
->intr_enable
, 0);
610 swim3_err("%s", "Seek timeout\n");
611 swim3_end_request(fs
, -EIO
, 0);
614 spin_unlock_irqrestore(&swim3_lock
, flags
);
617 static void settle_timeout(unsigned long data
)
619 struct floppy_state
*fs
= (struct floppy_state
*) data
;
620 struct swim3 __iomem
*sw
= fs
->swim3
;
623 swim3_dbg("* settle timeout, state=%d\n", fs
->state
);
625 spin_lock_irqsave(&swim3_lock
, flags
);
626 fs
->timeout_pending
= 0;
627 if (swim3_readbit(fs
, SEEK_COMPLETE
)) {
628 out_8(&sw
->select
, RELAX
);
629 fs
->state
= locating
;
633 out_8(&sw
->select
, RELAX
);
634 if (fs
->settle_time
< 2*HZ
) {
636 set_timeout(fs
, 1, settle_timeout
);
639 swim3_err("%s", "Seek settle timeout\n");
640 swim3_end_request(fs
, -EIO
, 0);
644 spin_unlock_irqrestore(&swim3_lock
, flags
);
647 static void xfer_timeout(unsigned long data
)
649 struct floppy_state
*fs
= (struct floppy_state
*) data
;
650 struct swim3 __iomem
*sw
= fs
->swim3
;
651 struct dbdma_regs __iomem
*dr
= fs
->dma
;
655 swim3_dbg("* xfer timeout, state=%d\n", fs
->state
);
657 spin_lock_irqsave(&swim3_lock
, flags
);
658 fs
->timeout_pending
= 0;
659 out_le32(&dr
->control
, RUN
<< 16);
660 /* We must wait a bit for dbdma to stop */
661 for (n
= 0; (in_le32(&dr
->status
) & ACTIVE
) && n
< 1000; n
++)
663 out_8(&sw
->intr_enable
, 0);
664 out_8(&sw
->control_bic
, WRITE_SECTORS
| DO_ACTION
);
665 out_8(&sw
->select
, RELAX
);
666 swim3_err("Timeout %sing sector %ld\n",
667 (rq_data_dir(fs
->cur_req
)==WRITE
? "writ": "read"),
668 (long)blk_rq_pos(fs
->cur_req
));
669 swim3_end_request(fs
, -EIO
, 0);
672 spin_unlock_irqrestore(&swim3_lock
, flags
);
675 static irqreturn_t
swim3_interrupt(int irq
, void *dev_id
)
677 struct floppy_state
*fs
= (struct floppy_state
*) dev_id
;
678 struct swim3 __iomem
*sw
= fs
->swim3
;
681 struct dbdma_regs __iomem
*dr
;
682 struct dbdma_cmd
*cp
;
684 struct request
*req
= fs
->cur_req
;
686 swim3_dbg("* interrupt, state=%d\n", fs
->state
);
688 spin_lock_irqsave(&swim3_lock
, flags
);
689 intr
= in_8(&sw
->intr
);
690 err
= (intr
& ERROR_INTR
)? in_8(&sw
->error
): 0;
691 if ((intr
& ERROR_INTR
) && fs
->state
!= do_transfer
)
692 swim3_err("Non-transfer error interrupt: state=%d, dir=%x, intr=%x, err=%x\n",
693 fs
->state
, rq_data_dir(req
), intr
, err
);
696 if (intr
& SEEN_SECTOR
) {
697 out_8(&sw
->control_bic
, DO_ACTION
| WRITE_SECTORS
);
698 out_8(&sw
->select
, RELAX
);
699 out_8(&sw
->intr_enable
, 0);
700 del_timer(&fs
->timeout
);
701 fs
->timeout_pending
= 0;
702 if (sw
->ctrack
== 0xff) {
703 swim3_err("%s", "Seen sector but cyl=ff?\n");
705 if (fs
->retries
> 5) {
706 swim3_end_request(fs
, -EIO
, 0);
715 fs
->cur_cyl
= sw
->ctrack
;
716 fs
->cur_sector
= sw
->csect
;
717 if (fs
->expect_cyl
!= -1 && fs
->expect_cyl
!= fs
->cur_cyl
)
718 swim3_err("Expected cyl %d, got %d\n",
719 fs
->expect_cyl
, fs
->cur_cyl
);
720 fs
->state
= do_transfer
;
726 if (sw
->nseek
== 0) {
727 out_8(&sw
->control_bic
, DO_SEEK
);
728 out_8(&sw
->select
, RELAX
);
729 out_8(&sw
->intr_enable
, 0);
730 del_timer(&fs
->timeout
);
731 fs
->timeout_pending
= 0;
732 if (fs
->state
== seeking
)
734 fs
->state
= settling
;
739 out_8(&sw
->intr_enable
, 0);
740 del_timer(&fs
->timeout
);
741 fs
->timeout_pending
= 0;
745 if ((intr
& (ERROR_INTR
| TRANSFER_DONE
)) == 0)
747 out_8(&sw
->intr_enable
, 0);
748 out_8(&sw
->control_bic
, WRITE_SECTORS
| DO_ACTION
);
749 out_8(&sw
->select
, RELAX
);
750 del_timer(&fs
->timeout
);
751 fs
->timeout_pending
= 0;
754 if (rq_data_dir(req
) == WRITE
)
757 * Check that the main data transfer has finished.
758 * On writing, the swim3 sometimes doesn't use
759 * up all the bytes of the postamble, so we can still
760 * see DMA active here. That doesn't matter as long
761 * as all the sector data has been transferred.
763 if ((intr
& ERROR_INTR
) == 0 && cp
->xfer_status
== 0) {
764 /* wait a little while for DMA to complete */
765 for (n
= 0; n
< 100; ++n
) {
766 if (cp
->xfer_status
!= 0)
773 out_le32(&dr
->control
, (RUN
| PAUSE
) << 16);
774 stat
= le16_to_cpu(cp
->xfer_status
);
775 resid
= le16_to_cpu(cp
->res_count
);
776 if (intr
& ERROR_INTR
) {
777 n
= fs
->scount
- 1 - resid
/ 512;
779 blk_update_request(req
, 0, n
<< 9);
782 if (fs
->retries
< 5) {
786 swim3_err("Error %sing block %ld (err=%x)\n",
787 rq_data_dir(req
) == WRITE
? "writ": "read",
788 (long)blk_rq_pos(req
), err
);
789 swim3_end_request(fs
, -EIO
, 0);
793 if ((stat
& ACTIVE
) == 0 || resid
!= 0) {
794 /* musta been an error */
795 swim3_err("fd dma error: stat=%x resid=%d\n", stat
, resid
);
796 swim3_err(" state=%d, dir=%x, intr=%x, err=%x\n",
797 fs
->state
, rq_data_dir(req
), intr
, err
);
798 swim3_end_request(fs
, -EIO
, 0);
804 if (swim3_end_request(fs
, 0, fs
->scount
<< 9)) {
805 fs
->req_sector
+= fs
->scount
;
806 if (fs
->req_sector
> fs
->secpertrack
) {
807 fs
->req_sector
-= fs
->secpertrack
;
808 if (++fs
->head
> 1) {
817 if (fs
->state
== idle
)
821 swim3_err("Don't know what to do in state %d\n", fs
->state
);
823 spin_unlock_irqrestore(&swim3_lock
, flags
);
828 static void fd_dma_interrupt(int irq, void *dev_id)
833 /* Called under the mutex to grab exclusive access to a drive */
834 static int grab_drive(struct floppy_state
*fs
, enum swim_state state
,
839 swim3_dbg("%s", "-> grab drive\n");
841 spin_lock_irqsave(&swim3_lock
, flags
);
842 if (fs
->state
!= idle
&& fs
->state
!= available
) {
844 /* this will enable irqs in order to sleep */
846 wait_event_lock_irq(fs
->wait
,
847 fs
->state
== available
,
849 else if (wait_event_interruptible_lock_irq(fs
->wait
,
850 fs
->state
== available
,
853 spin_unlock_irqrestore(&swim3_lock
, flags
);
859 spin_unlock_irqrestore(&swim3_lock
, flags
);
864 static void release_drive(struct floppy_state
*fs
)
868 swim3_dbg("%s", "-> release drive\n");
870 spin_lock_irqsave(&swim3_lock
, flags
);
873 spin_unlock_irqrestore(&swim3_lock
, flags
);
876 static int fd_eject(struct floppy_state
*fs
)
880 err
= grab_drive(fs
, ejecting
, 1);
883 swim3_action(fs
, EJECT
);
884 for (n
= 20; n
> 0; --n
) {
885 if (signal_pending(current
)) {
889 swim3_select(fs
, RELAX
);
890 schedule_timeout_interruptible(1);
891 if (swim3_readbit(fs
, DISK_IN
) == 0)
894 swim3_select(fs
, RELAX
);
901 static struct floppy_struct floppy_type
=
902 { 2880,18,2,80,0,0x1B,0x00,0xCF,0x6C,NULL
}; /* 7 1.44MB 3.5" */
904 static int floppy_locked_ioctl(struct block_device
*bdev
, fmode_t mode
,
905 unsigned int cmd
, unsigned long param
)
907 struct floppy_state
*fs
= bdev
->bd_disk
->private_data
;
910 if ((cmd
& 0x80) && !capable(CAP_SYS_ADMIN
))
913 if (fs
->mdev
->media_bay
&&
914 check_media_bay(fs
->mdev
->media_bay
) != MB_FD
)
919 if (fs
->ref_count
!= 1)
924 if (copy_to_user((void __user
*) param
, &floppy_type
,
925 sizeof(struct floppy_struct
)))
932 static int floppy_ioctl(struct block_device
*bdev
, fmode_t mode
,
933 unsigned int cmd
, unsigned long param
)
937 mutex_lock(&swim3_mutex
);
938 ret
= floppy_locked_ioctl(bdev
, mode
, cmd
, param
);
939 mutex_unlock(&swim3_mutex
);
944 static int floppy_open(struct block_device
*bdev
, fmode_t mode
)
946 struct floppy_state
*fs
= bdev
->bd_disk
->private_data
;
947 struct swim3 __iomem
*sw
= fs
->swim3
;
950 if (fs
->ref_count
== 0) {
951 if (fs
->mdev
->media_bay
&&
952 check_media_bay(fs
->mdev
->media_bay
) != MB_FD
)
954 out_8(&sw
->setup
, S_IBM_DRIVE
| S_FCLK_DIV2
);
955 out_8(&sw
->control_bic
, 0xff);
956 out_8(&sw
->mode
, 0x95);
958 out_8(&sw
->intr_enable
, 0);
959 out_8(&sw
->control_bis
, DRIVE_ENABLE
| INTR_ENABLE
);
960 swim3_action(fs
, MOTOR_ON
);
963 for (n
= 0; n
< 2 * HZ
; ++n
) {
964 if (n
>= HZ
/30 && swim3_readbit(fs
, SEEK_COMPLETE
))
966 if (signal_pending(current
)) {
970 swim3_select(fs
, RELAX
);
971 schedule_timeout_interruptible(1);
973 if (err
== 0 && (swim3_readbit(fs
, SEEK_COMPLETE
) == 0
974 || swim3_readbit(fs
, DISK_IN
) == 0))
976 swim3_action(fs
, SETMFM
);
977 swim3_select(fs
, RELAX
);
979 } else if (fs
->ref_count
== -1 || mode
& FMODE_EXCL
)
982 if (err
== 0 && (mode
& FMODE_NDELAY
) == 0
983 && (mode
& (FMODE_READ
|FMODE_WRITE
))) {
984 check_disk_change(bdev
);
989 if (err
== 0 && (mode
& FMODE_WRITE
)) {
990 if (fs
->write_prot
< 0)
991 fs
->write_prot
= swim3_readbit(fs
, WRITE_PROT
);
997 if (fs
->ref_count
== 0) {
998 swim3_action(fs
, MOTOR_OFF
);
999 out_8(&sw
->control_bic
, DRIVE_ENABLE
| INTR_ENABLE
);
1000 swim3_select(fs
, RELAX
);
1005 if (mode
& FMODE_EXCL
)
1013 static int floppy_unlocked_open(struct block_device
*bdev
, fmode_t mode
)
1017 mutex_lock(&swim3_mutex
);
1018 ret
= floppy_open(bdev
, mode
);
1019 mutex_unlock(&swim3_mutex
);
1024 static void floppy_release(struct gendisk
*disk
, fmode_t mode
)
1026 struct floppy_state
*fs
= disk
->private_data
;
1027 struct swim3 __iomem
*sw
= fs
->swim3
;
1029 mutex_lock(&swim3_mutex
);
1030 if (fs
->ref_count
> 0)
1032 else if (fs
->ref_count
== -1)
1034 if (fs
->ref_count
== 0) {
1035 swim3_action(fs
, MOTOR_OFF
);
1036 out_8(&sw
->control_bic
, 0xff);
1037 swim3_select(fs
, RELAX
);
1039 mutex_unlock(&swim3_mutex
);
1042 static unsigned int floppy_check_events(struct gendisk
*disk
,
1043 unsigned int clearing
)
1045 struct floppy_state
*fs
= disk
->private_data
;
1046 return fs
->ejected
? DISK_EVENT_MEDIA_CHANGE
: 0;
1049 static int floppy_revalidate(struct gendisk
*disk
)
1051 struct floppy_state
*fs
= disk
->private_data
;
1052 struct swim3 __iomem
*sw
;
1055 if (fs
->mdev
->media_bay
&&
1056 check_media_bay(fs
->mdev
->media_bay
) != MB_FD
)
1060 grab_drive(fs
, revalidating
, 0);
1061 out_8(&sw
->intr_enable
, 0);
1062 out_8(&sw
->control_bis
, DRIVE_ENABLE
);
1063 swim3_action(fs
, MOTOR_ON
); /* necessary? */
1064 fs
->write_prot
= -1;
1067 for (n
= HZ
; n
> 0; --n
) {
1068 if (swim3_readbit(fs
, SEEK_COMPLETE
))
1070 if (signal_pending(current
))
1072 swim3_select(fs
, RELAX
);
1073 schedule_timeout_interruptible(1);
1075 ret
= swim3_readbit(fs
, SEEK_COMPLETE
) == 0
1076 || swim3_readbit(fs
, DISK_IN
) == 0;
1078 swim3_action(fs
, MOTOR_OFF
);
1081 swim3_action(fs
, SETMFM
);
1083 swim3_select(fs
, RELAX
);
1089 static const struct block_device_operations floppy_fops
= {
1090 .open
= floppy_unlocked_open
,
1091 .release
= floppy_release
,
1092 .ioctl
= floppy_ioctl
,
1093 .check_events
= floppy_check_events
,
1094 .revalidate_disk
= floppy_revalidate
,
1097 static void swim3_mb_event(struct macio_dev
* mdev
, int mb_state
)
1099 struct floppy_state
*fs
= macio_get_drvdata(mdev
);
1100 struct swim3 __iomem
*sw
;
1107 if (mb_state
!= MB_FD
)
1111 out_8(&sw
->intr_enable
, 0);
1116 static int swim3_add_device(struct macio_dev
*mdev
, int index
)
1118 struct device_node
*swim
= mdev
->ofdev
.dev
.of_node
;
1119 struct floppy_state
*fs
= &floppy_states
[index
];
1122 /* Do this first for message macros */
1123 memset(fs
, 0, sizeof(*fs
));
1127 /* Check & Request resources */
1128 if (macio_resource_count(mdev
) < 2) {
1129 swim3_err("%s", "No address in device-tree\n");
1132 if (macio_irq_count(mdev
) < 1) {
1133 swim3_err("%s", "No interrupt in device-tree\n");
1136 if (macio_request_resource(mdev
, 0, "swim3 (mmio)")) {
1137 swim3_err("%s", "Can't request mmio resource\n");
1140 if (macio_request_resource(mdev
, 1, "swim3 (dma)")) {
1141 swim3_err("%s", "Can't request dma resource\n");
1142 macio_release_resource(mdev
, 0);
1145 dev_set_drvdata(&mdev
->ofdev
.dev
, fs
);
1147 if (mdev
->media_bay
== NULL
)
1148 pmac_call_feature(PMAC_FTR_SWIM3_ENABLE
, swim
, 0, 1);
1151 fs
->swim3
= (struct swim3 __iomem
*)
1152 ioremap(macio_resource_start(mdev
, 0), 0x200);
1153 if (fs
->swim3
== NULL
) {
1154 swim3_err("%s", "Couldn't map mmio registers\n");
1158 fs
->dma
= (struct dbdma_regs __iomem
*)
1159 ioremap(macio_resource_start(mdev
, 1), 0x200);
1160 if (fs
->dma
== NULL
) {
1161 swim3_err("%s", "Couldn't map dma registers\n");
1166 fs
->swim3_intr
= macio_irq(mdev
, 0);
1167 fs
->dma_intr
= macio_irq(mdev
, 1);
1169 fs
->cur_sector
= -1;
1171 fs
->secpertrack
= 18;
1172 fs
->total_secs
= 2880;
1173 init_waitqueue_head(&fs
->wait
);
1175 fs
->dma_cmd
= (struct dbdma_cmd
*) DBDMA_ALIGN(fs
->dbdma_cmd_space
);
1176 memset(fs
->dma_cmd
, 0, 2 * sizeof(struct dbdma_cmd
));
1177 fs
->dma_cmd
[1].command
= cpu_to_le16(DBDMA_STOP
);
1179 if (mdev
->media_bay
== NULL
|| check_media_bay(mdev
->media_bay
) == MB_FD
)
1180 swim3_mb_event(mdev
, MB_FD
);
1182 if (request_irq(fs
->swim3_intr
, swim3_interrupt
, 0, "SWIM3", fs
)) {
1183 swim3_err("%s", "Couldn't request interrupt\n");
1184 pmac_call_feature(PMAC_FTR_SWIM3_ENABLE
, swim
, 0, 0);
1189 init_timer(&fs
->timeout
);
1191 swim3_info("SWIM3 floppy controller %s\n",
1192 mdev
->media_bay
? "in media bay" : "");
1201 macio_release_resource(mdev
, 0);
1202 macio_release_resource(mdev
, 1);
1207 static int swim3_attach(struct macio_dev
*mdev
,
1208 const struct of_device_id
*match
)
1210 struct gendisk
*disk
;
1213 index
= floppy_count
++;
1214 if (index
>= MAX_FLOPPIES
)
1218 rc
= swim3_add_device(mdev
, index
);
1221 /* Now register that disk. Same comment about failure handling */
1222 disk
= disks
[index
] = alloc_disk(1);
1225 disk
->queue
= blk_init_queue(do_fd_request
, &swim3_lock
);
1226 if (disk
->queue
== NULL
) {
1230 disk
->queue
->queuedata
= &floppy_states
[index
];
1233 /* If we failed, there isn't much we can do as the driver is still
1234 * too dumb to remove the device, just bail out
1236 if (register_blkdev(FLOPPY_MAJOR
, "fd"))
1240 disk
->major
= FLOPPY_MAJOR
;
1241 disk
->first_minor
= index
;
1242 disk
->fops
= &floppy_fops
;
1243 disk
->private_data
= &floppy_states
[index
];
1244 disk
->flags
|= GENHD_FL_REMOVABLE
;
1245 sprintf(disk
->disk_name
, "fd%d", index
);
1246 set_capacity(disk
, 2880);
1252 static struct of_device_id swim3_match
[] =
1258 .compatible
= "ohare-swim3"
1261 .compatible
= "swim3"
1263 { /* end of list */ }
1266 static struct macio_driver swim3_driver
=
1270 .of_match_table
= swim3_match
,
1272 .probe
= swim3_attach
,
1273 #ifdef CONFIG_PMAC_MEDIABAY
1274 .mediabay_event
= swim3_mb_event
,
1277 .suspend
= swim3_suspend
,
1278 .resume
= swim3_resume
,
1283 int swim3_init(void)
1285 macio_register_driver(&swim3_driver
);
1289 module_init(swim3_init
)
1291 MODULE_LICENSE("GPL");
1292 MODULE_AUTHOR("Paul Mackerras");
1293 MODULE_ALIAS_BLOCKDEV_MAJOR(FLOPPY_MAJOR
);