source: mainline/uspace/drv/bus/usb/xhci/commands.c@ 370a1c8

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 370a1c8 was 4688350b, checked in by Ondřej Hlavatý <aearsis@…>, 8 years ago

xhci commands: waiting for commands completion uses fibril condvar

  • Property mode set to 100644
File size: 13.5 KB
RevLine 
[c9c0e41]1/*
2 * Copyright (c) 2017 Jaroslav Jindrak
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup drvusbxhci
30 * @{
31 */
32/** @file
33 * @brief Command sending functions.
34 */
35
36#include <errno.h>
37#include <str_error.h>
38#include <usb/debug.h>
39#include <usb/host/utils/malloc32.h>
40#include "commands.h"
41#include "debug.h"
42#include "hc.h"
[8db42f7]43#include "hw_struct/context.h"
[c9c0e41]44#include "hw_struct/trb.h"
45
[1b78a7c1]46#define TRB_SET_TCS(trb, tcs) (trb).control |= host2xhci(32, ((tcs &0x1) << 9))
47#define TRB_SET_TYPE(trb, type) (trb).control |= host2xhci(32, (type) << 10)
48#define TRB_SET_EP(trb, ep) (trb).control |= host2xhci(32, ((ep) & 0x5) << 16)
[0cabd10]49#define TRB_SET_STREAM(trb, st) (trb).control |= host2xhci(32, ((st) & 0xFFFF) << 16)
[1b78a7c1]50#define TRB_SET_SUSP(trb, susp) (trb).control |= host2xhci(32, ((susp) & 0x1) << 23)
51#define TRB_SET_SLOT(trb, slot) (trb).control |= host2xhci(32, (slot) << 24)
52
[0cabd10]53/**
54 * TODO: Not sure about SCT and DCS (see section 6.4.3.9).
55 */
56#define TRB_SET_DEQUEUE_PTR(trb, dptr) (trb).parameter |= host2xhci(64, (dptr))
[548c123]57#define TRB_SET_ICTX(trb, phys) (trb).parameter |= host2xhci(64, phys_addr & (~0xF))
[1b78a7c1]58
59#define TRB_GET_CODE(trb) XHCI_DWORD_EXTRACT((trb).status, 31, 24)
60#define TRB_GET_SLOT(trb) XHCI_DWORD_EXTRACT((trb).control, 31, 24)
61#define TRB_GET_PHYS(trb) (XHCI_QWORD_EXTRACT((trb).parameter, 63, 4) << 4)
62
[110d795]63int xhci_init_commands(xhci_hc_t *hc)
64{
65 assert(hc);
66
67 list_initialize(&hc->commands);
68 return EOK;
69}
70
[c46c356]71void xhci_fini_commands(xhci_hc_t *hc)
72{
73 // Note: Untested.
74 assert(hc);
75
76 // We assume that the hc is dying/stopping, so we ignore
77 // the ownership of the commands.
78 list_foreach(hc->commands, link, xhci_cmd_t, cmd) {
79 xhci_free_command(cmd);
80 }
81}
82
[4688350b]83int xhci_wait_for_command(xhci_cmd_t *cmd, suseconds_t timeout)
[110d795]84{
[4688350b]85 int rv = EOK;
86
87 fibril_mutex_lock(&cmd->completed_mtx);
[110d795]88 while (!cmd->completed) {
[4688350b]89 usb_log_debug2("Waiting for event completion: going to sleep.");
90 rv = fibril_condvar_wait_timeout(&cmd->completed_cv, &cmd->completed_mtx, timeout);
[110d795]91
[4688350b]92 usb_log_debug2("Waiting for event completion: woken: %s", str_error(rv));
93 if (rv == ETIMEOUT)
94 break;
[110d795]95 }
[4688350b]96 fibril_mutex_lock(&cmd->completed_mtx);
[110d795]97
[4688350b]98 return rv;
[110d795]99}
100
101xhci_cmd_t *xhci_alloc_command(void)
102{
103 xhci_cmd_t *cmd = malloc32(sizeof(xhci_cmd_t));
[4688350b]104 xhci_cmd_init(cmd);
105 return cmd;
106}
107
108void xhci_cmd_init(xhci_cmd_t *cmd)
109{
110 memset(cmd, 0, sizeof(*cmd));
[110d795]111
112 link_initialize(&cmd->link);
113
[4688350b]114 fibril_mutex_initialize(&cmd->completed_mtx);
115 fibril_condvar_initialize(&cmd->completed_cv);
116
[110d795]117 /**
118 * Internal functions will set this to false, other are implicit
119 * owners unless they overwrite this field.
120 * TODO: Is this wise?
121 */
122 cmd->has_owner = true;
123}
124
125void xhci_free_command(xhci_cmd_t *cmd)
126{
[9304b66]127 list_remove(&cmd->link);
128
[110d795]129 if (cmd->ictx)
130 free32(cmd->ictx);
131
132 free32(cmd);
133}
134
[2fa43d1]135static inline xhci_cmd_t *get_command(xhci_hc_t *hc, uint64_t phys)
[110d795]136{
137 link_t *cmd_link = list_first(&hc->commands);
138
[548c123]139
140 usb_log_debug2("Searching TRB %lu...", phys);
141
[2fa43d1]142 while (cmd_link != NULL) {
143 xhci_cmd_t *cmd = list_get_instance(cmd_link, xhci_cmd_t, link);
144
[548c123]145 if (cmd->trb_phys == phys)
[2fa43d1]146 break;
147
148 cmd_link = list_next(cmd_link, &hc->commands);
149 }
150
[110d795]151 if (cmd_link != NULL) {
152 list_remove(cmd_link);
[9f5b613]153
[110d795]154 return list_get_instance(cmd_link, xhci_cmd_t, link);
155 }
156
157 return NULL;
158}
159
[481af21e]160static inline int ring_doorbell(xhci_hc_t *hc, unsigned doorbell, unsigned target)
[c9c0e41]161{
[c058a388]162 assert(hc);
[c9c0e41]163 uint32_t v = host2xhci(32, target & BIT_RRANGE(uint32_t, 7));
164 pio_write_32(&hc->db_arry[doorbell], v);
165 return EOK;
166}
167
[548c123]168static inline int enqueue_command(xhci_hc_t *hc, xhci_cmd_t *cmd, unsigned doorbell, unsigned target)
[481af21e]169{
[c058a388]170 assert(hc);
[548c123]171 assert(cmd);
172
173 list_append(&cmd->link, &hc->commands);
[c058a388]174
[548c123]175 xhci_trb_ring_enqueue(&hc->command_ring, &cmd->trb, &cmd->trb_phys);
[481af21e]176 ring_doorbell(hc, doorbell, target);
177
[548c123]178 usb_log_debug2("HC(%p): Sent command:", hc);
179 xhci_dump_trb(&cmd->trb);
[481af21e]180
181 return EOK;
182}
183
[3dc519f]184void xhci_stop_command_ring(xhci_hc_t *hc)
185{
186 assert(hc);
187
188 XHCI_REG_SET(hc->op_regs, XHCI_OP_CS, 1);
189
190 /**
191 * Note: There is a bug in qemu that checks CS only when CRCR_HI
192 * is written, this (and the read/write in abort) ensures
193 * the command rings stops.
194 */
195 XHCI_REG_WR(hc->op_regs, XHCI_OP_CRCR_HI, XHCI_REG_RD(hc->op_regs, XHCI_OP_CRCR_HI));
196}
197
198void xhci_abort_command_ring(xhci_hc_t *hc)
199{
200 assert(hc);
201
202 XHCI_REG_WR(hc->op_regs, XHCI_OP_CA, 1);
203 XHCI_REG_WR(hc->op_regs, XHCI_OP_CRCR_HI, XHCI_REG_RD(hc->op_regs, XHCI_OP_CRCR_HI));
204}
205
206void xhci_start_command_ring(xhci_hc_t *hc)
207{
208 assert(hc);
209
210 XHCI_REG_WR(hc->op_regs, XHCI_OP_CRR, 1);
211 ring_doorbell(hc, 0, 0);
212}
213
[4fa5342]214static const char *trb_codes [] = {
215#define TRBC(t) [XHCI_TRBC_##t] = #t
216 TRBC(INVALID),
217 TRBC(SUCCESS),
218 TRBC(DATA_BUFFER_ERROR),
219 TRBC(BABBLE_DETECTED_ERROR),
220 TRBC(USB_TRANSACTION_ERROR),
221 TRBC(TRB_ERROR),
222 TRBC(STALL_ERROR),
223 TRBC(RESOURCE_ERROR),
224 TRBC(BANDWIDTH_ERROR),
225 TRBC(NO_SLOTS_ERROR),
226 TRBC(INVALID_STREAM_ERROR),
227 TRBC(SLOT_NOT_ENABLED_ERROR),
228 TRBC(EP_NOT_ENABLED_ERROR),
229 TRBC(SHORT_PACKET),
230 TRBC(RING_UNDERRUN),
231 TRBC(RING_OVERRUN),
232 TRBC(VF_EVENT_RING_FULL),
233 TRBC(PARAMETER_ERROR),
234 TRBC(BANDWIDTH_OVERRUN_ERROR),
235 TRBC(CONTEXT_STATE_ERROR),
236 TRBC(NO_PING_RESPONSE_ERROR),
237 TRBC(EVENT_RING_FULL_ERROR),
238 TRBC(INCOMPATIBLE_DEVICE_ERROR),
239 TRBC(MISSED_SERVICE_ERROR),
240 TRBC(COMMAND_RING_STOPPED),
241 TRBC(COMMAND_ABORTED),
242 TRBC(STOPPED),
243 TRBC(STOPPED_LENGTH_INVALID),
244 TRBC(STOPPED_SHORT_PACKET),
245 TRBC(MAX_EXIT_LATENCY_TOO_LARGE_ERROR),
246 [30] = "<reserved>",
247 TRBC(ISOCH_BUFFER_OVERRUN),
248 TRBC(EVENT_LOST_ERROR),
249 TRBC(UNDEFINED_ERROR),
250 TRBC(INVALID_STREAM_ID_ERROR),
251 TRBC(SECONDARY_BANDWIDTH_ERROR),
252 TRBC(SPLIT_TRANSACTION_ERROR),
253 [XHCI_TRBC_MAX] = NULL
254#undef TRBC
255};
256
257static void report_error(int code)
258{
259 if (code < XHCI_TRBC_MAX && trb_codes[code] != NULL)
260 usb_log_error("Command resulted in error: %s.", trb_codes[code]);
261 else
262 usb_log_error("Command resulted in reserved or vendor specific error.");
263}
264
[110d795]265int xhci_send_no_op_command(xhci_hc_t *hc, xhci_cmd_t *cmd)
[c9c0e41]266{
[c058a388]267 assert(hc);
268
[548c123]269 xhci_trb_clean(&cmd->trb);
[c9c0e41]270
[548c123]271 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_NO_OP_CMD);
[110d795]272
[548c123]273 return enqueue_command(hc, cmd, 0, 0);
[c9c0e41]274}
275
[110d795]276int xhci_send_enable_slot_command(xhci_hc_t *hc, xhci_cmd_t *cmd)
[c9c0e41]277{
[c058a388]278 assert(hc);
279
[548c123]280 xhci_trb_clean(&cmd->trb);
[c9c0e41]281
[548c123]282 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_ENABLE_SLOT_CMD);
283 cmd->trb.control |= host2xhci(32, XHCI_REG_RD(hc->xecp, XHCI_EC_SP_SLOT_TYPE) << 16);
[110d795]284
[548c123]285 return enqueue_command(hc, cmd, 0, 0);
[5ac5eb1]286}
287
[110d795]288int xhci_send_disable_slot_command(xhci_hc_t *hc, xhci_cmd_t *cmd)
[5ac5eb1]289{
[c058a388]290 assert(hc);
[110d795]291 assert(cmd);
[c058a388]292
[548c123]293 xhci_trb_clean(&cmd->trb);
[5ac5eb1]294
[548c123]295 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_DISABLE_SLOT_CMD);
296 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[110d795]297
[548c123]298 return enqueue_command(hc, cmd, 0, 0);
[c9c0e41]299}
300
[110d795]301int xhci_send_address_device_command(xhci_hc_t *hc, xhci_cmd_t *cmd)
[8db42f7]302{
[c058a388]303 assert(hc);
[110d795]304 assert(cmd);
305 assert(cmd->ictx);
[c058a388]306
[8db42f7]307 /**
308 * TODO: Requirements for this command:
309 * dcbaa[slot_id] is properly sized and initialized
310 * ictx has valids slot context and endpoint 0, all
311 * other should be ignored at this point (see section 4.6.5).
312 */
[548c123]313 xhci_trb_clean(&cmd->trb);
[8db42f7]314
[110d795]315 uint64_t phys_addr = (uint64_t) addr_to_phys(cmd->ictx);
[548c123]316 TRB_SET_ICTX(cmd->trb, phys_addr);
[8db42f7]317
318 /**
319 * Note: According to section 6.4.3.4, we can set the 9th bit
320 * of the control field of the trb (BSR) to 1 and then the xHC
321 * will not issue the SET_ADDRESS request to the USB device.
322 * This can be used to provide compatibility with legacy USB devices
323 * that require their device descriptor to be read before such request.
324 */
[548c123]325 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_ADDRESS_DEVICE_CMD);
326 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[8db42f7]327
[548c123]328 return enqueue_command(hc, cmd, 0, 0);
[8db42f7]329}
330
[110d795]331int xhci_send_configure_endpoint_command(xhci_hc_t *hc, xhci_cmd_t *cmd)
[665bf3c]332{
[c058a388]333 assert(hc);
[110d795]334 assert(cmd);
335 assert(cmd->ictx);
[c058a388]336
[548c123]337 xhci_trb_clean(&cmd->trb);
[665bf3c]338
[110d795]339 uint64_t phys_addr = (uint64_t) addr_to_phys(cmd->ictx);
[548c123]340 TRB_SET_ICTX(cmd->trb, phys_addr);
[110d795]341
[548c123]342 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_CONFIGURE_ENDPOINT_CMD);
343 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[665bf3c]344
[548c123]345 return enqueue_command(hc, cmd, 0, 0);
[665bf3c]346}
347
[110d795]348int xhci_send_evaluate_context_command(xhci_hc_t *hc, xhci_cmd_t *cmd)
[c9ce62ae]349{
[c058a388]350 assert(hc);
[110d795]351 assert(cmd);
352 assert(cmd->ictx);
[c058a388]353
[c9ce62ae]354 /**
355 * Note: All Drop Context flags of the input context shall be 0,
356 * all Add Context flags shall be initialize to indicate IDs
357 * of the contexts affected by the command.
358 * Refer to sections 6.2.2.3 and 6.3.3.3 for further info.
359 */
[548c123]360 xhci_trb_clean(&cmd->trb);
[c9ce62ae]361
[110d795]362 uint64_t phys_addr = (uint64_t) addr_to_phys(cmd->ictx);
[548c123]363 TRB_SET_ICTX(cmd->trb, phys_addr);
[c9ce62ae]364
[548c123]365 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_EVALUATE_CONTEXT_CMD);
366 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[110d795]367
[548c123]368 return enqueue_command(hc, cmd, 0, 0);
[c9ce62ae]369}
370
[110d795]371int xhci_send_reset_endpoint_command(xhci_hc_t *hc, xhci_cmd_t *cmd, uint32_t ep_id, uint8_t tcs)
[05aeee0e]372{
[c058a388]373 assert(hc);
[110d795]374 assert(cmd);
[c058a388]375
[05aeee0e]376 /**
377 * Note: TCS can have values 0 or 1. If it is set to 0, see sectuon 4.5.8 for
378 * information about this flag.
379 */
[548c123]380 xhci_trb_clean(&cmd->trb);
[05aeee0e]381
[548c123]382 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_RESET_ENDPOINT_CMD);
383 TRB_SET_TCS(cmd->trb, tcs);
384 TRB_SET_EP(cmd->trb, ep_id);
385 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[c9bec1c]386
[548c123]387 return enqueue_command(hc, cmd, 0, 0);
[05aeee0e]388}
389
[110d795]390int xhci_send_stop_endpoint_command(xhci_hc_t *hc, xhci_cmd_t *cmd, uint32_t ep_id, uint8_t susp)
[05aeee0e]391{
[c058a388]392 assert(hc);
[110d795]393 assert(cmd);
[c058a388]394
[548c123]395 xhci_trb_clean(&cmd->trb);
[110d795]396
[548c123]397 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_STOP_ENDPOINT_CMD);
398 TRB_SET_EP(cmd->trb, ep_id);
399 TRB_SET_SUSP(cmd->trb, susp);
400 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[05aeee0e]401
[548c123]402 return enqueue_command(hc, cmd, 0, 0);
[c058a388]403}
[05aeee0e]404
[0cabd10]405int xhci_send_set_dequeue_ptr_command(xhci_hc_t *hc, xhci_cmd_t *cmd,
406 uintptr_t dequeue_ptr, uint16_t stream_id,
407 uint32_t ep_id)
408{
409 assert(hc);
410 assert(cmd);
411
[548c123]412 xhci_trb_clean(&cmd->trb);
[0cabd10]413
[548c123]414 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_SET_TR_DEQUEUE_POINTER_CMD);
415 TRB_SET_EP(cmd->trb, ep_id);
416 TRB_SET_STREAM(cmd->trb, stream_id);
417 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
418 TRB_SET_DEQUEUE_PTR(cmd->trb, dequeue_ptr);
[0cabd10]419
420 /**
421 * TODO: Set DCS (see section 4.6.10).
422 */
423
[548c123]424 return enqueue_command(hc, cmd, 0, 0);
[0cabd10]425}
426
[110d795]427int xhci_send_reset_device_command(xhci_hc_t *hc, xhci_cmd_t *cmd)
[c058a388]428{
429 assert(hc);
[110d795]430 assert(cmd);
[c058a388]431
[548c123]432 xhci_trb_clean(&cmd->trb);
[c058a388]433
[548c123]434 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_RESET_DEVICE_CMD);
435 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[c9bec1c]436
[548c123]437 return enqueue_command(hc, cmd, 0, 0);
[05aeee0e]438}
439
[f9e7fe8]440int xhci_handle_command_completion(xhci_hc_t *hc, xhci_trb_t *trb)
441{
[110d795]442 // TODO: Update dequeue ptrs.
[c058a388]443 assert(hc);
444 assert(trb);
445
[5ac5eb1]446 usb_log_debug("HC(%p) Command completed.", hc);
[f9e7fe8]447
[5ac5eb1]448 int code;
[2fa43d1]449 uint64_t phys;
[110d795]450 xhci_cmd_t *command;
[f711f06]451
[1b78a7c1]452 code = TRB_GET_CODE(*trb);
453 phys = TRB_GET_PHYS(*trb);;
[2fa43d1]454 command = get_command(hc, phys);
455 if (command == NULL) {
456 // TODO: STOP & ABORT may not have command structs in the list!
457 usb_log_error("No command struct for this completion event");
458
459 if (code != XHCI_TRBC_SUCCESS)
460 report_error(code);
461
462 return EOK;
463 }
[110d795]464
465 command->status = code;
[1b78a7c1]466 command->slot_id = TRB_GET_SLOT(*trb);
[110d795]467
[548c123]468 usb_log_debug2("Completed command trb: %s", xhci_trb_str_type(TRB_TYPE(command->trb)));
469 if (TRB_TYPE(command->trb) != XHCI_TRB_TYPE_NO_OP_CMD) {
[665bf3c]470 if (code != XHCI_TRBC_SUCCESS) {
[4fa5342]471 report_error(code);
[548c123]472 xhci_dump_trb(&command->trb);
[665bf3c]473 }
474 }
[c362127]475
[548c123]476 switch (TRB_TYPE(command->trb)) {
[c362127]477 case XHCI_TRB_TYPE_NO_OP_CMD:
[9f5b613]478 assert(code == XHCI_TRBC_TRB_ERROR);
[110d795]479 break;
[c362127]480 case XHCI_TRB_TYPE_ENABLE_SLOT_CMD:
[110d795]481 break;
[5ac5eb1]482 case XHCI_TRB_TYPE_DISABLE_SLOT_CMD:
[110d795]483 break;
[8db42f7]484 case XHCI_TRB_TYPE_ADDRESS_DEVICE_CMD:
[110d795]485 break;
[665bf3c]486 case XHCI_TRB_TYPE_CONFIGURE_ENDPOINT_CMD:
[110d795]487 break;
[c9ce62ae]488 case XHCI_TRB_TYPE_EVALUATE_CONTEXT_CMD:
[110d795]489 break;
[05aeee0e]490 case XHCI_TRB_TYPE_RESET_ENDPOINT_CMD:
[110d795]491 break;
[05aeee0e]492 case XHCI_TRB_TYPE_STOP_ENDPOINT_CMD:
493 // Note: If the endpoint was in the middle of a transfer, then the xHC
494 // will add a Transfer TRB before the Event TRB, research that and
495 // handle it appropriately!
[110d795]496 break;
[c058a388]497 case XHCI_TRB_TYPE_RESET_DEVICE_CMD:
[110d795]498 break;
[c362127]499 default:
[548c123]500 usb_log_debug2("Unsupported command trb: %s", xhci_trb_str_type(TRB_TYPE(command->trb)));
[110d795]501
502 command->completed = true;
[665bf3c]503 return ENAK;
[f711f06]504 }
[110d795]505
[4688350b]506 fibril_mutex_lock(&command->completed_mtx);
[110d795]507 command->completed = true;
[4688350b]508 fibril_condvar_broadcast(&command->completed_cv);
509 fibril_mutex_unlock(&command->completed_mtx);
510
[110d795]511
[c4d4fa2]512 if (!command->has_owner) {
[eff60ca]513 usb_log_debug2("Command has no owner, deallocating.");
[110d795]514 xhci_free_command(command);
[c4d4fa2]515 } else {
[eff60ca]516 usb_log_debug2("Command has owner, don't forget to deallocate!");
[c4d4fa2]517 }
[110d795]518
519 return EOK;
[f9e7fe8]520}
[c9c0e41]521
522
523/**
524 * @}
525 */
Note: See TracBrowser for help on using the repository browser.