1 /*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21 /*
22 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 * Use is subject to license terms.
24 */
25
26
27 /*
28 * EHCI Host Controller Driver (EHCI)
29 *
30 * The EHCI driver is a software driver which interfaces to the Universal
31 * Serial Bus layer (USBA) and the Host Controller (HC). The interface to
32 * the Host Controller is defined by the EHCI Host Controller Interface.
33 *
34 * This module contains the EHCI driver interrupt code, which handles all
35 * Checking of status of USB transfers, error recovery and callbacks.
36 */
37
38 #include <sys/usb/hcd/ehci/ehcid.h>
39 #include <sys/usb/hcd/ehci/ehci_xfer.h>
40 #include <sys/usb/hcd/ehci/ehci_util.h>
41
42 /*
43 * EHCI Interrupt Handling functions.
44 */
45 void ehci_handle_ue(ehci_state_t *ehcip);
46 void ehci_handle_frame_list_rollover(
47 ehci_state_t *ehcip);
48 void ehci_handle_endpoint_reclaimation(
49 ehci_state_t *ehcip);
50 void ehci_traverse_active_qtd_list(
51 ehci_state_t *ehcip);
52 static ehci_qtd_t *ehci_create_done_qtd_list(
53 ehci_state_t *ehcip);
54 static usb_cr_t ehci_parse_error(
55 ehci_state_t *ehcip,
56 ehci_qtd_t *qtd);
57 usb_cr_t ehci_check_for_error(
58 ehci_state_t *ehcip,
59 ehci_pipe_private_t *pp,
60 ehci_trans_wrapper_t *tw,
61 ehci_qtd_t *qtd,
62 uint_t ctrl);
63 static usb_cr_t ehci_check_for_short_xfer(
64 ehci_state_t *ehcip,
65 ehci_pipe_private_t *pp,
66 ehci_trans_wrapper_t *tw,
67 ehci_qtd_t *qtd);
68 void ehci_handle_error(
69 ehci_state_t *ehcip,
70 ehci_qtd_t *qtd,
71 usb_cr_t error);
72 static void ehci_cleanup_data_underrun(
73 ehci_state_t *ehcip,
74 ehci_trans_wrapper_t *tw,
75 ehci_qtd_t *qtd);
76 static void ehci_handle_normal_qtd(
77 ehci_state_t *ehcip,
78 ehci_qtd_t *qtd,
79 ehci_trans_wrapper_t *tw);
80 void ehci_handle_ctrl_qtd(
81 ehci_state_t *ehcip,
82 ehci_pipe_private_t *pp,
83 ehci_trans_wrapper_t *tw,
84 ehci_qtd_t *qtd,
85 void *);
86 void ehci_handle_bulk_qtd(
87 ehci_state_t *ehcip,
88 ehci_pipe_private_t *pp,
89 ehci_trans_wrapper_t *tw,
90 ehci_qtd_t *qtd,
91 void *);
92 void ehci_handle_intr_qtd(
93 ehci_state_t *ehcip,
94 ehci_pipe_private_t *pp,
95 ehci_trans_wrapper_t *tw,
96 ehci_qtd_t *qtd,
97 void *);
98 static void ehci_handle_one_xfer_completion(
99 ehci_state_t *ehcip,
100 ehci_trans_wrapper_t *tw);
101 static void ehci_sendup_qtd_message(
102 ehci_state_t *ehcip,
103 ehci_pipe_private_t *pp,
104 ehci_trans_wrapper_t *tw,
105 ehci_qtd_t *qtd,
106 usb_cr_t error);
107
108
109 /*
110 * Interrupt Handling functions
111 */
112
113 /*
114 * ehci_handle_ue:
115 *
116 * Handling of Unrecoverable Error interrupt (UE).
117 */
118 void
ehci_handle_ue(ehci_state_t * ehcip)119 ehci_handle_ue(ehci_state_t *ehcip)
120 {
121 usb_frame_number_t before_frame_number, after_frame_number;
122
123 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
124
125 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
126 "ehci_handle_ue: Handling of UE interrupt");
127
128 /*
129 * First check whether current UE error occurred due to USB or
130 * due to some other subsystem. This can be verified by reading
131 * usb frame numbers before & after a delay of few milliseconds.
132 * If usb frame number read after delay is greater than the one
133 * read before delay, then, USB subsystem is fine. In this case,
134 * disable UE error interrupt and return without shutdowning the
135 * USB subsystem.
136 *
137 * Otherwise, if usb frame number read after delay is less than
138 * or equal to one read before the delay, then, current UE error
139 * occurred from USB subsystem. In this case,go ahead with actual
140 * UE error recovery procedure.
141 *
142 * Get the current usb frame number before waiting for few
143 * milliseconds.
144 */
145 before_frame_number = ehci_get_current_frame_number(ehcip);
146
147 /* Wait for few milliseconds */
148 drv_usecwait(EHCI_TIMEWAIT);
149
150 /*
151 * Get the current usb frame number after waiting for
152 * milliseconds.
153 */
154 after_frame_number = ehci_get_current_frame_number(ehcip);
155
156 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
157 "ehci_handle_ue: Before Frame Number 0x%llx "
158 "After Frame Number 0x%llx",
159 (unsigned long long)before_frame_number,
160 (unsigned long long)after_frame_number);
161
162 if (after_frame_number > before_frame_number) {
163
164 /* Disable UE interrupt */
165 Set_OpReg(ehci_interrupt, (Get_OpReg(ehci_interrupt) &
166 ~EHCI_INTR_HOST_SYSTEM_ERROR));
167
168 return;
169 }
170
171 /*
172 * This UE is due to USB hardware error. Reset ehci controller
173 * and reprogram to bring it back to functional state.
174 */
175 if ((ehci_do_soft_reset(ehcip)) != USB_SUCCESS) {
176
177 USB_DPRINTF_L0(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
178 "Unrecoverable USB Hardware Error");
179
180 /* Disable UE interrupt */
181 Set_OpReg(ehci_interrupt, (Get_OpReg(ehci_interrupt) &
182 ~EHCI_INTR_HOST_SYSTEM_ERROR));
183
184 /* Route all Root hub ports to Classic host controller */
185 Set_OpReg(ehci_config_flag, EHCI_CONFIG_FLAG_CLASSIC);
186
187 /* Set host controller soft state to error */
188 ehcip->ehci_hc_soft_state = EHCI_CTLR_ERROR_STATE;
189 }
190 }
191
192
193 /*
194 * ehci_handle_frame_list_rollover:
195 *
196 * Update software based usb frame number part on every frame number
197 * overflow interrupt.
198 *
199 * Refer ehci spec 1.0, section 2.3.2, page 21 for more details.
200 *
201 * NOTE: This function is also called from POLLED MODE.
202 */
203 void
ehci_handle_frame_list_rollover(ehci_state_t * ehcip)204 ehci_handle_frame_list_rollover(ehci_state_t *ehcip)
205 {
206 ehcip->ehci_fno += (0x4000 -
207 (((Get_OpReg(ehci_frame_index) & 0x3FFF) ^
208 ehcip->ehci_fno) & 0x2000));
209
210 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
211 "ehci_handle_frame_list_rollover:"
212 "Frame Number Higher Part 0x%llx\n",
213 (unsigned long long)(ehcip->ehci_fno));
214 }
215
216
217 /*
218 * ehci_handle_endpoint_reclamation:
219 *
220 * Reclamation of Host Controller (HC) Endpoint Descriptors (QH).
221 */
222 void
ehci_handle_endpoint_reclaimation(ehci_state_t * ehcip)223 ehci_handle_endpoint_reclaimation(ehci_state_t *ehcip)
224 {
225 usb_frame_number_t current_frame_number;
226 usb_frame_number_t endpoint_frame_number;
227 ehci_qh_t *reclaim_qh;
228
229 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
230 "ehci_handle_endpoint_reclamation:");
231
232 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
233
234 current_frame_number = ehci_get_current_frame_number(ehcip);
235
236 /*
237 * Deallocate all Endpoint Descriptors (QH) which are on the
238 * reclamation list. These QH's are already removed from the
239 * interrupt lattice tree.
240 */
241 while (ehcip->ehci_reclaim_list) {
242
243 reclaim_qh = ehcip->ehci_reclaim_list;
244
245 endpoint_frame_number = (usb_frame_number_t)(uintptr_t)
246 (EHCI_LOOKUP_ID(Get_QH(reclaim_qh->qh_reclaim_frame)));
247
248 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
249 "ehci_handle_endpoint_reclamation:"
250 "current frame number 0x%llx endpoint frame number 0x%llx",
251 (unsigned long long)current_frame_number,
252 (unsigned long long)endpoint_frame_number);
253
254 /*
255 * Deallocate current endpoint only if endpoint's usb frame
256 * number is less than or equal to current usb frame number.
257 *
258 * If endpoint's usb frame number is greater than the current
259 * usb frame number, ignore rest of the endpoints in the list
260 * since rest of the endpoints are inserted into the reclaim
261 * list later than the current reclaim endpoint.
262 */
263 if (endpoint_frame_number > current_frame_number) {
264 break;
265 }
266
267 /* Get the next endpoint from the rec. list */
268 ehcip->ehci_reclaim_list = ehci_qh_iommu_to_cpu(
269 ehcip, Get_QH(reclaim_qh->qh_reclaim_next));
270
271 /* Free 32bit ID */
272 EHCI_FREE_ID((uint32_t)Get_QH(reclaim_qh->qh_reclaim_frame));
273
274 /* Deallocate the endpoint */
275 ehci_deallocate_qh(ehcip, reclaim_qh);
276 }
277 }
278
279
280 /*
281 * ehci_traverse_active_qtd_list:
282 */
283 void
ehci_traverse_active_qtd_list(ehci_state_t * ehcip)284 ehci_traverse_active_qtd_list(
285 ehci_state_t *ehcip)
286 {
287 uint_t state; /* QTD state */
288 ehci_qtd_t *curr_qtd = NULL; /* QTD pointers */
289 ehci_qtd_t *next_qtd = NULL; /* QTD pointers */
290 usb_cr_t error; /* Error from QTD */
291 ehci_trans_wrapper_t *tw = NULL; /* Transfer wrapper */
292 ehci_pipe_private_t *pp = NULL; /* Pipe private field */
293
294 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
295 "ehci_traverse_active_qtd_list:");
296
297 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
298
299 /* Sync QH and QTD pool */
300 Sync_QH_QTD_Pool(ehcip);
301
302 /* Create done qtd list */
303 curr_qtd = ehci_create_done_qtd_list(ehcip);
304
305 /* Traverse the list of transfer descriptors */
306 while (curr_qtd) {
307 /* Get next qtd from the active qtd list */
308 next_qtd = ehci_qtd_iommu_to_cpu(ehcip,
309 Get_QTD(curr_qtd->qtd_active_qtd_next));
310
311 /* Check for QTD state */
312 state = Get_QTD(curr_qtd->qtd_state);
313
314 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
315 "ehci_traverse_active_qtd_list:\n\t"
316 "curr_qtd = 0x%p state = 0x%x", (void *)curr_qtd, state);
317
318 /* Obtain the transfer wrapper for this QTD */
319 tw = (ehci_trans_wrapper_t *)EHCI_LOOKUP_ID(
320 (uint32_t)Get_QTD(curr_qtd->qtd_trans_wrapper));
321
322 ASSERT(tw != NULL);
323
324 pp = tw->tw_pipe_private;
325
326 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
327 "ehci_traverse_active_qtd_list: "
328 "PP = 0x%p TW = 0x%p", (void *)pp, (void *)tw);
329
330 /*
331 * A QTD that is marked as RECLAIM has already been
332 * processed by QTD timeout handler & client driver
333 * has been informed through exception callback.
334 */
335 if (state != EHCI_QTD_RECLAIM) {
336 /* Look at the error status */
337 error = ehci_parse_error(ehcip, curr_qtd);
338
339 if (error == USB_CR_OK) {
340 ehci_handle_normal_qtd(ehcip, curr_qtd, tw);
341 } else {
342 /* handle the error condition */
343 ehci_handle_error(ehcip, curr_qtd, error);
344 }
345 } else {
346 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
347 "ehci_traverse_active_qtd_list: "
348 "QTD State = %d", state);
349 }
350
351 /* Deallocate this transfer descriptor */
352 ehci_deallocate_qtd(ehcip, curr_qtd);
353
354 /*
355 * Deallocate the transfer wrapper if there are no more
356 * QTD's for the transfer wrapper. ehci_deallocate_tw()
357 * will not deallocate the tw for a periodic endpoint
358 * since it will always have a QTD attached to it.
359 */
360 ehci_deallocate_tw(ehcip, pp, tw);
361
362 curr_qtd = next_qtd;
363 }
364 }
365
366
367 /*
368 * ehci_create_done_qtd_list:
369 *
370 * Create done qtd list from active qtd list.
371 */
372 ehci_qtd_t *
ehci_create_done_qtd_list(ehci_state_t * ehcip)373 ehci_create_done_qtd_list(
374 ehci_state_t *ehcip)
375 {
376 ehci_qtd_t *curr_qtd = NULL, *next_qtd = NULL;
377 ehci_qtd_t *done_qtd_list = NULL, *last_done_qtd = NULL;
378
379 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
380 "ehci_create_done_qtd_list:");
381
382 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
383
384 curr_qtd = ehcip->ehci_active_qtd_list;
385
386 while (curr_qtd) {
387
388 /* Get next qtd from the active qtd list */
389 next_qtd = ehci_qtd_iommu_to_cpu(ehcip,
390 Get_QTD(curr_qtd->qtd_active_qtd_next));
391
392 /* Check this QTD has been processed by Host Controller */
393 if (!(Get_QTD(curr_qtd->qtd_ctrl) &
394 EHCI_QTD_CTRL_ACTIVE_XACT)) {
395
396 /* Remove this QTD from active QTD list */
397 ehci_remove_qtd_from_active_qtd_list(ehcip, curr_qtd);
398
399 Set_QTD(curr_qtd->qtd_active_qtd_next, 0);
400
401 if (last_done_qtd != NULL) {
402 Set_QTD(last_done_qtd->qtd_active_qtd_next,
403 ehci_qtd_cpu_to_iommu(ehcip, curr_qtd));
404 } else {
405 done_qtd_list = curr_qtd;
406 }
407 last_done_qtd = curr_qtd;
408 }
409
410 curr_qtd = next_qtd;
411 }
412
413 return (done_qtd_list);
414 }
415
416
417 /*
418 * ehci_parse_error:
419 *
420 * Parse the result for any errors.
421 */
422 static usb_cr_t
ehci_parse_error(ehci_state_t * ehcip,ehci_qtd_t * qtd)423 ehci_parse_error(
424 ehci_state_t *ehcip,
425 ehci_qtd_t *qtd)
426 {
427 uint_t ctrl;
428 ehci_trans_wrapper_t *tw;
429 ehci_pipe_private_t *pp;
430 uint_t flag;
431 usb_cr_t error;
432
433 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
434 "ehci_parse_error:");
435
436 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
437
438 ASSERT(qtd != NULL);
439
440 /* Obtain the transfer wrapper from the QTD */
441 tw = (ehci_trans_wrapper_t *)
442 EHCI_LOOKUP_ID((uint32_t)Get_QTD(qtd->qtd_trans_wrapper));
443
444 ASSERT(tw != NULL);
445
446 /* Obtain the pipe private structure */
447 pp = tw->tw_pipe_private;
448
449 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
450 "ehci_parse_error: PP 0x%p TW 0x%p", (void *)pp, (void *)tw);
451
452 ctrl = (uint_t)Get_QTD(qtd->qtd_ctrl);
453
454 /*
455 * Check the condition code of completed QTD and report errors
456 * if any. This checking will be done both for the general and
457 * the isochronous QTDs.
458 */
459 if ((error = ehci_check_for_error(ehcip, pp, tw, qtd, ctrl)) !=
460 USB_CR_OK) {
461 flag = EHCI_REMOVE_XFER_ALWAYS;
462 } else {
463 flag = EHCI_REMOVE_XFER_IFLAST;
464 }
465
466 /* Stop the transfer timer */
467 ehci_stop_xfer_timer(ehcip, tw, flag);
468
469 return (error);
470 }
471
472
473 /*
474 * ehci_check_for_error:
475 *
476 * Check for any errors.
477 *
478 * NOTE: This function is also called from POLLED MODE.
479 */
480 usb_cr_t
ehci_check_for_error(ehci_state_t * ehcip,ehci_pipe_private_t * pp,ehci_trans_wrapper_t * tw,ehci_qtd_t * qtd,uint_t ctrl)481 ehci_check_for_error(
482 ehci_state_t *ehcip,
483 ehci_pipe_private_t *pp,
484 ehci_trans_wrapper_t *tw,
485 ehci_qtd_t *qtd,
486 uint_t ctrl)
487 {
488 usb_cr_t error = USB_CR_OK;
489 uint_t status, speed, mask;
490
491 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
492 "ehci_check_for_error: qtd = 0x%p ctrl = 0x%x",
493 (void *)qtd, ctrl);
494
495 /*
496 * Find the usb device speed and get the corresponding
497 * error status mask.
498 */
499 speed = Get_QH(pp->pp_qh->qh_ctrl) & EHCI_QH_CTRL_ED_SPEED;
500 mask = (speed == EHCI_QH_CTRL_ED_HIGH_SPEED)?
501 EHCI_QTD_CTRL_HS_XACT_STATUS : EHCI_QTD_CTRL_NON_HS_XACT_STATUS;
502
503 /* Exclude halted transaction error condition */
504 status = ctrl & EHCI_QTD_CTRL_XACT_STATUS & ~EHCI_QTD_CTRL_HALTED_XACT;
505
506 switch (status & mask) {
507 case EHCI_QTD_CTRL_NO_ERROR:
508 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
509 "ehci_check_for_error: No Error");
510 error = USB_CR_OK;
511 break;
512 case EHCI_QTD_CTRL_ACTIVE_XACT:
513 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
514 "ehci_check_for_error: Not accessed");
515 error = USB_CR_NOT_ACCESSED;
516 break;
517 case EHCI_QTD_CTRL_HALTED_XACT:
518 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
519 "ehci_check_for_error: Halted");
520 error = USB_CR_STALL;
521 break;
522 case EHCI_QTD_CTRL_BABBLE_DETECTED:
523 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
524 "ehci_check_for_error: Babble Detected");
525 error = USB_CR_DATA_OVERRUN;
526 break;
527 case EHCI_QTD_CTRL_XACT_ERROR:
528 /*
529 * An xacterr bit of one is not necessarily an error,
530 * the transaction might have completed successfully
531 * after some retries.
532 *
533 * Try to detect the case when the queue is halted,
534 * because the error counter was decremented from one
535 * down to zero after a transaction error.
536 */
537 if (ctrl & EHCI_QTD_CTRL_HALTED_XACT && (ctrl &
538 EHCI_QTD_CTRL_ERR_COUNT_MASK) == 0) {
539 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
540 "ehci_check_for_error: Transaction Error");
541 error = USB_CR_DEV_NOT_RESP;
542 } else {
543 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
544 "ehci_check_for_error: No Error");
545 error = USB_CR_OK;
546 }
547 break;
548 case EHCI_QTD_CTRL_DATA_BUFFER_ERROR:
549 /*
550 * Data buffer error is not necessarily an error,
551 * the transaction might have completed successfully
552 * after some retries. It can be ignored if the
553 * queue is not halted.
554 */
555 if (!(ctrl & EHCI_QTD_CTRL_HALTED_XACT)) {
556 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
557 "ehci_check_for_error: Data buffer overrun or "
558 "underrun ignored");
559 error = USB_CR_OK;
560 break;
561 }
562
563 if (tw->tw_direction == EHCI_QTD_CTRL_IN_PID) {
564 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
565 "ehci_check_for_error: Buffer Overrun");
566 error = USB_CR_BUFFER_OVERRUN;
567 } else {
568 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
569 "ehci_check_for_error: Buffer Underrun");
570 error = USB_CR_BUFFER_UNDERRUN;
571 }
572 break;
573 case EHCI_QTD_CTRL_MISSED_uFRAME:
574 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
575 "ehci_check_for_error: Missed uFrame");
576 error = USB_CR_NOT_ACCESSED;
577 break;
578 case EHCI_QTD_CTRL_PRD_SPLIT_XACT_ERR:
579 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
580 "ehci_check_for_error: Periodic split-transaction "
581 "receives an error handshake");
582 error = USB_CR_UNSPECIFIED_ERR;
583 break;
584 default:
585 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
586 "ehci_check_for_error: Unspecified Error");
587 error = USB_CR_UNSPECIFIED_ERR;
588 break;
589 }
590
591 /*
592 * Check for halted transaction error condition.
593 * Under short xfer conditions, EHCI HC will not return an error
594 * or halt the QH. This is done manually later in
595 * ehci_check_for_short_xfer.
596 */
597 if ((ctrl & EHCI_QTD_CTRL_HALTED_XACT) && (error == USB_CR_OK)) {
598 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
599 "ehci_check_for_error: Halted");
600 error = USB_CR_STALL;
601 }
602
603 if (error == USB_CR_OK) {
604 error = ehci_check_for_short_xfer(ehcip, pp, tw, qtd);
605 }
606
607 if (error) {
608 uint_t qh_ctrl = Get_QH(pp->pp_qh->qh_ctrl);
609
610 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
611 "ehci_check_for_error: Error %d Device address %d "
612 "Endpoint number %d", error,
613 (qh_ctrl & EHCI_QH_CTRL_DEVICE_ADDRESS),
614 ((qh_ctrl & EHCI_QH_CTRL_ED_NUMBER) >>
615 EHCI_QH_CTRL_ED_NUMBER_SHIFT));
616 }
617
618 return (error);
619 }
620
621 /*
622 * ehci_check_for_short_xfer:
623 *
624 * Check to see if there was a short xfer condition.
625 *
626 * NOTE: This function is also called from POLLED MODE.
627 * But it doesn't do anything.
628 */
629 static usb_cr_t
ehci_check_for_short_xfer(ehci_state_t * ehcip,ehci_pipe_private_t * pp,ehci_trans_wrapper_t * tw,ehci_qtd_t * qtd)630 ehci_check_for_short_xfer(
631 ehci_state_t *ehcip,
632 ehci_pipe_private_t *pp,
633 ehci_trans_wrapper_t *tw,
634 ehci_qtd_t *qtd)
635 {
636 usb_cr_t error = USB_CR_OK;
637 usb_ep_descr_t *eptd;
638 uchar_t attributes;
639 uint32_t residue = 0;
640 usb_req_attrs_t xfer_attrs;
641 size_t length;
642 mblk_t *mp = NULL;
643 usb_opaque_t xfer_reqp;
644
645 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
646 "ehci_check_for_short_xfer:");
647
648 if (pp->pp_flag == EHCI_POLLED_MODE_FLAG) {
649
650 return (error);
651 }
652
653 /*
654 * Check for short xfer error. If this is a control pipe, only check
655 * if it is in the data phase.
656 */
657 eptd = &pp->pp_pipe_handle->p_ep;
658 attributes = eptd->bmAttributes & USB_EP_ATTR_MASK;
659
660 switch (attributes) {
661 case USB_EP_ATTR_CONTROL:
662 if (Get_QTD(qtd->qtd_ctrl_phase) !=
663 EHCI_CTRL_DATA_PHASE) {
664
665 break;
666 }
667 /* FALLTHROUGH */
668 case USB_EP_ATTR_BULK:
669 case USB_EP_ATTR_INTR:
670 /*
671 * If "Total bytes of xfer" in control field of
672 * Transfer Descriptor (QTD) is not equal to zero,
673 * then, we sent/received less data from the usb
674 * device than requested. In that case, get the
675 * actual received data size.
676 */
677 residue = (Get_QTD(qtd->qtd_ctrl) &
678 EHCI_QTD_CTRL_BYTES_TO_XFER) >>
679 EHCI_QTD_CTRL_BYTES_TO_XFER_SHIFT;
680
681 break;
682 case USB_EP_ATTR_ISOCH:
683
684 break;
685 }
686
687 if (residue) {
688 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
689 "ehci_check_for_short_xfer: residue=%d direction=0x%x",
690 residue, tw->tw_direction);
691
692 length = Get_QTD(qtd->qtd_xfer_offs) +
693 Get_QTD(qtd->qtd_xfer_len) - residue;
694
695 if (tw->tw_direction == EHCI_QTD_CTRL_IN_PID) {
696 xfer_attrs = ehci_get_xfer_attrs(ehcip, pp, tw);
697
698 if (xfer_attrs & USB_ATTRS_SHORT_XFER_OK) {
699 ehci_cleanup_data_underrun(ehcip, tw, qtd);
700 } else {
701 /* Halt the pipe to mirror OHCI behavior */
702 Set_QH(pp->pp_qh->qh_status,
703 ((Get_QH(pp->pp_qh->qh_status) &
704 ~EHCI_QH_STS_ACTIVE) |
705 EHCI_QH_STS_HALTED));
706 error = USB_CR_DATA_UNDERRUN;
707 }
708
709 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
710 "ehci_check_for_short_xfer: requested data=%lu "
711 "received data=%lu", tw->tw_length, length);
712
713 switch (attributes) {
714 case USB_EP_ATTR_CONTROL:
715 case USB_EP_ATTR_BULK:
716 case USB_EP_ATTR_INTR:
717 /* Save the actual received length */
718 tw->tw_length = length;
719
720 break;
721 case USB_EP_ATTR_ISOCH:
722 default:
723
724 break;
725 }
726 } else {
727 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
728 "ehci_check_for_short_xfer: requested data=%lu "
729 "sent data=%lu", tw->tw_length, length);
730
731 xfer_reqp = tw->tw_curr_xfer_reqp;
732
733 switch (attributes) {
734 case USB_EP_ATTR_CONTROL:
735
736 break;
737 case USB_EP_ATTR_BULK:
738 mp = (mblk_t *)((usb_bulk_req_t *)
739 (xfer_reqp))->bulk_data;
740
741 /* Increment the read pointer */
742 mp->b_rptr = mp->b_rptr + length;
743
744 break;
745 case USB_EP_ATTR_INTR:
746 mp = (mblk_t *)((usb_intr_req_t *)
747 (xfer_reqp))->intr_data;
748
749 /* Increment the read pointer */
750 mp->b_rptr = mp->b_rptr + length;
751
752 break;
753 case USB_EP_ATTR_ISOCH:
754 default:
755
756 break;
757 }
758 }
759 }
760
761 return (error);
762 }
763
764 /*
765 * ehci_handle_error:
766 *
767 * Inform USBA about occurred transaction errors by calling the USBA callback
768 * routine.
769 */
770 void
ehci_handle_error(ehci_state_t * ehcip,ehci_qtd_t * qtd,usb_cr_t error)771 ehci_handle_error(
772 ehci_state_t *ehcip,
773 ehci_qtd_t *qtd,
774 usb_cr_t error)
775 {
776 ehci_trans_wrapper_t *tw;
777 usba_pipe_handle_data_t *ph;
778 ehci_pipe_private_t *pp;
779 ehci_qtd_t *tw_qtd = qtd;
780 uchar_t attributes;
781 usb_intr_req_t *curr_intr_reqp;
782
783 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
784 "ehci_handle_error: error = 0x%x", error);
785
786 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
787
788 ASSERT(qtd != NULL);
789
790 /* Print the values in the qtd */
791 ehci_print_qtd(ehcip, qtd);
792
793 /* Obtain the transfer wrapper from the QTD */
794 tw = (ehci_trans_wrapper_t *)
795 EHCI_LOOKUP_ID((uint32_t)Get_QTD(qtd->qtd_trans_wrapper));
796
797 ASSERT(tw != NULL);
798
799 /* Obtain the pipe private structure */
800 pp = tw->tw_pipe_private;
801
802 ph = tw->tw_pipe_private->pp_pipe_handle;
803 attributes = ph->p_ep.bmAttributes & USB_EP_ATTR_MASK;
804
805 /*
806 * Mark all QTDs belongs to this TW as RECLAIM
807 * so that we don't process them by mistake.
808 */
809 while (tw_qtd) {
810 /* Set QTD state to RECLAIM */
811 Set_QTD(tw_qtd->qtd_state, EHCI_QTD_RECLAIM);
812
813 /* Get the next QTD from the wrapper */
814 tw_qtd = ehci_qtd_iommu_to_cpu(ehcip,
815 Get_QTD(tw_qtd->qtd_tw_next_qtd));
816 }
817
818 /*
819 * Special error handling
820 */
821 if (tw->tw_direction == EHCI_QTD_CTRL_IN_PID) {
822
823 switch (attributes) {
824 case USB_EP_ATTR_CONTROL:
825 if (((ph->p_ep.bmAttributes &
826 USB_EP_ATTR_MASK) ==
827 USB_EP_ATTR_CONTROL) &&
828 (Get_QTD(qtd->qtd_ctrl_phase) ==
829 EHCI_CTRL_SETUP_PHASE)) {
830
831 break;
832 }
833 /* FALLTHROUGH */
834 case USB_EP_ATTR_BULK:
835 /*
836 * Call ehci_sendup_qtd_message
837 * to send message to upstream.
838 */
839 ehci_sendup_qtd_message(ehcip, pp, tw, qtd, error);
840
841 return;
842 case USB_EP_ATTR_INTR:
843 curr_intr_reqp =
844 (usb_intr_req_t *)tw->tw_curr_xfer_reqp;
845
846 if (curr_intr_reqp->intr_attributes &
847 USB_ATTRS_ONE_XFER) {
848
849 ehci_handle_one_xfer_completion(ehcip, tw);
850 }
851
852 /* Decrement periodic in request count */
853 pp->pp_cur_periodic_req_cnt--;
854 break;
855 case USB_EP_ATTR_ISOCH:
856 break;
857 }
858 }
859
860 ehci_hcdi_callback(ph, tw, error);
861
862 /* Check anybody is waiting for transfers completion event */
863 ehci_check_for_transfers_completion(ehcip, pp);
864 }
865
866 /*
867 * ehci_cleanup_data_underrun:
868 *
869 * Cleans up resources when a short xfer occurs. Will only do cleanup if
870 * this pipe supports alternate_qtds.
871 *
872 * NOTE: This function is also called from POLLED MODE.
873 */
874 static void
ehci_cleanup_data_underrun(ehci_state_t * ehcip,ehci_trans_wrapper_t * tw,ehci_qtd_t * qtd)875 ehci_cleanup_data_underrun(
876 ehci_state_t *ehcip,
877 ehci_trans_wrapper_t *tw,
878 ehci_qtd_t *qtd)
879 {
880 ehci_qtd_t *next_qtd, *temp_qtd;
881
882 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
883 "ehci_cleanup_data_underrun: qtd=0x%p, tw=0x%p",
884 (void *)qtd, (void *)tw);
885
886 /*
887 * Check if this transfer doesn't supports short_xfer or
888 * if this QTD is the last qtd in the tw. If so there is
889 * no need for cleanup.
890 */
891 if ((tw->tw_alt_qtd == NULL) || (qtd == tw->tw_qtd_tail)) {
892 /* There is no need for cleanup */
893 return;
894 }
895
896 /* Start removing all the unused QTDs from the TW */
897 next_qtd = (ehci_qtd_t *)ehci_qtd_iommu_to_cpu(ehcip,
898 Get_QTD(qtd->qtd_tw_next_qtd));
899
900 while (next_qtd) {
901 tw->tw_num_qtds--;
902
903 ehci_remove_qtd_from_active_qtd_list(ehcip, next_qtd);
904
905 temp_qtd = next_qtd;
906
907 next_qtd = ehci_qtd_iommu_to_cpu(ehcip,
908 Get_QTD(next_qtd->qtd_tw_next_qtd));
909
910 ehci_deallocate_qtd(ehcip, temp_qtd);
911 }
912
913 ASSERT(tw->tw_num_qtds == 1);
914 }
915
916 /*
917 * ehci_handle_normal_qtd:
918 */
919 static void
ehci_handle_normal_qtd(ehci_state_t * ehcip,ehci_qtd_t * qtd,ehci_trans_wrapper_t * tw)920 ehci_handle_normal_qtd(
921 ehci_state_t *ehcip,
922 ehci_qtd_t *qtd,
923 ehci_trans_wrapper_t *tw)
924 {
925 ehci_pipe_private_t *pp; /* Pipe private field */
926
927 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
928 "ehci_handle_normal_qtd:");
929
930 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
931 ASSERT(tw != NULL);
932
933 /* Obtain the pipe private structure */
934 pp = tw->tw_pipe_private;
935
936 (*tw->tw_handle_qtd)(ehcip, pp, tw,
937 qtd, tw->tw_handle_callback_value);
938
939 /* Check anybody is waiting for transfers completion event */
940 ehci_check_for_transfers_completion(ehcip, pp);
941 }
942
943
944 /*
945 * ehci_handle_ctrl_qtd:
946 *
947 * Handle a control Transfer Descriptor (QTD).
948 */
949 /* ARGSUSED */
950 void
ehci_handle_ctrl_qtd(ehci_state_t * ehcip,ehci_pipe_private_t * pp,ehci_trans_wrapper_t * tw,ehci_qtd_t * qtd,void * tw_handle_callback_value)951 ehci_handle_ctrl_qtd(
952 ehci_state_t *ehcip,
953 ehci_pipe_private_t *pp,
954 ehci_trans_wrapper_t *tw,
955 ehci_qtd_t *qtd,
956 void *tw_handle_callback_value)
957 {
958 usba_pipe_handle_data_t *ph = pp->pp_pipe_handle;
959
960 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
961 "ehci_handle_ctrl_qtd: pp = 0x%p tw = 0x%p qtd = 0x%p state = 0x%x",
962 (void *)pp, (void *)tw, (void *)qtd, Get_QTD(qtd->qtd_ctrl_phase));
963
964 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
965
966 /*
967 * A control transfer consists of three phases:
968 *
969 * Setup
970 * Data (optional)
971 * Status
972 *
973 * There is a QTD per phase. A QTD for a given phase isn't
974 * enqueued until the previous phase is finished. EHCI
975 * spec allows more than one control transfer on a pipe
976 * within a frame. However, we've found that some devices
977 * can't handle this.
978 */
979 tw->tw_num_qtds--;
980 switch (Get_QTD(qtd->qtd_ctrl_phase)) {
981 case EHCI_CTRL_SETUP_PHASE:
982 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
983 "Setup complete: pp 0x%p qtd 0x%p",
984 (void *)pp, (void *)qtd);
985
986 break;
987 case EHCI_CTRL_DATA_PHASE:
988 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
989 "Data complete: pp 0x%p qtd 0x%p",
990 (void *)pp, (void *)qtd);
991
992 break;
993 case EHCI_CTRL_STATUS_PHASE:
994 /*
995 * On some particular hardware, status phase is seen to
996 * finish before data phase gets timeouted. Don't handle
997 * the transfer result here if not all qtds are finished.
998 * Let the timeout handler handle it.
999 */
1000 if (tw->tw_num_qtds != 0) {
1001 USB_DPRINTF_L2(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
1002 "Status complete, but the transfer is not done: "
1003 "tw 0x%p, qtd 0x%p, tw_num_qtd 0x%d",
1004 (void *)tw, (void *)qtd, tw->tw_num_qtds);
1005
1006 ehci_print_qh(ehcip, pp->pp_qh);
1007 ehci_print_qtd(ehcip, qtd);
1008
1009 break;
1010 }
1011
1012 if ((tw->tw_length) &&
1013 (tw->tw_direction == EHCI_QTD_CTRL_IN_PID)) {
1014 /*
1015 * Call ehci_sendup_qtd_message
1016 * to send message to upstream.
1017 */
1018 ehci_sendup_qtd_message(ehcip,
1019 pp, tw, qtd, USB_CR_OK);
1020 } else {
1021 ehci_hcdi_callback(ph, tw, USB_CR_OK);
1022 }
1023
1024 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
1025 "Status complete: pp 0x%p qtd 0x%p",
1026 (void *)pp, (void *)qtd);
1027
1028 break;
1029 }
1030 }
1031
1032
1033 /*
1034 * ehci_handle_bulk_qtd:
1035 *
1036 * Handle a bulk Transfer Descriptor (QTD).
1037 */
1038 /* ARGSUSED */
1039 void
ehci_handle_bulk_qtd(ehci_state_t * ehcip,ehci_pipe_private_t * pp,ehci_trans_wrapper_t * tw,ehci_qtd_t * qtd,void * tw_handle_callback_value)1040 ehci_handle_bulk_qtd(
1041 ehci_state_t *ehcip,
1042 ehci_pipe_private_t *pp,
1043 ehci_trans_wrapper_t *tw,
1044 ehci_qtd_t *qtd,
1045 void *tw_handle_callback_value)
1046 {
1047 usba_pipe_handle_data_t *ph = pp->pp_pipe_handle;
1048 usb_ep_descr_t *eptd = &ph->p_ep;
1049
1050 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
1051 "ehci_handle_bulk_qtd:");
1052
1053 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
1054
1055 /*
1056 * Decrement the QTDs counter and check whether all the bulk
1057 * data has been send or received. If QTDs counter reaches
1058 * zero then inform client driver about completion current
1059 * bulk request. Other wise wait for completion of other bulk
1060 * QTDs or transactions on this pipe.
1061 */
1062 if (--tw->tw_num_qtds != 0) {
1063
1064 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
1065 "ehci_handle_bulk_qtd: Number of QTDs %d", tw->tw_num_qtds);
1066
1067 return;
1068 }
1069
1070 /*
1071 * If this is a bulk in pipe, return the data to the client.
1072 * For a bulk out pipe, there is no need to do anything.
1073 */
1074 if ((eptd->bEndpointAddress &
1075 USB_EP_DIR_MASK) == USB_EP_DIR_OUT) {
1076
1077 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
1078 "ehci_handle_bulk_qtd: Bulk out pipe");
1079
1080 /* Do the callback */
1081 ehci_hcdi_callback(ph, tw, USB_CR_OK);
1082
1083 return;
1084 }
1085
1086 /* Call ehci_sendup_qtd_message to send message to upstream */
1087 ehci_sendup_qtd_message(ehcip, pp, tw, qtd, USB_CR_OK);
1088 }
1089
1090
1091 /*
1092 * ehci_handle_intr_qtd:
1093 *
1094 * Handle a interrupt Transfer Descriptor (QTD).
1095 */
1096 /* ARGSUSED */
1097 void
ehci_handle_intr_qtd(ehci_state_t * ehcip,ehci_pipe_private_t * pp,ehci_trans_wrapper_t * tw,ehci_qtd_t * qtd,void * tw_handle_callback_value)1098 ehci_handle_intr_qtd(
1099 ehci_state_t *ehcip,
1100 ehci_pipe_private_t *pp,
1101 ehci_trans_wrapper_t *tw,
1102 ehci_qtd_t *qtd,
1103 void *tw_handle_callback_value)
1104 {
1105 usb_intr_req_t *curr_intr_reqp =
1106 (usb_intr_req_t *)tw->tw_curr_xfer_reqp;
1107 usba_pipe_handle_data_t *ph = pp->pp_pipe_handle;
1108 usb_ep_descr_t *eptd = &ph->p_ep;
1109 usb_req_attrs_t attrs;
1110 int error = USB_SUCCESS;
1111
1112 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
1113 "ehci_handle_intr_qtd:");
1114
1115 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
1116
1117 /* Get the interrupt xfer attributes */
1118 attrs = curr_intr_reqp->intr_attributes;
1119
1120 /*
1121 * For a Interrupt OUT pipe, we just callback and we are done
1122 */
1123 if ((eptd->bEndpointAddress & USB_EP_DIR_MASK) == USB_EP_DIR_OUT) {
1124
1125 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
1126 "ehci_handle_intr_qtd: Intr out pipe, intr_reqp=0x%p,"
1127 "data=0x%p", (void *)curr_intr_reqp,
1128 (void *)curr_intr_reqp->intr_data);
1129
1130 /* Do the callback */
1131 ehci_hcdi_callback(ph, tw, USB_CR_OK);
1132
1133 return;
1134 }
1135
1136 /* Decrement number of interrupt request count */
1137 pp->pp_cur_periodic_req_cnt--;
1138
1139 /*
1140 * Check usb flag whether USB_FLAGS_ONE_XFER flag is set
1141 * and if so, free duplicate request.
1142 */
1143 if (attrs & USB_ATTRS_ONE_XFER) {
1144 ehci_handle_one_xfer_completion(ehcip, tw);
1145 }
1146
1147 /* Call ehci_sendup_qtd_message to callback into client */
1148 ehci_sendup_qtd_message(ehcip, pp, tw, qtd, USB_CR_OK);
1149
1150 /*
1151 * If interrupt pipe state is still active, insert next Interrupt
1152 * request into the Host Controller's Interrupt list. Otherwise
1153 * you are done.
1154 */
1155 if ((pp->pp_state != EHCI_PIPE_STATE_ACTIVE) ||
1156 (ehci_state_is_operational(ehcip) != USB_SUCCESS)) {
1157
1158 return;
1159 }
1160
1161 if ((error = ehci_allocate_intr_in_resource(ehcip, pp, tw, 0)) ==
1162 USB_SUCCESS) {
1163 curr_intr_reqp = (usb_intr_req_t *)tw->tw_curr_xfer_reqp;
1164
1165 ASSERT(curr_intr_reqp != NULL);
1166
1167 tw->tw_num_qtds = 1;
1168
1169 if (ehci_allocate_tds_for_tw(ehcip, pp, tw, tw->tw_num_qtds) !=
1170 USB_SUCCESS) {
1171 ehci_deallocate_intr_in_resource(ehcip, pp, tw);
1172 error = USB_FAILURE;
1173 }
1174 }
1175
1176 if (error != USB_SUCCESS) {
1177 /*
1178 * Set pipe state to stop polling and error to no
1179 * resource. Don't insert any more interrupt polling
1180 * requests.
1181 */
1182 pp->pp_state = EHCI_PIPE_STATE_STOP_POLLING;
1183 pp->pp_error = USB_CR_NO_RESOURCES;
1184 } else {
1185 ehci_insert_intr_req(ehcip, pp, tw, 0);
1186
1187 /* Increment number of interrupt request count */
1188 pp->pp_cur_periodic_req_cnt++;
1189
1190 ASSERT(pp->pp_cur_periodic_req_cnt ==
1191 pp->pp_max_periodic_req_cnt);
1192 }
1193 }
1194
1195
1196 /*
1197 * ehci_handle_one_xfer_completion:
1198 */
1199 static void
ehci_handle_one_xfer_completion(ehci_state_t * ehcip,ehci_trans_wrapper_t * tw)1200 ehci_handle_one_xfer_completion(
1201 ehci_state_t *ehcip,
1202 ehci_trans_wrapper_t *tw)
1203 {
1204 usba_pipe_handle_data_t *ph = tw->tw_pipe_private->pp_pipe_handle;
1205 ehci_pipe_private_t *pp = tw->tw_pipe_private;
1206 usb_intr_req_t *curr_intr_reqp =
1207 (usb_intr_req_t *)tw->tw_curr_xfer_reqp;
1208
1209 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
1210 "ehci_handle_one_xfer_completion: tw = 0x%p", (void *)tw);
1211
1212 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
1213 ASSERT(curr_intr_reqp->intr_attributes & USB_ATTRS_ONE_XFER);
1214
1215 pp->pp_state = EHCI_PIPE_STATE_IDLE;
1216
1217 /*
1218 * For one xfer, we need to copy back data ptr
1219 * and free current request
1220 */
1221 ((usb_intr_req_t *)(pp->pp_client_periodic_in_reqp))->
1222 intr_data = ((usb_intr_req_t *)
1223 (tw->tw_curr_xfer_reqp))->intr_data;
1224
1225 ((usb_intr_req_t *)tw->tw_curr_xfer_reqp)->intr_data = NULL;
1226
1227 /* Now free duplicate current request */
1228 usb_free_intr_req((usb_intr_req_t *)tw-> tw_curr_xfer_reqp);
1229
1230 mutex_enter(&ph->p_mutex);
1231 ph->p_req_count--;
1232 mutex_exit(&ph->p_mutex);
1233
1234 /* Make client's request the current request */
1235 tw->tw_curr_xfer_reqp = pp->pp_client_periodic_in_reqp;
1236 pp->pp_client_periodic_in_reqp = NULL;
1237 }
1238
1239
1240 /*
1241 * ehci_sendup_qtd_message:
1242 * copy data, if necessary and do callback
1243 */
1244 /* ARGSUSED */
1245 static void
ehci_sendup_qtd_message(ehci_state_t * ehcip,ehci_pipe_private_t * pp,ehci_trans_wrapper_t * tw,ehci_qtd_t * qtd,usb_cr_t error)1246 ehci_sendup_qtd_message(
1247 ehci_state_t *ehcip,
1248 ehci_pipe_private_t *pp,
1249 ehci_trans_wrapper_t *tw,
1250 ehci_qtd_t *qtd,
1251 usb_cr_t error)
1252 {
1253 usb_ep_descr_t *eptd = &pp->pp_pipe_handle->p_ep;
1254 usba_pipe_handle_data_t *ph = pp->pp_pipe_handle;
1255 usb_opaque_t curr_xfer_reqp = tw->tw_curr_xfer_reqp;
1256 size_t skip_len = 0;
1257 size_t length;
1258 uchar_t *buf;
1259 mblk_t *mp;
1260
1261 ASSERT(mutex_owned(&ehcip->ehci_int_mutex));
1262
1263 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
1264 "ehci_sendup_qtd_message:");
1265
1266 ASSERT(tw != NULL);
1267
1268 length = tw->tw_length;
1269
1270 if ((eptd->bmAttributes & USB_EP_ATTR_MASK) == USB_EP_ATTR_CONTROL) {
1271 /* Get the correct length */
1272 if (((usb_ctrl_req_t *)curr_xfer_reqp)->ctrl_wLength)
1273 length = length - EHCI_MAX_QTD_BUF_SIZE;
1274 else
1275 length = length - SETUP_SIZE;
1276
1277 /* Set the length of the buffer to skip */
1278 skip_len = EHCI_MAX_QTD_BUF_SIZE;
1279 }
1280
1281 /* Copy the data into the mblk_t */
1282 buf = (uchar_t *)tw->tw_buf + skip_len;
1283
1284 USB_DPRINTF_L4(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
1285 "ehci_sendup_qtd_message: length %ld error %d", length, error);
1286
1287 /* Get the message block */
1288 switch (eptd->bmAttributes & USB_EP_ATTR_MASK) {
1289 case USB_EP_ATTR_CONTROL:
1290 mp = ((usb_ctrl_req_t *)curr_xfer_reqp)->ctrl_data;
1291 break;
1292 case USB_EP_ATTR_BULK:
1293 mp = ((usb_bulk_req_t *)curr_xfer_reqp)->bulk_data;
1294 break;
1295 case USB_EP_ATTR_INTR:
1296 mp = ((usb_intr_req_t *)curr_xfer_reqp)->intr_data;
1297 break;
1298 case USB_EP_ATTR_ISOCH:
1299 /* Isoc messages must not go through this path */
1300 mp = NULL;
1301 break;
1302 }
1303
1304 ASSERT(mp != NULL);
1305
1306 if (length) {
1307 /*
1308 * Update kstat byte counts
1309 * The control endpoints don't have direction bits so in
1310 * order for control stats to be counted correctly an in
1311 * bit must be faked on a control read.
1312 */
1313 if ((eptd->bmAttributes & USB_EP_ATTR_MASK) ==
1314 USB_EP_ATTR_CONTROL) {
1315 ehci_do_byte_stats(ehcip, length,
1316 eptd->bmAttributes, USB_EP_DIR_IN);
1317 } else {
1318 ehci_do_byte_stats(ehcip, length,
1319 eptd->bmAttributes, eptd->bEndpointAddress);
1320 }
1321
1322 /* Sync IO buffer */
1323 Sync_IO_Buffer(tw->tw_dmahandle, (skip_len + length));
1324
1325 /* since we specified NEVERSWAP, we can just use bcopy */
1326 bcopy(buf, mp->b_rptr, length);
1327
1328 /* Increment the write pointer */
1329 mp->b_wptr = mp->b_wptr + length;
1330 } else {
1331 USB_DPRINTF_L3(PRINT_MASK_INTR, ehcip->ehci_log_hdl,
1332 "ehci_sendup_qtd_message: Zero length packet");
1333 }
1334
1335 ehci_hcdi_callback(ph, tw, error);
1336 }
1337