]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Common.c
SourceLevelDebugPkg DebugUsb3: Re-Support IOMMU
[mirror_edk2.git] / SourceLevelDebugPkg / Library / DebugCommunicationLibUsb3 / DebugCommunicationLibUsb3Common.c
... / ...
CommitLineData
1/** @file\r
2 Debug Port Library implementation based on usb3 debug port.\r
3\r
4 Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved.<BR>\r
5 This program and the accompanying materials\r
6 are licensed and made available under the terms and conditions of the BSD License\r
7 which accompanies this distribution. The full text of the license may be found at\r
8 http://opensource.org/licenses/bsd-license.php.\r
9\r
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14\r
15#include "DebugCommunicationLibUsb3Internal.h"\r
16\r
17UINT16 mString0Desc[] = {\r
18 // String Descriptor Type + Length\r
19 ( USB_DESC_TYPE_STRING << 8 ) + STRING0_DESC_LEN,\r
20 0x0409\r
21};\r
22\r
23UINT16 mManufacturerStrDesc[] = {\r
24 // String Descriptor Type + Length\r
25 ( USB_DESC_TYPE_STRING << 8 ) + MANU_DESC_LEN,\r
26 'I', 'n', 't', 'e', 'l'\r
27};\r
28\r
29UINT16 mProductStrDesc[] = {\r
30 // String Descriptor Type + Length\r
31 ( USB_DESC_TYPE_STRING << 8 ) + PRODUCT_DESC_LEN,\r
32 'U', 'S', 'B', ' ', '3', '.', '0', ' ', 'D', 'e', 'b', 'u', 'g', ' ', 'C', 'a', 'b', 'l', 'e'\r
33};\r
34\r
35UINT16 mSerialNumberStrDesc[] = {\r
36 // String Descriptor Type + Length\r
37 ( USB_DESC_TYPE_STRING << 8 ) + SERIAL_DESC_LEN,\r
38 '1'\r
39};\r
40\r
41/**\r
42 Sets bits as per the enabled bit positions in the mask.\r
43\r
44 @param[in, out] Register UINTN register\r
45 @param[in] BitMask 32-bit mask\r
46**/\r
47VOID\r
48XhcSetR32Bit(\r
49 IN OUT UINTN Register, \r
50 IN UINT32 BitMask\r
51 )\r
52{\r
53 UINT32 RegisterValue;\r
54\r
55 RegisterValue = MmioRead32 (Register);\r
56 RegisterValue |= (UINT32)(BitMask);\r
57 MmioWrite32 (Register, RegisterValue);\r
58}\r
59\r
60/**\r
61 Clears bits as per the enabled bit positions in the mask.\r
62\r
63 @param[in, out] Register UINTN register\r
64 @param[in] BitMask 32-bit mask\r
65**/\r
66VOID\r
67XhcClearR32Bit(\r
68 IN OUT UINTN Register, \r
69 IN UINT32 BitMask\r
70 )\r
71{\r
72 UINT32 RegisterValue;\r
73\r
74 RegisterValue = MmioRead32 (Register);\r
75 RegisterValue &= ~BitMask;\r
76 MmioWrite32 (Register, RegisterValue);\r
77}\r
78\r
79/**\r
80 Write the data to the XHCI debug register.\r
81\r
82 @param Handle Debug port handle.\r
83 @param Offset The offset of the debug register.\r
84 @param Data The data to write.\r
85\r
86**/\r
87VOID\r
88XhcWriteDebugReg (\r
89 IN USB3_DEBUG_PORT_HANDLE *Handle,\r
90 IN UINT32 Offset,\r
91 IN UINT32 Data\r
92 )\r
93{\r
94 EFI_PHYSICAL_ADDRESS DebugCapabilityBase;\r
95 \r
96 DebugCapabilityBase = Handle->DebugCapabilityBase;\r
97 MmioWrite32 ((UINTN)(DebugCapabilityBase + Offset), Data);\r
98 \r
99 return;\r
100}\r
101\r
102/**\r
103 Read XHCI debug register.\r
104\r
105 @param Handle Debug port handle.\r
106 @param Offset The offset of the runtime register.\r
107\r
108 @return The register content read\r
109\r
110**/\r
111UINT32\r
112XhcReadDebugReg (\r
113 IN USB3_DEBUG_PORT_HANDLE *Handle,\r
114 IN UINT32 Offset\r
115 )\r
116{\r
117 UINT32 Data;\r
118 EFI_PHYSICAL_ADDRESS DebugCapabilityBase;\r
119 \r
120 DebugCapabilityBase = Handle->DebugCapabilityBase;\r
121 Data = MmioRead32 ((UINTN)(DebugCapabilityBase + Offset));\r
122\r
123 return Data;\r
124}\r
125\r
126/**\r
127 Set one bit of the debug register while keeping other bits.\r
128\r
129 @param Handle Debug port handle.\r
130 @param Offset The offset of the debug register.\r
131 @param Bit The bit mask of the register to set.\r
132\r
133**/\r
134VOID\r
135XhcSetDebugRegBit (\r
136 IN USB3_DEBUG_PORT_HANDLE *Handle,\r
137 IN UINT32 Offset,\r
138 IN UINT32 Bit\r
139 )\r
140{\r
141 UINT32 Data;\r
142\r
143 Data = XhcReadDebugReg (Handle, Offset);\r
144 Data |= Bit;\r
145 XhcWriteDebugReg (Handle, Offset, Data);\r
146}\r
147\r
148/**\r
149 Clear one bit of the debug register while keeping other bits.\r
150\r
151 @param Handle Debug port handle.\r
152 @param Offset The offset of the debug register.\r
153 @param Bit The bit mask of the register to clear.\r
154\r
155**/\r
156VOID\r
157XhcClearDebugRegBit (\r
158 IN USB3_DEBUG_PORT_HANDLE *Handle,\r
159 IN UINT32 Offset,\r
160 IN UINT32 Bit\r
161 )\r
162{\r
163 UINT32 Data;\r
164\r
165 Data = XhcReadDebugReg (Handle, Offset);\r
166 Data &= ~Bit;\r
167 XhcWriteDebugReg (Handle, Offset, Data);\r
168}\r
169\r
170/**\r
171 Program and eanble XHCI MMIO base address.\r
172\r
173 @return XHCI MMIO base address.\r
174\r
175**/\r
176EFI_PHYSICAL_ADDRESS\r
177ProgramXhciBaseAddress (\r
178 VOID\r
179 )\r
180{\r
181 UINT16 PciCmd;\r
182 UINT32 Low;\r
183 UINT32 High;\r
184 EFI_PHYSICAL_ADDRESS XhciMmioBase;\r
185 \r
186 Low = PciRead32 (PcdGet32(PcdUsbXhciPciAddress) + PCI_BASE_ADDRESSREG_OFFSET);\r
187 High = PciRead32 (PcdGet32(PcdUsbXhciPciAddress) + PCI_BASE_ADDRESSREG_OFFSET + 4);\r
188 XhciMmioBase = (EFI_PHYSICAL_ADDRESS) (LShiftU64 ((UINT64) High, 32) | Low);\r
189 XhciMmioBase &= XHCI_BASE_ADDRESS_64_BIT_MASK;\r
190\r
191 if ((XhciMmioBase == 0) || (XhciMmioBase == XHCI_BASE_ADDRESS_64_BIT_MASK)) {\r
192 XhciMmioBase = PcdGet64(PcdUsbXhciMemorySpaceBase);\r
193 PciWrite32(PcdGet32(PcdUsbXhciPciAddress) + PCI_BASE_ADDRESSREG_OFFSET, XhciMmioBase & 0xFFFFFFFF);\r
194 PciWrite32(PcdGet32(PcdUsbXhciPciAddress) + PCI_BASE_ADDRESSREG_OFFSET + 4, (RShiftU64 (XhciMmioBase, 32) & 0xFFFFFFFF));\r
195 }\r
196\r
197 PciCmd = PciRead16 (PcdGet32(PcdUsbXhciPciAddress) + PCI_COMMAND_OFFSET);\r
198 if (((PciCmd & EFI_PCI_COMMAND_MEMORY_SPACE) == 0) || ((PciCmd & EFI_PCI_COMMAND_BUS_MASTER) == 0)) {\r
199 PciCmd |= EFI_PCI_COMMAND_MEMORY_SPACE | EFI_PCI_COMMAND_BUS_MASTER;\r
200 PciWrite16(PcdGet32(PcdUsbXhciPciAddress) + PCI_COMMAND_OFFSET, PciCmd);\r
201 }\r
202\r
203 return XhciMmioBase;\r
204}\r
205\r
206/**\r
207 Update XHC MMIO base address when MMIO base address is changed.\r
208\r
209 @param Handle Debug port handle.\r
210 @param XhciMmioBase XHCI MMIO base address.\r
211\r
212**/\r
213VOID\r
214UpdateXhcResource (\r
215 IN OUT USB3_DEBUG_PORT_HANDLE *Handle,\r
216 IN EFI_PHYSICAL_ADDRESS XhciMmioBase\r
217 )\r
218{\r
219 if (Handle == NULL) {\r
220 return;\r
221 }\r
222\r
223 //\r
224 // Need fix Handle data according to new XHCI MMIO base address.\r
225 //\r
226 Handle->XhciMmioBase = XhciMmioBase;\r
227 Handle->DebugCapabilityBase = XhciMmioBase + Handle->DebugCapabilityOffset;\r
228 Handle->XhciOpRegister = XhciMmioBase + MmioRead8 ((UINTN)XhciMmioBase);\r
229}\r
230\r
231/**\r
232 Calculate the usb debug port bar address.\r
233\r
234 @param Handle Debug port handle.\r
235\r
236 @retval RETURN_UNSUPPORTED The usb host controller does not support usb debug port capability.\r
237 @retval RETURN_SUCCESS Get bar and offset successfully.\r
238\r
239**/\r
240RETURN_STATUS\r
241EFIAPI\r
242CalculateUsbDebugPortMmioBase (\r
243 USB3_DEBUG_PORT_HANDLE *Handle\r
244 )\r
245{\r
246 UINT16 VendorId;\r
247 UINT16 DeviceId;\r
248 UINT8 ProgInterface;\r
249 UINT8 SubClassCode;\r
250 UINT8 BaseCode;\r
251 BOOLEAN Flag;\r
252 UINT32 Capability;\r
253 EFI_PHYSICAL_ADDRESS CapabilityPointer;\r
254 UINT8 CapLength;\r
255\r
256 if (Handle->Initialized != USB3DBG_UNINITIALIZED) {\r
257 if (Handle->Initialized == USB3DBG_NO_DBG_CAB) {\r
258 return RETURN_UNSUPPORTED;\r
259 } else {\r
260 return RETURN_SUCCESS;\r
261 }\r
262 }\r
263\r
264 VendorId = PciRead16 (PcdGet32(PcdUsbXhciPciAddress) + PCI_VENDOR_ID_OFFSET);\r
265 DeviceId = PciRead16 (PcdGet32(PcdUsbXhciPciAddress) + PCI_DEVICE_ID_OFFSET);\r
266 \r
267 if ((VendorId == 0xFFFF) || (DeviceId == 0xFFFF)) {\r
268 goto Done;\r
269 }\r
270\r
271 ProgInterface = PciRead8 (PcdGet32(PcdUsbXhciPciAddress) + PCI_CLASSCODE_OFFSET);\r
272 SubClassCode = PciRead8 (PcdGet32(PcdUsbXhciPciAddress) + PCI_CLASSCODE_OFFSET + 1);\r
273 BaseCode = PciRead8 (PcdGet32(PcdUsbXhciPciAddress) + PCI_CLASSCODE_OFFSET + 2);\r
274 \r
275 if ((ProgInterface != PCI_IF_XHCI) || (SubClassCode != PCI_CLASS_SERIAL_USB) || (BaseCode != PCI_CLASS_SERIAL)) {\r
276 goto Done;\r
277 }\r
278\r
279 CapLength = MmioRead8 ((UINTN) Handle->XhciMmioBase);\r
280\r
281 //\r
282 // Get capability pointer from HCCPARAMS at offset 0x10\r
283 //\r
284 CapabilityPointer = Handle->XhciMmioBase + (MmioRead32 ((UINTN)(Handle->XhciMmioBase + XHC_HCCPARAMS_OFFSET)) >> 16) * 4;\r
285 \r
286 //\r
287 // Search XHCI debug capability\r
288 //\r
289 Flag = FALSE;\r
290 Capability = MmioRead32 ((UINTN)CapabilityPointer);\r
291 while (TRUE) {\r
292 if ((Capability & XHC_CAPABILITY_ID_MASK) == PCI_CAPABILITY_ID_DEBUG_PORT) {\r
293 Flag = TRUE;\r
294 break;\r
295 }\r
296 if ((((Capability & XHC_NEXT_CAPABILITY_MASK) >> 8) & XHC_CAPABILITY_ID_MASK) == 0) {\r
297 //\r
298 // Reach the end of capability list, quit\r
299 //\r
300 break;\r
301 }\r
302 CapabilityPointer += ((Capability & XHC_NEXT_CAPABILITY_MASK) >> 8) * 4;\r
303 Capability = MmioRead32 ((UINTN)CapabilityPointer);\r
304 }\r
305\r
306 if (!Flag) {\r
307 goto Done;\r
308 }\r
309\r
310 //\r
311 // USB3 debug capability is supported.\r
312 //\r
313 Handle->DebugCapabilityBase = CapabilityPointer;\r
314 Handle->DebugCapabilityOffset = CapabilityPointer - Handle->XhciMmioBase;\r
315 Handle->XhciOpRegister = Handle->XhciMmioBase + CapLength;\r
316 Handle->DebugSupport = TRUE;\r
317 Handle->Initialized = USB3DBG_DBG_CAB;\r
318 return RETURN_SUCCESS;\r
319\r
320Done:\r
321 Handle->Initialized = USB3DBG_NO_DBG_CAB;\r
322 return RETURN_UNSUPPORTED;\r
323}\r
324\r
325/**\r
326 Check if it needs to re-initialize usb debug port hardware.\r
327\r
328 During different phases switch, such as SEC to PEI or PEI to DXE or DXE to SMM, we should check\r
329 whether the usb debug port hardware configuration is changed. Such case can be triggered by\r
330 Pci bus resource allocation and so on.\r
331\r
332 @param Handle Debug port handle.\r
333\r
334 @retval TRUE The usb debug port hardware configuration is changed.\r
335 @retval FALSE The usb debug port hardware configuration is not changed.\r
336\r
337**/\r
338BOOLEAN\r
339EFIAPI\r
340NeedReinitializeHardware(\r
341 IN USB3_DEBUG_PORT_HANDLE *Handle\r
342 )\r
343{\r
344 BOOLEAN Result;\r
345 volatile UINT32 Dcctrl;\r
346\r
347 Result = FALSE;\r
348\r
349 //\r
350 // If DCE bit, it means USB3 debug is not enabled.\r
351 //\r
352 Dcctrl = XhcReadDebugReg (Handle, XHC_DC_DCCTRL);\r
353 if ((Dcctrl & BIT0) == 0) {\r
354 Result = TRUE;\r
355 } else if (!Handle->Ready) {\r
356 Handle->Ready = TRUE;\r
357 Handle->Initialized = USB3DBG_ENABLED;\r
358 }\r
359\r
360 return Result;\r
361}\r
362\r
363/**\r
364 Create XHCI event ring.\r
365\r
366 @param Handle Debug port handle.\r
367 @param EventRing The created event ring.\r
368\r
369**/\r
370EFI_STATUS\r
371CreateEventRing (\r
372 IN USB3_DEBUG_PORT_HANDLE *Handle,\r
373 OUT EVENT_RING *EventRing\r
374 )\r
375{\r
376 VOID *Buf;\r
377 EVENT_RING_SEG_TABLE_ENTRY *ERSTBase;\r
378\r
379 ASSERT (EventRing != NULL);\r
380 \r
381 //\r
382 // Allocate Event Ring\r
383 //\r
384 Buf = AllocateAlignBuffer (sizeof (TRB_TEMPLATE) * EVENT_RING_TRB_NUMBER);\r
385 ASSERT (Buf != NULL);\r
386 ASSERT (((UINTN) Buf & 0x3F) == 0);\r
387 ZeroMem (Buf, sizeof (TRB_TEMPLATE) * EVENT_RING_TRB_NUMBER);\r
388\r
389 EventRing->EventRingSeg0 = (EFI_PHYSICAL_ADDRESS)(UINTN) Buf;\r
390 EventRing->TrbNumber = EVENT_RING_TRB_NUMBER;\r
391 EventRing->EventRingDequeue = (EFI_PHYSICAL_ADDRESS)(UINTN) EventRing->EventRingSeg0;\r
392 EventRing->EventRingEnqueue = (EFI_PHYSICAL_ADDRESS)(UINTN) EventRing->EventRingSeg0;\r
393 \r
394 //\r
395 // Software maintains an Event Ring Consumer Cycle State (CCS) bit, initializing it to '1'\r
396 // and toggling it every time the Event Ring Dequeue Pointer wraps back to the beginning of the Event Ring.\r
397 //\r
398 EventRing->EventRingCCS = 1;\r
399\r
400 //\r
401 // Allocate Event Ring Segment Table Entry 0 in Event Ring Segment Table\r
402 //\r
403 Buf = AllocateAlignBuffer (sizeof (EVENT_RING_SEG_TABLE_ENTRY) * ERST_NUMBER);\r
404 ASSERT (Buf != NULL);\r
405 ASSERT (((UINTN) Buf & 0x3F) == 0);\r
406 ZeroMem (Buf, sizeof (EVENT_RING_SEG_TABLE_ENTRY) * ERST_NUMBER);\r
407\r
408 ERSTBase = (EVENT_RING_SEG_TABLE_ENTRY *) Buf;\r
409 EventRing->ERSTBase = (EFI_PHYSICAL_ADDRESS)(UINTN) ERSTBase;\r
410\r
411 //\r
412 // Fill Event Segment address\r
413 //\r
414 ERSTBase->PtrLo = XHC_LOW_32BIT (EventRing->EventRingSeg0);\r
415 ERSTBase->PtrHi = XHC_HIGH_32BIT (EventRing->EventRingSeg0);\r
416 ERSTBase->RingTrbSize = EVENT_RING_TRB_NUMBER;\r
417\r
418 //\r
419 // Program the Interrupter Event Ring Dequeue Pointer (DCERDP) register (7.6.4.1)\r
420 //\r
421 XhcWriteDebugReg (\r
422 Handle,\r
423 XHC_DC_DCERDP,\r
424 XHC_LOW_32BIT((UINT64)(UINTN)EventRing->EventRingDequeue)\r
425 );\r
426\r
427 XhcWriteDebugReg (\r
428 Handle,\r
429 XHC_DC_DCERDP + 4,\r
430 XHC_HIGH_32BIT((UINT64)(UINTN)EventRing->EventRingDequeue)\r
431 );\r
432\r
433 //\r
434 // Program the Debug Capability Event Ring Segment Table Base Address (DCERSTBA) register(7.6.4.1)\r
435 //\r
436 XhcWriteDebugReg (\r
437 Handle,\r
438 XHC_DC_DCERSTBA,\r
439 XHC_LOW_32BIT((UINT64)(UINTN)ERSTBase)\r
440 );\r
441\r
442 XhcWriteDebugReg (\r
443 Handle,\r
444 XHC_DC_DCERSTBA + 4,\r
445 XHC_HIGH_32BIT((UINT64)(UINTN)ERSTBase)\r
446 );\r
447\r
448 //\r
449 // Program the Debug Capability Event Ring Segment Table Size (DCERSTSZ) register(7.6.4.1)\r
450 //\r
451 XhcWriteDebugReg (\r
452 Handle,\r
453 XHC_DC_DCERSTSZ,\r
454 ERST_NUMBER\r
455 );\r
456 return EFI_SUCCESS;\r
457}\r
458\r
459/**\r
460 Create XHCI transfer ring.\r
461\r
462 @param Handle Debug port handle.\r
463 @param TrbNum The number of TRB in the ring.\r
464 @param TransferRing The created transfer ring.\r
465\r
466**/\r
467VOID\r
468CreateTransferRing (\r
469 IN USB3_DEBUG_PORT_HANDLE *Handle,\r
470 IN UINT32 TrbNum,\r
471 OUT TRANSFER_RING *TransferRing\r
472 )\r
473{\r
474 VOID *Buf;\r
475 LINK_TRB *EndTrb;\r
476 \r
477 Buf = AllocateAlignBuffer (sizeof (TRB_TEMPLATE) * TrbNum);\r
478 ASSERT (Buf != NULL);\r
479 ASSERT (((UINTN) Buf & 0xF) == 0);\r
480 ZeroMem (Buf, sizeof (TRB_TEMPLATE) * TrbNum);\r
481\r
482 TransferRing->RingSeg0 = (EFI_PHYSICAL_ADDRESS)(UINTN) Buf;\r
483 TransferRing->TrbNumber = TrbNum;\r
484 TransferRing->RingEnqueue = TransferRing->RingSeg0;\r
485 TransferRing->RingDequeue = TransferRing->RingSeg0;\r
486 TransferRing->RingPCS = 1;\r
487 //\r
488 // 4.9.2 Transfer Ring Management\r
489 // To form a ring (or circular queue) a Link TRB may be inserted at the end of a ring to\r
490 // point to the first TRB in the ring.\r
491 //\r
492 EndTrb = (LINK_TRB *) ((UINTN)Buf + sizeof (TRB_TEMPLATE) * (TrbNum - 1));\r
493 EndTrb->Type = TRB_TYPE_LINK;\r
494 EndTrb->PtrLo = XHC_LOW_32BIT (Buf);\r
495 EndTrb->PtrHi = XHC_HIGH_32BIT (Buf);\r
496 //\r
497 // Toggle Cycle (TC). When set to '1', the xHC shall toggle its interpretation of the Cycle bit.\r
498 //\r
499 EndTrb->TC = 1;\r
500 //\r
501 // Set Cycle bit as other TRB PCS init value\r
502 //\r
503 EndTrb->CycleBit = 0;\r
504}\r
505\r
506/**\r
507 Create debug capability context for XHC debug device.\r
508\r
509 @param Handle Debug port handle.\r
510\r
511 @retval EFI_SUCCESS The bit successfully changed by host controller.\r
512 @retval EFI_TIMEOUT The time out occurred.\r
513\r
514**/\r
515EFI_STATUS\r
516CreateDebugCapabilityContext (\r
517 IN USB3_DEBUG_PORT_HANDLE *Handle\r
518 )\r
519{\r
520 VOID *Buf;\r
521 XHC_DC_CONTEXT *DebugCapabilityContext;\r
522 UINT8 *String0Desc;\r
523 UINT8 *ManufacturerStrDesc;\r
524 UINT8 *ProductStrDesc;\r
525 UINT8 *SerialNumberStrDesc;\r
526 \r
527 //\r
528 // Allocate debug device context\r
529 //\r
530 Buf = AllocateAlignBuffer (sizeof (XHC_DC_CONTEXT));\r
531 ASSERT (Buf != NULL);\r
532 ASSERT (((UINTN) Buf & 0xF) == 0);\r
533 ZeroMem (Buf, sizeof (XHC_DC_CONTEXT));\r
534 \r
535 DebugCapabilityContext = (XHC_DC_CONTEXT *)(UINTN) Buf;\r
536 Handle->DebugCapabilityContext = (EFI_PHYSICAL_ADDRESS)(UINTN) DebugCapabilityContext;\r
537 \r
538 //\r
539 // Initialize DbcInfoContext.\r
540 //\r
541 DebugCapabilityContext->DbcInfoContext.String0Length = STRING0_DESC_LEN;\r
542 DebugCapabilityContext->DbcInfoContext.ManufacturerStrLength = MANU_DESC_LEN;\r
543 DebugCapabilityContext->DbcInfoContext.ProductStrLength = PRODUCT_DESC_LEN;\r
544 DebugCapabilityContext->DbcInfoContext.SerialNumberStrLength = SERIAL_DESC_LEN;\r
545\r
546 //\r
547 // Initialize EpOutContext.\r
548 //\r
549 DebugCapabilityContext->EpOutContext.CErr = 0x3;\r
550 DebugCapabilityContext->EpOutContext.EPType = ED_BULK_OUT;\r
551 DebugCapabilityContext->EpOutContext.MaxPacketSize = XHCI_DEBUG_DEVICE_MAX_PACKET_SIZE;\r
552 DebugCapabilityContext->EpOutContext.AverageTRBLength = 0x1000;\r
553 \r
554 //\r
555 // Initialize EpInContext.\r
556 //\r
557 DebugCapabilityContext->EpInContext.CErr = 0x3;\r
558 DebugCapabilityContext->EpInContext.EPType = ED_BULK_IN;\r
559 DebugCapabilityContext->EpInContext.MaxPacketSize = XHCI_DEBUG_DEVICE_MAX_PACKET_SIZE;\r
560 DebugCapabilityContext->EpInContext.AverageTRBLength = 0x1000;\r
561 \r
562 //\r
563 // Update string descriptor address\r
564 //\r
565 String0Desc = (UINT8 *) AllocateAlignBuffer (STRING0_DESC_LEN + MANU_DESC_LEN + PRODUCT_DESC_LEN + SERIAL_DESC_LEN);\r
566 ASSERT (String0Desc != NULL);\r
567 ZeroMem (String0Desc, STRING0_DESC_LEN + MANU_DESC_LEN + PRODUCT_DESC_LEN + SERIAL_DESC_LEN);\r
568 CopyMem (String0Desc, mString0Desc, STRING0_DESC_LEN);\r
569 DebugCapabilityContext->DbcInfoContext.String0DescAddress = (UINT64)(UINTN)String0Desc;\r
570 \r
571 ManufacturerStrDesc = String0Desc + STRING0_DESC_LEN;\r
572 CopyMem (ManufacturerStrDesc, mManufacturerStrDesc, MANU_DESC_LEN);\r
573 DebugCapabilityContext->DbcInfoContext.ManufacturerStrDescAddress = (UINT64)(UINTN)ManufacturerStrDesc;\r
574 \r
575 ProductStrDesc = ManufacturerStrDesc + MANU_DESC_LEN;\r
576 CopyMem (ProductStrDesc, mProductStrDesc, PRODUCT_DESC_LEN);\r
577 DebugCapabilityContext->DbcInfoContext.ProductStrDescAddress = (UINT64)(UINTN)ProductStrDesc;\r
578 \r
579 SerialNumberStrDesc = ProductStrDesc + PRODUCT_DESC_LEN;\r
580 CopyMem (SerialNumberStrDesc, mSerialNumberStrDesc, SERIAL_DESC_LEN);\r
581 DebugCapabilityContext->DbcInfoContext.SerialNumberStrDescAddress = (UINT64)(UINTN)SerialNumberStrDesc;\r
582 \r
583 //\r
584 // Allocate and initialize the Transfer Ring for the Input Endpoint Context.\r
585 //\r
586 ZeroMem (&Handle->TransferRingIn, sizeof (TRANSFER_RING));\r
587 CreateTransferRing (Handle, TR_RING_TRB_NUMBER, &Handle->TransferRingIn);\r
588 DebugCapabilityContext->EpInContext.PtrLo = XHC_LOW_32BIT (Handle->TransferRingIn.RingSeg0) | BIT0;\r
589 DebugCapabilityContext->EpInContext.PtrHi = XHC_HIGH_32BIT (Handle->TransferRingIn.RingSeg0);\r
590\r
591 //\r
592 // Allocate and initialize the Transfer Ring for the Output Endpoint Context.\r
593 //\r
594 ZeroMem (&Handle->TransferRingOut, sizeof (TRANSFER_RING));\r
595 CreateTransferRing (Handle, TR_RING_TRB_NUMBER, &Handle->TransferRingOut);\r
596 DebugCapabilityContext->EpOutContext.PtrLo = XHC_LOW_32BIT (Handle->TransferRingOut.RingSeg0) | BIT0;\r
597 DebugCapabilityContext->EpOutContext.PtrHi = XHC_HIGH_32BIT (Handle->TransferRingOut.RingSeg0);\r
598\r
599 //\r
600 // Program the Debug Capability Context Pointer (DCCP) register(7.6.8.7)\r
601 //\r
602 XhcWriteDebugReg (\r
603 Handle,\r
604 XHC_DC_DCCP,\r
605 XHC_LOW_32BIT((UINT64)(UINTN)DebugCapabilityContext)\r
606 );\r
607 XhcWriteDebugReg (\r
608 Handle,\r
609 XHC_DC_DCCP + 4,\r
610 XHC_HIGH_32BIT((UINT64)(UINTN)DebugCapabilityContext)\r
611 );\r
612 return EFI_SUCCESS;\r
613}\r
614\r
615/**\r
616 Check if debug device is running.\r
617\r
618 @param Handle Debug port handle.\r
619\r
620**/\r
621VOID\r
622XhcDetectDebugCapabilityReady (\r
623 IN USB3_DEBUG_PORT_HANDLE *Handle\r
624 )\r
625{\r
626 UINT64 TimeOut;\r
627 volatile UINT32 Dcctrl;\r
628\r
629 TimeOut = 1;\r
630 if (Handle->Initialized == USB3DBG_DBG_CAB) {\r
631 //\r
632 // As detection is slow in seconds, wait for longer timeout for the first time.\r
633 // If first initialization is failed, we will try to enable debug device in the\r
634 // Poll function invoked by timer.\r
635 //\r
636 TimeOut = DivU64x32 (PcdGet64 (PcdUsbXhciDebugDetectTimeout), XHC_POLL_DELAY) + 1;\r
637 }\r
638\r
639 do {\r
640 //\r
641 // Check if debug device is in configured state\r
642 //\r
643 Dcctrl = XhcReadDebugReg (Handle, XHC_DC_DCCTRL);\r
644 if ((Dcctrl & BIT0) != 0) {\r
645 //\r
646 // Set the flag to indicate debug device is in configured state\r
647 //\r
648 Handle->Ready = TRUE;\r
649 break;\r
650 }\r
651 MicroSecondDelay (XHC_POLL_DELAY);\r
652 TimeOut--;\r
653 } while (TimeOut != 0);\r
654}\r
655\r
656/**\r
657 Initialize usb debug port hardware.\r
658\r
659 @param Handle Debug port handle.\r
660\r
661 @retval TRUE The usb debug port hardware configuration is changed.\r
662 @retval FALSE The usb debug port hardware configuration is not changed.\r
663\r
664**/\r
665RETURN_STATUS\r
666EFIAPI\r
667InitializeUsbDebugHardware (\r
668 IN USB3_DEBUG_PORT_HANDLE *Handle\r
669 )\r
670{\r
671 RETURN_STATUS Status;\r
672 UINT8 *Buffer;\r
673 UINTN Index;\r
674 UINT8 TotalUsb3Port;\r
675 EFI_PHYSICAL_ADDRESS XhciOpRegister;\r
676\r
677 XhciOpRegister = Handle->XhciOpRegister;\r
678 TotalUsb3Port = MmioRead32 (((UINTN) Handle->XhciMmioBase + XHC_HCSPARAMS1_OFFSET)) >> 24;\r
679\r
680 if (Handle->Initialized == USB3DBG_NOT_ENABLED) {\r
681 //\r
682 // If XHCI supports debug capability, hardware resource has been allocated, \r
683 // but it has not been enabled, try to enable again.\r
684 //\r
685 goto Enable;\r
686 }\r
687\r
688 //\r
689 // Initialize for PEI phase when AllocatePages can work.\r
690 // Allocate data buffer with max packet size for data read and data poll.\r
691 // Allocate data buffer for data write.\r
692 //\r
693 Buffer = AllocateAlignBuffer (XHCI_DEBUG_DEVICE_MAX_PACKET_SIZE * 2 + USB3_DEBUG_PORT_WRITE_MAX_PACKET_SIZE);\r
694 if (Buffer == NULL) {\r
695 //\r
696 // AllocatePages can not still work now, return fail and do not initialize now.\r
697 //\r
698 return RETURN_NOT_READY;\r
699 }\r
700\r
701 //\r
702 // Reset port to get debug device discovered\r
703 // \r
704 for (Index = 0; Index < TotalUsb3Port; Index++) {\r
705 XhcSetR32Bit ((UINTN)XhciOpRegister + XHC_PORTSC_OFFSET + Index * 0x10, BIT4);\r
706 MicroSecondDelay (10 * 1000);\r
707 }\r
708\r
709 //\r
710 // Clear DCE bit and LSE bit in DCCTRL\r
711 //\r
712 if ((XhcReadDebugReg (Handle, XHC_DC_DCCTRL) & (BIT1|BIT31)) == (BIT1|BIT31)) {\r
713 XhcClearDebugRegBit (Handle, XHC_DC_DCCTRL, BIT1|BIT31);\r
714 }\r
715\r
716 //\r
717 // Construct the buffer for read, poll and write.\r
718 //\r
719 Handle->UrbIn.Data = (EFI_PHYSICAL_ADDRESS)(UINTN) Buffer;\r
720 Handle->Data = (EFI_PHYSICAL_ADDRESS)(UINTN) Buffer + XHCI_DEBUG_DEVICE_MAX_PACKET_SIZE;\r
721 Handle->UrbOut.Data = Handle->UrbIn.Data + XHCI_DEBUG_DEVICE_MAX_PACKET_SIZE * 2;\r
722 \r
723 //\r
724 // Initialize event ring\r
725 //\r
726 ZeroMem (&Handle->EventRing, sizeof (EVENT_RING));\r
727 Status = CreateEventRing (Handle, &Handle->EventRing);\r
728 ASSERT_EFI_ERROR (Status);\r
729 \r
730 //\r
731 // Init IN and OUT endpoint context\r
732 //\r
733 Status = CreateDebugCapabilityContext (Handle);\r
734 ASSERT_EFI_ERROR (Status);\r
735 \r
736 //\r
737 // Init DCDDI1 and DCDDI2\r
738 //\r
739 XhcWriteDebugReg (\r
740 Handle,\r
741 XHC_DC_DCDDI1,\r
742 (UINT32)((XHCI_DEBUG_DEVICE_VENDOR_ID << 16) | XHCI_DEBUG_DEVICE_PROTOCOL)\r
743 ); \r
744\r
745 XhcWriteDebugReg (\r
746 Handle,\r
747 XHC_DC_DCDDI2,\r
748 (UINT32)((XHCI_DEBUG_DEVICE_REVISION << 16) | XHCI_DEBUG_DEVICE_PRODUCT_ID)\r
749 );\r
750\r
751Enable:\r
752 if ((Handle->Initialized == USB3DBG_NOT_ENABLED) && (!Handle->ChangePortPower)) {\r
753 //\r
754 // If the first time detection is failed, turn port power off and on in order to \r
755 // reset port status this time, then try to check if debug device is ready again.\r
756 //\r
757 for (Index = 0; Index < TotalUsb3Port; Index++) {\r
758 XhcClearR32Bit ((UINTN)XhciOpRegister + XHC_PORTSC_OFFSET + Index * 0x10, BIT9);\r
759 MicroSecondDelay (XHC_DEBUG_PORT_ON_OFF_DELAY);\r
760 XhcSetR32Bit ((UINTN)XhciOpRegister + XHC_PORTSC_OFFSET + Index * 0x10, BIT9);\r
761 MicroSecondDelay (XHC_DEBUG_PORT_ON_OFF_DELAY);\r
762 Handle->ChangePortPower = TRUE;\r
763 }\r
764 }\r
765\r
766 //\r
767 // Set DCE bit and LSE bit to "1" in DCCTRL in first initialization\r
768 //\r
769 XhcSetDebugRegBit (Handle, XHC_DC_DCCTRL, BIT1|BIT31);\r
770 \r
771 XhcDetectDebugCapabilityReady (Handle);\r
772 \r
773 Status = RETURN_SUCCESS;\r
774 if (!Handle->Ready) {\r
775 Handle->Initialized = USB3DBG_NOT_ENABLED;\r
776 Status = RETURN_NOT_READY;\r
777 } else {\r
778 Handle->Initialized = USB3DBG_ENABLED;\r
779 }\r
780\r
781 return Status;\r
782}\r
783\r
784/**\r
785 Discover and initialize usb debug port.\r
786\r
787 @param Handle Debug port handle.\r
788\r
789**/\r
790VOID\r
791DiscoverInitializeUsbDebugPort (\r
792 IN USB3_DEBUG_PORT_HANDLE *Handle\r
793 )\r
794{\r
795 EFI_STATUS Status;\r
796 EFI_PHYSICAL_ADDRESS XhciMmioBase;\r
797\r
798 //\r
799 // Read 64-bit MMIO base address\r
800 //\r
801 XhciMmioBase = ProgramXhciBaseAddress ();\r
802 Handle->XhciMmioBase = XhciMmioBase;\r
803\r
804 Status = CalculateUsbDebugPortMmioBase (Handle);\r
805 if (!RETURN_ERROR (Status)) {\r
806 UpdateXhcResource (Handle, XhciMmioBase);\r
807 if (NeedReinitializeHardware (Handle)) {\r
808 InitializeUsbDebugHardware (Handle);\r
809 }\r
810 }\r
811}\r
812\r
813/**\r
814 Set USB3 debug instance address.\r
815\r
816 @param[in] Instance Debug port instance.\r
817\r
818**/ \r
819VOID\r
820SetUsb3DebugPortInstance (\r
821 IN USB3_DEBUG_PORT_HANDLE *Instance\r
822 )\r
823{\r
824 EFI_PHYSICAL_ADDRESS *AddrPtr;\r
825\r
826 AddrPtr = GetUsb3DebugPortInstanceAddrPtr ();\r
827 ASSERT (AddrPtr != NULL);\r
828 *AddrPtr = (EFI_PHYSICAL_ADDRESS) (UINTN) Instance;\r
829}\r
830\r
831/**\r
832 Return USB3 debug instance address.\r
833\r
834**/ \r
835USB3_DEBUG_PORT_HANDLE *\r
836GetUsb3DebugPortInstance (\r
837 VOID\r
838 )\r
839{\r
840 EFI_PHYSICAL_ADDRESS *AddrPtr;\r
841 USB3_DEBUG_PORT_HANDLE *Instance;\r
842\r
843 AddrPtr = GetUsb3DebugPortInstanceAddrPtr ();\r
844 ASSERT (AddrPtr != NULL);\r
845\r
846 Instance = (USB3_DEBUG_PORT_HANDLE *) (UINTN) *AddrPtr;\r
847\r
848 return Instance;\r
849}\r
850\r
851/**\r
852 Read data from debug device and save the data in buffer.\r
853\r
854 Reads NumberOfBytes data bytes from a debug device into the buffer\r
855 specified by Buffer. The number of bytes actually read is returned.\r
856 If the return value is less than NumberOfBytes, then the rest operation failed.\r
857 If NumberOfBytes is zero, then return 0.\r
858\r
859 @param Handle Debug port handle.\r
860 @param Buffer Pointer to the data buffer to store the data read from the debug device.\r
861 @param NumberOfBytes Number of bytes which will be read.\r
862 @param Timeout Timeout value for reading from debug device. Its unit is Microsecond.\r
863\r
864 @retval 0 Read data failed, no data is to be read.\r
865 @retval >0 Actual number of bytes read from debug device.\r
866\r
867**/\r
868UINTN\r
869EFIAPI\r
870DebugPortReadBuffer (\r
871 IN DEBUG_PORT_HANDLE Handle,\r
872 IN UINT8 *Buffer,\r
873 IN UINTN NumberOfBytes,\r
874 IN UINTN Timeout\r
875 )\r
876{\r
877 USB3_DEBUG_PORT_HANDLE *UsbDebugPortHandle;\r
878 UINT8 Index;\r
879 UINT8 *Data;\r
880\r
881 if (NumberOfBytes != 1 || Buffer == NULL || Timeout != 0) {\r
882 return 0;\r
883 }\r
884\r
885 //\r
886 // If Handle is NULL, get own instance.\r
887 // If Handle is not NULL, use it and set the instance.\r
888 //\r
889 if (Handle != NULL) {\r
890 UsbDebugPortHandle = (USB3_DEBUG_PORT_HANDLE *) Handle;\r
891 SetUsb3DebugPortInstance (UsbDebugPortHandle);\r
892 } else {\r
893 UsbDebugPortHandle = GetUsb3DebugPortInstance ();\r
894 }\r
895 if (UsbDebugPortHandle == NULL) {\r
896 return 0;\r
897 }\r
898\r
899 if (UsbDebugPortHandle->InNotify) {\r
900 return 0;\r
901 }\r
902\r
903 DiscoverInitializeUsbDebugPort (UsbDebugPortHandle);\r
904\r
905 if (UsbDebugPortHandle->Initialized != USB3DBG_ENABLED) {\r
906 return 0;\r
907 }\r
908\r
909 Data = (UINT8 *)(UINTN)UsbDebugPortHandle->Data;\r
910\r
911 //\r
912 // Read data from buffer\r
913 //\r
914 if (UsbDebugPortHandle->DataCount < 1) {\r
915 return 0;\r
916 } else {\r
917 *Buffer = Data[0];\r
918\r
919 for (Index = 0; Index < UsbDebugPortHandle->DataCount - 1; Index++) {\r
920 if ((Index + 1) >= XHCI_DEBUG_DEVICE_MAX_PACKET_SIZE) {\r
921 return 0;\r
922 }\r
923 Data[Index] = Data[Index + 1];\r
924 }\r
925 UsbDebugPortHandle->DataCount = (UINT8)(UsbDebugPortHandle->DataCount - 1);\r
926 return 1;\r
927 }\r
928}\r
929\r
930/**\r
931 Write data from buffer to debug device.\r
932\r
933 Writes NumberOfBytes data bytes from Buffer to the debug device.\r
934 The number of bytes actually written to the debug device is returned.\r
935 If the return value is less than NumberOfBytes, then the write operation failed.\r
936 If NumberOfBytes is zero, then return 0.\r
937\r
938 @param Handle Debug port handle.\r
939 @param Buffer Pointer to the data buffer to be written.\r
940 @param NumberOfBytes Number of bytes to written to the debug device.\r
941\r
942 @retval 0 NumberOfBytes is 0.\r
943 @retval >0 The number of bytes written to the debug device.\r
944 If this value is less than NumberOfBytes, then the write operation failed.\r
945\r
946**/\r
947UINTN\r
948EFIAPI\r
949DebugPortWriteBuffer (\r
950 IN DEBUG_PORT_HANDLE Handle,\r
951 IN UINT8 *Buffer,\r
952 IN UINTN NumberOfBytes\r
953 )\r
954{\r
955 USB3_DEBUG_PORT_HANDLE *UsbDebugPortHandle;\r
956 UINTN Sent;\r
957 UINTN Total;\r
958\r
959 if (NumberOfBytes == 0 || Buffer == NULL) {\r
960 return 0;\r
961 }\r
962\r
963 Sent = 0;\r
964 Total = 0;\r
965\r
966 //\r
967 // If Handle is NULL, get own instance.\r
968 // If Handle is not NULL, use it and set the instance.\r
969 //\r
970 if (Handle != NULL) {\r
971 UsbDebugPortHandle = (USB3_DEBUG_PORT_HANDLE *) Handle;\r
972 SetUsb3DebugPortInstance (UsbDebugPortHandle);\r
973 } else {\r
974 UsbDebugPortHandle = GetUsb3DebugPortInstance ();\r
975 }\r
976 if (UsbDebugPortHandle == NULL) {\r
977 return 0;\r
978 }\r
979\r
980 if (UsbDebugPortHandle->InNotify) {\r
981 return 0;\r
982 }\r
983\r
984 DiscoverInitializeUsbDebugPort (UsbDebugPortHandle);\r
985\r
986 if (UsbDebugPortHandle->Initialized != USB3DBG_ENABLED) {\r
987 return 0;\r
988 }\r
989\r
990 //\r
991 // When host is trying to send data, write will be blocked.\r
992 // Poll to see if there is any data sent by host at first.\r
993 //\r
994 DebugPortPollBuffer (UsbDebugPortHandle);\r
995\r
996 while ((Total < NumberOfBytes)) {\r
997 if (NumberOfBytes - Total > USB3_DEBUG_PORT_WRITE_MAX_PACKET_SIZE) {\r
998 Sent = USB3_DEBUG_PORT_WRITE_MAX_PACKET_SIZE;\r
999 } else {\r
1000 Sent = (UINT8)(NumberOfBytes - Total);\r
1001 }\r
1002 XhcDataTransfer (UsbDebugPortHandle, EfiUsbDataOut, Buffer + Total, &Sent, DATA_TRANSFER_WRITE_TIMEOUT);\r
1003 Total += Sent;\r
1004 }\r
1005 \r
1006 return Total;\r
1007}\r
1008\r
1009/**\r
1010 Polls a debug device to see if there is any data waiting to be read.\r
1011\r
1012 Polls a debug device to see if there is any data waiting to be read.\r
1013 If there is data waiting to be read from the debug device, then TRUE is returned.\r
1014 If there is no data waiting to be read from the debug device, then FALSE is returned.\r
1015\r
1016 @param Handle Debug port handle.\r
1017\r
1018 @retval TRUE Data is waiting to be read from the debug device.\r
1019 @retval FALSE There is no data waiting to be read from the debug device.\r
1020\r
1021**/\r
1022BOOLEAN\r
1023EFIAPI\r
1024DebugPortPollBuffer (\r
1025 IN DEBUG_PORT_HANDLE Handle\r
1026 )\r
1027{\r
1028 USB3_DEBUG_PORT_HANDLE *UsbDebugPortHandle;\r
1029 UINTN Length;\r
1030\r
1031 //\r
1032 // If Handle is NULL, get own instance.\r
1033 // If Handle is not NULL, use it and set the instance.\r
1034 //\r
1035 if (Handle != NULL) {\r
1036 UsbDebugPortHandle = (USB3_DEBUG_PORT_HANDLE *) Handle;\r
1037 SetUsb3DebugPortInstance (UsbDebugPortHandle);\r
1038 } else {\r
1039 UsbDebugPortHandle = GetUsb3DebugPortInstance ();\r
1040 }\r
1041 if (UsbDebugPortHandle == NULL) {\r
1042 return FALSE;\r
1043 }\r
1044\r
1045 if (UsbDebugPortHandle->InNotify) {\r
1046 return FALSE;\r
1047 }\r
1048\r
1049 DiscoverInitializeUsbDebugPort (UsbDebugPortHandle);\r
1050\r
1051 if (UsbDebugPortHandle->Initialized != USB3DBG_ENABLED) {\r
1052 return FALSE;\r
1053 }\r
1054\r
1055 //\r
1056 // If the data buffer is not empty, then return TRUE directly.\r
1057 // Otherwise initialize a usb read transaction and read data to internal data buffer.\r
1058 //\r
1059 if (UsbDebugPortHandle->DataCount != 0) {\r
1060 return TRUE;\r
1061 }\r
1062\r
1063 //\r
1064 // Read data as much as we can\r
1065 //\r
1066 Length = XHCI_DEBUG_DEVICE_MAX_PACKET_SIZE;\r
1067 XhcDataTransfer (UsbDebugPortHandle, EfiUsbDataIn, (VOID *)(UINTN)UsbDebugPortHandle->Data, &Length, DATA_TRANSFER_POLL_TIMEOUT);\r
1068\r
1069 if (Length > XHCI_DEBUG_DEVICE_MAX_PACKET_SIZE) {\r
1070 return FALSE;\r
1071 }\r
1072\r
1073 if (Length == 0) {\r
1074 return FALSE;\r
1075 }\r
1076\r
1077 //\r
1078 // Store data into internal buffer for use later\r
1079 //\r
1080 UsbDebugPortHandle->DataCount = (UINT8) Length;\r
1081 return TRUE;\r
1082}\r
1083\r
1084/**\r
1085 Initialize the debug port.\r
1086\r
1087 If Function is not NULL, Debug Communication Library will call this function\r
1088 by passing in the Context to be the first parameter. If needed, Debug Communication\r
1089 Library will create one debug port handle to be the second argument passing in\r
1090 calling the Function, otherwise it will pass NULL to be the second argument of\r
1091 Function.\r
1092\r
1093 If Function is NULL, and Context is not NULL, the Debug Communication Library could\r
1094 a) Return the same handle as passed in (as Context parameter).\r
1095 b) Ignore the input Context parameter and create new handle to be returned.\r
1096\r
1097 If parameter Function is NULL and Context is NULL, Debug Communication Library could\r
1098 created a new handle if needed and return it, otherwise it will return NULL.\r
1099\r
1100 @param[in] Context Context needed by callback function; it was optional.\r
1101 @param[in] Function Continue function called by Debug Communication library;\r
1102 it was optional.\r
1103\r
1104 @return The debug port handle created by Debug Communication Library if Function\r
1105 is not NULL.\r
1106\r
1107**/\r
1108DEBUG_PORT_HANDLE\r
1109EFIAPI\r
1110DebugPortInitialize (\r
1111 IN VOID *Context,\r
1112 IN DEBUG_PORT_CONTINUE Function\r
1113 )\r
1114{\r
1115 USB3_DEBUG_PORT_HANDLE *UsbDebugPortHandle;\r
1116\r
1117 //\r
1118 // Validate the PCD PcdDebugPortHandleBufferSize value \r
1119 //\r
1120 ASSERT (PcdGet16 (PcdDebugPortHandleBufferSize) == sizeof (USB3_DEBUG_PORT_HANDLE));\r
1121\r
1122 if (Function == NULL && Context != NULL) {\r
1123 SetUsb3DebugPortInstance ((USB3_DEBUG_PORT_HANDLE *) Context);\r
1124 return (DEBUG_PORT_HANDLE) Context;\r
1125 }\r
1126 UsbDebugPortHandle = GetUsb3DebugPortInstance ();\r
1127 if (UsbDebugPortHandle == NULL) {\r
1128 return NULL;\r
1129 }\r
1130\r
1131 DiscoverInitializeUsbDebugPort (UsbDebugPortHandle);\r
1132\r
1133 if (Function != NULL) {\r
1134 Function (Context, (DEBUG_PORT_HANDLE) UsbDebugPortHandle);\r
1135 }\r
1136\r
1137 return (DEBUG_PORT_HANDLE) UsbDebugPortHandle;\r
1138}\r