umass.c revision 1.56 1 1.56 augustss /* $NetBSD: umass.c,v 1.56 2001/04/13 12:24:10 augustss Exp $ */
2 1.1 thorpej /*-
3 1.1 thorpej * Copyright (c) 1999 MAEKAWA Masahide <bishop (at) rr.iij4u.or.jp>,
4 1.28 augustss * Nick Hibma <n_hibma (at) freebsd.org>
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * Redistribution and use in source and binary forms, with or without
8 1.1 thorpej * modification, are permitted provided that the following conditions
9 1.1 thorpej * are met:
10 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
11 1.1 thorpej * notice, this list of conditions and the following disclaimer.
12 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
14 1.1 thorpej * documentation and/or other materials provided with the distribution.
15 1.1 thorpej *
16 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 1.1 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 1.1 thorpej * SUCH DAMAGE.
27 1.1 thorpej *
28 1.28 augustss * $FreeBSD: src/sys/dev/usb/umass.c,v 1.13 2000/03/26 01:39:12 n_hibma Exp $
29 1.28 augustss */
30 1.28 augustss
31 1.28 augustss /*
32 1.47 augustss * Universal Serial Bus Mass Storage Class specs:
33 1.47 augustss * http://www.usb.org/developers/data/devclass/usbmassover_11.pdf
34 1.47 augustss * http://www.usb.org/developers/data/devclass/usbmassbulk_10.pdf
35 1.47 augustss * http://www.usb.org/developers/data/devclass/usbmass-cbi10.pdf
36 1.47 augustss * http://www.usb.org/developers/data/devclass/usbmass-ufi10.pdf
37 1.28 augustss */
38 1.28 augustss
39 1.28 augustss /*
40 1.28 augustss * Ported to NetBSD by Lennart Augustsson <augustss (at) netbsd.org>.
41 1.28 augustss * Parts of the code written my Jason R. Thorpe <thorpej (at) shagadelic.org>.
42 1.1 thorpej */
43 1.1 thorpej
44 1.1 thorpej /*
45 1.28 augustss * The driver handles 3 Wire Protocols
46 1.28 augustss * - Command/Bulk/Interrupt (CBI)
47 1.28 augustss * - Command/Bulk/Interrupt with Command Completion Interrupt (CBI with CCI)
48 1.28 augustss * - Mass Storage Bulk-Only (BBB)
49 1.28 augustss * (BBB refers Bulk/Bulk/Bulk for Command/Data/Status phases)
50 1.28 augustss *
51 1.28 augustss * Over these wire protocols it handles the following command protocols
52 1.28 augustss * - SCSI
53 1.54 augustss * - 8070 (ATA/ATAPI for rewritable removable media)
54 1.54 augustss * - UFI (USB Floppy Interface)
55 1.1 thorpej *
56 1.54 augustss * 8070i is a transformed version of the SCSI command set. UFI is a transformed
57 1.54 augustss * version of the 8070i command set. The sc->transform method is used to
58 1.54 augustss * convert the commands into the appropriate format (if at all necessary).
59 1.54 augustss * For example, ATAPI requires all commands to be 12 bytes in length amongst
60 1.54 augustss * other things.
61 1.3 thorpej *
62 1.28 augustss * The source code below is marked and can be split into a number of pieces
63 1.28 augustss * (in this order):
64 1.3 thorpej *
65 1.28 augustss * - probe/attach/detach
66 1.28 augustss * - generic transfer routines
67 1.28 augustss * - BBB
68 1.28 augustss * - CBI
69 1.28 augustss * - CBI_I (in addition to functions from CBI)
70 1.28 augustss * - CAM (Common Access Method)
71 1.28 augustss * - SCSI
72 1.28 augustss * - UFI
73 1.28 augustss * - 8070i
74 1.3 thorpej *
75 1.28 augustss * The protocols are implemented using a state machine, for the transfers as
76 1.28 augustss * well as for the resets. The state machine is contained in umass_*_state.
77 1.28 augustss * The state machine is started through either umass_*_transfer or
78 1.28 augustss * umass_*_reset.
79 1.28 augustss *
80 1.28 augustss * The reason for doing this is a) CAM performs a lot better this way and b) it
81 1.28 augustss * avoids using tsleep from interrupt context (for example after a failed
82 1.28 augustss * transfer).
83 1.1 thorpej */
84 1.1 thorpej
85 1.28 augustss /*
86 1.28 augustss * The SCSI related part of this driver has been derived from the
87 1.28 augustss * dev/ppbus/vpo.c driver, by Nicolas Souchu (nsouch (at) freebsd.org).
88 1.1 thorpej *
89 1.28 augustss * The CAM layer uses so called actions which are messages sent to the host
90 1.28 augustss * adapter for completion. The actions come in through umass_cam_action. The
91 1.28 augustss * appropriate block of routines is called depending on the transport protocol
92 1.28 augustss * in use. When the transfer has finished, these routines call
93 1.28 augustss * umass_cam_cb again to complete the CAM command.
94 1.1 thorpej */
95 1.1 thorpej
96 1.29 enami #include "atapibus.h"
97 1.29 enami
98 1.1 thorpej #include <sys/param.h>
99 1.1 thorpej #include <sys/systm.h>
100 1.1 thorpej #include <sys/kernel.h>
101 1.28 augustss #include <sys/conf.h>
102 1.28 augustss #if defined(__NetBSD__) || defined(__OpenBSD__)
103 1.28 augustss #include <sys/buf.h>
104 1.28 augustss #include <sys/device.h>
105 1.28 augustss #include <sys/ioctl.h>
106 1.1 thorpej #include <sys/malloc.h>
107 1.28 augustss #undef KASSERT
108 1.28 augustss #define KASSERT(cond, msg)
109 1.28 augustss #elif defined(__FreeBSD__)
110 1.28 augustss #include <sys/module.h>
111 1.28 augustss #include <sys/bus.h>
112 1.28 augustss #include <machine/clock.h>
113 1.28 augustss #endif
114 1.1 thorpej
115 1.1 thorpej #include <dev/usb/usb.h>
116 1.1 thorpej #include <dev/usb/usbdi.h>
117 1.1 thorpej #include <dev/usb/usbdi_util.h>
118 1.28 augustss #include <dev/usb/usbdevs.h>
119 1.1 thorpej
120 1.56 augustss #include <dev/usb/umassbus.h>
121 1.56 augustss #include <dev/usb/umassvar.h>
122 1.28 augustss
123 1.28 augustss
124 1.28 augustss
125 1.28 augustss
126 1.28 augustss #ifdef UMASS_DEBUG
127 1.28 augustss char *states[TSTATE_STATES+1] = {
128 1.28 augustss /* should be kept in sync with the list at transfer_state */
129 1.28 augustss "Idle",
130 1.28 augustss "BBB CBW",
131 1.28 augustss "BBB Data",
132 1.28 augustss "BBB Data bulk-in/-out clear stall",
133 1.28 augustss "BBB CSW, 1st attempt",
134 1.28 augustss "BBB CSW bulk-in clear stall",
135 1.28 augustss "BBB CSW, 2nd attempt",
136 1.28 augustss "BBB Reset",
137 1.28 augustss "BBB bulk-in clear stall",
138 1.28 augustss "BBB bulk-out clear stall",
139 1.28 augustss "CBI Command",
140 1.28 augustss "CBI Data",
141 1.28 augustss "CBI Status",
142 1.28 augustss "CBI Data bulk-in/-out clear stall",
143 1.28 augustss "CBI Status intr-in clear stall",
144 1.28 augustss "CBI Reset",
145 1.28 augustss "CBI bulk-in clear stall",
146 1.28 augustss "CBI bulk-out clear stall",
147 1.28 augustss NULL
148 1.28 augustss };
149 1.28 augustss #endif
150 1.28 augustss
151 1.28 augustss struct cam_sim *umass_sim; /* SCSI Interface Module */
152 1.28 augustss struct cam_path *umass_path; /* and its path */
153 1.1 thorpej
154 1.1 thorpej
155 1.28 augustss /* USB device probe/attach/detach functions */
156 1.1 thorpej USB_DECLARE_DRIVER(umass);
157 1.38 augustss Static void umass_disco(struct umass_softc *sc);
158 1.38 augustss Static int umass_match_proto(struct umass_softc *sc,
159 1.38 augustss usbd_interface_handle iface,
160 1.38 augustss usbd_device_handle dev);
161 1.38 augustss Static void umass_init_shuttle(struct umass_softc *sc);
162 1.1 thorpej
163 1.28 augustss /* generic transfer functions */
164 1.38 augustss Static usbd_status umass_setup_transfer(struct umass_softc *sc,
165 1.1 thorpej usbd_pipe_handle pipe,
166 1.28 augustss void *buffer, int buflen, int flags,
167 1.38 augustss usbd_xfer_handle xfer);
168 1.38 augustss Static usbd_status umass_setup_ctrl_transfer(struct umass_softc *sc,
169 1.28 augustss usbd_device_handle dev,
170 1.28 augustss usb_device_request_t *req,
171 1.28 augustss void *buffer, int buflen, int flags,
172 1.38 augustss usbd_xfer_handle xfer);
173 1.38 augustss Static void umass_clear_endpoint_stall(struct umass_softc *sc,
174 1.28 augustss u_int8_t endpt, usbd_pipe_handle pipe,
175 1.38 augustss int state, usbd_xfer_handle xfer);
176 1.29 enami #if 0
177 1.38 augustss Static void umass_reset(struct umass_softc *sc, transfer_cb_f cb, void *priv);
178 1.29 enami #endif
179 1.1 thorpej
180 1.1 thorpej /* Bulk-Only related functions */
181 1.38 augustss Static void umass_bbb_reset(struct umass_softc *sc, int status);
182 1.38 augustss Static void umass_bbb_transfer(struct umass_softc *sc, int lun,
183 1.28 augustss void *cmd, int cmdlen,
184 1.28 augustss void *data, int datalen, int dir,
185 1.38 augustss transfer_cb_f cb, void *priv);
186 1.38 augustss Static void umass_bbb_state(usbd_xfer_handle xfer,
187 1.28 augustss usbd_private_handle priv,
188 1.38 augustss usbd_status err);
189 1.38 augustss usbd_status umass_bbb_get_max_lun(struct umass_softc *sc, u_int8_t *maxlun);
190 1.28 augustss
191 1.28 augustss
192 1.28 augustss /* CBI related functions */
193 1.38 augustss Static int umass_cbi_adsc(struct umass_softc *sc, char *buffer,int buflen,
194 1.38 augustss usbd_xfer_handle xfer);
195 1.38 augustss Static void umass_cbi_reset(struct umass_softc *sc, int status);
196 1.38 augustss Static void umass_cbi_transfer(struct umass_softc *sc, int lun,
197 1.1 thorpej void *cmd, int cmdlen,
198 1.28 augustss void *data, int datalen, int dir,
199 1.38 augustss transfer_cb_f cb, void *priv);
200 1.38 augustss Static void umass_cbi_state(usbd_xfer_handle xfer,
201 1.38 augustss usbd_private_handle priv, usbd_status err);
202 1.28 augustss
203 1.28 augustss #ifdef UMASS_DEBUG
204 1.28 augustss /* General debugging functions */
205 1.38 augustss Static void umass_bbb_dump_cbw(struct umass_softc *sc,
206 1.38 augustss umass_bbb_cbw_t *cbw);
207 1.38 augustss Static void umass_bbb_dump_csw(struct umass_softc *sc,
208 1.38 augustss umass_bbb_csw_t *csw);
209 1.38 augustss Static void umass_dump_buffer(struct umass_softc *sc, u_int8_t *buffer,
210 1.38 augustss int buflen, int printlen);
211 1.28 augustss #endif
212 1.28 augustss
213 1.28 augustss
214 1.28 augustss void usbd_clear_endpoint_toggle(usbd_pipe_handle pipe); /* XXXXX */
215 1.28 augustss
216 1.28 augustss /*
217 1.28 augustss * USB device probe/attach/detach
218 1.28 augustss */
219 1.28 augustss
220 1.28 augustss /*
221 1.28 augustss * Match the device we are seeing with the devices supported. Fill in the
222 1.28 augustss * proto and drive fields in the softc accordingly.
223 1.28 augustss * This function is called from both probe and attach.
224 1.28 augustss */
225 1.28 augustss
226 1.28 augustss Static int
227 1.38 augustss umass_match_proto(struct umass_softc *sc, usbd_interface_handle iface,
228 1.38 augustss usbd_device_handle dev)
229 1.28 augustss {
230 1.28 augustss usb_device_descriptor_t *dd;
231 1.28 augustss usb_interface_descriptor_t *id;
232 1.44 augustss u_int vendor, product;
233 1.28 augustss
234 1.28 augustss /*
235 1.28 augustss * Fill in sc->drive and sc->proto and return a match
236 1.28 augustss * value if both are determined and 0 otherwise.
237 1.28 augustss */
238 1.28 augustss
239 1.28 augustss sc->drive = DRIVE_GENERIC;
240 1.28 augustss sc->proto = PROTO_UNKNOWN;
241 1.28 augustss sc->transfer_speed = UMASS_DEFAULT_TRANSFER_SPEED;
242 1.28 augustss
243 1.28 augustss sc->sc_udev = dev;
244 1.28 augustss dd = usbd_get_device_descriptor(dev);
245 1.44 augustss vendor = UGETW(dd->idVendor);
246 1.44 augustss product = UGETW(dd->idProduct);
247 1.28 augustss
248 1.44 augustss if (vendor == USB_VENDOR_SHUTTLE &&
249 1.55 augustss (product == USB_PRODUCT_SHUTTLE_EUSB ||
250 1.55 augustss product == USB_PRODUCT_SHUTTLE_ZIOMMC)
251 1.55 augustss ) {
252 1.55 augustss if (product == USB_PRODUCT_SHUTTLE_EUSB)
253 1.55 augustss sc->drive = SHUTTLE_EUSB;
254 1.28 augustss #if CBI_I
255 1.37 augustss sc->proto = PROTO_ATAPI | PROTO_CBI_I;
256 1.28 augustss #else
257 1.37 augustss sc->proto = PROTO_ATAPI | PROTO_CBI;
258 1.28 augustss #endif
259 1.40 augustss sc->subclass = UISUBCLASS_SFF8020I;
260 1.40 augustss sc->protocol = UIPROTO_MASS_CBI;
261 1.28 augustss sc->quirks |= NO_TEST_UNIT_READY | NO_START_STOP;
262 1.28 augustss return (UMATCH_VENDOR_PRODUCT);
263 1.28 augustss }
264 1.28 augustss
265 1.54 augustss if (vendor == USB_VENDOR_MICROTECH &&
266 1.54 augustss product == USB_PRODUCT_MICROTECH_DPCM) {
267 1.54 augustss sc->proto = PROTO_ATAPI | PROTO_CBI;
268 1.54 augustss sc->subclass = UISUBCLASS_SFF8070I;
269 1.54 augustss sc->protocol = UIPROTO_MASS_CBI;
270 1.54 augustss sc->transfer_speed = UMASS_ZIP100_TRANSFER_SPEED * 2;
271 1.54 augustss
272 1.54 augustss return (UMATCH_VENDOR_PRODUCT);
273 1.54 augustss }
274 1.54 augustss
275 1.54 augustss if (vendor == USB_VENDOR_YANO &&
276 1.54 augustss product == USB_PRODUCT_YANO_U640MO) {
277 1.54 augustss #if CBI_I
278 1.49 augustss sc->proto = PROTO_ATAPI | PROTO_CBI_I;
279 1.54 augustss #else
280 1.54 augustss sc->proto = PROTO_ATAPI | PROTO_CBI;
281 1.54 augustss #endif
282 1.49 augustss sc->quirks |= FORCE_SHORT_INQUIRY;
283 1.49 augustss return (UMATCH_VENDOR_PRODUCT);
284 1.49 augustss }
285 1.49 augustss
286 1.54 augustss if (vendor == USB_VENDOR_SONY &&
287 1.54 augustss product == USB_PRODUCT_SONY_MSC) {
288 1.49 augustss sc->quirks |= FORCE_SHORT_INQUIRY;
289 1.49 augustss }
290 1.49 augustss
291 1.44 augustss if (vendor == USB_VENDOR_YEDATA &&
292 1.44 augustss product == USB_PRODUCT_YEDATA_FLASHBUSTERU) {
293 1.28 augustss
294 1.28 augustss /* Revisions < 1.28 do not handle the interrupt endpoint
295 1.28 augustss * very well.
296 1.28 augustss */
297 1.28 augustss if (UGETW(dd->bcdDevice) < 0x128)
298 1.28 augustss sc->proto = PROTO_UFI | PROTO_CBI;
299 1.28 augustss else
300 1.28 augustss #if CBI_I
301 1.28 augustss sc->proto = PROTO_UFI | PROTO_CBI_I;
302 1.28 augustss #else
303 1.28 augustss sc->proto = PROTO_UFI | PROTO_CBI;
304 1.28 augustss #endif
305 1.28 augustss /*
306 1.28 augustss * Revisions < 1.28 do not have the TEST UNIT READY command
307 1.28 augustss * Revisions == 1.28 have a broken TEST UNIT READY
308 1.28 augustss */
309 1.28 augustss if (UGETW(dd->bcdDevice) <= 0x128)
310 1.28 augustss sc->quirks |= NO_TEST_UNIT_READY;
311 1.28 augustss
312 1.40 augustss sc->subclass = UISUBCLASS_UFI;
313 1.40 augustss sc->protocol = UIPROTO_MASS_CBI;
314 1.40 augustss
315 1.28 augustss sc->quirks |= RS_NO_CLEAR_UA;
316 1.28 augustss sc->transfer_speed = UMASS_FLOPPY_TRANSFER_SPEED;
317 1.28 augustss return (UMATCH_VENDOR_PRODUCT_REV);
318 1.28 augustss }
319 1.28 augustss
320 1.44 augustss if (vendor == USB_VENDOR_INSYSTEM &&
321 1.44 augustss product == USB_PRODUCT_INSYSTEM_USBCABLE) {
322 1.41 augustss sc->drive = INSYSTEM_USBCABLE;
323 1.41 augustss sc->proto = PROTO_ATAPI | PROTO_CBI;
324 1.41 augustss sc->quirks |= NO_TEST_UNIT_READY | NO_START_STOP;
325 1.44 augustss return (UMATCH_VENDOR_PRODUCT);
326 1.41 augustss }
327 1.41 augustss
328 1.28 augustss id = usbd_get_interface_descriptor(iface);
329 1.28 augustss if (id == NULL || id->bInterfaceClass != UICLASS_MASS)
330 1.28 augustss return (UMATCH_NONE);
331 1.1 thorpej
332 1.44 augustss if (vendor == USB_VENDOR_SONY && id->bInterfaceSubClass == 0xff) {
333 1.42 augustss /*
334 1.42 augustss * Sony DSC devices set the sub class to 0xff
335 1.42 augustss * instead of 1 (RBC). Fix that here.
336 1.42 augustss */
337 1.42 augustss id->bInterfaceSubClass = UISUBCLASS_RBC;
338 1.42 augustss /* They also should be able to do higher speed. */
339 1.42 augustss sc->transfer_speed = 500;
340 1.42 augustss }
341 1.44 augustss
342 1.44 augustss if (vendor == USB_VENDOR_FUJIPHOTO &&
343 1.44 augustss product == USB_PRODUCT_FUJIPHOTO_MASS0100)
344 1.44 augustss sc->quirks |= NO_TEST_UNIT_READY | NO_START_STOP;
345 1.42 augustss
346 1.40 augustss sc->subclass = id->bInterfaceSubClass;
347 1.40 augustss sc->protocol = id->bInterfaceProtocol;
348 1.40 augustss
349 1.40 augustss switch (sc->subclass) {
350 1.28 augustss case UISUBCLASS_SCSI:
351 1.28 augustss sc->proto |= PROTO_SCSI;
352 1.28 augustss break;
353 1.28 augustss case UISUBCLASS_UFI:
354 1.28 augustss sc->transfer_speed = UMASS_FLOPPY_TRANSFER_SPEED;
355 1.28 augustss sc->proto |= PROTO_UFI;
356 1.28 augustss break;
357 1.28 augustss case UISUBCLASS_SFF8020I:
358 1.28 augustss case UISUBCLASS_SFF8070I:
359 1.31 augustss case UISUBCLASS_QIC157:
360 1.37 augustss sc->proto |= PROTO_ATAPI;
361 1.28 augustss break;
362 1.40 augustss case UISUBCLASS_RBC:
363 1.40 augustss sc->proto |= PROTO_RBC;
364 1.40 augustss break;
365 1.28 augustss default:
366 1.28 augustss DPRINTF(UDMASS_GEN, ("%s: Unsupported command protocol %d\n",
367 1.28 augustss USBDEVNAME(sc->sc_dev), id->bInterfaceSubClass));
368 1.28 augustss return (UMATCH_NONE);
369 1.28 augustss }
370 1.28 augustss
371 1.40 augustss switch (sc->protocol) {
372 1.28 augustss case UIPROTO_MASS_CBI:
373 1.28 augustss sc->proto |= PROTO_CBI;
374 1.28 augustss break;
375 1.28 augustss case UIPROTO_MASS_CBI_I:
376 1.28 augustss #if CBI_I
377 1.28 augustss sc->proto |= PROTO_CBI_I;
378 1.28 augustss #else
379 1.28 augustss sc->proto |= PROTO_CBI;
380 1.28 augustss #endif
381 1.28 augustss break;
382 1.28 augustss case UIPROTO_MASS_BBB:
383 1.28 augustss sc->proto |= PROTO_BBB;
384 1.28 augustss break;
385 1.28 augustss case UIPROTO_MASS_BBB_P:
386 1.28 augustss sc->drive = ZIP_100;
387 1.28 augustss sc->proto |= PROTO_BBB;
388 1.28 augustss sc->transfer_speed = UMASS_ZIP100_TRANSFER_SPEED;
389 1.28 augustss sc->quirks |= NO_TEST_UNIT_READY;
390 1.28 augustss break;
391 1.28 augustss default:
392 1.28 augustss DPRINTF(UDMASS_GEN, ("%s: Unsupported wire protocol %d\n",
393 1.28 augustss USBDEVNAME(sc->sc_dev), id->bInterfaceProtocol));
394 1.28 augustss return (UMATCH_NONE);
395 1.28 augustss }
396 1.1 thorpej
397 1.28 augustss return (UMATCH_DEVCLASS_DEVSUBCLASS_DEVPROTO);
398 1.28 augustss }
399 1.1 thorpej
400 1.1 thorpej USB_MATCH(umass)
401 1.1 thorpej {
402 1.1 thorpej USB_MATCH_START(umass, uaa);
403 1.28 augustss #if defined(__FreeBSD__)
404 1.28 augustss struct umass_softc *sc = device_get_softc(self);
405 1.52 cgd #elif defined(__NetBSD__) || defined(__OpenBSD__)
406 1.28 augustss struct umass_softc scs, *sc = &scs;
407 1.28 augustss memset(sc, 0, sizeof *sc);
408 1.40 augustss strcpy(sc->sc_dev.dv_xname, "umass");
409 1.28 augustss #endif
410 1.1 thorpej
411 1.22 augustss if (uaa->iface == NULL)
412 1.1 thorpej return(UMATCH_NONE);
413 1.1 thorpej
414 1.28 augustss return (umass_match_proto(sc, uaa->iface, uaa->device));
415 1.1 thorpej }
416 1.1 thorpej
417 1.1 thorpej USB_ATTACH(umass)
418 1.1 thorpej {
419 1.1 thorpej USB_ATTACH_START(umass, sc, uaa);
420 1.1 thorpej usb_interface_descriptor_t *id;
421 1.1 thorpej usb_endpoint_descriptor_t *ed;
422 1.32 augustss const char *sSubclass, *sProto;
423 1.1 thorpej char devinfo[1024];
424 1.28 augustss int i, bno;
425 1.28 augustss int err;
426 1.1 thorpej
427 1.28 augustss /*
428 1.28 augustss * the softc struct is bzero-ed in device_set_driver. We can safely
429 1.28 augustss * call umass_detach without specifically initialising the struct.
430 1.28 augustss */
431 1.1 thorpej
432 1.1 thorpej usbd_devinfo(uaa->device, 0, devinfo);
433 1.1 thorpej USB_ATTACH_SETUP;
434 1.1 thorpej
435 1.28 augustss sc->iface = uaa->iface;
436 1.28 augustss sc->ifaceno = uaa->ifaceno;
437 1.28 augustss
438 1.28 augustss /* initialise the proto and drive values in the umass_softc (again) */
439 1.40 augustss if (umass_match_proto(sc, sc->iface, uaa->device) == 0) {
440 1.40 augustss printf("%s: match failed\n", USBDEVNAME(sc->sc_dev));
441 1.40 augustss USB_ATTACH_ERROR_RETURN;
442 1.40 augustss }
443 1.28 augustss
444 1.51 tsutsui if (sc->drive == INSYSTEM_USBCABLE) {
445 1.51 tsutsui err = usbd_set_interface(sc->iface, 1);
446 1.51 tsutsui if (err) {
447 1.51 tsutsui DPRINTF(UDMASS_USB, ("%s: could not switch to "
448 1.51 tsutsui "Alt Interface %d\n",
449 1.51 tsutsui USBDEVNAME(sc->sc_dev), 1));
450 1.51 tsutsui umass_disco(sc);
451 1.51 tsutsui USB_ATTACH_ERROR_RETURN;
452 1.51 tsutsui }
453 1.51 tsutsui }
454 1.51 tsutsui
455 1.28 augustss /*
456 1.28 augustss * The timeout is based on the maximum expected transfer size
457 1.28 augustss * divided by the expected transfer speed.
458 1.28 augustss * We multiply by 4 to make sure a busy system doesn't make things
459 1.28 augustss * fail.
460 1.28 augustss */
461 1.28 augustss sc->timeout = 4 * UMASS_MAX_TRANSFER_SIZE / sc->transfer_speed;
462 1.28 augustss sc->timeout += UMASS_SPINUP_TIME; /* allow for spinning up */
463 1.17 thorpej
464 1.28 augustss id = usbd_get_interface_descriptor(sc->iface);
465 1.28 augustss printf("%s: %s\n", USBDEVNAME(sc->sc_dev), devinfo);
466 1.17 thorpej
467 1.40 augustss switch (sc->subclass) {
468 1.40 augustss case UISUBCLASS_RBC:
469 1.40 augustss sSubclass = "RBC";
470 1.40 augustss break;
471 1.32 augustss case UISUBCLASS_SCSI:
472 1.32 augustss sSubclass = "SCSI";
473 1.32 augustss break;
474 1.32 augustss case UISUBCLASS_UFI:
475 1.32 augustss sSubclass = "UFI";
476 1.28 augustss break;
477 1.32 augustss case UISUBCLASS_SFF8020I:
478 1.32 augustss sSubclass = "SFF8020i";
479 1.32 augustss break;
480 1.32 augustss case UISUBCLASS_SFF8070I:
481 1.32 augustss sSubclass = "SFF8070i";
482 1.28 augustss break;
483 1.32 augustss case UISUBCLASS_QIC157:
484 1.32 augustss sSubclass = "QIC157";
485 1.28 augustss break;
486 1.17 thorpej default:
487 1.32 augustss sSubclass = "unknown";
488 1.28 augustss break;
489 1.17 thorpej }
490 1.40 augustss switch (sc->protocol) {
491 1.32 augustss case UIPROTO_MASS_CBI:
492 1.32 augustss sProto = "CBI";
493 1.28 augustss break;
494 1.32 augustss case UIPROTO_MASS_CBI_I:
495 1.32 augustss sProto = "CBI-I";
496 1.28 augustss break;
497 1.32 augustss case UIPROTO_MASS_BBB:
498 1.32 augustss sProto = "BBB";
499 1.32 augustss break;
500 1.32 augustss case UIPROTO_MASS_BBB_P:
501 1.32 augustss sProto = "BBB-P";
502 1.28 augustss break;
503 1.17 thorpej default:
504 1.32 augustss sProto = "unknown";
505 1.32 augustss break;
506 1.17 thorpej }
507 1.32 augustss printf("%s: using %s over %s\n", USBDEVNAME(sc->sc_dev), sSubclass,
508 1.32 augustss sProto);
509 1.1 thorpej
510 1.1 thorpej /*
511 1.28 augustss * In addition to the Control endpoint the following endpoints
512 1.28 augustss * are required:
513 1.28 augustss * a) bulk-in endpoint.
514 1.28 augustss * b) bulk-out endpoint.
515 1.28 augustss * and for Control/Bulk/Interrupt with CCI (CBI_I)
516 1.28 augustss * c) intr-in
517 1.1 thorpej *
518 1.1 thorpej * The endpoint addresses are not fixed, so we have to read them
519 1.1 thorpej * from the device descriptors of the current interface.
520 1.1 thorpej */
521 1.1 thorpej for (i = 0 ; i < id->bNumEndpoints ; i++) {
522 1.28 augustss ed = usbd_interface2endpoint_descriptor(sc->iface, i);
523 1.28 augustss if (!ed) {
524 1.1 thorpej printf("%s: could not read endpoint descriptor\n",
525 1.1 thorpej USBDEVNAME(sc->sc_dev));
526 1.1 thorpej USB_ATTACH_ERROR_RETURN;
527 1.1 thorpej }
528 1.11 augustss if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN
529 1.1 thorpej && (ed->bmAttributes & UE_XFERTYPE) == UE_BULK) {
530 1.28 augustss sc->bulkin = ed->bEndpointAddress;
531 1.11 augustss } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT
532 1.1 thorpej && (ed->bmAttributes & UE_XFERTYPE) == UE_BULK) {
533 1.28 augustss sc->bulkout = ed->bEndpointAddress;
534 1.28 augustss } else if (sc->proto & PROTO_CBI_I
535 1.28 augustss && UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN
536 1.28 augustss && (ed->bmAttributes & UE_XFERTYPE) == UE_INTERRUPT) {
537 1.28 augustss sc->intrin = ed->bEndpointAddress;
538 1.28 augustss #ifdef UMASS_DEBUG
539 1.28 augustss if (UGETW(ed->wMaxPacketSize) > 2) {
540 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: intr size is %d\n",
541 1.28 augustss USBDEVNAME(sc->sc_dev),
542 1.28 augustss UGETW(ed->wMaxPacketSize)));
543 1.28 augustss }
544 1.28 augustss #endif
545 1.1 thorpej }
546 1.1 thorpej }
547 1.1 thorpej
548 1.28 augustss /* check whether we found all the endpoints we need */
549 1.28 augustss if (!sc->bulkin || !sc->bulkout
550 1.28 augustss || (sc->proto & PROTO_CBI_I && !sc->intrin) ) {
551 1.28 augustss DPRINTF(UDMASS_USB, ("%s: endpoint not found %d/%d/%d\n",
552 1.28 augustss USBDEVNAME(sc->sc_dev),
553 1.28 augustss sc->bulkin, sc->bulkout, sc->intrin));
554 1.28 augustss umass_disco(sc);
555 1.28 augustss USB_ATTACH_ERROR_RETURN;
556 1.28 augustss }
557 1.28 augustss
558 1.7 thorpej /*
559 1.7 thorpej * Get the maximum LUN supported by the device.
560 1.7 thorpej */
561 1.28 augustss if ((sc->proto & PROTO_WIRE) == PROTO_BBB) {
562 1.28 augustss err = umass_bbb_get_max_lun(sc, &sc->maxlun);
563 1.28 augustss if (err) {
564 1.28 augustss printf("%s: unable to get Max Lun: %s\n",
565 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err));
566 1.28 augustss USB_ATTACH_ERROR_RETURN;
567 1.28 augustss }
568 1.28 augustss } else {
569 1.28 augustss sc->maxlun = 0;
570 1.7 thorpej }
571 1.7 thorpej
572 1.1 thorpej /* Open the bulk-in and -out pipe */
573 1.28 augustss err = usbd_open_pipe(sc->iface, sc->bulkout,
574 1.28 augustss USBD_EXCLUSIVE_USE, &sc->bulkout_pipe);
575 1.1 thorpej if (err) {
576 1.28 augustss DPRINTF(UDMASS_USB, ("%s: cannot open %d-out pipe (bulk)\n",
577 1.28 augustss USBDEVNAME(sc->sc_dev), sc->bulkout));
578 1.28 augustss umass_disco(sc);
579 1.1 thorpej USB_ATTACH_ERROR_RETURN;
580 1.1 thorpej }
581 1.28 augustss err = usbd_open_pipe(sc->iface, sc->bulkin,
582 1.28 augustss USBD_EXCLUSIVE_USE, &sc->bulkin_pipe);
583 1.1 thorpej if (err) {
584 1.28 augustss DPRINTF(UDMASS_USB, ("%s: could not open %d-in pipe (bulk)\n",
585 1.28 augustss USBDEVNAME(sc->sc_dev), sc->bulkin));
586 1.28 augustss umass_disco(sc);
587 1.1 thorpej USB_ATTACH_ERROR_RETURN;
588 1.1 thorpej }
589 1.28 augustss /*
590 1.28 augustss * Open the intr-in pipe if the protocol is CBI with CCI.
591 1.28 augustss * Note: early versions of the Zip drive do have an interrupt pipe, but
592 1.28 augustss * this pipe is unused
593 1.28 augustss *
594 1.28 augustss * We do not open the interrupt pipe as an interrupt pipe, but as a
595 1.28 augustss * normal bulk endpoint. We send an IN transfer down the wire at the
596 1.28 augustss * appropriate time, because we know exactly when to expect data on
597 1.28 augustss * that endpoint. This saves bandwidth, but more important, makes the
598 1.28 augustss * code for handling the data on that endpoint simpler. No data
599 1.28 augustss * arriving concurrently.
600 1.28 augustss */
601 1.28 augustss if (sc->proto & PROTO_CBI_I) {
602 1.28 augustss err = usbd_open_pipe(sc->iface, sc->intrin,
603 1.28 augustss USBD_EXCLUSIVE_USE, &sc->intrin_pipe);
604 1.28 augustss if (err) {
605 1.28 augustss DPRINTF(UDMASS_USB, ("%s: couldn't open %d-in (intr)\n",
606 1.28 augustss USBDEVNAME(sc->sc_dev), sc->intrin));
607 1.28 augustss umass_disco(sc);
608 1.28 augustss USB_ATTACH_ERROR_RETURN;
609 1.28 augustss }
610 1.28 augustss }
611 1.28 augustss
612 1.28 augustss /* initialisation of generic part */
613 1.28 augustss sc->transfer_state = TSTATE_IDLE;
614 1.28 augustss
615 1.28 augustss /* request a sufficient number of xfer handles */
616 1.28 augustss for (i = 0; i < XFER_NR; i++) {
617 1.28 augustss sc->transfer_xfer[i] = usbd_alloc_xfer(uaa->device);
618 1.28 augustss if (sc->transfer_xfer[i] == 0) {
619 1.28 augustss DPRINTF(UDMASS_USB, ("%s: Out of memory\n",
620 1.28 augustss USBDEVNAME(sc->sc_dev)));
621 1.28 augustss umass_disco(sc);
622 1.28 augustss USB_ATTACH_ERROR_RETURN;
623 1.28 augustss }
624 1.28 augustss }
625 1.28 augustss /* Allocate buffer for data transfer (it's huge). */
626 1.28 augustss switch (sc->proto & PROTO_WIRE) {
627 1.28 augustss case PROTO_BBB:
628 1.28 augustss bno = XFER_BBB_DATA;
629 1.28 augustss goto dalloc;
630 1.28 augustss case PROTO_CBI:
631 1.28 augustss bno = XFER_CBI_DATA;
632 1.28 augustss goto dalloc;
633 1.28 augustss case PROTO_CBI_I:
634 1.28 augustss bno = XFER_CBI_DATA;
635 1.28 augustss dalloc:
636 1.28 augustss sc->data_buffer = usbd_alloc_buffer(sc->transfer_xfer[bno],
637 1.28 augustss UMASS_MAX_TRANSFER_SIZE);
638 1.28 augustss if (sc->data_buffer == NULL) {
639 1.28 augustss umass_disco(sc);
640 1.28 augustss USB_ATTACH_ERROR_RETURN;
641 1.28 augustss }
642 1.28 augustss break;
643 1.28 augustss default:
644 1.28 augustss break;
645 1.28 augustss }
646 1.1 thorpej
647 1.28 augustss /* Initialise the wire protocol specific methods */
648 1.28 augustss if (sc->proto & PROTO_BBB) {
649 1.28 augustss sc->reset = umass_bbb_reset;
650 1.28 augustss sc->transfer = umass_bbb_transfer;
651 1.28 augustss sc->state = umass_bbb_state;
652 1.28 augustss } else if ((sc->proto & PROTO_CBI) || (sc->proto & PROTO_CBI_I)) {
653 1.28 augustss sc->reset = umass_cbi_reset;
654 1.28 augustss sc->transfer = umass_cbi_transfer;
655 1.28 augustss sc->state = umass_cbi_state;
656 1.28 augustss #ifdef UMASS_DEBUG
657 1.28 augustss } else {
658 1.28 augustss panic("%s:%d: Unknown proto 0x%02x\n",
659 1.28 augustss __FILE__, __LINE__, sc->proto);
660 1.28 augustss #endif
661 1.28 augustss }
662 1.28 augustss
663 1.28 augustss if (sc->drive == SHUTTLE_EUSB)
664 1.28 augustss umass_init_shuttle(sc);
665 1.28 augustss
666 1.56 augustss if (umass_attach_bus(sc)) {
667 1.28 augustss umass_disco(sc);
668 1.28 augustss USB_ATTACH_ERROR_RETURN;
669 1.28 augustss }
670 1.1 thorpej
671 1.28 augustss DPRINTF(UDMASS_GEN, ("%s: Attach finished\n", USBDEVNAME(sc->sc_dev)));
672 1.28 augustss
673 1.1 thorpej USB_ATTACH_SUCCESS_RETURN;
674 1.1 thorpej }
675 1.1 thorpej
676 1.28 augustss USB_DETACH(umass)
677 1.28 augustss {
678 1.28 augustss USB_DETACH_START(umass, sc);
679 1.28 augustss int rv = 0;
680 1.1 thorpej
681 1.28 augustss DPRINTF(UDMASS_USB, ("%s: detached\n", USBDEVNAME(sc->sc_dev)));
682 1.28 augustss
683 1.28 augustss /* Abort the pipes to wake up any waiting processes. */
684 1.28 augustss if (sc->bulkout_pipe != NULL)
685 1.28 augustss usbd_abort_pipe(sc->bulkout_pipe);
686 1.28 augustss if (sc->bulkin_pipe != NULL)
687 1.28 augustss usbd_abort_pipe(sc->bulkin_pipe);
688 1.28 augustss if (sc->intrin_pipe != NULL)
689 1.28 augustss usbd_abort_pipe(sc->intrin_pipe);
690 1.28 augustss
691 1.28 augustss #if 0
692 1.42 augustss /* Do we really need reference counting? Perhaps in ioctl() */
693 1.28 augustss s = splusb();
694 1.28 augustss if (--sc->sc_refcnt >= 0) {
695 1.28 augustss /* Wait for processes to go away. */
696 1.28 augustss usb_detach_wait(USBDEV(sc->sc_dev));
697 1.28 augustss }
698 1.28 augustss splx(s);
699 1.28 augustss #endif
700 1.28 augustss
701 1.56 augustss rv = umass_detach_bus(sc, flags);
702 1.56 augustss
703 1.28 augustss if (rv != 0)
704 1.28 augustss return (rv);
705 1.28 augustss
706 1.28 augustss umass_disco(sc);
707 1.28 augustss
708 1.28 augustss usbd_add_drv_event(USB_EVENT_DRIVER_DETACH, sc->sc_udev,
709 1.28 augustss USBDEV(sc->sc_dev));
710 1.28 augustss
711 1.28 augustss return (0);
712 1.28 augustss }
713 1.28 augustss
714 1.28 augustss Static void
715 1.38 augustss umass_disco(struct umass_softc *sc)
716 1.28 augustss {
717 1.28 augustss int i;
718 1.28 augustss
719 1.28 augustss DPRINTF(UDMASS_GEN, ("umass_disco\n"));
720 1.28 augustss
721 1.28 augustss /* Free the xfers. */
722 1.28 augustss for (i = 0; i < XFER_NR; i++)
723 1.28 augustss if (sc->transfer_xfer[i] != NULL) {
724 1.28 augustss usbd_free_xfer(sc->transfer_xfer[i]);
725 1.28 augustss sc->transfer_xfer[i] = NULL;
726 1.28 augustss }
727 1.28 augustss
728 1.28 augustss /* Remove all the pipes. */
729 1.28 augustss if (sc->bulkout_pipe != NULL)
730 1.28 augustss usbd_close_pipe(sc->bulkout_pipe);
731 1.28 augustss if (sc->bulkin_pipe != NULL)
732 1.28 augustss usbd_close_pipe(sc->bulkin_pipe);
733 1.28 augustss if (sc->intrin_pipe != NULL)
734 1.28 augustss usbd_close_pipe(sc->intrin_pipe);
735 1.28 augustss }
736 1.1 thorpej
737 1.28 augustss Static void
738 1.28 augustss umass_init_shuttle(struct umass_softc *sc)
739 1.1 thorpej {
740 1.28 augustss usb_device_request_t req;
741 1.28 augustss u_char status[2];
742 1.28 augustss
743 1.28 augustss /* The Linux driver does this */
744 1.28 augustss req.bmRequestType = UT_READ_VENDOR_DEVICE;
745 1.28 augustss req.bRequest = 1;
746 1.28 augustss USETW(req.wValue, 0);
747 1.28 augustss USETW(req.wIndex, sc->ifaceno);
748 1.28 augustss USETW(req.wLength, sizeof status);
749 1.28 augustss (void)usbd_do_request(sc->sc_udev, &req, &status);
750 1.28 augustss }
751 1.28 augustss
752 1.28 augustss /*
753 1.28 augustss * Generic functions to handle transfers
754 1.28 augustss */
755 1.9 thorpej
756 1.28 augustss Static usbd_status
757 1.28 augustss umass_setup_transfer(struct umass_softc *sc, usbd_pipe_handle pipe,
758 1.28 augustss void *buffer, int buflen, int flags,
759 1.28 augustss usbd_xfer_handle xfer)
760 1.28 augustss {
761 1.28 augustss usbd_status err;
762 1.9 thorpej
763 1.28 augustss if (sc->sc_dying)
764 1.28 augustss return (USBD_IOERROR);
765 1.18 augustss
766 1.28 augustss /* Initialiase a USB transfer and then schedule it */
767 1.18 augustss
768 1.28 augustss usbd_setup_xfer(xfer, pipe, (void *)sc, buffer, buflen,
769 1.28 augustss flags | sc->sc_xfer_flags, sc->timeout, sc->state);
770 1.18 augustss
771 1.28 augustss err = usbd_transfer(xfer);
772 1.28 augustss DPRINTF(UDMASS_XFER,("%s: start xfer buffer=%p buflen=%d flags=0x%x "
773 1.28 augustss "timeout=%d\n", USBDEVNAME(sc->sc_dev),
774 1.28 augustss buffer, buflen, flags | sc->sc_xfer_flags, sc->timeout));
775 1.28 augustss if (err && err != USBD_IN_PROGRESS) {
776 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: failed to setup transfer, %s\n",
777 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err)));
778 1.28 augustss return (err);
779 1.9 thorpej }
780 1.24 augustss
781 1.28 augustss return (USBD_NORMAL_COMPLETION);
782 1.1 thorpej }
783 1.1 thorpej
784 1.1 thorpej
785 1.28 augustss Static usbd_status
786 1.28 augustss umass_setup_ctrl_transfer(struct umass_softc *sc, usbd_device_handle dev,
787 1.28 augustss usb_device_request_t *req,
788 1.28 augustss void *buffer, int buflen, int flags,
789 1.28 augustss usbd_xfer_handle xfer)
790 1.1 thorpej {
791 1.1 thorpej usbd_status err;
792 1.1 thorpej
793 1.28 augustss if (sc->sc_dying)
794 1.28 augustss return (USBD_IOERROR);
795 1.1 thorpej
796 1.28 augustss /* Initialiase a USB control transfer and then schedule it */
797 1.1 thorpej
798 1.28 augustss usbd_setup_default_xfer(xfer, dev, (void *) sc,
799 1.28 augustss sc->timeout, req, buffer, buflen, flags, sc->state);
800 1.1 thorpej
801 1.28 augustss err = usbd_transfer(xfer);
802 1.28 augustss if (err && err != USBD_IN_PROGRESS) {
803 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: failed to setup ctrl transfer, %s\n",
804 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err)));
805 1.1 thorpej
806 1.28 augustss /* do not reset, as this would make us loop */
807 1.28 augustss return (err);
808 1.28 augustss }
809 1.1 thorpej
810 1.28 augustss return (USBD_NORMAL_COMPLETION);
811 1.1 thorpej }
812 1.1 thorpej
813 1.28 augustss Static void
814 1.28 augustss umass_clear_endpoint_stall(struct umass_softc *sc,
815 1.28 augustss u_int8_t endpt, usbd_pipe_handle pipe,
816 1.28 augustss int state, usbd_xfer_handle xfer)
817 1.7 thorpej {
818 1.7 thorpej usbd_device_handle dev;
819 1.15 thorpej
820 1.28 augustss if (sc->sc_dying)
821 1.28 augustss return;
822 1.1 thorpej
823 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: Clear endpoint 0x%02x stall\n",
824 1.28 augustss USBDEVNAME(sc->sc_dev), endpt));
825 1.7 thorpej
826 1.28 augustss usbd_interface2device_handle(sc->iface, &dev);
827 1.7 thorpej
828 1.28 augustss sc->transfer_state = state;
829 1.7 thorpej
830 1.28 augustss usbd_clear_endpoint_toggle(pipe);
831 1.7 thorpej
832 1.28 augustss sc->request.bmRequestType = UT_WRITE_ENDPOINT;
833 1.28 augustss sc->request.bRequest = UR_CLEAR_FEATURE;
834 1.28 augustss USETW(sc->request.wValue, UF_ENDPOINT_HALT);
835 1.28 augustss USETW(sc->request.wIndex, endpt);
836 1.28 augustss USETW(sc->request.wLength, 0);
837 1.28 augustss umass_setup_ctrl_transfer(sc, dev, &sc->request, NULL, 0, 0, xfer);
838 1.28 augustss }
839 1.15 thorpej
840 1.29 enami #if 0
841 1.28 augustss Static void
842 1.28 augustss umass_reset(struct umass_softc *sc, transfer_cb_f cb, void *priv)
843 1.28 augustss {
844 1.28 augustss sc->transfer_cb = cb;
845 1.28 augustss sc->transfer_priv = priv;
846 1.1 thorpej
847 1.28 augustss /* The reset is a forced reset, so no error (yet) */
848 1.28 augustss sc->reset(sc, STATUS_CMD_OK);
849 1.7 thorpej }
850 1.29 enami #endif
851 1.1 thorpej
852 1.28 augustss /*
853 1.28 augustss * Bulk protocol specific functions
854 1.28 augustss */
855 1.28 augustss
856 1.28 augustss Static void
857 1.28 augustss umass_bbb_reset(struct umass_softc *sc, int status)
858 1.1 thorpej {
859 1.1 thorpej usbd_device_handle dev;
860 1.28 augustss
861 1.28 augustss KASSERT(sc->proto & PROTO_BBB,
862 1.28 augustss ("sc->proto == 0x%02x wrong for umass_bbb_reset\n", sc->proto));
863 1.28 augustss
864 1.28 augustss if (sc->sc_dying)
865 1.28 augustss return;
866 1.1 thorpej
867 1.1 thorpej /*
868 1.1 thorpej * Reset recovery (5.3.4 in Universal Serial Bus Mass Storage Class)
869 1.1 thorpej *
870 1.1 thorpej * For Reset Recovery the host shall issue in the following order:
871 1.1 thorpej * a) a Bulk-Only Mass Storage Reset
872 1.1 thorpej * b) a Clear Feature HALT to the Bulk-In endpoint
873 1.1 thorpej * c) a Clear Feature HALT to the Bulk-Out endpoint
874 1.28 augustss *
875 1.28 augustss * This is done in 3 steps, states:
876 1.28 augustss * TSTATE_BBB_RESET1
877 1.28 augustss * TSTATE_BBB_RESET2
878 1.28 augustss * TSTATE_BBB_RESET3
879 1.28 augustss *
880 1.28 augustss * If the reset doesn't succeed, the device should be port reset.
881 1.1 thorpej */
882 1.1 thorpej
883 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: Bulk Reset\n",
884 1.1 thorpej USBDEVNAME(sc->sc_dev)));
885 1.28 augustss
886 1.28 augustss sc->transfer_state = TSTATE_BBB_RESET1;
887 1.28 augustss sc->transfer_status = status;
888 1.1 thorpej
889 1.28 augustss usbd_interface2device_handle(sc->iface, &dev);
890 1.1 thorpej
891 1.28 augustss /* reset is a class specific interface write */
892 1.28 augustss sc->request.bmRequestType = UT_WRITE_CLASS_INTERFACE;
893 1.28 augustss sc->request.bRequest = UR_BBB_RESET;
894 1.28 augustss USETW(sc->request.wValue, 0);
895 1.28 augustss USETW(sc->request.wIndex, sc->ifaceno);
896 1.28 augustss USETW(sc->request.wLength, 0);
897 1.28 augustss umass_setup_ctrl_transfer(sc, dev, &sc->request, NULL, 0, 0,
898 1.28 augustss sc->transfer_xfer[XFER_BBB_RESET1]);
899 1.28 augustss }
900 1.28 augustss
901 1.28 augustss Static void
902 1.28 augustss umass_bbb_transfer(struct umass_softc *sc, int lun, void *cmd, int cmdlen,
903 1.28 augustss void *data, int datalen, int dir,
904 1.28 augustss transfer_cb_f cb, void *priv)
905 1.28 augustss {
906 1.28 augustss static int dCBWtag = 42; /* unique for CBW of transfer */
907 1.1 thorpej
908 1.28 augustss DPRINTF(UDMASS_BBB,("%s: umass_bbb_transfer cmd=0x%02x\n",
909 1.28 augustss USBDEVNAME(sc->sc_dev), *(u_char*)cmd));
910 1.1 thorpej
911 1.28 augustss KASSERT(sc->proto & PROTO_BBB,
912 1.28 augustss ("sc->proto == 0x%02x wrong for umass_bbb_transfer\n",
913 1.28 augustss sc->proto));
914 1.1 thorpej
915 1.1 thorpej /*
916 1.28 augustss * Do a Bulk-Only transfer with cmdlen bytes from cmd, possibly
917 1.28 augustss * a data phase of datalen bytes from/to the device and finally a
918 1.28 augustss * csw read phase.
919 1.28 augustss * If the data direction was inbound a maximum of datalen bytes
920 1.28 augustss * is stored in the buffer pointed to by data.
921 1.28 augustss *
922 1.28 augustss * umass_bbb_transfer initialises the transfer and lets the state
923 1.28 augustss * machine in umass_bbb_state handle the completion. It uses the
924 1.28 augustss * following states:
925 1.28 augustss * TSTATE_BBB_COMMAND
926 1.28 augustss * -> TSTATE_BBB_DATA
927 1.28 augustss * -> TSTATE_BBB_STATUS
928 1.28 augustss * -> TSTATE_BBB_STATUS2
929 1.28 augustss * -> TSTATE_BBB_IDLE
930 1.28 augustss *
931 1.28 augustss * An error in any of those states will invoke
932 1.28 augustss * umass_bbb_reset.
933 1.1 thorpej */
934 1.1 thorpej
935 1.1 thorpej /* check the given arguments */
936 1.28 augustss KASSERT(datalen == 0 || data != NULL,
937 1.28 augustss ("%s: datalen > 0, but no buffer",USBDEVNAME(sc->sc_dev)));
938 1.28 augustss KASSERT(cmdlen <= CBWCDBLENGTH,
939 1.28 augustss ("%s: cmdlen exceeds CDB length in CBW (%d > %d)",
940 1.28 augustss USBDEVNAME(sc->sc_dev), cmdlen, CBWCDBLENGTH));
941 1.28 augustss KASSERT(dir == DIR_NONE || datalen > 0,
942 1.28 augustss ("%s: datalen == 0 while direction is not NONE\n",
943 1.1 thorpej USBDEVNAME(sc->sc_dev)));
944 1.28 augustss KASSERT(datalen == 0 || dir != DIR_NONE,
945 1.28 augustss ("%s: direction is NONE while datalen is not zero\n",
946 1.28 augustss USBDEVNAME(sc->sc_dev)));
947 1.28 augustss KASSERT(sizeof(umass_bbb_cbw_t) == UMASS_BBB_CBW_SIZE,
948 1.28 augustss ("%s: CBW struct does not have the right size (%d vs. %d)\n",
949 1.28 augustss USBDEVNAME(sc->sc_dev),
950 1.28 augustss sizeof(umass_bbb_cbw_t), UMASS_BBB_CBW_SIZE));
951 1.28 augustss KASSERT(sizeof(umass_bbb_csw_t) == UMASS_BBB_CSW_SIZE,
952 1.28 augustss ("%s: CSW struct does not have the right size (%d vs. %d)\n",
953 1.28 augustss USBDEVNAME(sc->sc_dev),
954 1.28 augustss sizeof(umass_bbb_csw_t), UMASS_BBB_CSW_SIZE));
955 1.1 thorpej
956 1.1 thorpej /*
957 1.28 augustss * Determine the direction of the data transfer and the length.
958 1.1 thorpej *
959 1.1 thorpej * dCBWDataTransferLength (datalen) :
960 1.1 thorpej * This field indicates the number of bytes of data that the host
961 1.1 thorpej * intends to transfer on the IN or OUT Bulk endpoint(as indicated by
962 1.1 thorpej * the Direction bit) during the execution of this command. If this
963 1.1 thorpej * field is set to 0, the device will expect that no data will be
964 1.1 thorpej * transferred IN or OUT during this command, regardless of the value
965 1.1 thorpej * of the Direction bit defined in dCBWFlags.
966 1.1 thorpej *
967 1.1 thorpej * dCBWFlags (dir) :
968 1.1 thorpej * The bits of the Flags field are defined as follows:
969 1.28 augustss * Bits 0-6 reserved
970 1.28 augustss * Bit 7 Direction - this bit shall be ignored if the
971 1.28 augustss * dCBWDataTransferLength field is zero.
972 1.28 augustss * 0 = data Out from host to device
973 1.28 augustss * 1 = data In from device to host
974 1.1 thorpej */
975 1.1 thorpej
976 1.28 augustss /* Fill in the Command Block Wrapper */
977 1.28 augustss USETDW(sc->cbw.dCBWSignature, CBWSIGNATURE);
978 1.28 augustss USETDW(sc->cbw.dCBWTag, dCBWtag);
979 1.28 augustss dCBWtag++; /* cannot be done in macro (it will be done 4 times) */
980 1.28 augustss USETDW(sc->cbw.dCBWDataTransferLength, datalen);
981 1.28 augustss /* DIR_NONE is treated as DIR_OUT (0x00) */
982 1.28 augustss sc->cbw.bCBWFlags = (dir == DIR_IN? CBWFLAGS_IN:CBWFLAGS_OUT);
983 1.28 augustss sc->cbw.bCBWLUN = lun;
984 1.28 augustss sc->cbw.bCDBLength = cmdlen;
985 1.28 augustss bcopy(cmd, sc->cbw.CBWCDB, cmdlen);
986 1.28 augustss
987 1.28 augustss DIF(UDMASS_BBB, umass_bbb_dump_cbw(sc, &sc->cbw));
988 1.28 augustss
989 1.28 augustss /* store the details for the data transfer phase */
990 1.28 augustss sc->transfer_dir = dir;
991 1.28 augustss sc->transfer_data = data;
992 1.28 augustss sc->transfer_datalen = datalen;
993 1.28 augustss sc->transfer_actlen = 0;
994 1.28 augustss sc->transfer_cb = cb;
995 1.28 augustss sc->transfer_priv = priv;
996 1.28 augustss sc->transfer_status = STATUS_CMD_OK;
997 1.1 thorpej
998 1.28 augustss /* move from idle to the command state */
999 1.28 augustss sc->transfer_state = TSTATE_BBB_COMMAND;
1000 1.1 thorpej
1001 1.1 thorpej /* Send the CBW from host to device via bulk-out endpoint. */
1002 1.28 augustss if (umass_setup_transfer(sc, sc->bulkout_pipe,
1003 1.28 augustss &sc->cbw, UMASS_BBB_CBW_SIZE, 0,
1004 1.28 augustss sc->transfer_xfer[XFER_BBB_CBW])) {
1005 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1006 1.1 thorpej }
1007 1.28 augustss }
1008 1.28 augustss
1009 1.1 thorpej
1010 1.28 augustss Static void
1011 1.28 augustss umass_bbb_state(usbd_xfer_handle xfer, usbd_private_handle priv,
1012 1.28 augustss usbd_status err)
1013 1.28 augustss {
1014 1.28 augustss struct umass_softc *sc = (struct umass_softc *) priv;
1015 1.28 augustss usbd_xfer_handle next_xfer;
1016 1.28 augustss
1017 1.28 augustss KASSERT(sc->proto & PROTO_BBB,
1018 1.28 augustss ("sc->proto == 0x%02x wrong for umass_bbb_state\n",sc->proto));
1019 1.28 augustss
1020 1.28 augustss if (sc->sc_dying)
1021 1.28 augustss return;
1022 1.1 thorpej
1023 1.1 thorpej /*
1024 1.28 augustss * State handling for BBB transfers.
1025 1.28 augustss *
1026 1.28 augustss * The subroutine is rather long. It steps through the states given in
1027 1.28 augustss * Annex A of the Bulk-Only specification.
1028 1.28 augustss * Each state first does the error handling of the previous transfer
1029 1.28 augustss * and then prepares the next transfer.
1030 1.28 augustss * Each transfer is done asynchroneously so after the request/transfer
1031 1.28 augustss * has been submitted you will find a 'return;'.
1032 1.1 thorpej */
1033 1.1 thorpej
1034 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: Handling BBB state %d (%s), xfer=%p, %s\n",
1035 1.28 augustss USBDEVNAME(sc->sc_dev), sc->transfer_state,
1036 1.28 augustss states[sc->transfer_state], xfer, usbd_errstr(err)));
1037 1.28 augustss
1038 1.28 augustss switch (sc->transfer_state) {
1039 1.28 augustss
1040 1.28 augustss /***** Bulk Transfer *****/
1041 1.28 augustss case TSTATE_BBB_COMMAND:
1042 1.28 augustss /* Command transport phase, error handling */
1043 1.28 augustss if (err) {
1044 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: failed to send CBW\n",
1045 1.28 augustss USBDEVNAME(sc->sc_dev)));
1046 1.28 augustss /* If the device detects that the CBW is invalid, then
1047 1.28 augustss * the device may STALL both bulk endpoints and require
1048 1.28 augustss * a Bulk-Reset
1049 1.28 augustss */
1050 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1051 1.28 augustss return;
1052 1.28 augustss }
1053 1.28 augustss
1054 1.28 augustss /* Data transport phase, setup transfer */
1055 1.28 augustss sc->transfer_state = TSTATE_BBB_DATA;
1056 1.28 augustss if (sc->transfer_dir == DIR_IN) {
1057 1.28 augustss if (umass_setup_transfer(sc, sc->bulkin_pipe,
1058 1.28 augustss sc->data_buffer, sc->transfer_datalen,
1059 1.28 augustss USBD_SHORT_XFER_OK | USBD_NO_COPY,
1060 1.28 augustss sc->transfer_xfer[XFER_BBB_DATA]))
1061 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1062 1.28 augustss
1063 1.28 augustss return;
1064 1.28 augustss } else if (sc->transfer_dir == DIR_OUT) {
1065 1.28 augustss memcpy(sc->data_buffer, sc->transfer_data,
1066 1.28 augustss sc->transfer_datalen);
1067 1.28 augustss if (umass_setup_transfer(sc, sc->bulkout_pipe,
1068 1.28 augustss sc->data_buffer, sc->transfer_datalen,
1069 1.28 augustss USBD_NO_COPY,/* fixed length transfer */
1070 1.28 augustss sc->transfer_xfer[XFER_BBB_DATA]))
1071 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1072 1.1 thorpej
1073 1.28 augustss return;
1074 1.28 augustss } else {
1075 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: no data phase\n",
1076 1.28 augustss USBDEVNAME(sc->sc_dev)));
1077 1.28 augustss }
1078 1.1 thorpej
1079 1.28 augustss /* FALLTHROUGH if no data phase, err == 0 */
1080 1.28 augustss case TSTATE_BBB_DATA:
1081 1.28 augustss /* Command transport phase, error handling (ignored if no data
1082 1.28 augustss * phase (fallthrough from previous state)) */
1083 1.28 augustss if (sc->transfer_dir != DIR_NONE) {
1084 1.28 augustss /* retrieve the length of the transfer that was done */
1085 1.28 augustss usbd_get_xfer_status(xfer, NULL, NULL,
1086 1.28 augustss &sc->transfer_actlen, NULL);
1087 1.28 augustss
1088 1.28 augustss if (err) {
1089 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: Data-%s %db failed, "
1090 1.28 augustss "%s\n", USBDEVNAME(sc->sc_dev),
1091 1.28 augustss (sc->transfer_dir == DIR_IN?"in":"out"),
1092 1.28 augustss sc->transfer_datalen,usbd_errstr(err)));
1093 1.28 augustss
1094 1.28 augustss if (err == USBD_STALLED) {
1095 1.28 augustss umass_clear_endpoint_stall(sc,
1096 1.28 augustss (sc->transfer_dir == DIR_IN?
1097 1.28 augustss sc->bulkin:sc->bulkout),
1098 1.28 augustss (sc->transfer_dir == DIR_IN?
1099 1.28 augustss sc->bulkin_pipe:sc->bulkout_pipe),
1100 1.28 augustss TSTATE_BBB_DCLEAR,
1101 1.28 augustss sc->transfer_xfer[XFER_BBB_DCLEAR]);
1102 1.28 augustss return;
1103 1.28 augustss } else {
1104 1.28 augustss /* Unless the error is a pipe stall the
1105 1.28 augustss * error is fatal.
1106 1.28 augustss */
1107 1.28 augustss umass_bbb_reset(sc,STATUS_WIRE_FAILED);
1108 1.28 augustss return;
1109 1.28 augustss }
1110 1.28 augustss }
1111 1.28 augustss }
1112 1.1 thorpej
1113 1.28 augustss if (sc->transfer_dir == DIR_IN)
1114 1.28 augustss memcpy(sc->transfer_data, sc->data_buffer,
1115 1.28 augustss sc->transfer_actlen);
1116 1.28 augustss
1117 1.28 augustss DIF(UDMASS_BBB, if (sc->transfer_dir == DIR_IN)
1118 1.28 augustss umass_dump_buffer(sc, sc->transfer_data,
1119 1.28 augustss sc->transfer_datalen, 48));
1120 1.28 augustss
1121 1.28 augustss /* FALLTHROUGH, err == 0 (no data phase or successfull) */
1122 1.28 augustss case TSTATE_BBB_DCLEAR: /* stall clear after data phase */
1123 1.28 augustss case TSTATE_BBB_SCLEAR: /* stall clear after status phase */
1124 1.28 augustss /* Reading of CSW after bulk stall condition in data phase
1125 1.28 augustss * (TSTATE_BBB_DATA2) or bulk-in stall condition after
1126 1.28 augustss * reading CSW (TSTATE_BBB_SCLEAR).
1127 1.28 augustss * In the case of no data phase or successfull data phase,
1128 1.28 augustss * err == 0 and the following if block is passed.
1129 1.28 augustss */
1130 1.28 augustss if (err) { /* should not occur */
1131 1.28 augustss /* try the transfer below, even if clear stall failed */
1132 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: bulk-%s stall clear failed"
1133 1.28 augustss ", %s\n", USBDEVNAME(sc->sc_dev),
1134 1.28 augustss (sc->transfer_dir == DIR_IN? "in":"out"),
1135 1.28 augustss usbd_errstr(err)));
1136 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1137 1.28 augustss return;
1138 1.28 augustss }
1139 1.28 augustss
1140 1.28 augustss /* Status transport phase, setup transfer */
1141 1.28 augustss if (sc->transfer_state == TSTATE_BBB_COMMAND ||
1142 1.28 augustss sc->transfer_state == TSTATE_BBB_DATA ||
1143 1.28 augustss sc->transfer_state == TSTATE_BBB_DCLEAR) {
1144 1.28 augustss /* After no data phase, successfull data phase and
1145 1.28 augustss * after clearing bulk-in/-out stall condition
1146 1.28 augustss */
1147 1.28 augustss sc->transfer_state = TSTATE_BBB_STATUS1;
1148 1.28 augustss next_xfer = sc->transfer_xfer[XFER_BBB_CSW1];
1149 1.28 augustss } else {
1150 1.28 augustss /* After first attempt of fetching CSW */
1151 1.28 augustss sc->transfer_state = TSTATE_BBB_STATUS2;
1152 1.28 augustss next_xfer = sc->transfer_xfer[XFER_BBB_CSW2];
1153 1.1 thorpej }
1154 1.1 thorpej
1155 1.28 augustss /* Read the Command Status Wrapper via bulk-in endpoint. */
1156 1.28 augustss if (umass_setup_transfer(sc, sc->bulkin_pipe,
1157 1.28 augustss &sc->csw, UMASS_BBB_CSW_SIZE, 0,
1158 1.28 augustss next_xfer)) {
1159 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1160 1.28 augustss return;
1161 1.28 augustss }
1162 1.1 thorpej
1163 1.28 augustss return;
1164 1.28 augustss case TSTATE_BBB_STATUS1: /* first attempt */
1165 1.28 augustss case TSTATE_BBB_STATUS2: /* second attempt */
1166 1.28 augustss /* Status transfer, error handling */
1167 1.1 thorpej if (err) {
1168 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: Failed to read CSW, %s%s\n",
1169 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err),
1170 1.28 augustss (sc->transfer_state == TSTATE_BBB_STATUS1?
1171 1.28 augustss ", retrying":"")));
1172 1.28 augustss
1173 1.28 augustss /* If this was the first attempt at fetching the CSW
1174 1.28 augustss * retry it, otherwise fail.
1175 1.28 augustss */
1176 1.28 augustss if (sc->transfer_state == TSTATE_BBB_STATUS1) {
1177 1.28 augustss umass_clear_endpoint_stall(sc,
1178 1.28 augustss sc->bulkin, sc->bulkin_pipe,
1179 1.28 augustss TSTATE_BBB_SCLEAR,
1180 1.28 augustss sc->transfer_xfer[XFER_BBB_SCLEAR]);
1181 1.28 augustss return;
1182 1.28 augustss } else {
1183 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1184 1.28 augustss return;
1185 1.28 augustss }
1186 1.28 augustss }
1187 1.28 augustss
1188 1.28 augustss DIF(UDMASS_BBB, umass_bbb_dump_csw(sc, &sc->csw));
1189 1.28 augustss
1190 1.28 augustss /* Check CSW and handle any error */
1191 1.28 augustss if (UGETDW(sc->csw.dCSWSignature) != CSWSIGNATURE) {
1192 1.28 augustss /* Invalid CSW: Wrong signature or wrong tag might
1193 1.28 augustss * indicate that the device is confused -> reset it.
1194 1.28 augustss */
1195 1.28 augustss printf("%s: Invalid CSW: sig 0x%08x should be 0x%08x\n",
1196 1.28 augustss USBDEVNAME(sc->sc_dev),
1197 1.28 augustss UGETDW(sc->csw.dCSWSignature),
1198 1.28 augustss CSWSIGNATURE);
1199 1.28 augustss
1200 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1201 1.28 augustss return;
1202 1.28 augustss } else if (UGETDW(sc->csw.dCSWTag)
1203 1.28 augustss != UGETDW(sc->cbw.dCBWTag)) {
1204 1.28 augustss printf("%s: Invalid CSW: tag %d should be %d\n",
1205 1.28 augustss USBDEVNAME(sc->sc_dev),
1206 1.28 augustss UGETDW(sc->csw.dCSWTag),
1207 1.28 augustss UGETDW(sc->cbw.dCBWTag));
1208 1.28 augustss
1209 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1210 1.28 augustss return;
1211 1.28 augustss
1212 1.28 augustss /* CSW is valid here */
1213 1.28 augustss } else if (sc->csw.bCSWStatus > CSWSTATUS_PHASE) {
1214 1.28 augustss printf("%s: Invalid CSW: status %d > %d\n",
1215 1.28 augustss USBDEVNAME(sc->sc_dev),
1216 1.28 augustss sc->csw.bCSWStatus,
1217 1.28 augustss CSWSTATUS_PHASE);
1218 1.28 augustss
1219 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1220 1.28 augustss return;
1221 1.28 augustss } else if (sc->csw.bCSWStatus == CSWSTATUS_PHASE) {
1222 1.28 augustss printf("%s: Phase Error, residue = %d\n",
1223 1.28 augustss USBDEVNAME(sc->sc_dev),
1224 1.28 augustss UGETDW(sc->csw.dCSWDataResidue));
1225 1.28 augustss
1226 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1227 1.28 augustss return;
1228 1.28 augustss
1229 1.28 augustss } else if (sc->transfer_actlen > sc->transfer_datalen) {
1230 1.28 augustss /* Buffer overrun! Don't let this go by unnoticed */
1231 1.28 augustss panic("%s: transferred %d bytes instead of %d bytes\n",
1232 1.28 augustss USBDEVNAME(sc->sc_dev),
1233 1.28 augustss sc->transfer_actlen, sc->transfer_datalen);
1234 1.28 augustss } else if (sc->transfer_datalen - sc->transfer_actlen
1235 1.28 augustss != UGETDW(sc->csw.dCSWDataResidue)) {
1236 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: actlen=%d != residue=%d\n",
1237 1.1 thorpej USBDEVNAME(sc->sc_dev),
1238 1.28 augustss sc->transfer_datalen - sc->transfer_actlen,
1239 1.28 augustss UGETDW(sc->csw.dCSWDataResidue)));
1240 1.28 augustss
1241 1.28 augustss umass_bbb_reset(sc, STATUS_WIRE_FAILED);
1242 1.28 augustss return;
1243 1.28 augustss
1244 1.28 augustss } else if (sc->csw.bCSWStatus == CSWSTATUS_FAILED) {
1245 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: Command Failed, res = %d\n",
1246 1.1 thorpej USBDEVNAME(sc->sc_dev),
1247 1.28 augustss UGETDW(sc->csw.dCSWDataResidue)));
1248 1.28 augustss
1249 1.28 augustss /* SCSI command failed but transfer was succesful */
1250 1.28 augustss sc->transfer_state = TSTATE_IDLE;
1251 1.28 augustss sc->transfer_cb(sc, sc->transfer_priv,
1252 1.28 augustss UGETDW(sc->csw.dCSWDataResidue),
1253 1.28 augustss STATUS_CMD_FAILED);
1254 1.28 augustss
1255 1.28 augustss return;
1256 1.28 augustss
1257 1.28 augustss } else { /* success */
1258 1.28 augustss sc->transfer_state = TSTATE_IDLE;
1259 1.28 augustss sc->transfer_cb(sc, sc->transfer_priv,
1260 1.28 augustss UGETDW(sc->csw.dCSWDataResidue),
1261 1.28 augustss STATUS_CMD_OK);
1262 1.28 augustss
1263 1.28 augustss return;
1264 1.1 thorpej }
1265 1.1 thorpej
1266 1.28 augustss /***** Bulk Reset *****/
1267 1.28 augustss case TSTATE_BBB_RESET1:
1268 1.28 augustss if (err)
1269 1.28 augustss printf("%s: BBB reset failed, %s\n",
1270 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err));
1271 1.28 augustss
1272 1.28 augustss umass_clear_endpoint_stall(sc,
1273 1.28 augustss sc->bulkin, sc->bulkin_pipe, TSTATE_BBB_RESET2,
1274 1.28 augustss sc->transfer_xfer[XFER_BBB_RESET2]);
1275 1.28 augustss
1276 1.28 augustss return;
1277 1.28 augustss case TSTATE_BBB_RESET2:
1278 1.28 augustss if (err) /* should not occur */
1279 1.28 augustss printf("%s: BBB bulk-in clear stall failed, %s\n",
1280 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err));
1281 1.28 augustss /* no error recovery, otherwise we end up in a loop */
1282 1.28 augustss
1283 1.28 augustss umass_clear_endpoint_stall(sc,
1284 1.28 augustss sc->bulkout, sc->bulkout_pipe, TSTATE_BBB_RESET3,
1285 1.28 augustss sc->transfer_xfer[XFER_BBB_RESET3]);
1286 1.28 augustss
1287 1.28 augustss return;
1288 1.28 augustss case TSTATE_BBB_RESET3:
1289 1.28 augustss if (err) /* should not occur */
1290 1.28 augustss printf("%s: BBB bulk-out clear stall failed, %s\n",
1291 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err));
1292 1.28 augustss /* no error recovery, otherwise we end up in a loop */
1293 1.28 augustss
1294 1.28 augustss sc->transfer_state = TSTATE_IDLE;
1295 1.28 augustss if (sc->transfer_priv) {
1296 1.28 augustss sc->transfer_cb(sc, sc->transfer_priv,
1297 1.28 augustss sc->transfer_datalen,
1298 1.28 augustss sc->transfer_status);
1299 1.28 augustss }
1300 1.1 thorpej
1301 1.28 augustss return;
1302 1.1 thorpej
1303 1.28 augustss /***** Default *****/
1304 1.28 augustss default:
1305 1.28 augustss panic("%s: Unknown state %d\n",
1306 1.28 augustss USBDEVNAME(sc->sc_dev), sc->transfer_state);
1307 1.28 augustss }
1308 1.1 thorpej }
1309 1.1 thorpej
1310 1.1 thorpej /*
1311 1.28 augustss * Command/Bulk/Interrupt (CBI) specific functions
1312 1.1 thorpej */
1313 1.1 thorpej
1314 1.28 augustss Static int
1315 1.28 augustss umass_cbi_adsc(struct umass_softc *sc, char *buffer, int buflen,
1316 1.28 augustss usbd_xfer_handle xfer)
1317 1.1 thorpej {
1318 1.28 augustss usbd_device_handle dev;
1319 1.28 augustss
1320 1.28 augustss KASSERT(sc->proto & (PROTO_CBI|PROTO_CBI_I),
1321 1.28 augustss ("sc->proto == 0x%02x wrong for umass_cbi_adsc\n",sc->proto));
1322 1.28 augustss
1323 1.28 augustss usbd_interface2device_handle(sc->iface, &dev);
1324 1.28 augustss
1325 1.28 augustss sc->request.bmRequestType = UT_WRITE_CLASS_INTERFACE;
1326 1.28 augustss sc->request.bRequest = UR_CBI_ADSC;
1327 1.28 augustss USETW(sc->request.wValue, 0);
1328 1.28 augustss USETW(sc->request.wIndex, sc->ifaceno);
1329 1.28 augustss USETW(sc->request.wLength, buflen);
1330 1.28 augustss return umass_setup_ctrl_transfer(sc, dev, &sc->request, buffer,
1331 1.28 augustss buflen, 0, xfer);
1332 1.28 augustss }
1333 1.28 augustss
1334 1.1 thorpej
1335 1.28 augustss Static void
1336 1.28 augustss umass_cbi_reset(struct umass_softc *sc, int status)
1337 1.28 augustss {
1338 1.28 augustss int i;
1339 1.28 augustss # define SEND_DIAGNOSTIC_CMDLEN 12
1340 1.1 thorpej
1341 1.28 augustss KASSERT(sc->proto & (PROTO_CBI|PROTO_CBI_I),
1342 1.28 augustss ("sc->proto == 0x%02x wrong for umass_cbi_reset\n",sc->proto));
1343 1.15 thorpej
1344 1.28 augustss if (sc->sc_dying)
1345 1.28 augustss return;
1346 1.28 augustss
1347 1.28 augustss /*
1348 1.28 augustss * Command Block Reset Protocol
1349 1.28 augustss *
1350 1.28 augustss * First send a reset request to the device. Then clear
1351 1.28 augustss * any possibly stalled bulk endpoints.
1352 1.28 augustss
1353 1.28 augustss * This is done in 3 steps, states:
1354 1.28 augustss * TSTATE_CBI_RESET1
1355 1.28 augustss * TSTATE_CBI_RESET2
1356 1.28 augustss * TSTATE_CBI_RESET3
1357 1.28 augustss *
1358 1.28 augustss * If the reset doesn't succeed, the device should be port reset.
1359 1.28 augustss */
1360 1.28 augustss
1361 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: CBI Reset\n",
1362 1.28 augustss USBDEVNAME(sc->sc_dev)));
1363 1.28 augustss
1364 1.28 augustss KASSERT(sizeof(sc->cbl) >= SEND_DIAGNOSTIC_CMDLEN,
1365 1.28 augustss ("%s: CBL struct is too small (%d < %d)\n",
1366 1.28 augustss USBDEVNAME(sc->sc_dev),
1367 1.28 augustss sizeof(sc->cbl), SEND_DIAGNOSTIC_CMDLEN));
1368 1.28 augustss
1369 1.28 augustss sc->transfer_state = TSTATE_CBI_RESET1;
1370 1.28 augustss sc->transfer_status = status;
1371 1.28 augustss
1372 1.28 augustss /* The 0x1d code is the SEND DIAGNOSTIC command. To distingiush between
1373 1.28 augustss * the two the last 10 bytes of the cbl is filled with 0xff (section
1374 1.28 augustss * 2.2 of the CBI spec).
1375 1.28 augustss */
1376 1.28 augustss sc->cbl[0] = 0x1d; /* Command Block Reset */
1377 1.28 augustss sc->cbl[1] = 0x04;
1378 1.28 augustss for (i = 2; i < SEND_DIAGNOSTIC_CMDLEN; i++)
1379 1.28 augustss sc->cbl[i] = 0xff;
1380 1.28 augustss
1381 1.28 augustss umass_cbi_adsc(sc, sc->cbl, SEND_DIAGNOSTIC_CMDLEN,
1382 1.28 augustss sc->transfer_xfer[XFER_CBI_RESET1]);
1383 1.28 augustss /* XXX if the command fails we should reset the port on the bub */
1384 1.28 augustss }
1385 1.28 augustss
1386 1.28 augustss Static void
1387 1.28 augustss umass_cbi_transfer(struct umass_softc *sc, int lun,
1388 1.28 augustss void *cmd, int cmdlen, void *data, int datalen, int dir,
1389 1.28 augustss transfer_cb_f cb, void *priv)
1390 1.28 augustss {
1391 1.28 augustss DPRINTF(UDMASS_CBI,("%s: umass_cbi_transfer cmd=0x%02x, len=%d\n",
1392 1.28 augustss USBDEVNAME(sc->sc_dev), *(u_char*)cmd, datalen));
1393 1.28 augustss
1394 1.28 augustss KASSERT(sc->proto & (PROTO_CBI|PROTO_CBI_I),
1395 1.28 augustss ("sc->proto == 0x%02x wrong for umass_cbi_transfer\n",
1396 1.28 augustss sc->proto));
1397 1.28 augustss
1398 1.28 augustss if (sc->sc_dying)
1399 1.28 augustss return;
1400 1.28 augustss
1401 1.28 augustss /*
1402 1.28 augustss * Do a CBI transfer with cmdlen bytes from cmd, possibly
1403 1.28 augustss * a data phase of datalen bytes from/to the device and finally a
1404 1.28 augustss * csw read phase.
1405 1.28 augustss * If the data direction was inbound a maximum of datalen bytes
1406 1.28 augustss * is stored in the buffer pointed to by data.
1407 1.28 augustss *
1408 1.28 augustss * umass_cbi_transfer initialises the transfer and lets the state
1409 1.28 augustss * machine in umass_cbi_state handle the completion. It uses the
1410 1.28 augustss * following states:
1411 1.28 augustss * TSTATE_CBI_COMMAND
1412 1.28 augustss * -> XXX fill in
1413 1.28 augustss *
1414 1.28 augustss * An error in any of those states will invoke
1415 1.28 augustss * umass_cbi_reset.
1416 1.28 augustss */
1417 1.28 augustss
1418 1.28 augustss /* check the given arguments */
1419 1.28 augustss KASSERT(datalen == 0 || data != NULL,
1420 1.28 augustss ("%s: datalen > 0, but no buffer",USBDEVNAME(sc->sc_dev)));
1421 1.28 augustss KASSERT(datalen == 0 || dir != DIR_NONE,
1422 1.28 augustss ("%s: direction is NONE while datalen is not zero\n",
1423 1.28 augustss USBDEVNAME(sc->sc_dev)));
1424 1.28 augustss
1425 1.28 augustss /* store the details for the data transfer phase */
1426 1.28 augustss sc->transfer_dir = dir;
1427 1.28 augustss sc->transfer_data = data;
1428 1.28 augustss sc->transfer_datalen = datalen;
1429 1.28 augustss sc->transfer_actlen = 0;
1430 1.28 augustss sc->transfer_cb = cb;
1431 1.28 augustss sc->transfer_priv = priv;
1432 1.28 augustss sc->transfer_status = STATUS_CMD_OK;
1433 1.28 augustss
1434 1.28 augustss /* move from idle to the command state */
1435 1.28 augustss sc->transfer_state = TSTATE_CBI_COMMAND;
1436 1.28 augustss
1437 1.28 augustss /* Send the Command Block from host to device via control endpoint. */
1438 1.28 augustss if (umass_cbi_adsc(sc, cmd, cmdlen, sc->transfer_xfer[XFER_CBI_CB]))
1439 1.28 augustss umass_cbi_reset(sc, STATUS_WIRE_FAILED);
1440 1.28 augustss }
1441 1.28 augustss
1442 1.28 augustss Static void
1443 1.28 augustss umass_cbi_state(usbd_xfer_handle xfer, usbd_private_handle priv,
1444 1.28 augustss usbd_status err)
1445 1.28 augustss {
1446 1.28 augustss struct umass_softc *sc = (struct umass_softc *) priv;
1447 1.28 augustss
1448 1.28 augustss KASSERT(sc->proto & (PROTO_CBI|PROTO_CBI_I),
1449 1.28 augustss ("sc->proto == 0x%02x wrong for umass_cbi_state\n", sc->proto));
1450 1.28 augustss
1451 1.28 augustss if (sc->sc_dying)
1452 1.28 augustss return;
1453 1.28 augustss
1454 1.28 augustss /*
1455 1.28 augustss * State handling for CBI transfers.
1456 1.28 augustss */
1457 1.28 augustss
1458 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: Handling CBI state %d (%s), xfer=%p, %s\n",
1459 1.28 augustss USBDEVNAME(sc->sc_dev), sc->transfer_state,
1460 1.28 augustss states[sc->transfer_state], xfer, usbd_errstr(err)));
1461 1.28 augustss
1462 1.28 augustss switch (sc->transfer_state) {
1463 1.28 augustss
1464 1.28 augustss /***** CBI Transfer *****/
1465 1.28 augustss case TSTATE_CBI_COMMAND:
1466 1.28 augustss if (err == USBD_STALLED) {
1467 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: Command Transport failed\n",
1468 1.28 augustss USBDEVNAME(sc->sc_dev)));
1469 1.28 augustss /* Status transport by control pipe (section 2.3.2.1).
1470 1.28 augustss * The command contained in the command block failed.
1471 1.28 augustss *
1472 1.28 augustss * The control pipe has already been unstalled by the
1473 1.28 augustss * USB stack.
1474 1.28 augustss * Section 2.4.3.1.1 states that the bulk in endpoints
1475 1.28 augustss * should not stalled at this point.
1476 1.28 augustss */
1477 1.28 augustss
1478 1.28 augustss sc->transfer_state = TSTATE_IDLE;
1479 1.28 augustss sc->transfer_cb(sc, sc->transfer_priv,
1480 1.28 augustss sc->transfer_datalen,
1481 1.28 augustss STATUS_CMD_FAILED);
1482 1.28 augustss
1483 1.28 augustss return;
1484 1.28 augustss } else if (err) {
1485 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: failed to send ADSC\n",
1486 1.28 augustss USBDEVNAME(sc->sc_dev)));
1487 1.28 augustss umass_cbi_reset(sc, STATUS_WIRE_FAILED);
1488 1.28 augustss
1489 1.28 augustss return;
1490 1.28 augustss }
1491 1.28 augustss
1492 1.28 augustss sc->transfer_state = TSTATE_CBI_DATA;
1493 1.28 augustss if (sc->transfer_dir == DIR_IN) {
1494 1.28 augustss if (umass_setup_transfer(sc, sc->bulkin_pipe,
1495 1.28 augustss sc->transfer_data, sc->transfer_datalen,
1496 1.28 augustss USBD_SHORT_XFER_OK | USBD_NO_COPY,
1497 1.28 augustss sc->transfer_xfer[XFER_CBI_DATA]))
1498 1.28 augustss umass_cbi_reset(sc, STATUS_WIRE_FAILED);
1499 1.28 augustss
1500 1.28 augustss } else if (sc->transfer_dir == DIR_OUT) {
1501 1.28 augustss memcpy(sc->data_buffer, sc->transfer_data,
1502 1.28 augustss sc->transfer_datalen);
1503 1.28 augustss if (umass_setup_transfer(sc, sc->bulkout_pipe,
1504 1.28 augustss sc->transfer_data, sc->transfer_datalen,
1505 1.28 augustss USBD_NO_COPY,/* fixed length transfer */
1506 1.28 augustss sc->transfer_xfer[XFER_CBI_DATA]))
1507 1.28 augustss umass_cbi_reset(sc, STATUS_WIRE_FAILED);
1508 1.28 augustss
1509 1.28 augustss } else if (sc->proto & PROTO_CBI_I) {
1510 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: no data phase\n",
1511 1.28 augustss USBDEVNAME(sc->sc_dev)));
1512 1.28 augustss sc->transfer_state = TSTATE_CBI_STATUS;
1513 1.28 augustss if (umass_setup_transfer(sc, sc->intrin_pipe,
1514 1.28 augustss &sc->sbl, sizeof(sc->sbl),
1515 1.28 augustss 0, /* fixed length transfer */
1516 1.28 augustss sc->transfer_xfer[XFER_CBI_STATUS])){
1517 1.28 augustss umass_cbi_reset(sc, STATUS_WIRE_FAILED);
1518 1.28 augustss }
1519 1.28 augustss } else {
1520 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: no data phase\n",
1521 1.28 augustss USBDEVNAME(sc->sc_dev)));
1522 1.28 augustss /* No command completion interrupt. Request
1523 1.28 augustss * sense data.
1524 1.28 augustss */
1525 1.28 augustss sc->transfer_state = TSTATE_IDLE;
1526 1.28 augustss sc->transfer_cb(sc, sc->transfer_priv,
1527 1.28 augustss 0, STATUS_CMD_UNKNOWN);
1528 1.28 augustss }
1529 1.28 augustss
1530 1.28 augustss return;
1531 1.28 augustss
1532 1.28 augustss case TSTATE_CBI_DATA:
1533 1.28 augustss /* retrieve the length of the transfer that was done */
1534 1.28 augustss usbd_get_xfer_status(xfer,NULL,NULL,&sc->transfer_actlen,NULL);
1535 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: CBI_DATA actlen=%d\n",
1536 1.28 augustss USBDEVNAME(sc->sc_dev), sc->transfer_actlen));
1537 1.28 augustss
1538 1.28 augustss if (err) {
1539 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: Data-%s %db failed, "
1540 1.28 augustss "%s\n", USBDEVNAME(sc->sc_dev),
1541 1.28 augustss (sc->transfer_dir == DIR_IN?"in":"out"),
1542 1.28 augustss sc->transfer_datalen,usbd_errstr(err)));
1543 1.28 augustss
1544 1.28 augustss if (err == USBD_STALLED) {
1545 1.28 augustss umass_clear_endpoint_stall(sc,
1546 1.28 augustss sc->bulkin, sc->bulkin_pipe,
1547 1.28 augustss TSTATE_CBI_DCLEAR,
1548 1.28 augustss sc->transfer_xfer[XFER_CBI_DCLEAR]);
1549 1.28 augustss } else {
1550 1.28 augustss umass_cbi_reset(sc, STATUS_WIRE_FAILED);
1551 1.28 augustss }
1552 1.28 augustss return;
1553 1.28 augustss }
1554 1.28 augustss
1555 1.28 augustss if (sc->transfer_dir == DIR_IN)
1556 1.28 augustss memcpy(sc->transfer_data, sc->data_buffer,
1557 1.28 augustss sc->transfer_actlen);
1558 1.28 augustss
1559 1.28 augustss DIF(UDMASS_CBI, if (sc->transfer_dir == DIR_IN)
1560 1.28 augustss umass_dump_buffer(sc, sc->transfer_data,
1561 1.28 augustss sc->transfer_actlen, 48));
1562 1.28 augustss
1563 1.28 augustss if (sc->proto & PROTO_CBI_I) {
1564 1.28 augustss sc->transfer_state = TSTATE_CBI_STATUS;
1565 1.28 augustss memset(&sc->sbl, 0, sizeof(sc->sbl));
1566 1.28 augustss if (umass_setup_transfer(sc, sc->intrin_pipe,
1567 1.28 augustss &sc->sbl, sizeof(sc->sbl),
1568 1.28 augustss 0, /* fixed length transfer */
1569 1.28 augustss sc->transfer_xfer[XFER_CBI_STATUS])){
1570 1.28 augustss umass_cbi_reset(sc, STATUS_WIRE_FAILED);
1571 1.28 augustss }
1572 1.28 augustss } else {
1573 1.28 augustss /* No command completion interrupt. Request
1574 1.28 augustss * sense to get status of command.
1575 1.28 augustss */
1576 1.28 augustss sc->transfer_state = TSTATE_IDLE;
1577 1.28 augustss sc->transfer_cb(sc, sc->transfer_priv,
1578 1.28 augustss sc->transfer_datalen - sc->transfer_actlen,
1579 1.28 augustss STATUS_CMD_UNKNOWN);
1580 1.28 augustss }
1581 1.28 augustss return;
1582 1.28 augustss
1583 1.28 augustss case TSTATE_CBI_STATUS:
1584 1.28 augustss if (err) {
1585 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: Status Transport failed\n",
1586 1.28 augustss USBDEVNAME(sc->sc_dev)));
1587 1.28 augustss /* Status transport by interrupt pipe (section 2.3.2.2).
1588 1.28 augustss */
1589 1.28 augustss
1590 1.28 augustss if (err == USBD_STALLED) {
1591 1.28 augustss umass_clear_endpoint_stall(sc,
1592 1.28 augustss sc->intrin, sc->intrin_pipe,
1593 1.28 augustss TSTATE_CBI_SCLEAR,
1594 1.28 augustss sc->transfer_xfer[XFER_CBI_SCLEAR]);
1595 1.28 augustss } else {
1596 1.28 augustss umass_cbi_reset(sc, STATUS_WIRE_FAILED);
1597 1.28 augustss }
1598 1.28 augustss return;
1599 1.28 augustss }
1600 1.28 augustss
1601 1.28 augustss /* Dissect the information in the buffer */
1602 1.28 augustss
1603 1.28 augustss if (sc->proto & PROTO_UFI) {
1604 1.28 augustss int status;
1605 1.28 augustss
1606 1.28 augustss /* Section 3.4.3.1.3 specifies that the UFI command
1607 1.28 augustss * protocol returns an ASC and ASCQ in the interrupt
1608 1.28 augustss * data block.
1609 1.28 augustss */
1610 1.28 augustss
1611 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: UFI CCI, ASC = 0x%02x, "
1612 1.28 augustss "ASCQ = 0x%02x\n",
1613 1.28 augustss USBDEVNAME(sc->sc_dev),
1614 1.28 augustss sc->sbl.ufi.asc, sc->sbl.ufi.ascq));
1615 1.28 augustss
1616 1.28 augustss if (sc->sbl.ufi.asc == 0 && sc->sbl.ufi.ascq == 0)
1617 1.28 augustss status = STATUS_CMD_OK;
1618 1.28 augustss else
1619 1.28 augustss status = STATUS_CMD_FAILED;
1620 1.28 augustss
1621 1.28 augustss /* No sense, command successfull */
1622 1.28 augustss } else {
1623 1.28 augustss /* Command Interrupt Data Block */
1624 1.28 augustss DPRINTF(UDMASS_CBI, ("%s: type=0x%02x, value=0x%02x\n",
1625 1.28 augustss USBDEVNAME(sc->sc_dev),
1626 1.28 augustss sc->sbl.common.type, sc->sbl.common.value));
1627 1.28 augustss
1628 1.28 augustss if (sc->sbl.common.type == IDB_TYPE_CCI) {
1629 1.28 augustss int err;
1630 1.28 augustss
1631 1.28 augustss if ((sc->sbl.common.value&IDB_VALUE_STATUS_MASK)
1632 1.28 augustss == IDB_VALUE_PASS) {
1633 1.28 augustss err = STATUS_CMD_OK;
1634 1.28 augustss } else if ((sc->sbl.common.value & IDB_VALUE_STATUS_MASK)
1635 1.28 augustss == IDB_VALUE_FAIL ||
1636 1.28 augustss (sc->sbl.common.value & IDB_VALUE_STATUS_MASK)
1637 1.28 augustss == IDB_VALUE_PERSISTENT) {
1638 1.28 augustss err = STATUS_CMD_FAILED;
1639 1.28 augustss } else {
1640 1.28 augustss err = STATUS_WIRE_FAILED;
1641 1.28 augustss }
1642 1.28 augustss
1643 1.28 augustss sc->transfer_state = TSTATE_IDLE;
1644 1.28 augustss sc->transfer_cb(sc, sc->transfer_priv,
1645 1.28 augustss sc->transfer_datalen,
1646 1.28 augustss err);
1647 1.28 augustss }
1648 1.28 augustss }
1649 1.28 augustss return;
1650 1.28 augustss
1651 1.28 augustss case TSTATE_CBI_DCLEAR:
1652 1.28 augustss if (err) { /* should not occur */
1653 1.28 augustss printf("%s: CBI bulk-in/out stall clear failed, %s\n",
1654 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err));
1655 1.28 augustss umass_cbi_reset(sc, STATUS_WIRE_FAILED);
1656 1.28 augustss }
1657 1.28 augustss
1658 1.28 augustss sc->transfer_state = TSTATE_IDLE;
1659 1.28 augustss sc->transfer_cb(sc, sc->transfer_priv,
1660 1.28 augustss sc->transfer_datalen,
1661 1.28 augustss STATUS_CMD_FAILED);
1662 1.28 augustss return;
1663 1.28 augustss
1664 1.28 augustss case TSTATE_CBI_SCLEAR:
1665 1.28 augustss if (err) /* should not occur */
1666 1.28 augustss printf("%s: CBI intr-in stall clear failed, %s\n",
1667 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err));
1668 1.28 augustss
1669 1.28 augustss /* Something really bad is going on. Reset the device */
1670 1.28 augustss umass_cbi_reset(sc, STATUS_CMD_FAILED);
1671 1.28 augustss return;
1672 1.28 augustss
1673 1.28 augustss /***** CBI Reset *****/
1674 1.28 augustss case TSTATE_CBI_RESET1:
1675 1.28 augustss if (err)
1676 1.28 augustss printf("%s: CBI reset failed, %s\n",
1677 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err));
1678 1.28 augustss
1679 1.28 augustss umass_clear_endpoint_stall(sc,
1680 1.28 augustss sc->bulkin, sc->bulkin_pipe, TSTATE_CBI_RESET2,
1681 1.28 augustss sc->transfer_xfer[XFER_CBI_RESET2]);
1682 1.28 augustss
1683 1.28 augustss return;
1684 1.28 augustss case TSTATE_CBI_RESET2:
1685 1.28 augustss if (err) /* should not occur */
1686 1.28 augustss printf("%s: CBI bulk-in stall clear failed, %s\n",
1687 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err));
1688 1.28 augustss /* no error recovery, otherwise we end up in a loop */
1689 1.28 augustss
1690 1.28 augustss umass_clear_endpoint_stall(sc,
1691 1.28 augustss sc->bulkout, sc->bulkout_pipe, TSTATE_CBI_RESET3,
1692 1.28 augustss sc->transfer_xfer[XFER_CBI_RESET3]);
1693 1.28 augustss
1694 1.28 augustss return;
1695 1.28 augustss case TSTATE_CBI_RESET3:
1696 1.28 augustss if (err) /* should not occur */
1697 1.28 augustss printf("%s: CBI bulk-out stall clear failed, %s\n",
1698 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err));
1699 1.28 augustss /* no error recovery, otherwise we end up in a loop */
1700 1.28 augustss
1701 1.28 augustss sc->transfer_state = TSTATE_IDLE;
1702 1.28 augustss if (sc->transfer_priv) {
1703 1.28 augustss sc->transfer_cb(sc, sc->transfer_priv,
1704 1.28 augustss sc->transfer_datalen,
1705 1.28 augustss sc->transfer_status);
1706 1.28 augustss }
1707 1.28 augustss
1708 1.28 augustss return;
1709 1.28 augustss
1710 1.28 augustss
1711 1.28 augustss /***** Default *****/
1712 1.28 augustss default:
1713 1.28 augustss panic("%s: Unknown state %d\n",
1714 1.28 augustss USBDEVNAME(sc->sc_dev), sc->transfer_state);
1715 1.28 augustss }
1716 1.28 augustss }
1717 1.28 augustss
1718 1.28 augustss usbd_status
1719 1.28 augustss umass_bbb_get_max_lun(struct umass_softc *sc, u_int8_t *maxlun)
1720 1.28 augustss {
1721 1.28 augustss usbd_device_handle dev;
1722 1.28 augustss usb_device_request_t req;
1723 1.28 augustss usbd_status err;
1724 1.28 augustss usb_interface_descriptor_t *id;
1725 1.28 augustss
1726 1.28 augustss *maxlun = 0; /* Default to 0. */
1727 1.28 augustss
1728 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: Get Max Lun\n", USBDEVNAME(sc->sc_dev)));
1729 1.28 augustss
1730 1.28 augustss usbd_interface2device_handle(sc->iface, &dev);
1731 1.28 augustss id = usbd_get_interface_descriptor(sc->iface);
1732 1.28 augustss
1733 1.28 augustss /* The Get Max Lun command is a class-specific request. */
1734 1.28 augustss req.bmRequestType = UT_READ_CLASS_INTERFACE;
1735 1.28 augustss req.bRequest = UR_BBB_GET_MAX_LUN;
1736 1.28 augustss USETW(req.wValue, 0);
1737 1.28 augustss USETW(req.wIndex, id->bInterfaceNumber);
1738 1.28 augustss USETW(req.wLength, 1);
1739 1.28 augustss
1740 1.28 augustss err = usbd_do_request(dev, &req, maxlun);
1741 1.28 augustss switch (err) {
1742 1.28 augustss case USBD_NORMAL_COMPLETION:
1743 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: Max Lun %d\n",
1744 1.28 augustss USBDEVNAME(sc->sc_dev), *maxlun));
1745 1.28 augustss break;
1746 1.28 augustss
1747 1.28 augustss case USBD_STALLED:
1748 1.28 augustss /*
1749 1.28 augustss * Device doesn't support Get Max Lun request.
1750 1.28 augustss */
1751 1.28 augustss err = USBD_NORMAL_COMPLETION;
1752 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: Get Max Lun not supported\n",
1753 1.28 augustss USBDEVNAME(sc->sc_dev)));
1754 1.28 augustss break;
1755 1.28 augustss
1756 1.28 augustss case USBD_SHORT_XFER:
1757 1.28 augustss /*
1758 1.28 augustss * XXX This must mean Get Max Lun is not supported, too!
1759 1.28 augustss */
1760 1.28 augustss err = USBD_NORMAL_COMPLETION;
1761 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: Get Max Lun SHORT_XFER\n",
1762 1.28 augustss USBDEVNAME(sc->sc_dev)));
1763 1.28 augustss break;
1764 1.28 augustss
1765 1.28 augustss default:
1766 1.28 augustss printf("%s: Get Max Lun failed: %s\n",
1767 1.28 augustss USBDEVNAME(sc->sc_dev), usbd_errstr(err));
1768 1.28 augustss /* XXX Should we port_reset the device? */
1769 1.28 augustss break;
1770 1.28 augustss }
1771 1.28 augustss
1772 1.28 augustss return (err);
1773 1.28 augustss }
1774 1.28 augustss
1775 1.28 augustss
1776 1.28 augustss
1777 1.28 augustss
1778 1.28 augustss #ifdef UMASS_DEBUG
1779 1.28 augustss Static void
1780 1.28 augustss umass_bbb_dump_cbw(struct umass_softc *sc, umass_bbb_cbw_t *cbw)
1781 1.28 augustss {
1782 1.28 augustss int clen = cbw->bCDBLength;
1783 1.28 augustss int dlen = UGETDW(cbw->dCBWDataTransferLength);
1784 1.28 augustss u_int8_t *c = cbw->CBWCDB;
1785 1.28 augustss int tag = UGETDW(cbw->dCBWTag);
1786 1.28 augustss int flags = cbw->bCBWFlags;
1787 1.28 augustss
1788 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: CBW %d: cmd = %db "
1789 1.28 augustss "(0x%02x%02x%02x%02x%02x%02x%s), "
1790 1.28 augustss "data = %d bytes, dir = %s\n",
1791 1.28 augustss USBDEVNAME(sc->sc_dev), tag, clen,
1792 1.28 augustss c[0], c[1], c[2], c[3], c[4], c[5], (clen > 6? "...":""),
1793 1.28 augustss dlen, (flags == CBWFLAGS_IN? "in":
1794 1.28 augustss (flags == CBWFLAGS_OUT? "out":"<invalid>"))));
1795 1.28 augustss }
1796 1.28 augustss
1797 1.28 augustss Static void
1798 1.28 augustss umass_bbb_dump_csw(struct umass_softc *sc, umass_bbb_csw_t *csw)
1799 1.28 augustss {
1800 1.28 augustss int sig = UGETDW(csw->dCSWSignature);
1801 1.28 augustss int tag = UGETW(csw->dCSWTag);
1802 1.28 augustss int res = UGETDW(csw->dCSWDataResidue);
1803 1.28 augustss int status = csw->bCSWStatus;
1804 1.28 augustss
1805 1.28 augustss DPRINTF(UDMASS_BBB, ("%s: CSW %d: sig = 0x%08x (%s), tag = %d, "
1806 1.28 augustss "res = %d, status = 0x%02x (%s)\n", USBDEVNAME(sc->sc_dev),
1807 1.28 augustss tag, sig, (sig == CSWSIGNATURE? "valid":"invalid"),
1808 1.28 augustss tag, res,
1809 1.28 augustss status, (status == CSWSTATUS_GOOD? "good":
1810 1.28 augustss (status == CSWSTATUS_FAILED? "failed":
1811 1.28 augustss (status == CSWSTATUS_PHASE? "phase":"<invalid>")))));
1812 1.28 augustss }
1813 1.28 augustss
1814 1.28 augustss Static void
1815 1.28 augustss umass_dump_buffer(struct umass_softc *sc, u_int8_t *buffer, int buflen,
1816 1.28 augustss int printlen)
1817 1.28 augustss {
1818 1.28 augustss int i, j;
1819 1.28 augustss char s1[40];
1820 1.28 augustss char s2[40];
1821 1.28 augustss char s3[5];
1822 1.28 augustss
1823 1.28 augustss s1[0] = '\0';
1824 1.28 augustss s3[0] = '\0';
1825 1.28 augustss
1826 1.28 augustss sprintf(s2, " buffer=%p, buflen=%d", buffer, buflen);
1827 1.28 augustss for (i = 0; i < buflen && i < printlen; i++) {
1828 1.28 augustss j = i % 16;
1829 1.28 augustss if (j == 0 && i != 0) {
1830 1.28 augustss DPRINTF(UDMASS_GEN, ("%s: 0x %s%s\n",
1831 1.28 augustss USBDEVNAME(sc->sc_dev), s1, s2));
1832 1.28 augustss s2[0] = '\0';
1833 1.28 augustss }
1834 1.28 augustss sprintf(&s1[j*2], "%02x", buffer[i] & 0xff);
1835 1.28 augustss }
1836 1.28 augustss if (buflen > printlen)
1837 1.28 augustss sprintf(s3, " ...");
1838 1.28 augustss DPRINTF(UDMASS_GEN, ("%s: 0x %s%s%s\n",
1839 1.28 augustss USBDEVNAME(sc->sc_dev), s1, s2, s3));
1840 1.28 augustss }
1841 1.28 augustss #endif
1842