]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Pci/XhciDxe/XhciSched.h
MdeModulePkg/XhciDxe: Check return value of XHC_PAGESIZE register
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / XhciDxe / XhciSched.h
1 /** @file
2
3 This file contains the definition for XHCI host controller schedule routines.
4
5 Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef _EFI_XHCI_SCHED_H_
11 #define _EFI_XHCI_SCHED_H_
12
13 #define XHC_URB_SIG SIGNATURE_32 ('U', 'S', 'B', 'R')
14 #define XHC_INIT_DEVICE_SLOT_RETRIES 1
15
16 //
17 // Transfer types, used in URB to identify the transfer type
18 //
19 #define XHC_CTRL_TRANSFER 0x01
20 #define XHC_BULK_TRANSFER 0x02
21 #define XHC_INT_TRANSFER_SYNC 0x04
22 #define XHC_INT_TRANSFER_ASYNC 0x08
23 #define XHC_INT_ONLY_TRANSFER_ASYNC 0x10
24
25 //
26 // 6.4.6 TRB Types
27 //
28 #define TRB_TYPE_NORMAL 1
29 #define TRB_TYPE_SETUP_STAGE 2
30 #define TRB_TYPE_DATA_STAGE 3
31 #define TRB_TYPE_STATUS_STAGE 4
32 #define TRB_TYPE_ISOCH 5
33 #define TRB_TYPE_LINK 6
34 #define TRB_TYPE_EVENT_DATA 7
35 #define TRB_TYPE_NO_OP 8
36 #define TRB_TYPE_EN_SLOT 9
37 #define TRB_TYPE_DIS_SLOT 10
38 #define TRB_TYPE_ADDRESS_DEV 11
39 #define TRB_TYPE_CON_ENDPOINT 12
40 #define TRB_TYPE_EVALU_CONTXT 13
41 #define TRB_TYPE_RESET_ENDPOINT 14
42 #define TRB_TYPE_STOP_ENDPOINT 15
43 #define TRB_TYPE_SET_TR_DEQUE 16
44 #define TRB_TYPE_RESET_DEV 17
45 #define TRB_TYPE_GET_PORT_BANW 21
46 #define TRB_TYPE_FORCE_HEADER 22
47 #define TRB_TYPE_NO_OP_COMMAND 23
48 #define TRB_TYPE_TRANS_EVENT 32
49 #define TRB_TYPE_COMMAND_COMPLT_EVENT 33
50 #define TRB_TYPE_PORT_STATUS_CHANGE_EVENT 34
51 #define TRB_TYPE_HOST_CONTROLLER_EVENT 37
52 #define TRB_TYPE_DEVICE_NOTIFI_EVENT 38
53 #define TRB_TYPE_MFINDEX_WRAP_EVENT 39
54
55 //
56 // Endpoint Type (EP Type).
57 //
58 #define ED_NOT_VALID 0
59 #define ED_ISOCH_OUT 1
60 #define ED_BULK_OUT 2
61 #define ED_INTERRUPT_OUT 3
62 #define ED_CONTROL_BIDIR 4
63 #define ED_ISOCH_IN 5
64 #define ED_BULK_IN 6
65 #define ED_INTERRUPT_IN 7
66
67 //
68 // 6.4.5 TRB Completion Codes
69 //
70 #define TRB_COMPLETION_INVALID 0
71 #define TRB_COMPLETION_SUCCESS 1
72 #define TRB_COMPLETION_DATA_BUFFER_ERROR 2
73 #define TRB_COMPLETION_BABBLE_ERROR 3
74 #define TRB_COMPLETION_USB_TRANSACTION_ERROR 4
75 #define TRB_COMPLETION_TRB_ERROR 5
76 #define TRB_COMPLETION_STALL_ERROR 6
77 #define TRB_COMPLETION_SHORT_PACKET 13
78 #define TRB_COMPLETION_STOPPED 26
79 #define TRB_COMPLETION_STOPPED_LENGTH_INVALID 27
80
81 //
82 // The topology string used to present usb device location
83 //
84 typedef struct _USB_DEV_TOPOLOGY {
85 //
86 // The tier concatenation of down stream port.
87 //
88 UINT32 RouteString : 20;
89 //
90 // The root port number of the chain.
91 //
92 UINT32 RootPortNum : 8;
93 //
94 // The Tier the device reside.
95 //
96 UINT32 TierNum : 4;
97 } USB_DEV_TOPOLOGY;
98
99 //
100 // USB Device's RouteChart
101 //
102 typedef union _USB_DEV_ROUTE {
103 UINT32 Dword;
104 USB_DEV_TOPOLOGY Route;
105 } USB_DEV_ROUTE;
106
107 //
108 // Endpoint address and its capabilities
109 //
110 typedef struct _USB_ENDPOINT {
111 //
112 // Store logical device address assigned by UsbBus
113 // It's because some XHCI host controllers may assign the same physcial device
114 // address for those devices inserted at different root port.
115 //
116 UINT8 BusAddr;
117 UINT8 DevAddr;
118 UINT8 EpAddr;
119 EFI_USB_DATA_DIRECTION Direction;
120 UINT8 DevSpeed;
121 UINTN MaxPacket;
122 UINTN Type;
123 } USB_ENDPOINT;
124
125 //
126 // TRB Template
127 //
128 typedef struct _TRB_TEMPLATE {
129 UINT32 Parameter1;
130
131 UINT32 Parameter2;
132
133 UINT32 Status;
134
135 UINT32 CycleBit : 1;
136 UINT32 RsvdZ1 : 9;
137 UINT32 Type : 6;
138 UINT32 Control : 16;
139 } TRB_TEMPLATE;
140
141 typedef struct _TRANSFER_RING {
142 VOID *RingSeg0;
143 UINTN TrbNumber;
144 TRB_TEMPLATE *RingEnqueue;
145 TRB_TEMPLATE *RingDequeue;
146 UINT32 RingPCS;
147 } TRANSFER_RING;
148
149 typedef struct _EVENT_RING {
150 VOID *ERSTBase;
151 VOID *EventRingSeg0;
152 UINTN TrbNumber;
153 TRB_TEMPLATE *EventRingEnqueue;
154 TRB_TEMPLATE *EventRingDequeue;
155 UINT32 EventRingCCS;
156 } EVENT_RING;
157
158 //
159 // URB (Usb Request Block) contains information for all kinds of
160 // usb requests.
161 //
162 typedef struct _URB {
163 UINT32 Signature;
164 LIST_ENTRY UrbList;
165 //
166 // Usb Device URB related information
167 //
168 USB_ENDPOINT Ep;
169 EFI_USB_DEVICE_REQUEST *Request;
170 VOID *Data;
171 UINTN DataLen;
172 VOID *DataPhy;
173 VOID *DataMap;
174 EFI_ASYNC_USB_TRANSFER_CALLBACK Callback;
175 VOID *Context;
176 //
177 // Execute result
178 //
179 UINT32 Result;
180 //
181 // completed data length
182 //
183 UINTN Completed;
184 //
185 // Command/Tranfer Ring info
186 //
187 TRANSFER_RING *Ring;
188 TRB_TEMPLATE *TrbStart;
189 TRB_TEMPLATE *TrbEnd;
190 UINTN TrbNum;
191 BOOLEAN StartDone;
192 BOOLEAN EndDone;
193 BOOLEAN Finished;
194
195 TRB_TEMPLATE *EvtTrb;
196 } URB;
197
198 //
199 // 6.5 Event Ring Segment Table
200 // The Event Ring Segment Table is used to define multi-segment Event Rings and to enable runtime
201 // expansion and shrinking of the Event Ring. The location of the Event Ring Segment Table is defined by the
202 // Event Ring Segment Table Base Address Register (5.5.2.3.2). The size of the Event Ring Segment Table
203 // is defined by the Event Ring Segment Table Base Size Register (5.5.2.3.1).
204 //
205 typedef struct _EVENT_RING_SEG_TABLE_ENTRY {
206 UINT32 PtrLo;
207 UINT32 PtrHi;
208 UINT32 RingTrbSize : 16;
209 UINT32 RsvdZ1 : 16;
210 UINT32 RsvdZ2;
211 } EVENT_RING_SEG_TABLE_ENTRY;
212
213 //
214 // 6.4.1.1 Normal TRB
215 // A Normal TRB is used in several ways; exclusively on Bulk and Interrupt Transfer Rings for normal and
216 // Scatter/Gather operations, to define additional data buffers for Scatter/Gather operations on Isoch Transfer
217 // Rings, and to define the Data stage information for Control Transfer Rings.
218 //
219 typedef struct _TRANSFER_TRB_NORMAL {
220 UINT32 TRBPtrLo;
221
222 UINT32 TRBPtrHi;
223
224 UINT32 Length : 17;
225 UINT32 TDSize : 5;
226 UINT32 IntTarget : 10;
227
228 UINT32 CycleBit : 1;
229 UINT32 ENT : 1;
230 UINT32 ISP : 1;
231 UINT32 NS : 1;
232 UINT32 CH : 1;
233 UINT32 IOC : 1;
234 UINT32 IDT : 1;
235 UINT32 RsvdZ1 : 2;
236 UINT32 BEI : 1;
237 UINT32 Type : 6;
238 UINT32 RsvdZ2 : 16;
239 } TRANSFER_TRB_NORMAL;
240
241 //
242 // 6.4.1.2.1 Setup Stage TRB
243 // A Setup Stage TRB is created by system software to initiate a USB Setup packet on a control endpoint.
244 //
245 typedef struct _TRANSFER_TRB_CONTROL_SETUP {
246 UINT32 bmRequestType : 8;
247 UINT32 bRequest : 8;
248 UINT32 wValue : 16;
249
250 UINT32 wIndex : 16;
251 UINT32 wLength : 16;
252
253 UINT32 Length : 17;
254 UINT32 RsvdZ1 : 5;
255 UINT32 IntTarget : 10;
256
257 UINT32 CycleBit : 1;
258 UINT32 RsvdZ2 : 4;
259 UINT32 IOC : 1;
260 UINT32 IDT : 1;
261 UINT32 RsvdZ3 : 3;
262 UINT32 Type : 6;
263 UINT32 TRT : 2;
264 UINT32 RsvdZ4 : 14;
265 } TRANSFER_TRB_CONTROL_SETUP;
266
267 //
268 // 6.4.1.2.2 Data Stage TRB
269 // A Data Stage TRB is used generate the Data stage transaction of a USB Control transfer.
270 //
271 typedef struct _TRANSFER_TRB_CONTROL_DATA {
272 UINT32 TRBPtrLo;
273
274 UINT32 TRBPtrHi;
275
276 UINT32 Length : 17;
277 UINT32 TDSize : 5;
278 UINT32 IntTarget : 10;
279
280 UINT32 CycleBit : 1;
281 UINT32 ENT : 1;
282 UINT32 ISP : 1;
283 UINT32 NS : 1;
284 UINT32 CH : 1;
285 UINT32 IOC : 1;
286 UINT32 IDT : 1;
287 UINT32 RsvdZ1 : 3;
288 UINT32 Type : 6;
289 UINT32 DIR : 1;
290 UINT32 RsvdZ2 : 15;
291 } TRANSFER_TRB_CONTROL_DATA;
292
293 //
294 // 6.4.1.2.2 Data Stage TRB
295 // A Data Stage TRB is used generate the Data stage transaction of a USB Control transfer.
296 //
297 typedef struct _TRANSFER_TRB_CONTROL_STATUS {
298 UINT32 RsvdZ1;
299 UINT32 RsvdZ2;
300
301 UINT32 RsvdZ3 : 22;
302 UINT32 IntTarget : 10;
303
304 UINT32 CycleBit : 1;
305 UINT32 ENT : 1;
306 UINT32 RsvdZ4 : 2;
307 UINT32 CH : 1;
308 UINT32 IOC : 1;
309 UINT32 RsvdZ5 : 4;
310 UINT32 Type : 6;
311 UINT32 DIR : 1;
312 UINT32 RsvdZ6 : 15;
313 } TRANSFER_TRB_CONTROL_STATUS;
314
315 //
316 // 6.4.2.1 Transfer Event TRB
317 // A Transfer Event provides the completion status associated with a Transfer TRB. Refer to section 4.11.3.1
318 // for more information on the use and operation of Transfer Events.
319 //
320 typedef struct _EVT_TRB_TRANSFER {
321 UINT32 TRBPtrLo;
322
323 UINT32 TRBPtrHi;
324
325 UINT32 Length : 24;
326 UINT32 Completecode : 8;
327
328 UINT32 CycleBit : 1;
329 UINT32 RsvdZ1 : 1;
330 UINT32 ED : 1;
331 UINT32 RsvdZ2 : 7;
332 UINT32 Type : 6;
333 UINT32 EndpointId : 5;
334 UINT32 RsvdZ3 : 3;
335 UINT32 SlotId : 8;
336 } EVT_TRB_TRANSFER;
337
338 //
339 // 6.4.2.2 Command Completion Event TRB
340 // A Command Completion Event TRB shall be generated by the xHC when a command completes on the
341 // Command Ring. Refer to section 4.11.4 for more information on the use of Command Completion Events.
342 //
343 typedef struct _EVT_TRB_COMMAND_COMPLETION {
344 UINT32 TRBPtrLo;
345
346 UINT32 TRBPtrHi;
347
348 UINT32 RsvdZ2 : 24;
349 UINT32 Completecode : 8;
350
351 UINT32 CycleBit : 1;
352 UINT32 RsvdZ3 : 9;
353 UINT32 Type : 6;
354 UINT32 VFID : 8;
355 UINT32 SlotId : 8;
356 } EVT_TRB_COMMAND_COMPLETION;
357
358 typedef union _TRB {
359 TRB_TEMPLATE TrbTemplate;
360 TRANSFER_TRB_NORMAL TrbNormal;
361 TRANSFER_TRB_CONTROL_SETUP TrbCtrSetup;
362 TRANSFER_TRB_CONTROL_DATA TrbCtrData;
363 TRANSFER_TRB_CONTROL_STATUS TrbCtrStatus;
364 } TRB;
365
366 //
367 // 6.4.3.1 No Op Command TRB
368 // The No Op Command TRB provides a simple means for verifying the operation of the Command Ring
369 // mechanisms offered by the xHCI.
370 //
371 typedef struct _CMD_TRB_NO_OP {
372 UINT32 RsvdZ0;
373 UINT32 RsvdZ1;
374 UINT32 RsvdZ2;
375
376 UINT32 CycleBit : 1;
377 UINT32 RsvdZ3 : 9;
378 UINT32 Type : 6;
379 UINT32 RsvdZ4 : 16;
380 } CMD_TRB_NO_OP;
381
382 //
383 // 6.4.3.2 Enable Slot Command TRB
384 // The Enable Slot Command TRB causes the xHC to select an available Device Slot and return the ID of the
385 // selected slot to the host in a Command Completion Event.
386 //
387 typedef struct _CMD_TRB_ENABLE_SLOT {
388 UINT32 RsvdZ0;
389 UINT32 RsvdZ1;
390 UINT32 RsvdZ2;
391
392 UINT32 CycleBit : 1;
393 UINT32 RsvdZ3 : 9;
394 UINT32 Type : 6;
395 UINT32 RsvdZ4 : 16;
396 } CMD_TRB_ENABLE_SLOT;
397
398 //
399 // 6.4.3.3 Disable Slot Command TRB
400 // The Disable Slot Command TRB releases any bandwidth assigned to the disabled slot and frees any
401 // internal xHC resources assigned to the slot.
402 //
403 typedef struct _CMD_TRB_DISABLE_SLOT {
404 UINT32 RsvdZ0;
405 UINT32 RsvdZ1;
406 UINT32 RsvdZ2;
407
408 UINT32 CycleBit : 1;
409 UINT32 RsvdZ3 : 9;
410 UINT32 Type : 6;
411 UINT32 RsvdZ4 : 8;
412 UINT32 SlotId : 8;
413 } CMD_TRB_DISABLE_SLOT;
414
415 //
416 // 6.4.3.4 Address Device Command TRB
417 // The Address Device Command TRB transitions the selected Device Context from the Default to the
418 // Addressed state and causes the xHC to select an address for the USB device in the Default State and
419 // issue a SET_ADDRESS request to the USB device.
420 //
421 typedef struct _CMD_TRB_ADDRESS_DEVICE {
422 UINT32 PtrLo;
423
424 UINT32 PtrHi;
425
426 UINT32 RsvdZ1;
427
428 UINT32 CycleBit : 1;
429 UINT32 RsvdZ2 : 8;
430 UINT32 BSR : 1;
431 UINT32 Type : 6;
432 UINT32 RsvdZ3 : 8;
433 UINT32 SlotId : 8;
434 } CMD_TRB_ADDRESS_DEVICE;
435
436 //
437 // 6.4.3.5 Configure Endpoint Command TRB
438 // The Configure Endpoint Command TRB evaluates the bandwidth and resource requirements of the
439 // endpoints selected by the command.
440 //
441 typedef struct _CMD_TRB_CONFIG_ENDPOINT {
442 UINT32 PtrLo;
443
444 UINT32 PtrHi;
445
446 UINT32 RsvdZ1;
447
448 UINT32 CycleBit : 1;
449 UINT32 RsvdZ2 : 8;
450 UINT32 DC : 1;
451 UINT32 Type : 6;
452 UINT32 RsvdZ3 : 8;
453 UINT32 SlotId : 8;
454 } CMD_TRB_CONFIG_ENDPOINT;
455
456 //
457 // 6.4.3.6 Evaluate Context Command TRB
458 // The Evaluate Context Command TRB is used by system software to inform the xHC that the selected
459 // Context data structures in the Device Context have been modified by system software and that the xHC
460 // shall evaluate any changes
461 //
462 typedef struct _CMD_TRB_EVALUATE_CONTEXT {
463 UINT32 PtrLo;
464
465 UINT32 PtrHi;
466
467 UINT32 RsvdZ1;
468
469 UINT32 CycleBit : 1;
470 UINT32 RsvdZ2 : 9;
471 UINT32 Type : 6;
472 UINT32 RsvdZ3 : 8;
473 UINT32 SlotId : 8;
474 } CMD_TRB_EVALUATE_CONTEXT;
475
476 //
477 // 6.4.3.7 Reset Endpoint Command TRB
478 // The Reset Endpoint Command TRB is used by system software to reset a specified Transfer Ring
479 //
480 typedef struct _CMD_TRB_RESET_ENDPOINT {
481 UINT32 RsvdZ0;
482 UINT32 RsvdZ1;
483 UINT32 RsvdZ2;
484
485 UINT32 CycleBit : 1;
486 UINT32 RsvdZ3 : 8;
487 UINT32 TSP : 1;
488 UINT32 Type : 6;
489 UINT32 EDID : 5;
490 UINT32 RsvdZ4 : 3;
491 UINT32 SlotId : 8;
492 } CMD_TRB_RESET_ENDPOINT;
493
494 //
495 // 6.4.3.8 Stop Endpoint Command TRB
496 // The Stop Endpoint Command TRB command allows software to stop the xHC execution of the TDs on a
497 // Transfer Ring and temporarily take ownership of TDs that had previously been passed to the xHC.
498 //
499 typedef struct _CMD_TRB_STOP_ENDPOINT {
500 UINT32 RsvdZ0;
501 UINT32 RsvdZ1;
502 UINT32 RsvdZ2;
503
504 UINT32 CycleBit : 1;
505 UINT32 RsvdZ3 : 9;
506 UINT32 Type : 6;
507 UINT32 EDID : 5;
508 UINT32 RsvdZ4 : 2;
509 UINT32 SP : 1;
510 UINT32 SlotId : 8;
511 } CMD_TRB_STOP_ENDPOINT;
512
513 //
514 // 6.4.3.9 Set TR Dequeue Pointer Command TRB
515 // The Set TR Dequeue Pointer Command TRB is used by system software to modify the TR Dequeue
516 // Pointer and DCS fields of an Endpoint or Stream Context.
517 //
518 typedef struct _CMD_SET_TR_DEQ_POINTER {
519 UINT32 PtrLo;
520
521 UINT32 PtrHi;
522
523 UINT32 RsvdZ1 : 16;
524 UINT32 StreamID : 16;
525
526 UINT32 CycleBit : 1;
527 UINT32 RsvdZ2 : 9;
528 UINT32 Type : 6;
529 UINT32 Endpoint : 5;
530 UINT32 RsvdZ3 : 3;
531 UINT32 SlotId : 8;
532 } CMD_SET_TR_DEQ_POINTER;
533
534 //
535 // 6.4.4.1 Link TRB
536 // A Link TRB provides support for non-contiguous TRB Rings.
537 //
538 typedef struct _LINK_TRB {
539 UINT32 PtrLo;
540
541 UINT32 PtrHi;
542
543 UINT32 RsvdZ1 : 22;
544 UINT32 InterTarget : 10;
545
546 UINT32 CycleBit : 1;
547 UINT32 TC : 1;
548 UINT32 RsvdZ2 : 2;
549 UINT32 CH : 1;
550 UINT32 IOC : 1;
551 UINT32 RsvdZ3 : 4;
552 UINT32 Type : 6;
553 UINT32 RsvdZ4 : 16;
554 } LINK_TRB;
555
556 //
557 // 6.2.2 Slot Context
558 //
559 typedef struct _SLOT_CONTEXT {
560 UINT32 RouteString : 20;
561 UINT32 Speed : 4;
562 UINT32 RsvdZ1 : 1;
563 UINT32 MTT : 1;
564 UINT32 Hub : 1;
565 UINT32 ContextEntries : 5;
566
567 UINT32 MaxExitLatency : 16;
568 UINT32 RootHubPortNum : 8;
569 UINT32 PortNum : 8;
570
571 UINT32 TTHubSlotId : 8;
572 UINT32 TTPortNum : 8;
573 UINT32 TTT : 2;
574 UINT32 RsvdZ2 : 4;
575 UINT32 InterTarget : 10;
576
577 UINT32 DeviceAddress : 8;
578 UINT32 RsvdZ3 : 19;
579 UINT32 SlotState : 5;
580
581 UINT32 RsvdZ4;
582 UINT32 RsvdZ5;
583 UINT32 RsvdZ6;
584 UINT32 RsvdZ7;
585 } SLOT_CONTEXT;
586
587 typedef struct _SLOT_CONTEXT_64 {
588 UINT32 RouteString : 20;
589 UINT32 Speed : 4;
590 UINT32 RsvdZ1 : 1;
591 UINT32 MTT : 1;
592 UINT32 Hub : 1;
593 UINT32 ContextEntries : 5;
594
595 UINT32 MaxExitLatency : 16;
596 UINT32 RootHubPortNum : 8;
597 UINT32 PortNum : 8;
598
599 UINT32 TTHubSlotId : 8;
600 UINT32 TTPortNum : 8;
601 UINT32 TTT : 2;
602 UINT32 RsvdZ2 : 4;
603 UINT32 InterTarget : 10;
604
605 UINT32 DeviceAddress : 8;
606 UINT32 RsvdZ3 : 19;
607 UINT32 SlotState : 5;
608
609 UINT32 RsvdZ4;
610 UINT32 RsvdZ5;
611 UINT32 RsvdZ6;
612 UINT32 RsvdZ7;
613
614 UINT32 RsvdZ8;
615 UINT32 RsvdZ9;
616 UINT32 RsvdZ10;
617 UINT32 RsvdZ11;
618
619 UINT32 RsvdZ12;
620 UINT32 RsvdZ13;
621 UINT32 RsvdZ14;
622 UINT32 RsvdZ15;
623 } SLOT_CONTEXT_64;
624
625 //
626 // 6.2.3 Endpoint Context
627 //
628 typedef struct _ENDPOINT_CONTEXT {
629 UINT32 EPState : 3;
630 UINT32 RsvdZ1 : 5;
631 UINT32 Mult : 2;
632 UINT32 MaxPStreams : 5;
633 UINT32 LSA : 1;
634 UINT32 Interval : 8;
635 UINT32 RsvdZ2 : 8;
636
637 UINT32 RsvdZ3 : 1;
638 UINT32 CErr : 2;
639 UINT32 EPType : 3;
640 UINT32 RsvdZ4 : 1;
641 UINT32 HID : 1;
642 UINT32 MaxBurstSize : 8;
643 UINT32 MaxPacketSize : 16;
644
645 UINT32 PtrLo;
646
647 UINT32 PtrHi;
648
649 UINT32 AverageTRBLength : 16;
650 UINT32 MaxESITPayload : 16;
651
652 UINT32 RsvdZ5;
653 UINT32 RsvdZ6;
654 UINT32 RsvdZ7;
655 } ENDPOINT_CONTEXT;
656
657 typedef struct _ENDPOINT_CONTEXT_64 {
658 UINT32 EPState : 3;
659 UINT32 RsvdZ1 : 5;
660 UINT32 Mult : 2;
661 UINT32 MaxPStreams : 5;
662 UINT32 LSA : 1;
663 UINT32 Interval : 8;
664 UINT32 RsvdZ2 : 8;
665
666 UINT32 RsvdZ3 : 1;
667 UINT32 CErr : 2;
668 UINT32 EPType : 3;
669 UINT32 RsvdZ4 : 1;
670 UINT32 HID : 1;
671 UINT32 MaxBurstSize : 8;
672 UINT32 MaxPacketSize : 16;
673
674 UINT32 PtrLo;
675
676 UINT32 PtrHi;
677
678 UINT32 AverageTRBLength : 16;
679 UINT32 MaxESITPayload : 16;
680
681 UINT32 RsvdZ5;
682 UINT32 RsvdZ6;
683 UINT32 RsvdZ7;
684
685 UINT32 RsvdZ8;
686 UINT32 RsvdZ9;
687 UINT32 RsvdZ10;
688 UINT32 RsvdZ11;
689
690 UINT32 RsvdZ12;
691 UINT32 RsvdZ13;
692 UINT32 RsvdZ14;
693 UINT32 RsvdZ15;
694 } ENDPOINT_CONTEXT_64;
695
696 //
697 // 6.2.5.1 Input Control Context
698 //
699 typedef struct _INPUT_CONTRL_CONTEXT {
700 UINT32 Dword1;
701 UINT32 Dword2;
702 UINT32 RsvdZ1;
703 UINT32 RsvdZ2;
704 UINT32 RsvdZ3;
705 UINT32 RsvdZ4;
706 UINT32 RsvdZ5;
707 UINT32 RsvdZ6;
708 } INPUT_CONTRL_CONTEXT;
709
710 typedef struct _INPUT_CONTRL_CONTEXT_64 {
711 UINT32 Dword1;
712 UINT32 Dword2;
713 UINT32 RsvdZ1;
714 UINT32 RsvdZ2;
715 UINT32 RsvdZ3;
716 UINT32 RsvdZ4;
717 UINT32 RsvdZ5;
718 UINT32 RsvdZ6;
719 UINT32 RsvdZ7;
720 UINT32 RsvdZ8;
721 UINT32 RsvdZ9;
722 UINT32 RsvdZ10;
723 UINT32 RsvdZ11;
724 UINT32 RsvdZ12;
725 UINT32 RsvdZ13;
726 UINT32 RsvdZ14;
727 } INPUT_CONTRL_CONTEXT_64;
728
729 //
730 // 6.2.1 Device Context
731 //
732 typedef struct _DEVICE_CONTEXT {
733 SLOT_CONTEXT Slot;
734 ENDPOINT_CONTEXT EP[31];
735 } DEVICE_CONTEXT;
736
737 typedef struct _DEVICE_CONTEXT_64 {
738 SLOT_CONTEXT_64 Slot;
739 ENDPOINT_CONTEXT_64 EP[31];
740 } DEVICE_CONTEXT_64;
741
742 //
743 // 6.2.5 Input Context
744 //
745 typedef struct _INPUT_CONTEXT {
746 INPUT_CONTRL_CONTEXT InputControlContext;
747 SLOT_CONTEXT Slot;
748 ENDPOINT_CONTEXT EP[31];
749 } INPUT_CONTEXT;
750
751 typedef struct _INPUT_CONTEXT_64 {
752 INPUT_CONTRL_CONTEXT_64 InputControlContext;
753 SLOT_CONTEXT_64 Slot;
754 ENDPOINT_CONTEXT_64 EP[31];
755 } INPUT_CONTEXT_64;
756
757 /**
758 Initialize the XHCI host controller for schedule.
759
760 @param Xhc The XHCI Instance to be initialized.
761
762 **/
763 VOID
764 XhcInitSched (
765 IN USB_XHCI_INSTANCE *Xhc
766 );
767
768 /**
769 Free the resouce allocated at initializing schedule.
770
771 @param Xhc The XHCI Instance.
772
773 **/
774 VOID
775 XhcFreeSched (
776 IN USB_XHCI_INSTANCE *Xhc
777 );
778
779 /**
780 Ring the door bell to notify XHCI there is a transaction to be executed through URB.
781
782 @param Xhc The XHCI Instance.
783 @param Urb The URB to be rung.
784
785 @retval EFI_SUCCESS Successfully ring the door bell.
786
787 **/
788 EFI_STATUS
789 RingIntTransferDoorBell (
790 IN USB_XHCI_INSTANCE *Xhc,
791 IN URB *Urb
792 );
793
794 /**
795 Execute the transfer by polling the URB. This is a synchronous operation.
796
797 @param Xhc The XHCI Instance.
798 @param CmdTransfer The executed URB is for cmd transfer or not.
799 @param Urb The URB to execute.
800 @param Timeout The time to wait before abort, in millisecond.
801
802 @return EFI_DEVICE_ERROR The transfer failed due to transfer error.
803 @return EFI_TIMEOUT The transfer failed due to time out.
804 @return EFI_SUCCESS The transfer finished OK.
805
806 **/
807 EFI_STATUS
808 XhcExecTransfer (
809 IN USB_XHCI_INSTANCE *Xhc,
810 IN BOOLEAN CmdTransfer,
811 IN URB *Urb,
812 IN UINTN Timeout
813 );
814
815 /**
816 Delete a single asynchronous interrupt transfer for
817 the device and endpoint.
818
819 @param Xhc The XHCI Instance.
820 @param BusAddr The logical device address assigned by UsbBus driver.
821 @param EpNum The endpoint of the target.
822
823 @retval EFI_SUCCESS An asynchronous transfer is removed.
824 @retval EFI_NOT_FOUND No transfer for the device is found.
825
826 **/
827 EFI_STATUS
828 XhciDelAsyncIntTransfer (
829 IN USB_XHCI_INSTANCE *Xhc,
830 IN UINT8 BusAddr,
831 IN UINT8 EpNum
832 );
833
834 /**
835 Remove all the asynchronous interrupt transfers.
836
837 @param Xhc The XHCI Instance.
838
839 **/
840 VOID
841 XhciDelAllAsyncIntTransfers (
842 IN USB_XHCI_INSTANCE *Xhc
843 );
844
845 /**
846 Insert a single asynchronous interrupt transfer for
847 the device and endpoint.
848
849 @param Xhc The XHCI Instance
850 @param BusAddr The logical device address assigned by UsbBus driver
851 @param EpAddr Endpoint addrress
852 @param DevSpeed The device speed
853 @param MaxPacket The max packet length of the endpoint
854 @param DataLen The length of data buffer
855 @param Callback The function to call when data is transferred
856 @param Context The context to the callback
857
858 @return Created URB or NULL
859
860 **/
861 URB *
862 XhciInsertAsyncIntTransfer (
863 IN USB_XHCI_INSTANCE *Xhc,
864 IN UINT8 BusAddr,
865 IN UINT8 EpAddr,
866 IN UINT8 DevSpeed,
867 IN UINTN MaxPacket,
868 IN UINTN DataLen,
869 IN EFI_ASYNC_USB_TRANSFER_CALLBACK Callback,
870 IN VOID *Context
871 );
872
873 /**
874 Set Bios Ownership
875
876 @param Xhc The XHCI Instance.
877
878 **/
879 VOID
880 XhcSetBiosOwnership (
881 IN USB_XHCI_INSTANCE *Xhc
882 );
883
884 /**
885 Clear Bios Ownership
886
887 @param Xhc The XHCI Instance.
888
889 **/
890 VOID
891 XhcClearBiosOwnership (
892 IN USB_XHCI_INSTANCE *Xhc
893 );
894
895 /**
896 Find out the slot id according to the device's route string.
897
898 @param Xhc The XHCI Instance.
899 @param RouteString The route string described the device location.
900
901 @return The slot id used by the device.
902
903 **/
904 UINT8
905 EFIAPI
906 XhcRouteStringToSlotId (
907 IN USB_XHCI_INSTANCE *Xhc,
908 IN USB_DEV_ROUTE RouteString
909 );
910
911 /**
912 Calculate the device context index by endpoint address and direction.
913
914 @param EpAddr The target endpoint number.
915 @param Direction The direction of the target endpoint.
916
917 @return The device context index of endpoint.
918
919 **/
920 UINT8
921 XhcEndpointToDci (
922 IN UINT8 EpAddr,
923 IN UINT8 Direction
924 );
925
926 /**
927 Ring the door bell to notify XHCI there is a transaction to be executed.
928
929 @param Xhc The XHCI Instance.
930 @param SlotId The slot id of the target device.
931 @param Dci The device context index of the target slot or endpoint.
932
933 @retval EFI_SUCCESS Successfully ring the door bell.
934
935 **/
936 EFI_STATUS
937 EFIAPI
938 XhcRingDoorBell (
939 IN USB_XHCI_INSTANCE *Xhc,
940 IN UINT8 SlotId,
941 IN UINT8 Dci
942 );
943
944 /**
945 Interrupt transfer periodic check handler.
946
947 @param Event Interrupt event.
948 @param Context Pointer to USB_XHCI_INSTANCE.
949
950 **/
951 VOID
952 EFIAPI
953 XhcMonitorAsyncRequests (
954 IN EFI_EVENT Event,
955 IN VOID *Context
956 );
957
958 /**
959 Monitor the port status change. Enable/Disable device slot if there is a device attached/detached.
960
961 @param Xhc The XHCI Instance.
962 @param ParentRouteChart The route string pointed to the parent device if it exists.
963 @param Port The port to be polled.
964 @param PortState The port state.
965
966 @retval EFI_SUCCESS Successfully enable/disable device slot according to port state.
967 @retval Others Should not appear.
968
969 **/
970 EFI_STATUS
971 EFIAPI
972 XhcPollPortStatusChange (
973 IN USB_XHCI_INSTANCE *Xhc,
974 IN USB_DEV_ROUTE ParentRouteChart,
975 IN UINT8 Port,
976 IN EFI_USB_PORT_STATUS *PortState
977 );
978
979 /**
980 Evaluate the slot context for hub device through XHCI's Configure_Endpoint cmd.
981
982 @param Xhc The XHCI Instance.
983 @param SlotId The slot id to be configured.
984 @param PortNum The total number of downstream port supported by the hub.
985 @param TTT The TT think time of the hub device.
986 @param MTT The multi-TT of the hub device.
987
988 @retval EFI_SUCCESS Successfully configure the hub device's slot context.
989
990 **/
991 EFI_STATUS
992 XhcConfigHubContext (
993 IN USB_XHCI_INSTANCE *Xhc,
994 IN UINT8 SlotId,
995 IN UINT8 PortNum,
996 IN UINT8 TTT,
997 IN UINT8 MTT
998 );
999
1000 /**
1001 Evaluate the slot context for hub device through XHCI's Configure_Endpoint cmd.
1002
1003 @param Xhc The XHCI Instance.
1004 @param SlotId The slot id to be configured.
1005 @param PortNum The total number of downstream port supported by the hub.
1006 @param TTT The TT think time of the hub device.
1007 @param MTT The multi-TT of the hub device.
1008
1009 @retval EFI_SUCCESS Successfully configure the hub device's slot context.
1010
1011 **/
1012 EFI_STATUS
1013 XhcConfigHubContext64 (
1014 IN USB_XHCI_INSTANCE *Xhc,
1015 IN UINT8 SlotId,
1016 IN UINT8 PortNum,
1017 IN UINT8 TTT,
1018 IN UINT8 MTT
1019 );
1020
1021 /**
1022 Configure all the device endpoints through XHCI's Configure_Endpoint cmd.
1023
1024 @param Xhc The XHCI Instance.
1025 @param SlotId The slot id to be configured.
1026 @param DeviceSpeed The device's speed.
1027 @param ConfigDesc The pointer to the usb device configuration descriptor.
1028
1029 @retval EFI_SUCCESS Successfully configure all the device endpoints.
1030
1031 **/
1032 EFI_STATUS
1033 EFIAPI
1034 XhcSetConfigCmd (
1035 IN USB_XHCI_INSTANCE *Xhc,
1036 IN UINT8 SlotId,
1037 IN UINT8 DeviceSpeed,
1038 IN USB_CONFIG_DESCRIPTOR *ConfigDesc
1039 );
1040
1041 /**
1042 Configure all the device endpoints through XHCI's Configure_Endpoint cmd.
1043
1044 @param Xhc The XHCI Instance.
1045 @param SlotId The slot id to be configured.
1046 @param DeviceSpeed The device's speed.
1047 @param ConfigDesc The pointer to the usb device configuration descriptor.
1048
1049 @retval EFI_SUCCESS Successfully configure all the device endpoints.
1050
1051 **/
1052 EFI_STATUS
1053 EFIAPI
1054 XhcSetConfigCmd64 (
1055 IN USB_XHCI_INSTANCE *Xhc,
1056 IN UINT8 SlotId,
1057 IN UINT8 DeviceSpeed,
1058 IN USB_CONFIG_DESCRIPTOR *ConfigDesc
1059 );
1060
1061 /**
1062 Set interface through XHCI's Configure_Endpoint cmd.
1063
1064 @param Xhc The XHCI Instance.
1065 @param SlotId The slot id to be configured.
1066 @param DeviceSpeed The device's speed.
1067 @param ConfigDesc The pointer to the usb device configuration descriptor.
1068 @param Request USB device request to send.
1069
1070 @retval EFI_SUCCESS Successfully set interface.
1071
1072 **/
1073 EFI_STATUS
1074 EFIAPI
1075 XhcSetInterface (
1076 IN USB_XHCI_INSTANCE *Xhc,
1077 IN UINT8 SlotId,
1078 IN UINT8 DeviceSpeed,
1079 IN USB_CONFIG_DESCRIPTOR *ConfigDesc,
1080 IN EFI_USB_DEVICE_REQUEST *Request
1081 );
1082
1083 /**
1084 Set interface through XHCI's Configure_Endpoint cmd.
1085
1086 @param Xhc The XHCI Instance.
1087 @param SlotId The slot id to be configured.
1088 @param DeviceSpeed The device's speed.
1089 @param ConfigDesc The pointer to the usb device configuration descriptor.
1090 @param Request USB device request to send.
1091
1092 @retval EFI_SUCCESS Successfully set interface.
1093
1094 **/
1095 EFI_STATUS
1096 EFIAPI
1097 XhcSetInterface64 (
1098 IN USB_XHCI_INSTANCE *Xhc,
1099 IN UINT8 SlotId,
1100 IN UINT8 DeviceSpeed,
1101 IN USB_CONFIG_DESCRIPTOR *ConfigDesc,
1102 IN EFI_USB_DEVICE_REQUEST *Request
1103 );
1104
1105 /**
1106 Find out the actual device address according to the requested device address from UsbBus.
1107
1108 @param Xhc The XHCI Instance.
1109 @param BusDevAddr The requested device address by UsbBus upper driver.
1110
1111 @return The actual device address assigned to the device.
1112
1113 **/
1114 UINT8
1115 EFIAPI
1116 XhcBusDevAddrToSlotId (
1117 IN USB_XHCI_INSTANCE *Xhc,
1118 IN UINT8 BusDevAddr
1119 );
1120
1121 /**
1122 Assign and initialize the device slot for a new device.
1123
1124 @param Xhc The XHCI Instance.
1125 @param ParentRouteChart The route string pointed to the parent device.
1126 @param ParentPort The port at which the device is located.
1127 @param RouteChart The route string pointed to the device.
1128 @param DeviceSpeed The device speed.
1129
1130 @retval EFI_SUCCESS Successfully assign a slot to the device and assign an address to it.
1131
1132 **/
1133 EFI_STATUS
1134 EFIAPI
1135 XhcInitializeDeviceSlot (
1136 IN USB_XHCI_INSTANCE *Xhc,
1137 IN USB_DEV_ROUTE ParentRouteChart,
1138 IN UINT16 ParentPort,
1139 IN USB_DEV_ROUTE RouteChart,
1140 IN UINT8 DeviceSpeed
1141 );
1142
1143 /**
1144 Assign and initialize the device slot for a new device.
1145
1146 @param Xhc The XHCI Instance.
1147 @param ParentRouteChart The route string pointed to the parent device.
1148 @param ParentPort The port at which the device is located.
1149 @param RouteChart The route string pointed to the device.
1150 @param DeviceSpeed The device speed.
1151
1152 @retval EFI_SUCCESS Successfully assign a slot to the device and assign an address to it.
1153
1154 **/
1155 EFI_STATUS
1156 EFIAPI
1157 XhcInitializeDeviceSlot64 (
1158 IN USB_XHCI_INSTANCE *Xhc,
1159 IN USB_DEV_ROUTE ParentRouteChart,
1160 IN UINT16 ParentPort,
1161 IN USB_DEV_ROUTE RouteChart,
1162 IN UINT8 DeviceSpeed
1163 );
1164
1165 /**
1166 Evaluate the endpoint 0 context through XHCI's Evaluate_Context cmd.
1167
1168 @param Xhc The XHCI Instance.
1169 @param SlotId The slot id to be evaluated.
1170 @param MaxPacketSize The max packet size supported by the device control transfer.
1171
1172 @retval EFI_SUCCESS Successfully evaluate the device endpoint 0.
1173
1174 **/
1175 EFI_STATUS
1176 EFIAPI
1177 XhcEvaluateContext (
1178 IN USB_XHCI_INSTANCE *Xhc,
1179 IN UINT8 SlotId,
1180 IN UINT32 MaxPacketSize
1181 );
1182
1183 /**
1184 Evaluate the endpoint 0 context through XHCI's Evaluate_Context cmd.
1185
1186 @param Xhc The XHCI Instance.
1187 @param SlotId The slot id to be evaluated.
1188 @param MaxPacketSize The max packet size supported by the device control transfer.
1189
1190 @retval EFI_SUCCESS Successfully evaluate the device endpoint 0.
1191
1192 **/
1193 EFI_STATUS
1194 EFIAPI
1195 XhcEvaluateContext64 (
1196 IN USB_XHCI_INSTANCE *Xhc,
1197 IN UINT8 SlotId,
1198 IN UINT32 MaxPacketSize
1199 );
1200
1201 /**
1202 Disable the specified device slot.
1203
1204 @param Xhc The XHCI Instance.
1205 @param SlotId The slot id to be disabled.
1206
1207 @retval EFI_SUCCESS Successfully disable the device slot.
1208
1209 **/
1210 EFI_STATUS
1211 EFIAPI
1212 XhcDisableSlotCmd (
1213 IN USB_XHCI_INSTANCE *Xhc,
1214 IN UINT8 SlotId
1215 );
1216
1217 /**
1218 Disable the specified device slot.
1219
1220 @param Xhc The XHCI Instance.
1221 @param SlotId The slot id to be disabled.
1222
1223 @retval EFI_SUCCESS Successfully disable the device slot.
1224
1225 **/
1226 EFI_STATUS
1227 EFIAPI
1228 XhcDisableSlotCmd64 (
1229 IN USB_XHCI_INSTANCE *Xhc,
1230 IN UINT8 SlotId
1231 );
1232
1233 /**
1234 Synchronize the specified transfer ring to update the enqueue and dequeue pointer.
1235
1236 @param Xhc The XHCI Instance.
1237 @param TrsRing The transfer ring to sync.
1238
1239 @retval EFI_SUCCESS The transfer ring is synchronized successfully.
1240
1241 **/
1242 EFI_STATUS
1243 EFIAPI
1244 XhcSyncTrsRing (
1245 IN USB_XHCI_INSTANCE *Xhc,
1246 TRANSFER_RING *TrsRing
1247 );
1248
1249 /**
1250 Synchronize the specified event ring to update the enqueue and dequeue pointer.
1251
1252 @param Xhc The XHCI Instance.
1253 @param EvtRing The event ring to sync.
1254
1255 @retval EFI_SUCCESS The event ring is synchronized successfully.
1256
1257 **/
1258 EFI_STATUS
1259 EFIAPI
1260 XhcSyncEventRing (
1261 IN USB_XHCI_INSTANCE *Xhc,
1262 EVENT_RING *EvtRing
1263 );
1264
1265 /**
1266 Check if there is a new generated event.
1267
1268 @param Xhc The XHCI Instance.
1269 @param EvtRing The event ring to check.
1270 @param NewEvtTrb The new event TRB found.
1271
1272 @retval EFI_SUCCESS Found a new event TRB at the event ring.
1273 @retval EFI_NOT_READY The event ring has no new event.
1274
1275 **/
1276 EFI_STATUS
1277 EFIAPI
1278 XhcCheckNewEvent (
1279 IN USB_XHCI_INSTANCE *Xhc,
1280 IN EVENT_RING *EvtRing,
1281 OUT TRB_TEMPLATE **NewEvtTrb
1282 );
1283
1284 /**
1285 Create XHCI transfer ring.
1286
1287 @param Xhc The XHCI Instance.
1288 @param TrbNum The number of TRB in the ring.
1289 @param TransferRing The created transfer ring.
1290
1291 **/
1292 VOID
1293 CreateTransferRing (
1294 IN USB_XHCI_INSTANCE *Xhc,
1295 IN UINTN TrbNum,
1296 OUT TRANSFER_RING *TransferRing
1297 );
1298
1299 /**
1300 Create XHCI event ring.
1301
1302 @param Xhc The XHCI Instance.
1303 @param EventRing The created event ring.
1304
1305 **/
1306 VOID
1307 CreateEventRing (
1308 IN USB_XHCI_INSTANCE *Xhc,
1309 OUT EVENT_RING *EventRing
1310 );
1311
1312 /**
1313 System software shall use a Reset Endpoint Command (section 4.11.4.7) to remove the Halted
1314 condition in the xHC. After the successful completion of the Reset Endpoint Command, the Endpoint
1315 Context is transitioned from the Halted to the Stopped state and the Transfer Ring of the endpoint is
1316 reenabled. The next write to the Doorbell of the Endpoint will transition the Endpoint Context from the
1317 Stopped to the Running state.
1318
1319 @param Xhc The XHCI Instance.
1320 @param Urb The urb which makes the endpoint halted.
1321
1322 @retval EFI_SUCCESS The recovery is successful.
1323 @retval Others Failed to recovery halted endpoint.
1324
1325 **/
1326 EFI_STATUS
1327 EFIAPI
1328 XhcRecoverHaltedEndpoint (
1329 IN USB_XHCI_INSTANCE *Xhc,
1330 IN URB *Urb
1331 );
1332
1333 /**
1334 System software shall use a Stop Endpoint Command (section 4.6.9) and the Set TR Dequeue Pointer
1335 Command (section 4.6.10) to remove the timed-out TDs from the xHC transfer ring. The next write to
1336 the Doorbell of the Endpoint will transition the Endpoint Context from the Stopped to the Running
1337 state.
1338
1339 @param Xhc The XHCI Instance.
1340 @param Urb The urb which doesn't get completed in a specified timeout range.
1341
1342 @retval EFI_SUCCESS The dequeuing of the TDs is successful.
1343 @retval Others Failed to stop the endpoint and dequeue the TDs.
1344
1345 **/
1346 EFI_STATUS
1347 EFIAPI
1348 XhcDequeueTrbFromEndpoint (
1349 IN USB_XHCI_INSTANCE *Xhc,
1350 IN URB *Urb
1351 );
1352
1353 /**
1354 Stop endpoint through XHCI's Stop_Endpoint cmd.
1355
1356 @param Xhc The XHCI Instance.
1357 @param SlotId The slot id to be configured.
1358 @param Dci The device context index of endpoint.
1359 @param PendingUrb The pending URB to check completion status when stopping the end point.
1360
1361 @retval EFI_SUCCESS Stop endpoint successfully.
1362 @retval Others Failed to stop endpoint.
1363
1364 **/
1365 EFI_STATUS
1366 EFIAPI
1367 XhcStopEndpoint (
1368 IN USB_XHCI_INSTANCE *Xhc,
1369 IN UINT8 SlotId,
1370 IN UINT8 Dci,
1371 IN URB *PendingUrb OPTIONAL
1372 );
1373
1374 /**
1375 Reset endpoint through XHCI's Reset_Endpoint cmd.
1376
1377 @param Xhc The XHCI Instance.
1378 @param SlotId The slot id to be configured.
1379 @param Dci The device context index of endpoint.
1380
1381 @retval EFI_SUCCESS Reset endpoint successfully.
1382 @retval Others Failed to reset endpoint.
1383
1384 **/
1385 EFI_STATUS
1386 EFIAPI
1387 XhcResetEndpoint (
1388 IN USB_XHCI_INSTANCE *Xhc,
1389 IN UINT8 SlotId,
1390 IN UINT8 Dci
1391 );
1392
1393 /**
1394 Set transfer ring dequeue pointer through XHCI's Set_Tr_Dequeue_Pointer cmd.
1395
1396 @param Xhc The XHCI Instance.
1397 @param SlotId The slot id to be configured.
1398 @param Dci The device context index of endpoint.
1399 @param Urb The dequeue pointer of the transfer ring specified
1400 by the urb to be updated.
1401
1402 @retval EFI_SUCCESS Set transfer ring dequeue pointer succeeds.
1403 @retval Others Failed to set transfer ring dequeue pointer.
1404
1405 **/
1406 EFI_STATUS
1407 EFIAPI
1408 XhcSetTrDequeuePointer (
1409 IN USB_XHCI_INSTANCE *Xhc,
1410 IN UINT8 SlotId,
1411 IN UINT8 Dci,
1412 IN URB *Urb
1413 );
1414
1415 /**
1416 Create a new URB for a new transaction.
1417
1418 @param Xhc The XHCI Instance
1419 @param DevAddr The device address
1420 @param EpAddr Endpoint addrress
1421 @param DevSpeed The device speed
1422 @param MaxPacket The max packet length of the endpoint
1423 @param Type The transaction type
1424 @param Request The standard USB request for control transfer
1425 @param Data The user data to transfer
1426 @param DataLen The length of data buffer
1427 @param Callback The function to call when data is transferred
1428 @param Context The context to the callback
1429
1430 @return Created URB or NULL
1431
1432 **/
1433 URB *
1434 XhcCreateUrb (
1435 IN USB_XHCI_INSTANCE *Xhc,
1436 IN UINT8 DevAddr,
1437 IN UINT8 EpAddr,
1438 IN UINT8 DevSpeed,
1439 IN UINTN MaxPacket,
1440 IN UINTN Type,
1441 IN EFI_USB_DEVICE_REQUEST *Request,
1442 IN VOID *Data,
1443 IN UINTN DataLen,
1444 IN EFI_ASYNC_USB_TRANSFER_CALLBACK Callback,
1445 IN VOID *Context
1446 );
1447
1448 /**
1449 Free an allocated URB.
1450
1451 @param Xhc The XHCI device.
1452 @param Urb The URB to free.
1453
1454 **/
1455 VOID
1456 XhcFreeUrb (
1457 IN USB_XHCI_INSTANCE *Xhc,
1458 IN URB *Urb
1459 );
1460
1461 /**
1462 Create a transfer TRB.
1463
1464 @param Xhc The XHCI Instance
1465 @param Urb The urb used to construct the transfer TRB.
1466
1467 @return Created TRB or NULL
1468
1469 **/
1470 EFI_STATUS
1471 XhcCreateTransferTrb (
1472 IN USB_XHCI_INSTANCE *Xhc,
1473 IN URB *Urb
1474 );
1475
1476 #endif