atapi_base.c revision 1.2 1 1.2 bouyer /* $NetBSD: atapi_base.c,v 1.2 1997/08/27 11:26:13 bouyer Exp $ */
2 1.2 bouyer
3 1.2 bouyer /*
4 1.2 bouyer * Copyright (c) 1994, 1995, 1997 Charles M. Hannum. All rights reserved.
5 1.2 bouyer *
6 1.2 bouyer * Redistribution and use in source and binary forms, with or without
7 1.2 bouyer * modification, are permitted provided that the following conditions
8 1.2 bouyer * are met:
9 1.2 bouyer * 1. Redistributions of source code must retain the above copyright
10 1.2 bouyer * notice, this list of conditions and the following disclaimer.
11 1.2 bouyer * 2. Redistributions in binary form must reproduce the above copyright
12 1.2 bouyer * notice, this list of conditions and the following disclaimer in the
13 1.2 bouyer * documentation and/or other materials provided with the distribution.
14 1.2 bouyer * 3. All advertising materials mentioning features or use of this software
15 1.2 bouyer * must display the following acknowledgement:
16 1.2 bouyer * This product includes software developed by Charles M. Hannum.
17 1.2 bouyer * 4. The name of the author may not be used to endorse or promote products
18 1.2 bouyer * derived from this software without specific prior written permission.
19 1.2 bouyer *
20 1.2 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 1.2 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 1.2 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 1.2 bouyer * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 1.2 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 1.2 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 1.2 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 1.2 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 1.2 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 1.2 bouyer * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 1.2 bouyer */
31 1.2 bouyer
32 1.2 bouyer /*
33 1.2 bouyer * Originally written by Julian Elischer (julian (at) dialix.oz.au)
34 1.2 bouyer */
35 1.2 bouyer
36 1.2 bouyer #include <sys/types.h>
37 1.2 bouyer #include <sys/param.h>
38 1.2 bouyer #include <sys/systm.h>
39 1.2 bouyer #include <sys/kernel.h>
40 1.2 bouyer #include <sys/buf.h>
41 1.2 bouyer #include <sys/uio.h>
42 1.2 bouyer #include <sys/malloc.h>
43 1.2 bouyer #include <sys/errno.h>
44 1.2 bouyer #include <sys/device.h>
45 1.2 bouyer #include <sys/proc.h>
46 1.2 bouyer
47 1.2 bouyer #include <dev/scsipi/scsipi_all.h>
48 1.2 bouyer #include <dev/scsipi/scsi_all.h>
49 1.2 bouyer #include <dev/scsipi/scsipi_disk.h>
50 1.2 bouyer #include <dev/scsipi/atapiconf.h>
51 1.2 bouyer #include <dev/scsipi/scsipi_base.h>
52 1.2 bouyer
53 1.2 bouyer /*
54 1.2 bouyer * Look at the returned sense and act on the error, determining
55 1.2 bouyer * the unix error number to pass back. (0 = report no error)
56 1.2 bouyer *
57 1.2 bouyer * THIS IS THE DEFAULT ERROR HANDLER
58 1.2 bouyer */
59 1.2 bouyer int
60 1.2 bouyer atapi_interpret_sense(xs)
61 1.2 bouyer struct scsipi_xfer *xs;
62 1.2 bouyer {
63 1.2 bouyer int key, error;
64 1.2 bouyer struct scsipi_link *sc_link = xs->sc_link;
65 1.2 bouyer char *msg = NULL;
66 1.2 bouyer
67 1.2 bouyer key = (xs->sense.atapi_sense & 0xf0) >> 4;
68 1.2 bouyer /*
69 1.2 bouyer * If the device has it's own error handler, call it first.
70 1.2 bouyer * If it returns a legit error value, return that, otherwise
71 1.2 bouyer * it wants us to continue with normal error processing.
72 1.2 bouyer */
73 1.2 bouyer if (sc_link->device->err_handler) {
74 1.2 bouyer SC_DEBUG(sc_link, SDEV_DB2,
75 1.2 bouyer ("calling private err_handler()\n"));
76 1.2 bouyer error = (*sc_link->device->err_handler) (xs);
77 1.2 bouyer if (error != -1)
78 1.2 bouyer return error; /* error >= 0 better ? */
79 1.2 bouyer }
80 1.2 bouyer /* otherwise use the default */
81 1.2 bouyer switch (key) {
82 1.2 bouyer case 0x1: /* RECOVERED ERROR */
83 1.2 bouyer msg = "soft error (corrected)";
84 1.2 bouyer case 0x0: /* NO SENSE */
85 1.2 bouyer if (xs->resid == xs->datalen)
86 1.2 bouyer xs->resid = 0; /* not short read */
87 1.2 bouyer error = 0;
88 1.2 bouyer break;
89 1.2 bouyer case 0x2: /* NOT READY */
90 1.2 bouyer if ((sc_link->flags & SDEV_REMOVABLE) != 0)
91 1.2 bouyer sc_link->flags &= ~SDEV_MEDIA_LOADED;
92 1.2 bouyer if ((xs->flags & SCSI_IGNORE_NOT_READY) != 0)
93 1.2 bouyer return 0;
94 1.2 bouyer if ((xs->flags & SCSI_SILENT) != 0)
95 1.2 bouyer return EIO;
96 1.2 bouyer msg = "not ready";
97 1.2 bouyer error = EIO;
98 1.2 bouyer break;
99 1.2 bouyer case 0x03: /* MEDIUM ERROR */
100 1.2 bouyer msg = "medium error";
101 1.2 bouyer error = EIO;
102 1.2 bouyer break;
103 1.2 bouyer case 0x04:
104 1.2 bouyer msg = "non-media hardware failure";
105 1.2 bouyer error = EIO;
106 1.2 bouyer break;
107 1.2 bouyer case 0x5: /* ILLEGAL REQUEST */
108 1.2 bouyer if ((xs->flags & SCSI_IGNORE_ILLEGAL_REQUEST) != 0)
109 1.2 bouyer return 0;
110 1.2 bouyer if ((xs->flags & SCSI_SILENT) != 0)
111 1.2 bouyer return EIO;
112 1.2 bouyer msg = "illegal request";
113 1.2 bouyer error = EINVAL;
114 1.2 bouyer break;
115 1.2 bouyer case 0x6: /* UNIT ATTENTION */
116 1.2 bouyer if ((sc_link->flags & SDEV_REMOVABLE) != 0)
117 1.2 bouyer sc_link->flags &= ~SDEV_MEDIA_LOADED;
118 1.2 bouyer if ((xs->flags & SCSI_IGNORE_MEDIA_CHANGE) != 0 ||
119 1.2 bouyer /* XXX Should reupload any transient state. */
120 1.2 bouyer (sc_link->flags & SDEV_REMOVABLE) == 0)
121 1.2 bouyer return ERESTART;
122 1.2 bouyer if ((xs->flags & SCSI_SILENT) != 0)
123 1.2 bouyer return EIO;
124 1.2 bouyer msg = "unit attention";
125 1.2 bouyer error = EIO;
126 1.2 bouyer break;
127 1.2 bouyer case 0x7: /* DATA PROTECT */
128 1.2 bouyer msg = "readonly device";
129 1.2 bouyer error = EACCES;
130 1.2 bouyer break;
131 1.2 bouyer case 0xb: /* COMMAND ABORTED */
132 1.2 bouyer msg = "command aborted";
133 1.2 bouyer error = ERESTART;
134 1.2 bouyer break;
135 1.2 bouyer default:
136 1.2 bouyer error = EIO;
137 1.2 bouyer break;
138 1.2 bouyer }
139 1.2 bouyer
140 1.2 bouyer if (!key) {
141 1.2 bouyer if (xs->sense.atapi_sense & 0x01) {
142 1.2 bouyer /* Illegal length indication */
143 1.2 bouyer msg = "ATA illegal length indication";
144 1.2 bouyer error = EIO;
145 1.2 bouyer }
146 1.2 bouyer if (xs->sense.atapi_sense & 0x02) { /* vol overflow */
147 1.2 bouyer msg = "ATA volume overflow";
148 1.2 bouyer error = ENOSPC;
149 1.2 bouyer }
150 1.2 bouyer if (xs->sense.atapi_sense & 0x04) { /* Aborted command */
151 1.2 bouyer msg = "ATA command aborted";
152 1.2 bouyer error = ERESTART;
153 1.2 bouyer }
154 1.2 bouyer }
155 1.2 bouyer if (msg) {
156 1.2 bouyer sc_link->sc_print_addr(sc_link);
157 1.2 bouyer printf("%s\n", msg);
158 1.2 bouyer } else {
159 1.2 bouyer if (error) {
160 1.2 bouyer sc_link->sc_print_addr(sc_link);
161 1.2 bouyer printf("unknown error code %d\n",
162 1.2 bouyer xs->sense.atapi_sense);
163 1.2 bouyer }
164 1.2 bouyer }
165 1.2 bouyer
166 1.2 bouyer return error;
167 1.2 bouyer
168 1.2 bouyer }
169 1.2 bouyer
170 1.2 bouyer /*
171 1.2 bouyer * Utility routines often used in SCSI stuff
172 1.2 bouyer */
173 1.2 bouyer
174 1.2 bouyer
175 1.2 bouyer /*
176 1.2 bouyer * Print out the scsi_link structure's address info.
177 1.2 bouyer */
178 1.2 bouyer void
179 1.2 bouyer atapi_print_addr(sc_link)
180 1.2 bouyer struct scsipi_link *sc_link;
181 1.2 bouyer {
182 1.2 bouyer
183 1.2 bouyer printf("%s(%s:%d): ",
184 1.2 bouyer sc_link->device_softc ?
185 1.2 bouyer ((struct device *)sc_link->device_softc)->dv_xname : "probe",
186 1.2 bouyer ((struct device *)sc_link->adapter_softc)->dv_xname,
187 1.2 bouyer sc_link->scsipi_atapi.drive);
188 1.2 bouyer }
189 1.2 bouyer
190 1.2 bouyer /*
191 1.2 bouyer * ask the atapi driver to perform a command for us.
192 1.2 bouyer * tell it where to read/write the data, and how
193 1.2 bouyer * long the data is supposed to be. If we have a buf
194 1.2 bouyer * to associate with the transfer, we need that too.
195 1.2 bouyer */
196 1.2 bouyer int
197 1.2 bouyer atapi_scsipi_cmd(sc_link, scsipi_cmd, cmdlen, data_addr, datalen,
198 1.2 bouyer retries, timeout, bp, flags)
199 1.2 bouyer struct scsipi_link *sc_link;
200 1.2 bouyer struct scsipi_generic *scsipi_cmd;
201 1.2 bouyer int cmdlen;
202 1.2 bouyer u_char *data_addr;
203 1.2 bouyer int datalen;
204 1.2 bouyer int retries;
205 1.2 bouyer int timeout;
206 1.2 bouyer struct buf *bp;
207 1.2 bouyer int flags;
208 1.2 bouyer {
209 1.2 bouyer struct scsipi_xfer *xs;
210 1.2 bouyer int error;
211 1.2 bouyer
212 1.2 bouyer SC_DEBUG(sc_link, SDEV_DB2, ("atapi_cmd\n"));
213 1.2 bouyer
214 1.2 bouyer #ifdef DIAGNOSTIC
215 1.2 bouyer if (bp != 0 && (flags & SCSI_NOSLEEP) == 0)
216 1.2 bouyer panic("atapi_scsipi_cmd: buffer without nosleep");
217 1.2 bouyer #endif
218 1.2 bouyer
219 1.2 bouyer if ((xs = scsipi_make_xs(sc_link, scsipi_cmd, cmdlen, data_addr,
220 1.2 bouyer datalen, retries, timeout, bp, flags)) == NULL)
221 1.2 bouyer return ENOMEM;
222 1.2 bouyer
223 1.2 bouyer xs->cmdlen = (sc_link->scsipi_atapi.cap & ACAP_LEN) ? 16 : 12;
224 1.2 bouyer
225 1.2 bouyer if ((error = scsipi_execute_xs(xs)) == EJUSTRETURN)
226 1.2 bouyer return 0;
227 1.2 bouyer
228 1.2 bouyer /*
229 1.2 bouyer * we have finished with the xfer stuct, free it and
230 1.2 bouyer * check if anyone else needs to be started up.
231 1.2 bouyer */
232 1.2 bouyer scsipi_free_xs(xs, flags);
233 1.2 bouyer return error;
234 1.2 bouyer }
235