]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Bus/Pci/XhciPei/XhciSched.c
3dd2b8909787180ec94bc19af05c382a838d7ca1
[mirror_edk2.git] / MdeModulePkg / Bus / Pci / XhciPei / XhciSched.c
1 /** @file
2 PEIM to produce gPeiUsb2HostControllerPpiGuid based on gPeiUsbControllerPpiGuid
3 which is used to enable recovery function from USB Drivers.
4
5 Copyright (c) 2014 - 2017, Intel Corporation. All rights reserved.<BR>
6
7 This program and the accompanying materials
8 are licensed and made available under the terms and conditions
9 of the BSD License which accompanies this distribution. The
10 full text of the license may be found at
11 http://opensource.org/licenses/bsd-license.php
12
13 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
14 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
15
16 **/
17
18 #include "XhcPeim.h"
19
20 /**
21 Create a command transfer TRB to support XHCI command interfaces.
22
23 @param Xhc The XHCI device.
24 @param CmdTrb The cmd TRB to be executed.
25
26 @return Created URB or NULL.
27
28 **/
29 URB*
30 XhcPeiCreateCmdTrb (
31 IN PEI_XHC_DEV *Xhc,
32 IN TRB_TEMPLATE *CmdTrb
33 )
34 {
35 URB *Urb;
36
37 Urb = AllocateZeroPool (sizeof (URB));
38 if (Urb == NULL) {
39 return NULL;
40 }
41
42 Urb->Signature = XHC_URB_SIG;
43
44 Urb->Ring = &Xhc->CmdRing;
45 XhcPeiSyncTrsRing (Xhc, Urb->Ring);
46 Urb->TrbNum = 1;
47 Urb->TrbStart = Urb->Ring->RingEnqueue;
48 CopyMem (Urb->TrbStart, CmdTrb, sizeof (TRB_TEMPLATE));
49 Urb->TrbStart->CycleBit = Urb->Ring->RingPCS & BIT0;
50 Urb->TrbEnd = Urb->TrbStart;
51
52 return Urb;
53 }
54
55 /**
56 Execute a XHCI cmd TRB pointed by CmdTrb.
57
58 @param Xhc The XHCI device.
59 @param CmdTrb The cmd TRB to be executed.
60 @param Timeout Indicates the maximum time, in millisecond, which the
61 transfer is allowed to complete.
62 @param EvtTrb The event TRB corresponding to the cmd TRB.
63
64 @retval EFI_SUCCESS The transfer was completed successfully.
65 @retval EFI_INVALID_PARAMETER Some parameters are invalid.
66 @retval EFI_TIMEOUT The transfer failed due to timeout.
67 @retval EFI_DEVICE_ERROR The transfer failed due to host controller error.
68
69 **/
70 EFI_STATUS
71 XhcPeiCmdTransfer (
72 IN PEI_XHC_DEV *Xhc,
73 IN TRB_TEMPLATE *CmdTrb,
74 IN UINTN Timeout,
75 OUT TRB_TEMPLATE **EvtTrb
76 )
77 {
78 EFI_STATUS Status;
79 URB *Urb;
80
81 //
82 // Validate the parameters
83 //
84 if ((Xhc == NULL) || (CmdTrb == NULL)) {
85 return EFI_INVALID_PARAMETER;
86 }
87
88 Status = EFI_DEVICE_ERROR;
89
90 if (XhcPeiIsHalt (Xhc) || XhcPeiIsSysError (Xhc)) {
91 DEBUG ((EFI_D_ERROR, "XhcPeiCmdTransfer: HC is halted or has system error\n"));
92 goto ON_EXIT;
93 }
94
95 //
96 // Create a new URB, then poll the execution status.
97 //
98 Urb = XhcPeiCreateCmdTrb (Xhc, CmdTrb);
99 if (Urb == NULL) {
100 DEBUG ((EFI_D_ERROR, "XhcPeiCmdTransfer: failed to create URB\n"));
101 Status = EFI_OUT_OF_RESOURCES;
102 goto ON_EXIT;
103 }
104
105 Status = XhcPeiExecTransfer (Xhc, TRUE, Urb, Timeout);
106 *EvtTrb = Urb->EvtTrb;
107
108 if (Urb->Result == EFI_USB_NOERROR) {
109 Status = EFI_SUCCESS;
110 }
111
112 XhcPeiFreeUrb (Xhc, Urb);
113
114 ON_EXIT:
115 return Status;
116 }
117
118 /**
119 Create a new URB for a new transaction.
120
121 @param Xhc The XHCI device
122 @param BusAddr The logical device address assigned by UsbBus driver
123 @param EpAddr Endpoint addrress
124 @param DevSpeed The device speed
125 @param MaxPacket The max packet length of the endpoint
126 @param Type The transaction type
127 @param Request The standard USB request for control transfer
128 @param Data The user data to transfer
129 @param DataLen The length of data buffer
130 @param Callback The function to call when data is transferred
131 @param Context The context to the callback
132
133 @return Created URB or NULL
134
135 **/
136 URB*
137 XhcPeiCreateUrb (
138 IN PEI_XHC_DEV *Xhc,
139 IN UINT8 BusAddr,
140 IN UINT8 EpAddr,
141 IN UINT8 DevSpeed,
142 IN UINTN MaxPacket,
143 IN UINTN Type,
144 IN EFI_USB_DEVICE_REQUEST *Request,
145 IN VOID *Data,
146 IN UINTN DataLen,
147 IN EFI_ASYNC_USB_TRANSFER_CALLBACK Callback,
148 IN VOID *Context
149 )
150 {
151 USB_ENDPOINT *Ep;
152 EFI_STATUS Status;
153 URB *Urb;
154
155 Urb = AllocateZeroPool (sizeof (URB));
156 if (Urb == NULL) {
157 return NULL;
158 }
159
160 Urb->Signature = XHC_URB_SIG;
161
162 Ep = &Urb->Ep;
163 Ep->BusAddr = BusAddr;
164 Ep->EpAddr = (UINT8) (EpAddr & 0x0F);
165 Ep->Direction = ((EpAddr & 0x80) != 0) ? EfiUsbDataIn : EfiUsbDataOut;
166 Ep->DevSpeed = DevSpeed;
167 Ep->MaxPacket = MaxPacket;
168 Ep->Type = Type;
169
170 Urb->Request = Request;
171 Urb->Data = Data;
172 Urb->DataLen = DataLen;
173 Urb->Callback = Callback;
174 Urb->Context = Context;
175
176 Status = XhcPeiCreateTransferTrb (Xhc, Urb);
177 if (EFI_ERROR (Status)) {
178 DEBUG ((EFI_D_ERROR, "XhcPeiCreateUrb: XhcPeiCreateTransferTrb Failed, Status = %r\n", Status));
179 FreePool (Urb);
180 Urb = NULL;
181 }
182
183 return Urb;
184 }
185
186 /**
187 Free an allocated URB.
188
189 @param Xhc The XHCI device.
190 @param Urb The URB to free.
191
192 **/
193 VOID
194 XhcPeiFreeUrb (
195 IN PEI_XHC_DEV *Xhc,
196 IN URB *Urb
197 )
198 {
199 if ((Xhc == NULL) || (Urb == NULL)) {
200 return;
201 }
202
203 FreePool (Urb);
204 }
205
206 /**
207 Create a transfer TRB.
208
209 @param Xhc The XHCI device
210 @param Urb The urb used to construct the transfer TRB.
211
212 @return Created TRB or NULL
213
214 **/
215 EFI_STATUS
216 XhcPeiCreateTransferTrb (
217 IN PEI_XHC_DEV *Xhc,
218 IN URB *Urb
219 )
220 {
221 VOID *OutputContext;
222 TRANSFER_RING *EPRing;
223 UINT8 EPType;
224 UINT8 SlotId;
225 UINT8 Dci;
226 TRB *TrbStart;
227 UINTN TotalLen;
228 UINTN Len;
229 UINTN TrbNum;
230
231 SlotId = XhcPeiBusDevAddrToSlotId (Xhc, Urb->Ep.BusAddr);
232 if (SlotId == 0) {
233 return EFI_DEVICE_ERROR;
234 }
235
236 Urb->Finished = FALSE;
237 Urb->StartDone = FALSE;
238 Urb->EndDone = FALSE;
239 Urb->Completed = 0;
240 Urb->Result = EFI_USB_NOERROR;
241
242 Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8)(Urb->Ep.Direction));
243 EPRing = (TRANSFER_RING *) (UINTN) Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1];
244 Urb->Ring = EPRing;
245 OutputContext = Xhc->UsbDevContext[SlotId].OutputContext;
246 if (Xhc->HcCParams.Data.Csz == 0) {
247 EPType = (UINT8) ((DEVICE_CONTEXT *)OutputContext)->EP[Dci-1].EPType;
248 } else {
249 EPType = (UINT8) ((DEVICE_CONTEXT_64 *)OutputContext)->EP[Dci-1].EPType;
250 }
251
252 Urb->DataPhy = Urb->Data;
253
254 //
255 // Construct the TRB
256 //
257 XhcPeiSyncTrsRing (Xhc, EPRing);
258 Urb->TrbStart = EPRing->RingEnqueue;
259 switch (EPType) {
260 case ED_CONTROL_BIDIR:
261 //
262 // For control transfer, create SETUP_STAGE_TRB first.
263 //
264 TrbStart = (TRB *) (UINTN) EPRing->RingEnqueue;
265 TrbStart->TrbCtrSetup.bmRequestType = Urb->Request->RequestType;
266 TrbStart->TrbCtrSetup.bRequest = Urb->Request->Request;
267 TrbStart->TrbCtrSetup.wValue = Urb->Request->Value;
268 TrbStart->TrbCtrSetup.wIndex = Urb->Request->Index;
269 TrbStart->TrbCtrSetup.wLength = Urb->Request->Length;
270 TrbStart->TrbCtrSetup.Length = 8;
271 TrbStart->TrbCtrSetup.IntTarget = 0;
272 TrbStart->TrbCtrSetup.IOC = 1;
273 TrbStart->TrbCtrSetup.IDT = 1;
274 TrbStart->TrbCtrSetup.Type = TRB_TYPE_SETUP_STAGE;
275 if (Urb->Ep.Direction == EfiUsbDataIn) {
276 TrbStart->TrbCtrSetup.TRT = 3;
277 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
278 TrbStart->TrbCtrSetup.TRT = 2;
279 } else {
280 TrbStart->TrbCtrSetup.TRT = 0;
281 }
282 //
283 // Update the cycle bit
284 //
285 TrbStart->TrbCtrSetup.CycleBit = EPRing->RingPCS & BIT0;
286 Urb->TrbNum++;
287
288 //
289 // For control transfer, create DATA_STAGE_TRB.
290 //
291 if (Urb->DataLen > 0) {
292 XhcPeiSyncTrsRing (Xhc, EPRing);
293 TrbStart = (TRB *) (UINTN) EPRing->RingEnqueue;
294 TrbStart->TrbCtrData.TRBPtrLo = XHC_LOW_32BIT (Urb->DataPhy);
295 TrbStart->TrbCtrData.TRBPtrHi = XHC_HIGH_32BIT (Urb->DataPhy);
296 TrbStart->TrbCtrData.Length = (UINT32) Urb->DataLen;
297 TrbStart->TrbCtrData.TDSize = 0;
298 TrbStart->TrbCtrData.IntTarget = 0;
299 TrbStart->TrbCtrData.ISP = 1;
300 TrbStart->TrbCtrData.IOC = 1;
301 TrbStart->TrbCtrData.IDT = 0;
302 TrbStart->TrbCtrData.CH = 0;
303 TrbStart->TrbCtrData.Type = TRB_TYPE_DATA_STAGE;
304 if (Urb->Ep.Direction == EfiUsbDataIn) {
305 TrbStart->TrbCtrData.DIR = 1;
306 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
307 TrbStart->TrbCtrData.DIR = 0;
308 } else {
309 TrbStart->TrbCtrData.DIR = 0;
310 }
311 //
312 // Update the cycle bit
313 //
314 TrbStart->TrbCtrData.CycleBit = EPRing->RingPCS & BIT0;
315 Urb->TrbNum++;
316 }
317 //
318 // For control transfer, create STATUS_STAGE_TRB.
319 // Get the pointer to next TRB for status stage use
320 //
321 XhcPeiSyncTrsRing (Xhc, EPRing);
322 TrbStart = (TRB *) (UINTN) EPRing->RingEnqueue;
323 TrbStart->TrbCtrStatus.IntTarget = 0;
324 TrbStart->TrbCtrStatus.IOC = 1;
325 TrbStart->TrbCtrStatus.CH = 0;
326 TrbStart->TrbCtrStatus.Type = TRB_TYPE_STATUS_STAGE;
327 if (Urb->Ep.Direction == EfiUsbDataIn) {
328 TrbStart->TrbCtrStatus.DIR = 0;
329 } else if (Urb->Ep.Direction == EfiUsbDataOut) {
330 TrbStart->TrbCtrStatus.DIR = 1;
331 } else {
332 TrbStart->TrbCtrStatus.DIR = 0;
333 }
334 //
335 // Update the cycle bit
336 //
337 TrbStart->TrbCtrStatus.CycleBit = EPRing->RingPCS & BIT0;
338 //
339 // Update the enqueue pointer
340 //
341 XhcPeiSyncTrsRing (Xhc, EPRing);
342 Urb->TrbNum++;
343 Urb->TrbEnd = (TRB_TEMPLATE *) (UINTN) TrbStart;
344
345 break;
346
347 case ED_BULK_OUT:
348 case ED_BULK_IN:
349 TotalLen = 0;
350 Len = 0;
351 TrbNum = 0;
352 TrbStart = (TRB *) (UINTN) EPRing->RingEnqueue;
353 while (TotalLen < Urb->DataLen) {
354 if ((TotalLen + 0x10000) >= Urb->DataLen) {
355 Len = Urb->DataLen - TotalLen;
356 } else {
357 Len = 0x10000;
358 }
359 TrbStart = (TRB *)(UINTN)EPRing->RingEnqueue;
360 TrbStart->TrbNormal.TRBPtrLo = XHC_LOW_32BIT((UINT8 *) Urb->DataPhy + TotalLen);
361 TrbStart->TrbNormal.TRBPtrHi = XHC_HIGH_32BIT((UINT8 *) Urb->DataPhy + TotalLen);
362 TrbStart->TrbNormal.Length = (UINT32) Len;
363 TrbStart->TrbNormal.TDSize = 0;
364 TrbStart->TrbNormal.IntTarget = 0;
365 TrbStart->TrbNormal.ISP = 1;
366 TrbStart->TrbNormal.IOC = 1;
367 TrbStart->TrbNormal.Type = TRB_TYPE_NORMAL;
368 //
369 // Update the cycle bit
370 //
371 TrbStart->TrbNormal.CycleBit = EPRing->RingPCS & BIT0;
372
373 XhcPeiSyncTrsRing (Xhc, EPRing);
374 TrbNum++;
375 TotalLen += Len;
376 }
377
378 Urb->TrbNum = TrbNum;
379 Urb->TrbEnd = (TRB_TEMPLATE *)(UINTN)TrbStart;
380 break;
381
382 case ED_INTERRUPT_OUT:
383 case ED_INTERRUPT_IN:
384 TotalLen = 0;
385 Len = 0;
386 TrbNum = 0;
387 TrbStart = (TRB *) (UINTN) EPRing->RingEnqueue;
388 while (TotalLen < Urb->DataLen) {
389 if ((TotalLen + 0x10000) >= Urb->DataLen) {
390 Len = Urb->DataLen - TotalLen;
391 } else {
392 Len = 0x10000;
393 }
394 TrbStart = (TRB *)(UINTN)EPRing->RingEnqueue;
395 TrbStart->TrbNormal.TRBPtrLo = XHC_LOW_32BIT((UINT8 *) Urb->DataPhy + TotalLen);
396 TrbStart->TrbNormal.TRBPtrHi = XHC_HIGH_32BIT((UINT8 *) Urb->DataPhy + TotalLen);
397 TrbStart->TrbNormal.Length = (UINT32) Len;
398 TrbStart->TrbNormal.TDSize = 0;
399 TrbStart->TrbNormal.IntTarget = 0;
400 TrbStart->TrbNormal.ISP = 1;
401 TrbStart->TrbNormal.IOC = 1;
402 TrbStart->TrbNormal.Type = TRB_TYPE_NORMAL;
403 //
404 // Update the cycle bit
405 //
406 TrbStart->TrbNormal.CycleBit = EPRing->RingPCS & BIT0;
407
408 XhcPeiSyncTrsRing (Xhc, EPRing);
409 TrbNum++;
410 TotalLen += Len;
411 }
412
413 Urb->TrbNum = TrbNum;
414 Urb->TrbEnd = (TRB_TEMPLATE *)(UINTN)TrbStart;
415 break;
416
417 default:
418 DEBUG ((EFI_D_INFO, "Not supported EPType 0x%x!\n",EPType));
419 ASSERT (FALSE);
420 break;
421 }
422
423 return EFI_SUCCESS;
424 }
425
426 /**
427 System software shall use a Reset Endpoint Command (section 4.11.4.7) to remove the Halted
428 condition in the xHC. After the successful completion of the Reset Endpoint Command, the Endpoint
429 Context is transitioned from the Halted to the Stopped state and the Transfer Ring of the endpoint is
430 reenabled. The next write to the Doorbell of the Endpoint will transition the Endpoint Context from the
431 Stopped to the Running state.
432
433 @param Xhc The XHCI device.
434 @param Urb The urb which makes the endpoint halted.
435
436 @retval EFI_SUCCESS The recovery is successful.
437 @retval Others Failed to recovery halted endpoint.
438
439 **/
440 EFI_STATUS
441 XhcPeiRecoverHaltedEndpoint (
442 IN PEI_XHC_DEV *Xhc,
443 IN URB *Urb
444 )
445 {
446 EFI_STATUS Status;
447 UINT8 Dci;
448 UINT8 SlotId;
449
450 Status = EFI_SUCCESS;
451 SlotId = XhcPeiBusDevAddrToSlotId (Xhc, Urb->Ep.BusAddr);
452 if (SlotId == 0) {
453 return EFI_DEVICE_ERROR;
454 }
455 Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8) (Urb->Ep.Direction));
456
457 DEBUG ((EFI_D_INFO, "XhcPeiRecoverHaltedEndpoint: Recovery Halted Slot = %x, Dci = %x\n", SlotId, Dci));
458
459 //
460 // 1) Send Reset endpoint command to transit from halt to stop state
461 //
462 Status = XhcPeiResetEndpoint (Xhc, SlotId, Dci);
463 if (EFI_ERROR(Status)) {
464 DEBUG ((EFI_D_ERROR, "XhcPeiRecoverHaltedEndpoint: Reset Endpoint Failed, Status = %r\n", Status));
465 goto Done;
466 }
467
468 //
469 // 2) Set dequeue pointer
470 //
471 Status = XhcPeiSetTrDequeuePointer (Xhc, SlotId, Dci, Urb);
472 if (EFI_ERROR(Status)) {
473 DEBUG ((EFI_D_ERROR, "XhcPeiRecoverHaltedEndpoint: Set Dequeue Pointer Failed, Status = %r\n", Status));
474 goto Done;
475 }
476
477 //
478 // 3) Ring the doorbell to transit from stop to active
479 //
480 XhcPeiRingDoorBell (Xhc, SlotId, Dci);
481
482 Done:
483 return Status;
484 }
485
486 /**
487 System software shall use a Stop Endpoint Command (section 4.6.9) and the Set TR Dequeue Pointer
488 Command (section 4.6.10) to remove the timed-out TDs from the xHC transfer ring. The next write to
489 the Doorbell of the Endpoint will transition the Endpoint Context from the Stopped to the Running
490 state.
491
492 @param Xhc The XHCI device.
493 @param Urb The urb which doesn't get completed in a specified timeout range.
494
495 @retval EFI_SUCCESS The dequeuing of the TDs is successful.
496 @retval Others Failed to stop the endpoint and dequeue the TDs.
497
498 **/
499 EFI_STATUS
500 XhcPeiDequeueTrbFromEndpoint (
501 IN PEI_XHC_DEV *Xhc,
502 IN URB *Urb
503 )
504 {
505 EFI_STATUS Status;
506 UINT8 Dci;
507 UINT8 SlotId;
508
509 Status = EFI_SUCCESS;
510 SlotId = XhcPeiBusDevAddrToSlotId (Xhc, Urb->Ep.BusAddr);
511 if (SlotId == 0) {
512 return EFI_DEVICE_ERROR;
513 }
514 Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8) (Urb->Ep.Direction));
515
516 DEBUG ((EFI_D_INFO, "XhcPeiDequeueTrbFromEndpoint: Stop Slot = %x, Dci = %x\n", SlotId, Dci));
517
518 //
519 // 1) Send Stop endpoint command to stop endpoint.
520 //
521 Status = XhcPeiStopEndpoint (Xhc, SlotId, Dci);
522 if (EFI_ERROR(Status)) {
523 DEBUG ((EFI_D_ERROR, "XhcPeiDequeueTrbFromEndpoint: Stop Endpoint Failed, Status = %r\n", Status));
524 goto Done;
525 }
526
527 //
528 // 2) Set dequeue pointer
529 //
530 Status = XhcPeiSetTrDequeuePointer (Xhc, SlotId, Dci, Urb);
531 if (EFI_ERROR(Status)) {
532 DEBUG ((EFI_D_ERROR, "XhcPeiDequeueTrbFromEndpoint: Set Dequeue Pointer Failed, Status = %r\n", Status));
533 goto Done;
534 }
535
536 //
537 // 3) Ring the doorbell to transit from stop to active
538 //
539 XhcPeiRingDoorBell (Xhc, SlotId, Dci);
540
541 Done:
542 return Status;
543 }
544
545 /**
546 Check if the Trb is a transaction of the URB.
547
548 @param Trb The TRB to be checked
549 @param Urb The transfer ring to be checked.
550
551 @retval TRUE It is a transaction of the URB.
552 @retval FALSE It is not any transaction of the URB.
553
554 **/
555 BOOLEAN
556 XhcPeiIsTransferRingTrb (
557 IN TRB_TEMPLATE *Trb,
558 IN URB *Urb
559 )
560 {
561 TRB_TEMPLATE *CheckedTrb;
562 UINTN Index;
563
564 CheckedTrb = Urb->Ring->RingSeg0;
565
566 ASSERT (Urb->Ring->TrbNumber == CMD_RING_TRB_NUMBER || Urb->Ring->TrbNumber == TR_RING_TRB_NUMBER);
567
568 for (Index = 0; Index < Urb->Ring->TrbNumber; Index++) {
569 if (Trb == CheckedTrb) {
570 return TRUE;
571 }
572 CheckedTrb++;
573 }
574
575 return FALSE;
576 }
577
578 /**
579 Check the URB's execution result and update the URB's
580 result accordingly.
581
582 @param Xhc The XHCI device.
583 @param Urb The URB to check result.
584
585 @return Whether the result of URB transfer is finialized.
586
587 **/
588 BOOLEAN
589 XhcPeiCheckUrbResult (
590 IN PEI_XHC_DEV *Xhc,
591 IN URB *Urb
592 )
593 {
594 EVT_TRB_TRANSFER *EvtTrb;
595 TRB_TEMPLATE *TRBPtr;
596 UINTN Index;
597 UINT8 TRBType;
598 EFI_STATUS Status;
599 URB *CheckedUrb;
600 UINT64 XhcDequeue;
601 UINT32 High;
602 UINT32 Low;
603 EFI_PHYSICAL_ADDRESS PhyAddr;
604
605 ASSERT ((Xhc != NULL) && (Urb != NULL));
606
607 Status = EFI_SUCCESS;
608
609 if (Urb->Finished) {
610 goto EXIT;
611 }
612
613 EvtTrb = NULL;
614
615 if (XhcPeiIsHalt (Xhc) || XhcPeiIsSysError (Xhc)) {
616 Urb->Result |= EFI_USB_ERR_SYSTEM;
617 goto EXIT;
618 }
619
620 //
621 // Traverse the event ring to find out all new events from the previous check.
622 //
623 XhcPeiSyncEventRing (Xhc, &Xhc->EventRing);
624 for (Index = 0; Index < Xhc->EventRing.TrbNumber; Index++) {
625 Status = XhcPeiCheckNewEvent (Xhc, &Xhc->EventRing, ((TRB_TEMPLATE **) &EvtTrb));
626 if (Status == EFI_NOT_READY) {
627 //
628 // All new events are handled, return directly.
629 //
630 goto EXIT;
631 }
632
633 //
634 // Only handle COMMAND_COMPLETETION_EVENT and TRANSFER_EVENT.
635 //
636 if ((EvtTrb->Type != TRB_TYPE_COMMAND_COMPLT_EVENT) && (EvtTrb->Type != TRB_TYPE_TRANS_EVENT)) {
637 continue;
638 }
639
640 //
641 // Need convert pci device address to host address
642 //
643 PhyAddr = (EFI_PHYSICAL_ADDRESS) (EvtTrb->TRBPtrLo | LShiftU64 ((UINT64) EvtTrb->TRBPtrHi, 32));
644 TRBPtr = (TRB_TEMPLATE *) (UINTN) UsbHcGetHostAddrForPciAddr (Xhc->MemPool, (VOID *) (UINTN) PhyAddr, sizeof (TRB_TEMPLATE));
645
646 //
647 // Update the status of Urb according to the finished event regardless of whether
648 // the urb is current checked one or in the XHCI's async transfer list.
649 // This way is used to avoid that those completed async transfer events don't get
650 // handled in time and are flushed by newer coming events.
651 //
652 if (XhcPeiIsTransferRingTrb (TRBPtr, Urb)) {
653 CheckedUrb = Urb;
654 } else {
655 continue;
656 }
657
658 switch (EvtTrb->Completecode) {
659 case TRB_COMPLETION_STALL_ERROR:
660 CheckedUrb->Result |= EFI_USB_ERR_STALL;
661 CheckedUrb->Finished = TRUE;
662 DEBUG ((EFI_D_ERROR, "XhcPeiCheckUrbResult: STALL_ERROR! Completecode = %x\n", EvtTrb->Completecode));
663 goto EXIT;
664
665 case TRB_COMPLETION_BABBLE_ERROR:
666 CheckedUrb->Result |= EFI_USB_ERR_BABBLE;
667 CheckedUrb->Finished = TRUE;
668 DEBUG ((EFI_D_ERROR, "XhcPeiCheckUrbResult: BABBLE_ERROR! Completecode = %x\n", EvtTrb->Completecode));
669 goto EXIT;
670
671 case TRB_COMPLETION_DATA_BUFFER_ERROR:
672 CheckedUrb->Result |= EFI_USB_ERR_BUFFER;
673 CheckedUrb->Finished = TRUE;
674 DEBUG ((EFI_D_ERROR, "XhcPeiCheckUrbResult: ERR_BUFFER! Completecode = %x\n", EvtTrb->Completecode));
675 goto EXIT;
676
677 case TRB_COMPLETION_USB_TRANSACTION_ERROR:
678 CheckedUrb->Result |= EFI_USB_ERR_TIMEOUT;
679 CheckedUrb->Finished = TRUE;
680 DEBUG ((EFI_D_ERROR, "XhcPeiCheckUrbResult: TRANSACTION_ERROR! Completecode = %x\n", EvtTrb->Completecode));
681 goto EXIT;
682
683 case TRB_COMPLETION_SHORT_PACKET:
684 case TRB_COMPLETION_SUCCESS:
685 if (EvtTrb->Completecode == TRB_COMPLETION_SHORT_PACKET) {
686 DEBUG ((EFI_D_VERBOSE, "XhcPeiCheckUrbResult: short packet happens!\n"));
687 }
688
689 TRBType = (UINT8) (TRBPtr->Type);
690 if ((TRBType == TRB_TYPE_DATA_STAGE) ||
691 (TRBType == TRB_TYPE_NORMAL) ||
692 (TRBType == TRB_TYPE_ISOCH)) {
693 CheckedUrb->Completed += (((TRANSFER_TRB_NORMAL*)TRBPtr)->Length - EvtTrb->Length);
694 }
695
696 break;
697
698 default:
699 DEBUG ((EFI_D_ERROR, "XhcPeiCheckUrbResult: Transfer Default Error Occur! Completecode = 0x%x!\n", EvtTrb->Completecode));
700 CheckedUrb->Result |= EFI_USB_ERR_TIMEOUT;
701 CheckedUrb->Finished = TRUE;
702 goto EXIT;
703 }
704
705 //
706 // Only check first and end Trb event address
707 //
708 if (TRBPtr == CheckedUrb->TrbStart) {
709 CheckedUrb->StartDone = TRUE;
710 }
711
712 if (TRBPtr == CheckedUrb->TrbEnd) {
713 CheckedUrb->EndDone = TRUE;
714 }
715
716 if (CheckedUrb->StartDone && CheckedUrb->EndDone) {
717 CheckedUrb->Finished = TRUE;
718 CheckedUrb->EvtTrb = (TRB_TEMPLATE *) EvtTrb;
719 }
720 }
721
722 EXIT:
723
724 //
725 // Advance event ring to last available entry
726 //
727 // Some 3rd party XHCI external cards don't support single 64-bytes width register access,
728 // So divide it to two 32-bytes width register access.
729 //
730 Low = XhcPeiReadRuntimeReg (Xhc, XHC_ERDP_OFFSET);
731 High = XhcPeiReadRuntimeReg (Xhc, XHC_ERDP_OFFSET + 4);
732 XhcDequeue = (UINT64) (LShiftU64((UINT64) High, 32) | Low);
733
734 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, Xhc->EventRing.EventRingDequeue, sizeof (TRB_TEMPLATE));
735
736 if ((XhcDequeue & (~0x0F)) != (PhyAddr & (~0x0F))) {
737 //
738 // Some 3rd party XHCI external cards don't support single 64-bytes width register access,
739 // So divide it to two 32-bytes width register access.
740 //
741 XhcPeiWriteRuntimeReg (Xhc, XHC_ERDP_OFFSET, XHC_LOW_32BIT (PhyAddr) | BIT3);
742 XhcPeiWriteRuntimeReg (Xhc, XHC_ERDP_OFFSET + 4, XHC_HIGH_32BIT (PhyAddr));
743 }
744
745 return Urb->Finished;
746 }
747
748 /**
749 Execute the transfer by polling the URB. This is a synchronous operation.
750
751 @param Xhc The XHCI device.
752 @param CmdTransfer The executed URB is for cmd transfer or not.
753 @param Urb The URB to execute.
754 @param Timeout The time to wait before abort, in millisecond.
755
756 @return EFI_DEVICE_ERROR The transfer failed due to transfer error.
757 @return EFI_TIMEOUT The transfer failed due to time out.
758 @return EFI_SUCCESS The transfer finished OK.
759
760 **/
761 EFI_STATUS
762 XhcPeiExecTransfer (
763 IN PEI_XHC_DEV *Xhc,
764 IN BOOLEAN CmdTransfer,
765 IN URB *Urb,
766 IN UINTN Timeout
767 )
768 {
769 EFI_STATUS Status;
770 UINTN Index;
771 UINT64 Loop;
772 UINT8 SlotId;
773 UINT8 Dci;
774 BOOLEAN Finished;
775
776 if (CmdTransfer) {
777 SlotId = 0;
778 Dci = 0;
779 } else {
780 SlotId = XhcPeiBusDevAddrToSlotId (Xhc, Urb->Ep.BusAddr);
781 if (SlotId == 0) {
782 return EFI_DEVICE_ERROR;
783 }
784 Dci = XhcPeiEndpointToDci (Urb->Ep.EpAddr, (UINT8)(Urb->Ep.Direction));
785 }
786
787 Status = EFI_SUCCESS;
788 Loop = Timeout * XHC_1_MILLISECOND;
789 if (Timeout == 0) {
790 Loop = 0xFFFFFFFF;
791 }
792
793 XhcPeiRingDoorBell (Xhc, SlotId, Dci);
794
795 for (Index = 0; Index < Loop; Index++) {
796 Finished = XhcPeiCheckUrbResult (Xhc, Urb);
797 if (Finished) {
798 break;
799 }
800 MicroSecondDelay (XHC_1_MICROSECOND);
801 }
802
803 if (Index == Loop) {
804 Urb->Result = EFI_USB_ERR_TIMEOUT;
805 Status = EFI_TIMEOUT;
806 } else if (Urb->Result != EFI_USB_NOERROR) {
807 Status = EFI_DEVICE_ERROR;
808 }
809
810 return Status;
811 }
812
813 /**
814 Monitor the port status change. Enable/Disable device slot if there is a device attached/detached.
815
816 @param Xhc The XHCI device.
817 @param ParentRouteChart The route string pointed to the parent device if it exists.
818 @param Port The port to be polled.
819 @param PortState The port state.
820
821 @retval EFI_SUCCESS Successfully enable/disable device slot according to port state.
822 @retval Others Should not appear.
823
824 **/
825 EFI_STATUS
826 XhcPeiPollPortStatusChange (
827 IN PEI_XHC_DEV *Xhc,
828 IN USB_DEV_ROUTE ParentRouteChart,
829 IN UINT8 Port,
830 IN EFI_USB_PORT_STATUS *PortState
831 )
832 {
833 EFI_STATUS Status;
834 UINT8 Speed;
835 UINT8 SlotId;
836 USB_DEV_ROUTE RouteChart;
837
838 DEBUG ((EFI_D_INFO, "XhcPeiPollPortStatusChange: PortChangeStatus: %x PortStatus: %x\n", PortState->PortChangeStatus, PortState->PortStatus));
839
840 Status = EFI_SUCCESS;
841
842 if ((PortState->PortChangeStatus & (USB_PORT_STAT_C_CONNECTION | USB_PORT_STAT_C_ENABLE | USB_PORT_STAT_C_OVERCURRENT | USB_PORT_STAT_C_RESET)) == 0) {
843 return EFI_SUCCESS;
844 }
845
846 if (ParentRouteChart.Dword == 0) {
847 RouteChart.Route.RouteString = 0;
848 RouteChart.Route.RootPortNum = Port + 1;
849 RouteChart.Route.TierNum = 1;
850 } else {
851 if(Port < 14) {
852 RouteChart.Route.RouteString = ParentRouteChart.Route.RouteString | (Port << (4 * (ParentRouteChart.Route.TierNum - 1)));
853 } else {
854 RouteChart.Route.RouteString = ParentRouteChart.Route.RouteString | (15 << (4 * (ParentRouteChart.Route.TierNum - 1)));
855 }
856 RouteChart.Route.RootPortNum = ParentRouteChart.Route.RootPortNum;
857 RouteChart.Route.TierNum = ParentRouteChart.Route.TierNum + 1;
858 }
859
860 SlotId = XhcPeiRouteStringToSlotId (Xhc, RouteChart);
861 if (SlotId != 0) {
862 if (Xhc->HcCParams.Data.Csz == 0) {
863 Status = XhcPeiDisableSlotCmd (Xhc, SlotId);
864 } else {
865 Status = XhcPeiDisableSlotCmd64 (Xhc, SlotId);
866 }
867 }
868
869 if (((PortState->PortStatus & USB_PORT_STAT_ENABLE) != 0) &&
870 ((PortState->PortStatus & USB_PORT_STAT_CONNECTION) != 0)) {
871 //
872 // Has a device attached, Identify device speed after port is enabled.
873 //
874 Speed = EFI_USB_SPEED_FULL;
875 if ((PortState->PortStatus & USB_PORT_STAT_LOW_SPEED) != 0) {
876 Speed = EFI_USB_SPEED_LOW;
877 } else if ((PortState->PortStatus & USB_PORT_STAT_HIGH_SPEED) != 0) {
878 Speed = EFI_USB_SPEED_HIGH;
879 } else if ((PortState->PortStatus & USB_PORT_STAT_SUPER_SPEED) != 0) {
880 Speed = EFI_USB_SPEED_SUPER;
881 }
882 //
883 // Execute Enable_Slot cmd for attached device, initialize device context and assign device address.
884 //
885 SlotId = XhcPeiRouteStringToSlotId (Xhc, RouteChart);
886 if ((SlotId == 0) && ((PortState->PortChangeStatus & USB_PORT_STAT_C_RESET) != 0)) {
887 if (Xhc->HcCParams.Data.Csz == 0) {
888 Status = XhcPeiInitializeDeviceSlot (Xhc, ParentRouteChart, Port, RouteChart, Speed);
889 } else {
890 Status = XhcPeiInitializeDeviceSlot64 (Xhc, ParentRouteChart, Port, RouteChart, Speed);
891 }
892 }
893 }
894
895 return Status;
896 }
897
898 /**
899 Calculate the device context index by endpoint address and direction.
900
901 @param EpAddr The target endpoint number.
902 @param Direction The direction of the target endpoint.
903
904 @return The device context index of endpoint.
905
906 **/
907 UINT8
908 XhcPeiEndpointToDci (
909 IN UINT8 EpAddr,
910 IN EFI_USB_DATA_DIRECTION Direction
911 )
912 {
913 UINT8 Index;
914
915 ASSERT (EpAddr <= 15);
916
917 if (EpAddr == 0) {
918 return 1;
919 } else {
920 Index = (UINT8) (2 * EpAddr);
921 if (Direction == EfiUsbDataIn) {
922 Index += 1;
923 }
924 return Index;
925 }
926 }
927
928 /**
929 Find out the actual device address according to the requested device address from UsbBus.
930
931 @param Xhc The XHCI device.
932 @param BusDevAddr The requested device address by UsbBus upper driver.
933
934 @return The actual device address assigned to the device.
935
936 **/
937 UINT8
938 XhcPeiBusDevAddrToSlotId (
939 IN PEI_XHC_DEV *Xhc,
940 IN UINT8 BusDevAddr
941 )
942 {
943 UINT8 Index;
944
945 for (Index = 0; Index < 255; Index++) {
946 if (Xhc->UsbDevContext[Index + 1].Enabled &&
947 (Xhc->UsbDevContext[Index + 1].SlotId != 0) &&
948 (Xhc->UsbDevContext[Index + 1].BusDevAddr == BusDevAddr)) {
949 break;
950 }
951 }
952
953 if (Index == 255) {
954 return 0;
955 }
956
957 return Xhc->UsbDevContext[Index + 1].SlotId;
958 }
959
960 /**
961 Find out the slot id according to the device's route string.
962
963 @param Xhc The XHCI device.
964 @param RouteString The route string described the device location.
965
966 @return The slot id used by the device.
967
968 **/
969 UINT8
970 XhcPeiRouteStringToSlotId (
971 IN PEI_XHC_DEV *Xhc,
972 IN USB_DEV_ROUTE RouteString
973 )
974 {
975 UINT8 Index;
976
977 for (Index = 0; Index < 255; Index++) {
978 if (Xhc->UsbDevContext[Index + 1].Enabled &&
979 (Xhc->UsbDevContext[Index + 1].SlotId != 0) &&
980 (Xhc->UsbDevContext[Index + 1].RouteString.Dword == RouteString.Dword)) {
981 break;
982 }
983 }
984
985 if (Index == 255) {
986 return 0;
987 }
988
989 return Xhc->UsbDevContext[Index + 1].SlotId;
990 }
991
992 /**
993 Ring the door bell to notify XHCI there is a transaction to be executed.
994
995 @param Xhc The XHCI device.
996 @param SlotId The slot id of the target device.
997 @param Dci The device context index of the target slot or endpoint.
998
999 **/
1000 VOID
1001 XhcPeiRingDoorBell (
1002 IN PEI_XHC_DEV *Xhc,
1003 IN UINT8 SlotId,
1004 IN UINT8 Dci
1005 )
1006 {
1007 if (SlotId == 0) {
1008 XhcPeiWriteDoorBellReg (Xhc, 0, 0);
1009 } else {
1010 XhcPeiWriteDoorBellReg (Xhc, SlotId * sizeof (UINT32), Dci);
1011 }
1012 }
1013
1014 /**
1015 Assign and initialize the device slot for a new device.
1016
1017 @param Xhc The XHCI device.
1018 @param ParentRouteChart The route string pointed to the parent device.
1019 @param ParentPort The port at which the device is located.
1020 @param RouteChart The route string pointed to the device.
1021 @param DeviceSpeed The device speed.
1022
1023 @retval EFI_SUCCESS Successfully assign a slot to the device and assign an address to it.
1024 @retval Others Fail to initialize device slot.
1025
1026 **/
1027 EFI_STATUS
1028 XhcPeiInitializeDeviceSlot (
1029 IN PEI_XHC_DEV *Xhc,
1030 IN USB_DEV_ROUTE ParentRouteChart,
1031 IN UINT16 ParentPort,
1032 IN USB_DEV_ROUTE RouteChart,
1033 IN UINT8 DeviceSpeed
1034 )
1035 {
1036 EFI_STATUS Status;
1037 EVT_TRB_COMMAND_COMPLETION *EvtTrb;
1038 INPUT_CONTEXT *InputContext;
1039 DEVICE_CONTEXT *OutputContext;
1040 TRANSFER_RING *EndpointTransferRing;
1041 CMD_TRB_ADDRESS_DEVICE CmdTrbAddr;
1042 UINT8 DeviceAddress;
1043 CMD_TRB_ENABLE_SLOT CmdTrb;
1044 UINT8 SlotId;
1045 UINT8 ParentSlotId;
1046 DEVICE_CONTEXT *ParentDeviceContext;
1047 EFI_PHYSICAL_ADDRESS PhyAddr;
1048
1049 ZeroMem (&CmdTrb, sizeof (CMD_TRB_ENABLE_SLOT));
1050 CmdTrb.CycleBit = 1;
1051 CmdTrb.Type = TRB_TYPE_EN_SLOT;
1052
1053 Status = XhcPeiCmdTransfer (
1054 Xhc,
1055 (TRB_TEMPLATE *) (UINTN) &CmdTrb,
1056 XHC_GENERIC_TIMEOUT,
1057 (TRB_TEMPLATE **) (UINTN) &EvtTrb
1058 );
1059 if (EFI_ERROR (Status)) {
1060 DEBUG ((EFI_D_ERROR, "XhcPeiInitializeDeviceSlot: Enable Slot Failed, Status = %r\n", Status));
1061 return Status;
1062 }
1063 ASSERT (EvtTrb->SlotId <= Xhc->MaxSlotsEn);
1064 DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot: Enable Slot Successfully, The Slot ID = 0x%x\n", EvtTrb->SlotId));
1065 SlotId = (UINT8) EvtTrb->SlotId;
1066 ASSERT (SlotId != 0);
1067
1068 ZeroMem (&Xhc->UsbDevContext[SlotId], sizeof (USB_DEV_CONTEXT));
1069 Xhc->UsbDevContext[SlotId].Enabled = TRUE;
1070 Xhc->UsbDevContext[SlotId].SlotId = SlotId;
1071 Xhc->UsbDevContext[SlotId].RouteString.Dword = RouteChart.Dword;
1072 Xhc->UsbDevContext[SlotId].ParentRouteString.Dword = ParentRouteChart.Dword;
1073
1074 //
1075 // 4.3.3 Device Slot Initialization
1076 // 1) Allocate an Input Context data structure (6.2.5) and initialize all fields to '0'.
1077 //
1078 InputContext = UsbHcAllocateMem (Xhc->MemPool, sizeof (INPUT_CONTEXT));
1079 ASSERT (InputContext != NULL);
1080 ASSERT (((UINTN) InputContext & 0x3F) == 0);
1081 ZeroMem (InputContext, sizeof (INPUT_CONTEXT));
1082
1083 Xhc->UsbDevContext[SlotId].InputContext = (VOID *) InputContext;
1084
1085 //
1086 // 2) Initialize the Input Control Context (6.2.5.1) of the Input Context by setting the A0 and A1
1087 // flags to '1'. These flags indicate that the Slot Context and the Endpoint 0 Context of the Input
1088 // Context are affected by the command.
1089 //
1090 InputContext->InputControlContext.Dword2 |= (BIT0 | BIT1);
1091
1092 //
1093 // 3) Initialize the Input Slot Context data structure
1094 //
1095 InputContext->Slot.RouteString = RouteChart.Route.RouteString;
1096 InputContext->Slot.Speed = DeviceSpeed + 1;
1097 InputContext->Slot.ContextEntries = 1;
1098 InputContext->Slot.RootHubPortNum = RouteChart.Route.RootPortNum;
1099
1100 if (RouteChart.Route.RouteString != 0) {
1101 //
1102 // The device is behind of hub device.
1103 //
1104 ParentSlotId = XhcPeiRouteStringToSlotId (Xhc, ParentRouteChart);
1105 ASSERT (ParentSlotId != 0);
1106 //
1107 // If the Full/Low device attached to a High Speed Hub, init the TTPortNum and TTHubSlotId field of slot context
1108 //
1109 ParentDeviceContext = (DEVICE_CONTEXT *) Xhc->UsbDevContext[ParentSlotId].OutputContext;
1110 if ((ParentDeviceContext->Slot.TTPortNum == 0) &&
1111 (ParentDeviceContext->Slot.TTHubSlotId == 0)) {
1112 if ((ParentDeviceContext->Slot.Speed == (EFI_USB_SPEED_HIGH + 1)) && (DeviceSpeed < EFI_USB_SPEED_HIGH)) {
1113 //
1114 // Full/Low device attached to High speed hub port that isolates the high speed signaling
1115 // environment from Full/Low speed signaling environment for a device
1116 //
1117 InputContext->Slot.TTPortNum = ParentPort;
1118 InputContext->Slot.TTHubSlotId = ParentSlotId;
1119 }
1120 } else {
1121 //
1122 // Inherit the TT parameters from parent device.
1123 //
1124 InputContext->Slot.TTPortNum = ParentDeviceContext->Slot.TTPortNum;
1125 InputContext->Slot.TTHubSlotId = ParentDeviceContext->Slot.TTHubSlotId;
1126 //
1127 // If the device is a High speed device then down the speed to be the same as its parent Hub
1128 //
1129 if (DeviceSpeed == EFI_USB_SPEED_HIGH) {
1130 InputContext->Slot.Speed = ParentDeviceContext->Slot.Speed;
1131 }
1132 }
1133 }
1134
1135 //
1136 // 4) Allocate and initialize the Transfer Ring for the Default Control Endpoint.
1137 //
1138 EndpointTransferRing = AllocateZeroPool (sizeof (TRANSFER_RING));
1139 Xhc->UsbDevContext[SlotId].EndpointTransferRing[0] = EndpointTransferRing;
1140 XhcPeiCreateTransferRing (Xhc, TR_RING_TRB_NUMBER, (TRANSFER_RING *) Xhc->UsbDevContext[SlotId].EndpointTransferRing[0]);
1141 //
1142 // 5) Initialize the Input default control Endpoint 0 Context (6.2.3).
1143 //
1144 InputContext->EP[0].EPType = ED_CONTROL_BIDIR;
1145
1146 if (DeviceSpeed == EFI_USB_SPEED_SUPER) {
1147 InputContext->EP[0].MaxPacketSize = 512;
1148 } else if (DeviceSpeed == EFI_USB_SPEED_HIGH) {
1149 InputContext->EP[0].MaxPacketSize = 64;
1150 } else {
1151 InputContext->EP[0].MaxPacketSize = 8;
1152 }
1153 //
1154 // Initial value of Average TRB Length for Control endpoints would be 8B, Interrupt endpoints
1155 // 1KB, and Bulk and Isoch endpoints 3KB.
1156 //
1157 InputContext->EP[0].AverageTRBLength = 8;
1158 InputContext->EP[0].MaxBurstSize = 0;
1159 InputContext->EP[0].Interval = 0;
1160 InputContext->EP[0].MaxPStreams = 0;
1161 InputContext->EP[0].Mult = 0;
1162 InputContext->EP[0].CErr = 3;
1163
1164 //
1165 // Init the DCS(dequeue cycle state) as the transfer ring's CCS
1166 //
1167 PhyAddr = UsbHcGetPciAddrForHostAddr (
1168 Xhc->MemPool,
1169 ((TRANSFER_RING *) (UINTN) Xhc->UsbDevContext[SlotId].EndpointTransferRing[0])->RingSeg0,
1170 sizeof (TRB_TEMPLATE) * TR_RING_TRB_NUMBER
1171 );
1172 InputContext->EP[0].PtrLo = XHC_LOW_32BIT (PhyAddr) | BIT0;
1173 InputContext->EP[0].PtrHi = XHC_HIGH_32BIT (PhyAddr);
1174
1175 //
1176 // 6) Allocate the Output Device Context data structure (6.2.1) and initialize it to '0'.
1177 //
1178 OutputContext = UsbHcAllocateMem (Xhc->MemPool, sizeof (DEVICE_CONTEXT));
1179 ASSERT (OutputContext != NULL);
1180 ASSERT (((UINTN) OutputContext & 0x3F) == 0);
1181 ZeroMem (OutputContext, sizeof (DEVICE_CONTEXT));
1182
1183 Xhc->UsbDevContext[SlotId].OutputContext = OutputContext;
1184 //
1185 // 7) Load the appropriate (Device Slot ID) entry in the Device Context Base Address Array (5.4.6) with
1186 // a pointer to the Output Device Context data structure (6.2.1).
1187 //
1188 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, OutputContext, sizeof (DEVICE_CONTEXT));
1189 //
1190 // Fill DCBAA with PCI device address
1191 //
1192 Xhc->DCBAA[SlotId] = (UINT64) (UINTN) PhyAddr;
1193
1194 //
1195 // 8) Issue an Address Device Command for the Device Slot, where the command points to the Input
1196 // Context data structure described above.
1197 //
1198 // Delay 10ms to meet TRSTRCY delay requirement in usb 2.0 spec chapter 7.1.7.5 before sending SetAddress() request
1199 // to device.
1200 //
1201 MicroSecondDelay (XHC_RESET_RECOVERY_DELAY);
1202 ZeroMem (&CmdTrbAddr, sizeof (CmdTrbAddr));
1203 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, Xhc->UsbDevContext[SlotId].InputContext, sizeof (INPUT_CONTEXT));
1204 CmdTrbAddr.PtrLo = XHC_LOW_32BIT (PhyAddr);
1205 CmdTrbAddr.PtrHi = XHC_HIGH_32BIT (PhyAddr);
1206 CmdTrbAddr.CycleBit = 1;
1207 CmdTrbAddr.Type = TRB_TYPE_ADDRESS_DEV;
1208 CmdTrbAddr.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
1209 Status = XhcPeiCmdTransfer (
1210 Xhc,
1211 (TRB_TEMPLATE *) (UINTN) &CmdTrbAddr,
1212 XHC_GENERIC_TIMEOUT,
1213 (TRB_TEMPLATE **) (UINTN) &EvtTrb
1214 );
1215 if (!EFI_ERROR (Status)) {
1216 DeviceAddress = (UINT8) OutputContext->Slot.DeviceAddress;
1217 DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot: Address %d assigned successfully\n", DeviceAddress));
1218 Xhc->UsbDevContext[SlotId].XhciDevAddr = DeviceAddress;
1219 }
1220
1221 DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot: Enable Slot, Status = %r\n", Status));
1222 return Status;
1223 }
1224
1225 /**
1226 Assign and initialize the device slot for a new device.
1227
1228 @param Xhc The XHCI device.
1229 @param ParentRouteChart The route string pointed to the parent device.
1230 @param ParentPort The port at which the device is located.
1231 @param RouteChart The route string pointed to the device.
1232 @param DeviceSpeed The device speed.
1233
1234 @retval EFI_SUCCESS Successfully assign a slot to the device and assign an address to it.
1235 @retval Others Fail to initialize device slot.
1236
1237 **/
1238 EFI_STATUS
1239 XhcPeiInitializeDeviceSlot64 (
1240 IN PEI_XHC_DEV *Xhc,
1241 IN USB_DEV_ROUTE ParentRouteChart,
1242 IN UINT16 ParentPort,
1243 IN USB_DEV_ROUTE RouteChart,
1244 IN UINT8 DeviceSpeed
1245 )
1246 {
1247 EFI_STATUS Status;
1248 EVT_TRB_COMMAND_COMPLETION *EvtTrb;
1249 INPUT_CONTEXT_64 *InputContext;
1250 DEVICE_CONTEXT_64 *OutputContext;
1251 TRANSFER_RING *EndpointTransferRing;
1252 CMD_TRB_ADDRESS_DEVICE CmdTrbAddr;
1253 UINT8 DeviceAddress;
1254 CMD_TRB_ENABLE_SLOT CmdTrb;
1255 UINT8 SlotId;
1256 UINT8 ParentSlotId;
1257 DEVICE_CONTEXT_64 *ParentDeviceContext;
1258 EFI_PHYSICAL_ADDRESS PhyAddr;
1259
1260 ZeroMem (&CmdTrb, sizeof (CMD_TRB_ENABLE_SLOT));
1261 CmdTrb.CycleBit = 1;
1262 CmdTrb.Type = TRB_TYPE_EN_SLOT;
1263
1264 Status = XhcPeiCmdTransfer (
1265 Xhc,
1266 (TRB_TEMPLATE *) (UINTN) &CmdTrb,
1267 XHC_GENERIC_TIMEOUT,
1268 (TRB_TEMPLATE **) (UINTN) &EvtTrb
1269 );
1270 if (EFI_ERROR (Status)) {
1271 DEBUG ((EFI_D_ERROR, "XhcPeiInitializeDeviceSlot64: Enable Slot Failed, Status = %r\n", Status));
1272 return Status;
1273 }
1274 ASSERT (EvtTrb->SlotId <= Xhc->MaxSlotsEn);
1275 DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot64: Enable Slot Successfully, The Slot ID = 0x%x\n", EvtTrb->SlotId));
1276 SlotId = (UINT8)EvtTrb->SlotId;
1277 ASSERT (SlotId != 0);
1278
1279 ZeroMem (&Xhc->UsbDevContext[SlotId], sizeof (USB_DEV_CONTEXT));
1280 Xhc->UsbDevContext[SlotId].Enabled = TRUE;
1281 Xhc->UsbDevContext[SlotId].SlotId = SlotId;
1282 Xhc->UsbDevContext[SlotId].RouteString.Dword = RouteChart.Dword;
1283 Xhc->UsbDevContext[SlotId].ParentRouteString.Dword = ParentRouteChart.Dword;
1284
1285 //
1286 // 4.3.3 Device Slot Initialization
1287 // 1) Allocate an Input Context data structure (6.2.5) and initialize all fields to '0'.
1288 //
1289 InputContext = UsbHcAllocateMem (Xhc->MemPool, sizeof (INPUT_CONTEXT_64));
1290 ASSERT (InputContext != NULL);
1291 ASSERT (((UINTN) InputContext & 0x3F) == 0);
1292 ZeroMem (InputContext, sizeof (INPUT_CONTEXT_64));
1293
1294 Xhc->UsbDevContext[SlotId].InputContext = (VOID *) InputContext;
1295
1296 //
1297 // 2) Initialize the Input Control Context (6.2.5.1) of the Input Context by setting the A0 and A1
1298 // flags to '1'. These flags indicate that the Slot Context and the Endpoint 0 Context of the Input
1299 // Context are affected by the command.
1300 //
1301 InputContext->InputControlContext.Dword2 |= (BIT0 | BIT1);
1302
1303 //
1304 // 3) Initialize the Input Slot Context data structure
1305 //
1306 InputContext->Slot.RouteString = RouteChart.Route.RouteString;
1307 InputContext->Slot.Speed = DeviceSpeed + 1;
1308 InputContext->Slot.ContextEntries = 1;
1309 InputContext->Slot.RootHubPortNum = RouteChart.Route.RootPortNum;
1310
1311 if (RouteChart.Route.RouteString != 0) {
1312 //
1313 // The device is behind of hub device.
1314 //
1315 ParentSlotId = XhcPeiRouteStringToSlotId (Xhc, ParentRouteChart);
1316 ASSERT (ParentSlotId != 0);
1317 //
1318 //if the Full/Low device attached to a High Speed Hub, Init the TTPortNum and TTHubSlotId field of slot context
1319 //
1320 ParentDeviceContext = (DEVICE_CONTEXT_64 *) Xhc->UsbDevContext[ParentSlotId].OutputContext;
1321 if ((ParentDeviceContext->Slot.TTPortNum == 0) &&
1322 (ParentDeviceContext->Slot.TTHubSlotId == 0)) {
1323 if ((ParentDeviceContext->Slot.Speed == (EFI_USB_SPEED_HIGH + 1)) && (DeviceSpeed < EFI_USB_SPEED_HIGH)) {
1324 //
1325 // Full/Low device attached to High speed hub port that isolates the high speed signaling
1326 // environment from Full/Low speed signaling environment for a device
1327 //
1328 InputContext->Slot.TTPortNum = ParentPort;
1329 InputContext->Slot.TTHubSlotId = ParentSlotId;
1330 }
1331 } else {
1332 //
1333 // Inherit the TT parameters from parent device.
1334 //
1335 InputContext->Slot.TTPortNum = ParentDeviceContext->Slot.TTPortNum;
1336 InputContext->Slot.TTHubSlotId = ParentDeviceContext->Slot.TTHubSlotId;
1337 //
1338 // If the device is a High speed device then down the speed to be the same as its parent Hub
1339 //
1340 if (DeviceSpeed == EFI_USB_SPEED_HIGH) {
1341 InputContext->Slot.Speed = ParentDeviceContext->Slot.Speed;
1342 }
1343 }
1344 }
1345
1346 //
1347 // 4) Allocate and initialize the Transfer Ring for the Default Control Endpoint.
1348 //
1349 EndpointTransferRing = AllocateZeroPool (sizeof (TRANSFER_RING));
1350 Xhc->UsbDevContext[SlotId].EndpointTransferRing[0] = EndpointTransferRing;
1351 XhcPeiCreateTransferRing(Xhc, TR_RING_TRB_NUMBER, (TRANSFER_RING *) Xhc->UsbDevContext[SlotId].EndpointTransferRing[0]);
1352 //
1353 // 5) Initialize the Input default control Endpoint 0 Context (6.2.3).
1354 //
1355 InputContext->EP[0].EPType = ED_CONTROL_BIDIR;
1356
1357 if (DeviceSpeed == EFI_USB_SPEED_SUPER) {
1358 InputContext->EP[0].MaxPacketSize = 512;
1359 } else if (DeviceSpeed == EFI_USB_SPEED_HIGH) {
1360 InputContext->EP[0].MaxPacketSize = 64;
1361 } else {
1362 InputContext->EP[0].MaxPacketSize = 8;
1363 }
1364 //
1365 // Initial value of Average TRB Length for Control endpoints would be 8B, Interrupt endpoints
1366 // 1KB, and Bulk and Isoch endpoints 3KB.
1367 //
1368 InputContext->EP[0].AverageTRBLength = 8;
1369 InputContext->EP[0].MaxBurstSize = 0;
1370 InputContext->EP[0].Interval = 0;
1371 InputContext->EP[0].MaxPStreams = 0;
1372 InputContext->EP[0].Mult = 0;
1373 InputContext->EP[0].CErr = 3;
1374
1375 //
1376 // Init the DCS(dequeue cycle state) as the transfer ring's CCS
1377 //
1378 PhyAddr = UsbHcGetPciAddrForHostAddr (
1379 Xhc->MemPool,
1380 ((TRANSFER_RING *) (UINTN) Xhc->UsbDevContext[SlotId].EndpointTransferRing[0])->RingSeg0,
1381 sizeof (TRB_TEMPLATE) * TR_RING_TRB_NUMBER
1382 );
1383 InputContext->EP[0].PtrLo = XHC_LOW_32BIT (PhyAddr) | BIT0;
1384 InputContext->EP[0].PtrHi = XHC_HIGH_32BIT (PhyAddr);
1385
1386 //
1387 // 6) Allocate the Output Device Context data structure (6.2.1) and initialize it to '0'.
1388 //
1389 OutputContext = UsbHcAllocateMem (Xhc->MemPool, sizeof (DEVICE_CONTEXT_64));
1390 ASSERT (OutputContext != NULL);
1391 ASSERT (((UINTN) OutputContext & 0x3F) == 0);
1392 ZeroMem (OutputContext, sizeof (DEVICE_CONTEXT_64));
1393
1394 Xhc->UsbDevContext[SlotId].OutputContext = OutputContext;
1395 //
1396 // 7) Load the appropriate (Device Slot ID) entry in the Device Context Base Address Array (5.4.6) with
1397 // a pointer to the Output Device Context data structure (6.2.1).
1398 //
1399 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, OutputContext, sizeof (DEVICE_CONTEXT_64));
1400 //
1401 // Fill DCBAA with PCI device address
1402 //
1403 Xhc->DCBAA[SlotId] = (UINT64) (UINTN) PhyAddr;
1404
1405 //
1406 // 8) Issue an Address Device Command for the Device Slot, where the command points to the Input
1407 // Context data structure described above.
1408 //
1409 // Delay 10ms to meet TRSTRCY delay requirement in usb 2.0 spec chapter 7.1.7.5 before sending SetAddress() request
1410 // to device.
1411 //
1412 MicroSecondDelay (XHC_RESET_RECOVERY_DELAY);
1413 ZeroMem (&CmdTrbAddr, sizeof (CmdTrbAddr));
1414 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, Xhc->UsbDevContext[SlotId].InputContext, sizeof (INPUT_CONTEXT_64));
1415 CmdTrbAddr.PtrLo = XHC_LOW_32BIT (PhyAddr);
1416 CmdTrbAddr.PtrHi = XHC_HIGH_32BIT (PhyAddr);
1417 CmdTrbAddr.CycleBit = 1;
1418 CmdTrbAddr.Type = TRB_TYPE_ADDRESS_DEV;
1419 CmdTrbAddr.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
1420 Status = XhcPeiCmdTransfer (
1421 Xhc,
1422 (TRB_TEMPLATE *) (UINTN) &CmdTrbAddr,
1423 XHC_GENERIC_TIMEOUT,
1424 (TRB_TEMPLATE **) (UINTN) &EvtTrb
1425 );
1426 if (!EFI_ERROR (Status)) {
1427 DeviceAddress = (UINT8) OutputContext->Slot.DeviceAddress;
1428 DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot64: Address %d assigned successfully\n", DeviceAddress));
1429 Xhc->UsbDevContext[SlotId].XhciDevAddr = DeviceAddress;
1430 }
1431
1432 DEBUG ((EFI_D_INFO, "XhcPeiInitializeDeviceSlot64: Enable Slot, Status = %r\n", Status));
1433 return Status;
1434 }
1435
1436
1437 /**
1438 Disable the specified device slot.
1439
1440 @param Xhc The XHCI device.
1441 @param SlotId The slot id to be disabled.
1442
1443 @retval EFI_SUCCESS Successfully disable the device slot.
1444
1445 **/
1446 EFI_STATUS
1447 XhcPeiDisableSlotCmd (
1448 IN PEI_XHC_DEV *Xhc,
1449 IN UINT8 SlotId
1450 )
1451 {
1452 EFI_STATUS Status;
1453 TRB_TEMPLATE *EvtTrb;
1454 CMD_TRB_DISABLE_SLOT CmdTrbDisSlot;
1455 UINT8 Index;
1456 VOID *RingSeg;
1457
1458 //
1459 // Disable the device slots occupied by these devices on its downstream ports.
1460 // Entry 0 is reserved.
1461 //
1462 for (Index = 0; Index < 255; Index++) {
1463 if (!Xhc->UsbDevContext[Index + 1].Enabled ||
1464 (Xhc->UsbDevContext[Index + 1].SlotId == 0) ||
1465 (Xhc->UsbDevContext[Index + 1].ParentRouteString.Dword != Xhc->UsbDevContext[SlotId].RouteString.Dword)) {
1466 continue;
1467 }
1468
1469 Status = XhcPeiDisableSlotCmd (Xhc, Xhc->UsbDevContext[Index + 1].SlotId);
1470
1471 if (EFI_ERROR (Status)) {
1472 DEBUG ((EFI_D_ERROR, "XhcPeiDisableSlotCmd: failed to disable child, ignore error\n"));
1473 Xhc->UsbDevContext[Index + 1].SlotId = 0;
1474 }
1475 }
1476
1477 //
1478 // Construct the disable slot command
1479 //
1480 DEBUG ((EFI_D_INFO, "XhcPeiDisableSlotCmd: Disable device slot %d!\n", SlotId));
1481
1482 ZeroMem (&CmdTrbDisSlot, sizeof (CmdTrbDisSlot));
1483 CmdTrbDisSlot.CycleBit = 1;
1484 CmdTrbDisSlot.Type = TRB_TYPE_DIS_SLOT;
1485 CmdTrbDisSlot.SlotId = SlotId;
1486 Status = XhcPeiCmdTransfer (
1487 Xhc,
1488 (TRB_TEMPLATE *) (UINTN) &CmdTrbDisSlot,
1489 XHC_GENERIC_TIMEOUT,
1490 (TRB_TEMPLATE **) (UINTN) &EvtTrb
1491 );
1492 if (EFI_ERROR (Status)) {
1493 DEBUG ((EFI_D_ERROR, "XhcPeiDisableSlotCmd: Disable Slot Command Failed, Status = %r\n", Status));
1494 return Status;
1495 }
1496 //
1497 // Free the slot's device context entry
1498 //
1499 Xhc->DCBAA[SlotId] = 0;
1500
1501 //
1502 // Free the slot related data structure
1503 //
1504 for (Index = 0; Index < 31; Index++) {
1505 if (Xhc->UsbDevContext[SlotId].EndpointTransferRing[Index] != NULL) {
1506 RingSeg = ((TRANSFER_RING *) (UINTN) Xhc->UsbDevContext[SlotId].EndpointTransferRing[Index])->RingSeg0;
1507 if (RingSeg != NULL) {
1508 UsbHcFreeMem (Xhc->MemPool, RingSeg, sizeof (TRB_TEMPLATE) * TR_RING_TRB_NUMBER);
1509 }
1510 FreePool (Xhc->UsbDevContext[SlotId].EndpointTransferRing[Index]);
1511 Xhc->UsbDevContext[SlotId].EndpointTransferRing[Index] = NULL;
1512 }
1513 }
1514
1515 for (Index = 0; Index < Xhc->UsbDevContext[SlotId].DevDesc.NumConfigurations; Index++) {
1516 if (Xhc->UsbDevContext[SlotId].ConfDesc[Index] != NULL) {
1517 FreePool (Xhc->UsbDevContext[SlotId].ConfDesc[Index]);
1518 }
1519 }
1520
1521 if (Xhc->UsbDevContext[SlotId].InputContext != NULL) {
1522 UsbHcFreeMem (Xhc->MemPool, Xhc->UsbDevContext[SlotId].InputContext, sizeof (INPUT_CONTEXT));
1523 }
1524
1525 if (Xhc->UsbDevContext[SlotId].OutputContext != NULL) {
1526 UsbHcFreeMem (Xhc->MemPool, Xhc->UsbDevContext[SlotId].OutputContext, sizeof (DEVICE_CONTEXT));
1527 }
1528 //
1529 // Doesn't zero the entry because XhcAsyncInterruptTransfer() may be invoked to remove the established
1530 // asynchronous interrupt pipe after the device is disabled. It needs the device address mapping info to
1531 // remove urb from XHCI's asynchronous transfer list.
1532 //
1533 Xhc->UsbDevContext[SlotId].Enabled = FALSE;
1534 Xhc->UsbDevContext[SlotId].SlotId = 0;
1535
1536 DEBUG ((EFI_D_INFO, "XhcPeiDisableSlotCmd: Disable Slot Command, Status = %r\n", Status));
1537 return Status;
1538 }
1539
1540 /**
1541 Disable the specified device slot.
1542
1543 @param Xhc The XHCI device.
1544 @param SlotId The slot id to be disabled.
1545
1546 @retval EFI_SUCCESS Successfully disable the device slot.
1547
1548 **/
1549 EFI_STATUS
1550 XhcPeiDisableSlotCmd64 (
1551 IN PEI_XHC_DEV *Xhc,
1552 IN UINT8 SlotId
1553 )
1554 {
1555 EFI_STATUS Status;
1556 TRB_TEMPLATE *EvtTrb;
1557 CMD_TRB_DISABLE_SLOT CmdTrbDisSlot;
1558 UINT8 Index;
1559 VOID *RingSeg;
1560
1561 //
1562 // Disable the device slots occupied by these devices on its downstream ports.
1563 // Entry 0 is reserved.
1564 //
1565 for (Index = 0; Index < 255; Index++) {
1566 if (!Xhc->UsbDevContext[Index + 1].Enabled ||
1567 (Xhc->UsbDevContext[Index + 1].SlotId == 0) ||
1568 (Xhc->UsbDevContext[Index + 1].ParentRouteString.Dword != Xhc->UsbDevContext[SlotId].RouteString.Dword)) {
1569 continue;
1570 }
1571
1572 Status = XhcPeiDisableSlotCmd64 (Xhc, Xhc->UsbDevContext[Index + 1].SlotId);
1573
1574 if (EFI_ERROR (Status)) {
1575 DEBUG ((EFI_D_ERROR, "XhcPeiDisableSlotCmd64: failed to disable child, ignore error\n"));
1576 Xhc->UsbDevContext[Index + 1].SlotId = 0;
1577 }
1578 }
1579
1580 //
1581 // Construct the disable slot command
1582 //
1583 DEBUG ((EFI_D_INFO, "XhcPeiDisableSlotCmd64: Disable device slot %d!\n", SlotId));
1584
1585 ZeroMem (&CmdTrbDisSlot, sizeof (CmdTrbDisSlot));
1586 CmdTrbDisSlot.CycleBit = 1;
1587 CmdTrbDisSlot.Type = TRB_TYPE_DIS_SLOT;
1588 CmdTrbDisSlot.SlotId = SlotId;
1589 Status = XhcPeiCmdTransfer (
1590 Xhc,
1591 (TRB_TEMPLATE *) (UINTN) &CmdTrbDisSlot,
1592 XHC_GENERIC_TIMEOUT,
1593 (TRB_TEMPLATE **) (UINTN) &EvtTrb
1594 );
1595 if (EFI_ERROR (Status)) {
1596 DEBUG ((EFI_D_ERROR, "XhcPeiDisableSlotCmd64: Disable Slot Command Failed, Status = %r\n", Status));
1597 return Status;
1598 }
1599 //
1600 // Free the slot's device context entry
1601 //
1602 Xhc->DCBAA[SlotId] = 0;
1603
1604 //
1605 // Free the slot related data structure
1606 //
1607 for (Index = 0; Index < 31; Index++) {
1608 if (Xhc->UsbDevContext[SlotId].EndpointTransferRing[Index] != NULL) {
1609 RingSeg = ((TRANSFER_RING *) (UINTN) Xhc->UsbDevContext[SlotId].EndpointTransferRing[Index])->RingSeg0;
1610 if (RingSeg != NULL) {
1611 UsbHcFreeMem (Xhc->MemPool, RingSeg, sizeof (TRB_TEMPLATE) * TR_RING_TRB_NUMBER);
1612 }
1613 FreePool (Xhc->UsbDevContext[SlotId].EndpointTransferRing[Index]);
1614 Xhc->UsbDevContext[SlotId].EndpointTransferRing[Index] = NULL;
1615 }
1616 }
1617
1618 for (Index = 0; Index < Xhc->UsbDevContext[SlotId].DevDesc.NumConfigurations; Index++) {
1619 if (Xhc->UsbDevContext[SlotId].ConfDesc[Index] != NULL) {
1620 FreePool (Xhc->UsbDevContext[SlotId].ConfDesc[Index]);
1621 }
1622 }
1623
1624 if (Xhc->UsbDevContext[SlotId].InputContext != NULL) {
1625 UsbHcFreeMem (Xhc->MemPool, Xhc->UsbDevContext[SlotId].InputContext, sizeof (INPUT_CONTEXT_64));
1626 }
1627
1628 if (Xhc->UsbDevContext[SlotId].OutputContext != NULL) {
1629 UsbHcFreeMem (Xhc->MemPool, Xhc->UsbDevContext[SlotId].OutputContext, sizeof (DEVICE_CONTEXT_64));
1630 }
1631 //
1632 // Doesn't zero the entry because XhcAsyncInterruptTransfer() may be invoked to remove the established
1633 // asynchronous interrupt pipe after the device is disabled. It needs the device address mapping info to
1634 // remove urb from XHCI's asynchronous transfer list.
1635 //
1636 Xhc->UsbDevContext[SlotId].Enabled = FALSE;
1637 Xhc->UsbDevContext[SlotId].SlotId = 0;
1638
1639 DEBUG ((EFI_D_INFO, "XhcPeiDisableSlotCmd64: Disable Slot Command, Status = %r\n", Status));
1640 return Status;
1641 }
1642
1643 /**
1644 Configure all the device endpoints through XHCI's Configure_Endpoint cmd.
1645
1646 @param Xhc The XHCI device.
1647 @param SlotId The slot id to be configured.
1648 @param DeviceSpeed The device's speed.
1649 @param ConfigDesc The pointer to the usb device configuration descriptor.
1650
1651 @retval EFI_SUCCESS Successfully configure all the device endpoints.
1652
1653 **/
1654 EFI_STATUS
1655 XhcPeiSetConfigCmd (
1656 IN PEI_XHC_DEV *Xhc,
1657 IN UINT8 SlotId,
1658 IN UINT8 DeviceSpeed,
1659 IN USB_CONFIG_DESCRIPTOR *ConfigDesc
1660 )
1661 {
1662 EFI_STATUS Status;
1663 USB_INTERFACE_DESCRIPTOR *IfDesc;
1664 USB_ENDPOINT_DESCRIPTOR *EpDesc;
1665 UINT8 Index;
1666 UINTN NumEp;
1667 UINTN EpIndex;
1668 UINT8 EpAddr;
1669 EFI_USB_DATA_DIRECTION Direction;
1670 UINT8 Dci;
1671 UINT8 MaxDci;
1672 EFI_PHYSICAL_ADDRESS PhyAddr;
1673 UINT8 Interval;
1674
1675 TRANSFER_RING *EndpointTransferRing;
1676 CMD_TRB_CONFIG_ENDPOINT CmdTrbCfgEP;
1677 INPUT_CONTEXT *InputContext;
1678 DEVICE_CONTEXT *OutputContext;
1679 EVT_TRB_COMMAND_COMPLETION *EvtTrb;
1680 //
1681 // 4.6.6 Configure Endpoint
1682 //
1683 InputContext = Xhc->UsbDevContext[SlotId].InputContext;
1684 OutputContext = Xhc->UsbDevContext[SlotId].OutputContext;
1685 ZeroMem (InputContext, sizeof (INPUT_CONTEXT));
1686 CopyMem (&InputContext->Slot, &OutputContext->Slot, sizeof (SLOT_CONTEXT));
1687
1688 ASSERT (ConfigDesc != NULL);
1689
1690 MaxDci = 0;
1691
1692 IfDesc = (USB_INTERFACE_DESCRIPTOR *) (ConfigDesc + 1);
1693 for (Index = 0; Index < ConfigDesc->NumInterfaces; Index++) {
1694 while ((IfDesc->DescriptorType != USB_DESC_TYPE_INTERFACE) || (IfDesc->AlternateSetting != 0)) {
1695 IfDesc = (USB_INTERFACE_DESCRIPTOR *) ((UINTN) IfDesc + IfDesc->Length);
1696 }
1697
1698 NumEp = IfDesc->NumEndpoints;
1699
1700 EpDesc = (USB_ENDPOINT_DESCRIPTOR *) (IfDesc + 1);
1701 for (EpIndex = 0; EpIndex < NumEp; EpIndex++) {
1702 while (EpDesc->DescriptorType != USB_DESC_TYPE_ENDPOINT) {
1703 EpDesc = (USB_ENDPOINT_DESCRIPTOR *) ((UINTN) EpDesc + EpDesc->Length);
1704 }
1705
1706 EpAddr = (UINT8) (EpDesc->EndpointAddress & 0x0F);
1707 Direction = (UINT8) ((EpDesc->EndpointAddress & 0x80) ? EfiUsbDataIn : EfiUsbDataOut);
1708
1709 Dci = XhcPeiEndpointToDci (EpAddr, Direction);
1710 if (Dci > MaxDci) {
1711 MaxDci = Dci;
1712 }
1713
1714 InputContext->InputControlContext.Dword2 |= (BIT0 << Dci);
1715 InputContext->EP[Dci-1].MaxPacketSize = EpDesc->MaxPacketSize;
1716
1717 if (DeviceSpeed == EFI_USB_SPEED_SUPER) {
1718 //
1719 // 6.2.3.4, shall be set to the value defined in the bMaxBurst field of the SuperSpeed Endpoint Companion Descriptor.
1720 //
1721 InputContext->EP[Dci-1].MaxBurstSize = 0x0;
1722 } else {
1723 InputContext->EP[Dci-1].MaxBurstSize = 0x0;
1724 }
1725
1726 switch (EpDesc->Attributes & USB_ENDPOINT_TYPE_MASK) {
1727 case USB_ENDPOINT_BULK:
1728 if (Direction == EfiUsbDataIn) {
1729 InputContext->EP[Dci-1].CErr = 3;
1730 InputContext->EP[Dci-1].EPType = ED_BULK_IN;
1731 } else {
1732 InputContext->EP[Dci-1].CErr = 3;
1733 InputContext->EP[Dci-1].EPType = ED_BULK_OUT;
1734 }
1735
1736 InputContext->EP[Dci-1].AverageTRBLength = 0x1000;
1737 if (Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1] == NULL) {
1738 EndpointTransferRing = AllocateZeroPool (sizeof (TRANSFER_RING));
1739 Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1] = (VOID *) EndpointTransferRing;
1740 XhcPeiCreateTransferRing (Xhc, TR_RING_TRB_NUMBER, (TRANSFER_RING *) Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1]);
1741 }
1742
1743 break;
1744 case USB_ENDPOINT_ISO:
1745 if (Direction == EfiUsbDataIn) {
1746 InputContext->EP[Dci-1].CErr = 0;
1747 InputContext->EP[Dci-1].EPType = ED_ISOCH_IN;
1748 } else {
1749 InputContext->EP[Dci-1].CErr = 0;
1750 InputContext->EP[Dci-1].EPType = ED_ISOCH_OUT;
1751 }
1752 //
1753 // Get the bInterval from descriptor and init the the interval field of endpoint context.
1754 // Refer to XHCI 1.1 spec section 6.2.3.6.
1755 //
1756 if (DeviceSpeed == EFI_USB_SPEED_FULL) {
1757 Interval = EpDesc->Interval;
1758 ASSERT (Interval >= 1 && Interval <= 16);
1759 InputContext->EP[Dci-1].Interval = Interval + 2;
1760 } else if ((DeviceSpeed == EFI_USB_SPEED_HIGH) || (DeviceSpeed == EFI_USB_SPEED_SUPER)) {
1761 Interval = EpDesc->Interval;
1762 ASSERT (Interval >= 1 && Interval <= 16);
1763 InputContext->EP[Dci-1].Interval = Interval - 1;
1764 }
1765
1766 //
1767 // Do not support isochronous transfer now.
1768 //
1769 DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd: Unsupport ISO EP found, Transfer ring is not allocated.\n"));
1770 EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
1771 continue;
1772 case USB_ENDPOINT_INTERRUPT:
1773 if (Direction == EfiUsbDataIn) {
1774 InputContext->EP[Dci-1].CErr = 3;
1775 InputContext->EP[Dci-1].EPType = ED_INTERRUPT_IN;
1776 } else {
1777 InputContext->EP[Dci-1].CErr = 3;
1778 InputContext->EP[Dci-1].EPType = ED_INTERRUPT_OUT;
1779 }
1780 InputContext->EP[Dci-1].AverageTRBLength = 0x1000;
1781 InputContext->EP[Dci-1].MaxESITPayload = EpDesc->MaxPacketSize;
1782 //
1783 // Get the bInterval from descriptor and init the interval field of endpoint context
1784 //
1785 if ((DeviceSpeed == EFI_USB_SPEED_FULL) || (DeviceSpeed == EFI_USB_SPEED_LOW)) {
1786 Interval = EpDesc->Interval;
1787 //
1788 // Calculate through the bInterval field of Endpoint descriptor.
1789 //
1790 ASSERT (Interval != 0);
1791 InputContext->EP[Dci-1].Interval = (UINT32) HighBitSet32 ((UINT32) Interval) + 3;
1792 } else if ((DeviceSpeed == EFI_USB_SPEED_HIGH) || (DeviceSpeed == EFI_USB_SPEED_SUPER)) {
1793 Interval = EpDesc->Interval;
1794 ASSERT (Interval >= 1 && Interval <= 16);
1795 //
1796 // Refer to XHCI 1.0 spec section 6.2.3.6, table 61
1797 //
1798 InputContext->EP[Dci-1].Interval = Interval - 1;
1799 }
1800
1801 if (Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1] == NULL) {
1802 EndpointTransferRing = AllocateZeroPool (sizeof (TRANSFER_RING));
1803 Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1] = (VOID *) EndpointTransferRing;
1804 XhcPeiCreateTransferRing (Xhc, TR_RING_TRB_NUMBER, (TRANSFER_RING *) Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1]);
1805 }
1806 break;
1807
1808 case USB_ENDPOINT_CONTROL:
1809 //
1810 // Do not support control transfer now.
1811 //
1812 DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd: Unsupport Control EP found, Transfer ring is not allocated.\n"));
1813 default:
1814 DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd: Unknown EP found, Transfer ring is not allocated.\n"));
1815 EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
1816 continue;
1817 }
1818
1819 PhyAddr = UsbHcGetPciAddrForHostAddr (
1820 Xhc->MemPool,
1821 ((TRANSFER_RING *) (UINTN) Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1])->RingSeg0,
1822 sizeof (TRB_TEMPLATE) * TR_RING_TRB_NUMBER
1823 );
1824 PhyAddr &= ~((EFI_PHYSICAL_ADDRESS)0x0F);
1825 PhyAddr |= (EFI_PHYSICAL_ADDRESS)((TRANSFER_RING *) (UINTN) Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1])->RingPCS;
1826 InputContext->EP[Dci-1].PtrLo = XHC_LOW_32BIT (PhyAddr);
1827 InputContext->EP[Dci-1].PtrHi = XHC_HIGH_32BIT (PhyAddr);
1828
1829 EpDesc = (USB_ENDPOINT_DESCRIPTOR *) ((UINTN) EpDesc + EpDesc->Length);
1830 }
1831 IfDesc = (USB_INTERFACE_DESCRIPTOR *) ((UINTN) IfDesc + IfDesc->Length);
1832 }
1833
1834 InputContext->InputControlContext.Dword2 |= BIT0;
1835 InputContext->Slot.ContextEntries = MaxDci;
1836 //
1837 // configure endpoint
1838 //
1839 ZeroMem (&CmdTrbCfgEP, sizeof (CmdTrbCfgEP));
1840 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, InputContext, sizeof (INPUT_CONTEXT));
1841 CmdTrbCfgEP.PtrLo = XHC_LOW_32BIT (PhyAddr);
1842 CmdTrbCfgEP.PtrHi = XHC_HIGH_32BIT (PhyAddr);
1843 CmdTrbCfgEP.CycleBit = 1;
1844 CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
1845 CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
1846 DEBUG ((EFI_D_INFO, "XhcSetConfigCmd: Configure Endpoint\n"));
1847 Status = XhcPeiCmdTransfer (
1848 Xhc,
1849 (TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
1850 XHC_GENERIC_TIMEOUT,
1851 (TRB_TEMPLATE **) (UINTN) &EvtTrb
1852 );
1853 if (EFI_ERROR (Status)) {
1854 DEBUG ((EFI_D_ERROR, "XhcSetConfigCmd: Config Endpoint Failed, Status = %r\n", Status));
1855 }
1856 return Status;
1857 }
1858
1859 /**
1860 Configure all the device endpoints through XHCI's Configure_Endpoint cmd.
1861
1862 @param Xhc The XHCI device.
1863 @param SlotId The slot id to be configured.
1864 @param DeviceSpeed The device's speed.
1865 @param ConfigDesc The pointer to the usb device configuration descriptor.
1866
1867 @retval EFI_SUCCESS Successfully configure all the device endpoints.
1868
1869 **/
1870 EFI_STATUS
1871 XhcPeiSetConfigCmd64 (
1872 IN PEI_XHC_DEV *Xhc,
1873 IN UINT8 SlotId,
1874 IN UINT8 DeviceSpeed,
1875 IN USB_CONFIG_DESCRIPTOR *ConfigDesc
1876 )
1877 {
1878 EFI_STATUS Status;
1879 USB_INTERFACE_DESCRIPTOR *IfDesc;
1880 USB_ENDPOINT_DESCRIPTOR *EpDesc;
1881 UINT8 Index;
1882 UINTN NumEp;
1883 UINTN EpIndex;
1884 UINT8 EpAddr;
1885 EFI_USB_DATA_DIRECTION Direction;
1886 UINT8 Dci;
1887 UINT8 MaxDci;
1888 EFI_PHYSICAL_ADDRESS PhyAddr;
1889 UINT8 Interval;
1890
1891 TRANSFER_RING *EndpointTransferRing;
1892 CMD_TRB_CONFIG_ENDPOINT CmdTrbCfgEP;
1893 INPUT_CONTEXT_64 *InputContext;
1894 DEVICE_CONTEXT_64 *OutputContext;
1895 EVT_TRB_COMMAND_COMPLETION *EvtTrb;
1896 //
1897 // 4.6.6 Configure Endpoint
1898 //
1899 InputContext = Xhc->UsbDevContext[SlotId].InputContext;
1900 OutputContext = Xhc->UsbDevContext[SlotId].OutputContext;
1901 ZeroMem (InputContext, sizeof (INPUT_CONTEXT_64));
1902 CopyMem (&InputContext->Slot, &OutputContext->Slot, sizeof (SLOT_CONTEXT_64));
1903
1904 ASSERT (ConfigDesc != NULL);
1905
1906 MaxDci = 0;
1907
1908 IfDesc = (USB_INTERFACE_DESCRIPTOR *) (ConfigDesc + 1);
1909 for (Index = 0; Index < ConfigDesc->NumInterfaces; Index++) {
1910 while ((IfDesc->DescriptorType != USB_DESC_TYPE_INTERFACE) || (IfDesc->AlternateSetting != 0)) {
1911 IfDesc = (USB_INTERFACE_DESCRIPTOR *) ((UINTN) IfDesc + IfDesc->Length);
1912 }
1913
1914 NumEp = IfDesc->NumEndpoints;
1915
1916 EpDesc = (USB_ENDPOINT_DESCRIPTOR *) (IfDesc + 1);
1917 for (EpIndex = 0; EpIndex < NumEp; EpIndex++) {
1918 while (EpDesc->DescriptorType != USB_DESC_TYPE_ENDPOINT) {
1919 EpDesc = (USB_ENDPOINT_DESCRIPTOR *) ((UINTN) EpDesc + EpDesc->Length);
1920 }
1921
1922 EpAddr = (UINT8) (EpDesc->EndpointAddress & 0x0F);
1923 Direction = (UINT8) ((EpDesc->EndpointAddress & 0x80) ? EfiUsbDataIn : EfiUsbDataOut);
1924
1925 Dci = XhcPeiEndpointToDci (EpAddr, Direction);
1926 ASSERT (Dci < 32);
1927 if (Dci > MaxDci) {
1928 MaxDci = Dci;
1929 }
1930
1931 InputContext->InputControlContext.Dword2 |= (BIT0 << Dci);
1932 InputContext->EP[Dci-1].MaxPacketSize = EpDesc->MaxPacketSize;
1933
1934 if (DeviceSpeed == EFI_USB_SPEED_SUPER) {
1935 //
1936 // 6.2.3.4, shall be set to the value defined in the bMaxBurst field of the SuperSpeed Endpoint Companion Descriptor.
1937 //
1938 InputContext->EP[Dci-1].MaxBurstSize = 0x0;
1939 } else {
1940 InputContext->EP[Dci-1].MaxBurstSize = 0x0;
1941 }
1942
1943 switch (EpDesc->Attributes & USB_ENDPOINT_TYPE_MASK) {
1944 case USB_ENDPOINT_BULK:
1945 if (Direction == EfiUsbDataIn) {
1946 InputContext->EP[Dci-1].CErr = 3;
1947 InputContext->EP[Dci-1].EPType = ED_BULK_IN;
1948 } else {
1949 InputContext->EP[Dci-1].CErr = 3;
1950 InputContext->EP[Dci-1].EPType = ED_BULK_OUT;
1951 }
1952
1953 InputContext->EP[Dci-1].AverageTRBLength = 0x1000;
1954 if (Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1] == NULL) {
1955 EndpointTransferRing = AllocateZeroPool (sizeof (TRANSFER_RING));
1956 Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1] = (VOID *) EndpointTransferRing;
1957 XhcPeiCreateTransferRing (Xhc, TR_RING_TRB_NUMBER, (TRANSFER_RING *) Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1]);
1958 }
1959
1960 break;
1961 case USB_ENDPOINT_ISO:
1962 if (Direction == EfiUsbDataIn) {
1963 InputContext->EP[Dci-1].CErr = 0;
1964 InputContext->EP[Dci-1].EPType = ED_ISOCH_IN;
1965 } else {
1966 InputContext->EP[Dci-1].CErr = 0;
1967 InputContext->EP[Dci-1].EPType = ED_ISOCH_OUT;
1968 }
1969 //
1970 // Get the bInterval from descriptor and init the the interval field of endpoint context.
1971 // Refer to XHCI 1.1 spec section 6.2.3.6.
1972 //
1973 if (DeviceSpeed == EFI_USB_SPEED_FULL) {
1974 Interval = EpDesc->Interval;
1975 ASSERT (Interval >= 1 && Interval <= 16);
1976 InputContext->EP[Dci-1].Interval = Interval + 2;
1977 } else if ((DeviceSpeed == EFI_USB_SPEED_HIGH) || (DeviceSpeed == EFI_USB_SPEED_SUPER)) {
1978 Interval = EpDesc->Interval;
1979 ASSERT (Interval >= 1 && Interval <= 16);
1980 InputContext->EP[Dci-1].Interval = Interval - 1;
1981 }
1982
1983 //
1984 // Do not support isochronous transfer now.
1985 //
1986 DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd64: Unsupport ISO EP found, Transfer ring is not allocated.\n"));
1987 EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
1988 continue;
1989 case USB_ENDPOINT_INTERRUPT:
1990 if (Direction == EfiUsbDataIn) {
1991 InputContext->EP[Dci-1].CErr = 3;
1992 InputContext->EP[Dci-1].EPType = ED_INTERRUPT_IN;
1993 } else {
1994 InputContext->EP[Dci-1].CErr = 3;
1995 InputContext->EP[Dci-1].EPType = ED_INTERRUPT_OUT;
1996 }
1997 InputContext->EP[Dci-1].AverageTRBLength = 0x1000;
1998 InputContext->EP[Dci-1].MaxESITPayload = EpDesc->MaxPacketSize;
1999 //
2000 // Get the bInterval from descriptor and init the the interval field of endpoint context
2001 //
2002 if ((DeviceSpeed == EFI_USB_SPEED_FULL) || (DeviceSpeed == EFI_USB_SPEED_LOW)) {
2003 Interval = EpDesc->Interval;
2004 //
2005 // Calculate through the bInterval field of Endpoint descriptor.
2006 //
2007 ASSERT (Interval != 0);
2008 InputContext->EP[Dci-1].Interval = (UINT32) HighBitSet32( (UINT32) Interval) + 3;
2009 } else if ((DeviceSpeed == EFI_USB_SPEED_HIGH) || (DeviceSpeed == EFI_USB_SPEED_SUPER)) {
2010 Interval = EpDesc->Interval;
2011 ASSERT (Interval >= 1 && Interval <= 16);
2012 //
2013 // Refer to XHCI 1.0 spec section 6.2.3.6, table 61
2014 //
2015 InputContext->EP[Dci-1].Interval = Interval - 1;
2016 }
2017
2018 if (Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1] == NULL) {
2019 EndpointTransferRing = AllocateZeroPool (sizeof (TRANSFER_RING));
2020 Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1] = (VOID *) EndpointTransferRing;
2021 XhcPeiCreateTransferRing (Xhc, TR_RING_TRB_NUMBER, (TRANSFER_RING *) Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1]);
2022 }
2023 break;
2024
2025 case USB_ENDPOINT_CONTROL:
2026 //
2027 // Do not support control transfer now.
2028 //
2029 DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd64: Unsupport Control EP found, Transfer ring is not allocated.\n"));
2030 default:
2031 DEBUG ((EFI_D_INFO, "XhcPeiSetConfigCmd64: Unknown EP found, Transfer ring is not allocated.\n"));
2032 EpDesc = (USB_ENDPOINT_DESCRIPTOR *)((UINTN)EpDesc + EpDesc->Length);
2033 continue;
2034 }
2035
2036 PhyAddr = UsbHcGetPciAddrForHostAddr (
2037 Xhc->MemPool,
2038 ((TRANSFER_RING *) (UINTN) Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1])->RingSeg0,
2039 sizeof (TRB_TEMPLATE) * TR_RING_TRB_NUMBER
2040 );
2041
2042 PhyAddr &= ~((EFI_PHYSICAL_ADDRESS)0x0F);
2043 PhyAddr |= (EFI_PHYSICAL_ADDRESS)((TRANSFER_RING *) (UINTN) Xhc->UsbDevContext[SlotId].EndpointTransferRing[Dci-1])->RingPCS;
2044
2045 InputContext->EP[Dci-1].PtrLo = XHC_LOW_32BIT (PhyAddr);
2046 InputContext->EP[Dci-1].PtrHi = XHC_HIGH_32BIT (PhyAddr);
2047
2048 EpDesc = (USB_ENDPOINT_DESCRIPTOR *) ((UINTN)EpDesc + EpDesc->Length);
2049 }
2050 IfDesc = (USB_INTERFACE_DESCRIPTOR *) ((UINTN)IfDesc + IfDesc->Length);
2051 }
2052
2053 InputContext->InputControlContext.Dword2 |= BIT0;
2054 InputContext->Slot.ContextEntries = MaxDci;
2055 //
2056 // configure endpoint
2057 //
2058 ZeroMem (&CmdTrbCfgEP, sizeof (CmdTrbCfgEP));
2059 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, InputContext, sizeof (INPUT_CONTEXT_64));
2060 CmdTrbCfgEP.PtrLo = XHC_LOW_32BIT (PhyAddr);
2061 CmdTrbCfgEP.PtrHi = XHC_HIGH_32BIT (PhyAddr);
2062 CmdTrbCfgEP.CycleBit = 1;
2063 CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
2064 CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
2065 DEBUG ((EFI_D_INFO, "XhcSetConfigCmd64: Configure Endpoint\n"));
2066 Status = XhcPeiCmdTransfer (
2067 Xhc,
2068 (TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
2069 XHC_GENERIC_TIMEOUT,
2070 (TRB_TEMPLATE **) (UINTN) &EvtTrb
2071 );
2072 if (EFI_ERROR (Status)) {
2073 DEBUG ((EFI_D_ERROR, "XhcSetConfigCmd64: Config Endpoint Failed, Status = %r\n", Status));
2074 }
2075
2076 return Status;
2077 }
2078
2079
2080 /**
2081 Evaluate the endpoint 0 context through XHCI's Evaluate_Context cmd.
2082
2083 @param Xhc The XHCI device.
2084 @param SlotId The slot id to be evaluated.
2085 @param MaxPacketSize The max packet size supported by the device control transfer.
2086
2087 @retval EFI_SUCCESS Successfully evaluate the device endpoint 0.
2088
2089 **/
2090 EFI_STATUS
2091 XhcPeiEvaluateContext (
2092 IN PEI_XHC_DEV *Xhc,
2093 IN UINT8 SlotId,
2094 IN UINT32 MaxPacketSize
2095 )
2096 {
2097 EFI_STATUS Status;
2098 CMD_TRB_EVALUATE_CONTEXT CmdTrbEvalu;
2099 EVT_TRB_COMMAND_COMPLETION *EvtTrb;
2100 INPUT_CONTEXT *InputContext;
2101 EFI_PHYSICAL_ADDRESS PhyAddr;
2102
2103 ASSERT (Xhc->UsbDevContext[SlotId].SlotId != 0);
2104
2105 //
2106 // 4.6.7 Evaluate Context
2107 //
2108 InputContext = Xhc->UsbDevContext[SlotId].InputContext;
2109 ZeroMem (InputContext, sizeof (INPUT_CONTEXT));
2110
2111 InputContext->InputControlContext.Dword2 |= BIT1;
2112 InputContext->EP[0].MaxPacketSize = MaxPacketSize;
2113
2114 ZeroMem (&CmdTrbEvalu, sizeof (CmdTrbEvalu));
2115 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, InputContext, sizeof (INPUT_CONTEXT));
2116 CmdTrbEvalu.PtrLo = XHC_LOW_32BIT (PhyAddr);
2117 CmdTrbEvalu.PtrHi = XHC_HIGH_32BIT (PhyAddr);
2118 CmdTrbEvalu.CycleBit = 1;
2119 CmdTrbEvalu.Type = TRB_TYPE_EVALU_CONTXT;
2120 CmdTrbEvalu.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
2121 DEBUG ((EFI_D_INFO, "XhcEvaluateContext: Evaluate context\n"));
2122 Status = XhcPeiCmdTransfer (
2123 Xhc,
2124 (TRB_TEMPLATE *) (UINTN) &CmdTrbEvalu,
2125 XHC_GENERIC_TIMEOUT,
2126 (TRB_TEMPLATE **) (UINTN) &EvtTrb
2127 );
2128 if (EFI_ERROR (Status)) {
2129 DEBUG ((EFI_D_ERROR, "XhcEvaluateContext: Evaluate Context Failed, Status = %r\n", Status));
2130 }
2131 return Status;
2132 }
2133
2134 /**
2135 Evaluate the endpoint 0 context through XHCI's Evaluate_Context cmd.
2136
2137 @param Xhc The XHCI device.
2138 @param SlotId The slot id to be evaluated.
2139 @param MaxPacketSize The max packet size supported by the device control transfer.
2140
2141 @retval EFI_SUCCESS Successfully evaluate the device endpoint 0.
2142
2143 **/
2144 EFI_STATUS
2145 XhcPeiEvaluateContext64 (
2146 IN PEI_XHC_DEV *Xhc,
2147 IN UINT8 SlotId,
2148 IN UINT32 MaxPacketSize
2149 )
2150 {
2151 EFI_STATUS Status;
2152 CMD_TRB_EVALUATE_CONTEXT CmdTrbEvalu;
2153 EVT_TRB_COMMAND_COMPLETION *EvtTrb;
2154 INPUT_CONTEXT_64 *InputContext;
2155 EFI_PHYSICAL_ADDRESS PhyAddr;
2156
2157 ASSERT (Xhc->UsbDevContext[SlotId].SlotId != 0);
2158
2159 //
2160 // 4.6.7 Evaluate Context
2161 //
2162 InputContext = Xhc->UsbDevContext[SlotId].InputContext;
2163 ZeroMem (InputContext, sizeof (INPUT_CONTEXT_64));
2164
2165 InputContext->InputControlContext.Dword2 |= BIT1;
2166 InputContext->EP[0].MaxPacketSize = MaxPacketSize;
2167
2168 ZeroMem (&CmdTrbEvalu, sizeof (CmdTrbEvalu));
2169 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, InputContext, sizeof (INPUT_CONTEXT_64));
2170 CmdTrbEvalu.PtrLo = XHC_LOW_32BIT (PhyAddr);
2171 CmdTrbEvalu.PtrHi = XHC_HIGH_32BIT (PhyAddr);
2172 CmdTrbEvalu.CycleBit = 1;
2173 CmdTrbEvalu.Type = TRB_TYPE_EVALU_CONTXT;
2174 CmdTrbEvalu.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
2175 DEBUG ((EFI_D_INFO, "XhcEvaluateContext64: Evaluate context 64\n"));
2176 Status = XhcPeiCmdTransfer (
2177 Xhc,
2178 (TRB_TEMPLATE *) (UINTN) &CmdTrbEvalu,
2179 XHC_GENERIC_TIMEOUT,
2180 (TRB_TEMPLATE **) (UINTN) &EvtTrb
2181 );
2182 if (EFI_ERROR (Status)) {
2183 DEBUG ((EFI_D_ERROR, "XhcEvaluateContext64: Evaluate Context Failed, Status = %r\n", Status));
2184 }
2185 return Status;
2186 }
2187
2188 /**
2189 Evaluate the slot context for hub device through XHCI's Configure_Endpoint cmd.
2190
2191 @param Xhc The XHCI device.
2192 @param SlotId The slot id to be configured.
2193 @param PortNum The total number of downstream port supported by the hub.
2194 @param TTT The TT think time of the hub device.
2195 @param MTT The multi-TT of the hub device.
2196
2197 @retval EFI_SUCCESS Successfully configure the hub device's slot context.
2198
2199 **/
2200 EFI_STATUS
2201 XhcPeiConfigHubContext (
2202 IN PEI_XHC_DEV *Xhc,
2203 IN UINT8 SlotId,
2204 IN UINT8 PortNum,
2205 IN UINT8 TTT,
2206 IN UINT8 MTT
2207 )
2208 {
2209 EFI_STATUS Status;
2210 EVT_TRB_COMMAND_COMPLETION *EvtTrb;
2211 INPUT_CONTEXT *InputContext;
2212 DEVICE_CONTEXT *OutputContext;
2213 CMD_TRB_CONFIG_ENDPOINT CmdTrbCfgEP;
2214 EFI_PHYSICAL_ADDRESS PhyAddr;
2215
2216 ASSERT (Xhc->UsbDevContext[SlotId].SlotId != 0);
2217 InputContext = Xhc->UsbDevContext[SlotId].InputContext;
2218 OutputContext = Xhc->UsbDevContext[SlotId].OutputContext;
2219
2220 //
2221 // 4.6.7 Evaluate Context
2222 //
2223 ZeroMem (InputContext, sizeof (INPUT_CONTEXT));
2224
2225 InputContext->InputControlContext.Dword2 |= BIT0;
2226
2227 //
2228 // Copy the slot context from OutputContext to Input context
2229 //
2230 CopyMem(&(InputContext->Slot), &(OutputContext->Slot), sizeof (SLOT_CONTEXT));
2231 InputContext->Slot.Hub = 1;
2232 InputContext->Slot.PortNum = PortNum;
2233 InputContext->Slot.TTT = TTT;
2234 InputContext->Slot.MTT = MTT;
2235
2236 ZeroMem (&CmdTrbCfgEP, sizeof (CmdTrbCfgEP));
2237 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, InputContext, sizeof (INPUT_CONTEXT));
2238 CmdTrbCfgEP.PtrLo = XHC_LOW_32BIT (PhyAddr);
2239 CmdTrbCfgEP.PtrHi = XHC_HIGH_32BIT (PhyAddr);
2240 CmdTrbCfgEP.CycleBit = 1;
2241 CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
2242 CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
2243 DEBUG ((EFI_D_INFO, "Configure Hub Slot Context\n"));
2244 Status = XhcPeiCmdTransfer (
2245 Xhc,
2246 (TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
2247 XHC_GENERIC_TIMEOUT,
2248 (TRB_TEMPLATE **) (UINTN) &EvtTrb
2249 );
2250 if (EFI_ERROR (Status)) {
2251 DEBUG ((EFI_D_ERROR, "XhcConfigHubContext: Config Endpoint Failed, Status = %r\n", Status));
2252 }
2253 return Status;
2254 }
2255
2256 /**
2257 Evaluate the slot context for hub device through XHCI's Configure_Endpoint cmd.
2258
2259 @param Xhc The XHCI device.
2260 @param SlotId The slot id to be configured.
2261 @param PortNum The total number of downstream port supported by the hub.
2262 @param TTT The TT think time of the hub device.
2263 @param MTT The multi-TT of the hub device.
2264
2265 @retval EFI_SUCCESS Successfully configure the hub device's slot context.
2266
2267 **/
2268 EFI_STATUS
2269 XhcPeiConfigHubContext64 (
2270 IN PEI_XHC_DEV *Xhc,
2271 IN UINT8 SlotId,
2272 IN UINT8 PortNum,
2273 IN UINT8 TTT,
2274 IN UINT8 MTT
2275 )
2276 {
2277 EFI_STATUS Status;
2278 EVT_TRB_COMMAND_COMPLETION *EvtTrb;
2279 INPUT_CONTEXT_64 *InputContext;
2280 DEVICE_CONTEXT_64 *OutputContext;
2281 CMD_TRB_CONFIG_ENDPOINT CmdTrbCfgEP;
2282 EFI_PHYSICAL_ADDRESS PhyAddr;
2283
2284 ASSERT (Xhc->UsbDevContext[SlotId].SlotId != 0);
2285 InputContext = Xhc->UsbDevContext[SlotId].InputContext;
2286 OutputContext = Xhc->UsbDevContext[SlotId].OutputContext;
2287
2288 //
2289 // 4.6.7 Evaluate Context
2290 //
2291 ZeroMem (InputContext, sizeof (INPUT_CONTEXT_64));
2292
2293 InputContext->InputControlContext.Dword2 |= BIT0;
2294
2295 //
2296 // Copy the slot context from OutputContext to Input context
2297 //
2298 CopyMem(&(InputContext->Slot), &(OutputContext->Slot), sizeof (SLOT_CONTEXT_64));
2299 InputContext->Slot.Hub = 1;
2300 InputContext->Slot.PortNum = PortNum;
2301 InputContext->Slot.TTT = TTT;
2302 InputContext->Slot.MTT = MTT;
2303
2304 ZeroMem (&CmdTrbCfgEP, sizeof (CmdTrbCfgEP));
2305 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, InputContext, sizeof (INPUT_CONTEXT_64));
2306 CmdTrbCfgEP.PtrLo = XHC_LOW_32BIT (PhyAddr);
2307 CmdTrbCfgEP.PtrHi = XHC_HIGH_32BIT (PhyAddr);
2308 CmdTrbCfgEP.CycleBit = 1;
2309 CmdTrbCfgEP.Type = TRB_TYPE_CON_ENDPOINT;
2310 CmdTrbCfgEP.SlotId = Xhc->UsbDevContext[SlotId].SlotId;
2311 DEBUG ((EFI_D_INFO, "Configure Hub Slot Context 64\n"));
2312 Status = XhcPeiCmdTransfer (
2313 Xhc,
2314 (TRB_TEMPLATE *) (UINTN) &CmdTrbCfgEP,
2315 XHC_GENERIC_TIMEOUT,
2316 (TRB_TEMPLATE **) (UINTN) &EvtTrb
2317 );
2318 if (EFI_ERROR (Status)) {
2319 DEBUG ((EFI_D_ERROR, "XhcConfigHubContext64: Config Endpoint Failed, Status = %r\n", Status));
2320 }
2321 return Status;
2322 }
2323
2324 /**
2325 Stop endpoint through XHCI's Stop_Endpoint cmd.
2326
2327 @param Xhc The XHCI device.
2328 @param SlotId The slot id of the target device.
2329 @param Dci The device context index of the target slot or endpoint.
2330
2331 @retval EFI_SUCCESS Stop endpoint successfully.
2332 @retval Others Failed to stop endpoint.
2333
2334 **/
2335 EFI_STATUS
2336 EFIAPI
2337 XhcPeiStopEndpoint (
2338 IN PEI_XHC_DEV *Xhc,
2339 IN UINT8 SlotId,
2340 IN UINT8 Dci
2341 )
2342 {
2343 EFI_STATUS Status;
2344 EVT_TRB_COMMAND_COMPLETION *EvtTrb;
2345 CMD_TRB_STOP_ENDPOINT CmdTrbStopED;
2346
2347 DEBUG ((EFI_D_INFO, "XhcPeiStopEndpoint: Slot = 0x%x, Dci = 0x%x\n", SlotId, Dci));
2348
2349 //
2350 // Send stop endpoint command to transit Endpoint from running to stop state
2351 //
2352 ZeroMem (&CmdTrbStopED, sizeof (CmdTrbStopED));
2353 CmdTrbStopED.CycleBit = 1;
2354 CmdTrbStopED.Type = TRB_TYPE_STOP_ENDPOINT;
2355 CmdTrbStopED.EDID = Dci;
2356 CmdTrbStopED.SlotId = SlotId;
2357 Status = XhcPeiCmdTransfer (
2358 Xhc,
2359 (TRB_TEMPLATE *) (UINTN) &CmdTrbStopED,
2360 XHC_GENERIC_TIMEOUT,
2361 (TRB_TEMPLATE **) (UINTN) &EvtTrb
2362 );
2363 if (EFI_ERROR(Status)) {
2364 DEBUG ((EFI_D_ERROR, "XhcPeiStopEndpoint: Stop Endpoint Failed, Status = %r\n", Status));
2365 }
2366
2367 return Status;
2368 }
2369
2370 /**
2371 Reset endpoint through XHCI's Reset_Endpoint cmd.
2372
2373 @param Xhc The XHCI device.
2374 @param SlotId The slot id of the target device.
2375 @param Dci The device context index of the target slot or endpoint.
2376
2377 @retval EFI_SUCCESS Reset endpoint successfully.
2378 @retval Others Failed to reset endpoint.
2379
2380 **/
2381 EFI_STATUS
2382 EFIAPI
2383 XhcPeiResetEndpoint (
2384 IN PEI_XHC_DEV *Xhc,
2385 IN UINT8 SlotId,
2386 IN UINT8 Dci
2387 )
2388 {
2389 EFI_STATUS Status;
2390 EVT_TRB_COMMAND_COMPLETION *EvtTrb;
2391 CMD_TRB_RESET_ENDPOINT CmdTrbResetED;
2392
2393 DEBUG ((EFI_D_INFO, "XhcPeiResetEndpoint: Slot = 0x%x, Dci = 0x%x\n", SlotId, Dci));
2394
2395 //
2396 // Send stop endpoint command to transit Endpoint from running to stop state
2397 //
2398 ZeroMem (&CmdTrbResetED, sizeof (CmdTrbResetED));
2399 CmdTrbResetED.CycleBit = 1;
2400 CmdTrbResetED.Type = TRB_TYPE_RESET_ENDPOINT;
2401 CmdTrbResetED.EDID = Dci;
2402 CmdTrbResetED.SlotId = SlotId;
2403 Status = XhcPeiCmdTransfer (
2404 Xhc,
2405 (TRB_TEMPLATE *) (UINTN) &CmdTrbResetED,
2406 XHC_GENERIC_TIMEOUT,
2407 (TRB_TEMPLATE **) (UINTN) &EvtTrb
2408 );
2409 if (EFI_ERROR(Status)) {
2410 DEBUG ((EFI_D_ERROR, "XhcPeiResetEndpoint: Reset Endpoint Failed, Status = %r\n", Status));
2411 }
2412
2413 return Status;
2414 }
2415
2416 /**
2417 Set transfer ring dequeue pointer through XHCI's Set_Tr_Dequeue_Pointer cmd.
2418
2419 @param Xhc The XHCI device.
2420 @param SlotId The slot id of the target device.
2421 @param Dci The device context index of the target slot or endpoint.
2422 @param Urb The dequeue pointer of the transfer ring specified
2423 by the urb to be updated.
2424
2425 @retval EFI_SUCCESS Set transfer ring dequeue pointer succeeds.
2426 @retval Others Failed to set transfer ring dequeue pointer.
2427
2428 **/
2429 EFI_STATUS
2430 EFIAPI
2431 XhcPeiSetTrDequeuePointer (
2432 IN PEI_XHC_DEV *Xhc,
2433 IN UINT8 SlotId,
2434 IN UINT8 Dci,
2435 IN URB *Urb
2436 )
2437 {
2438 EFI_STATUS Status;
2439 EVT_TRB_COMMAND_COMPLETION *EvtTrb;
2440 CMD_SET_TR_DEQ_POINTER CmdSetTRDeq;
2441 EFI_PHYSICAL_ADDRESS PhyAddr;
2442
2443 DEBUG ((EFI_D_INFO, "XhcPeiSetTrDequeuePointer: Slot = 0x%x, Dci = 0x%x, Urb = 0x%x\n", SlotId, Dci, Urb));
2444
2445 //
2446 // Send stop endpoint command to transit Endpoint from running to stop state
2447 //
2448 ZeroMem (&CmdSetTRDeq, sizeof (CmdSetTRDeq));
2449 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, Urb->Ring->RingEnqueue, sizeof (CMD_SET_TR_DEQ_POINTER));
2450 CmdSetTRDeq.PtrLo = XHC_LOW_32BIT (PhyAddr) | Urb->Ring->RingPCS;
2451 CmdSetTRDeq.PtrHi = XHC_HIGH_32BIT (PhyAddr);
2452 CmdSetTRDeq.CycleBit = 1;
2453 CmdSetTRDeq.Type = TRB_TYPE_SET_TR_DEQUE;
2454 CmdSetTRDeq.Endpoint = Dci;
2455 CmdSetTRDeq.SlotId = SlotId;
2456 Status = XhcPeiCmdTransfer (
2457 Xhc,
2458 (TRB_TEMPLATE *) (UINTN) &CmdSetTRDeq,
2459 XHC_GENERIC_TIMEOUT,
2460 (TRB_TEMPLATE **) (UINTN) &EvtTrb
2461 );
2462 if (EFI_ERROR(Status)) {
2463 DEBUG ((EFI_D_ERROR, "XhcPeiSetTrDequeuePointer: Set TR Dequeue Pointer Failed, Status = %r\n", Status));
2464 }
2465
2466 return Status;
2467 }
2468
2469 /**
2470 Check if there is a new generated event.
2471
2472 @param Xhc The XHCI device.
2473 @param EvtRing The event ring to check.
2474 @param NewEvtTrb The new event TRB found.
2475
2476 @retval EFI_SUCCESS Found a new event TRB at the event ring.
2477 @retval EFI_NOT_READY The event ring has no new event.
2478
2479 **/
2480 EFI_STATUS
2481 XhcPeiCheckNewEvent (
2482 IN PEI_XHC_DEV *Xhc,
2483 IN EVENT_RING *EvtRing,
2484 OUT TRB_TEMPLATE **NewEvtTrb
2485 )
2486 {
2487 ASSERT (EvtRing != NULL);
2488
2489 *NewEvtTrb = EvtRing->EventRingDequeue;
2490
2491 if (EvtRing->EventRingDequeue == EvtRing->EventRingEnqueue) {
2492 return EFI_NOT_READY;
2493 }
2494
2495 EvtRing->EventRingDequeue++;
2496 //
2497 // If the dequeue pointer is beyond the ring, then roll-back it to the begining of the ring.
2498 //
2499 if ((UINTN) EvtRing->EventRingDequeue >= ((UINTN) EvtRing->EventRingSeg0 + sizeof (TRB_TEMPLATE) * EvtRing->TrbNumber)) {
2500 EvtRing->EventRingDequeue = EvtRing->EventRingSeg0;
2501 }
2502
2503 return EFI_SUCCESS;
2504 }
2505
2506 /**
2507 Synchronize the specified event ring to update the enqueue and dequeue pointer.
2508
2509 @param Xhc The XHCI device.
2510 @param EvtRing The event ring to sync.
2511
2512 @retval EFI_SUCCESS The event ring is synchronized successfully.
2513
2514 **/
2515 EFI_STATUS
2516 XhcPeiSyncEventRing (
2517 IN PEI_XHC_DEV *Xhc,
2518 IN EVENT_RING *EvtRing
2519 )
2520 {
2521 UINTN Index;
2522 TRB_TEMPLATE *EvtTrb;
2523
2524 ASSERT (EvtRing != NULL);
2525
2526 //
2527 // Calculate the EventRingEnqueue and EventRingCCS.
2528 // Note: only support single Segment
2529 //
2530 EvtTrb = EvtRing->EventRingDequeue;
2531
2532 for (Index = 0; Index < EvtRing->TrbNumber; Index++) {
2533 if (EvtTrb->CycleBit != EvtRing->EventRingCCS) {
2534 break;
2535 }
2536
2537 EvtTrb++;
2538
2539 if ((UINTN) EvtTrb >= ((UINTN) EvtRing->EventRingSeg0 + sizeof (TRB_TEMPLATE) * EvtRing->TrbNumber)) {
2540 EvtTrb = EvtRing->EventRingSeg0;
2541 EvtRing->EventRingCCS = (EvtRing->EventRingCCS) ? 0 : 1;
2542 }
2543 }
2544
2545 if (Index < EvtRing->TrbNumber) {
2546 EvtRing->EventRingEnqueue = EvtTrb;
2547 } else {
2548 ASSERT (FALSE);
2549 }
2550
2551 return EFI_SUCCESS;
2552 }
2553
2554 /**
2555 Free XHCI event ring.
2556
2557 @param Xhc The XHCI device.
2558 @param EventRing The event ring to be freed.
2559
2560 **/
2561 VOID
2562 XhcPeiFreeEventRing (
2563 IN PEI_XHC_DEV *Xhc,
2564 IN EVENT_RING *EventRing
2565 )
2566 {
2567 if(EventRing->EventRingSeg0 == NULL) {
2568 return;
2569 }
2570
2571 //
2572 // Free EventRing Segment 0
2573 //
2574 UsbHcFreeMem (Xhc->MemPool, EventRing->EventRingSeg0, sizeof (TRB_TEMPLATE) * EVENT_RING_TRB_NUMBER);
2575
2576 //
2577 // Free ERST table
2578 //
2579 UsbHcFreeMem (Xhc->MemPool, EventRing->ERSTBase, sizeof (EVENT_RING_SEG_TABLE_ENTRY) * ERST_NUMBER);
2580 }
2581
2582 /**
2583 Create XHCI event ring.
2584
2585 @param Xhc The XHCI device.
2586 @param EventRing The created event ring.
2587
2588 **/
2589 VOID
2590 XhcPeiCreateEventRing (
2591 IN PEI_XHC_DEV *Xhc,
2592 OUT EVENT_RING *EventRing
2593 )
2594 {
2595 VOID *Buf;
2596 EVENT_RING_SEG_TABLE_ENTRY *ERSTBase;
2597 UINTN Size;
2598 EFI_PHYSICAL_ADDRESS ERSTPhy;
2599 EFI_PHYSICAL_ADDRESS DequeuePhy;
2600
2601 ASSERT (EventRing != NULL);
2602
2603 Size = sizeof (TRB_TEMPLATE) * EVENT_RING_TRB_NUMBER;
2604 Buf = UsbHcAllocateMem (Xhc->MemPool, Size);
2605 ASSERT (Buf != NULL);
2606 ASSERT (((UINTN) Buf & 0x3F) == 0);
2607 ZeroMem (Buf, Size);
2608
2609 DequeuePhy = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, Buf, Size);
2610
2611 EventRing->EventRingSeg0 = Buf;
2612 EventRing->TrbNumber = EVENT_RING_TRB_NUMBER;
2613 EventRing->EventRingDequeue = (TRB_TEMPLATE *) EventRing->EventRingSeg0;
2614 EventRing->EventRingEnqueue = (TRB_TEMPLATE *) EventRing->EventRingSeg0;
2615
2616 //
2617 // Software maintains an Event Ring Consumer Cycle State (CCS) bit, initializing it to '1'
2618 // and toggling it every time the Event Ring Dequeue Pointer wraps back to the beginning of the Event Ring.
2619 //
2620 EventRing->EventRingCCS = 1;
2621
2622 Size = sizeof (EVENT_RING_SEG_TABLE_ENTRY) * ERST_NUMBER;
2623 Buf = UsbHcAllocateMem (Xhc->MemPool, Size);
2624 ASSERT (Buf != NULL);
2625 ASSERT (((UINTN) Buf & 0x3F) == 0);
2626 ZeroMem (Buf, Size);
2627
2628 ERSTBase = (EVENT_RING_SEG_TABLE_ENTRY *) Buf;
2629 EventRing->ERSTBase = ERSTBase;
2630 ERSTBase->PtrLo = XHC_LOW_32BIT (DequeuePhy);
2631 ERSTBase->PtrHi = XHC_HIGH_32BIT (DequeuePhy);
2632 ERSTBase->RingTrbSize = EVENT_RING_TRB_NUMBER;
2633
2634 ERSTPhy = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, Buf, Size);
2635
2636 //
2637 // Program the Interrupter Event Ring Segment Table Size (ERSTSZ) register (5.5.2.3.1)
2638 //
2639 XhcPeiWriteRuntimeReg (
2640 Xhc,
2641 XHC_ERSTSZ_OFFSET,
2642 ERST_NUMBER
2643 );
2644 //
2645 // Program the Interrupter Event Ring Dequeue Pointer (ERDP) register (5.5.2.3.3)
2646 //
2647 // Some 3rd party XHCI external cards don't support single 64-bytes width register access,
2648 // So divide it to two 32-bytes width register access.
2649 //
2650 XhcPeiWriteRuntimeReg (
2651 Xhc,
2652 XHC_ERDP_OFFSET,
2653 XHC_LOW_32BIT ((UINT64) (UINTN) DequeuePhy)
2654 );
2655 XhcPeiWriteRuntimeReg (
2656 Xhc,
2657 XHC_ERDP_OFFSET + 4,
2658 XHC_HIGH_32BIT ((UINT64) (UINTN) DequeuePhy)
2659 );
2660 //
2661 // Program the Interrupter Event Ring Segment Table Base Address (ERSTBA) register (5.5.2.3.2)
2662 //
2663 // Some 3rd party XHCI external cards don't support single 64-bytes width register access,
2664 // So divide it to two 32-bytes width register access.
2665 //
2666 XhcPeiWriteRuntimeReg (
2667 Xhc,
2668 XHC_ERSTBA_OFFSET,
2669 XHC_LOW_32BIT ((UINT64) (UINTN) ERSTPhy)
2670 );
2671 XhcPeiWriteRuntimeReg (
2672 Xhc,
2673 XHC_ERSTBA_OFFSET + 4,
2674 XHC_HIGH_32BIT ((UINT64) (UINTN) ERSTPhy)
2675 );
2676 //
2677 // Need set IMAN IE bit to enable the ring interrupt
2678 //
2679 XhcPeiSetRuntimeRegBit (Xhc, XHC_IMAN_OFFSET, XHC_IMAN_IE);
2680 }
2681
2682 /**
2683 Synchronize the specified transfer ring to update the enqueue and dequeue pointer.
2684
2685 @param Xhc The XHCI device.
2686 @param TrsRing The transfer ring to sync.
2687
2688 @retval EFI_SUCCESS The transfer ring is synchronized successfully.
2689
2690 **/
2691 EFI_STATUS
2692 XhcPeiSyncTrsRing (
2693 IN PEI_XHC_DEV *Xhc,
2694 IN TRANSFER_RING *TrsRing
2695 )
2696 {
2697 UINTN Index;
2698 TRB_TEMPLATE *TrsTrb;
2699
2700 ASSERT (TrsRing != NULL);
2701 //
2702 // Calculate the latest RingEnqueue and RingPCS
2703 //
2704 TrsTrb = TrsRing->RingEnqueue;
2705 ASSERT (TrsTrb != NULL);
2706
2707 for (Index = 0; Index < TrsRing->TrbNumber; Index++) {
2708 if (TrsTrb->CycleBit != (TrsRing->RingPCS & BIT0)) {
2709 break;
2710 }
2711 TrsTrb++;
2712 if ((UINT8) TrsTrb->Type == TRB_TYPE_LINK) {
2713 ASSERT (((LINK_TRB *) TrsTrb)->TC != 0);
2714 //
2715 // set cycle bit in Link TRB as normal
2716 //
2717 ((LINK_TRB*)TrsTrb)->CycleBit = TrsRing->RingPCS & BIT0;
2718 //
2719 // Toggle PCS maintained by software
2720 //
2721 TrsRing->RingPCS = (TrsRing->RingPCS & BIT0) ? 0 : 1;
2722 TrsTrb = (TRB_TEMPLATE *) TrsRing->RingSeg0; // Use host address
2723 }
2724 }
2725
2726 ASSERT (Index != TrsRing->TrbNumber);
2727
2728 if (TrsTrb != TrsRing->RingEnqueue) {
2729 TrsRing->RingEnqueue = TrsTrb;
2730 }
2731
2732 //
2733 // Clear the Trb context for enqueue, but reserve the PCS bit
2734 //
2735 TrsTrb->Parameter1 = 0;
2736 TrsTrb->Parameter2 = 0;
2737 TrsTrb->Status = 0;
2738 TrsTrb->RsvdZ1 = 0;
2739 TrsTrb->Type = 0;
2740 TrsTrb->Control = 0;
2741
2742 return EFI_SUCCESS;
2743 }
2744
2745 /**
2746 Create XHCI transfer ring.
2747
2748 @param Xhc The XHCI Device.
2749 @param TrbNum The number of TRB in the ring.
2750 @param TransferRing The created transfer ring.
2751
2752 **/
2753 VOID
2754 XhcPeiCreateTransferRing (
2755 IN PEI_XHC_DEV *Xhc,
2756 IN UINTN TrbNum,
2757 OUT TRANSFER_RING *TransferRing
2758 )
2759 {
2760 VOID *Buf;
2761 LINK_TRB *EndTrb;
2762 EFI_PHYSICAL_ADDRESS PhyAddr;
2763
2764 Buf = UsbHcAllocateMem (Xhc->MemPool, sizeof (TRB_TEMPLATE) * TrbNum);
2765 ASSERT (Buf != NULL);
2766 ASSERT (((UINTN) Buf & 0x3F) == 0);
2767 ZeroMem (Buf, sizeof (TRB_TEMPLATE) * TrbNum);
2768
2769 TransferRing->RingSeg0 = Buf;
2770 TransferRing->TrbNumber = TrbNum;
2771 TransferRing->RingEnqueue = (TRB_TEMPLATE *) TransferRing->RingSeg0;
2772 TransferRing->RingDequeue = (TRB_TEMPLATE *) TransferRing->RingSeg0;
2773 TransferRing->RingPCS = 1;
2774 //
2775 // 4.9.2 Transfer Ring Management
2776 // To form a ring (or circular queue) a Link TRB may be inserted at the end of a ring to
2777 // point to the first TRB in the ring.
2778 //
2779 EndTrb = (LINK_TRB *) ((UINTN) Buf + sizeof (TRB_TEMPLATE) * (TrbNum - 1));
2780 EndTrb->Type = TRB_TYPE_LINK;
2781 PhyAddr = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, Buf, sizeof (TRB_TEMPLATE) * TrbNum);
2782 EndTrb->PtrLo = XHC_LOW_32BIT (PhyAddr);
2783 EndTrb->PtrHi = XHC_HIGH_32BIT (PhyAddr);
2784 //
2785 // Toggle Cycle (TC). When set to '1', the xHC shall toggle its interpretation of the Cycle bit.
2786 //
2787 EndTrb->TC = 1;
2788 //
2789 // Set Cycle bit as other TRB PCS init value
2790 //
2791 EndTrb->CycleBit = 0;
2792 }
2793
2794 /**
2795 Initialize the XHCI host controller for schedule.
2796
2797 @param Xhc The XHCI device to be initialized.
2798
2799 **/
2800 VOID
2801 XhcPeiInitSched (
2802 IN PEI_XHC_DEV *Xhc
2803 )
2804 {
2805 VOID *Dcbaa;
2806 EFI_PHYSICAL_ADDRESS DcbaaPhy;
2807 UINTN Size;
2808 EFI_PHYSICAL_ADDRESS CmdRingPhy;
2809 UINT32 MaxScratchpadBufs;
2810 UINT64 *ScratchBuf;
2811 EFI_PHYSICAL_ADDRESS ScratchPhy;
2812 UINT64 *ScratchEntry;
2813 EFI_PHYSICAL_ADDRESS ScratchEntryPhy;
2814 UINT32 Index;
2815 EFI_STATUS Status;
2816
2817 //
2818 // Initialize memory management.
2819 //
2820 Xhc->MemPool = UsbHcInitMemPool ();
2821 ASSERT (Xhc->MemPool != NULL);
2822
2823 //
2824 // Program the Max Device Slots Enabled (MaxSlotsEn) field in the CONFIG register (5.4.7)
2825 // to enable the device slots that system software is going to use.
2826 //
2827 Xhc->MaxSlotsEn = Xhc->HcSParams1.Data.MaxSlots;
2828 ASSERT (Xhc->MaxSlotsEn >= 1 && Xhc->MaxSlotsEn <= 255);
2829 XhcPeiWriteOpReg (Xhc, XHC_CONFIG_OFFSET, (XhcPeiReadOpReg (Xhc, XHC_CONFIG_OFFSET) & ~XHC_CONFIG_MASK) | Xhc->MaxSlotsEn);
2830
2831 //
2832 // The Device Context Base Address Array entry associated with each allocated Device Slot
2833 // shall contain a 64-bit pointer to the base of the associated Device Context.
2834 // The Device Context Base Address Array shall contain MaxSlotsEn + 1 entries.
2835 // Software shall set Device Context Base Address Array entries for unallocated Device Slots to '0'.
2836 //
2837 Size = (Xhc->MaxSlotsEn + 1) * sizeof (UINT64);
2838 Dcbaa = UsbHcAllocateMem (Xhc->MemPool, Size);
2839 ASSERT (Dcbaa != NULL);
2840
2841 //
2842 // A Scratchpad Buffer is a PAGESIZE block of system memory located on a PAGESIZE boundary.
2843 // System software shall allocate the Scratchpad Buffer(s) before placing the xHC in to Run
2844 // mode (Run/Stop(R/S) ='1').
2845 //
2846 MaxScratchpadBufs = ((Xhc->HcSParams2.Data.ScratchBufHi) << 5) | (Xhc->HcSParams2.Data.ScratchBufLo);
2847 Xhc->MaxScratchpadBufs = MaxScratchpadBufs;
2848 ASSERT (MaxScratchpadBufs <= 1023);
2849 if (MaxScratchpadBufs != 0) {
2850 //
2851 // Allocate the buffer to record the host address for each entry
2852 //
2853 ScratchEntry = AllocateZeroPool (sizeof (UINT64) * MaxScratchpadBufs);
2854 ASSERT (ScratchEntry != NULL);
2855 Xhc->ScratchEntry = ScratchEntry;
2856
2857 ScratchPhy = 0;
2858 Status = UsbHcAllocateAlignedPages (
2859 EFI_SIZE_TO_PAGES (MaxScratchpadBufs * sizeof (UINT64)),
2860 Xhc->PageSize,
2861 (VOID **) &ScratchBuf,
2862 &ScratchPhy
2863 );
2864 ASSERT_EFI_ERROR (Status);
2865
2866 ZeroMem (ScratchBuf, MaxScratchpadBufs * sizeof (UINT64));
2867 Xhc->ScratchBuf = ScratchBuf;
2868
2869 //
2870 // Allocate each scratch buffer
2871 //
2872 for (Index = 0; Index < MaxScratchpadBufs; Index++) {
2873 ScratchEntryPhy = 0;
2874 Status = UsbHcAllocateAlignedPages (
2875 EFI_SIZE_TO_PAGES (Xhc->PageSize),
2876 Xhc->PageSize,
2877 (VOID **) &ScratchEntry[Index],
2878 &ScratchEntryPhy
2879 );
2880 ASSERT_EFI_ERROR (Status);
2881 ZeroMem ((VOID *) (UINTN) ScratchEntry[Index], Xhc->PageSize);
2882 //
2883 // Fill with the PCI device address
2884 //
2885 *ScratchBuf++ = ScratchEntryPhy;
2886 }
2887 //
2888 // The Scratchpad Buffer Array contains pointers to the Scratchpad Buffers. Entry 0 of the
2889 // Device Context Base Address Array points to the Scratchpad Buffer Array.
2890 //
2891 *(UINT64 *) Dcbaa = (UINT64) (UINTN) ScratchPhy;
2892 }
2893
2894 //
2895 // Program the Device Context Base Address Array Pointer (DCBAAP) register (5.4.6) with
2896 // a 64-bit address pointing to where the Device Context Base Address Array is located.
2897 //
2898 Xhc->DCBAA = (UINT64 *) (UINTN) Dcbaa;
2899 //
2900 // Some 3rd party XHCI external cards don't support single 64-bytes width register access,
2901 // So divide it to two 32-bytes width register access.
2902 //
2903 DcbaaPhy = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, Dcbaa, Size);
2904 XhcPeiWriteOpReg (Xhc, XHC_DCBAAP_OFFSET, XHC_LOW_32BIT (DcbaaPhy));
2905 XhcPeiWriteOpReg (Xhc, XHC_DCBAAP_OFFSET + 4, XHC_HIGH_32BIT (DcbaaPhy));
2906
2907 DEBUG ((EFI_D_INFO, "XhcPeiInitSched:DCBAA=0x%x\n", Xhc->DCBAA));
2908
2909 //
2910 // Define the Command Ring Dequeue Pointer by programming the Command Ring Control Register
2911 // (5.4.5) with a 64-bit address pointing to the starting address of the first TRB of the Command Ring.
2912 // Note: The Command Ring is 64 byte aligned, so the low order 6 bits of the Command Ring Pointer shall
2913 // always be '0'.
2914 //
2915 XhcPeiCreateTransferRing (Xhc, CMD_RING_TRB_NUMBER, &Xhc->CmdRing);
2916 //
2917 // The xHC uses the Enqueue Pointer to determine when a Transfer Ring is empty. As it fetches TRBs from a
2918 // Transfer Ring it checks for a Cycle bit transition. If a transition detected, the ring is empty.
2919 // So we set RCS as inverted PCS init value to let Command Ring empty
2920 //
2921 CmdRingPhy = UsbHcGetPciAddrForHostAddr (Xhc->MemPool, Xhc->CmdRing.RingSeg0, sizeof (TRB_TEMPLATE) * CMD_RING_TRB_NUMBER);
2922 ASSERT ((CmdRingPhy & 0x3F) == 0);
2923 CmdRingPhy |= XHC_CRCR_RCS;
2924 //
2925 // Some 3rd party XHCI external cards don't support single 64-bytes width register access,
2926 // So divide it to two 32-bytes width register access.
2927 //
2928 XhcPeiWriteOpReg (Xhc, XHC_CRCR_OFFSET, XHC_LOW_32BIT (CmdRingPhy));
2929 XhcPeiWriteOpReg (Xhc, XHC_CRCR_OFFSET + 4, XHC_HIGH_32BIT (CmdRingPhy));
2930
2931 DEBUG ((EFI_D_INFO, "XhcPeiInitSched:XHC_CRCR=0x%x\n", Xhc->CmdRing.RingSeg0));
2932
2933 //
2934 // Disable the 'interrupter enable' bit in USB_CMD
2935 // and clear IE & IP bit in all Interrupter X Management Registers.
2936 //
2937 XhcPeiClearOpRegBit (Xhc, XHC_USBCMD_OFFSET, XHC_USBCMD_INTE);
2938 for (Index = 0; Index < (UINT16)(Xhc->HcSParams1.Data.MaxIntrs); Index++) {
2939 XhcPeiClearRuntimeRegBit (Xhc, XHC_IMAN_OFFSET + (Index * 32), XHC_IMAN_IE);
2940 XhcPeiSetRuntimeRegBit (Xhc, XHC_IMAN_OFFSET + (Index * 32), XHC_IMAN_IP);
2941 }
2942
2943 //
2944 // Allocate EventRing for Cmd, Ctrl, Bulk, Interrupt, AsynInterrupt transfer
2945 //
2946 XhcPeiCreateEventRing (Xhc, &Xhc->EventRing);
2947 DEBUG ((EFI_D_INFO, "XhcPeiInitSched:XHC_EVENTRING=0x%x\n", Xhc->EventRing.EventRingSeg0));
2948 }
2949
2950 /**
2951 Free the resouce allocated at initializing schedule.
2952
2953 @param Xhc The XHCI device.
2954
2955 **/
2956 VOID
2957 XhcPeiFreeSched (
2958 IN PEI_XHC_DEV *Xhc
2959 )
2960 {
2961 UINT32 Index;
2962 UINT64 *ScratchEntry;
2963
2964 if (Xhc->ScratchBuf != NULL) {
2965 ScratchEntry = Xhc->ScratchEntry;
2966 for (Index = 0; Index < Xhc->MaxScratchpadBufs; Index++) {
2967 //
2968 // Free Scratchpad Buffers
2969 //
2970 UsbHcFreeAlignedPages ((VOID*) (UINTN) ScratchEntry[Index], EFI_SIZE_TO_PAGES (Xhc->PageSize));
2971 }
2972 //
2973 // Free Scratchpad Buffer Array
2974 //
2975 UsbHcFreeAlignedPages (Xhc->ScratchBuf, EFI_SIZE_TO_PAGES (Xhc->MaxScratchpadBufs * sizeof (UINT64)));
2976 FreePool (Xhc->ScratchEntry);
2977 }
2978
2979 if (Xhc->CmdRing.RingSeg0 != NULL) {
2980 UsbHcFreeMem (Xhc->MemPool, Xhc->CmdRing.RingSeg0, sizeof (TRB_TEMPLATE) * CMD_RING_TRB_NUMBER);
2981 Xhc->CmdRing.RingSeg0 = NULL;
2982 }
2983
2984 XhcPeiFreeEventRing (Xhc,&Xhc->EventRing);
2985
2986 if (Xhc->DCBAA != NULL) {
2987 UsbHcFreeMem (Xhc->MemPool, Xhc->DCBAA, (Xhc->MaxSlotsEn + 1) * sizeof (UINT64));
2988 Xhc->DCBAA = NULL;
2989 }
2990
2991 //
2992 // Free memory pool at last
2993 //
2994 if (Xhc->MemPool != NULL) {
2995 UsbHcFreeMemPool (Xhc->MemPool);
2996 Xhc->MemPool = NULL;
2997 }
2998 }
2999