xref: /freebsd/sys/dev/ata/ata-all.c (revision d37ea99837e6ad50837fd9fe1771ddf1c3ba6002)
1 /*-
2  * Copyright (c) 1998 - 2004 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  * 3. The name of the author may not be used to endorse or promote products
15  *    derived from this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #include <sys/cdefs.h>
30 __FBSDID("$FreeBSD$");
31 
32 #include "opt_ata.h"
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/ata.h>
36 #include <sys/kernel.h>
37 #include <sys/endian.h>
38 #include <sys/ctype.h>
39 #include <sys/conf.h>
40 #include <sys/bus.h>
41 #include <sys/bio.h>
42 #include <sys/malloc.h>
43 #include <sys/sysctl.h>
44 #include <sys/sema.h>
45 #include <sys/taskqueue.h>
46 #include <vm/uma.h>
47 #include <machine/stdarg.h>
48 #include <machine/resource.h>
49 #include <machine/bus.h>
50 #include <sys/rman.h>
51 #ifdef __alpha__
52 #include <machine/md_var.h>
53 #endif
54 #include <geom/geom_disk.h>
55 #include <dev/ata/ata-all.h>
56 #include <dev/ata/ata-disk.h>
57 #include <dev/ata/ata-raid.h>
58 
59 /* device structures */
60 static	d_ioctl_t	ata_ioctl;
61 static struct cdevsw ata_cdevsw = {
62 	.d_version =	D_VERSION,
63 	.d_flags =	D_NEEDGIANT,
64 	.d_ioctl =	ata_ioctl,
65 	.d_name =	"ata",
66 };
67 
68 /* prototypes */
69 static void ata_shutdown(void *, int);
70 static int ata_getparam(struct ata_device *, u_int8_t);
71 static void ata_identify_devices(struct ata_channel *);
72 static void ata_boot_attach(void);
73 static void bswap(int8_t *, int);
74 static void btrim(int8_t *, int);
75 static void bpack(int8_t *, int8_t *, int);
76 static void ata_init(void);
77 
78 /* global vars */
79 MALLOC_DEFINE(M_ATA, "ATA generic", "ATA driver generic layer");
80 struct intr_config_hook *ata_delayed_attach = NULL;
81 devclass_t ata_devclass;
82 uma_zone_t ata_zone;
83 int ata_wc = 1;
84 
85 /* local vars */
86 static int ata_dma = 1;
87 static int atapi_dma = 0;
88 
89 /* sysctl vars */
90 SYSCTL_NODE(_hw, OID_AUTO, ata, CTLFLAG_RD, 0, "ATA driver parameters");
91 TUNABLE_INT("hw.ata.ata_dma", &ata_dma);
92 SYSCTL_INT(_hw_ata, OID_AUTO, ata_dma, CTLFLAG_RDTUN, &ata_dma, 0,
93 	   "ATA disk DMA mode control");
94 TUNABLE_INT("hw.ata.wc", &ata_wc);
95 SYSCTL_INT(_hw_ata, OID_AUTO, wc, CTLFLAG_RDTUN, &ata_wc, 0,
96 	   "ATA disk write caching");
97 TUNABLE_INT("hw.ata.atapi_dma", &atapi_dma);
98 SYSCTL_INT(_hw_ata, OID_AUTO, atapi_dma, CTLFLAG_RDTUN, &atapi_dma, 0,
99 	   "ATAPI device DMA mode control");
100 
101 /*
102  * newbus device interface related functions
103  */
104 int
105 ata_probe(device_t dev)
106 {
107     struct ata_channel *ch;
108 
109     if (!dev || !(ch = device_get_softc(dev)))
110 	return ENXIO;
111 
112     if (ch->r_irq)
113 	return EEXIST;
114 
115     /* initialize the softc basics */
116     ch->device[MASTER].channel = ch;
117     ch->device[MASTER].unit = ATA_MASTER;
118     ch->device[MASTER].mode = ATA_PIO;
119     ch->device[SLAVE].channel = ch;
120     ch->device[SLAVE].unit = ATA_SLAVE;
121     ch->device[SLAVE].mode = ATA_PIO;
122     ch->dev = dev;
123     ch->lock = ATA_IDLE;
124 
125     /* initialise device(s) on this channel */
126     ch->locking(ch, ATA_LF_LOCK);
127     ch->hw.reset(ch);
128     ch->locking(ch, ATA_LF_UNLOCK);
129     return 0;
130 }
131 
132 int
133 ata_attach(device_t dev)
134 {
135     struct ata_channel *ch;
136     int error, rid;
137 
138     if (!dev || !(ch = device_get_softc(dev)))
139 	return ENXIO;
140 
141     rid = ATA_IRQ_RID;
142     ch->r_irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid,
143 				       RF_SHAREABLE | RF_ACTIVE);
144     if (!ch->r_irq) {
145 	ata_printf(ch, -1, "unable to allocate interrupt\n");
146 	return ENXIO;
147     }
148     if ((error = bus_setup_intr(dev, ch->r_irq, ATA_INTR_FLAGS,
149 				ch->hw.interrupt, ch, &ch->ih))) {
150 	ata_printf(ch, -1, "unable to setup interrupt\n");
151 	return error;
152     }
153 
154     if (ch->dma)
155 	ch->dma->alloc(ch);
156 
157     /* initialize queue and associated lock */
158     bzero(&ch->queue_mtx, sizeof(struct mtx));
159     mtx_init(&ch->queue_mtx, "ATA queue lock", NULL, MTX_DEF);
160     TAILQ_INIT(&ch->ata_queue);
161 
162     /* do not attach devices if we are in early boot */
163     if (ata_delayed_attach)
164 	return 0;
165 
166     ata_identify_devices(ch);
167 
168     if (ch->device[MASTER].attach)
169 	ch->device[MASTER].attach(&ch->device[MASTER]);
170     if (ch->device[SLAVE].attach)
171 	ch->device[SLAVE].attach(&ch->device[SLAVE]);
172 #ifdef DEV_ATAPICAM
173     atapi_cam_attach_bus(ch);
174 #endif
175     return 0;
176 }
177 
178 int
179 ata_detach(device_t dev)
180 {
181     struct ata_channel *ch;
182 
183     if (!dev || !(ch = device_get_softc(dev)) || !ch->r_irq)
184 	return ENXIO;
185 
186     /* detach devices on this channel */
187     if (ch->device[MASTER].detach)
188 	ch->device[MASTER].detach(&ch->device[MASTER]);
189     if (ch->device[SLAVE].detach)
190 	ch->device[SLAVE].detach(&ch->device[SLAVE]);
191 #ifdef DEV_ATAPICAM
192     atapi_cam_detach_bus(ch);
193 #endif
194 
195     /* fail outstanding requests on this channel */
196     ata_fail_requests(ch, NULL);
197 
198     /* flush cache and powerdown device */
199     if (ch->device[MASTER].param) {
200 	if (ch->device[MASTER].param->support.command2 & ATA_SUPPORT_FLUSHCACHE)
201 	    ata_controlcmd(&ch->device[MASTER], ATA_FLUSHCACHE, 0, 0, 0);
202 	ata_controlcmd(&ch->device[MASTER], ATA_SLEEP, 0, 0, 0);
203 	free(ch->device[MASTER].param, M_ATA);
204 	ch->device[MASTER].param = NULL;
205     }
206     if (ch->device[SLAVE].param) {
207 	if (ch->device[SLAVE].param->support.command2 & ATA_SUPPORT_FLUSHCACHE)
208 	    ata_controlcmd(&ch->device[SLAVE], ATA_FLUSHCACHE, 0, 0, 0);
209 	ata_controlcmd(&ch->device[SLAVE], ATA_SLEEP, 0, 0, 0);
210 	free(ch->device[SLAVE].param, M_ATA);
211 	ch->device[SLAVE].param = NULL;
212     }
213     ch->device[MASTER].mode = ATA_PIO;
214     ch->device[SLAVE].mode = ATA_PIO;
215     ch->devices = 0;
216 
217     if (ch->dma)
218 	ch->dma->free(ch);
219 
220     bus_teardown_intr(dev, ch->r_irq, ch->ih);
221     bus_release_resource(dev, SYS_RES_IRQ, ATA_IRQ_RID, ch->r_irq);
222     ch->r_irq = NULL;
223     mtx_destroy(&ch->queue_mtx);
224     return 0;
225 }
226 
227 int
228 ata_reinit(struct ata_channel *ch)
229 {
230     struct ata_request *request = ch->running;
231     int devices, misdev, newdev;
232 
233     if (!ch->r_irq)
234 	return ENXIO;
235 
236     /* reset the HW */
237     if (bootverbose)
238 	ata_printf(ch, -1, "reiniting channel ..\n");
239     ATA_FORCELOCK_CH(ch);
240     ch->flags |= ATA_IMMEDIATE_MODE;
241     ch->running = NULL;
242     devices = ch->devices;
243     ch->hw.reset(ch);
244     ATA_UNLOCK_CH(ch);
245 
246     if (bootverbose)
247 	ata_printf(ch, -1, "resetting done ..\n");
248 
249     /* detach what left the channel during reset */
250     if ((misdev = devices & ~ch->devices)) {
251 	if ((misdev & (ATA_ATA_MASTER | ATA_ATAPI_MASTER)) &&
252 	    ch->device[MASTER].detach) {
253 	    if (request && (request->device == &ch->device[MASTER])) {
254 		request->result = ENXIO;
255 		request->retries = 0;
256 	    }
257 	    ch->device[MASTER].detach(&ch->device[MASTER]);
258 	    ata_fail_requests(ch, &ch->device[MASTER]);
259 	    free(ch->device[MASTER].param, M_ATA);
260 	    ch->device[MASTER].param = NULL;
261 	}
262 	if ((misdev & (ATA_ATA_SLAVE | ATA_ATAPI_SLAVE)) &&
263 	    ch->device[SLAVE].detach) {
264 	    if (request && (request->device == &ch->device[SLAVE])) {
265 		request->result = ENXIO;
266 		request->retries = 0;
267 	    }
268 	    ch->device[SLAVE].detach(&ch->device[SLAVE]);
269 	    ata_fail_requests(ch, &ch->device[SLAVE]);
270 	    free(ch->device[SLAVE].param, M_ATA);
271 	    ch->device[SLAVE].param = NULL;
272 	}
273     }
274 
275     /* identify what is present on the channel now */
276     ata_identify_devices(ch);
277 
278     /* attach new devices that appeared during reset */
279     if ((newdev = ~devices & ch->devices)) {
280 	if ((newdev & (ATA_ATA_MASTER | ATA_ATAPI_MASTER)) &&
281 	    ch->device[MASTER].attach)
282 	    ch->device[MASTER].attach(&ch->device[MASTER]);
283 	if ((newdev & (ATA_ATA_SLAVE | ATA_ATAPI_SLAVE)) &&
284 	    ch->device[SLAVE].attach)
285 	    ch->device[SLAVE].attach(&ch->device[SLAVE]);
286     }
287 
288     /* restore device config and transfermode on devices */
289     if (ch->devices & (ATA_ATA_MASTER | ATA_ATAPI_MASTER)) {
290 	if (ch->device[MASTER].config)
291 	    ch->device[MASTER].config(&ch->device[MASTER]);
292 	ch->device[MASTER].setmode(&ch->device[MASTER],ch->device[MASTER].mode);
293     }
294     if (ch->devices & (ATA_ATA_SLAVE | ATA_ATAPI_SLAVE)) {
295 	if (ch->device[SLAVE].config)
296 	    ch->device[SLAVE].config(&ch->device[SLAVE]);
297 	ch->device[SLAVE].setmode(&ch->device[SLAVE], ch->device[SLAVE].mode);
298     }
299 
300 #ifdef DEV_ATAPICAM
301     atapi_cam_reinit_bus(ch);
302 #endif
303 
304     if (bootverbose)
305 	ata_printf(ch, -1, "device config done ..\n");
306     ch->flags &= ~ATA_IMMEDIATE_MODE;
307     ata_start(ch);
308     return 0;
309 }
310 
311 int
312 ata_suspend(device_t dev)
313 {
314     struct ata_channel *ch;
315 
316     if (!dev || !(ch = device_get_softc(dev)))
317 	return ENXIO;
318     ch->locking(ch, ATA_LF_LOCK);
319     ATA_SLEEPLOCK_CH(ch);
320     return 0;
321 }
322 
323 int
324 ata_resume(device_t dev)
325 {
326     struct ata_channel *ch;
327     int error;
328 
329     if (!dev || !(ch = device_get_softc(dev)))
330 	return ENXIO;
331 
332     ch->locking(ch, ATA_LF_LOCK);
333     error = ata_reinit(ch);
334     ch->locking(ch, ATA_LF_UNLOCK);
335     ata_start(ch);
336     return error;
337 }
338 
339 static void
340 ata_shutdown(void *arg, int howto)
341 {
342     struct ata_channel *ch;
343     int ctlr;
344 
345     /* flush cache on all devices */
346     for (ctlr = 0; ctlr < devclass_get_maxunit(ata_devclass); ctlr++) {
347 	if (!(ch = devclass_get_softc(ata_devclass, ctlr)))
348 	    continue;
349 	if (ch->device[MASTER].param &&
350 	    ch->device[MASTER].param->support.command2 & ATA_SUPPORT_FLUSHCACHE)
351 	    ata_controlcmd(&ch->device[MASTER], ATA_FLUSHCACHE, 0, 0, 0);
352 	if (ch->device[SLAVE].param &&
353 	    ch->device[SLAVE].param->support.command2 & ATA_SUPPORT_FLUSHCACHE)
354 	    ata_controlcmd(&ch->device[SLAVE], ATA_FLUSHCACHE, 0, 0, 0);
355     }
356 }
357 
358 /*
359  * device related interfaces
360  */
361 static int
362 ata_ioctl(struct cdev *dev, u_long cmd, caddr_t addr, int32_t flag, struct thread *td)
363 {
364     struct ata_cmd *iocmd = (struct ata_cmd *)addr;
365     device_t device = devclass_get_device(ata_devclass, iocmd->channel);
366     struct ata_channel *ch;
367     struct ata_device *atadev;
368     struct ata_request *request;
369     caddr_t buf;
370     int error = ENOTTY;
371 
372     DROP_GIANT();
373     switch (iocmd->cmd) {
374     case ATAGMAXCHANNEL:
375 	iocmd->u.maxchan = devclass_get_maxunit(ata_devclass);
376 	error = 0;
377 	break;
378 
379     case ATAGPARM:
380 	if (!device || !(ch = device_get_softc(device))) {
381 	    error = ENXIO;
382 	    break;
383 	}
384 	iocmd->u.param.type[MASTER] =
385 	    ch->devices & (ATA_ATA_MASTER | ATA_ATAPI_MASTER);
386 	iocmd->u.param.type[SLAVE] =
387 	    ch->devices & (ATA_ATA_SLAVE | ATA_ATAPI_SLAVE);
388 	if (ch->device[MASTER].name)
389 	    strcpy(iocmd->u.param.name[MASTER], ch->device[MASTER].name);
390 	if (ch->device[SLAVE].name)
391 	    strcpy(iocmd->u.param.name[SLAVE], ch->device[SLAVE].name);
392 	if (ch->device[MASTER].param)
393 	    bcopy(ch->device[MASTER].param, &iocmd->u.param.params[MASTER],
394 		  sizeof(struct ata_params));
395 	if (ch->device[SLAVE].param)
396 	    bcopy(ch->device[SLAVE].param, &iocmd->u.param.params[SLAVE],
397 		  sizeof(struct ata_params));
398 	error = 0;
399 	break;
400 
401     case ATAGMODE:
402 	if (!device || !(ch = device_get_softc(device))) {
403 	    error = ENXIO;
404 	    break;
405 	}
406 	iocmd->u.mode.mode[MASTER] = ch->device[MASTER].mode;
407 	iocmd->u.mode.mode[SLAVE] = ch->device[SLAVE].mode;
408 	error = 0;
409 	break;
410 
411     case ATASMODE:
412 	if (!device || !(ch = device_get_softc(device))) {
413 	    error = ENXIO;
414 	    break;
415 	}
416 	if (iocmd->u.mode.mode[MASTER] >= 0 && ch->device[MASTER].param)
417 	    ch->device[MASTER].setmode(&ch->device[MASTER],
418 				       iocmd->u.mode.mode[MASTER]);
419 	iocmd->u.mode.mode[MASTER] = ch->device[MASTER].mode;
420 	if (iocmd->u.mode.mode[SLAVE] >= 0 && ch->device[SLAVE].param)
421 	    ch->device[SLAVE].setmode(&ch->device[SLAVE],
422 				      iocmd->u.mode.mode[SLAVE]);
423 	iocmd->u.mode.mode[SLAVE] = ch->device[SLAVE].mode;
424 	error = 0;
425 	break;
426 
427    case ATAREQUEST:
428 	if (!device || !(ch = device_get_softc(device))) {
429 	    error = ENXIO;
430 	    break;
431 	}
432 	if (!(atadev = &ch->device[iocmd->device])) {
433 	    error = ENODEV;
434 	    break;
435 	}
436 	if (!(buf = malloc(iocmd->u.request.count, M_ATA, M_NOWAIT))) {
437 	    error = ENOMEM;
438 	    break;
439 	}
440 	if (!(request = ata_alloc_request())) {
441 	    error = ENOMEM;
442 	    free(buf, M_ATA);
443 	    break;
444 	}
445 	if (iocmd->u.request.flags & ATA_CMD_WRITE) {
446 	    error = copyin(iocmd->u.request.data, buf, iocmd->u.request.count);
447 	    if (error) {
448 		free(buf, M_ATA);
449 		ata_free_request(request);
450 		break;
451 	    }
452 	}
453 
454 	request->device = atadev;
455 
456 	if (iocmd->u.request.flags & ATA_CMD_ATAPI) {
457 	    request->flags = ATA_R_ATAPI;
458 	    bcopy(iocmd->u.request.u.atapi.ccb, request->u.atapi.ccb, 16);
459 	}
460 	else {
461 	     request->u.ata.command = iocmd->u.request.u.ata.command;
462 	     request->u.ata.feature = iocmd->u.request.u.ata.feature;
463 	     request->u.ata.lba = iocmd->u.request.u.ata.lba;
464 	     request->u.ata.count = iocmd->u.request.u.ata.count;
465 	}
466 
467 	request->timeout = iocmd->u.request.timeout;
468 	request->data = buf;
469 	request->bytecount = iocmd->u.request.count;
470 	request->transfersize = request->bytecount;
471 
472 	if (iocmd->u.request.flags & ATA_CMD_CONTROL)
473 	    request->flags |= ATA_R_CONTROL;
474 	if (iocmd->u.request.flags & ATA_CMD_READ)
475 	    request->flags |= ATA_R_READ;
476 	if (iocmd->u.request.flags & ATA_CMD_WRITE)
477 	    request->flags |= ATA_R_WRITE;
478 
479 	ata_queue_request(request);
480 
481 	if (request->result)
482 	    iocmd->u.request.error = request->result;
483 	else {
484 	    if (iocmd->u.request.flags & ATA_CMD_READ)
485 		error = copyout(buf,
486 				iocmd->u.request.data, iocmd->u.request.count);
487 	    else
488 		error = 0;
489 	}
490 	free(buf, M_ATA);
491 	ata_free_request(request);
492 	break;
493 
494     case ATAREINIT:
495 	if (!device || !(ch = device_get_softc(device)))
496 	    return ENXIO;
497 	error = ata_reinit(ch);
498 	ata_start(ch);
499 	break;
500 
501     case ATAATTACH:
502 	if (!device) {
503 	    error =  ENXIO;
504 	    break;
505 	}
506 	/* SOS should enable channel HW on controller XXX */
507 	error = ata_probe(device);
508 	if (!error)
509 	    error = ata_attach(device);
510 	break;
511 
512     case ATADETACH:
513 	if (!device) {
514 	    error = ENXIO;
515 	    break;
516 	}
517 	error = ata_detach(device);
518 	/* SOS should disable channel HW on controller XXX */
519 	break;
520 
521 
522 #ifdef DEV_ATARAID
523     case ATARAIDCREATE:
524 	error = ata_raid_create(&iocmd->u.raid_setup);
525 	break;
526 
527     case ATARAIDDELETE:
528 	error = ata_raid_delete(iocmd->channel);
529 	break;
530 
531     case ATARAIDSTATUS:
532 	error = ata_raid_status(iocmd->channel, &iocmd->u.raid_status);
533 	break;
534 
535     case ATARAIDADDSPARE:
536 	error = ata_raid_addspare(iocmd->channel, iocmd->u.raid_spare.disk);
537 	break;
538 
539     case ATARAIDREBUILD:
540 	error = ata_raid_rebuild(iocmd->channel);
541 	break;
542 #endif
543     }
544     PICKUP_GIANT();
545     return error;
546 }
547 
548 /*
549  * device probe functions
550  */
551 static int
552 ata_getparam(struct ata_device *atadev, u_int8_t command)
553 {
554     struct ata_request *request;
555     int error = ENOMEM;
556 
557     if (!atadev->param)
558 	atadev->param = malloc(sizeof(struct ata_params), M_ATA, M_NOWAIT);
559     if (atadev->param) {
560 	request = ata_alloc_request();
561 	if (request) {
562 	    int retries = 2;
563 	    while (retries-- > 0) {
564 		request->device = atadev;
565 		request->timeout = 5;
566 		request->retries = -1;
567 		request->u.ata.command = command;
568 		request->flags = (ATA_R_READ | ATA_R_IMMEDIATE);
569 		request->data = (caddr_t)atadev->param;
570 		request->bytecount = sizeof(struct ata_params);
571 		request->transfersize = DEV_BSIZE;
572 		ata_queue_request(request);
573 		if (!(error = request->result))
574 		    break;
575 	    }
576 	    ata_free_request(request);
577 	}
578 	if (!error && (isprint(atadev->param->model[0]) ||
579 		       isprint(atadev->param->model[1]))) {
580 	    struct ata_params *atacap = atadev->param;
581 #if BYTE_ORDER == BIG_ENDIAN
582 	    int16_t *ptr;
583 
584 	    for (ptr = (int16_t *)atacap;
585 		 ptr < (int16_t *)atacap + sizeof(struct ata_params)/2; ptr++) {
586 		*ptr = bswap16(*ptr);
587 	    }
588 #endif
589 	    if (!((atacap->model[0] == 'N' && atacap->model[1] == 'E') ||
590 		  (atacap->model[0] == 'F' && atacap->model[1] == 'X') ||
591 		  (atacap->model[0] == 'P' && atacap->model[1] == 'i')))
592 		bswap(atacap->model, sizeof(atacap->model));
593 	    btrim(atacap->model, sizeof(atacap->model));
594 	    bpack(atacap->model, atacap->model, sizeof(atacap->model));
595 	    bswap(atacap->revision, sizeof(atacap->revision));
596 	    btrim(atacap->revision, sizeof(atacap->revision));
597 	    bpack(atacap->revision, atacap->revision, sizeof(atacap->revision));
598 	    bswap(atacap->serial, sizeof(atacap->serial));
599 	    btrim(atacap->serial, sizeof(atacap->serial));
600 	    bpack(atacap->serial, atacap->serial, sizeof(atacap->serial));
601 	    if (bootverbose)
602 		ata_prtdev(atadev,
603 			   "pio=0x%02x wdma=0x%02x udma=0x%02x cable=%spin\n",
604 			   ata_pmode(atacap), ata_wmode(atacap),
605 			   ata_umode(atacap),
606 			   (atacap->hwres & ATA_CABLE_ID) ? "80":"40");
607 	}
608 	else {
609 	    if (!error)
610 		error = ENXIO;
611 	    if (atadev->param) {
612 		free(atadev->param, M_ATA);
613 		atadev->param = NULL;
614 	    }
615 	}
616     }
617     return error;
618 }
619 
620 static void
621 ata_identify_devices(struct ata_channel *ch)
622 {
623     if (ch->devices & ATA_ATA_SLAVE) {
624 	if (ata_getparam(&ch->device[SLAVE], ATA_ATA_IDENTIFY))
625 	    ch->devices &= ~ATA_ATA_SLAVE;
626 #ifdef DEV_ATADISK
627 	else
628 	    ch->device[SLAVE].attach = ad_attach;
629 #endif
630     }
631     if (ch->devices & ATA_ATAPI_SLAVE) {
632 	if (ata_getparam(&ch->device[SLAVE], ATA_ATAPI_IDENTIFY))
633 	    ch->devices &= ~ATA_ATAPI_SLAVE;
634 	else {
635 	    switch (ch->device[SLAVE].param->config & ATA_ATAPI_TYPE_MASK) {
636 #ifdef DEV_ATAPICD
637 	    case ATA_ATAPI_TYPE_CDROM:
638 		ch->device[SLAVE].attach = acd_attach;
639 		break;
640 #endif
641 #ifdef DEV_ATAPIFD
642 	    case ATA_ATAPI_TYPE_DIRECT:
643 		ch->device[SLAVE].attach = afd_attach;
644 		break;
645 #endif
646 #ifdef DEV_ATAPIST
647 	    case ATA_ATAPI_TYPE_TAPE:
648 		ch->device[SLAVE].attach = ast_attach;
649 		break;
650 #endif
651 	    }
652 	}
653     }
654     if (ch->devices & ATA_ATA_MASTER) {
655 	if (ata_getparam(&ch->device[MASTER], ATA_ATA_IDENTIFY))
656 	    ch->devices &= ~ATA_ATA_MASTER;
657 #ifdef DEV_ATADISK
658 	else
659 	    ch->device[MASTER].attach = ad_attach;
660 #endif
661     }
662     if (ch->devices & ATA_ATAPI_MASTER) {
663 	if (ata_getparam(&ch->device[MASTER], ATA_ATAPI_IDENTIFY))
664 	    ch->devices &= ~ATA_ATAPI_MASTER;
665 	else {
666 	    switch (ch->device[MASTER].param->config & ATA_ATAPI_TYPE_MASK) {
667 #ifdef DEV_ATAPICD
668 	    case ATA_ATAPI_TYPE_CDROM:
669 		ch->device[MASTER].attach = acd_attach;
670 		break;
671 #endif
672 #ifdef DEV_ATAPIFD
673 	    case ATA_ATAPI_TYPE_DIRECT:
674 		ch->device[MASTER].attach = afd_attach;
675 		break;
676 #endif
677 #ifdef DEV_ATAPIST
678 	    case ATA_ATAPI_TYPE_TAPE:
679 		ch->device[MASTER].attach = ast_attach;
680 		break;
681 #endif
682 	    }
683 	}
684     }
685 
686     /* setup basic transfer mode by setting PIO mode and DMA if supported */
687     if (ch->device[MASTER].param) {
688 	ch->device[MASTER].setmode(&ch->device[MASTER], ATA_PIO_MAX);
689 	if ((((ch->devices & ATA_ATAPI_MASTER) && atapi_dma &&
690 	      (ch->device[MASTER].param->config&ATA_DRQ_MASK) != ATA_DRQ_INTR)||
691 	     ((ch->devices & ATA_ATA_MASTER) && ata_dma)) && ch->dma)
692 	    ch->device[MASTER].setmode(&ch->device[MASTER], ATA_DMA_MAX);
693 
694     }
695     if (ch->device[SLAVE].param) {
696 	ch->device[SLAVE].setmode(&ch->device[SLAVE], ATA_PIO_MAX);
697 	if ((((ch->devices & ATA_ATAPI_SLAVE) && atapi_dma &&
698 	      (ch->device[SLAVE].param->config&ATA_DRQ_MASK) != ATA_DRQ_INTR) ||
699 	     ((ch->devices & ATA_ATA_SLAVE) && ata_dma)) && ch->dma)
700 	    ch->device[SLAVE].setmode(&ch->device[SLAVE], ATA_DMA_MAX);
701     }
702 }
703 
704 static void
705 ata_boot_attach(void)
706 {
707     struct ata_channel *ch;
708     int ctlr;
709 
710     /*
711      * run through all ata devices and look for real ATA & ATAPI devices
712      * using the hints we found in the early probe, this avoids some of
713      * the delays probing of non-exsistent devices can cause.
714      */
715     for (ctlr=0; ctlr<devclass_get_maxunit(ata_devclass); ctlr++) {
716 	if (!(ch = devclass_get_softc(ata_devclass, ctlr)))
717 	    continue;
718 	ata_identify_devices(ch);
719 	if (ch->device[MASTER].attach)
720 	    ch->device[MASTER].attach(&ch->device[MASTER]);
721 	if (ch->device[SLAVE].attach)
722 	    ch->device[SLAVE].attach(&ch->device[SLAVE]);
723 #ifdef DEV_ATAPICAM
724 	atapi_cam_attach_bus(ch);
725 #endif
726     }
727 #ifdef DEV_ATARAID
728     ata_raid_attach();
729 #endif
730     if (ata_delayed_attach) {
731 	config_intrhook_disestablish(ata_delayed_attach);
732 	free(ata_delayed_attach, M_TEMP);
733 	ata_delayed_attach = NULL;
734     }
735 }
736 
737 /*
738  * misc support functions
739  */
740 static void
741 bswap(int8_t *buf, int len)
742 {
743     u_int16_t *ptr = (u_int16_t*)(buf + len);
744 
745     while (--ptr >= (u_int16_t*)buf)
746 	*ptr = ntohs(*ptr);
747 }
748 
749 static void
750 btrim(int8_t *buf, int len)
751 {
752     int8_t *ptr;
753 
754     for (ptr = buf; ptr < buf+len; ++ptr)
755 	if (!*ptr)
756 	    *ptr = ' ';
757     for (ptr = buf + len - 1; ptr >= buf && *ptr == ' '; --ptr)
758 	*ptr = 0;
759 }
760 
761 static void
762 bpack(int8_t *src, int8_t *dst, int len)
763 {
764     int i, j, blank;
765 
766     for (i = j = blank = 0 ; i < len; i++) {
767 	if (blank && src[i] == ' ') continue;
768 	if (blank && src[i] != ' ') {
769 	    dst[j++] = src[i];
770 	    blank = 0;
771 	    continue;
772 	}
773 	if (src[i] == ' ') {
774 	    blank = 1;
775 	    if (i == 0)
776 		continue;
777 	}
778 	dst[j++] = src[i];
779     }
780     if (j < len)
781 	dst[j] = 0x00;
782 }
783 
784 int
785 ata_printf(struct ata_channel *ch, int device, const char * fmt, ...)
786 {
787     va_list ap;
788     int ret;
789 
790     if (device == -1)
791 	ret = printf("ata%d: ", device_get_unit(ch->dev));
792     else {
793 	if (ch->device[ATA_DEV(device)].name)
794 	    ret = printf("%s: ", ch->device[ATA_DEV(device)].name);
795 	else
796 	    ret = printf("ata%d-%s: ", device_get_unit(ch->dev),
797 			 (device == ATA_MASTER) ? "master" : "slave");
798     }
799     va_start(ap, fmt);
800     ret += vprintf(fmt, ap);
801     va_end(ap);
802     return ret;
803 }
804 
805 int
806 ata_prtdev(struct ata_device *atadev, const char * fmt, ...)
807 {
808     va_list ap;
809     int ret;
810 
811     if (atadev->name)
812 	ret = printf("%s: ", atadev->name);
813     else
814 	ret = printf("ata%d-%s: ", device_get_unit(atadev->channel->dev),
815 		     (atadev->unit == ATA_MASTER) ? "master" : "slave");
816     va_start(ap, fmt);
817     ret += vprintf(fmt, ap);
818     va_end(ap);
819     return ret;
820 }
821 
822 void
823 ata_set_name(struct ata_device *atadev, char *name, int lun)
824 {
825     atadev->name = malloc(strlen(name) + 4, M_ATA, M_NOWAIT);
826     if (atadev->name)
827 	sprintf(atadev->name, "%s%d", name, lun);
828 }
829 
830 void
831 ata_free_name(struct ata_device *atadev)
832 {
833     if (atadev->name)
834 	free(atadev->name, M_ATA);
835     atadev->name = NULL;
836 }
837 
838 int
839 ata_get_lun(u_int32_t *map)
840 {
841     int lun = ffs(~*map) - 1;
842 
843     *map |= (1 << lun);
844     return lun;
845 }
846 
847 int
848 ata_test_lun(u_int32_t *map, int lun)
849 {
850     return (*map & (1 << lun));
851 }
852 
853 void
854 ata_free_lun(u_int32_t *map, int lun)
855 {
856     *map &= ~(1 << lun);
857 }
858 
859 char *
860 ata_mode2str(int mode)
861 {
862     switch (mode) {
863     case ATA_PIO: return "BIOSPIO";
864     case ATA_PIO0: return "PIO0";
865     case ATA_PIO1: return "PIO1";
866     case ATA_PIO2: return "PIO2";
867     case ATA_PIO3: return "PIO3";
868     case ATA_PIO4: return "PIO4";
869     case ATA_DMA: return "BIOSDMA";
870     case ATA_WDMA0: return "WDMA0";
871     case ATA_WDMA1: return "WDMA1";
872     case ATA_WDMA2: return "WDMA2";
873     case ATA_UDMA0: return "UDMA16";
874     case ATA_UDMA1: return "UDMA25";
875     case ATA_UDMA2: return "UDMA33";
876     case ATA_UDMA3: return "UDMA40";
877     case ATA_UDMA4: return "UDMA66";
878     case ATA_UDMA5: return "UDMA100";
879     case ATA_UDMA6: return "UDMA133";
880     case ATA_SA150: return "SATA150";
881     default: return "???";
882     }
883 }
884 
885 int
886 ata_pmode(struct ata_params *ap)
887 {
888     if (ap->atavalid & ATA_FLAG_64_70) {
889 	if (ap->apiomodes & 0x02)
890 	    return ATA_PIO4;
891 	if (ap->apiomodes & 0x01)
892 	    return ATA_PIO3;
893     }
894     if (ap->mwdmamodes & 0x04)
895 	return ATA_PIO4;
896     if (ap->mwdmamodes & 0x02)
897 	return ATA_PIO3;
898     if (ap->mwdmamodes & 0x01)
899 	return ATA_PIO2;
900     if ((ap->retired_piomode & ATA_RETIRED_PIO_MASK) == 0x200)
901 	return ATA_PIO2;
902     if ((ap->retired_piomode & ATA_RETIRED_PIO_MASK) == 0x100)
903 	return ATA_PIO1;
904     if ((ap->retired_piomode & ATA_RETIRED_PIO_MASK) == 0x000)
905 	return ATA_PIO0;
906     return ATA_PIO0;
907 }
908 
909 int
910 ata_wmode(struct ata_params *ap)
911 {
912     if (ap->mwdmamodes & 0x04)
913 	return ATA_WDMA2;
914     if (ap->mwdmamodes & 0x02)
915 	return ATA_WDMA1;
916     if (ap->mwdmamodes & 0x01)
917 	return ATA_WDMA0;
918     return -1;
919 }
920 
921 int
922 ata_umode(struct ata_params *ap)
923 {
924     if (ap->atavalid & ATA_FLAG_88) {
925 	if (ap->udmamodes & 0x40)
926 	    return ATA_UDMA6;
927 	if (ap->udmamodes & 0x20)
928 	    return ATA_UDMA5;
929 	if (ap->udmamodes & 0x10)
930 	    return ATA_UDMA4;
931 	if (ap->udmamodes & 0x08)
932 	    return ATA_UDMA3;
933 	if (ap->udmamodes & 0x04)
934 	    return ATA_UDMA2;
935 	if (ap->udmamodes & 0x02)
936 	    return ATA_UDMA1;
937 	if (ap->udmamodes & 0x01)
938 	    return ATA_UDMA0;
939     }
940     return -1;
941 }
942 
943 int
944 ata_limit_mode(struct ata_device *atadev, int mode, int maxmode)
945 {
946     if (maxmode && mode > maxmode)
947 	mode = maxmode;
948 
949     if (mode >= ATA_UDMA0 && ata_umode(atadev->param) > 0)
950 	return min(mode, ata_umode(atadev->param));
951 
952     if (mode >= ATA_WDMA0 && ata_wmode(atadev->param) > 0)
953 	return min(mode, ata_wmode(atadev->param));
954 
955     if (mode > ata_pmode(atadev->param))
956 	return min(mode, ata_pmode(atadev->param));
957 
958     return mode;
959 }
960 
961 static void
962 ata_init(void)
963 {
964     /* register controlling device */
965     make_dev(&ata_cdevsw, 0, UID_ROOT, GID_OPERATOR, 0600, "ata");
966 
967     /* register boot attach to be run when interrupts are enabled */
968     if (!(ata_delayed_attach = (struct intr_config_hook *)
969 			       malloc(sizeof(struct intr_config_hook),
970 				      M_TEMP, M_NOWAIT | M_ZERO))) {
971 	printf("ata: malloc of delayed attach hook failed\n");
972 	return;
973     }
974     ata_delayed_attach->ich_func = (void*)ata_boot_attach;
975     if (config_intrhook_establish(ata_delayed_attach) != 0) {
976 	printf("ata: config_intrhook_establish failed\n");
977 	free(ata_delayed_attach, M_TEMP);
978     }
979 
980     /* register handler to flush write caches on shutdown */
981     if ((EVENTHANDLER_REGISTER(shutdown_post_sync, ata_shutdown,
982 			       NULL, SHUTDOWN_PRI_DEFAULT)) == NULL)
983 	printf("ata: shutdown event registration failed!\n");
984 
985     /* init our UMA zone for ATA requests */
986     ata_zone = uma_zcreate("ata_request", sizeof(struct ata_request),
987 			   NULL, NULL, NULL, NULL, 0, 0);
988 }
989 SYSINIT(atadev, SI_SUB_DRIVERS, SI_ORDER_SECOND, ata_init, NULL)
990