io_uring: ensure finish_wait() is always called in __io_uring_task_cancel()
[linux/fpc-iii.git] / drivers / block / swim.c
blobcc6a0bc6c005a7be512487c42fecb5388b5788b7
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * Driver for SWIM (Sander Woz Integrated Machine) floppy controller
5 * Copyright (C) 2004,2008 Laurent Vivier <Laurent@lvivier.info>
7 * based on Alastair Bridgewater SWIM analysis, 2001
8 * based on SWIM3 driver (c) Paul Mackerras, 1996
9 * based on netBSD IWM driver (c) 1997, 1998 Hauke Fath.
11 * 2004-08-21 (lv) - Initial implementation
12 * 2008-10-30 (lv) - Port to 2.6
15 #include <linux/module.h>
16 #include <linux/fd.h>
17 #include <linux/slab.h>
18 #include <linux/blk-mq.h>
19 #include <linux/mutex.h>
20 #include <linux/hdreg.h>
21 #include <linux/kernel.h>
22 #include <linux/delay.h>
23 #include <linux/platform_device.h>
25 #include <asm/mac_via.h>
27 #define CARDNAME "swim"
29 struct sector_header {
30 unsigned char side;
31 unsigned char track;
32 unsigned char sector;
33 unsigned char size;
34 unsigned char crc0;
35 unsigned char crc1;
36 } __attribute__((packed));
38 #define DRIVER_VERSION "Version 0.2 (2008-10-30)"
40 #define REG(x) unsigned char x, x ## _pad[0x200 - 1];
42 struct swim {
43 REG(write_data)
44 REG(write_mark)
45 REG(write_CRC)
46 REG(write_parameter)
47 REG(write_phase)
48 REG(write_setup)
49 REG(write_mode0)
50 REG(write_mode1)
52 REG(read_data)
53 REG(read_mark)
54 REG(read_error)
55 REG(read_parameter)
56 REG(read_phase)
57 REG(read_setup)
58 REG(read_status)
59 REG(read_handshake)
60 } __attribute__((packed));
62 #define swim_write(base, reg, v) out_8(&(base)->write_##reg, (v))
63 #define swim_read(base, reg) in_8(&(base)->read_##reg)
65 /* IWM registers */
67 struct iwm {
68 REG(ph0L)
69 REG(ph0H)
70 REG(ph1L)
71 REG(ph1H)
72 REG(ph2L)
73 REG(ph2H)
74 REG(ph3L)
75 REG(ph3H)
76 REG(mtrOff)
77 REG(mtrOn)
78 REG(intDrive)
79 REG(extDrive)
80 REG(q6L)
81 REG(q6H)
82 REG(q7L)
83 REG(q7H)
84 } __attribute__((packed));
86 #define iwm_write(base, reg, v) out_8(&(base)->reg, (v))
87 #define iwm_read(base, reg) in_8(&(base)->reg)
89 /* bits in phase register */
91 #define SEEK_POSITIVE 0x070
92 #define SEEK_NEGATIVE 0x074
93 #define STEP 0x071
94 #define MOTOR_ON 0x072
95 #define MOTOR_OFF 0x076
96 #define INDEX 0x073
97 #define EJECT 0x077
98 #define SETMFM 0x171
99 #define SETGCR 0x175
101 #define RELAX 0x033
102 #define LSTRB 0x008
104 #define CA_MASK 0x077
106 /* Select values for swim_select and swim_readbit */
108 #define READ_DATA_0 0x074
109 #define ONEMEG_DRIVE 0x075
110 #define SINGLE_SIDED 0x076
111 #define DRIVE_PRESENT 0x077
112 #define DISK_IN 0x170
113 #define WRITE_PROT 0x171
114 #define TRACK_ZERO 0x172
115 #define TACHO 0x173
116 #define READ_DATA_1 0x174
117 #define GCR_MODE 0x175
118 #define SEEK_COMPLETE 0x176
119 #define TWOMEG_MEDIA 0x177
121 /* Bits in handshake register */
123 #define MARK_BYTE 0x01
124 #define CRC_ZERO 0x02
125 #define RDDATA 0x04
126 #define SENSE 0x08
127 #define MOTEN 0x10
128 #define ERROR 0x20
129 #define DAT2BYTE 0x40
130 #define DAT1BYTE 0x80
132 /* bits in setup register */
134 #define S_INV_WDATA 0x01
135 #define S_3_5_SELECT 0x02
136 #define S_GCR 0x04
137 #define S_FCLK_DIV2 0x08
138 #define S_ERROR_CORR 0x10
139 #define S_IBM_DRIVE 0x20
140 #define S_GCR_WRITE 0x40
141 #define S_TIMEOUT 0x80
143 /* bits in mode register */
145 #define CLFIFO 0x01
146 #define ENBL1 0x02
147 #define ENBL2 0x04
148 #define ACTION 0x08
149 #define WRITE_MODE 0x10
150 #define HEDSEL 0x20
151 #define MOTON 0x80
153 /*----------------------------------------------------------------------------*/
155 enum drive_location {
156 INTERNAL_DRIVE = 0x02,
157 EXTERNAL_DRIVE = 0x04,
160 enum media_type {
161 DD_MEDIA,
162 HD_MEDIA,
165 struct floppy_state {
167 /* physical properties */
169 enum drive_location location; /* internal or external drive */
170 int head_number; /* single- or double-sided drive */
172 /* media */
174 int disk_in;
175 int ejected;
176 enum media_type type;
177 int write_protected;
179 int total_secs;
180 int secpercyl;
181 int secpertrack;
183 /* in-use information */
185 int track;
186 int ref_count;
188 struct gendisk *disk;
189 struct blk_mq_tag_set tag_set;
191 /* parent controller */
193 struct swim_priv *swd;
196 enum motor_action {
197 OFF,
201 enum head {
202 LOWER_HEAD = 0,
203 UPPER_HEAD = 1,
206 #define FD_MAX_UNIT 2
208 struct swim_priv {
209 struct swim __iomem *base;
210 spinlock_t lock;
211 int floppy_count;
212 struct floppy_state unit[FD_MAX_UNIT];
215 extern int swim_read_sector_header(struct swim __iomem *base,
216 struct sector_header *header);
217 extern int swim_read_sector_data(struct swim __iomem *base,
218 unsigned char *data);
220 static DEFINE_MUTEX(swim_mutex);
221 static inline void set_swim_mode(struct swim __iomem *base, int enable)
223 struct iwm __iomem *iwm_base;
224 unsigned long flags;
226 if (!enable) {
227 swim_write(base, mode0, 0xf8);
228 return;
231 iwm_base = (struct iwm __iomem *)base;
232 local_irq_save(flags);
234 iwm_read(iwm_base, q7L);
235 iwm_read(iwm_base, mtrOff);
236 iwm_read(iwm_base, q6H);
238 iwm_write(iwm_base, q7H, 0x57);
239 iwm_write(iwm_base, q7H, 0x17);
240 iwm_write(iwm_base, q7H, 0x57);
241 iwm_write(iwm_base, q7H, 0x57);
243 local_irq_restore(flags);
246 static inline int get_swim_mode(struct swim __iomem *base)
248 unsigned long flags;
250 local_irq_save(flags);
252 swim_write(base, phase, 0xf5);
253 if (swim_read(base, phase) != 0xf5)
254 goto is_iwm;
255 swim_write(base, phase, 0xf6);
256 if (swim_read(base, phase) != 0xf6)
257 goto is_iwm;
258 swim_write(base, phase, 0xf7);
259 if (swim_read(base, phase) != 0xf7)
260 goto is_iwm;
261 local_irq_restore(flags);
262 return 1;
263 is_iwm:
264 local_irq_restore(flags);
265 return 0;
268 static inline void swim_select(struct swim __iomem *base, int sel)
270 swim_write(base, phase, RELAX);
272 via1_set_head(sel & 0x100);
274 swim_write(base, phase, sel & CA_MASK);
277 static inline void swim_action(struct swim __iomem *base, int action)
279 unsigned long flags;
281 local_irq_save(flags);
283 swim_select(base, action);
284 udelay(1);
285 swim_write(base, phase, (LSTRB<<4) | LSTRB);
286 udelay(1);
287 swim_write(base, phase, (LSTRB<<4) | ((~LSTRB) & 0x0F));
288 udelay(1);
290 local_irq_restore(flags);
293 static inline int swim_readbit(struct swim __iomem *base, int bit)
295 int stat;
297 swim_select(base, bit);
299 udelay(10);
301 stat = swim_read(base, handshake);
303 return (stat & SENSE) == 0;
306 static inline void swim_drive(struct swim __iomem *base,
307 enum drive_location location)
309 if (location == INTERNAL_DRIVE) {
310 swim_write(base, mode0, EXTERNAL_DRIVE); /* clear drive 1 bit */
311 swim_write(base, mode1, INTERNAL_DRIVE); /* set drive 0 bit */
312 } else if (location == EXTERNAL_DRIVE) {
313 swim_write(base, mode0, INTERNAL_DRIVE); /* clear drive 0 bit */
314 swim_write(base, mode1, EXTERNAL_DRIVE); /* set drive 1 bit */
318 static inline void swim_motor(struct swim __iomem *base,
319 enum motor_action action)
321 if (action == ON) {
322 int i;
324 swim_action(base, MOTOR_ON);
326 for (i = 0; i < 2*HZ; i++) {
327 swim_select(base, RELAX);
328 if (swim_readbit(base, MOTOR_ON))
329 break;
330 set_current_state(TASK_INTERRUPTIBLE);
331 schedule_timeout(1);
333 } else if (action == OFF) {
334 swim_action(base, MOTOR_OFF);
335 swim_select(base, RELAX);
339 static inline void swim_eject(struct swim __iomem *base)
341 int i;
343 swim_action(base, EJECT);
345 for (i = 0; i < 2*HZ; i++) {
346 swim_select(base, RELAX);
347 if (!swim_readbit(base, DISK_IN))
348 break;
349 set_current_state(TASK_INTERRUPTIBLE);
350 schedule_timeout(1);
352 swim_select(base, RELAX);
355 static inline void swim_head(struct swim __iomem *base, enum head head)
357 /* wait drive is ready */
359 if (head == UPPER_HEAD)
360 swim_select(base, READ_DATA_1);
361 else if (head == LOWER_HEAD)
362 swim_select(base, READ_DATA_0);
365 static inline int swim_step(struct swim __iomem *base)
367 int wait;
369 swim_action(base, STEP);
371 for (wait = 0; wait < HZ; wait++) {
373 set_current_state(TASK_INTERRUPTIBLE);
374 schedule_timeout(1);
376 swim_select(base, RELAX);
377 if (!swim_readbit(base, STEP))
378 return 0;
380 return -1;
383 static inline int swim_track00(struct swim __iomem *base)
385 int try;
387 swim_action(base, SEEK_NEGATIVE);
389 for (try = 0; try < 100; try++) {
391 swim_select(base, RELAX);
392 if (swim_readbit(base, TRACK_ZERO))
393 break;
395 if (swim_step(base))
396 return -1;
399 if (swim_readbit(base, TRACK_ZERO))
400 return 0;
402 return -1;
405 static inline int swim_seek(struct swim __iomem *base, int step)
407 if (step == 0)
408 return 0;
410 if (step < 0) {
411 swim_action(base, SEEK_NEGATIVE);
412 step = -step;
413 } else
414 swim_action(base, SEEK_POSITIVE);
416 for ( ; step > 0; step--) {
417 if (swim_step(base))
418 return -1;
421 return 0;
424 static inline int swim_track(struct floppy_state *fs, int track)
426 struct swim __iomem *base = fs->swd->base;
427 int ret;
429 ret = swim_seek(base, track - fs->track);
431 if (ret == 0)
432 fs->track = track;
433 else {
434 swim_track00(base);
435 fs->track = 0;
438 return ret;
441 static int floppy_eject(struct floppy_state *fs)
443 struct swim __iomem *base = fs->swd->base;
445 swim_drive(base, fs->location);
446 swim_motor(base, OFF);
447 swim_eject(base);
449 fs->disk_in = 0;
450 fs->ejected = 1;
452 return 0;
455 static inline int swim_read_sector(struct floppy_state *fs,
456 int side, int track,
457 int sector, unsigned char *buffer)
459 struct swim __iomem *base = fs->swd->base;
460 unsigned long flags;
461 struct sector_header header;
462 int ret = -1;
463 short i;
465 swim_track(fs, track);
467 swim_write(base, mode1, MOTON);
468 swim_head(base, side);
469 swim_write(base, mode0, side);
471 local_irq_save(flags);
472 for (i = 0; i < 36; i++) {
473 ret = swim_read_sector_header(base, &header);
474 if (!ret && (header.sector == sector)) {
475 /* found */
477 ret = swim_read_sector_data(base, buffer);
478 break;
481 local_irq_restore(flags);
483 swim_write(base, mode0, MOTON);
485 if ((header.side != side) || (header.track != track) ||
486 (header.sector != sector))
487 return 0;
489 return ret;
492 static blk_status_t floppy_read_sectors(struct floppy_state *fs,
493 int req_sector, int sectors_nb,
494 unsigned char *buffer)
496 struct swim __iomem *base = fs->swd->base;
497 int ret;
498 int side, track, sector;
499 int i, try;
502 swim_drive(base, fs->location);
503 for (i = req_sector; i < req_sector + sectors_nb; i++) {
504 int x;
505 track = i / fs->secpercyl;
506 x = i % fs->secpercyl;
507 side = x / fs->secpertrack;
508 sector = x % fs->secpertrack + 1;
510 try = 5;
511 do {
512 ret = swim_read_sector(fs, side, track, sector,
513 buffer);
514 if (try-- == 0)
515 return BLK_STS_IOERR;
516 } while (ret != 512);
518 buffer += ret;
521 return 0;
524 static blk_status_t swim_queue_rq(struct blk_mq_hw_ctx *hctx,
525 const struct blk_mq_queue_data *bd)
527 struct floppy_state *fs = hctx->queue->queuedata;
528 struct swim_priv *swd = fs->swd;
529 struct request *req = bd->rq;
530 blk_status_t err;
532 if (!spin_trylock_irq(&swd->lock))
533 return BLK_STS_DEV_RESOURCE;
535 blk_mq_start_request(req);
537 if (!fs->disk_in || rq_data_dir(req) == WRITE) {
538 err = BLK_STS_IOERR;
539 goto out;
542 do {
543 err = floppy_read_sectors(fs, blk_rq_pos(req),
544 blk_rq_cur_sectors(req),
545 bio_data(req->bio));
546 } while (blk_update_request(req, err, blk_rq_cur_bytes(req)));
547 __blk_mq_end_request(req, err);
549 err = BLK_STS_OK;
550 out:
551 spin_unlock_irq(&swd->lock);
552 return err;
556 static struct floppy_struct floppy_type[4] = {
557 { 0, 0, 0, 0, 0, 0x00, 0x00, 0x00, 0x00, NULL }, /* no testing */
558 { 720, 9, 1, 80, 0, 0x2A, 0x02, 0xDF, 0x50, NULL }, /* 360KB SS 3.5"*/
559 { 1440, 9, 2, 80, 0, 0x2A, 0x02, 0xDF, 0x50, NULL }, /* 720KB 3.5" */
560 { 2880, 18, 2, 80, 0, 0x1B, 0x00, 0xCF, 0x6C, NULL }, /* 1.44MB 3.5" */
563 static int get_floppy_geometry(struct floppy_state *fs, int type,
564 struct floppy_struct **g)
566 if (type >= ARRAY_SIZE(floppy_type))
567 return -EINVAL;
569 if (type)
570 *g = &floppy_type[type];
571 else if (fs->type == HD_MEDIA) /* High-Density media */
572 *g = &floppy_type[3];
573 else if (fs->head_number == 2) /* double-sided */
574 *g = &floppy_type[2];
575 else
576 *g = &floppy_type[1];
578 return 0;
581 static void setup_medium(struct floppy_state *fs)
583 struct swim __iomem *base = fs->swd->base;
585 if (swim_readbit(base, DISK_IN)) {
586 struct floppy_struct *g;
587 fs->disk_in = 1;
588 fs->write_protected = swim_readbit(base, WRITE_PROT);
590 if (swim_track00(base))
591 printk(KERN_ERR
592 "SWIM: cannot move floppy head to track 0\n");
594 swim_track00(base);
596 fs->type = swim_readbit(base, TWOMEG_MEDIA) ?
597 HD_MEDIA : DD_MEDIA;
598 fs->head_number = swim_readbit(base, SINGLE_SIDED) ? 1 : 2;
599 get_floppy_geometry(fs, 0, &g);
600 fs->total_secs = g->size;
601 fs->secpercyl = g->head * g->sect;
602 fs->secpertrack = g->sect;
603 fs->track = 0;
604 } else {
605 fs->disk_in = 0;
609 static int floppy_open(struct block_device *bdev, fmode_t mode)
611 struct floppy_state *fs = bdev->bd_disk->private_data;
612 struct swim __iomem *base = fs->swd->base;
613 int err;
615 if (fs->ref_count == -1 || (fs->ref_count && mode & FMODE_EXCL))
616 return -EBUSY;
618 if (mode & FMODE_EXCL)
619 fs->ref_count = -1;
620 else
621 fs->ref_count++;
623 swim_write(base, setup, S_IBM_DRIVE | S_FCLK_DIV2);
624 udelay(10);
625 swim_drive(base, fs->location);
626 swim_motor(base, ON);
627 swim_action(base, SETMFM);
628 if (fs->ejected)
629 setup_medium(fs);
630 if (!fs->disk_in) {
631 err = -ENXIO;
632 goto out;
635 set_capacity(fs->disk, fs->total_secs);
637 if (mode & FMODE_NDELAY)
638 return 0;
640 if (mode & (FMODE_READ|FMODE_WRITE)) {
641 if (bdev_check_media_change(bdev) && fs->disk_in)
642 fs->ejected = 0;
643 if ((mode & FMODE_WRITE) && fs->write_protected) {
644 err = -EROFS;
645 goto out;
648 return 0;
649 out:
650 if (fs->ref_count < 0)
651 fs->ref_count = 0;
652 else if (fs->ref_count > 0)
653 --fs->ref_count;
655 if (fs->ref_count == 0)
656 swim_motor(base, OFF);
657 return err;
660 static int floppy_unlocked_open(struct block_device *bdev, fmode_t mode)
662 int ret;
664 mutex_lock(&swim_mutex);
665 ret = floppy_open(bdev, mode);
666 mutex_unlock(&swim_mutex);
668 return ret;
671 static void floppy_release(struct gendisk *disk, fmode_t mode)
673 struct floppy_state *fs = disk->private_data;
674 struct swim __iomem *base = fs->swd->base;
676 mutex_lock(&swim_mutex);
677 if (fs->ref_count < 0)
678 fs->ref_count = 0;
679 else if (fs->ref_count > 0)
680 --fs->ref_count;
682 if (fs->ref_count == 0)
683 swim_motor(base, OFF);
684 mutex_unlock(&swim_mutex);
687 static int floppy_ioctl(struct block_device *bdev, fmode_t mode,
688 unsigned int cmd, unsigned long param)
690 struct floppy_state *fs = bdev->bd_disk->private_data;
691 int err;
693 if ((cmd & 0x80) && !capable(CAP_SYS_ADMIN))
694 return -EPERM;
696 switch (cmd) {
697 case FDEJECT:
698 if (fs->ref_count != 1)
699 return -EBUSY;
700 mutex_lock(&swim_mutex);
701 err = floppy_eject(fs);
702 mutex_unlock(&swim_mutex);
703 return err;
705 case FDGETPRM:
706 if (copy_to_user((void __user *) param, (void *) &floppy_type,
707 sizeof(struct floppy_struct)))
708 return -EFAULT;
709 return 0;
711 return -ENOTTY;
714 static int floppy_getgeo(struct block_device *bdev, struct hd_geometry *geo)
716 struct floppy_state *fs = bdev->bd_disk->private_data;
717 struct floppy_struct *g;
718 int ret;
720 ret = get_floppy_geometry(fs, 0, &g);
721 if (ret)
722 return ret;
724 geo->heads = g->head;
725 geo->sectors = g->sect;
726 geo->cylinders = g->track;
728 return 0;
731 static unsigned int floppy_check_events(struct gendisk *disk,
732 unsigned int clearing)
734 struct floppy_state *fs = disk->private_data;
736 return fs->ejected ? DISK_EVENT_MEDIA_CHANGE : 0;
739 static const struct block_device_operations floppy_fops = {
740 .owner = THIS_MODULE,
741 .open = floppy_unlocked_open,
742 .release = floppy_release,
743 .ioctl = floppy_ioctl,
744 .getgeo = floppy_getgeo,
745 .check_events = floppy_check_events,
748 static int swim_add_floppy(struct swim_priv *swd, enum drive_location location)
750 struct floppy_state *fs = &swd->unit[swd->floppy_count];
751 struct swim __iomem *base = swd->base;
753 fs->location = location;
755 swim_drive(base, location);
757 swim_motor(base, OFF);
759 fs->type = HD_MEDIA;
760 fs->head_number = 2;
762 fs->ref_count = 0;
763 fs->ejected = 1;
765 swd->floppy_count++;
767 return 0;
770 static const struct blk_mq_ops swim_mq_ops = {
771 .queue_rq = swim_queue_rq,
774 static int swim_floppy_init(struct swim_priv *swd)
776 int err;
777 int drive;
778 struct swim __iomem *base = swd->base;
780 /* scan floppy drives */
782 swim_drive(base, INTERNAL_DRIVE);
783 if (swim_readbit(base, DRIVE_PRESENT) &&
784 !swim_readbit(base, ONEMEG_DRIVE))
785 swim_add_floppy(swd, INTERNAL_DRIVE);
786 swim_drive(base, EXTERNAL_DRIVE);
787 if (swim_readbit(base, DRIVE_PRESENT) &&
788 !swim_readbit(base, ONEMEG_DRIVE))
789 swim_add_floppy(swd, EXTERNAL_DRIVE);
791 /* register floppy drives */
793 err = register_blkdev(FLOPPY_MAJOR, "fd");
794 if (err) {
795 printk(KERN_ERR "Unable to get major %d for SWIM floppy\n",
796 FLOPPY_MAJOR);
797 return -EBUSY;
800 spin_lock_init(&swd->lock);
802 for (drive = 0; drive < swd->floppy_count; drive++) {
803 struct request_queue *q;
805 swd->unit[drive].disk = alloc_disk(1);
806 if (swd->unit[drive].disk == NULL) {
807 err = -ENOMEM;
808 goto exit_put_disks;
811 q = blk_mq_init_sq_queue(&swd->unit[drive].tag_set, &swim_mq_ops,
812 2, BLK_MQ_F_SHOULD_MERGE);
813 if (IS_ERR(q)) {
814 err = PTR_ERR(q);
815 goto exit_put_disks;
818 swd->unit[drive].disk->queue = q;
819 blk_queue_bounce_limit(swd->unit[drive].disk->queue,
820 BLK_BOUNCE_HIGH);
821 swd->unit[drive].disk->queue->queuedata = &swd->unit[drive];
822 swd->unit[drive].swd = swd;
825 for (drive = 0; drive < swd->floppy_count; drive++) {
826 swd->unit[drive].disk->flags = GENHD_FL_REMOVABLE;
827 swd->unit[drive].disk->major = FLOPPY_MAJOR;
828 swd->unit[drive].disk->first_minor = drive;
829 sprintf(swd->unit[drive].disk->disk_name, "fd%d", drive);
830 swd->unit[drive].disk->fops = &floppy_fops;
831 swd->unit[drive].disk->events = DISK_EVENT_MEDIA_CHANGE;
832 swd->unit[drive].disk->private_data = &swd->unit[drive];
833 set_capacity(swd->unit[drive].disk, 2880);
834 add_disk(swd->unit[drive].disk);
837 return 0;
839 exit_put_disks:
840 unregister_blkdev(FLOPPY_MAJOR, "fd");
841 do {
842 struct gendisk *disk = swd->unit[drive].disk;
844 if (disk) {
845 if (disk->queue) {
846 blk_cleanup_queue(disk->queue);
847 disk->queue = NULL;
849 blk_mq_free_tag_set(&swd->unit[drive].tag_set);
850 put_disk(disk);
852 } while (drive--);
853 return err;
856 static int swim_probe(struct platform_device *dev)
858 struct resource *res;
859 struct swim __iomem *swim_base;
860 struct swim_priv *swd;
861 int ret;
863 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
864 if (!res) {
865 ret = -ENODEV;
866 goto out;
869 if (!request_mem_region(res->start, resource_size(res), CARDNAME)) {
870 ret = -EBUSY;
871 goto out;
874 swim_base = (struct swim __iomem *)res->start;
875 if (!swim_base) {
876 ret = -ENOMEM;
877 goto out_release_io;
880 /* probe device */
882 set_swim_mode(swim_base, 1);
883 if (!get_swim_mode(swim_base)) {
884 printk(KERN_INFO "SWIM device not found !\n");
885 ret = -ENODEV;
886 goto out_release_io;
889 /* set platform driver data */
891 swd = kzalloc(sizeof(struct swim_priv), GFP_KERNEL);
892 if (!swd) {
893 ret = -ENOMEM;
894 goto out_release_io;
896 platform_set_drvdata(dev, swd);
898 swd->base = swim_base;
900 ret = swim_floppy_init(swd);
901 if (ret)
902 goto out_kfree;
904 return 0;
906 out_kfree:
907 kfree(swd);
908 out_release_io:
909 release_mem_region(res->start, resource_size(res));
910 out:
911 return ret;
914 static int swim_remove(struct platform_device *dev)
916 struct swim_priv *swd = platform_get_drvdata(dev);
917 int drive;
918 struct resource *res;
920 for (drive = 0; drive < swd->floppy_count; drive++) {
921 del_gendisk(swd->unit[drive].disk);
922 blk_cleanup_queue(swd->unit[drive].disk->queue);
923 blk_mq_free_tag_set(&swd->unit[drive].tag_set);
924 put_disk(swd->unit[drive].disk);
927 unregister_blkdev(FLOPPY_MAJOR, "fd");
929 /* eject floppies */
931 for (drive = 0; drive < swd->floppy_count; drive++)
932 floppy_eject(&swd->unit[drive]);
934 res = platform_get_resource(dev, IORESOURCE_MEM, 0);
935 if (res)
936 release_mem_region(res->start, resource_size(res));
938 kfree(swd);
940 return 0;
943 static struct platform_driver swim_driver = {
944 .probe = swim_probe,
945 .remove = swim_remove,
946 .driver = {
947 .name = CARDNAME,
951 static int __init swim_init(void)
953 printk(KERN_INFO "SWIM floppy driver %s\n", DRIVER_VERSION);
955 return platform_driver_register(&swim_driver);
957 module_init(swim_init);
959 static void __exit swim_exit(void)
961 platform_driver_unregister(&swim_driver);
963 module_exit(swim_exit);
965 MODULE_DESCRIPTION("Driver for SWIM floppy controller");
966 MODULE_LICENSE("GPL");
967 MODULE_AUTHOR("Laurent Vivier <laurent@lvivier.info>");
968 MODULE_ALIAS_BLOCKDEV_MAJOR(FLOPPY_MAJOR);