diff options
author | Borislav Petkov <bbpetkov@yahoo.de> | 2008-02-01 17:09:33 -0500 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com> | 2008-02-01 17:09:33 -0500 |
commit | d3f208488fcd9351e01f4e0ca088873192194094 (patch) | |
tree | 5c2e8d6eace5b5d94d726b8156b41e97fea9e77f /drivers/ide | |
parent | 59bca8cc995428c34d8cdfadfa87c8e3f01c4340 (diff) |
ide-floppy: cleanup header
Move ide-floppy historical changelog to
Documentation/ide/ChangeLog.ide-floppy.1996-2002
Signed-off-by: Borislav Petkov <bbpetkov@yahoo.de>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Diffstat (limited to 'drivers/ide')
-rw-r--r-- | drivers/ide/ide-floppy.c | 67 |
1 files changed, 4 insertions, 63 deletions
diff --git a/drivers/ide/ide-floppy.c b/drivers/ide/ide-floppy.c index c63dc4039ab9..3512637ae8d4 100644 --- a/drivers/ide/ide-floppy.c +++ b/drivers/ide/ide-floppy.c | |||
@@ -1,12 +1,12 @@ | |||
1 | /* | 1 | /* |
2 | * IDE ATAPI floppy driver. | ||
3 | * | ||
2 | * Copyright (C) 1996-1999 Gadi Oxman <gadio@netvision.net.il> | 4 | * Copyright (C) 1996-1999 Gadi Oxman <gadio@netvision.net.il> |
3 | * Copyright (C) 2000-2002 Paul Bristow <paul@paulbristow.net> | 5 | * Copyright (C) 2000-2002 Paul Bristow <paul@paulbristow.net> |
4 | * Copyright (C) 2005 Bartlomiej Zolnierkiewicz | 6 | * Copyright (C) 2005 Bartlomiej Zolnierkiewicz |
5 | */ | 7 | */ |
6 | 8 | ||
7 | /* | 9 | /* |
8 | * IDE ATAPI floppy driver. | ||
9 | * | ||
10 | * The driver currently doesn't have any fancy features, just the bare | 10 | * The driver currently doesn't have any fancy features, just the bare |
11 | * minimum read/write support. | 11 | * minimum read/write support. |
12 | * | 12 | * |
@@ -16,67 +16,8 @@ | |||
16 | * Iomega Zip 100/250 | 16 | * Iomega Zip 100/250 |
17 | * Iomega PC Card Clik!/PocketZip | 17 | * Iomega PC Card Clik!/PocketZip |
18 | * | 18 | * |
19 | * Many thanks to Lode Leroy <Lode.Leroy@www.ibase.be>, who tested so many | 19 | * For a historical changelog see |
20 | * ALPHA patches to this driver on an EASYSTOR LS-120 ATAPI floppy drive. | 20 | * Documentation/ide/ChangeLog.ide-floppy.1996-2002 |
21 | * | ||
22 | * Ver 0.1 Oct 17 96 Initial test version, mostly based on ide-tape.c. | ||
23 | * Ver 0.2 Oct 31 96 Minor changes. | ||
24 | * Ver 0.3 Dec 2 96 Fixed error recovery bug. | ||
25 | * Ver 0.4 Jan 26 97 Add support for the HDIO_GETGEO ioctl. | ||
26 | * Ver 0.5 Feb 21 97 Add partitions support. | ||
27 | * Use the minimum of the LBA and CHS capacities. | ||
28 | * Avoid hwgroup->rq == NULL on the last irq. | ||
29 | * Fix potential null dereferencing with DEBUG_LOG. | ||
30 | * Ver 0.8 Dec 7 97 Increase irq timeout from 10 to 50 seconds. | ||
31 | * Add media write-protect detection. | ||
32 | * Issue START command only if TEST UNIT READY fails. | ||
33 | * Add work-around for IOMEGA ZIP revision 21.D. | ||
34 | * Remove idefloppy_get_capabilities(). | ||
35 | * Ver 0.9 Jul 4 99 Fix a bug which might have caused the number of | ||
36 | * bytes requested on each interrupt to be zero. | ||
37 | * Thanks to <shanos@es.co.nz> for pointing this out. | ||
38 | * Ver 0.9.sv Jan 6 01 Sam Varshavchik <mrsam@courier-mta.com> | ||
39 | * Implement low level formatting. Reimplemented | ||
40 | * IDEFLOPPY_CAPABILITIES_PAGE, since we need the srfp | ||
41 | * bit. My LS-120 drive barfs on | ||
42 | * IDEFLOPPY_CAPABILITIES_PAGE, but maybe it's just me. | ||
43 | * Compromise by not reporting a failure to get this | ||
44 | * mode page. Implemented four IOCTLs in order to | ||
45 | * implement formatting. IOCTls begin with 0x4600, | ||
46 | * 0x46 is 'F' as in Format. | ||
47 | * Jan 9 01 Userland option to select format verify. | ||
48 | * Added PC_SUPPRESS_ERROR flag - some idefloppy drives | ||
49 | * do not implement IDEFLOPPY_CAPABILITIES_PAGE, and | ||
50 | * return a sense error. Suppress error reporting in | ||
51 | * this particular case in order to avoid spurious | ||
52 | * errors in syslog. The culprit is | ||
53 | * idefloppy_get_capability_page(), so move it to | ||
54 | * idefloppy_begin_format() so that it's not used | ||
55 | * unless absolutely necessary. | ||
56 | * If drive does not support format progress indication | ||
57 | * monitor the dsc bit in the status register. | ||
58 | * Also, O_NDELAY on open will allow the device to be | ||
59 | * opened without a disk available. This can be used to | ||
60 | * open an unformatted disk, or get the device capacity. | ||
61 | * Ver 0.91 Dec 11 99 Added IOMEGA Clik! drive support by | ||
62 | * <paul@paulbristow.net> | ||
63 | * Ver 0.92 Oct 22 00 Paul Bristow became official maintainer for this | ||
64 | * driver. Included Powerbook internal zip kludge. | ||
65 | * Ver 0.93 Oct 24 00 Fixed bugs for Clik! drive | ||
66 | * no disk on insert and disk change now works | ||
67 | * Ver 0.94 Oct 27 00 Tidied up to remove strstr(Clik) everywhere | ||
68 | * Ver 0.95 Nov 7 00 Brought across to kernel 2.4 | ||
69 | * Ver 0.96 Jan 7 01 Actually in line with release version of 2.4.0 | ||
70 | * including set_bit patch from Rusty Russell | ||
71 | * Ver 0.97 Jul 22 01 Merge 0.91-0.96 onto 0.9.sv for ac series | ||
72 | * Ver 0.97.sv Aug 3 01 Backported from 2.4.7-ac3 | ||
73 | * Ver 0.98 Oct 26 01 Split idefloppy_transfer_pc into two pieces to | ||
74 | * fix a lost interrupt problem. It appears the busy | ||
75 | * bit was being deasserted by my IOMEGA ATAPI ZIP 100 | ||
76 | * drive before the drive was actually ready. | ||
77 | * Ver 0.98a Oct 29 01 Expose delay value so we can play. | ||
78 | * Ver 0.99 Feb 24 02 Remove duplicate code, modify clik! detection code | ||
79 | * to support new PocketZip drives | ||
80 | */ | 21 | */ |
81 | 22 | ||
82 | #define IDEFLOPPY_VERSION "0.99.newide" | 23 | #define IDEFLOPPY_VERSION "0.99.newide" |