]> CyberLeo.Net >> Repos - FreeBSD/releng/8.0.git/blob - sys/dev/ata/atapi-fd.c
Adjust to reflect 8.0-RELEASE.
[FreeBSD/releng/8.0.git] / sys / dev / ata / atapi-fd.c
1 /*-
2  * Copyright (c) 1998 - 2008 Søren Schmidt <sos@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer,
10  *    without modification, immediately at the beginning of the file.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/ata.h>
33 #include <sys/kernel.h>
34 #include <sys/module.h>
35 #include <sys/malloc.h>
36 #include <sys/bio.h>
37 #include <sys/bus.h>
38 #include <sys/conf.h>
39 #include <sys/endian.h>
40 #include <sys/cdio.h>
41 #include <sys/sema.h>
42 #include <sys/taskqueue.h>
43 #include <vm/uma.h>
44 #include <machine/bus.h>
45 #include <geom/geom_disk.h>
46 #include <dev/ata/ata-all.h>
47 #include <dev/ata/atapi-fd.h>
48 #include <ata_if.h>
49
50
51 /* prototypes */
52 static disk_open_t afd_open;
53 static disk_close_t afd_close;
54 static disk_strategy_t afd_strategy;
55 static disk_ioctl_t afd_ioctl;
56 static int afd_sense(device_t);
57 static void afd_describe(device_t);
58 static void afd_done(struct ata_request *);
59 static int afd_prevent_allow(device_t, int);
60 static int afd_test_ready(device_t);
61
62 /* internal vars */
63 static MALLOC_DEFINE(M_AFD, "afd_driver", "ATAPI floppy driver buffers");
64
65 static int 
66 afd_probe(device_t dev)
67 {
68     struct ata_device *atadev = device_get_softc(dev);
69     if ((atadev->param.config & ATA_PROTO_ATAPI) &&
70         (atadev->param.config & ATA_ATAPI_TYPE_MASK) == ATA_ATAPI_TYPE_DIRECT)
71         return 0;  
72     else
73         return ENXIO;
74 }
75
76 static int 
77 afd_attach(device_t dev)
78 {
79     struct ata_channel *ch = device_get_softc(device_get_parent(dev));
80     struct ata_device *atadev = device_get_softc(dev);
81     struct afd_softc *fdp;
82
83     if (!(fdp = malloc(sizeof(struct afd_softc), M_AFD, M_NOWAIT | M_ZERO))) {
84         device_printf(dev, "out of memory\n");
85         return ENOMEM;
86     }
87     device_set_ivars(dev, fdp);
88     ATA_SETMODE(device_get_parent(dev), dev);
89
90     if (afd_sense(dev)) {
91         device_set_ivars(dev, NULL);
92         free(fdp, M_AFD);
93         return ENXIO;
94     }
95     atadev->flags |= ATA_D_MEDIA_CHANGED;
96
97     /* announce we are here */
98     afd_describe(dev);
99
100     /* create the disk device */
101     fdp->disk = disk_alloc();
102     fdp->disk->d_open = afd_open;
103     fdp->disk->d_close = afd_close;
104     fdp->disk->d_strategy = afd_strategy;
105     fdp->disk->d_ioctl = afd_ioctl;
106     fdp->disk->d_name = "afd";
107     fdp->disk->d_drv1 = dev;
108     fdp->disk->d_maxsize = ch->dma.max_iosize ? ch->dma.max_iosize : DFLTPHYS;
109     fdp->disk->d_unit = device_get_unit(dev);
110     disk_create(fdp->disk, DISK_VERSION);
111     return 0;
112 }
113
114 static int
115 afd_detach(device_t dev)
116 {   
117     struct afd_softc *fdp = device_get_ivars(dev);
118
119     /* check that we have a valid device to detach */
120     if (!device_get_ivars(dev))
121         return ENXIO;
122     
123     /* detroy disk from the system so we dont get any further requests */
124     disk_destroy(fdp->disk);
125
126     /* fail requests on the queue and any thats "in flight" for this device */
127     ata_fail_requests(dev);
128
129     /* dont leave anything behind */
130     device_set_ivars(dev, NULL);
131     free(fdp, M_AFD);
132     return 0;
133 }
134
135 static int
136 afd_shutdown(device_t dev)
137 {
138     struct ata_device *atadev = device_get_softc(dev);
139
140     if (atadev->param.support.command2 & ATA_SUPPORT_FLUSHCACHE)
141         ata_controlcmd(dev, ATA_FLUSHCACHE, 0, 0, 0);
142     return 0;
143 }
144
145 static int
146 afd_reinit(device_t dev)
147 {
148     struct ata_channel *ch = device_get_softc(device_get_parent(dev));
149     struct ata_device *atadev = device_get_softc(dev);
150
151     /* if detach pending, return error */
152     if (!(ch->devices & (ATA_ATAPI_MASTER << atadev->unit)))
153         return 1;
154
155     ATA_SETMODE(device_get_parent(dev), dev);
156     return 0;
157 }
158
159 static int
160 afd_open(struct disk *dp)
161 {
162     device_t dev = dp->d_drv1;
163     struct ata_device *atadev = device_get_softc(dev);
164     struct afd_softc *fdp = device_get_ivars(dev);
165
166     if (!fdp) 
167         return ENXIO;
168     if (!device_is_attached(dev))
169         return EBUSY;
170
171     afd_test_ready(dev);
172     afd_prevent_allow(dev, 1);
173
174     if (afd_sense(dev))
175         device_printf(dev, "sense media type failed\n");
176     atadev->flags &= ~ATA_D_MEDIA_CHANGED;
177
178     if (!fdp->mediasize)
179         return ENXIO;
180
181     fdp->disk->d_sectorsize = fdp->sectorsize;
182     fdp->disk->d_mediasize = fdp->mediasize;
183     fdp->disk->d_fwsectors = fdp->sectors;
184     fdp->disk->d_fwheads = fdp->heads;
185     return 0;
186 }
187
188 static int 
189 afd_close(struct disk *dp)
190 {
191     device_t dev = dp->d_drv1;
192
193     afd_prevent_allow(dev, 0); 
194     return 0;
195 }
196
197 static void 
198 afd_strategy(struct bio *bp)
199 {
200     device_t dev = bp->bio_disk->d_drv1;
201     struct ata_device *atadev = device_get_softc(dev);
202     struct afd_softc *fdp = device_get_ivars(dev);
203     struct ata_request *request;
204     u_int16_t count;
205     int8_t ccb[16];
206
207     /* if it's a null transfer, return immediatly. */
208     if (bp->bio_bcount == 0) {
209         bp->bio_resid = 0;
210         biodone(bp);
211         return;
212     }
213
214     /* should reject all queued entries if media have changed. */
215     if (atadev->flags & ATA_D_MEDIA_CHANGED) {
216         biofinish(bp, NULL, EIO);
217         return;
218     }
219
220     count = bp->bio_bcount / fdp->sectorsize;
221     bp->bio_resid = bp->bio_bcount; 
222
223     bzero(ccb, sizeof(ccb));
224
225     if (bp->bio_cmd == BIO_READ)
226         ccb[0] = ATAPI_READ_BIG;
227     else
228         ccb[0] = ATAPI_WRITE_BIG;
229
230     ccb[2] = bp->bio_pblkno >> 24;
231     ccb[3] = bp->bio_pblkno >> 16;
232     ccb[4] = bp->bio_pblkno >> 8;
233     ccb[5] = bp->bio_pblkno;
234     ccb[7] = count>>8;
235     ccb[8] = count;
236
237     if (!(request = ata_alloc_request())) {
238         biofinish(bp, NULL, ENOMEM);
239         return;
240     }
241     request->dev = dev;
242     request->bio = bp;
243     bcopy(ccb, request->u.atapi.ccb,
244           (atadev->param.config & ATA_PROTO_MASK) == 
245           ATA_PROTO_ATAPI_12 ? 16 : 12);
246     request->data = bp->bio_data;
247     request->bytecount = count * fdp->sectorsize;
248     request->transfersize = min(request->bytecount, 65534);
249     request->timeout = (ccb[0] == ATAPI_WRITE_BIG) ? 60 : 30;
250     request->retries = 2;
251     request->callback = afd_done;
252     switch (bp->bio_cmd) {
253     case BIO_READ:
254         request->flags = (ATA_R_ATAPI | ATA_R_READ);
255         break;
256     case BIO_WRITE:
257         request->flags = (ATA_R_ATAPI | ATA_R_WRITE);
258         break;
259     default:
260         device_printf(dev, "unknown BIO operation\n");
261         ata_free_request(request);
262         biofinish(bp, NULL, EIO);
263         return;
264     }
265     if (atadev->mode >= ATA_DMA)
266         request->flags |= ATA_R_DMA;
267     request->flags |= ATA_R_ORDERED;
268     ata_queue_request(request);
269 }
270
271 static void 
272 afd_done(struct ata_request *request)
273 {
274     struct bio *bp = request->bio;
275
276     /* finish up transfer */
277     if ((bp->bio_error = request->result))
278         bp->bio_flags |= BIO_ERROR;
279     bp->bio_resid = bp->bio_bcount - request->donecount;
280     biodone(bp);
281     ata_free_request(request);
282 }
283
284 static int
285 afd_ioctl(struct disk *disk, u_long cmd, void *data, int flag,struct thread *td)
286 {
287     return ata_device_ioctl(disk->d_drv1, cmd, data);
288 }
289
290 static int 
291 afd_sense(device_t dev)
292 {
293     struct ata_device *atadev = device_get_softc(dev);
294     struct afd_softc *fdp = device_get_ivars(dev);
295     struct afd_capacity capacity;
296     struct afd_capacity_big capacity_big;
297     struct afd_capabilities capabilities;
298     int8_t ccb1[16] = { ATAPI_READ_CAPACITY, 0, 0, 0, 0, 0, 0, 0,
299                         0, 0, 0, 0, 0, 0, 0, 0 };
300     int8_t ccb2[16] = { ATAPI_SERVICE_ACTION_IN, 0x10, 0, 0, 0, 0, 0, 0, 0, 0,
301                         0, 0, 0, sizeof(struct afd_capacity_big) & 0xff, 0, 0 };
302     int8_t ccb3[16] = { ATAPI_MODE_SENSE_BIG, 0, ATAPI_REWRITEABLE_CAP_PAGE,
303                         0, 0, 0, 0, sizeof(struct afd_capabilities) >> 8,
304                         sizeof(struct afd_capabilities) & 0xff,
305                         0, 0, 0, 0, 0, 0, 0 };
306     int timeout = 20;
307     int error, count;
308
309     fdp->mediasize = 0;
310
311     /* wait for device to get ready */
312     while ((error = afd_test_ready(dev)) && timeout--) {
313         DELAY(100000);
314     }
315     if (error == EBUSY)
316         return 1;
317
318     /* The IOMEGA Clik! doesn't support reading the cap page, fake it */
319     if (!strncmp(atadev->param.model, "IOMEGA Clik!", 12)) {
320         fdp->heads = 1;
321         fdp->sectors = 2;
322         fdp->mediasize = 39441 * 1024;
323         fdp->sectorsize = 512;
324         afd_test_ready(dev);
325         return 0;
326     }
327
328     /* get drive capacity */
329     if (!ata_atapicmd(dev, ccb1, (caddr_t)&capacity,
330                       sizeof(struct afd_capacity), ATA_R_READ, 30)) {
331         fdp->heads = 16;
332         fdp->sectors = 63;
333         fdp->sectorsize = be32toh(capacity.blocksize);
334         fdp->mediasize = (u_int64_t)be32toh(capacity.capacity)*fdp->sectorsize; 
335         afd_test_ready(dev);
336         return 0;
337     }
338
339     /* get drive capacity big */
340     if (!ata_atapicmd(dev, ccb2, (caddr_t)&capacity_big,
341                       sizeof(struct afd_capacity_big),
342                       ATA_R_READ | ATA_R_QUIET, 30)) {
343         fdp->heads = 16;
344         fdp->sectors = 63;
345         fdp->sectorsize = be32toh(capacity_big.blocksize);
346         fdp->mediasize = be64toh(capacity_big.capacity)*fdp->sectorsize;
347         afd_test_ready(dev);
348         return 0;
349     }
350
351     /* get drive capabilities, some bugridden drives needs this repeated */
352     for (count = 0 ; count < 5 ; count++) {
353         if (!ata_atapicmd(dev, ccb3, (caddr_t)&capabilities,
354                           sizeof(struct afd_capabilities), ATA_R_READ, 30) &&
355             capabilities.page_code == ATAPI_REWRITEABLE_CAP_PAGE) {
356             fdp->heads = capabilities.heads;
357             fdp->sectors = capabilities.sectors;
358             fdp->sectorsize = be16toh(capabilities.sector_size);
359             fdp->mediasize = be16toh(capabilities.cylinders) *
360                              fdp->heads * fdp->sectors * fdp->sectorsize;
361             if (!capabilities.medium_type)
362                 fdp->mediasize = 0;
363             return 0;
364         }
365     }
366     return 1;
367 }
368
369 static int
370 afd_prevent_allow(device_t dev, int lock)
371 {
372     struct ata_device *atadev = device_get_softc(dev);
373     int8_t ccb[16] = { ATAPI_PREVENT_ALLOW, 0, 0, 0, lock,
374                        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
375     
376     if (!strncmp(atadev->param.model, "IOMEGA Clik!", 12))
377         return 0;
378     return ata_atapicmd(dev, ccb, NULL, 0, 0, 30);
379 }
380
381 static int
382 afd_test_ready(device_t dev)
383 {
384     int8_t ccb[16] = { ATAPI_TEST_UNIT_READY, 0, 0, 0, 0,
385                        0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
386
387     return ata_atapicmd(dev, ccb, NULL, 0, 0, 30);
388 }
389
390 static void 
391 afd_describe(device_t dev)
392 {
393     struct ata_channel *ch = device_get_softc(device_get_parent(dev));
394     struct ata_device *atadev = device_get_softc(dev);
395     struct afd_softc *fdp = device_get_ivars(dev);
396     char sizestring[16];
397
398     if (fdp->mediasize > 1048576 * 5)
399         sprintf(sizestring, "%juMB", fdp->mediasize / 1048576);
400     else if (fdp->mediasize)
401         sprintf(sizestring, "%juKB", fdp->mediasize / 1024);
402     else
403         strcpy(sizestring, "(no media)");
404  
405     device_printf(dev, "%s <%.40s %.8s> at ata%d-%s %s\n",
406                   sizestring, atadev->param.model, atadev->param.revision,
407                   device_get_unit(ch->dev), ata_unit2str(atadev),
408                   ata_mode2str(atadev->mode));
409     if (bootverbose) {
410         device_printf(dev, "%ju sectors [%juC/%dH/%dS]\n",
411                       fdp->mediasize / fdp->sectorsize,
412                       fdp->mediasize /(fdp->sectorsize*fdp->sectors*fdp->heads),
413                       fdp->heads, fdp->sectors);
414     }
415 }
416
417 static device_method_t afd_methods[] = {
418     /* device interface */
419     DEVMETHOD(device_probe,     afd_probe),
420     DEVMETHOD(device_attach,    afd_attach),
421     DEVMETHOD(device_detach,    afd_detach),
422     DEVMETHOD(device_shutdown,  afd_shutdown),
423     
424     /* ATA methods */
425     DEVMETHOD(ata_reinit,       afd_reinit),
426     
427     { 0, 0 }
428 };
429     
430 static driver_t afd_driver = {
431     "afd",
432     afd_methods,
433     0,
434 };
435
436 static devclass_t afd_devclass;
437
438 DRIVER_MODULE(afd, ata, afd_driver, afd_devclass, NULL, NULL);
439 MODULE_VERSION(afd, 1);
440 MODULE_DEPEND(afd, ata, 1, 1, 1);
441